diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d5a61ceb8f..38926a7dd8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -32,5 +32,12 @@ "postCreateCommand": "npm ci && npm run build", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node" + "remoteUser": "node", + + // Test restricting low-spec machines + "hostRequirements": { + "cpus": 8, + "memory": "8gb", + "storage": "32gb" + } } diff --git a/.eslintrc.js b/.eslintrc.js index 976cdf2adf..6b20dc82b7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,7 +13,7 @@ module.exports = { babelOptions: { configFile: './.babelrc' }, sourceType: 'module', }, - ignorePatterns: ['tmp/*'], + ignorePatterns: ['tmp/*', '!/.*', '/.next/'], rules: { 'import/no-extraneous-dependencies': ['error', { packageDir: '.' }], }, diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index b429ac5662..462916e3d9 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -10,6 +10,7 @@ /.github/ @github/docs-engineering /script/ @github/docs-engineering /includes/ @github/docs-engineering +/lib/search/popular-pages.json @github/docs-engineering app.json @github/docs-engineering Dockerfile @github/docs-engineering package-lock.json @github/docs-engineering diff --git a/.github/actions-scripts/fr-add-docs-reviewers-requests.js b/.github/actions-scripts/fr-add-docs-reviewers-requests.js index 23beb67617..a095d10628 100644 --- a/.github/actions-scripts/fr-add-docs-reviewers-requests.js +++ b/.github/actions-scripts/fr-add-docs-reviewers-requests.js @@ -134,8 +134,8 @@ async function run() { // Exclude existing items going forward. // Until we have a way to check from a PR whether the PR is in a project, // this is how we (roughly) avoid overwriting PRs that are already on the board - let newItemIDs = [] - let newItemAuthors = [] + const newItemIDs = [] + const newItemAuthors = [] itemIDs.forEach((id, index) => { if (!existingItemIDs.includes(id)) { newItemIDs.push(id) diff --git a/.github/actions-scripts/ready-for-docs-review.js b/.github/actions-scripts/ready-for-docs-review.js index 4bbc186a5d..3271a60d3c 100644 --- a/.github/actions-scripts/ready-for-docs-review.js +++ b/.github/actions-scripts/ready-for-docs-review.js @@ -85,8 +85,8 @@ async function run() { // - affected docs sets (not considering changes to data/assets) let numFiles = 0 let numChanges = 0 - let features = new Set([]) - const files = data.item.files.nodes.forEach((node) => { + const features = new Set([]) + data.item.files.nodes.forEach((node) => { numFiles += 1 numChanges += node.additions numChanges += node.deletions diff --git a/.github/actions-scripts/staging-commit-status-success.js b/.github/actions-scripts/staging-commit-status-success.js new file mode 100755 index 0000000000..e7e1a6ba97 --- /dev/null +++ b/.github/actions-scripts/staging-commit-status-success.js @@ -0,0 +1,42 @@ +#!/usr/bin/env node + +import * as github from '@actions/github' + +import getOctokit from '../../script/helpers/github.js' + +const { GITHUB_TOKEN } = process.env + +// Exit if GitHub Actions PAT is not found +if (!GITHUB_TOKEN) { + throw new Error('You must supply a GITHUB_TOKEN environment variable!') +} + +// This helper uses the `GITHUB_TOKEN` implicitly! +// We're using our usual version of Octokit vs. the provided `github` +// instance to avoid versioning discrepancies. +const octokit = getOctokit() + +const { CONTEXT_NAME, ACTIONS_RUN_LOG, HEAD_SHA } = process.env +if (!CONTEXT_NAME) { + throw new Error('$CONTEXT_NAME not set') +} +if (!ACTIONS_RUN_LOG) { + throw new Error('$ACTIONS_RUN_LOG not set') +} +if (!HEAD_SHA) { + throw new Error('$HEAD_SHA not set') +} + +const { context } = github +const owner = context.repo.owner +const repo = context.payload.repository.name + +await octokit.repos.createCommitStatus({ + owner, + repo, + sha: HEAD_SHA, + context: CONTEXT_NAME, + state: 'success', + description: 'Successfully deployed! See logs.', + target_url: ACTIONS_RUN_LOG, +}) diff --git a/.github/actions-scripts/staging-deploy.js b/.github/actions-scripts/staging-deploy.js index 4ba5e4a8e7..26dadc4157 100755 --- a/.github/actions-scripts/staging-deploy.js +++ b/.github/actions-scripts/staging-deploy.js @@ -21,7 +21,7 @@ if (!HEROKU_API_TOKEN) { // instance to avoid versioning discrepancies. const octokit = getOctokit() -const { RUN_ID, PR_URL, SOURCE_BLOB_URL, CONTEXT_NAME, ACTIONS_RUN_LOG, HEAD_SHA } = process.env +const { RUN_ID, PR_URL, SOURCE_BLOB_URL } = process.env if (!RUN_ID) { throw new Error('$RUN_ID not set') } @@ -31,15 +31,6 @@ if (!PR_URL) { if (!SOURCE_BLOB_URL) { throw new Error('$SOURCE_BLOB_URL not set') } -if (!CONTEXT_NAME) { - throw new Error('$CONTEXT_NAME not set') -} -if (!ACTIONS_RUN_LOG) { - throw new Error('$ACTIONS_RUN_LOG not set') -} -if (!HEAD_SHA) { - throw new Error('$HEAD_SHA not set') -} const { owner, repo, pullNumber } = parsePrUrl(PR_URL) if (!owner || !repo || !pullNumber) { @@ -62,13 +53,3 @@ await deployToStaging({ sourceBlobUrl: SOURCE_BLOB_URL, runId: RUN_ID, }) - -await octokit.repos.createCommitStatus({ - owner, - repo, - sha: HEAD_SHA, - context: CONTEXT_NAME, - state: 'success', - description: 'Successfully deployed! See logs.', - target_url: ACTIONS_RUN_LOG, -}) diff --git a/.github/workflows/60-days-stale-check.yml b/.github/workflows/60-days-stale-check.yml index 779275b983..2de1021358 100644 --- a/.github/workflows/60-days-stale-check.yml +++ b/.github/workflows/60-days-stale-check.yml @@ -8,6 +8,10 @@ on: schedule: - cron: '40 16 * * *' # Run each day at 16:40 UTC / 8:40 PST +permissions: + issues: write + pull-requests: write + jobs: stale: if: github.repository == 'github/docs-internal' || github.repository == 'github/docs' diff --git a/.github/workflows/add-review-template.yml b/.github/workflows/add-review-template.yml index c2f4bfe181..376fc4b415 100644 --- a/.github/workflows/add-review-template.yml +++ b/.github/workflows/add-review-template.yml @@ -9,6 +9,9 @@ on: types: - labeled +permissions: + contents: read + jobs: comment-that-approved: name: Add review template diff --git a/.github/workflows/auto-label-prs.yml b/.github/workflows/auto-label-prs.yml index 2081af1f15..12aed3514b 100644 --- a/.github/workflows/auto-label-prs.yml +++ b/.github/workflows/auto-label-prs.yml @@ -7,6 +7,10 @@ name: Auto label Pull Requests on: pull_request: +permissions: + contents: read + pull-requests: write + jobs: triage: if: github.repository == 'github/docs-internal' diff --git a/.github/workflows/autoupdate-branch.yml b/.github/workflows/autoupdate-branch.yml index c376693f99..ba126fbf25 100644 --- a/.github/workflows/autoupdate-branch.yml +++ b/.github/workflows/autoupdate-branch.yml @@ -24,6 +24,9 @@ on: branches: - main +permissions: + contents: read + jobs: autoupdate: if: github.repository == 'github/docs-internal' || github.repository == 'github/docs' diff --git a/.github/workflows/browser-test.yml b/.github/workflows/browser-test.yml index 934191d5d4..5f42fbab5d 100644 --- a/.github/workflows/browser-test.yml +++ b/.github/workflows/browser-test.yml @@ -6,9 +6,6 @@ name: Browser Tests on: workflow_dispatch: - push: - branches: - - main pull_request: paths: - '**.js' @@ -22,6 +19,9 @@ on: # Ultimately, for debugging this workflow itself - .github/workflows/browser-test.yml +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest @@ -53,7 +53,7 @@ jobs: uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 with: path: .next/cache - key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }}-${{ hashFiles('.github/workflows/browser-test.yml') }} + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} - name: Cache lib/redirects/.redirects-cache_en_ja.json uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 diff --git a/.github/workflows/check-all-english-links.yml b/.github/workflows/check-all-english-links.yml index bcc3c5d71c..5fd19b641c 100644 --- a/.github/workflows/check-all-english-links.yml +++ b/.github/workflows/check-all-english-links.yml @@ -9,6 +9,10 @@ on: schedule: - cron: '40 19 * * *' # once a day at 19:40 UTC / 11:40 PST +permissions: + contents: read + issues: write + jobs: check_all_english_links: name: Check all links @@ -30,6 +34,11 @@ jobs: cache: npm - name: npm ci run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} - name: npm run build run: npm run build - name: Run script diff --git a/.github/workflows/check-broken-links-github-github.yml b/.github/workflows/check-broken-links-github-github.yml index 932307ee13..b2f7496844 100644 --- a/.github/workflows/check-broken-links-github-github.yml +++ b/.github/workflows/check-broken-links-github-github.yml @@ -9,6 +9,9 @@ on: schedule: - cron: '20 13 * * 1' # run every Monday at 1:20PM UTC +permissions: + contents: read + # **IMPORTANT:** Do not change the FREEZE environment variable set here! # This workflow runs on a recurring basis. To temporarily disable it (e.g., # during a docs deployment freeze), add an Actions Secret to the repo settings diff --git a/.github/workflows/check-for-spammy-issues.yml b/.github/workflows/check-for-spammy-issues.yml index 07eae96f23..b325dd08bd 100644 --- a/.github/workflows/check-for-spammy-issues.yml +++ b/.github/workflows/check-for-spammy-issues.yml @@ -7,6 +7,10 @@ name: Check for Spammy Issues on: issues: types: [opened] + +permissions: + contents: none + jobs: spammy-title-check: name: Remove issues with spammy titles diff --git a/.github/workflows/code-lint.yml b/.github/workflows/code-lint.yml index 4cc25120b4..dffadffb7d 100644 --- a/.github/workflows/code-lint.yml +++ b/.github/workflows/code-lint.yml @@ -4,9 +4,6 @@ name: Lint code # **Why we have it**: We want some level of consistency to our code. # **Who does it impact**: Docs engineering, open-source engineering contributors. -permissions: - contents: read - on: workflow_dispatch: push: @@ -21,11 +18,15 @@ on: - '**.yaml' - '**.yml' - '**.scss' + - .eslintrc.js # In case something like eslint or tsc or prettier upgrades - 'package-lock.json' # Ultimately, for debugging this workflow itself - .github/workflows/code-lint.yml +permissions: + contents: read + jobs: lint: runs-on: ubuntu-latest diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index bbf2026902..8eeaceedbc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -15,6 +15,11 @@ on: - '**/*.js' - '.github/workflows/codeql.yml' +permissions: + actions: read + contents: read + security-events: write + jobs: build: if: github.repository == 'github/docs-internal' || github.repository == 'github/docs' diff --git a/.github/workflows/confirm-internal-staff-work-in-docs.yml b/.github/workflows/confirm-internal-staff-work-in-docs.yml index 17cebab5ae..81fa3788b5 100644 --- a/.github/workflows/confirm-internal-staff-work-in-docs.yml +++ b/.github/workflows/confirm-internal-staff-work-in-docs.yml @@ -13,6 +13,9 @@ on: types: - opened +permissions: + contents: none + jobs: check-team-membership: runs-on: ubuntu-latest diff --git a/.github/workflows/content-changes-table-comment.yml b/.github/workflows/content-changes-table-comment.yml index dade6fff26..8ca2e3b084 100644 --- a/.github/workflows/content-changes-table-comment.yml +++ b/.github/workflows/content-changes-table-comment.yml @@ -9,6 +9,10 @@ on: pull_request_target: types: [opened, synchronize, reopened] +permissions: + contents: read + pull-requests: write + jobs: PR-Preview-Links: if: github.event.pull_request.user.login != 'Octomerger' diff --git a/.github/workflows/copy-api-issue-to-internal.yml b/.github/workflows/copy-api-issue-to-internal.yml index f7cd490666..13bac002f1 100644 --- a/.github/workflows/copy-api-issue-to-internal.yml +++ b/.github/workflows/copy-api-issue-to-internal.yml @@ -9,6 +9,9 @@ on: types: - labeled +permissions: + contents: none + jobs: transfer-issue: name: Transfer issue diff --git a/.github/workflows/create-translation-batch-pr.yml b/.github/workflows/create-translation-batch-pr.yml index 4d6943ce64..06a5b990e7 100644 --- a/.github/workflows/create-translation-batch-pr.yml +++ b/.github/workflows/create-translation-batch-pr.yml @@ -11,7 +11,10 @@ name: Create translation Batch Pull Request on: workflow_dispatch: schedule: - - cron: '25 */6 * * *' # Every six hours + - cron: '02 17 * * *' # Once a day at 17:02 UTC / 9:02 PST + +permissions: + contents: write jobs: create-translation-batch: diff --git a/.github/workflows/crowdin-cleanup.yml b/.github/workflows/crowdin-cleanup.yml index 710624129e..7552713ab6 100644 --- a/.github/workflows/crowdin-cleanup.yml +++ b/.github/workflows/crowdin-cleanup.yml @@ -10,6 +10,9 @@ on: branches: - translations +permissions: + contents: write + jobs: homogenize_frontmatter: name: Homogenize frontmatter diff --git a/.github/workflows/enterprise-dates.yml b/.github/workflows/enterprise-dates.yml index 58d7ff05ac..158851106d 100644 --- a/.github/workflows/enterprise-dates.yml +++ b/.github/workflows/enterprise-dates.yml @@ -11,6 +11,10 @@ on: schedule: - cron: '39 2 * * 2' # At 02:39 on Tuesday +permissions: + contents: write + pull-requests: write + # **IMPORTANT:** Do not change the FREEZE environment variable set here! # This workflow runs on a recurring basis. To temporarily disable it (e.g., # during a docs deployment freeze), add an Actions Secret to the repo settings diff --git a/.github/workflows/enterprise-release-sync-search-index.yml b/.github/workflows/enterprise-release-sync-search-index.yml index 60da9c2279..d426432e41 100644 --- a/.github/workflows/enterprise-release-sync-search-index.yml +++ b/.github/workflows/enterprise-release-sync-search-index.yml @@ -26,6 +26,9 @@ on: - ready_for_review - unlocked +permissions: + contents: write + # This workflow requires a label in the format `sync-english-index-for-` jobs: updateIndices: @@ -54,12 +57,17 @@ jobs: id: getVersion run: $GITHUB_WORKSPACE/.github/actions-scripts/enterprise-search-label.js + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Generate the search index files if: ${{ steps.getVersion.outputs.versionToSync }} env: VERSION: ${{ steps.getVersion.outputs.versionToSync }} LANGUAGE: 'en' - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | npm run build npm run sync-search diff --git a/.github/workflows/first-responder-docs-content.yml b/.github/workflows/first-responder-docs-content.yml index 7c64bcf699..2911440b2d 100644 --- a/.github/workflows/first-responder-docs-content.yml +++ b/.github/workflows/first-responder-docs-content.yml @@ -13,6 +13,9 @@ on: - closed - unlabeled +permissions: + contents: none + jobs: first-responder-triage-pr: name: Triage PR to FR project board diff --git a/.github/workflows/hubber-contribution-help.yml b/.github/workflows/hubber-contribution-help.yml index ec1eafe329..83a3ca6c1e 100644 --- a/.github/workflows/hubber-contribution-help.yml +++ b/.github/workflows/hubber-contribution-help.yml @@ -12,12 +12,13 @@ on: - 'content/**' - 'data/**' +permissions: + pull-requests: write + jobs: check-team-membership: if: github.repository == 'github/docs-internal' && github.actor != 'github-openapi-bot' runs-on: ubuntu-latest - permissions: - pull-requests: write steps: - id: membership_check uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d diff --git a/.github/workflows/link-check-dotcom.yml b/.github/workflows/link-check-dotcom.yml index f117f61660..09403d7cc1 100644 --- a/.github/workflows/link-check-dotcom.yml +++ b/.github/workflows/link-check-dotcom.yml @@ -6,11 +6,11 @@ name: 'Link Checker: Dotcom' on: workflow_dispatch: - push: - branches: - - main pull_request: +permissions: + contents: read + jobs: build: runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} @@ -29,6 +29,12 @@ jobs: - name: Install run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/link-check-ghae.yml b/.github/workflows/link-check-ghae.yml index d02dbdd300..384284a4cf 100644 --- a/.github/workflows/link-check-ghae.yml +++ b/.github/workflows/link-check-ghae.yml @@ -6,11 +6,11 @@ name: 'Link Checker: GitHub AE' on: workflow_dispatch: - push: - branches: - - main pull_request: +permissions: + contents: read + jobs: build: runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} @@ -29,6 +29,12 @@ jobs: - name: Install run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/link-check-ghec.yml b/.github/workflows/link-check-ghec.yml index acc0c21b0a..36449f5bea 100644 --- a/.github/workflows/link-check-ghec.yml +++ b/.github/workflows/link-check-ghec.yml @@ -6,11 +6,11 @@ name: 'Link Checker: Enterprise Cloud' on: workflow_dispatch: - push: - branches: - - main pull_request: +permissions: + contents: read + jobs: build: runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} @@ -27,6 +27,12 @@ jobs: - name: Install run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/link-check-ghes.yml b/.github/workflows/link-check-ghes.yml index 134e83ece8..c0893d7275 100644 --- a/.github/workflows/link-check-ghes.yml +++ b/.github/workflows/link-check-ghes.yml @@ -6,11 +6,11 @@ name: 'Link Checker: Enterprise Server' on: workflow_dispatch: - push: - branches: - - main pull_request: +permissions: + contents: read + jobs: build: runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} @@ -29,6 +29,12 @@ jobs: - name: Install run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/manually-purge-fastly.yml b/.github/workflows/manually-purge-fastly.yml new file mode 100644 index 0000000000..e4db1b03f4 --- /dev/null +++ b/.github/workflows/manually-purge-fastly.yml @@ -0,0 +1,29 @@ +name: Manually purge Fastly + +# **What it does**: Sends a soft-purge for the 'manual' Fastly surrogate key. +# **Why we have it**: When something is overly cached in the Fastly CDN and want to purge it. +# **Who does it impact**: Docs content. + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + purge: + runs-on: ubuntu-latest + + steps: + - name: Check out repo + uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 + + - name: Install dependencies + run: npm ci + + - name: Soft-purge Fastly cache + env: + FASTLY_TOKEN: ${{ secrets.FASTLY_TOKEN }} + FASTLY_SERVICE_ID: ${{ secrets.FASTLY_SERVICE_ID }} + FASTLY_SURROGATE_KEY: 'manual-purge' + run: .github/actions-scripts/purge-fastly-edge-cache.js diff --git a/.github/workflows/merged-notification.yml b/.github/workflows/merged-notification.yml index 7e82935e7c..828a864c1d 100644 --- a/.github/workflows/merged-notification.yml +++ b/.github/workflows/merged-notification.yml @@ -9,6 +9,9 @@ on: types: - 'closed' +permissions: + issues: write + jobs: comment: if: github.repository == 'github/docs' && github.event.pull_request.merged && github.event.pull_request.base.ref == github.event.repository.default_branch && github.event.pull_request.user.login != 'Octomerger' diff --git a/.github/workflows/move-existing-issues-to-the-correct-repo.yml b/.github/workflows/move-existing-issues-to-the-correct-repo.yml index 384cc235bc..05b994a525 100644 --- a/.github/workflows/move-existing-issues-to-the-correct-repo.yml +++ b/.github/workflows/move-existing-issues-to-the-correct-repo.yml @@ -7,6 +7,9 @@ name: Move existing issues to correct docs repo on: workflow_dispatch: +permissions: + contents: none + jobs: transfer_issues: runs-on: ubuntu-latest diff --git a/.github/workflows/move-help-wanted-issues.yml b/.github/workflows/move-help-wanted-issues.yml index bd4c630a5b..b5697b6d7d 100644 --- a/.github/workflows/move-help-wanted-issues.yml +++ b/.github/workflows/move-help-wanted-issues.yml @@ -10,7 +10,7 @@ on: - labeled permissions: - issues: none + contents: none jobs: move_issues: diff --git a/.github/workflows/move-new-issues-to-correct-docs-repo.yml b/.github/workflows/move-new-issues-to-correct-docs-repo.yml index acabc43088..1c2c362821 100644 --- a/.github/workflows/move-new-issues-to-correct-docs-repo.yml +++ b/.github/workflows/move-new-issues-to-correct-docs-repo.yml @@ -11,6 +11,9 @@ on: - transferred - reopened +permissions: + contents: none + jobs: transfer_issue: runs-on: ubuntu-latest diff --git a/.github/workflows/move-ready-to-merge-pr.yaml b/.github/workflows/move-ready-to-merge-pr.yaml index 9b037104d9..f9f5c9871b 100644 --- a/.github/workflows/move-ready-to-merge-pr.yaml +++ b/.github/workflows/move-ready-to-merge-pr.yaml @@ -11,7 +11,6 @@ on: permissions: pull-requests: write - issues: write jobs: unmark_for_review: diff --git a/.github/workflows/move-reopened-issues-to-triage.yaml b/.github/workflows/move-reopened-issues-to-triage.yaml index 925ab443ce..28b2976398 100644 --- a/.github/workflows/move-reopened-issues-to-triage.yaml +++ b/.github/workflows/move-reopened-issues-to-triage.yaml @@ -9,6 +9,9 @@ on: types: - reopened +permissions: + repository-projects: write + jobs: move-reopened-issue-to-triage: if: github.repository == 'github/docs' @@ -16,7 +19,6 @@ jobs: steps: - uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d with: - github-token: ${{ github.token }} script: | const issueNumber = context.issue.number; const doneColumnId = 11167427; diff --git a/.github/workflows/no-response.yaml b/.github/workflows/no-response.yaml index 59a5b8beef..c75179a19e 100644 --- a/.github/workflows/no-response.yaml +++ b/.github/workflows/no-response.yaml @@ -15,13 +15,16 @@ on: # Schedule for five minutes after the hour every hour - cron: '5 * * * *' +permissions: + issues: write + jobs: noResponse: runs-on: ubuntu-latest steps: - uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb with: - token: ${{ github.token }} + token: ${{ secrets.GITHUB_TOKEN }} closeComment: > This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the diff --git a/.github/workflows/open-enterprise-issue.yml b/.github/workflows/open-enterprise-issue.yml index e28fc76c4e..bad00804fa 100644 --- a/.github/workflows/open-enterprise-issue.yml +++ b/.github/workflows/open-enterprise-issue.yml @@ -9,6 +9,9 @@ on: schedule: - cron: '49 14 * * *' # At 14:49 UTC daily +permissions: + contents: read + jobs: open_enterprise_issue: name: Open Enterprise issue diff --git a/.github/workflows/openapi-schema-check.yml b/.github/workflows/openapi-schema-check.yml index 59228d96aa..01dd710a78 100644 --- a/.github/workflows/openapi-schema-check.yml +++ b/.github/workflows/openapi-schema-check.yml @@ -23,6 +23,9 @@ on: - 'script/rest/**/*.js' - 'package*.json' +permissions: + contents: read + jobs: check-schema-versions: if: ${{ github.repository == 'github/docs-internal' }} diff --git a/.github/workflows/os-ready-for-review.yml b/.github/workflows/os-ready-for-review.yml index 638d93f262..75d00c9d4d 100644 --- a/.github/workflows/os-ready-for-review.yml +++ b/.github/workflows/os-ready-for-review.yml @@ -3,15 +3,15 @@ name: OS Ready for review # **What it does**: Adds pull requests and issues in the docs repository to the docs-content review board when the "waiting for review" label is added # **Why we have it**: So that contributors in the OS repo can easily get reviews from the docs-content team, and so that writers can see when a PR is ready for review # **Who does it impact**: Writers working in the docs repository -permissions: - contents: read - on: pull_request_target: types: [labeled] issues: types: [labeled] +permissions: + contents: read + jobs: request_doc_review: name: Request a review from the docs-content team diff --git a/.github/workflows/pa11y.yml b/.github/workflows/pa11y.yml index b9efeff5f0..5313c7b677 100644 --- a/.github/workflows/pa11y.yml +++ b/.github/workflows/pa11y.yml @@ -8,6 +8,10 @@ on: workflow_dispatch: schedule: - cron: '25 17 * * *' # once a day at 17:25 UTC / 11:50 PST + +permissions: + contents: read + jobs: test: if: github.repository == 'github/docs-internal' || github.repository == 'github/docs' @@ -25,6 +29,12 @@ jobs: - name: Install dependencies run: npm ci --include=optional + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Run build scripts run: npm run build diff --git a/.github/workflows/ping-staging-apps.yml b/.github/workflows/ping-staging-apps.yml index e77cadbf46..6c76973e8e 100644 --- a/.github/workflows/ping-staging-apps.yml +++ b/.github/workflows/ping-staging-apps.yml @@ -8,6 +8,9 @@ on: schedule: - cron: '10,30,50 * * * *' # every twenty minutes +permissions: + contents: read + jobs: ping_staging_apps: name: Ping @@ -24,7 +27,5 @@ jobs: cache: npm - name: npm ci run: npm ci - - name: npm run build - run: npm run build - name: Run script run: script/ping-staging-apps.js diff --git a/.github/workflows/prod-build-deploy.yml b/.github/workflows/prod-build-deploy.yml index 349f32ae05..98101a18a8 100644 --- a/.github/workflows/prod-build-deploy.yml +++ b/.github/workflows/prod-build-deploy.yml @@ -52,6 +52,12 @@ jobs: DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }} GIT_BRANCH: main + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/ready-for-doc-review.yml b/.github/workflows/ready-for-doc-review.yml index 273ff22325..782bac10a5 100644 --- a/.github/workflows/ready-for-doc-review.yml +++ b/.github/workflows/ready-for-doc-review.yml @@ -8,6 +8,9 @@ on: pull_request: types: [labeled] +permissions: + contents: read + jobs: request_doc_review: name: Request a review from the docs-content team diff --git a/.github/workflows/remove-from-fr-board.yaml b/.github/workflows/remove-from-fr-board.yaml index cc46e8e9a4..31027d0d08 100644 --- a/.github/workflows/remove-from-fr-board.yaml +++ b/.github/workflows/remove-from-fr-board.yaml @@ -8,6 +8,9 @@ on: repository_dispatch: types: remove_from_docs_FR_board +permissions: + contents: none + jobs: remove_from_FR_board: if: github.repository == 'github/docs-internal' diff --git a/.github/workflows/remove-unused-assets.yml b/.github/workflows/remove-unused-assets.yml index 2c91d3e6f6..261d8a6114 100644 --- a/.github/workflows/remove-unused-assets.yml +++ b/.github/workflows/remove-unused-assets.yml @@ -8,6 +8,9 @@ on: schedule: - cron: '20 15 * * 0' # run every Sunday at 20:15 UTC / 12:15 PST +permissions: + contents: write + env: FREEZE: ${{ secrets.FREEZE }} @@ -39,7 +42,7 @@ jobs: with: path: ./results.md - name: Remove script results file - run: rm -rf ./results.md + run: rm ./results.md - name: Create pull request uses: peter-evans/create-pull-request@7380612b49221684fefa025244f2ef4008ae50ad env: diff --git a/.github/workflows/repo-freeze-check.yml b/.github/workflows/repo-freeze-check.yml index 978e31e9bc..3815e2883a 100644 --- a/.github/workflows/repo-freeze-check.yml +++ b/.github/workflows/repo-freeze-check.yml @@ -16,6 +16,9 @@ on: branches: - main +permissions: + contents: none + env: FREEZE: ${{ secrets.FREEZE }} diff --git a/.github/workflows/repo-sync-stalls.yml b/.github/workflows/repo-sync-stalls.yml index 2d5c7029c6..f233567651 100644 --- a/.github/workflows/repo-sync-stalls.yml +++ b/.github/workflows/repo-sync-stalls.yml @@ -9,6 +9,9 @@ on: schedule: - cron: '32 */2 * * *' # At minute 32 past every 2nd hour. +permissions: + pull-requests: read + jobs: repo-sync-stalls: runs-on: ubuntu-latest @@ -17,7 +20,6 @@ jobs: name: Check if repo sync is stalled uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d with: - github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }} script: | let pulls; const owner = context.repo.owner diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml index cb661982e4..9432ca1eec 100644 --- a/.github/workflows/repo-sync.yml +++ b/.github/workflows/repo-sync.yml @@ -20,6 +20,10 @@ on: schedule: - cron: '10,40 * * * *' # every 30 minutes +permissions: + contents: write + pull-requests: write + jobs: close-invalid-repo-sync: name: Close invalid Repo Sync PRs diff --git a/.github/workflows/site-policy-reminder.yml b/.github/workflows/site-policy-reminder.yml index ab00290807..4491321bcc 100644 --- a/.github/workflows/site-policy-reminder.yml +++ b/.github/workflows/site-policy-reminder.yml @@ -8,6 +8,9 @@ on: pull_request: types: [labeled] +permissions: + contents: none + jobs: run: if: >- diff --git a/.github/workflows/site-policy-sync.yml b/.github/workflows/site-policy-sync.yml index 29aa9ba8ea..db2fda616f 100644 --- a/.github/workflows/site-policy-sync.yml +++ b/.github/workflows/site-policy-sync.yml @@ -16,14 +16,14 @@ on: - 'content/github/site-policy/**' workflow_dispatch: +permissions: + contents: read + jobs: sync: name: Get the latest docs if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.merged == true && github.repository == 'github/docs-internal') runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write steps: - name: checkout docs-internal uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 diff --git a/.github/workflows/staging-build-and-deploy-pr.yml b/.github/workflows/staging-build-and-deploy-pr.yml new file mode 100644 index 0000000000..1de1fb0503 --- /dev/null +++ b/.github/workflows/staging-build-and-deploy-pr.yml @@ -0,0 +1,227 @@ +name: Staging - Build and Deploy PR (fast and private-only) + +# **What it does**: Builds and deploys PRs to staging but ONLY for docs-internal +# **Why we have it**: Most PRs are made on the private repo. Let's make those extra fast if we can worry less about security. +# **Who does it impact**: All staff. + +# This whole workflow is only guaranteed to be secure in the *private +# repo* and because we repo-sync these files over the to the public one, +# IT'S CRUCIALLY IMPORTANT THAT THIS WORKFLOW IS ONLY ENABLED IN docs-internal! + +on: + # Ideally, we'd like to use 'pull_request' because we can more easily + # test changes to this workflow without relying on merges to 'main'. + # But this is guaranteed to be safer and won't have the problem of + # necessary secrets not being available. + # Perhaps some day when we're confident this workflow will always + # work in a regular PR, we can switch to that. + pull_request_target: + +permissions: + actions: read + contents: read + deployments: write + pull-requests: read + statuses: write + +# This allows one Build workflow run to interrupt another +# These are different from the concurrency in that here it checks if the +# whole workflow runs again. The "inner concurrency" is used for +# undeployments to cleaning up resources. +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label }}' + cancel-in-progress: true + +jobs: + build-and-deploy-pr: + # Important. This whole file is only supposed to run in the PRIVATE repo. + if: ${{ github.repository == 'github/docs-internal' }} + + # The assumption here is that self-hosted is faster (e.g CPU power) + # that the regular ones. And it matters in this workflow because + # we do heavy CPU stuff with `npm run build` and `tar` + # runs-on: ubuntu-latest + runs-on: self-hosted + + timeout-minutes: 5 + # This interrupts Build, Deploy, and pre-write Undeploy workflow runs in + # progress for this PR branch. + concurrency: + group: 'PR Staging @ ${{ github.event.pull_request.head.label }}' + cancel-in-progress: true + steps: + - name: Check out repo + uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 + with: + ref: ${{ github.event.pull_request.head.sha }} + lfs: 'true' + # To prevent issues with cloning early access content later + persist-credentials: 'false' + + - name: Check out LFS objects + run: git lfs checkout + + - name: Setup node + uses: actions/setup-node@04c56d2f954f1e4c69436aa54cfef261a018f458 + with: + node-version: 16.13.x + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + + - name: Build + run: npm run build + + - name: Clone early access + run: node script/early-access/clone-for-build.js + env: + DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }} + GIT_BRANCH: ${{ github.event.pull_request.head.sha }} + + - name: Check that the PR isn't blocking deploys + # We can't use ${{...}} on this if statement because of this bug + # https://github.com/cschleiden/actions-linter/issues/114 + if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'automated-block-deploy') + run: | + echo "The PR appears to have the label 'automated-block-deploy'" + echo "Will not proceed to deploy the PR." + exit 2 + + - name: Create a Heroku build source + id: build-source + uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d + env: + HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} + with: + script: | + const { owner, repo } = context.repo + + if (owner !== 'github') { + throw new Error(`Repository owner must be 'github' but was: ${owner}`) + } + if (repo !== 'docs-internal') { + throw new Error(`Repository name must be 'docs-internal' but was: ${repo}`) + } + + const Heroku = require('heroku-client') + const heroku = new Heroku({ token: process.env.HEROKU_API_TOKEN }) + + try { + const { source_blob: sourceBlob } = await heroku.post('/sources') + const { put_url: uploadUrl, get_url: downloadUrl } = sourceBlob + + core.setOutput('upload_url', uploadUrl) + core.setOutput('download_url', downloadUrl) + } catch (error) { + if (error.statusCode === 503) { + console.error('💀 Heroku may be down! Please check its Status page: https://status.heroku.com/') + } + throw error + } + + - name: Remove development-only dependencies + run: npm prune --production + + - name: Remove all npm scripts + run: npm pkg delete scripts + + - name: Set npm script for Heroku build to noop + run: npm set-script heroku-postbuild "echo 'Application was pre-built!'" + + - name: Delete heavy things we won't need deployed + run: | + + # The dereferenced file is not used in runtime once the + # decorated file has been created from it. + rm -rf lib/rest/static/dereferenced + + # Translations are never tested in Staging builds + # but let's keep the empty directory. + rm -rf translations + mkdir translations + + # Delete all the big search indexes that are NOT English (`*-en-*`) + pushd lib/search/indexes + ls | grep -v '\-en\-' | xargs rm + popd + + # Note! Some day it would be nice to be able to delete + # all the heavy assets because they bloat the tarball. + # But it's not obvious how to test it then. For now, we'll have + # to accept that every staging build has a copy of the images. + + # The assumption here is that a staging build will not + # need these legacy redirects. Only the redirects from + # front-matter will be at play. + # These static redirects json files are notoriously large + # and they make the tarball unnecessarily large. + echo '[]' > lib/redirects/static/archived-frontmatter-fallbacks.json + echo '{}' > lib/redirects/static/developer.json + echo '{}' > lib/redirects/static/archived-redirects-from-213-to-217.json + + # This will turn every `lib/**/static/*.json` into + # an equivalent `lib/**/static/*.json.br` file. + # Once the server starts, it'll know to fall back to reading + # the `.br` equivalent if the `.json` file isn't present. + node .github/actions-scripts/compress-large-files.js + + - name: Make the tarball for Heroku + run: | + # We can't delete the .next/cache directory from the workflow + # because it's needed for caching, but we can at least exclude it + # from the tarball. Then it can be cached but not weigh down the + # tarball we intend to deploy. + tar -zc --exclude=.next/cache --file=app.tar.gz \ + node_modules/ \ + .next/ \ + assets/ \ + content/ \ + data/ \ + includes/ \ + lib/ \ + middleware/ \ + translations/ \ + server.mjs \ + package*.json \ + .npmrc \ + feature-flags.json \ + next.config.js \ + app.json \ + Procfile + + du -sh app.tar.gz + + # See: https://devcenter.heroku.com/articles/build-and-release-using-the-api#sources-endpoint + - name: Upload to the Heroku build source + env: + UPLOAD_URL: ${{ steps.build-source.outputs.upload_url }} + run: | + curl "$UPLOAD_URL" \ + -X PUT \ + -H 'Content-Type:' \ + --data-binary @app.tar.gz + + # 'npm install' is faster than 'npm ci' because it only needs to + # *append* what's missing from ./node_modules/ + - name: Re-install dependencies so we get devDependencies back + run: npm install --no-audit --no-fund --only=dev + + - name: Deploy + id: deploy + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }} + HYDRO_ENDPOINT: ${{ secrets.HYDRO_ENDPOINT }} + HYDRO_SECRET: ${{ secrets.HYDRO_SECRET }} + PR_URL: ${{ github.event.pull_request.html_url }} + SOURCE_BLOB_URL: ${{ steps.build-source.outputs.download_url }} + ALLOWED_POLLING_FAILURES_PER_PHASE: '15' + RUN_ID: ${{ github.run_id }} + run: .github/actions-scripts/staging-deploy.js diff --git a/.github/workflows/staging-build-pr.yml b/.github/workflows/staging-build-pr.yml index a39ed5a0f7..4be4fb1b23 100644 --- a/.github/workflows/staging-build-pr.yml +++ b/.github/workflows/staging-build-pr.yml @@ -4,6 +4,8 @@ name: Staging - Build PR # **Why we have it**: Because it's not safe to share our deploy secrets with forked repos: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ # **Who does it impact**: All contributors. +# IT'S CRUCIALLY IMPORTANT THAT THIS WORKFLOW IS ONLY ENABLED IN docs! + on: pull_request: types: @@ -11,16 +13,6 @@ on: - reopened - synchronize - # This is necessary so that the cached things can be reused between - # pull requests. - # If we don't let the workflow run on `main` the caching will only - # help between multiple runs of the same workflow. By letting - # it build on pushes to main too, the cache will be reusable - # in other people's PRs too. - push: - branches: - - main - permissions: contents: read @@ -31,7 +23,9 @@ concurrency: jobs: build-pr: - if: ${{ github.repository == 'github/docs-internal' || github.repository == 'github/docs' }} + # Important. This whole file is only supposed to run in the PUBLIC repo. + if: ${{ github.repository == 'github/docs' }} + runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} timeout-minutes: 5 # This interrupts Build, Deploy, and pre-write Undeploy workflow runs in @@ -45,7 +39,7 @@ jobs: # Make sure only approved files are changed if it's in github/docs - name: Check changed files - if: ${{ github.repository == 'github/docs' && github.event.pull_request.user.login != 'Octomerger' }} + if: ${{ github.event.pull_request.user.login != 'Octomerger' }} uses: dorny/paths-filter@eb75a1edc117d3756a18ef89958ee59f9500ba58 id: filter with: @@ -93,7 +87,7 @@ jobs: uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 with: path: .next/cache - key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }}-${{ hashFiles('.github/workflows/staging-build-pr.yml') }} + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} - name: Build run: npm run build @@ -107,47 +101,7 @@ jobs: - name: Set npm script for Heroku build to noop run: npm set-script heroku-postbuild "echo 'Application was pre-built!'" - - name: Delete heavy things we won't need deployed - if: ${{ github.repository == 'github/docs-internal' }} - run: | - - # The dereferenced file is not used in runtime once the - # decorated file has been created from it. - rm -fr lib/rest/static/dereferenced - - # Translations are never tested in Staging builds - # but let's keep the empty directory. - rm -fr translations - mkdir translations - - # Delete all the big search indexes that are NOT English (`*-en-*`) - pushd lib/search/indexes - ls | grep -v '\-en\-' | xargs rm - popd - - # Note! Some day it would be nice to be able to delete - # all the heavy assets because they bloat the tarball. - # But it's not obvious how to test it then. For now, we'll have - # to accept that every staging build has a copy of the images. - - # The assumption here is that a staging build will not - # need these legacy redirects. Only the redirects from - # front-matter will be at play. - # These static redirects json files are notoriously large - # and they make the tarball unnecessarily large. - echo '[]' > lib/redirects/static/archived-frontmatter-fallbacks.json - echo '{}' > lib/redirects/static/developer.json - echo '{}' > lib/redirects/static/archived-redirects-from-213-to-217.json - - # This will turn every `lib/**/static/*.json` into - # an equivalent `lib/**/static/*.json.br` file. - # Once the server starts, it'll know to fall back to reading - # the `.br` equivalent if the `.json` file isn't present. - node .github/actions-scripts/compress-large-files.js - - name: Create an archive - # Only bother if this is actually a pull request - if: ${{ github.event.pull_request.number }} run: | tar -c --file=app.tar \ node_modules/ \ @@ -177,8 +131,6 @@ jobs: # We are not willing to trust the rest (e.g. script/) for the remainder # of the deployment process. - name: Upload build artifact - # Only bother if this is actually a pull request - if: ${{ github.event.pull_request.number }} uses: actions/upload-artifact@27121b0bdffd731efa15d66772be8dc71245d074 with: name: pr_build diff --git a/.github/workflows/staging-deploy-pr.yml b/.github/workflows/staging-deploy-pr.yml index 6e8ba10812..f4c35296e7 100644 --- a/.github/workflows/staging-deploy-pr.yml +++ b/.github/workflows/staging-deploy-pr.yml @@ -4,6 +4,8 @@ name: Staging - Deploy PR # **Why we have it**: To deploy with high visibility in case of failures. # **Who does it impact**: All contributors. +# IT'S CRUCIALLY IMPORTANT THAT THIS WORKFLOW IS ONLY ENABLED IN docs! + on: workflow_run: workflows: @@ -34,22 +36,16 @@ env: BUILD_ACTIONS_RUN_LOG: https://github.com/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }} jobs: - debug: - runs-on: ubuntu-latest - steps: - - name: Dump full context for debugging - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" - pr-metadata: # This is needed because the workflow we depend on # (see on.workflow_run.workflows) might be running from pushes on # main. That's because it needs to do that to popular the cache. - if: > - ${{ github.event.workflow_run.event == 'pull_request' && - github.event.workflow_run.conclusion == 'success' }} - + if: >- + ${{ + github.repository == 'github/docs' && + github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.conclusion == 'success' + }} runs-on: ubuntu-latest outputs: number: ${{ steps.pr.outputs.number }} @@ -164,8 +160,7 @@ jobs: if: >- ${{ needs.pr-metadata.outputs.number != '0' && - github.event.workflow_run.conclusion == 'failure' && - (github.repository == 'github/docs-internal' || github.repository == 'github/docs') + github.event.workflow_run.conclusion == 'failure' }} runs-on: ubuntu-latest timeout-minutes: 1 @@ -208,8 +203,7 @@ jobs: if: >- ${{ needs.pr-metadata.outputs.number != '0' && - github.event.workflow_run.conclusion == 'success' && - (github.repository == 'github/docs-internal' || github.repository == 'github/docs') + github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest # This timeout should match or exceed the value of the timeout for Undeploy @@ -262,7 +256,7 @@ jobs: prepare-for-deploy: needs: [pr-metadata, check-pr-before-prepare] if: ${{ needs.check-pr-before-prepare.outputs.pull_request_state == 'open' }} - runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} + runs-on: ubuntu-latest timeout-minutes: 5 # This interrupts Build, Deploy, and pre-write Undeploy workflow runs in # progress for this PR branch. @@ -308,22 +302,10 @@ jobs: node-version: 16.13.x cache: npm - # Install any dependencies that are needed for the early access script - - if: ${{ github.repository == 'github/docs-internal' }} - name: Install temporary dependencies - run: npm install --no-save dotenv rimraf - # Install any additional dependencies *before* downloading the build artifact - name: Install Heroku client development-only dependency run: npm install --no-save heroku-client - - if: ${{ github.repository == 'github/docs-internal' }} - name: Clone early access - run: node script/early-access/clone-for-build.js - env: - DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }} - GIT_BRANCH: ${{ needs.pr-metadata.outputs.head_ref }} - # Download the previously built "app.tar" - name: Download build artifact uses: dawidd6/action-download-artifact@af92a8455a59214b7b932932f2662fdefbd78126 @@ -333,35 +315,8 @@ jobs: name: pr_build path: ${{ runner.temp }} - # For security reasons, only extract the tar from docs-internal - # This allows us to add search indexes and early access content to the build - - if: ${{ github.repository == 'github/docs-internal' }} - name: Extract user-changes to temp directory - run: | - mkdir $RUNNER_TEMP/app - tar -x --file=$RUNNER_TEMP/app.tar -C "$RUNNER_TEMP/app/" - - # Move the LFS content into the temp directory in chunks (destructively) - - if: ${{ github.repository == 'github/docs-internal' }} - name: Move the LFS objects - run: | - git lfs ls-files --name-only | xargs -n 1 -I {} sh -c 'mkdir -p "$RUNNER_TEMP/app/$(dirname {})"; mv {} "$RUNNER_TEMP/app/$(dirname {})/"' - - # Move the early access content into the temp directory (destructively) - - if: ${{ github.repository == 'github/docs-internal' }} - name: Move the early access content - run: | - mv assets/images/early-access "$RUNNER_TEMP/app/assets/images/" - mv content/early-access "$RUNNER_TEMP/app/content/" - mv data/early-access "$RUNNER_TEMP/app/data/" - - - if: ${{ github.repository == 'github/docs-internal' }} - name: Create a gzipped archive (docs-internal) - run: tar -cz --file app.tar.gz "$RUNNER_TEMP/app/" - - # gzip the app.tar from github/docs so we're working with the same format - - if: ${{ github.repository == 'github/docs' }} - name: Create a gzipped archive (docs) + # gzip the app.tar to meet Heroku's expected format + - name: Create a gzipped archive (docs) run: gzip -9 < "$RUNNER_TEMP/app.tar" > app.tar.gz - name: Create a Heroku build source @@ -376,8 +331,8 @@ jobs: if (owner !== 'github') { throw new Error(`Repository owner must be 'github' but was: ${owner}`) } - if (repo !== 'docs-internal' && repo !== 'docs') { - throw new Error(`Repository name must be either 'docs-internal' or 'docs' but was: ${repo}`) + if (repo !== 'docs') { + throw new Error(`Repository name must be 'docs' but was: ${repo}`) } const Heroku = require('heroku-client') @@ -466,7 +421,7 @@ jobs: deploy: needs: [pr-metadata, prepare-for-deploy, check-pr-before-deploy] if: ${{ needs.check-pr-before-deploy.outputs.pull_request_state == 'open' }} - runs-on: ${{ fromJSON('["ubuntu-latest", "self-hosted"]')[github.repository == 'github/docs-internal'] }} + runs-on: ubuntu-latest timeout-minutes: 10 # This interrupts Build, Deploy, and pre-write Undeploy workflow runs in # progress for this PR branch. @@ -495,13 +450,18 @@ jobs: HYDRO_SECRET: ${{ secrets.HYDRO_SECRET }} PR_URL: ${{ needs.pr-metadata.outputs.url }} SOURCE_BLOB_URL: ${{ needs.prepare-for-deploy.outputs.source_blob_url }} - CONTEXT_NAME: ${{ env.CONTEXT_NAME }} - ACTIONS_RUN_LOG: ${{ env.ACTIONS_RUN_LOG }} - HEAD_SHA: ${{ needs.pr-metadata.outputs.head_sha }} ALLOWED_POLLING_FAILURES_PER_PHASE: '15' RUN_ID: ${{ github.run_id }} run: .github/actions-scripts/staging-deploy.js + - name: Create successful commit status + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CONTEXT_NAME: ${{ env.CONTEXT_NAME }} + ACTIONS_RUN_LOG: ${{ env.ACTIONS_RUN_LOG }} + HEAD_SHA: ${{ needs.pr-metadata.outputs.head_sha }} + run: .github/actions-scripts/staging-commit-status-success.js + - name: Mark the deployment as inactive if timed out uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d if: ${{ steps.deploy.outcome == 'cancelled' }} diff --git a/.github/workflows/start-new-engineering-pr-workflow.yml b/.github/workflows/start-new-engineering-pr-workflow.yml index 352b48dfa9..5290162e76 100644 --- a/.github/workflows/start-new-engineering-pr-workflow.yml +++ b/.github/workflows/start-new-engineering-pr-workflow.yml @@ -10,6 +10,9 @@ on: - opened - reopened +permissions: + contents: none + jobs: triage: if: github.repository == 'github/docs-internal' || github.repository == 'github/docs' diff --git a/.github/workflows/sync-search-indices.yml b/.github/workflows/sync-search-indices.yml index e9064920bd..88c2de8133 100644 --- a/.github/workflows/sync-search-indices.yml +++ b/.github/workflows/sync-search-indices.yml @@ -33,6 +33,9 @@ on: schedule: - cron: '53 0/8 * * *' # Run every eight hours at 53 minutes past the hour +permissions: + contents: none + env: FREEZE: ${{ secrets.FREEZE }} @@ -61,12 +64,17 @@ jobs: - name: Install dependencies run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Run build scripts run: npm run build - name: Update search indexes env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ github.event.inputs.version }} LANGUAGE: ${{ github.event.inputs.language }} run: npm run sync-search diff --git a/.github/workflows/sync-search-pr.yml b/.github/workflows/sync-search-pr.yml index 341bcc8a9f..41b2cc0145 100644 --- a/.github/workflows/sync-search-pr.yml +++ b/.github/workflows/sync-search-pr.yml @@ -13,6 +13,9 @@ on: # Ultimately, for debugging this workflow itself - .github/workflows/sync-search-pr.yml +permissions: + contents: read + jobs: lint: runs-on: ubuntu-latest @@ -29,6 +32,12 @@ jobs: - name: Install dependencies run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - name: Build run: npm run build diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 8f368448c5..969b0c61e6 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -12,6 +12,9 @@ on: schedule: - cron: '50 19 * * *' # once a day at 19:50 UTC / 11:50 PST +permissions: + contents: read + env: CI: true @@ -50,6 +53,12 @@ jobs: - name: Install dependencies run: npm ci + - name: Cache nextjs build + uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 + with: + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} + - if: ${{ github.repository == 'github/docs-internal' }} name: Clone early access run: npm run heroku-postbuild diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 346b829705..c3c3198712 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,11 +8,13 @@ name: Node.js Tests on: workflow_dispatch: - push: - branches: - - main pull_request: +permissions: + contents: read + # Needed for the 'trilom/file-changes-action' action + pull-requests: read + env: CI: true @@ -81,7 +83,7 @@ jobs: uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 with: path: .next/cache - key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }}-${{ hashFiles('.github/workflows/test.yml') }} + key: ${{ runner.os }}-nextjs-${{ hashFiles('package*.json') }} - name: Run build script run: npm run build diff --git a/.github/workflows/transfer-api-issue-to-openapi.yml b/.github/workflows/transfer-api-issue-to-openapi.yml index b03c55e371..b7875594cd 100644 --- a/.github/workflows/transfer-api-issue-to-openapi.yml +++ b/.github/workflows/transfer-api-issue-to-openapi.yml @@ -9,6 +9,9 @@ on: types: - labeled +permissions: + contents: none + jobs: transfer-issue: name: Transfer issue diff --git a/.github/workflows/transfer-to-localization-repo.yml b/.github/workflows/transfer-to-localization-repo.yml index 0e34e61a3c..a7fd81d4c3 100644 --- a/.github/workflows/transfer-to-localization-repo.yml +++ b/.github/workflows/transfer-to-localization-repo.yml @@ -4,14 +4,14 @@ name: Copy to REST API issue to docs-content # **Why we have it**: REST API updates cannot be made in the open source repo. Instead, we copy the issue to an internal issue (we do not transfer so that the issue does not disappear for the contributor) and close the original issue. # **Who does it impact**: Open source and docs-content maintainers -permissions: - contents: write - on: issues: types: - labeled +permissions: + contents: none + jobs: transfer-issue: name: Transfer issue diff --git a/.github/workflows/triage-issue-comments.yml b/.github/workflows/triage-issue-comments.yml index 0d06cd7825..d99bc0973b 100644 --- a/.github/workflows/triage-issue-comments.yml +++ b/.github/workflows/triage-issue-comments.yml @@ -11,6 +11,7 @@ on: permissions: issues: write + repository-projects: write jobs: triage-issue-comments: @@ -22,7 +23,6 @@ jobs: uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d id: is-internal-contributor with: - github-token: ${{ secrets.GITHUB_TOKEN }} result-encoding: string script: | const repo = context.payload.repository.name diff --git a/.github/workflows/triage-pull-requests.yml b/.github/workflows/triage-pull-requests.yml index 894acb1ecf..5a5088d3f6 100644 --- a/.github/workflows/triage-pull-requests.yml +++ b/.github/workflows/triage-pull-requests.yml @@ -13,7 +13,6 @@ on: permissions: pull-requests: write repository-projects: write - issues: write jobs: triage_pulls: diff --git a/.github/workflows/triage-unallowed-contributions.yml b/.github/workflows/triage-unallowed-contributions.yml index 30e1d18494..8d0bc42442 100644 --- a/.github/workflows/triage-unallowed-contributions.yml +++ b/.github/workflows/triage-unallowed-contributions.yml @@ -24,6 +24,9 @@ on: - 'scripts/**' - 'translations/**' +permissions: + pull-requests: write + jobs: triage: if: >- @@ -75,7 +78,6 @@ jobs: if: ${{ steps.filter.outputs.notAllowed }} uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d with: - github-token: ${{ secrets.GITHUB_TOKEN }} script: | const badFilesArr = [ '.github/actions-scripts/**', @@ -102,7 +104,7 @@ jobs: let workflowFailMessage = "It looks like you've modified some files that we can't accept as contributions." try { - createdComment = await github.issues.createComment ({ + createdComment = await github.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.payload.number, diff --git a/.github/workflows/triage-unallowed-internal-changes.yml b/.github/workflows/triage-unallowed-internal-changes.yml index d79127c62e..f184606f7a 100644 --- a/.github/workflows/triage-unallowed-internal-changes.yml +++ b/.github/workflows/triage-unallowed-internal-changes.yml @@ -13,6 +13,10 @@ on: - reopened - synchronize +permissions: + # This is needed by dorny/paths-filter + pull-requests: read + jobs: check-internal-changes: if: github.repository == 'github/docs-internal' && github.event.pull_request.user.login != 'Octomerger' diff --git a/.github/workflows/update-graphql-files.yml b/.github/workflows/update-graphql-files.yml index 2a59e11c0f..9d984311e1 100644 --- a/.github/workflows/update-graphql-files.yml +++ b/.github/workflows/update-graphql-files.yml @@ -9,6 +9,10 @@ on: schedule: - cron: '20 16 * * *' # run every day at 16:20 UTC / 8:20 PST +permissions: + contents: write + pull-requests: write + # **IMPORTANT:** Do not change the FREEZE environment variable set here! # This workflow runs on a recurring basis. To temporarily disable it (e.g., # during a docs deployment freeze), add an Actions Secret to the repo settings diff --git a/.github/workflows/workflow-lint.yml b/.github/workflows/workflow-lint.yml index 687f73483a..d2e55b215c 100644 --- a/.github/workflows/workflow-lint.yml +++ b/.github/workflows/workflow-lint.yml @@ -17,6 +17,9 @@ on: - '.github/workflows/*.yml' - '.github/workflows/*.yaml' +permissions: + contents: read + jobs: lint: if: ${{ github.repository == 'github/docs-internal' }} diff --git a/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png b/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png new file mode 100644 index 0000000000..9549da5209 Binary files /dev/null and b/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png differ diff --git a/assets/images/help/overview/sign-in-pattern.png b/assets/images/help/overview/sign-in-pattern.png new file mode 100644 index 0000000000..aa25512acb Binary files /dev/null and b/assets/images/help/overview/sign-in-pattern.png differ diff --git a/components/DefaultLayout.tsx b/components/DefaultLayout.tsx index d8a4c66888..e7e09e5266 100644 --- a/components/DefaultLayout.tsx +++ b/components/DefaultLayout.tsx @@ -6,6 +6,7 @@ import { SmallFooter } from 'components/page-footer/SmallFooter' import { ScrollButton } from 'components/ui/ScrollButton' import { SupportSection } from 'components/page-footer/SupportSection' import { DeprecationBanner } from 'components/page-header/DeprecationBanner' +import { RestRepoBanner } from 'components/page-header/RestRepoBanner' import { useMainContext } from 'components/context/MainContext' import { useTranslation } from 'components/hooks/useTranslation' import { useRouter } from 'next/router' @@ -86,6 +87,7 @@ export const DefaultLayout = (props: Props) => {
+ {props.children} diff --git a/components/landing/CodeExamples.tsx b/components/landing/CodeExamples.tsx index 6c16049e0d..8f77b4c672 100644 --- a/components/landing/CodeExamples.tsx +++ b/components/landing/CodeExamples.tsx @@ -1,5 +1,6 @@ import { useState } from 'react' import { ArrowRightIcon, SearchIcon } from '@primer/octicons-react' +import { Text } from '@primer/components' import { useProductLandingContext } from 'components/context/ProductLandingContext' import { useTranslation } from 'components/hooks/useTranslation' @@ -31,6 +32,16 @@ export const CodeExamples = () => { return (
+ + Search code examples: + {
{(isSearching ? searchResults : productCodeExamples.slice(0, numVisible)).map((example) => { return ( -
+
  • -
  • + ) })}
    diff --git a/components/landing/GuideCard.tsx b/components/landing/GuideCard.tsx index 4b4c025ba7..fd94c2f416 100644 --- a/components/landing/GuideCard.tsx +++ b/components/landing/GuideCard.tsx @@ -8,7 +8,7 @@ export const GuideCard = ({ guide }: Props) => { const authorString = `@${authors.join(', @')}` return ( - + ) } diff --git a/components/page-header/RestRepoBanner.tsx b/components/page-header/RestRepoBanner.tsx new file mode 100644 index 0000000000..ec0230d528 --- /dev/null +++ b/components/page-header/RestRepoBanner.tsx @@ -0,0 +1,61 @@ +import React from 'react' +import { Flash } from '@primer/components' +import { useRouter } from 'next/router' +import { Link } from 'components/Link' + +const restDisplayPages = [ + '/rest/reference/branches', + '/rest/reference/collaborators', + '/rest/reference/commits', + '/rest/reference/deployments', + '/rest/reference/pages', + '/rest/reference/releases', + '/rest/reference/repos', + '/rest/reference/repository-metrics', + '/rest/reference/webhooks', +] +const restRepoCategoryExceptionsTitles = { + branches: 'Branches', + collaborators: 'Collaborators', + commits: 'Commits', + deployments: 'Deployments', + pages: 'GitHub Pages', + releases: 'Releases', + 'repository-metrics': 'Repository metrics', + webhooks: 'Webhooks', +} + +export const RestRepoBanner = () => { + const router = useRouter() + const asPathRoot = router.asPath.split('?')[0].split('#')[0] + if (!restDisplayPages.includes(asPathRoot)) { + return null + } + + const pages = Object.keys(restRepoCategoryExceptionsTitles) as Array< + keyof typeof restRepoCategoryExceptionsTitles + > + const newRestPagesText = pages.map((page, i) => [ + + + {restRepoCategoryExceptionsTitles[page]} + + {i < pages.length - 1 && ', '} + , + ]) + + return ( +
    + +

    + + + We've recently moved some of the REST API documentation. If you can't find what you're + looking for, you might try the new {newRestPagesText} REST API pages. + + {' '} +

    +
    +
    + ) +} diff --git a/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md index 57084beb98..baf34206bf 100644 --- a/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md +++ b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md @@ -20,6 +20,12 @@ shortTitle: Merge multiple user accounts {% endtip %} +{% warning %} + +**Warning:** Organization and repository access permissions aren't transferable between accounts. If the account you want to delete has an existing access permission, an organization owner or repository administrator will need to invite the account that you want to keep. + +{% endwarning %} + 1. [Transfer any repositories](/articles/how-to-transfer-a-repository) from the account you want to delete to the account you want to keep. Issues, pull requests, and wikis are transferred as well. Verify the repositories exist on the account you want to keep. 2. [Update the remote URLs](/github/getting-started-with-github/managing-remote-repositories) in any local clones of the repositories that were moved. 3. [Delete the account](/articles/deleting-your-user-account) you no longer want to use. diff --git a/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md b/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md index a940a03bc6..17ecdbe875 100644 --- a/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md +++ b/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md @@ -24,6 +24,6 @@ To view current and past deployments, click **Environments** on the home page of The deployments page displays the last active deployment of each environment for your repository. If the deployment includes an environment URL, a **View deployment** button that links to the URL is shown next to the deployment. -The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/repos#inactive-deployments)." +The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/deployments#inactive-deployments)." You can also use the REST API to get information about deployments. For more information, see "[Repositories](/rest/reference/repos#deployments)." diff --git a/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 1b90750003..0ae07c935f 100644 --- a/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service actions.runner.octo-org-octo-repo.runner01.service ``` +If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command: + +```shell +$ systemctl --type=service | grep actions.runner +actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname) +``` + You can use `journalctl` to monitor the real-time activity of the self-hosted runner: ```shell diff --git a/content/actions/learn-github-actions/events-that-trigger-workflows.md b/content/actions/learn-github-actions/events-that-trigger-workflows.md index d21e833b8c..56e92056f6 100644 --- a/content/actions/learn-github-actions/events-that-trigger-workflows.md +++ b/content/actions/learn-github-actions/events-that-trigger-workflows.md @@ -307,7 +307,7 @@ on: ### `deployment_status` -Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/repos#create-a-deployment-status)." +Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/deployments#create-a-deployment-status)." | Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` | | --------------------- | -------------- | ------------ | -------------| @@ -701,7 +701,7 @@ on: {% note %} -**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/repos#get-a-commit)". +**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/commits#get-a-commit)". {% endnote %} diff --git a/content/admin/advanced-security/index.md b/content/admin/advanced-security/index.md index b90c255c0a..9bb979a9eb 100644 --- a/content/admin/advanced-security/index.md +++ b/content/admin/advanced-security/index.md @@ -15,8 +15,6 @@ children: - /enabling-github-advanced-security-for-your-enterprise - /configuring-code-scanning-for-your-appliance - /configuring-secret-scanning-for-your-appliance - - /viewing-your-github-advanced-security-usage - /overview-of-github-advanced-security-deployment - /deploying-github-advanced-security-in-your-enterprise --- - diff --git a/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md b/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md deleted file mode 100644 index 9e7c1ef0c2..0000000000 --- a/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Viewing your GitHub Advanced Security usage -intro: 'You can view usage of your {% data variables.product.prodname_GH_advanced_security %} license.' -permissions: 'Enterprise owners can view usage for {% data variables.product.prodname_GH_advanced_security %}.' -product: '{% data reusables.gated-features.ghas %}' -versions: - ghes: '>=3.1' -type: how_to -topics: - - Advanced Security - - Enterprise - - Licensing -shortTitle: View Advanced Security usage ---- - -## About licenses for {% data variables.product.prodname_GH_advanced_security %} - -{% data reusables.advanced-security.about-ghas-license-seats %} For more information, see "[About billing for {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)." - -## Viewing license usage for {% data variables.product.prodname_GH_advanced_security %} - -You can check how many seats your license includes and how many seats are currently in use. - -{% data reusables.enterprise-accounts.access-enterprise %} -{% data reusables.enterprise-accounts.settings-tab %} -{% data reusables.enterprise-accounts.license-tab %} - The "{% data variables.product.prodname_GH_advanced_security %}" section shows details of the current usage. You can see the total number of seats used, as well as a table with the number of committers and unique committers for each organization. - ![{% data variables.product.prodname_GH_advanced_security %} section of Enterprise license](/assets/images/help/billing/ghas-orgs-list-enterprise-ghes.png) -5. Optionally, click the name of an organization where you are an owner to display the security and analysis settings for the organization. - ![Owned organization in {% data variables.product.prodname_GH_advanced_security %} section of enterprise billing settings](/assets/images/help/billing/ghas-orgs-list-enterprise-click-org.png) -6. On the "Security & analysis" settings page, scroll to the "{% data variables.product.prodname_GH_advanced_security %} repositories" section to see a detailed breakdown of usage by repository for this organization. - ![{% data variables.product.prodname_GH_advanced_security %} repositories section](/assets/images/help/enterprises/settings-security-analysis-ghas-repos-list.png) - 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)." diff --git a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md index c28251a9ed..3711fe5ef6 100644 --- a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md +++ b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md @@ -1,7 +1,7 @@ --- title: Disabling unauthenticated sign-ups redirect_from: - - /enterprise/admin/articles/disabling-sign-ups/ + - /enterprise/admin/articles/disabling-sign-ups - /enterprise/admin/user-management/disabling-unauthenticated-sign-ups - /enterprise/admin/authentication/disabling-unauthenticated-sign-ups - /admin/authentication/disabling-unauthenticated-sign-ups diff --git a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md index 822216f4d3..5d51187af0 100644 --- a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md +++ b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md @@ -2,10 +2,10 @@ title: Authenticating users for your GitHub Enterprise Server instance intro: 'You can use {% data variables.product.prodname_ghe_server %}''s built-in authentication, or choose between CAS, LDAP, or SAML to integrate your existing accounts and centrally manage user access to {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/categories/authentication/ - - /enterprise/admin/guides/installation/user-authentication/ - - /enterprise/admin/articles/inviting-users/ - - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance/ + - /enterprise/admin/categories/authentication + - /enterprise/admin/guides/installation/user-authentication + - /enterprise/admin/articles/inviting-users + - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance - /enterprise/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance - /enterprise/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance versions: diff --git a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md index d16b3ad090..b1276f2de7 100644 --- a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md +++ b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md @@ -1,8 +1,8 @@ --- title: Using CAS redirect_from: - - /enterprise/admin/articles/configuring-cas-authentication/ - - /enterprise/admin/articles/about-cas-authentication/ + - /enterprise/admin/articles/configuring-cas-authentication + - /enterprise/admin/articles/about-cas-authentication - /enterprise/admin/user-management/using-cas - /enterprise/admin/authentication/using-cas - /admin/authentication/using-cas diff --git a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md index a7d55a8a16..77d922b9e8 100644 --- a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md +++ b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md @@ -1,11 +1,11 @@ --- title: Using LDAP redirect_from: - - /enterprise/admin/articles/configuring-ldap-authentication/ - - /enterprise/admin/articles/about-ldap-authentication/ - - /enterprise/admin/articles/viewing-ldap-users/ - - /enterprise/admin/hidden/enabling-ldap-sync/ - - /enterprise/admin/hidden/ldap-sync/ + - /enterprise/admin/articles/configuring-ldap-authentication + - /enterprise/admin/articles/about-ldap-authentication + - /enterprise/admin/articles/viewing-ldap-users + - /enterprise/admin/hidden/enabling-ldap-sync + - /enterprise/admin/hidden/ldap-sync - /enterprise/admin/user-management/using-ldap - /enterprise/admin/authentication/using-ldap - /admin/authentication/using-ldap diff --git a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md index b7f582ffcb..33cd83f62b 100644 --- a/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md +++ b/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md @@ -1,8 +1,8 @@ --- title: Using SAML redirect_from: - - /enterprise/admin/articles/configuring-saml-authentication/ - - /enterprise/admin/articles/about-saml-authentication/ + - /enterprise/admin/articles/configuring-saml-authentication + - /enterprise/admin/articles/about-saml-authentication - /enterprise/admin/user-management/using-saml - /enterprise/admin/authentication/using-saml - /admin/authentication/using-saml diff --git a/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md b/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md index d41f097870..c82069b7a4 100644 --- a/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md +++ b/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md @@ -4,7 +4,7 @@ shortTitle: Manage users with your IdP product: '{% data reusables.gated-features.emus %}' intro: You can manage identity and access with your identity provider and provision accounts that can only contribute to your enterprise. redirect_from: - - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/ + - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider versions: ghec: '*' topics: diff --git a/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md b/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md index 64d3cab3e7..2727ae6ddc 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md +++ b/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md @@ -2,7 +2,7 @@ title: Configuring a hostname intro: We recommend setting a hostname for your appliance instead of using a hard-coded IP address. redirect_from: - - /enterprise/admin/guides/installation/configuring-hostnames/ + - /enterprise/admin/guides/installation/configuring-hostnames - /enterprise/admin/installation/configuring-a-hostname - /enterprise/admin/configuration/configuring-a-hostname - /admin/configuration/configuring-a-hostname diff --git a/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md b/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md index 8d3b1c125e..efcd3a1f2d 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md +++ b/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md @@ -2,7 +2,7 @@ title: Configuring an outbound web proxy server intro: 'A proxy server provides an additional level of security for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-a-proxy-server/ + - /enterprise/admin/guides/installation/configuring-a-proxy-server - /enterprise/admin/installation/configuring-an-outbound-web-proxy-server - /enterprise/admin/configuration/configuring-an-outbound-web-proxy-server - /admin/configuration/configuring-an-outbound-web-proxy-server diff --git a/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md b/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md index a900a3e29c..b6f5cbfb9d 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md +++ b/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md @@ -2,7 +2,7 @@ title: Configuring built-in firewall rules intro: 'You can view default firewall rules and customize rules for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-firewall-settings/ + - /enterprise/admin/guides/installation/configuring-firewall-settings - /enterprise/admin/installation/configuring-built-in-firewall-rules - /enterprise/admin/configuration/configuring-built-in-firewall-rules - /admin/configuration/configuring-built-in-firewall-rules diff --git a/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md b/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md index 0067394792..0080d55693 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md +++ b/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md @@ -2,7 +2,7 @@ title: Configuring DNS nameservers intro: '{% data variables.product.prodname_ghe_server %} uses the dynamic host configuration protocol (DHCP) for DNS settings when DHCP leases provide nameservers. If nameservers are not provided by a dynamic host configuration protocol (DHCP) lease, or if you need to use specific DNS settings, you can specify the nameservers manually.' redirect_from: - - /enterprise/admin/guides/installation/about-dns-nameservers/ + - /enterprise/admin/guides/installation/about-dns-nameservers - /enterprise/admin/installation/configuring-dns-nameservers - /enterprise/admin/configuration/configuring-dns-nameservers - /admin/configuration/configuring-dns-nameservers diff --git a/content/admin/configuration/configuring-network-settings/configuring-tls.md b/content/admin/configuration/configuring-network-settings/configuring-tls.md index 9fcec6ca70..e3a251095c 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-tls.md +++ b/content/admin/configuration/configuring-network-settings/configuring-tls.md @@ -2,8 +2,8 @@ title: Configuring TLS intro: 'You can configure Transport Layer Security (TLS) on {% data variables.product.product_location %} so that you can use a certificate that is signed by a trusted certificate authority.' redirect_from: - - /enterprise/admin/articles/ssl-configuration/ - - /enterprise/admin/guides/installation/about-tls/ + - /enterprise/admin/articles/ssl-configuration + - /enterprise/admin/guides/installation/about-tls - /enterprise/admin/installation/configuring-tls - /enterprise/admin/configuration/configuring-tls - /admin/configuration/configuring-tls diff --git a/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md b/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md index ce4f86af70..24d09e4f83 100644 --- a/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md +++ b/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md @@ -2,7 +2,7 @@ title: Enabling subdomain isolation intro: 'You can set up subdomain isolation to securely separate user-supplied content from other portions of your {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - - /enterprise/admin/guides/installation/about-subdomain-isolation/ + - /enterprise/admin/guides/installation/about-subdomain-isolation - /enterprise/admin/installation/enabling-subdomain-isolation - /enterprise/admin/configuration/enabling-subdomain-isolation - /admin/configuration/enabling-subdomain-isolation diff --git a/content/admin/configuration/configuring-network-settings/index.md b/content/admin/configuration/configuring-network-settings/index.md index 68ebcab306..e3a5d06573 100644 --- a/content/admin/configuration/configuring-network-settings/index.md +++ b/content/admin/configuration/configuring-network-settings/index.md @@ -1,10 +1,10 @@ --- title: Configuring network settings redirect_from: - - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl/ - - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings/ + - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl + - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings + - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings + - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings - /enterprise/admin/installation/configuring-your-github-enterprise-server-network-settings - /enterprise/admin/configuration/configuring-network-settings intro: 'Configure {% data variables.product.prodname_ghe_server %} with the DNS nameservers and hostname required in your network. You can also configure a proxy server or firewall rules. You must allow access to certain ports for administrative and user purposes.' diff --git a/content/admin/configuration/configuring-network-settings/network-ports.md b/content/admin/configuration/configuring-network-settings/network-ports.md index 4fcd17c1a7..80cfbb860b 100644 --- a/content/admin/configuration/configuring-network-settings/network-ports.md +++ b/content/admin/configuration/configuring-network-settings/network-ports.md @@ -1,10 +1,10 @@ --- title: Network ports redirect_from: - - /enterprise/admin/articles/configuring-firewalls/ - - /enterprise/admin/articles/firewall/ - - /enterprise/admin/guides/installation/network-configuration/ - - /enterprise/admin/guides/installation/network-ports-to-open/ + - /enterprise/admin/articles/configuring-firewalls + - /enterprise/admin/articles/firewall + - /enterprise/admin/guides/installation/network-configuration + - /enterprise/admin/guides/installation/network-ports-to-open - /enterprise/admin/installation/network-ports - /enterprise/admin/configuration/network-ports - /admin/configuration/network-ports diff --git a/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md b/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md index 8f8fdadc5a..b720b6c9a0 100644 --- a/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md +++ b/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md @@ -2,7 +2,7 @@ title: Using GitHub Enterprise Server with a load balancer intro: 'Use a load balancer in front of a single {% data variables.product.prodname_ghe_server %} appliance or a pair of appliances in a High Availability configuration.' redirect_from: - - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer/ + - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer - /enterprise/admin/installation/using-github-enterprise-server-with-a-load-balancer - /enterprise/admin/configuration/using-github-enterprise-server-with-a-load-balancer - /admin/configuration/using-github-enterprise-server-with-a-load-balancer diff --git a/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md b/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md index 2a3472f80a..c0e8a764c7 100644 --- a/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md +++ b/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md @@ -1,13 +1,13 @@ --- title: Accessing the administrative shell (SSH) redirect_from: - - /enterprise/admin/articles/ssh-access/ - - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access/ - - /enterprise/admin/guides/installation/administrative-shell-ssh-access/ - - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey/ + - /enterprise/admin/articles/ssh-access + - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access + - /enterprise/admin/guides/installation/administrative-shell-ssh-access + - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey - /enterprise/admin/installation/accessing-the-administrative-shell-ssh - /enterprise/admin/configuration/accessing-the-administrative-shell-ssh - /admin/configuration/accessing-the-administrative-shell-ssh diff --git a/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md b/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md index ffc53c7878..d78d9ed5dd 100644 --- a/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md +++ b/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md @@ -2,12 +2,12 @@ title: Accessing the management console intro: '{% data reusables.enterprise_site_admin_settings.about-the-management-console %}' redirect_from: - - /enterprise/admin/articles/about-the-management-console/ - - /enterprise/admin/articles/management-console-for-emergency-recovery/ - - /enterprise/admin/articles/web-based-management-console/ - - /enterprise/admin/categories/management-console/ - - /enterprise/admin/articles/accessing-the-management-console/ - - /enterprise/admin/guides/installation/web-based-management-console/ + - /enterprise/admin/articles/about-the-management-console + - /enterprise/admin/articles/management-console-for-emergency-recovery + - /enterprise/admin/articles/web-based-management-console + - /enterprise/admin/categories/management-console + - /enterprise/admin/articles/accessing-the-management-console + - /enterprise/admin/guides/installation/web-based-management-console - /enterprise/admin/installation/accessing-the-management-console - /enterprise/admin/configuration/accessing-the-management-console - /admin/configuration/accessing-the-management-console diff --git a/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md b/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md index 2e8a16c345..2c3a6f3bb8 100644 --- a/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md +++ b/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md @@ -2,8 +2,8 @@ title: Command-line utilities intro: '{% data variables.product.prodname_ghe_server %} includes a variety of utilities to help resolve particular problems or perform specific tasks.' redirect_from: - - /enterprise/admin/articles/viewing-all-services/ - - /enterprise/admin/articles/command-line-utilities/ + - /enterprise/admin/articles/viewing-all-services + - /enterprise/admin/articles/command-line-utilities - /enterprise/admin/installation/command-line-utilities - /enterprise/admin/configuration/command-line-utilities - /admin/configuration/command-line-utilities diff --git a/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md b/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md index 3b90a9cf47..7a347ea3ce 100644 --- a/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md +++ b/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md @@ -2,15 +2,15 @@ title: Configuring backups on your appliance shortTitle: Configuring backups redirect_from: - - /enterprise/admin/categories/backups-and-restores/ - - /enterprise/admin/articles/backup-and-recovery/ - - /enterprise/admin/articles/backing-up-github-enterprise/ - - /enterprise/admin/articles/restoring-github-enterprise/ - - /enterprise/admin/articles/backing-up-repository-data/ - - /enterprise/admin/articles/restoring-enterprise-data/ - - /enterprise/admin/articles/restoring-repository-data/ - - /enterprise/admin/articles/backing-up-enterprise-data/ - - /enterprise/admin/guides/installation/backups-and-disaster-recovery/ + - /enterprise/admin/categories/backups-and-restores + - /enterprise/admin/articles/backup-and-recovery + - /enterprise/admin/articles/backing-up-github-enterprise + - /enterprise/admin/articles/restoring-github-enterprise + - /enterprise/admin/articles/backing-up-repository-data + - /enterprise/admin/articles/restoring-enterprise-data + - /enterprise/admin/articles/restoring-repository-data + - /enterprise/admin/articles/backing-up-enterprise-data + - /enterprise/admin/guides/installation/backups-and-disaster-recovery - /enterprise/admin/installation/configuring-backups-on-your-appliance - /enterprise/admin/configuration/configuring-backups-on-your-appliance - /admin/configuration/configuring-backups-on-your-appliance diff --git a/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md b/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md index 908386931e..e0987ad337 100644 --- a/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md +++ b/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md @@ -2,10 +2,10 @@ title: Configuring email for notifications intro: 'To make it easy for users to respond quickly to activity on {% data variables.product.product_name %}, you can configure {% data variables.product.product_location %} to send email notifications for issue, pull request, and commit comments.' redirect_from: - - /enterprise/admin/guides/installation/email-configuration/ - - /enterprise/admin/articles/configuring-email/ - - /enterprise/admin/articles/troubleshooting-email/ - - /enterprise/admin/articles/email-configuration-and-troubleshooting/ + - /enterprise/admin/guides/installation/email-configuration + - /enterprise/admin/articles/configuring-email + - /enterprise/admin/articles/troubleshooting-email + - /enterprise/admin/articles/email-configuration-and-troubleshooting - /enterprise/admin/user-management/configuring-email-for-notifications - /admin/configuration/configuring-email-for-notifications versions: diff --git a/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md b/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md index d5d41ee13a..d341653ffe 100644 --- a/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md +++ b/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md @@ -2,12 +2,12 @@ title: Configuring GitHub Pages for your enterprise intro: 'You can enable or disable {% data variables.product.prodname_pages %} for your enterprise{% ifversion ghes %} and choose whether to make sites publicly accessible{% endif %}.' redirect_from: - - /enterprise/admin/guides/installation/disabling-github-enterprise-pages/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-pages/ + - /enterprise/admin/guides/installation/disabling-github-enterprise-pages + - /enterprise/admin/guides/installation/configuring-github-enterprise-pages - /enterprise/admin/installation/configuring-github-pages-on-your-appliance - /enterprise/admin/configuration/configuring-github-pages-on-your-appliance - /admin/configuration/configuring-github-pages-on-your-appliance - - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise/ + - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise - /admin/configuration/configuring-github-pages-for-your-enterprise versions: ghes: '*' diff --git a/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md b/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md index 37a9acf3e4..0d0af44dc0 100644 --- a/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md +++ b/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md @@ -2,10 +2,10 @@ title: Configuring time synchronization intro: '{% data variables.product.prodname_ghe_server %} automatically synchronizes its clock by connecting to NTP servers. You can set the NTP servers that are used to synchronize the clock, or you can use the default NTP servers.' redirect_from: - - /enterprise/admin/articles/adjusting-the-clock/ - - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings/ - - /enterprise/admin/articles/setting-ntp-servers/ - - /enterprise/admin/categories/time/ + - /enterprise/admin/articles/adjusting-the-clock + - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings + - /enterprise/admin/articles/setting-ntp-servers + - /enterprise/admin/categories/time - /enterprise/admin/installation/configuring-time-synchronization - /enterprise/admin/configuration/configuring-time-synchronization - /admin/configuration/configuring-time-synchronization diff --git a/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md b/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md index c1e4d3dbf0..8444f9199d 100644 --- a/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md +++ b/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md @@ -2,12 +2,12 @@ title: Enabling and scheduling maintenance mode intro: 'Some standard maintenance procedures, such as upgrading {% data variables.product.product_location %} or restoring backups, require the instance to be taken offline for normal use.' redirect_from: - - /enterprise/admin/maintenance-mode/ - - /enterprise/admin/categories/maintenance-mode/ - - /enterprise/admin/articles/maintenance-mode/ - - /enterprise/admin/articles/enabling-maintenance-mode/ - - /enterprise/admin/articles/disabling-maintenance-mode/ - - /enterprise/admin/guides/installation/maintenance-mode/ + - /enterprise/admin/maintenance-mode + - /enterprise/admin/categories/maintenance-mode + - /enterprise/admin/articles/maintenance-mode + - /enterprise/admin/articles/enabling-maintenance-mode + - /enterprise/admin/articles/disabling-maintenance-mode + - /enterprise/admin/guides/installation/maintenance-mode - /enterprise/admin/installation/enabling-and-scheduling-maintenance-mode - /enterprise/admin/configuration/enabling-and-scheduling-maintenance-mode - /admin/configuration/enabling-and-scheduling-maintenance-mode diff --git a/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md b/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md index 02bc75465a..a4343fa9a8 100644 --- a/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md +++ b/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md @@ -2,9 +2,9 @@ title: Enabling private mode intro: 'In private mode, {% data variables.product.prodname_ghe_server %} requires every user to sign in to access the installation.' redirect_from: - - /enterprise/admin/articles/private-mode/ - - /enterprise/admin/guides/installation/security/ - - /enterprise/admin/guides/installation/securing-your-instance/ + - /enterprise/admin/articles/private-mode + - /enterprise/admin/guides/installation/security + - /enterprise/admin/guides/installation/securing-your-instance - /enterprise/admin/installation/enabling-private-mode - /enterprise/admin/configuration/enabling-private-mode - /admin/configuration/enabling-private-mode diff --git a/content/admin/configuration/configuring-your-enterprise/index.md b/content/admin/configuration/configuring-your-enterprise/index.md index aa921c6d45..ff4c39c4da 100644 --- a/content/admin/configuration/configuring-your-enterprise/index.md +++ b/content/admin/configuration/configuring-your-enterprise/index.md @@ -2,10 +2,10 @@ title: Configuring your enterprise intro: 'After {% data variables.product.product_name %} is up and running, you can configure your enterprise to suit your organization''s needs.' redirect_from: - - /enterprise/admin/guides/installation/basic-configuration/ - - /enterprise/admin/guides/installation/administrative-tools/ - - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts/ - - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/basic-configuration + - /enterprise/admin/guides/installation/administrative-tools + - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts + - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance - /enterprise/admin/installation/configuring-the-github-enterprise-server-appliance - /enterprise/admin/configuration/configuring-your-enterprise versions: diff --git a/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md b/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md index 610a1878cc..36e474e3e2 100644 --- a/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md +++ b/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md @@ -2,7 +2,7 @@ title: Site admin dashboard intro: '{% data reusables.enterprise_site_admin_settings.about-the-site-admin-dashboard %}' redirect_from: - - /enterprise/admin/articles/site-admin-dashboard/ + - /enterprise/admin/articles/site-admin-dashboard - /enterprise/admin/installation/site-admin-dashboard - /enterprise/admin/configuration/site-admin-dashboard - /admin/configuration/site-admin-dashboard diff --git a/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md b/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md index 1f946a6340..40a22785f7 100644 --- a/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md +++ b/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md @@ -2,8 +2,8 @@ title: Troubleshooting SSL errors intro: 'If you run into SSL issues with your appliance, you can take actions to resolve them.' redirect_from: - - /enterprise/admin/articles/troubleshooting-ssl-errors/ - - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration/ + - /enterprise/admin/articles/troubleshooting-ssl-errors + - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration - /enterprise/admin/installation/troubleshooting-ssl-errors - /enterprise/admin/configuration/troubleshooting-ssl-errors - /admin/configuration/troubleshooting-ssl-errors diff --git a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md index 5a1202b892..ac01707283 100644 --- a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md +++ b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md @@ -3,9 +3,9 @@ title: Connecting your enterprise account to GitHub Enterprise Cloud shortTitle: Connect enterprise accounts intro: 'After you enable {% data variables.product.prodname_github_connect %}, you can share specific features and workflows between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom/ + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom - /enterprise/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud - /enterprise/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud - /admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud @@ -34,15 +34,19 @@ To configure a connection, your proxy configuration must allow connectivity to ` After enabling {% data variables.product.prodname_github_connect %}, you will be able to enable features such as unified search and unified contributions. For more information about all of the features available, see "[Managing connections between your enterprise accounts](/admin/configuration/managing-connections-between-your-enterprise-accounts)." -When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: +When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, or enable {% data variables.product.prodname_github_connect %} features, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: {% ifversion ghes %} - The public key portion of your {% data variables.product.prodname_ghe_server %} license - A hash of your {% data variables.product.prodname_ghe_server %} license - The customer name on your {% data variables.product.prodname_ghe_server %} license - The version of {% data variables.product.product_location_enterprise %}{% endif %} -- The hostname of your {% data variables.product.product_name %} instance +- The hostname of {% data variables.product.product_location %} - The organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %} that's connected to {% data variables.product.product_location %} - The authentication token that's used by {% data variables.product.product_location %} to make requests to {% data variables.product.prodname_dotcom_the_website %} +- If Transport Layer Security (TLS) is enabled and configured on {% data variables.product.product_location %}{% ifversion ghes %} +- The {% data variables.product.prodname_github_connect %} features that are enabled on {% data variables.product.product_location %}, and the date and time of enablement{% endif %} + +{% data variables.product.prodname_github_connect %} syncs the above connection data between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %} weekly, from the day and approximate time that {% data variables.product.prodname_github_connect %} was enabled. Enabling {% data variables.product.prodname_github_connect %} also creates a {% data variables.product.prodname_github_app %} owned by your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account. {% data variables.product.product_name %} uses the {% data variables.product.prodname_github_app %}'s credentials to make requests to {% data variables.product.prodname_dotcom_the_website %}. {% ifversion ghes %} diff --git a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md index 2691561e8b..27ad1a6dcc 100644 --- a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md +++ b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md @@ -37,6 +37,8 @@ For more information about these features, see "[About the dependency graph](/gi You can connect {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %} with {% data variables.product.prodname_github_connect %}. Once connected, vulnerability data is synced from the {% data variables.product.prodname_advisory_database %} to your instance once every hour. You can also choose to manually sync vulnerability data at any time. No code or information about code from {% data variables.product.product_location %} is uploaded to {% data variables.product.prodname_dotcom_the_website %}. +Only {% data variables.product.company_short %}-reviewed advisories are synchronized. {% data reusables.security-advisory.link-browsing-advisory-db %} + ### About generation of {% data variables.product.prodname_dependabot_alerts %} If you enable vulnerability detection, when {% data variables.product.product_location %} receives information about a vulnerability, it identifies repositories in your instance that use the affected version of the dependency and generates {% data variables.product.prodname_dependabot_alerts %}. You can choose whether or not to notify users automatically about new {% data variables.product.prodname_dependabot_alerts %}. @@ -70,19 +72,23 @@ You can enable the dependency graph via the {% data variables.enterprise.managem {% endif %} {% data reusables.enterprise_site_admin_settings.sign-in %} 1. In the administrative shell, enable the dependency graph on {% data variables.product.product_location %}: - ``` shell - $ {% ifversion ghes > 3.1 %}ghe-config app.dependency-graph.enabled true{% else %}ghe-config app.github.dependency-graph-enabled true{% endif %} + {% ifversion ghes > 3.1 %}```shell + ghe-config app.dependency-graph.enabled true ``` + {% else %}```shell + ghe-config app.github.dependency-graph-enabled true + ghe-config app.github.vulnerability-alerting-and-settings-enabled true + ```{% endif %} {% note %} **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)." {% endnote %} -1. Apply the configuration. +2. Apply the configuration. ```shell $ ghe-config-apply ``` -1. Return to {% data variables.product.prodname_ghe_server %}. +3. Return to {% data variables.product.prodname_ghe_server %}. {% endif %} ### Enabling {% data variables.product.prodname_dependabot_alerts %} diff --git a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md index 22ccd67d2e..dd4e7113c3 100644 --- a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md +++ b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified contributions between your enterprise account and GitHub shortTitle: Enable unified contributions intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow {% data variables.product.prodname_ghe_cloud %} members to highlight their work on {% data variables.product.product_name %} by sending the contribution counts to their {% data variables.product.prodname_dotcom_the_website %} profiles.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom diff --git a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md index e857470482..0235337178 100644 --- a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md +++ b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified search between your enterprise account and GitHub.com shortTitle: Enable unified search intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow search of {% data variables.product.prodname_dotcom_the_website %} for members of your enterprise on {% data variables.product.product_name %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom diff --git a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md index c5a822c47a..f46553f059 100644 --- a/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md +++ b/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md @@ -3,9 +3,9 @@ title: Managing connections between your enterprise accounts intro: 'With {% data variables.product.prodname_github_connect %}, you can share certain features and data between {% data variables.product.product_location %} and your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %}.' redirect_from: - /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom - /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud diff --git a/content/admin/enterprise-management/configuring-clustering/about-clustering.md b/content/admin/enterprise-management/configuring-clustering/about-clustering.md index d705785d99..77aa3f9b25 100644 --- a/content/admin/enterprise-management/configuring-clustering/about-clustering.md +++ b/content/admin/enterprise-management/configuring-clustering/about-clustering.md @@ -4,7 +4,7 @@ intro: '{% data variables.product.prodname_ghe_server %} clustering allows servi redirect_from: - /enterprise/admin/clustering/overview - /enterprise/admin/clustering/about-clustering - - /enterprise/admin/clustering/clustering-overview/ + - /enterprise/admin/clustering/clustering-overview - /enterprise/admin/enterprise-management/about-clustering - /admin/enterprise-management/about-clustering versions: diff --git a/content/admin/enterprise-management/configuring-clustering/index.md b/content/admin/enterprise-management/configuring-clustering/index.md index 32b7052944..3738fe80e6 100644 --- a/content/admin/enterprise-management/configuring-clustering/index.md +++ b/content/admin/enterprise-management/configuring-clustering/index.md @@ -4,7 +4,7 @@ intro: Learn about clustering and differences with high availability. redirect_from: - /enterprise/admin/clustering/setting-up-the-cluster-instances - /enterprise/admin/clustering/managing-a-github-enterprise-server-cluster - - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster/ + - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster - /enterprise/admin/enterprise-management/configuring-clustering versions: ghes: '*' diff --git a/content/admin/enterprise-management/configuring-high-availability/index.md b/content/admin/enterprise-management/configuring-high-availability/index.md index 3ad7806ea4..f2287f14df 100644 --- a/content/admin/enterprise-management/configuring-high-availability/index.md +++ b/content/admin/enterprise-management/configuring-high-availability/index.md @@ -2,9 +2,9 @@ title: Configuring high availability redirect_from: - /enterprise/admin/installation/configuring-github-enterprise-server-for-high-availability - - /enterprise/admin/guides/installation/high-availability-cluster-configuration/ - - /enterprise/admin/guides/installation/high-availability-configuration/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability/ + - /enterprise/admin/guides/installation/high-availability-cluster-configuration + - /enterprise/admin/guides/installation/high-availability-configuration + - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability - /enterprise/admin/enterprise-management/configuring-high-availability intro: '{% data variables.product.prodname_ghe_server %} supports a high availability mode of operation designed to minimize service disruption in the event of hardware failure or major network outage affecting the primary appliance.' versions: diff --git a/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md b/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md index 210c45457e..8d39fdb11a 100644 --- a/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md +++ b/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md @@ -3,7 +3,7 @@ title: Configuring collectd intro: '{% data variables.product.prodname_enterprise %} can gather data with `collectd` and send it to an external `collectd` server. Among other metrics, we gather a standard set of data such as CPU utilization, memory and disk consumption, network interface traffic and errors, and the VM''s overall load.' redirect_from: - /enterprise/admin/installation/configuring-collectd - - /enterprise/admin/articles/configuring-collectd/ + - /enterprise/admin/articles/configuring-collectd - /enterprise/admin/enterprise-management/configuring-collectd - /admin/enterprise-management/configuring-collectd versions: diff --git a/content/admin/enterprise-management/monitoring-your-appliance/index.md b/content/admin/enterprise-management/monitoring-your-appliance/index.md index a0040fb0e8..bb04a0812b 100644 --- a/content/admin/enterprise-management/monitoring-your-appliance/index.md +++ b/content/admin/enterprise-management/monitoring-your-appliance/index.md @@ -2,8 +2,8 @@ title: Monitoring your appliance intro: 'As use of {% data variables.product.product_location %} increases over time, the utilization of system resources, like CPU, memory, and storage will also increase. You can configure monitoring and alerting so that you''re aware of potential issues before they become critical enough to negatively impact application performance or availability.' redirect_from: - - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting/ - - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting + - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance - /enterprise/admin/installation/monitoring-your-github-enterprise-server-appliance - /enterprise/admin/enterprise-management/monitoring-your-appliance versions: diff --git a/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md b/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md index e159421f26..83d8dda6b5 100644 --- a/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md +++ b/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md @@ -3,7 +3,7 @@ title: Monitoring using SNMP intro: '{% data variables.product.prodname_enterprise %} provides data on disk usage, CPU utilization, memory usage, and more over SNMP.' redirect_from: - /enterprise/admin/installation/monitoring-using-snmp - - /enterprise/admin/articles/monitoring-using-snmp/ + - /enterprise/admin/articles/monitoring-using-snmp - /enterprise/admin/enterprise-management/monitoring-using-snmp - /admin/enterprise-management/monitoring-using-snmp versions: diff --git a/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md b/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md index 1ca3f8a624..fff12c9155 100644 --- a/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md +++ b/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md @@ -2,7 +2,7 @@ title: Recommended alert thresholds intro: 'You can configure an alert to notify you of system resource issues before they affect your {% data variables.product.prodname_ghe_server %} appliance''s performance.' redirect_from: - - /enterprise/admin/guides/installation/about-recommended-alert-thresholds/ + - /enterprise/admin/guides/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/recommended-alert-thresholds - /enterprise/admin/enterprise-management/recommended-alert-thresholds diff --git a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md index f4a274f6c9..126dce06e2 100644 --- a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md +++ b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md @@ -2,8 +2,8 @@ title: Updating the virtual machine and physical resources intro: 'Upgrading the virtual software and virtual hardware requires some downtime for your instance, so be sure to plan your upgrade in advance.' redirect_from: - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm/' - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources/' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources' - /enterprise/admin/installation/updating-the-virtual-machine-and-physical-resources - /enterprise/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources versions: diff --git a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md index 8ce567823e..912f655881 100644 --- a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md +++ b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md @@ -2,11 +2,11 @@ title: Migrating from GitHub Enterprise 11.10.x to 2.1.23 redirect_from: - /enterprise/admin/installation/migrating-from-github-enterprise-1110x-to-2123 - - /enterprise/admin-guide/migrating/ - - /enterprise/admin/articles/migrating-github-enterprise/ - - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x/ - - /enterprise/admin/articles/upgrading-to-a-newer-release/ - - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x/ + - /enterprise/admin-guide/migrating + - /enterprise/admin/articles/migrating-github-enterprise + - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x + - /enterprise/admin/articles/upgrading-to-a-newer-release + - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x - /enterprise/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23 - /enterprise/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 - /admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 diff --git a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md index 2111abfe4f..67ec886148 100644 --- a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md +++ b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md @@ -3,7 +3,7 @@ title: Upgrade requirements intro: 'Before upgrading {% data variables.product.prodname_ghe_server %}, review these recommendations and requirements to plan your upgrade strategy.' redirect_from: - /enterprise/admin/installation/upgrade-requirements - - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release/ + - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release - /enterprise/admin/enterprise-management/upgrade-requirements - /admin/enterprise-management/upgrade-requirements versions: diff --git a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md index 4f60cb3784..7d618961ca 100644 --- a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md +++ b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md @@ -3,15 +3,15 @@ title: Upgrading GitHub Enterprise Server intro: 'Upgrade {% data variables.product.prodname_ghe_server %} to get the latest features and security updates.' redirect_from: - /enterprise/admin/installation/upgrading-github-enterprise-server - - /enterprise/admin/articles/upgrading-to-the-latest-release/ - - /enterprise/admin/articles/migrations-and-upgrades/ - - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine/ - - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases/ - - /enterprise/admin/articles/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch/ - - /enterprise/admin/guides/installation/upgrading-github-enterprise/ + - /enterprise/admin/articles/upgrading-to-the-latest-release + - /enterprise/admin/articles/migrations-and-upgrades + - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine + - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases + - /enterprise/admin/articles/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch + - /enterprise/admin/guides/installation/upgrading-github-enterprise - /enterprise/admin/enterprise-management/upgrading-github-enterprise-server - /admin/enterprise-management/upgrading-github-enterprise-server versions: diff --git a/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md b/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md index c26d306359..19b17f289b 100644 --- a/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md +++ b/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md @@ -2,8 +2,8 @@ title: About GitHub Premium Support for GitHub Enterprise Server intro: '{% data variables.contact.premium_support %} is a paid, supplemental support offering for {% data variables.product.prodname_enterprise %} customers.' redirect_from: - - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise/ - - /enterprise/admin/guides/enterprise-support/about-premium-support/ + - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise + - /enterprise/admin/guides/enterprise-support/about-premium-support - /enterprise/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server - /admin/enterprise-support/about-github-premium-support-for-github-enterprise-server versions: diff --git a/content/admin/enterprise-support/receiving-help-from-github-support/index.md b/content/admin/enterprise-support/receiving-help-from-github-support/index.md index 0d6b73e5cb..68f0cb423b 100644 --- a/content/admin/enterprise-support/receiving-help-from-github-support/index.md +++ b/content/admin/enterprise-support/receiving-help-from-github-support/index.md @@ -2,7 +2,7 @@ title: Receiving help from GitHub Support intro: 'You can contact {% data variables.contact.enterprise_support %} to report a range of issues for your enterprise.' redirect_from: - - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support - /enterprise/admin/enterprise-support/receiving-help-from-github-support versions: ghes: '*' diff --git a/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md b/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md index 2e6d49cb05..66c4f8ca9d 100644 --- a/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md +++ b/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md @@ -2,9 +2,9 @@ title: Providing data to GitHub Support intro: 'Since {% data variables.contact.github_support %} doesn''t have access to your environment, we require some additional information from you.' redirect_from: - - /enterprise/admin/guides/installation/troubleshooting/ - - /enterprise/admin/articles/support-bundles/ - - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support/ + - /enterprise/admin/guides/installation/troubleshooting + - /enterprise/admin/articles/support-bundles + - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support - /enterprise/admin/enterprise-support/providing-data-to-github-support - /admin/enterprise-support/providing-data-to-github-support versions: diff --git a/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md b/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md index 70b1836838..9e60d8c73a 100644 --- a/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md +++ b/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md @@ -2,7 +2,7 @@ title: Reaching GitHub Support intro: 'Contact {% data variables.contact.enterprise_support %} using the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or{% endif %} the support portal.' redirect_from: - - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support - /enterprise/admin/enterprise-support/reaching-github-support - /admin/enterprise-support/reaching-github-support versions: diff --git a/content/admin/installation/index.md b/content/admin/installation/index.md index 33a16df945..385c4412e7 100644 --- a/content/admin/installation/index.md +++ b/content/admin/installation/index.md @@ -3,11 +3,11 @@ title: 'Installing {% data variables.product.prodname_enterprise %}' shortTitle: Installing intro: 'System administrators and operations and security specialists can install {% data variables.product.prodname_ghe_server %}.' redirect_from: - - /enterprise/admin-guide/ - - /enterprise/admin/guides/installation/ - - /enterprise/admin/categories/customization/ - - /enterprise/admin/categories/general/ - - /enterprise/admin/categories/logging-and-monitoring/ + - /enterprise/admin-guide + - /enterprise/admin/guides/installation + - /enterprise/admin/categories/customization + - /enterprise/admin/categories/general + - /enterprise/admin/categories/logging-and-monitoring - /enterprise/admin/installation versions: ghes: '*' diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md index a0a2229e1d..c1df769365 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md @@ -3,9 +3,9 @@ title: Setting up a GitHub Enterprise Server instance intro: 'You can install {% data variables.product.prodname_ghe_server %} on the supported virtualization platform of your choice.' redirect_from: - /enterprise/admin/installation/getting-started-with-github-enterprise-server - - /enterprise/admin/guides/installation/supported-platforms/ - - /enterprise/admin/guides/installation/provisioning-and-installation/ - - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance/ + - /enterprise/admin/guides/installation/supported-platforms + - /enterprise/admin/guides/installation/provisioning-and-installation + - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance - /enterprise/admin/installation/setting-up-a-github-enterprise-server-instance versions: ghes: '*' diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md index d857ebcd73..4fbe447d97 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on AWS intro: 'To install {% data variables.product.prodname_ghe_server %} on Amazon Web Services (AWS), you must launch an Amazon Elastic Compute Cloud (EC2) instance and create and attach a separate Amazon Elastic Block Store (EBS) data volume.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws - /enterprise/admin/installation/installing-github-enterprise-server-on-aws - /admin/installation/installing-github-enterprise-server-on-aws versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md index ee09f2f006..514b440f73 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Azure intro: 'To install {% data variables.product.prodname_ghe_server %} on Azure, you must deploy onto a DS-series instance and use Premium-LRS storage.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure - /enterprise/admin/installation/installing-github-enterprise-server-on-azure - /admin/installation/installing-github-enterprise-server-on-azure versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md index 8b6843c6ef..e8d6a0059e 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Google Cloud Platform intro: 'To install {% data variables.product.prodname_ghe_server %} on Google Cloud Platform, you must deploy onto a supported machine type and use a persistent standard disk or a persistent SSD.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform - /enterprise/admin/installation/installing-github-enterprise-server-on-google-cloud-platform - /admin/installation/installing-github-enterprise-server-on-google-cloud-platform versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md index bff2d23eda..7901cb3efd 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Hyper-V intro: 'To install {% data variables.product.prodname_ghe_server %} on Hyper-V, you must deploy onto a machine running Windows Server 2008 through Windows Server 2019.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v - /enterprise/admin/installation/installing-github-enterprise-server-on-hyper-v - /admin/installation/installing-github-enterprise-server-on-hyper-v versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md index 8959163aed..1c1de12f10 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on OpenStack KVM intro: 'To install {% data variables.product.prodname_ghe_server %} on OpenStack KVM, you must have OpenStack access and download the {% data variables.product.prodname_ghe_server %} QCOW2 image.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm - /enterprise/admin/installation/installing-github-enterprise-server-on-openstack-kvm - /admin/installation/installing-github-enterprise-server-on-openstack-kvm versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md index a2d6499f75..e725f7fd72 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md @@ -2,10 +2,10 @@ title: Installing GitHub Enterprise Server on VMware intro: 'To install {% data variables.product.prodname_ghe_server %} on VMware, you must download the VMware vSphere client, and then download and deploy the {% data variables.product.prodname_ghe_server %} software.' redirect_from: - - /enterprise/admin/articles/getting-started-with-vmware/ - - /enterprise/admin/articles/installing-vmware-tools/ - - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums/ - - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware/ + - /enterprise/admin/articles/getting-started-with-vmware + - /enterprise/admin/articles/installing-vmware-tools + - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums + - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware - /enterprise/admin/installation/installing-github-enterprise-server-on-vmware - /admin/installation/installing-github-enterprise-server-on-vmware versions: diff --git a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md index 1be5214e08..0f2545636d 100644 --- a/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md +++ b/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on XenServer intro: 'To install {% data variables.product.prodname_ghe_server %} on XenServer, you must deploy the {% data variables.product.prodname_ghe_server %} disk image to a XenServer host.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver - /enterprise/admin/installation/installing-github-enterprise-server-on-xenserver - /admin/installation/installing-github-enterprise-server-on-xenserver versions: diff --git a/content/admin/overview/about-enterprise-accounts.md b/content/admin/overview/about-enterprise-accounts.md index fae7b08ba4..8b277fe208 100644 --- a/content/admin/overview/about-enterprise-accounts.md +++ b/content/admin/overview/about-enterprise-accounts.md @@ -2,7 +2,7 @@ title: About enterprise accounts intro: 'With {% data variables.product.product_name %}, you can use an enterprise account to {% ifversion ghec %}enable collaboration between your organizations, while giving{% elsif ghes or ghae %}give{% endif %} administrators a single point of visibility and management.' redirect_from: - - /articles/about-github-business-accounts/ + - /articles/about-github-business-accounts - /articles/about-enterprise-accounts - /enterprise/admin/installation/about-enterprise-accounts - /enterprise/admin/overview/about-enterprise-accounts diff --git a/content/admin/overview/about-the-github-enterprise-api.md b/content/admin/overview/about-the-github-enterprise-api.md index 7105e85318..13c1255fff 100644 --- a/content/admin/overview/about-the-github-enterprise-api.md +++ b/content/admin/overview/about-the-github-enterprise-api.md @@ -3,9 +3,9 @@ title: About the GitHub Enterprise API intro: '{% data variables.product.product_name %} supports REST and GraphQL APIs.' redirect_from: - /enterprise/admin/installation/about-the-github-enterprise-server-api - - /enterprise/admin/articles/about-the-enterprise-api/ - - /enterprise/admin/articles/using-the-api/ - - /enterprise/admin/categories/api/ + - /enterprise/admin/articles/about-the-enterprise-api + - /enterprise/admin/articles/using-the-api + - /enterprise/admin/categories/api - /enterprise/admin/overview/about-the-github-enterprise-server-api - /admin/overview/about-the-github-enterprise-server-api versions: diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md index f6b06135dc..3756eb9670 100644 --- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md +++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: 'You can enforce policies for dependency insights within your enterprise' permissions: Enterprise owners can enforce policies for dependency insights in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-a-policy-on-dependency-insights/ + - /articles/enforcing-a-policy-on-dependency-insights - /articles/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md index 737721032e..580c1dcf78 100644 --- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md +++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md @@ -5,8 +5,8 @@ permissions: Enterprise owners can enforce policies for security settings in an product: '{% data reusables.gated-features.enterprise-accounts %}' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/enforcing-security-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-security-settings-for-organizations-in-your-business-account + - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account - /articles/enforcing-security-settings-in-your-enterprise-account - /github/articles/managing-allowed-ip-addresses-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-security-settings-in-your-enterprise-account diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md index ab35104241..251c60ac98 100644 --- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md +++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for projects within your enterprise''s organiza permissions: Enterprise owners can enforce policies for project boards in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account + - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-project-board-policies-in-your-enterprise-account diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md index 68e7fb8975..be790e0250 100644 --- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md +++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md @@ -10,26 +10,26 @@ redirect_from: - /enterprise/admin/user-management/restricting-repository-creation-in-your-instance - /enterprise/admin/user-management/preventing-users-from-deleting-organization-repositories - /enterprise/admin/installation/setting-git-push-limits - - /enterprise/admin/guides/installation/git-server-settings/ - - /enterprise/admin/articles/setting-git-push-limits/ + - /enterprise/admin/guides/installation/git-server-settings + - /enterprise/admin/articles/setting-git-push-limits - /enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories - /enterprise/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories - /enterprise/admin/developer-workflow/blocking-force-pushes-on-your-appliance - /enterprise/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes-to-a-repository - - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance/ - - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository/ + - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance + - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository - /enterprise/admin/user-management/preventing-users-from-changing-anonymous-git-read-access - - /enterprise/admin/articles/blocking-force-pushes-to-a-repository/ - - /enterprise/admin/articles/block-force-pushes/ - - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account/ - - /enterprise/admin/articles/blocking-force-pushes-for-an-organization/ - - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization/ + - /enterprise/admin/articles/blocking-force-pushes-to-a-repository + - /enterprise/admin/articles/block-force-pushes + - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account + - /enterprise/admin/articles/blocking-force-pushes-for-an-organization + - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes - /enterprise/admin/policies/enforcing-repository-management-policies-in-your-enterprise - /admin/policies/enforcing-repository-management-policies-in-your-enterprise - - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account + - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-repository-management-policies-in-your-enterprise-account diff --git a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md index ecffd91381..14860a36f6 100644 --- a/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md +++ b/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for teams in your enterprise''s organizations, permissions: Enterprise owners can enforce policies for teams in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-team-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-team-settings-for-organizations-in-your-business-account + - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-team-policies-in-your-enterprise-account diff --git a/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md b/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md index 9b74d60545..48b09b3704 100644 --- a/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md +++ b/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md @@ -82,14 +82,14 @@ The `$GITHUB_VIA` variable is available in the pre-receive hook environment when | Value | Action | More information | | :- | :- | :- | -|
    auto-merge deployment api
    | Automatic merge of the base branch via a deployment created with the API | "[Repositories](/rest/reference/repos#create-a-deployment)" in the REST API documentation | +|
    auto-merge deployment api
    | Automatic merge of the base branch via a deployment created with the API | "[Create a deployment](/rest/reference/deployments#create-a-deployment)" in the REST API documentation | |
    blob#save
    | Change to a file's contents in the web interface | "[Editing files](/repositories/working-with-files/managing-files/editing-files)" | -|
    branch merge api
    | Merge of a branch via the API | "[Repositories](/rest/reference/repos#merge-a-branch)" in the REST API documentation | +|
    branch merge api
    | Merge of a branch via the API | "[Merge a branch](/rest/reference/branches#merge-a-branch)" in the REST API documentation | |
    branches page delete button
    | Deletion of a branch in the web interface | "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)" | |
    git refs create api
    | Creation of a ref via the API | "[Git database](/rest/reference/git#create-a-reference)" in the REST API documentation | |
    git refs delete api
    | Deletion of a ref via the API | "[Git database](/rest/reference/git#delete-a-reference)" in the REST API documentation | |
    git refs update api
    | Update of a ref via the API | "[Git database](/rest/reference/git#update-a-reference)" in the REST API documentation | -|
    git repo contents api
    | Change to a file's contents via the API | "[Repositories](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | +|
    git repo contents api
    | Change to a file's contents via the API | "[Create or update file contents](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | |
    merge base into head
    | Update of the topic branch from the base branch when the base branch requires strict status checks (via **Update branch** in a pull request, for example) | "[About protected branches](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" | |
    pull request branch delete button
    | Deletion of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" | |
    pull request branch undo button
    | Restoration of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" | diff --git a/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md b/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md index f3457669b2..1a2e868839 100644 --- a/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md +++ b/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md @@ -3,7 +3,7 @@ title: Managing pre-receive hooks on the GitHub Enterprise Server appliance intro: 'Configure how people will use pre-receive hooks within their {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - /enterprise/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance/ + - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance - /enterprise/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - /admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance versions: diff --git a/content/admin/user-management/index.md b/content/admin/user-management/index.md index b8d01a4f4d..5e5f8682b2 100644 --- a/content/admin/user-management/index.md +++ b/content/admin/user-management/index.md @@ -3,7 +3,7 @@ title: 'Managing users, organizations, and repositories' shortTitle: 'Managing users, organizations, and repositories' intro: 'This guide describes authentication methods for users signing in to your enterprise, how to create organizations and teams for repository access and collaboration, and suggested best practices for user security.' redirect_from: - - /enterprise/admin/categories/user-management/ + - /enterprise/admin/categories/user-management - /enterprise/admin/developer-workflow/using-webhooks-for-continuous-integration - /enterprise/admin/migrations - /enterprise/admin/clustering diff --git a/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md b/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md index f2716bde64..f02cedf911 100644 --- a/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md +++ b/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md @@ -1,9 +1,9 @@ --- title: Adding people to teams redirect_from: - - /enterprise/admin/articles/adding-teams/ - - /enterprise/admin/articles/adding-or-inviting-people-to-teams/ - - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams/ + - /enterprise/admin/articles/adding-teams + - /enterprise/admin/articles/adding-or-inviting-people-to-teams + - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams - /enterprise/admin/user-management/adding-people-to-teams - /admin/user-management/adding-people-to-teams intro: 'Once a team has been created, organization admins can add users from {% data variables.product.product_location %} to the team and determine which repositories they have access to.' diff --git a/content/admin/user-management/managing-organizations-in-your-enterprise/index.md b/content/admin/user-management/managing-organizations-in-your-enterprise/index.md index 11ee5f9dd3..9df1581688 100644 --- a/content/admin/user-management/managing-organizations-in-your-enterprise/index.md +++ b/content/admin/user-management/managing-organizations-in-your-enterprise/index.md @@ -1,8 +1,8 @@ --- title: Managing organizations in your enterprise redirect_from: - - /enterprise/admin/articles/adding-users-and-teams/ - - /enterprise/admin/categories/admin-bootcamp/ + - /enterprise/admin/articles/adding-users-and-teams + - /enterprise/admin/categories/admin-bootcamp - /enterprise/admin/user-management/organizations-and-teams - /enterprise/admin/user-management/managing-organizations-in-your-enterprise - /articles/managing-organizations-in-your-enterprise-account diff --git a/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md b/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md index 5df0417192..10a117009a 100644 --- a/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md +++ b/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md @@ -2,8 +2,8 @@ title: Managing projects using Jira intro: 'You can integrate Jira with {% data variables.product.prodname_enterprise %} for project management.' redirect_from: - - /enterprise/admin/guides/installation/project-management-using-jira/ - - /enterprise/admin/articles/project-management-using-jira/ + - /enterprise/admin/guides/installation/project-management-using-jira + - /enterprise/admin/articles/project-management-using-jira - /enterprise/admin/developer-workflow/managing-projects-using-jira - /enterprise/admin/developer-workflow/customizing-your-instance-with-integrations - /enterprise/admin/user-management/managing-projects-using-jira diff --git a/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md b/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md index bde8365ad2..41cbf9b46b 100644 --- a/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md +++ b/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md @@ -1,8 +1,8 @@ --- title: Preventing users from creating organizations redirect_from: - - /enterprise/admin/articles/preventing-users-from-creating-organizations/ - - /enterprise/admin/hidden/preventing-users-from-creating-organizations/ + - /enterprise/admin/articles/preventing-users-from-creating-organizations + - /enterprise/admin/hidden/preventing-users-from-creating-organizations - /enterprise/admin/user-management/preventing-users-from-creating-organizations - /admin/user-management/preventing-users-from-creating-organizations intro: You can prevent users from creating organizations in your enterprise. diff --git a/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md b/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md index 373f4381fc..8ee2d906ec 100644 --- a/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md +++ b/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: Enterprise owners can view aggregated actions from all of the organizatio product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account/ + - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account - /articles/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise-account diff --git a/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md b/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md index ff100011d4..96c09af594 100644 --- a/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md +++ b/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md @@ -2,15 +2,15 @@ title: Configuring Git Large File Storage for your enterprise intro: '{% data reusables.enterprise_site_admin_settings.configuring-large-file-storage-short-description %}' redirect_from: - - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise/ + - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise - /enterprise/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server - /enterprise/admin/installation/configuring-git-large-file-storage - /enterprise/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server - /enterprise/admin/installation/migrating-to-a-different-git-large-file-storage-server - - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance/ - - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server/ + - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository + - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization + - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance + - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server - /enterprise/admin/user-management/configuring-git-large-file-storage-for-your-enterprise - /admin/user-management/configuring-git-large-file-storage-for-your-enterprise versions: diff --git a/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md b/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md index 2ac9aaaf41..e02538d16a 100644 --- a/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md +++ b/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md @@ -1,15 +1,15 @@ --- title: Disabling Git SSH access on your enterprise redirect_from: - - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/articles/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/articles/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise/ + - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account + - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account + - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance + - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance + - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization + - /enterprise/admin/articles/disabling-ssh-access-for-an-organization + - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository + - /enterprise/admin/articles/disabling-ssh-access-to-a-repository + - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise - /enterprise/admin/installation/disabling-git-ssh-access-on-github-enterprise-server - /enterprise/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-github-enterprise-server diff --git a/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md b/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md index d2a377f90c..90b442a4b8 100644 --- a/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md +++ b/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md @@ -2,7 +2,7 @@ title: Troubleshooting service hooks intro: 'If payloads aren''t being delivered, check for these common problems.' redirect_from: - - /enterprise/admin/articles/troubleshooting-service-hooks/ + - /enterprise/admin/articles/troubleshooting-service-hooks - /enterprise/admin/developer-workflow/troubleshooting-service-hooks - /enterprise/admin/user-management/troubleshooting-service-hooks - /admin/user-management/troubleshooting-service-hooks diff --git a/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md b/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md index bb0d037343..b7fb055a49 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md @@ -2,7 +2,7 @@ title: Auditing SSH keys intro: Site administrators can initiate an instance-wide audit of SSH keys. redirect_from: - - /enterprise/admin/articles/auditing-ssh-keys/ + - /enterprise/admin/articles/auditing-ssh-keys - /enterprise/admin/user-management/auditing-ssh-keys - /admin/user-management/auditing-ssh-keys versions: diff --git a/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md b/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md index f7a55c64ba..b73c09ee99 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md @@ -2,7 +2,7 @@ title: Auditing users across your enterprise intro: 'The audit log dashboard shows site administrators the actions performed by all users and organizations across your enterprise within the current month and previous six months. The audit log includes details such as who performed the action, what the action was, and when the action was performed.' redirect_from: - - /enterprise/admin/guides/user-management/auditing-users-across-an-organization/ + - /enterprise/admin/guides/user-management/auditing-users-across-an-organization - /enterprise/admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-enterprise diff --git a/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md b/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md index c06fe7c9a2..f6396f94cc 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md @@ -2,7 +2,7 @@ title: Customizing user messages for your enterprise shortTitle: Customizing user messages redirect_from: - - /enterprise/admin/user-management/creating-a-custom-sign-in-message/ + - /enterprise/admin/user-management/creating-a-custom-sign-in-message - /enterprise/admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-for-your-enterprise diff --git a/content/admin/user-management/managing-users-in-your-enterprise/index.md b/content/admin/user-management/managing-users-in-your-enterprise/index.md index 477387bd1a..4b8443a834 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/index.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/index.md @@ -3,7 +3,7 @@ title: Managing users in your enterprise intro: You can audit user activity and manage user settings. redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise - - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons/ + - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons - /enterprise/admin/user-management/basic-account-settings - /enterprise/admin/user-management/user-security - /enterprise/admin/user-management/managing-users-in-your-enterprise diff --git a/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md b/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md index 0fc502ccd7..bdb7d0b4f9 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md @@ -6,7 +6,7 @@ permissions: 'Enterprise owners can {% ifversion ghec %}invite other people to b redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise - /github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account - - /articles/inviting-people-to-collaborate-in-your-business-account/ + - /articles/inviting-people-to-collaborate-in-your-business-account - /articles/inviting-people-to-manage-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise versions: diff --git a/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md b/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md index d482da22bc..ce92ba1dc4 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md @@ -1,9 +1,9 @@ --- title: Managing dormant users redirect_from: - - /enterprise/admin/articles/dormant-users/ - - /enterprise/admin/articles/viewing-dormant-users/ - - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant/ + - /enterprise/admin/articles/dormant-users + - /enterprise/admin/articles/viewing-dormant-users + - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant - /enterprise/admin/user-management/managing-dormant-users - /admin/user-management/managing-dormant-users intro: '{% data reusables.enterprise-accounts.dormant-user-activity-threshold %}' diff --git a/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md b/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md index 780a4f4191..0227145d68 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md @@ -1,8 +1,8 @@ --- title: Promoting or demoting a site administrator redirect_from: - - /enterprise/admin/articles/promoting-a-site-administrator/ - - /enterprise/admin/articles/demoting-a-site-administrator/ + - /enterprise/admin/articles/promoting-a-site-administrator + - /enterprise/admin/articles/demoting-a-site-administrator - /enterprise/admin/user-management/promoting-or-demoting-a-site-administrator - /admin/user-management/promoting-or-demoting-a-site-administrator intro: 'Site administrators can promote any normal user account to a site administrator, as well as demote other site administrators to regular users.' diff --git a/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md b/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md index b258f397fe..fc57c1bf12 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md @@ -2,7 +2,7 @@ title: Rebuilding contributions data intro: You may need to rebuild contributions data to link existing commits to a user account. redirect_from: - - /enterprise/admin/articles/rebuilding-contributions-data/ + - /enterprise/admin/articles/rebuilding-contributions-data - /enterprise/admin/user-management/rebuilding-contributions-data - /admin/user-management/rebuilding-contributions-data versions: diff --git a/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md b/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md index 62a12b3bab..e1586d12d0 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md @@ -5,7 +5,7 @@ product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise - /github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account - - /articles/permission-levels-for-a-business-account/ + - /articles/permission-levels-for-a-business-account - /articles/roles-for-an-enterprise-account - /github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise versions: diff --git a/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md b/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md index 08148b0c9f..f64cdf6334 100644 --- a/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md +++ b/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md @@ -1,11 +1,11 @@ --- title: Suspending and unsuspending users redirect_from: - - /enterprise/admin/articles/suspending-a-user/ - - /enterprise/admin/articles/unsuspending-a-user/ - - /enterprise/admin/articles/viewing-suspended-users/ - - /enterprise/admin/articles/suspended-users/ - - /enterprise/admin/articles/suspending-and-unsuspending-users/ + - /enterprise/admin/articles/suspending-a-user + - /enterprise/admin/articles/unsuspending-a-user + - /enterprise/admin/articles/viewing-suspended-users + - /enterprise/admin/articles/suspended-users + - /enterprise/admin/articles/suspending-and-unsuspending-users - /enterprise/admin/user-management/suspending-and-unsuspending-users - /admin/user-management/suspending-and-unsuspending-users intro: 'If a user leaves or moves to a different part of the company, you should remove or modify their ability to access {% data variables.product.product_location %}.' diff --git a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md index 16e63c47a3..f3d8b48da6 100644 --- a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md +++ b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md @@ -2,12 +2,12 @@ title: Exporting migration data from your enterprise intro: 'To change platforms or move from a trial instance to a production instance, you can export migration data from a {% data variables.product.prodname_ghe_server %} instance by preparing the instance, locking the repositories, and generating a migration archive.' redirect_from: - - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise/ + - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise - /enterprise/admin/migrations/exporting-migration-data-from-github-enterprise-server - /enterprise/admin/migrations/preparing-the-github-enterprise-server-source-instance - /enterprise/admin/migrations/exporting-the-github-enterprise-server-source-repositories - - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance/ - - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories/ + - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance + - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories - /enterprise/admin/user-management/exporting-migration-data-from-your-enterprise - /admin/user-management/exporting-migration-data-from-your-enterprise versions: diff --git a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md index 5bea2b4125..2b27547b72 100644 --- a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md +++ b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md @@ -2,8 +2,8 @@ title: Migrating data to and from your enterprise intro: 'You can export user, organization, and repository data from {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_dotcom_the_website %}, then import that data into {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise/ - - /enterprise/admin/categories/migrations-and-upgrades/ + - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise + - /enterprise/admin/categories/migrations-and-upgrades - /enterprise/admin/migrations/overview - /enterprise/admin/user-management/migrating-data-to-and-from-your-enterprise versions: diff --git a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md index 3737d0e572..e6eedafa28 100644 --- a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md +++ b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md @@ -2,14 +2,14 @@ title: Migrating data to your enterprise intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise/ + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise - /enterprise/admin/migrations/applying-the-imported-data-on-github-enterprise-server - /enterprise/admin/migrations/reviewing-migration-data - /enterprise/admin/migrations/completing-the-import-on-github-enterprise-server - - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise/ - - /enterprise/admin/guides/migrations/reviewing-the-imported-data/ - - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise/ - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server/ + - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise + - /enterprise/admin/guides/migrations/reviewing-the-imported-data + - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server - /enterprise/admin/user-management/migrating-data-to-your-enterprise - /admin/user-management/migrating-data-to-your-enterprise versions: diff --git a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md index a8891521f2..12b0ae88e1 100644 --- a/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md +++ b/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md @@ -6,7 +6,7 @@ redirect_from: - /enterprise/admin/migrations/generating-a-list-of-migration-conflicts - /enterprise/admin/migrations/reviewing-migration-conflicts - /enterprise/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings - - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise/ + - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise - /enterprise/admin/user-management/preparing-to-migrate-data-to-your-enterprise - /admin/user-management/preparing-to-migrate-data-to-your-enterprise versions: diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md index 811cef96ba..edc50c6daa 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md @@ -2,7 +2,7 @@ title: Activity dashboard intro: The Activity dashboard gives you an overview of all the activity in your enterprise. redirect_from: - - /enterprise/admin/articles/activity-dashboard/ + - /enterprise/admin/articles/activity-dashboard - /enterprise/admin/installation/activity-dashboard - /enterprise/admin/user-management/activity-dashboard - /admin/user-management/activity-dashboard diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md index 0fc2fe8f08..0b39b98872 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md @@ -2,7 +2,7 @@ title: Audit logging intro: '{% data variables.product.product_name %} keeps logs of audited{% ifversion ghes %} system,{% endif %} user, organization, and repository events. Logs are useful for debugging and internal and external compliance.' redirect_from: - - /enterprise/admin/articles/audit-logging/ + - /enterprise/admin/articles/audit-logging - /enterprise/admin/installation/audit-logging - /enterprise/admin/user-management/audit-logging - /admin/user-management/audit-logging diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md index 2c57090629..87a3c98508 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md @@ -3,7 +3,7 @@ title: Audited actions intro: You can search the audit log for a wide variety of actions. miniTocMaxHeadingLevel: 3 redirect_from: - - /enterprise/admin/articles/audited-actions/ + - /enterprise/admin/articles/audited-actions - /enterprise/admin/installation/audited-actions - /enterprise/admin/user-management/audited-actions - /admin/user-management/audited-actions diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md index cc9bf504b9..7f6e8c800e 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md @@ -2,7 +2,7 @@ title: Log forwarding intro: '{% data variables.product.product_name %} uses `syslog-ng` to forward {% ifversion ghes %}system{% elsif ghae %}Git{% endif %} and application logs to the server you specify.' redirect_from: - - /enterprise/admin/articles/log-forwarding/ + - /enterprise/admin/articles/log-forwarding - /enterprise/admin/installation/log-forwarding - /enterprise/admin/enterprise-management/log-forwarding - /admin/enterprise-management/log-forwarding diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md index 50fe2ea2c1..589354bd37 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md @@ -9,7 +9,7 @@ redirect_from: - /admin/user-management/managing-global-webhooks - /admin/user-management/managing-users-in-your-enterprise/managing-global-webhooks - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - - /articles/configuring-webhooks-for-organization-events-in-your-business-account/ + - /articles/configuring-webhooks-for-organization-events-in-your-business-account - /articles/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/configuring-webhooks-for-organization-events-in-your-enterprise-account diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md index afa59196ef..9fc020f88a 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md @@ -2,7 +2,7 @@ title: Searching the audit log intro: Site administrators can search an extensive list of audited actions on the enterprise. redirect_from: - - /enterprise/admin/articles/searching-the-audit-log/ + - /enterprise/admin/articles/searching-the-audit-log - /enterprise/admin/installation/searching-the-audit-log - /enterprise/admin/user-management/searching-the-audit-log - /admin/user-management/searching-the-audit-log diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md index a6e6f86083..5f6e5fb089 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md @@ -2,7 +2,7 @@ title: Viewing push logs intro: Site administrators can view a list of Git push operations for any repository on the enterprise. redirect_from: - - /enterprise/admin/articles/viewing-push-logs/ + - /enterprise/admin/articles/viewing-push-logs - /enterprise/admin/installation/viewing-push-logs - /enterprise/admin/user-management/viewing-push-logs - /admin/user-management/viewing-push-logs diff --git a/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md b/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md index 4b4d7bf205..3fd9e67aef 100644 --- a/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md +++ b/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md @@ -3,8 +3,8 @@ title: Downgrading Git Large File Storage intro: 'You can downgrade storage and bandwidth for {% data variables.large_files.product_name_short %} by increments of 50 GB per month.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-git-large-file-storage - - /articles/downgrading-storage-and-bandwidth-for-a-personal-account/ - - /articles/downgrading-storage-and-bandwidth-for-an-organization/ + - /articles/downgrading-storage-and-bandwidth-for-a-personal-account + - /articles/downgrading-storage-and-bandwidth-for-an-organization - /articles/downgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage versions: diff --git a/content/billing/managing-billing-for-git-large-file-storage/index.md b/content/billing/managing-billing-for-git-large-file-storage/index.md index 53c2336e45..1705e89890 100644 --- a/content/billing/managing-billing-for-git-large-file-storage/index.md +++ b/content/billing/managing-billing-for-git-large-file-storage/index.md @@ -4,9 +4,9 @@ shortTitle: Git Large File Storage intro: 'You can view usage for, upgrade, and downgrade {% data variables.large_files.product_name_long %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage - - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account/ - - /articles/managing-large-file-storage-and-bandwidth-for-your-organization/ - - /articles/managing-storage-and-bandwidth-usage/ + - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account + - /articles/managing-large-file-storage-and-bandwidth-for-your-organization + - /articles/managing-storage-and-bandwidth-usage - /articles/managing-billing-for-git-large-file-storage versions: fpt: '*' diff --git a/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md b/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md index a7eac92c8b..524d077114 100644 --- a/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md +++ b/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md @@ -3,8 +3,8 @@ title: Upgrading Git Large File Storage intro: 'You can purchase additional data packs to increase your monthly bandwidth quota and total storage capacity for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-git-large-file-storage - - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account/ - - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization/ + - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account + - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization - /articles/upgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage versions: diff --git a/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md b/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md index 168f3b187e..3cdfaa78d0 100644 --- a/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md +++ b/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md @@ -3,8 +3,8 @@ title: Viewing your Git Large File Storage usage intro: 'You can audit your account''s monthly bandwidth quota and remaining storage for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-git-large-file-storage-usage - - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account/ - - /articles/viewing-storage-and-bandwidth-usage-for-an-organization/ + - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account + - /articles/viewing-storage-and-bandwidth-usage-for-an-organization - /articles/viewing-your-git-large-file-storage-usage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage versions: diff --git a/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md b/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md index 023cffe805..6d6d6bba9d 100644 --- a/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md +++ b/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md @@ -3,8 +3,8 @@ title: Canceling a GitHub Marketplace app intro: 'You can cancel and remove a {% data variables.product.prodname_marketplace %} app from your account at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/canceling-a-github-marketplace-app - - /articles/canceling-an-app-for-your-personal-account/ - - /articles/canceling-an-app-for-your-organization/ + - /articles/canceling-an-app-for-your-personal-account + - /articles/canceling-an-app-for-your-organization - /articles/canceling-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app versions: diff --git a/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md b/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md index 1a1538c050..8a8f94379f 100644 --- a/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -3,8 +3,8 @@ title: Downgrading the billing plan for a GitHub Marketplace app intro: 'If you''d like to use a different billing plan, you can downgrade your {% data variables.product.prodname_marketplace %} app at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/downgrading-an-app-for-your-personal-account/ - - /articles/downgrading-an-app-for-your-organization/ + - /articles/downgrading-an-app-for-your-personal-account + - /articles/downgrading-an-app-for-your-organization - /articles/downgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app versions: diff --git a/content/billing/managing-billing-for-github-marketplace-apps/index.md b/content/billing/managing-billing-for-github-marketplace-apps/index.md index 54af3638bd..3b0caf19f6 100644 --- a/content/billing/managing-billing-for-github-marketplace-apps/index.md +++ b/content/billing/managing-billing-for-github-marketplace-apps/index.md @@ -4,8 +4,8 @@ shortTitle: GitHub Marketplace apps intro: 'You can upgrade, downgrade, or cancel {% data variables.product.prodname_marketplace %} apps at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps - - /articles/managing-your-personal-account-s-apps/ - - /articles/managing-your-organization-s-apps/ + - /articles/managing-your-personal-account-s-apps + - /articles/managing-your-organization-s-apps - /articles/managing-billing-for-github-marketplace-apps versions: fpt: '*' diff --git a/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md b/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md index 7b7c1482cf..d381202232 100644 --- a/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -3,8 +3,8 @@ title: Upgrading the billing plan for a GitHub Marketplace app intro: 'You can upgrade your {% data variables.product.prodname_marketplace %} app to a different plan at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/upgrading-an-app-for-your-personal-account/ - - /articles/upgrading-an-app-for-your-organization/ + - /articles/upgrading-an-app-for-your-personal-account + - /articles/upgrading-an-app-for-your-organization - /articles/upgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app versions: diff --git a/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md b/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md index 502583cd8c..30be96c9c4 100644 --- a/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md +++ b/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md @@ -3,12 +3,12 @@ title: About billing for GitHub accounts intro: '{% data variables.product.company_short %} offers free and paid products for every developer or team.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-accounts - - /articles/what-is-the-total-cost-of-using-an-organization-account/ - - /articles/what-are-the-costs-of-using-an-organization-account/ - - /articles/what-plan-should-i-choose/ - - /articles/do-you-have-custom-plans/ - - /articles/user-account-billing-plans/ - - /articles/organization-billing-plans/ + - /articles/what-is-the-total-cost-of-using-an-organization-account + - /articles/what-are-the-costs-of-using-an-organization-account + - /articles/what-plan-should-i-choose + - /articles/do-you-have-custom-plans + - /articles/user-account-billing-plans + - /articles/organization-billing-plans - /articles/github-s-billing-plans - /articles/about-billing-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/about-billing-for-github-accounts @@ -23,12 +23,15 @@ topics: - Upgrades shortTitle: About billing --- -For more information on the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data variables.product.product_name %} does not offer custom products or subscriptions. + +For more information about the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data variables.product.product_name %} does not offer custom products or subscriptions. You can choose monthly or yearly billing, and you can upgrade or downgrade your subscription at any time. For more information, see "[Managing billing for your {% data variables.product.prodname_dotcom %} account](/articles/managing-billing-for-your-github-account)." You can purchase other features and products with your existing {% data variables.product.product_name %} payment information. For more information, see "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +{% data reusables.accounts.accounts-billed-separately %} + {% data reusables.user_settings.context_switcher %} {% tip %} diff --git a/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md b/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md index 0dc25db5cf..6209f8ad3b 100644 --- a/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md +++ b/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md @@ -3,9 +3,9 @@ title: Discounted subscriptions for GitHub accounts intro: '{% data variables.product.product_name %} provides discounts to students, educators, educational institutions, nonprofits, and libraries.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts - - /articles/discounted-personal-accounts/ - - /articles/discounted-organization-accounts/ - - /articles/discounted-billing-plans/ + - /articles/discounted-personal-accounts + - /articles/discounted-organization-accounts + - /articles/discounted-billing-plans - /articles/discounted-subscriptions-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts versions: diff --git a/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md b/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md index ae33f9c7f4..cdaa744340 100644 --- a/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md +++ b/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md @@ -3,18 +3,18 @@ title: Downgrading your GitHub subscription intro: 'You can downgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-your-github-subscription - - /articles/downgrading-your-personal-account-s-billing-plan/ - - /articles/how-do-i-cancel-my-account/ - - /articles/downgrading-a-user-account-to-free/ - - /articles/removing-paid-seats-from-your-organization/ - - /articles/downgrading-your-organization-s-paid-seats/ - - /articles/downgrading-your-organization-s-billing-plan/ - - /articles/downgrading-an-organization-with-per-seat-pricing-to-free/ - - /articles/downgrading-an-organization-with-per-repository-pricing-to-free/ - - /articles/downgrading-your-organization-to-free/ - - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan/ - - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan/ - - /articles/downgrading-your-github-billing-plan/ + - /articles/downgrading-your-personal-account-s-billing-plan + - /articles/how-do-i-cancel-my-account + - /articles/downgrading-a-user-account-to-free + - /articles/removing-paid-seats-from-your-organization + - /articles/downgrading-your-organization-s-paid-seats + - /articles/downgrading-your-organization-s-billing-plan + - /articles/downgrading-an-organization-with-per-seat-pricing-to-free + - /articles/downgrading-an-organization-with-per-repository-pricing-to-free + - /articles/downgrading-your-organization-to-free + - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan + - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan + - /articles/downgrading-your-github-billing-plan - /articles/downgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/downgrading-your-github-subscription versions: diff --git a/content/billing/managing-billing-for-your-github-account/index.md b/content/billing/managing-billing-for-your-github-account/index.md index 13b86ed9e6..7801363423 100644 --- a/content/billing/managing-billing-for-your-github-account/index.md +++ b/content/billing/managing-billing-for-your-github-account/index.md @@ -4,14 +4,14 @@ shortTitle: Your GitHub account intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade, downgrade, and view pending changes to your account''s subscription at any time.{% elsif ghec or ghes or ghae %}You can manage billing for {% data variables.product.product_name %}{% ifversion ghae %}.{% elsif ghec or ghes %} from your enterprise account on {% data variables.product.prodname_dotcom_the_website %}.{% endif %}{% endif %}' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account - - /categories/97/articles/ - - /categories/paying-for-user-accounts/ - - /articles/paying-for-your-github-user-account/ - - /articles/managing-billing-on-github/ - - /articles/changing-your-personal-account-s-billing-plan/ - - /categories/billing/ - - /categories/3/articles/ - - /articles/managing-your-organization-s-paid-seats/ + - /categories/97/articles + - /categories/paying-for-user-accounts + - /articles/paying-for-your-github-user-account + - /articles/managing-billing-on-github + - /articles/changing-your-personal-account-s-billing-plan + - /categories/billing + - /categories/3/articles + - /articles/managing-your-organization-s-paid-seats - /articles/managing-billing-for-your-github-account versions: fpt: '*' diff --git a/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md b/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md index 82e5a8e8b3..fee3631236 100644 --- a/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md +++ b/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md @@ -1,22 +1,23 @@ --- title: Upgrading your GitHub subscription intro: 'You can upgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' +miniTocMaxHeadingLevel: 3 redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-your-github-subscription - - /articles/upgrading-your-personal-account-s-billing-plan/ - - /articles/upgrading-your-personal-account/ - - /articles/upgrading-your-personal-account-from-free-to-a-paid-account/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal/ - - /articles/500-error-while-upgrading/ - - /articles/upgrading-your-organization-s-billing-plan/ - - /articles/changing-your-organization-billing-plan/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal/ - - /articles/upgrading-your-organization-account/ - - /articles/switching-from-per-repository-to-per-user-pricing/ - - /articles/adding-seats-to-your-organization/ - - /articles/upgrading-your-github-billing-plan/ + - /articles/upgrading-your-personal-account-s-billing-plan + - /articles/upgrading-your-personal-account + - /articles/upgrading-your-personal-account-from-free-to-a-paid-account + - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal + - /articles/500-error-while-upgrading + - /articles/upgrading-your-organization-s-billing-plan + - /articles/changing-your-organization-billing-plan + - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal + - /articles/upgrading-your-organization-account + - /articles/switching-from-per-repository-to-per-user-pricing + - /articles/adding-seats-to-your-organization + - /articles/upgrading-your-github-billing-plan - /articles/upgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/upgrading-your-github-subscription versions: @@ -30,9 +31,16 @@ topics: - User account shortTitle: Upgrade your subscription --- + +## About subscription upgrades + +{% data reusables.accounts.accounts-billed-separately %} + +When you upgrade the subscription for an account, the upgrade changes the paid features available for that account only, and not any other accounts you use. + ## Upgrading your personal account's subscription -You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} +You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories owned by your user account. Upgrading your personal account does not affect any organizations you may manage or repositories owned by those organizations. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -45,9 +53,13 @@ You can upgrade your personal account from {% data variables.product.prodname_fr {% data reusables.dotcom_billing.enter-payment-info %} {% data reusables.dotcom_billing.finish_upgrade %} -## Upgrading your organization's subscription +## Managing your organization's subscription -You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. {% data reusables.gated-features.more-info-org-products %} +You can upgrade your organization's subscription to a different product, add seats to your existing product, or switch from per-repository to per-user pricing. + +### Upgrading your organization's subscription + +You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. Upgrading an organization does not affect your personal account or repositories owned by your personal account. {% data reusables.gated-features.more-info-org-products %} {% data reusables.dotcom_billing.org-billing-perms %} @@ -66,7 +78,7 @@ If you upgraded your organization to {% data variables.product.prodname_ghe_clou If you'd like to use an enterprise account with {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## Adding seats to your organization +### Adding seats to your organization If you'd like additional users to have access to your {% data variables.product.prodname_team %} organization's private repositories, you can purchase more seats anytime. @@ -75,7 +87,7 @@ If you'd like additional users to have access to your {% data variables.product. {% data reusables.dotcom_billing.number-of-seats %} {% data reusables.dotcom_billing.confirm-add-seats %} -## Switching your organization from per-repository to per-user pricing +### Switching your organization from per-repository to per-user pricing {% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." diff --git a/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md b/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md index 9513c67ec8..6b946551a5 100644 --- a/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md +++ b/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md @@ -3,9 +3,9 @@ title: Viewing and managing pending changes to your subscription intro: You can view and cancel pending changes to your subscriptions before they take effect on your next billing date. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-and-managing-pending-changes-to-your-subscription - - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-billing-plan/ + - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-billing-plan - /articles/viewing-and-managing-pending-changes-to-your-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription versions: diff --git a/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md b/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md index 316b350cb4..0454458409 100644 --- a/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md +++ b/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md @@ -3,14 +3,14 @@ title: Adding information to your receipts intro: 'You can add extra information to your {% data variables.product.product_name %} receipts, such as tax or accounting information required by your company or country.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-information-to-your-receipts - - /articles/can-i-add-my-credit-card-number-to-my-receipts/ - - /articles/can-i-add-extra-information-to-my-receipts--2/ - - /articles/how-can-i-add-extra-information-to-my-receipts/ - - /articles/could-you-add-my-card-number-to-my-receipts/ - - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts/ - - /articles/adding-information-to-your-personal-account-s-receipts/ - - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts/ - - /articles/adding-information-to-your-organization-s-receipts/ + - /articles/can-i-add-my-credit-card-number-to-my-receipts + - /articles/can-i-add-extra-information-to-my-receipts--2 + - /articles/how-can-i-add-extra-information-to-my-receipts + - /articles/could-you-add-my-card-number-to-my-receipts + - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts + - /articles/adding-information-to-your-personal-account-s-receipts + - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts + - /articles/adding-information-to-your-organization-s-receipts - /articles/adding-information-to-your-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-information-to-your-receipts versions: diff --git a/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md b/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md index ac58416110..bb9fc0e76c 100644 --- a/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md +++ b/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md @@ -3,18 +3,18 @@ title: Adding or editing a payment method intro: You can add a payment method to your account or update your account's existing payment method at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-or-editing-a-payment-method - - /articles/updating-your-personal-account-s-payment-method/ - - /articles/how-do-i-update-my-credit-card/ - - /articles/updating-your-account-s-credit-card/ - - /articles/updating-your-personal-account-s-credit-card/ - - /articles/updating-your-personal-account-s-paypal-information/ - - /articles/does-github-provide-invoicing/ - - /articles/switching-payment-methods-for-your-personal-account/ - - /articles/paying-for-your-github-organization-account/ - - /articles/updating-your-organization-s-credit-card/ - - /articles/updating-your-organization-s-paypal-information/ - - /articles/updating-your-organization-s-payment-method/ - - /articles/switching-payment-methods-for-your-organization/ + - /articles/updating-your-personal-account-s-payment-method + - /articles/how-do-i-update-my-credit-card + - /articles/updating-your-account-s-credit-card + - /articles/updating-your-personal-account-s-credit-card + - /articles/updating-your-personal-account-s-paypal-information + - /articles/does-github-provide-invoicing + - /articles/switching-payment-methods-for-your-personal-account + - /articles/paying-for-your-github-organization-account + - /articles/updating-your-organization-s-credit-card + - /articles/updating-your-organization-s-paypal-information + - /articles/updating-your-organization-s-payment-method + - /articles/switching-payment-methods-for-your-organization - /articles/adding-or-editing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-or-editing-a-payment-method versions: diff --git a/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md b/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md index d77660cbba..539ae1e931 100644 --- a/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md +++ b/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md @@ -3,9 +3,9 @@ title: Changing the duration of your billing cycle intro: You can pay for your account's subscription and other paid features and products on a monthly or yearly billing cycle. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle - - /articles/monthly-and-yearly-billing/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-organization/ + - /articles/monthly-and-yearly-billing + - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account + - /articles/switching-between-monthly-and-yearly-billing-for-your-organization - /articles/changing-the-duration-of-your-billing-cycle - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle versions: diff --git a/content/billing/managing-your-github-billing-settings/index.md b/content/billing/managing-your-github-billing-settings/index.md index 11d6560160..c8d94f174f 100644 --- a/content/billing/managing-your-github-billing-settings/index.md +++ b/content/billing/managing-your-github-billing-settings/index.md @@ -4,12 +4,12 @@ shortTitle: Billing settings intro: 'Your account''s billing settings apply to every paid feature or product you add to the account. You can manage settings like your payment method, billing cycle, and billing email. You can also view billing information such as your subscription, billing date, payment history, and past receipts.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings - - /articles/viewing-and-managing-your-personal-account-s-billing-information/ - - /articles/paying-for-user-accounts/ - - /articles/viewing-and-managing-your-organization-s-billing-information/ - - /articles/paying-for-organization-accounts/ - - /categories/paying-for-organization-accounts/articles/ - - /categories/99/articles/ + - /articles/viewing-and-managing-your-personal-account-s-billing-information + - /articles/paying-for-user-accounts + - /articles/viewing-and-managing-your-organization-s-billing-information + - /articles/paying-for-organization-accounts + - /categories/paying-for-organization-accounts/articles + - /categories/99/articles - /articles/managing-your-github-billing-settings versions: fpt: '*' diff --git a/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md b/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md index 2be05c8868..2a416cdc8f 100644 --- a/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md +++ b/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md @@ -3,9 +3,9 @@ title: Redeeming a coupon intro: 'If you have a coupon, you can redeem it towards a paid {% data variables.product.prodname_dotcom %} subscription.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/redeeming-a-coupon - - /articles/where-do-i-add-a-coupon-code/ - - /articles/redeeming-a-coupon-for-your-personal-account/ - - /articles/redeeming-a-coupon-for-organizations/ + - /articles/where-do-i-add-a-coupon-code + - /articles/redeeming-a-coupon-for-your-personal-account + - /articles/redeeming-a-coupon-for-organizations - /articles/redeeming-a-coupon - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/redeeming-a-coupon versions: diff --git a/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md b/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md index 8fa155f08a..8e7fe2ed0b 100644 --- a/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md +++ b/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md @@ -3,10 +3,10 @@ title: Removing a payment method intro: 'If you aren''t using your payment method for any paid subscriptions on {% data variables.product.prodname_dotcom %}, you can remove the payment method so it''s no longer stored in your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/removing-a-payment-method - - /articles/removing-a-credit-card-associated-with-your-user-account/ - - /articles/removing-a-payment-method-associated-with-your-user-account/ - - /articles/removing-a-credit-card-associated-with-your-organization/ - - /articles/removing-a-payment-method-associated-with-your-organization/ + - /articles/removing-a-credit-card-associated-with-your-user-account + - /articles/removing-a-payment-method-associated-with-your-user-account + - /articles/removing-a-credit-card-associated-with-your-organization + - /articles/removing-a-payment-method-associated-with-your-organization - /articles/removing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/removing-a-payment-method versions: diff --git a/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md b/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md index c05b8220ad..66805ec15f 100644 --- a/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md +++ b/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md @@ -3,10 +3,10 @@ title: Setting your billing email intro: 'Your account''s billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-your-billing-email - - /articles/setting-your-personal-account-s-billing-email/ - - /articles/can-i-change-what-email-address-received-my-github-receipt/ - - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email/' - - /articles/setting-your-organization-s-billing-email/ + - /articles/setting-your-personal-account-s-billing-email + - /articles/can-i-change-what-email-address-received-my-github-receipt + - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email' + - /articles/setting-your-organization-s-billing-email - /articles/setting-your-billing-email - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/setting-your-billing-email versions: diff --git a/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md b/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md index 94a2303278..efa7701ca9 100644 --- a/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md +++ b/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md @@ -3,7 +3,7 @@ title: Troubleshooting a declined credit card charge intro: 'If the credit card you use to pay for {% data variables.product.product_name %} is declined, you can take several steps to ensure that your payments go through and that you are not locked out of your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/troubleshooting-a-declined-credit-card-charge - - /articles/what-do-i-do-if-my-card-is-declined/ + - /articles/what-do-i-do-if-my-card-is-declined - /articles/troubleshooting-a-declined-credit-card-charge - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge versions: diff --git a/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md b/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md index c1bcfbc682..b59da1c080 100644 --- a/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md +++ b/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md @@ -3,12 +3,12 @@ title: Unlocking a locked account intro: Your organization's paid features are locked if your payment is past due because of billing problems. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/unlocking-a-locked-account - - /articles/what-happens-if-my-account-is-locked/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges/ - - /articles/what-happens-if-my-repository-is-locked/ - - /articles/unlocking-a-locked-personal-account/ - - /articles/unlocking-a-locked-organization-account/ + - /articles/what-happens-if-my-account-is-locked + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges + - /articles/what-happens-if-my-repository-is-locked + - /articles/unlocking-a-locked-personal-account + - /articles/unlocking-a-locked-organization-account - /articles/unlocking-a-locked-account - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/unlocking-a-locked-account versions: diff --git a/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md b/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md index d6041c7306..c643ca0c2c 100644 --- a/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md +++ b/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md @@ -3,9 +3,9 @@ title: Viewing your payment history and receipts intro: You can view your account's payment history and download past receipts at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-payment-history-and-receipts - - /articles/downloading-receipts/ - - /articles/downloading-receipts-for-personal-accounts/ - - /articles/downloading-receipts-for-organizations/ + - /articles/downloading-receipts + - /articles/downloading-receipts-for-personal-accounts + - /articles/downloading-receipts-for-organizations - /articles/viewing-your-payment-history-and-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts versions: diff --git a/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md b/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md index 6915348305..b62ebd0208 100644 --- a/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md +++ b/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md @@ -4,10 +4,10 @@ intro: 'You can view your account''s subscription, your other paid features and redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-subscriptions-and-billing-date - - /articles/finding-your-next-billing-date/ - - /articles/finding-your-personal-account-s-next-billing-date/ - - /articles/finding-your-organization-s-next-billing-date/ - - /articles/viewing-your-plans-and-billing-date/ + - /articles/finding-your-next-billing-date + - /articles/finding-your-personal-account-s-next-billing-date + - /articles/finding-your-organization-s-next-billing-date + - /articles/viewing-your-plans-and-billing-date - /articles/viewing-your-subscriptions-and-billing-date versions: fpt: '*' diff --git a/content/billing/managing-your-license-for-github-enterprise/index.md b/content/billing/managing-your-license-for-github-enterprise/index.md index 617e5c273f..9f270733c2 100644 --- a/content/billing/managing-your-license-for-github-enterprise/index.md +++ b/content/billing/managing-your-license-for-github-enterprise/index.md @@ -5,13 +5,13 @@ intro: '{% data variables.product.prodname_enterprise %} includes both cloud and redirect_from: - /free-pro-team@latest/billing/managing-your-license-for-github-enterprise - /enterprise/admin/installation/managing-your-github-enterprise-license - - /enterprise/admin/categories/licenses/ - - /enterprise/admin/articles/license-files/ - - /enterprise/admin/installation/about-license-files/ - - /enterprise/admin/articles/downloading-your-license/ - - /enterprise/admin/installation/downloading-your-license/ - - /enterprise/admin/articles/upgrading-your-license/ - - /enterprise/admin/installation/updating-your-license/ + - /enterprise/admin/categories/licenses + - /enterprise/admin/articles/license-files + - /enterprise/admin/installation/about-license-files + - /enterprise/admin/articles/downloading-your-license + - /enterprise/admin/installation/downloading-your-license + - /enterprise/admin/articles/upgrading-your-license + - /enterprise/admin/installation/updating-your-license - /enterprise/admin/installation/managing-your-github-enterprise-server-license - /enterprise/admin/overview/managing-your-github-enterprise-license versions: diff --git a/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md b/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md index 1a7aa15b74..b74ec44276 100644 --- a/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md +++ b/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md @@ -3,7 +3,7 @@ title: About organizations for procurement companies intro: 'Businesses use organizations to collaborate on shared projects with multiple owners and administrators. You can create an organization for your client, make a payment on their behalf, then pass ownership of the organization to your client.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-organizations-for-procurement-companies - - /articles/about-organizations-for-resellers/ + - /articles/about-organizations-for-resellers - /articles/about-organizations-for-procurement-companies - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies versions: diff --git a/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md b/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md index 153bb0aa86..0b9fc6ffef 100644 --- a/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md +++ b/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md @@ -4,8 +4,8 @@ shortTitle: Paid organizations for procurement companies intro: 'If you pay for {% data variables.product.product_name %} on behalf of a client, you can configure their organization and payment settings to optimize convenience and security.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies - - /articles/setting-up-and-paying-for-organizations-for-resellers/ - - /articles/setting-up-and-paying-for-organizations-for-procurement-companies/ + - /articles/setting-up-and-paying-for-organizations-for-resellers + - /articles/setting-up-and-paying-for-organizations-for-procurement-companies - /articles/setting-up-paid-organizations-for-procurement-companies versions: fpt: '*' diff --git a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies.md b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies.md index 4a20954bbf..1312ef64f1 100644 --- a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies.md +++ b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies.md @@ -35,8 +35,13 @@ When your code depends on a package that has a security vulnerability, this vuln {% data variables.product.prodname_dependabot %} detects vulnerable dependencies and sends {% data variables.product.prodname_dependabot_alerts %} when: {% ifversion fpt or ghec %} -- A new vulnerability is added to the {% data variables.product.prodname_advisory_database %}. For more information, see "[Browsing security vulnerabilities in the {% data variables.product.prodname_advisory_database %}](/github/managing-security-vulnerabilities/browsing-security-vulnerabilities-in-the-github-advisory-database)" and "[About {% data variables.product.prodname_security_advisories %}](/code-security/security-advisories/about-github-security-advisories)."{% else %} +- A new vulnerability is added to the {% data variables.product.prodname_advisory_database %}. For more information, see "[Browsing security vulnerabilities in the {% data variables.product.prodname_advisory_database %}](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database)" and "[About {% data variables.product.prodname_security_advisories %}](/code-security/security-advisories/about-github-security-advisories)."{% else %} - New advisory data is synchronized to {% data variables.product.product_location %} each hour from {% data variables.product.prodname_dotcom_the_website %}. {% data reusables.security-advisory.link-browsing-advisory-db %}{% endif %} + {% note %} + + **Note:** Only advisories that have been reviewed by {% data variables.product.company_short %} will trigger {% data variables.product.prodname_dependabot_alerts %}. + + {% endnote %} - The dependency graph for a repository changes. For example, when a contributor pushes a commit to change the packages or versions it depends on{% ifversion fpt or ghec %}, or when the code of one of the dependencies changes{% endif %}. For more information, see "[About the dependency graph](/code-security/supply-chain-security/about-the-dependency-graph)." {% data reusables.repositories.dependency-review %} diff --git a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database.md b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database.md index 7fd77729d1..34a478356c 100644 --- a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database.md +++ b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database.md @@ -2,6 +2,7 @@ title: Browsing security vulnerabilities in the GitHub Advisory Database intro: 'The {% data variables.product.prodname_advisory_database %} allows you to browse or search for vulnerabilities that affect open source projects on {% data variables.product.company_short %}.' shortTitle: Browse Advisory Database +miniTocMaxHeadingLevel: 3 redirect_from: - /github/managing-security-vulnerabilities/browsing-security-vulnerabilities-in-the-github-advisory-database - /code-security/supply-chain-security/browsing-security-vulnerabilities-in-the-github-advisory-database @@ -22,13 +23,29 @@ topics: {% data reusables.repositories.a-vulnerability-is %} -{% data variables.product.product_name %} will send you {% data variables.product.prodname_dependabot_alerts %} if we detect that any of the vulnerabilities from the {% data variables.product.prodname_advisory_database %} affect the packages that your repository depends on. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)." - ## About the {% data variables.product.prodname_advisory_database %} -The {% data variables.product.prodname_advisory_database %} contains a curated list of security vulnerabilities that have been mapped to packages tracked by the {% data variables.product.company_short %} dependency graph. {% data reusables.repositories.tracks-vulnerabilities %} +The {% data variables.product.prodname_advisory_database %} contains a list of known security vulnerabilities, grouped in two categories: {% data variables.product.company_short %}-reviewed advisories and unreviewed advisories. -Each security advisory contains information about the vulnerability, including the description, severity, affected package, package ecosystem, affected versions and patched versions, impact, and optional information such as references, workarounds, and credits. In addition, advisories from the National Vulnerability Database list contain a link to the CVE record, where you can read more details about the vulnerability, its CVSS scores, and its qualitative severity level. For more information, see the "[National Vulnerability Database](https://nvd.nist.gov/)" from the National Institute of Standards and Technology. +{% data reusables.repositories.tracks-vulnerabilities %} + +### About {% data variables.product.company_short %}-reviewed advisories + +{% data variables.product.company_short %}-reviewed advisories are security vulnerabilities that have been mapped to packages tracked by the {% data variables.product.company_short %} dependency graph. + +We carefully review each advisory for validity. Each {% data variables.product.company_short %}-reviewed advisory has a full description, and contains both ecosystem and package information. + +If you enable {% data variables.product.prodname_dependabot_alerts %} for your repositories, you are automatically notified when a new {% data variables.product.company_short %}-reviewed advisory affects packages you depend on. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)." + +### About unreviewed advisories + +Unreviewed advisories are security vulnerabilites that we publish automatically into the {% data variables.product.prodname_advisory_database %}, directly from the National Vulnerability Database feed. + +{% data variables.product.prodname_dependabot %} doesn't create {% data variables.product.prodname_dependabot_alerts %} for unreviewed advisories as this type of advisory isn't checked for validity or completion. + +## About security advisories + +Each security advisory contains information about the vulnerability, which may include the description, severity, affected package, package ecosystem, affected versions and patched versions, impact, and optional information such as references, workarounds, and credits. In addition, advisories from the National Vulnerability Database list contain a link to the CVE record, where you can read more details about the vulnerability, its CVSS scores, and its qualitative severity level. For more information, see the "[National Vulnerability Database](https://nvd.nist.gov/)" from the National Institute of Standards and Technology. The severity level is one of four possible levels defined in the "[Common Vulnerability Scoring System (CVSS), Section 5](https://www.first.org/cvss/specification-document)." - Low @@ -45,6 +62,11 @@ The {% data variables.product.prodname_advisory_database %} uses the CVSS levels 1. Navigate to https://github.com/advisories. 2. Optionally, to filter the list, use any of the drop-down menus. ![Dropdown filters](/assets/images/help/security/advisory-database-dropdown-filters.png) + {% tip %} + + **Tip:** You can use the sidebar on the left to explore {% data variables.product.company_short %}-reviewed and unreviewed advisories separately. + + {% endtip %} 3. Click on any advisory to view details. {% note %} @@ -63,6 +85,8 @@ You can search the database, and use qualifiers to narrow your search. For examp | Qualifier | Example | | ------------- | ------------- | +| `type:reviewed`| [**type:reviewed**](https://github.com/advisories?query=type%3Areviewed) will show {% data variables.product.company_short %}-reviewed advisories. | +| `type:unreviewed`| [**type:unreviewed**](https://github.com/advisories?query=type%3Aunreviewed) will show unreviewed advisories. | | `GHSA-ID`| [**GHSA-49wp-qq6x-g2rf**](https://github.com/advisories?query=GHSA-49wp-qq6x-g2rf) will show the advisory with this {% data variables.product.prodname_advisory_database %} ID. | | `CVE-ID`| [**CVE-2020-28482**](https://github.com/advisories?query=CVE-2020-28482) will show the advisory with this CVE ID number. | | `ecosystem:ECOSYSTEM`| [**ecosystem:npm**](https://github.com/advisories?utf8=%E2%9C%93&query=ecosystem%3Anpm) will show only advisories affecting NPM packages. | @@ -80,7 +104,7 @@ You can search the database, and use qualifiers to narrow your search. For examp ## Viewing your vulnerable repositories -For any vulnerability in the {% data variables.product.prodname_advisory_database %}, you can see which of your repositories have a {% data variables.product.prodname_dependabot %} alert for that vulnerability. To see a vulnerable repository, you must have access to {% data variables.product.prodname_dependabot_alerts %} for that repository. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies#access-to-dependabot-alerts)." +For any {% data variables.product.company_short %}-reviewed advisory in the {% data variables.product.prodname_advisory_database %}, you can see which of your repositories are affected by that security vulnerability. To see a vulnerable repository, you must have access to {% data variables.product.prodname_dependabot_alerts %} for that repository. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies#access-to-dependabot-alerts)." 1. Navigate to https://github.com/advisories. 2. Click an advisory. diff --git a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md index d629122ab7..067cab1c4a 100644 --- a/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md +++ b/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md @@ -2,9 +2,9 @@ title: Managing vulnerabilities in your project's dependencies intro: 'You can track your repository''s dependencies and receive {% data variables.product.prodname_dependabot_alerts %} when {% data variables.product.product_name %} detects vulnerable dependencies.' redirect_from: - - /articles/updating-your-project-s-dependencies/ - - /articles/updating-your-projects-dependencies/ - - /articles/managing-security-vulnerabilities-in-your-projects-dependencies/ + - /articles/updating-your-project-s-dependencies + - /articles/updating-your-projects-dependencies + - /articles/managing-security-vulnerabilities-in-your-projects-dependencies - /articles/managing-vulnerabilities-in-your-projects-dependencies - /github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies versions: diff --git a/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md b/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md index b65234f96f..7130649af7 100644 --- a/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md +++ b/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md @@ -74,12 +74,38 @@ ACR_CONTAINER_REGISTRY_USER = acr-user-here ACR_CONTAINER_REGISTRY_PASSWORD = ``` -For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." +For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." Note that accessing AWS Elastic Container Registry (ECR) is different. ![Image registry secret example](/assets/images/help/settings/codespaces-image-registry-secret-example.png) Once you've added the secrets, you may need to stop and then start the codespace you are in for the new environment variables to be passed into the container. For more information, see "[Suspending or stopping a codespace](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)." +#### Accessing AWS Elastic Container Registry + +To access AWS Elastic Container Registry (ECR), you can provide an AWS access key ID and secret key, and {% data variables.product.prodname_dotcom %} can retrieve an access token for you and log in on your behalf. + +``` +*_CONTAINER_REGISTRY_SERVER = +*_CONTAINER_REGISTRY_USER = +*_container_REGISTRY_PASSWORD = +``` + +You must also ensure you have the appropriate AWS IAM permissions to perform the credential swap (e.g. `sts:GetServiceBearerToken`) as well as the ECR read operation (either `AmazonEC2ContainerRegistryFullAccess` or `ReadOnlyAccess`). + +Alternatively, if you don't want GitHub to perform the credential swap on your behalf, you can provide an authorization token fetched via AWS's APIs or CLI. + +``` +*_CONTAINER_REGISTRY_SERVER = +*_CONTAINER_REGISTRY_USER = AWS +*_container_REGISTRY_PASSWORD = +``` + +Since these tokens are short lived and need to be refreshed periodically, we recommend providing an access key ID and secret. + +While these secrets can have any name, so long as the `*_CONTAINER_REGISTRY_SERVER` is an ECR URL, we recommend using `ECR_CONTAINER_REGISTRY_*` unless you are dealing with multiple ECR registries. + +For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." + ### Common image registry servers Some of the common image registry servers are listed below: @@ -90,6 +116,6 @@ Some of the common image registry servers are listed below: - [AWS Elastic Container Registry](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html) - `.dkr.ecr..amazonaws.com` - [Google Cloud Container Registry](https://cloud.google.com/container-registry/docs/overview#registries) - `gcr.io` (US), `eu.gcr.io` (EU), `asia.gcr.io` (Asia) -#### Accessing AWS Elastic Container Registry +## Debugging private image registry access -If you want to access AWS Elastic Container Registry (ECR), you must provide an AWS authorization token in the `ECR_CONTAINER_REGISTRY_PASSWORD`. This authorization token is not the same as your secret key. You can obtain an AWS authorization token by using AWS's APIs or CLI. These tokens are short lived and will need to be refreshed periodically. For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." +If you are having trouble pulling an image from a private image registry, make sure you are able to run `docker login -u -p `, using the values of the secrets defined above. If login fails, ensure that the login credentials are valid and that you have the apprioriate permissions on the server to fetch a container image. If login succeeds, make sure that these values are copied appropriately into the right {% data variables.product.prodname_codespaces %} secrets, either at the user, repository, or organization level and try again. \ No newline at end of file diff --git a/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md b/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md index 4ddd9466a3..6df3c42808 100644 --- a/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md +++ b/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md @@ -18,12 +18,12 @@ A codespace will stop running after a period of inactivity. You can specify the {% endwarning %} -## Setting your default timeout - {% include tool-switcher %} {% webui %} +## Setting your default timeout + {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.codespaces-tab %} 1. Under "Default idle timeout", enter the time that you want, then click **Save**. The time must be between 5 minutes and 240 minutes (4 hours). @@ -33,14 +33,16 @@ A codespace will stop running after a period of inactivity. You can specify the {% cli %} +## Setting your timeout period + {% data reusables.cli.cli-learn-more %} -To set the timeout period, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (5 hours). +To set the timeout period when you create a codespace, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (4 hours). ```shell gh codespace create --idle-timeout 90m ``` -If you do not specify a timeout period when creating a codespace, then your default timeout period will be used. You cannot currently specify a default timeout period for all future codespaces through {% data variables.product.prodname_cli %}. +If you don't specify a timeout period when you create a codespace, then the default timeout period will be used. For information about setting a default timeout period, click the "Web browser" tab on this page. You can't currently specify a default timeout period through {% data variables.product.prodname_cli %}. {% endcli %} diff --git a/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md b/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md index f534a02538..7e68cd8fd1 100644 --- a/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md +++ b/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md @@ -37,10 +37,19 @@ By default, a codespace can only access the repository from which it was created {% data reusables.organizations.click-codespaces %} 1. Under "User permissions", select one of the following options: - * **Allow for all users** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. * **Selected users** to select specific organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members and outside collaborators** to allow all your organization members as well as outside collaborators to use {% data variables.product.prodname_codespaces %}. - ![Radio buttons for "User permissions"](/assets/images/help/codespaces/organization-user-permission-settings.png) + ![Radio buttons for "User permissions"](/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png) + + {% note %} + + **Note:** When you select **Allow for all members and outside collaborators**, all outside collaborators who have been added to specific repositories can create and use {% data variables.product.prodname_codespaces %}. Your organization will be billed for all usage incurred by outside collaborators. For more information on managing outside collaborators, see "[About outside collaborators](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization#about-outside-collaborators)." + + {% endnote %} + +1. Click **Save**. ## Disabling {% data variables.product.prodname_codespaces %} for your organization diff --git a/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md b/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md index 6a7d8ad677..cd8481cdd1 100644 --- a/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md +++ b/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md @@ -2,8 +2,8 @@ title: Managing disruptive comments intro: 'You can {% ifversion fpt or ghec %}hide, edit,{% else %}edit{% endif %} or delete comments on issues, pull requests, and commits.' redirect_from: - - /articles/editing-a-comment/ - - /articles/deleting-a-comment/ + - /articles/editing-a-comment + - /articles/deleting-a-comment - /articles/managing-disruptive-comments - /github/building-a-strong-community/managing-disruptive-comments versions: @@ -18,7 +18,7 @@ shortTitle: Manage comments ## Hiding a comment -Anyone with write access to a repository can hide comments on issues, pull requests, and commits. +Anyone with write access to a repository can hide comments on issues, pull requests, and commits. If a comment is off-topic, outdated, or resolved, you may want to hide a comment to keep a discussion focused or make a pull request easier to navigate and review. Hidden comments are minimized but people with read access to the repository can expand them. diff --git a/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md b/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md index ae127fcf00..cf34ff73d0 100644 --- a/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md +++ b/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md @@ -2,7 +2,7 @@ title: Keyboard shortcuts intro: 'You can use keyboard shortcuts in {% data variables.product.prodname_desktop %}.' redirect_from: - - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop/ + - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop - /desktop/getting-started-with-github-desktop/keyboard-shortcuts - /desktop/installing-and-configuring-github-desktop/keyboard-shortcuts versions: diff --git a/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md b/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md index cc15507cf3..1ea8edbf72 100644 --- a/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md +++ b/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md @@ -239,16 +239,16 @@ While most of your API interaction should occur using your server-to-server inst #### Deployment Statuses -* [List deployment statuses](/rest/reference/repos#list-deployment-statuses) -* [Create a deployment status](/rest/reference/repos#create-a-deployment-status) -* [Get a deployment status](/rest/reference/repos#get-a-deployment-status) +* [List deployment statuses](/rest/reference/deployments#list-deployment-statuses) +* [Create a deployment status](/rest/reference/deployments#create-a-deployment-status) +* [Get a deployment status](/rest/reference/deployments#get-a-deployment-status) #### Deployments -* [List deployments](/rest/reference/repos#list-deployments) -* [Create a deployment](/rest/reference/repos#create-a-deployment) -* [Get a deployment](/rest/reference/repos#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} -* [Delete a deployment](/rest/reference/repos#delete-a-deployment){% endif %} +* [List deployments](/rest/reference/deployments#list-deployments) +* [Create a deployment](/rest/reference/deployments#create-a-deployment) +* [Get a deployment](/rest/reference/deployments#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} +* [Delete a deployment](/rest/reference/deployments#delete-a-deployment){% endif %} #### Events @@ -609,7 +609,7 @@ While most of your API interaction should occur using your server-to-server inst * [Get a repository](/rest/reference/repos#get-a-repository) * [Update a repository](/rest/reference/repos#update-a-repository) * [Delete a repository](/rest/reference/repos#delete-a-repository) -* [Compare two commits](/rest/reference/repos#compare-two-commits) +* [Compare two commits](/rest/reference/commits#compare-two-commits) * [List repository contributors](/rest/reference/repos#list-repository-contributors) * [List forks](/rest/reference/repos#list-forks) * [Create a fork](/rest/reference/repos#create-a-fork) @@ -641,68 +641,68 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Branches -* [List branches](/rest/reference/repos#list-branches) -* [Get a branch](/rest/reference/repos#get-a-branch) -* [Get branch protection](/rest/reference/repos#get-branch-protection) -* [Update branch protection](/rest/reference/repos#update-branch-protection) -* [Delete branch protection](/rest/reference/repos#delete-branch-protection) -* [Get admin branch protection](/rest/reference/repos#get-admin-branch-protection) -* [Set admin branch protection](/rest/reference/repos#set-admin-branch-protection) -* [Delete admin branch protection](/rest/reference/repos#delete-admin-branch-protection) -* [Get pull request review protection](/rest/reference/repos#get-pull-request-review-protection) -* [Update pull request review protection](/rest/reference/repos#update-pull-request-review-protection) -* [Delete pull request review protection](/rest/reference/repos#delete-pull-request-review-protection) -* [Get commit signature protection](/rest/reference/repos#get-commit-signature-protection) -* [Create commit signature protection](/rest/reference/repos#create-commit-signature-protection) -* [Delete commit signature protection](/rest/reference/repos#delete-commit-signature-protection) -* [Get status checks protection](/rest/reference/repos#get-status-checks-protection) -* [Update status check protection](/rest/reference/repos#update-status-check-protection) -* [Remove status check protection](/rest/reference/repos#remove-status-check-protection) -* [Get all status check contexts](/rest/reference/repos#get-all-status-check-contexts) -* [Add status check contexts](/rest/reference/repos#add-status-check-contexts) -* [Set status check contexts](/rest/reference/repos#set-status-check-contexts) -* [Remove status check contexts](/rest/reference/repos#remove-status-check-contexts) -* [Get access restrictions](/rest/reference/repos#get-access-restrictions) -* [Delete access restrictions](/rest/reference/repos#delete-access-restrictions) +* [List branches](/rest/reference/branches#list-branches) +* [Get a branch](/rest/reference/branches#get-a-branch) +* [Get branch protection](/rest/reference/branches#get-branch-protection) +* [Update branch protection](/rest/reference/branches#update-branch-protection) +* [Delete branch protection](/rest/reference/branches#delete-branch-protection) +* [Get admin branch protection](/rest/reference/branches#get-admin-branch-protection) +* [Set admin branch protection](/rest/reference/branches#set-admin-branch-protection) +* [Delete admin branch protection](/rest/reference/branches#delete-admin-branch-protection) +* [Get pull request review protection](/rest/reference/branches#get-pull-request-review-protection) +* [Update pull request review protection](/rest/reference/branches#update-pull-request-review-protection) +* [Delete pull request review protection](/rest/reference/branches#delete-pull-request-review-protection) +* [Get commit signature protection](/rest/reference/branches#get-commit-signature-protection) +* [Create commit signature protection](/rest/reference/branches#create-commit-signature-protection) +* [Delete commit signature protection](/rest/reference/branches#delete-commit-signature-protection) +* [Get status checks protection](/rest/reference/branches#get-status-checks-protection) +* [Update status check protection](/rest/reference/branches#update-status-check-protection) +* [Remove status check protection](/rest/reference/branches#remove-status-check-protection) +* [Get all status check contexts](/rest/reference/branches#get-all-status-check-contexts) +* [Add status check contexts](/rest/reference/branches#add-status-check-contexts) +* [Set status check contexts](/rest/reference/branches#set-status-check-contexts) +* [Remove status check contexts](/rest/reference/branches#remove-status-check-contexts) +* [Get access restrictions](/rest/reference/branches#get-access-restrictions) +* [Delete access restrictions](/rest/reference/branches#delete-access-restrictions) * [List teams with access to the protected branch](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) -* [Add team access restrictions](/rest/reference/repos#add-team-access-restrictions) -* [Set team access restrictions](/rest/reference/repos#set-team-access-restrictions) -* [Remove team access restriction](/rest/reference/repos#remove-team-access-restrictions) +* [Add team access restrictions](/rest/reference/branches#add-team-access-restrictions) +* [Set team access restrictions](/rest/reference/branches#set-team-access-restrictions) +* [Remove team access restriction](/rest/reference/branches#remove-team-access-restrictions) * [List user restrictions of protected branch](/rest/reference/repos#list-users-with-access-to-the-protected-branch) -* [Add user access restrictions](/rest/reference/repos#add-user-access-restrictions) -* [Set user access restrictions](/rest/reference/repos#set-user-access-restrictions) -* [Remove user access restrictions](/rest/reference/repos#remove-user-access-restrictions) -* [Merge a branch](/rest/reference/repos#merge-a-branch) +* [Add user access restrictions](/rest/reference/branches#add-user-access-restrictions) +* [Set user access restrictions](/rest/reference/branches#set-user-access-restrictions) +* [Remove user access restrictions](/rest/reference/branches#remove-user-access-restrictions) +* [Merge a branch](/rest/reference/branches#merge-a-branch) #### Repository Collaborators -* [List repository collaborators](/rest/reference/repos#list-repository-collaborators) -* [Check if a user is a repository collaborator](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) -* [Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator) -* [Remove a repository collaborator](/rest/reference/repos#remove-a-repository-collaborator) -* [Get repository permissions for a user](/rest/reference/repos#get-repository-permissions-for-a-user) +* [List repository collaborators](/rest/reference/collaborators#list-repository-collaborators) +* [Check if a user is a repository collaborator](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) +* [Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator) +* [Remove a repository collaborator](/rest/reference/collaborators#remove-a-repository-collaborator) +* [Get repository permissions for a user](/rest/reference/collaborators#get-repository-permissions-for-a-user) #### Repository Commit Comments -* [List commit comments for a repository](/rest/reference/repos#list-commit-comments-for-a-repository) -* [Get a commit comment](/rest/reference/repos#get-a-commit-comment) -* [Update a commit comment](/rest/reference/repos#update-a-commit-comment) -* [Delete a commit comment](/rest/reference/repos#delete-a-commit-comment) -* [List commit comments](/rest/reference/repos#list-commit-comments) -* [Create a commit comment](/rest/reference/repos#create-a-commit-comment) +* [List commit comments for a repository](/rest/reference/commits#list-commit-comments-for-a-repository) +* [Get a commit comment](/rest/reference/commits#get-a-commit-comment) +* [Update a commit comment](/rest/reference/commits#update-a-commit-comment) +* [Delete a commit comment](/rest/reference/commits#delete-a-commit-comment) +* [List commit comments](/rest/reference/commits#list-commit-comments) +* [Create a commit comment](/rest/reference/commits#create-a-commit-comment) #### Repository Commits -* [List commits](/rest/reference/repos#list-commits) -* [Get a commit](/rest/reference/repos#get-a-commit) -* [List branches for head commit](/rest/reference/repos#list-branches-for-head-commit) +* [List commits](/rest/reference/commits#list-commits) +* [Get a commit](/rest/reference/commits#get-a-commit) +* [List branches for head commit](/rest/reference/commits#list-branches-for-head-commit) * [List pull requests associated with commit](/rest/reference/repos#list-pull-requests-associated-with-commit) #### Repository Community * [Get the code of conduct for a repository](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) {% ifversion fpt or ghec %} -* [Get community profile metrics](/rest/reference/repos#get-community-profile-metrics) +* [Get community profile metrics](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif %} #### Repository Contents @@ -722,40 +722,40 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Hooks -* [List repository webhooks](/rest/reference/repos#list-repository-webhooks) -* [Create a repository webhook](/rest/reference/repos#create-a-repository-webhook) -* [Get a repository webhook](/rest/reference/repos#get-a-repository-webhook) -* [Update a repository webhook](/rest/reference/repos#update-a-repository-webhook) -* [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) -* [Ping a repository webhook](/rest/reference/repos#ping-a-repository-webhook) +* [List repository webhooks](/rest/reference/webhooks#list-repository-webhooks) +* [Create a repository webhook](/rest/reference/webhooks#create-a-repository-webhook) +* [Get a repository webhook](/rest/reference/webhooks#get-a-repository-webhook) +* [Update a repository webhook](/rest/reference/webhooks#update-a-repository-webhook) +* [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) +* [Ping a repository webhook](/rest/reference/webhooks#ping-a-repository-webhook) * [Test the push repository webhook](/rest/reference/repos#test-the-push-repository-webhook) #### Repository Invitations -* [List repository invitations](/rest/reference/repos#list-repository-invitations) -* [Update a repository invitation](/rest/reference/repos#update-a-repository-invitation) -* [Delete a repository invitation](/rest/reference/repos#delete-a-repository-invitation) -* [List repository invitations for the authenticated user](/rest/reference/repos#list-repository-invitations-for-the-authenticated-user) -* [Accept a repository invitation](/rest/reference/repos#accept-a-repository-invitation) -* [Decline a repository invitation](/rest/reference/repos#decline-a-repository-invitation) +* [List repository invitations](/rest/reference/collaborators#list-repository-invitations) +* [Update a repository invitation](/rest/reference/collaborators#update-a-repository-invitation) +* [Delete a repository invitation](/rest/reference/collaborators#delete-a-repository-invitation) +* [List repository invitations for the authenticated user](/rest/reference/collaborators#list-repository-invitations-for-the-authenticated-user) +* [Accept a repository invitation](/rest/reference/collaborators#accept-a-repository-invitation) +* [Decline a repository invitation](/rest/reference/collaborators#decline-a-repository-invitation) #### Repository Keys -* [List deploy keys](/rest/reference/repos#list-deploy-keys) -* [Create a deploy key](/rest/reference/repos#create-a-deploy-key) -* [Get a deploy key](/rest/reference/repos#get-a-deploy-key) -* [Delete a deploy key](/rest/reference/repos#delete-a-deploy-key) +* [List deploy keys](/rest/reference/deployments#list-deploy-keys) +* [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) +* [Get a deploy key](/rest/reference/deployments#get-a-deploy-key) +* [Delete a deploy key](/rest/reference/deployments#delete-a-deploy-key) #### Repository Pages -* [Get a GitHub Pages site](/rest/reference/repos#get-a-github-pages-site) -* [Create a GitHub Pages site](/rest/reference/repos#create-a-github-pages-site) -* [Update information about a GitHub Pages site](/rest/reference/repos#update-information-about-a-github-pages-site) -* [Delete a GitHub Pages site](/rest/reference/repos#delete-a-github-pages-site) -* [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) -* [Request a GitHub Pages build](/rest/reference/repos#request-a-github-pages-build) -* [Get GitHub Pages build](/rest/reference/repos#get-github-pages-build) -* [Get latest pages build](/rest/reference/repos#get-latest-pages-build) +* [Get a GitHub Pages site](/rest/reference/pages#get-a-github-pages-site) +* [Create a GitHub Pages site](/rest/reference/pages#create-a-github-pages-site) +* [Update information about a GitHub Pages site](/rest/reference/pages#update-information-about-a-github-pages-site) +* [Delete a GitHub Pages site](/rest/reference/pages#delete-a-github-pages-site) +* [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) +* [Request a GitHub Pages build](/rest/reference/pages#request-a-github-pages-build) +* [Get GitHub Pages build](/rest/reference/pages#get-github-pages-build) +* [Get latest pages build](/rest/reference/pages#get-latest-pages-build) {% ifversion ghes %} #### Repository Pre Receive Hooks @@ -782,11 +782,11 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Stats -* [Get the weekly commit activity](/rest/reference/repos#get-the-weekly-commit-activity) -* [Get the last year of commit activity](/rest/reference/repos#get-the-last-year-of-commit-activity) -* [Get all contributor commit activity](/rest/reference/repos#get-all-contributor-commit-activity) -* [Get the weekly commit count](/rest/reference/repos#get-the-weekly-commit-count) -* [Get the hourly commit count for each day](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +* [Get the weekly commit activity](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +* [Get the last year of commit activity](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +* [Get all contributor commit activity](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +* [Get the weekly commit count](/rest/reference/repository-metrics#get-the-weekly-commit-count) +* [Get the hourly commit count for each day](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) {% ifversion fpt or ghec %} #### Repository Vulnerability Alerts @@ -812,9 +812,9 @@ While most of your API interaction should occur using your server-to-server inst #### Statuses -* [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) -* [List commit statuses for a reference](/rest/reference/repos#list-commit-statuses-for-a-reference) -* [Create a commit status](/rest/reference/repos#create-a-commit-status) +* [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) +* [List commit statuses for a reference](/rest/reference/commits#list-commit-statuses-for-a-reference) +* [Create a commit status](/rest/reference/commits#create-a-commit-status) #### Team Discussions @@ -837,10 +837,10 @@ While most of your API interaction should occur using your server-to-server inst {% ifversion fpt or ghec %} #### Traffic -* [Get repository clones](/rest/reference/repos#get-repository-clones) -* [Get top referral paths](/rest/reference/repos#get-top-referral-paths) -* [Get top referral sources](/rest/reference/repos#get-top-referral-sources) -* [Get page views](/rest/reference/repos#get-page-views) +* [Get repository clones](/rest/reference/repository-metrics#get-repository-clones) +* [Get top referral paths](/rest/reference/repository-metrics#get-top-referral-paths) +* [Get top referral sources](/rest/reference/repository-metrics#get-top-referral-sources) +* [Get page views](/rest/reference/repository-metrics#get-page-views) {% endif %} {% ifversion fpt or ghec %} diff --git a/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md b/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md index 37d6d53b63..3b4da45422 100644 --- a/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md +++ b/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md @@ -97,7 +97,7 @@ Unlike OAuth apps, GitHub Apps have targeted permissions that allow them to requ | GitHub Apps | OAuth Apps | | ----- | ----------- | -| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/repos#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | +| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | | The token is used as the HTTP password. | The token is used as the HTTP username. | ## Machine vs. bot accounts diff --git a/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md b/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md index 81c514324b..c50c580dbb 100644 --- a/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md +++ b/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md @@ -98,7 +98,7 @@ You'll need to replace `YOUR_APP_NAME` with the name of your GitHub App, `ID_OF_ ### Remove any unnecessary repository hooks -Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) on those repositories that were created by your OAuth App. +Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) on those repositories that were created by your OAuth App. ### Encourage users to revoke access to your OAuth app diff --git a/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md b/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md index e935d2a0e9..37bfe4dd23 100644 --- a/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md +++ b/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md @@ -2,10 +2,10 @@ title: Receiving payment for app purchases intro: 'At the end of each month, you''ll receive payment for your {% data variables.product.prodname_marketplace %} listing.' redirect_from: - - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings/ + - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /developers/github-marketplace/receiving-payment-for-app-purchases versions: diff --git a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index d02f24f4a3..b3613a0b77 100644 --- a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -327,7 +327,7 @@ Webhook events are triggered based on the specificity of the domain you register Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments). +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments). {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -352,11 +352,11 @@ Key | Type | Description Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment_status` |`object` | The [deployment status](/rest/reference/repos#list-deployment-statuses). +`deployment_status` |`object` | The [deployment status](/rest/reference/deployments#list-deployment-statuses). `deployment_status["state"]` |`string` | The new state. Can be `pending`, `success`, `failure`, or `error`. `deployment_status["target_url"]` |`string` | The optional link added to the status. `deployment_status["description"]`|`string` | The optional human-readable description added to the status. -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments) that this status is associated with. +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments) that this status is associated with. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -820,7 +820,7 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus Key | Type | Description ----|------|------------ `id` | `integer` | The unique identifier of the page build. -`build` | `object` | The [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) itself. +`build` | `object` | The [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) itself. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -846,7 +846,7 @@ Key | Type | Description ----|------|------------ `zen` | `string` | Random string of GitHub zen. `hook_id` | `integer` | The ID of the webhook that triggered the ping. -`hook` | `object` | The [webhook configuration](/rest/reference/repos#get-a-repository-webhook). +`hook` | `object` | The [webhook configuration](/rest/reference/webhooks#get-a-repository-webhook). `hook[app_id]` | `integer` | When you register a new {% data variables.product.prodname_github_app %}, {% data variables.product.product_name %} sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps/) an app. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} @@ -1197,8 +1197,9 @@ Key | Type | Description {% ifversion fpt or ghes or ghec %} ## security_advisory -Activity related to a security advisory. A security advisory provides information about security-related vulnerabilities in software on GitHub. The security advisory dataset also powers the GitHub security alerts, see "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies/)." -{% endif %} +Activity related to a security advisory that has been reviewed by {% data variables.product.company_short %}. A {% data variables.product.company_short %}-reviewed security advisory provides information about security-related vulnerabilities in software on {% data variables.product.prodname_dotcom %}. + +The security advisory dataset also powers the GitHub {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies/)." ### Availability @@ -1215,6 +1216,8 @@ Key | Type | Description {{ webhookPayloadsForCurrentVersion.security_advisory.published }} +{% endif %} + {% ifversion fpt or ghec %} ## sponsorship diff --git a/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md b/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md index 514bf5d42f..3249d81ea8 100644 --- a/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md +++ b/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md @@ -4,7 +4,7 @@ intro: 'Review common reasons that applications for the {% data variables.produc redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - - /articles/why-was-my-application-for-a-student-developer-pack-denied/ + - /articles/why-was-my-application-for-a-student-developer-pack-denied - /articles/why-wasn-t-my-application-for-a-student-developer-pack-approved - /articles/why-wasnt-my-application-for-a-student-developer-pack-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved diff --git a/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/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 7c4d24edb6..e1e2026fb4 100644 --- a/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/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 @@ -4,10 +4,10 @@ intro: 'If you''re an educator or a researcher, you can apply to receive {% data redirect_from: - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /github/teaching-and-learning-with-github-education/applying-for-an-educator-or-researcher-discount - - /articles/applying-for-a-classroom-discount/ - - /articles/applying-for-a-discount-for-your-school-club/ - - /articles/applying-for-an-academic-research-discount/ - - /articles/applying-for-a-discount-for-your-first-robotics-team/ + - /articles/applying-for-a-classroom-discount + - /articles/applying-for-a-discount-for-your-school-club + - /articles/applying-for-an-academic-research-discount + - /articles/applying-for-a-discount-for-your-first-robotics-team - /articles/applying-for-an-educator-or-researcher-discount - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount versions: diff --git a/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md b/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md index 45fd1d10bd..82cc504911 100644 --- a/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md +++ b/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md @@ -4,7 +4,7 @@ intro: Review common reasons that applications for an educator or researcher dis redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied/ + - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied - /articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved - /articles/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved diff --git a/content/get-started/learning-about-github/access-permissions-on-github.md b/content/get-started/learning-about-github/access-permissions-on-github.md index 9d725ebcf0..07127770d3 100644 --- a/content/get-started/learning-about-github/access-permissions-on-github.md +++ b/content/get-started/learning-about-github/access-permissions-on-github.md @@ -7,7 +7,7 @@ redirect_from: - /articles/access-permissions-on-github - /github/getting-started-with-github/access-permissions-on-github - /github/getting-started-with-github/learning-about-github/access-permissions-on-github -intro: 'While you can grant read/write access to collaborators on a personal repository, members of an organization can have more granular access permissions for the organization''s repositories.' +intro: 'With roles, you can control who has access to your accounts and resources on {% data variables.product.product_name %} and the level of access each person has.' versions: fpt: '*' ghes: '*' @@ -18,6 +18,13 @@ topics: - Accounts shortTitle: Access permissions --- + +## About access permissions on {% data variables.product.prodname_dotcom %} + +{% data reusables.organizations.about-roles %} + +Roles work differently for different types of accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + ## Personal user accounts A repository owned by a user account has two permission levels: the *repository owner* and *collaborators*. For more information, see "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)." diff --git a/content/get-started/learning-about-github/githubs-products.md b/content/get-started/learning-about-github/githubs-products.md index e714ae503e..c5927d487d 100644 --- a/content/get-started/learning-about-github/githubs-products.md +++ b/content/get-started/learning-about-github/githubs-products.md @@ -20,7 +20,9 @@ topics: --- ## About {% data variables.product.prodname_dotcom %}'s products -{% data variables.product.prodname_dotcom %} offers free and paid products. You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} +{% data variables.product.prodname_dotcom %} offers free and paid products for storing and collaborating on code. Some products apply only to user accounts, while other plans apply only to organization and enterprise accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + +You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} ## {% data variables.product.prodname_free_user %} for user accounts diff --git a/content/get-started/learning-about-github/types-of-github-accounts.md b/content/get-started/learning-about-github/types-of-github-accounts.md index 4981f1858c..568b1834d8 100644 --- a/content/get-started/learning-about-github/types-of-github-accounts.md +++ b/content/get-started/learning-about-github/types-of-github-accounts.md @@ -1,6 +1,6 @@ --- title: Types of GitHub accounts -intro: 'Your user account is your identity on {% data variables.product.product_location %}. Your user account can be a member of any number of organizations.{% ifversion fpt or ghec %} Organizations can belong to enterprise accounts.{% endif %}' +intro: 'Accounts on {% data variables.product.product_name %} allow you to organize and control access to code.' redirect_from: - /manage-multiple-clients - /managing-clients @@ -21,73 +21,67 @@ topics: - Desktop - Security --- -{% ifversion fpt or ghec %} -For a full list of features for each {% data variables.product.product_name %} product, see "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products)." -{% endif %} -## Personal user accounts +## About accounts on {% data variables.product.product_name %} -Every person who uses {% data variables.product.product_location %} has their own user account, which includes: +With {% data variables.product.product_name %}, you can store and collaborate on code. Accounts allow you to organize and control access to that code. There are three types of accounts on {% data variables.product.product_name %}. +- Personal accounts +- Organization accounts +- Enterprise accounts -{% ifversion fpt or ghec %} +Every person who uses {% data variables.product.product_name %} signs into a personal account. An organization account enhances collaboration between multiple personal accounts, and {% ifversion fpt or ghec %}an enterprise account{% else %}the enterprise account for {% data variables.product.product_location %}{% endif %} allows central management of multiple organizations. -- Unlimited public and private repositories with {% data variables.product.prodname_free_user %} -- Unlimited collaborators with {% data variables.product.prodname_free_user %} -- Additional features for private repositories with {% data variables.product.prodname_pro %} -- Ability to [invite repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +## Personal accounts -{% else %} +Every person who uses {% data variables.product.product_location %} signs into a personal account. Your personal account is your identity on {% data variables.product.product_location %} and has a username and profile. For example, see [@octocat's profile](https://github.com/octocat). -- Unlimited repositories and [collaborators](/articles/permission-levels-for-a-user-account-repository) -- Ability to [add unlimited repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +Your personal account can own resources such as repositories, packages, and projects. Any time you take any action on {% data variables.product.product_location %}, such as creating an issue or reviewing a pull request, the action is attributed to your personal account. -{% endif %} - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %}Each personal account uses either {% data variables.product.prodname_free_user %} or {% data variables.product.prodname_pro %}. All personal accounts can own an unlimited number of public and private repositories, with an unlimited number of collaborators on those repositories. If you use {% data variables.product.prodname_free_user %}, private repositories owned by your personal account have a limited feature set. You can upgrade to {% data variables.product.prodname_pro %} to get a full feature set for private repositories. For more information, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)." {% else %}You can create an unlimited number of repositories owned by your personal account, with an unlimited number of collaborators on those repositories.{% endif %} {% tip %} -**Tips**: - -- You can use one account for multiple purposes, such as for personal use and business use. We do not recommend creating more than one account. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." -- User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. +**Tip**: Personal accounts are intended for humans, but you can create accounts to automate activity on {% data variables.product.product_name %}. This type of account is called a machine user. For example, you can create a machine user account to automate continuous integration (CI) workflows. {% endtip %} -{% else %} - -{% tip %} - -**Tip**: User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. - -{% endtip %} - -{% endif %} - {% ifversion fpt or ghec %} -### {% data variables.product.prodname_emus %} - -With {% data variables.product.prodname_emus %}, instead of using your personal account, members of an {% data variables.product.prodname_emu_enterprise %} are provisioned accounts using the enterprise's identity provider (IdP). {% data variables.product.prodname_managed_users_caps %} authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. - -{% data variables.product.prodname_managed_users_caps %} can only interact with users, repositories, and organizations that are part of their enterprise. {% data variables.product.prodname_managed_users_caps %} have read-only access to the rest of {% data variables.product.prodname_dotcom_the_website %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +Most people will use one personal account for all their work on {% data variables.product.prodname_dotcom_the_website %}, including both open source projects and paid employment. If you're currently using more than one personal account that you created for yourself, we suggest combining the accounts. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." {% endif %} ## Organization accounts -Organizations are shared accounts where groups of people can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. +Organizations are shared accounts where an unlimited number of people can collaborate across many projects at once. -{% data reusables.organizations.organizations_include %} +Like personal accounts, organizations can own resources such as repositories, packages, and projects. However, you cannot sign into an organization. Instead, each person signs into their own personal account, and any actions the person takes on organization resources are attributed to their personal account. Each personal account can be a member of multiple organizations. -{% ifversion fpt or ghec %} +The personal accounts within an organization can be given different roles in the organization, which grant different levels of access to the organization and its data. All members can collaborate with each other in repositories and projects, but only organization owners and security managers can manage the settings for the organization and control access to the organization's data with sophisticated security and administrative features. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" and "[Keeping your organization secure](/organizations/keeping-your-organization-secure)." + +![Diagram showing that users must sign in to their personal user account to access an organization's resources](/assets/images/help/overview/sign-in-pattern.png) + +{% ifversion fpt or ghec %} +Even if you're a member of an organization that uses SAML single sign-on, you will still sign into your own personal account on {% data variables.product.prodname_dotcom_the_website %}, and that personal account will be linked to your identity in your organization's identity provider (IdP). For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation{% else %}."{% endif %} + +However, if you're a member of an enterprise that uses {% data variables.product.prodname_emus %}, instead of using a personal account that you created, a new account will be provisioned for you by the enterprise's IdP. To access any organizations owned by that enterprise, you must authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% endif %} + +You can also create nested sub-groups of organization members called teams, to reflect your group's structure and simplify access management. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." + +{% data reusables.organizations.organization-plans %} + +For more information about all the features of organizations, see "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)." ## Enterprise accounts -With enterprise accounts, you can centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations. {% data reusables.gated-features.enterprise-accounts %} - +{% ifversion fpt %} +{% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} include enterprise accounts, which allow administrators to centrally manage policy and billing for multiple organizations and enable innersourcing between the organizations. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +{% elsif ghec %} +Enterprise accounts allow central policy management and billing for multiple organizations. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." +{% elsif ghes or ghae %} +Your enterprise account is a collection of all the organizations {% ifversion ghae %}owned by{% elsif ghes %}on{% endif %} {% data variables.product.product_location %}. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." {% endif %} ## Further reading -{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)" -- "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)"{% endif %} +{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)"{% endif %} - "[Creating a new organization account](/articles/creating-a-new-organization-account)" diff --git a/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md b/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md index cfe1727e12..0a60c0a9d2 100644 --- a/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md +++ b/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md @@ -19,12 +19,18 @@ shortTitle: Enterprise Cloud trial ## About {% data variables.product.prodname_ghe_cloud %} -{% data reusables.organizations.about-organizations %} +{% data variables.product.prodname_ghe_cloud %} is a plan for large businesses or teams who collaborate on {% data variables.product.prodname_dotcom_the_website %}. + +{% data reusables.organizations.about-organizations %} For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page. {% data reusables.saml.saml-accounts %} For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% data reusables.enterprise-accounts.emu-short-summary %} + +{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact). + {% data reusables.products.which-product-to-use %} ## About trials of {% data variables.product.prodname_ghe_cloud %} diff --git a/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md b/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md index 6735d3d15d..d20a58f745 100644 --- a/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md +++ b/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md @@ -12,7 +12,14 @@ versions: topics: - Accounts --- -For more information about account types and products, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/articles/types-of-github-accounts)" and "[{% data variables.product.company_short %}'s products](/articles/github-s-products)." + +## About new accounts on {% data variables.product.prodname_dotcom_the_website %} + +You can create a personal account, which serves as your identity on {% data variables.product.prodname_dotcom_the_website %}, or an organization, which allows multiple personal accounts to collaborate across multiple projects. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + +When you create a personal account or organization, you must select a billing plan for the account. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)." + +## Signing up for a new account {% data reusables.accounts.create-account %} 1. Follow the prompts to create your personal account or organization. @@ -20,7 +27,5 @@ For more information about account types and products, see "[Types of {% data va ## Next steps - "[Verify your email address](/articles/verifying-your-email-address)" -- "[Configure two-factor authentication](/articles/configuring-two-factor-authentication)" -- "[Add a bio to your profile](/articles/adding-a-bio-to-your-profile)" -- "[Create an organization](/articles/creating-a-new-organization-from-scratch)" +- "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} - [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository diff --git a/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md index ceaaf6c438..621628a074 100644 --- a/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md +++ b/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md @@ -2,7 +2,7 @@ title: GitHub extensions and integrations intro: 'Use {% data variables.product.product_name %} extensions to work seamlessly in {% data variables.product.product_name %} repositories within third-party applications.' redirect_from: - - /articles/about-github-extensions-for-third-party-applications/ + - /articles/about-github-extensions-for-third-party-applications - /articles/github-extensions-and-integrations - /github/customizing-your-github-workflow/github-extensions-and-integrations versions: diff --git a/content/github/extending-github/about-webhooks.md b/content/github/extending-github/about-webhooks.md index 427f5d57d0..3ebe391ec7 100644 --- a/content/github/extending-github/about-webhooks.md +++ b/content/github/extending-github/about-webhooks.md @@ -1,9 +1,9 @@ --- title: About webhooks redirect_from: - - /post-receive-hooks/ - - /articles/post-receive-hooks/ - - /articles/creating-webhooks/ + - /post-receive-hooks + - /articles/post-receive-hooks + - /articles/creating-webhooks - /articles/about-webhooks intro: Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. versions: diff --git a/content/github/extending-github/git-automation-with-oauth-tokens.md b/content/github/extending-github/git-automation-with-oauth-tokens.md index 74e36bcd98..e22725a212 100644 --- a/content/github/extending-github/git-automation-with-oauth-tokens.md +++ b/content/github/extending-github/git-automation-with-oauth-tokens.md @@ -1,8 +1,8 @@ --- title: Git automation with OAuth tokens redirect_from: - - /articles/git-over-https-using-oauth-token/ - - /articles/git-over-http-using-oauth-token/ + - /articles/git-over-https-using-oauth-token + - /articles/git-over-http-using-oauth-token - /articles/git-automation-with-oauth-tokens intro: 'You can use OAuth tokens to interact with {% data variables.product.product_name %} via automated scripts.' versions: diff --git a/content/github/extending-github/index.md b/content/github/extending-github/index.md index 8101fa0bb4..79a03ace00 100644 --- a/content/github/extending-github/index.md +++ b/content/github/extending-github/index.md @@ -1,8 +1,8 @@ --- title: Extending GitHub redirect_from: - - /categories/86/articles/ - - /categories/automation/ + - /categories/86/articles + - /categories/automation - /categories/extending-github versions: fpt: '*' diff --git a/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 5011d23fb9..575a38144d 100644 --- a/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -2,7 +2,7 @@ title: Adding an existing project to GitHub using the command line intro: 'Putting your existing work on {% data variables.product.product_name %} can let you share and collaborate in lots of great ways.' redirect_from: - - /articles/add-an-existing-project-to-github/ + - /articles/add-an-existing-project-to-github - /articles/adding-an-existing-project-to-github-using-the-command-line - /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line versions: diff --git a/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md b/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md index 64c485faa2..a559e7393b 100644 --- a/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md +++ b/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md @@ -2,7 +2,7 @@ title: Importing a repository with GitHub Importer intro: 'If you have a project hosted on another version control system, you can automatically import it to GitHub using the GitHub Importer tool.' redirect_from: - - /articles/importing-from-other-version-control-systems-to-github/ + - /articles/importing-from-other-version-control-systems-to-github - /articles/importing-a-repository-with-github-importer - /github/importing-your-projects-to-github/importing-a-repository-with-github-importer versions: diff --git a/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md b/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md index 9d3b4ca0f0..b4936814c0 100644 --- a/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md +++ b/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md @@ -2,10 +2,10 @@ title: Importing source code to GitHub intro: 'You can import repositories to GitHub using {% ifversion fpt %}GitHub Importer, the command line,{% else %}the command line{% endif %} or external migration tools.' redirect_from: - - /articles/importing-an-external-git-repository/ - - /articles/importing-from-bitbucket/ - - /articles/importing-an-external-git-repo/ - - /articles/importing-your-project-to-github/ + - /articles/importing-an-external-git-repository + - /articles/importing-from-bitbucket + - /articles/importing-an-external-git-repo + - /articles/importing-your-project-to-github - /articles/importing-source-code-to-github versions: fpt: '*' diff --git a/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md b/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md index 9f13cacba4..eaf2788967 100644 --- a/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md +++ b/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md @@ -2,7 +2,7 @@ title: Source code migration tools intro: You can use external tools to move your projects to GitHub. redirect_from: - - /articles/importing-from-subversion/ + - /articles/importing-from-subversion - /articles/source-code-migration-tools - /github/importing-your-projects-to-github/source-code-migration-tools versions: diff --git a/content/github/importing-your-projects-to-github/index.md b/content/github/importing-your-projects-to-github/index.md index 726276928c..b2db417ddf 100644 --- a/content/github/importing-your-projects-to-github/index.md +++ b/content/github/importing-your-projects-to-github/index.md @@ -3,8 +3,8 @@ title: Importing your projects to GitHub intro: 'You can import your source code to {% data variables.product.product_name %} using a variety of different methods.' shortTitle: Importing your projects redirect_from: - - /categories/67/articles/ - - /categories/importing/ + - /categories/67/articles + - /categories/importing - /categories/importing-your-projects-to-github versions: fpt: '*' diff --git a/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md b/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md index 210871bbb5..21d7ded6ac 100644 --- a/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md +++ b/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md @@ -2,7 +2,7 @@ title: What are the differences between Subversion and Git? intro: 'Subversion (SVN) repositories are similar to Git repositories, but there are several differences when it comes to the architecture of your projects.' redirect_from: - - /articles/what-are-the-differences-between-svn-and-git/ + - /articles/what-are-the-differences-between-svn-and-git - /articles/what-are-the-differences-between-subversion-and-git - /github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git versions: diff --git a/content/github/site-policy-deprecated/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users.md b/content/github/site-policy-deprecated/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users.md index f137f73593..61c38e5025 100644 --- a/content/github/site-policy-deprecated/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users.md +++ b/content/github/site-policy-deprecated/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users.md @@ -2,8 +2,8 @@ title: Amendment to GitHub Terms of Service Applicable to U.S. Federal Government Users hidden: true redirect_from: - - /articles/amendment-to-github-terms-of-service-applicable-to-government-users/ - - /articles/proposed-amendment-to-github-terms-of-service-applicable-to-u-s-federal-government-users/ + - /articles/amendment-to-github-terms-of-service-applicable-to-government-users + - /articles/proposed-amendment-to-github-terms-of-service-applicable-to-u-s-federal-government-users - /articles/amendment-to-github-terms-of-service-applicable-to-u-s-federal-government-users - /articles/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users - /github/site-policy/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users diff --git a/content/github/site-policy-deprecated/github-connect-addendum-to-the-github-enterprise-license-agreement.md b/content/github/site-policy-deprecated/github-connect-addendum-to-the-github-enterprise-license-agreement.md index fb99993853..7ed623982b 100644 --- a/content/github/site-policy-deprecated/github-connect-addendum-to-the-github-enterprise-license-agreement.md +++ b/content/github/site-policy-deprecated/github-connect-addendum-to-the-github-enterprise-license-agreement.md @@ -2,7 +2,7 @@ title: GitHub Connect Addendum to the GitHub Enterprise License Agreement hidden: true redirect_from: - - /articles/github-com-connection-addendum-to-the-github-enterprise-license-agreement/ + - /articles/github-com-connection-addendum-to-the-github-enterprise-license-agreement - /articles/github-connect-addendum-to-the-github-enterprise-license-agreement - /github/site-policy/github-connect-addendum-to-the-github-enterprise-license-agreement versions: diff --git a/content/github/site-policy-deprecated/github-enterprise-service-level-agreement.md b/content/github/site-policy-deprecated/github-enterprise-service-level-agreement.md index b24607c3f7..4d21a34495 100644 --- a/content/github/site-policy-deprecated/github-enterprise-service-level-agreement.md +++ b/content/github/site-policy-deprecated/github-enterprise-service-level-agreement.md @@ -2,8 +2,8 @@ title: GitHub Enterprise Service Level Agreement hidden: true redirect_from: - - /github-enterprise-cloud-addendum/ - - /github-business-cloud-addendum/ + - /github-enterprise-cloud-addendum + - /github-business-cloud-addendum - /articles/github-enterprise-cloud-addendum - /github/site-policy/github-enterprise-service-level-agreement versions: diff --git a/content/github/site-policy-deprecated/github-enterprise-subscription-agreement.md b/content/github/site-policy-deprecated/github-enterprise-subscription-agreement.md index d1dc1778a4..b897e6d5cc 100644 --- a/content/github/site-policy-deprecated/github-enterprise-subscription-agreement.md +++ b/content/github/site-policy-deprecated/github-enterprise-subscription-agreement.md @@ -2,7 +2,7 @@ title: GitHub Enterprise Subscription Agreement hidden: true redirect_from: - - /articles/github-enterprise-agreement/ + - /articles/github-enterprise-agreement - /articles/github-enterprise-subscription-agreement - /github/site-policy/github-enterprise-subscription-agreement versions: diff --git a/content/github/site-policy-deprecated/github-supplemental-terms-for-microsoft-volume-licensing.md b/content/github/site-policy-deprecated/github-supplemental-terms-for-microsoft-volume-licensing.md index 4e1a8e18fc..8dc16e03df 100644 --- a/content/github/site-policy-deprecated/github-supplemental-terms-for-microsoft-volume-licensing.md +++ b/content/github/site-policy-deprecated/github-supplemental-terms-for-microsoft-volume-licensing.md @@ -2,7 +2,7 @@ title: GitHub Supplemental Terms for Microsoft Volume Licensing hidden: true redirect_from: - - /articles/GitHub-Supplemental-Terms-for-Microsoft-Volume-Licensing/ + - /articles/GitHub-Supplemental-Terms-for-Microsoft-Volume-Licensing - /articles/github-supplemental-terms-for-microsoft-volume-licensing - /github/site-policy/github-supplemental-terms-for-microsoft-volume-licensing versions: diff --git a/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md b/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md index e755a01593..3bfef628dd 100644 --- a/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md +++ b/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md @@ -1,8 +1,8 @@ --- title: Coordinated Disclosure of Security Vulnerabilities redirect_from: - - /responsible-disclosure/ - - /coordinated-disclosure/ + - /responsible-disclosure + - /coordinated-disclosure - /articles/responsible-disclosure-of-security-vulnerabilities - /site-policy/responsible-disclosure-of-security-vulnerabilities versions: diff --git a/content/github/site-policy/dmca-takedown-policy.md b/content/github/site-policy/dmca-takedown-policy.md index 815cec71ee..05d313d7f4 100644 --- a/content/github/site-policy/dmca-takedown-policy.md +++ b/content/github/site-policy/dmca-takedown-policy.md @@ -1,10 +1,10 @@ --- title: DMCA Takedown Policy redirect_from: - - /dmca/ - - /dmca-takedown/ - - /dmca-takedown-policy/ - - /articles/dmca-takedown/ + - /dmca + - /dmca-takedown + - /dmca-takedown-policy + - /articles/dmca-takedown - /articles/dmca-takedown-policy versions: fpt: '*' diff --git a/content/github/site-policy/github-community-guidelines.md b/content/github/site-policy/github-community-guidelines.md index f78689e059..7011d661da 100644 --- a/content/github/site-policy/github-community-guidelines.md +++ b/content/github/site-policy/github-community-guidelines.md @@ -1,7 +1,7 @@ --- title: GitHub Community Guidelines redirect_from: - - /community-guidelines/ + - /community-guidelines - /articles/github-community-guidelines versions: fpt: '*' diff --git a/content/github/site-policy/github-logo-policy.md b/content/github/site-policy/github-logo-policy.md index 879d210e4b..ec874245e8 100644 --- a/content/github/site-policy/github-logo-policy.md +++ b/content/github/site-policy/github-logo-policy.md @@ -1,8 +1,8 @@ --- title: GitHub Logo Policy redirect_from: - - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know/ - - /articles/using-an-octocat-to-link-to-github-or-your-github-profile/ + - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know + - /articles/using-an-octocat-to-link-to-github-or-your-github-profile - /articles/github-logo-policy versions: fpt: '*' diff --git a/content/github/site-policy/github-privacy-statement.md b/content/github/site-policy/github-privacy-statement.md index 089a151e42..a9ce688a7e 100644 --- a/content/github/site-policy/github-privacy-statement.md +++ b/content/github/site-policy/github-privacy-statement.md @@ -1,12 +1,12 @@ --- title: GitHub Privacy Statement redirect_from: - - /privacy/ - - /privacy-policy/ - - /privacy-statement/ - - /github-privacy-policy/ - - /articles/github-privacy-policy/ - - /articles/github-privacy-statement/ + - /privacy + - /privacy-policy + - /privacy-statement + - /github-privacy-policy + - /articles/github-privacy-policy + - /articles/github-privacy-statement versions: fpt: '*' topics: diff --git a/content/github/site-policy/github-subprocessors-and-cookies.md b/content/github/site-policy/github-subprocessors-and-cookies.md index c6dd63a7b5..03ca56894a 100644 --- a/content/github/site-policy/github-subprocessors-and-cookies.md +++ b/content/github/site-policy/github-subprocessors-and-cookies.md @@ -1,10 +1,10 @@ --- title: GitHub Subprocessors and Cookies redirect_from: - - /subprocessors/ - - /github-subprocessors/ - - /github-tracking/ - - /github-cookies/ + - /subprocessors + - /github-subprocessors + - /github-tracking + - /github-cookies - /articles/github-subprocessors-and-cookies versions: fpt: '*' diff --git a/content/github/site-policy/github-terms-of-service.md b/content/github/site-policy/github-terms-of-service.md index a52889b4c1..9ac616977a 100644 --- a/content/github/site-policy/github-terms-of-service.md +++ b/content/github/site-policy/github-terms-of-service.md @@ -1,10 +1,10 @@ --- title: GitHub Terms of Service redirect_from: - - /tos/ - - /terms/ - - /terms-of-service/ - - /github-terms-of-service-draft/ + - /tos + - /terms + - /terms-of-service + - /github-terms-of-service-draft - /articles/github-terms-of-service versions: fpt: '*' diff --git a/content/github/site-policy/github-username-policy.md b/content/github/site-policy/github-username-policy.md index 4f917f9815..84c19fe327 100644 --- a/content/github/site-policy/github-username-policy.md +++ b/content/github/site-policy/github-username-policy.md @@ -1,7 +1,7 @@ --- title: GitHub Username Policy redirect_from: - - /articles/name-squatting-policy/ + - /articles/name-squatting-policy - /articles/github-username-policy versions: fpt: '*' diff --git a/content/github/site-policy/global-privacy-practices.md b/content/github/site-policy/global-privacy-practices.md index f1e55504d6..4d12086d81 100644 --- a/content/github/site-policy/global-privacy-practices.md +++ b/content/github/site-policy/global-privacy-practices.md @@ -1,7 +1,7 @@ --- title: Global Privacy Practices redirect_from: - - /eu-safe-harbor/ + - /eu-safe-harbor - /articles/global-privacy-practices versions: fpt: '*' diff --git a/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md b/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md index 1f58da5fe2..e2dbb93740 100644 --- a/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md +++ b/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md @@ -1,8 +1,8 @@ --- title: Guide to Submitting a DMCA Counter Notice redirect_from: - - /dmca-counter-notice-how-to/ - - /articles/dmca-counter-notice-how-to/ + - /dmca-counter-notice-how-to + - /articles/dmca-counter-notice-how-to - /articles/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' diff --git a/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md b/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md index 1cba70d82c..deccf23500 100644 --- a/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md +++ b/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md @@ -1,8 +1,8 @@ --- title: Guide to Submitting a DMCA Takedown Notice redirect_from: - - /dmca-notice-how-to/ - - /articles/dmca-notice-how-to/ + - /dmca-notice-how-to + - /articles/dmca-notice-how-to - /articles/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' diff --git a/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md b/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md index 2a8907f654..d78d303584 100644 --- a/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md +++ b/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md @@ -1,7 +1,7 @@ --- title: Guidelines for Legal Requests of User Data redirect_from: - - /law-enforcement-guidelines/ + - /law-enforcement-guidelines - /articles/guidelines-for-legal-requests-of-user-data versions: fpt: '*' diff --git a/content/github/site-policy/index.md b/content/github/site-policy/index.md index abb63c7a33..1496ee8035 100644 --- a/content/github/site-policy/index.md +++ b/content/github/site-policy/index.md @@ -1,7 +1,7 @@ --- title: Site policy redirect_from: - - /categories/61/articles/ + - /categories/61/articles - /categories/site-policy versions: fpt: '*' diff --git a/content/github/working-with-github-support/github-enterprise-cloud-support.md b/content/github/working-with-github-support/github-enterprise-cloud-support.md index 7c198a59d3..972f708b78 100644 --- a/content/github/working-with-github-support/github-enterprise-cloud-support.md +++ b/content/github/working-with-github-support/github-enterprise-cloud-support.md @@ -1,8 +1,8 @@ --- title: GitHub Enterprise Cloud support redirect_from: - - /articles/business-plan-support/ - - /articles/github-business-cloud-support/ + - /articles/business-plan-support + - /articles/github-business-cloud-support - /articles/github-enterprise-cloud-support intro: '{% data variables.product.prodname_ghe_cloud %} includes a target eight-hour response time for priority support requests, Monday to Friday in your local time zone.' versions: diff --git a/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md b/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md index 15a2177662..d52fb36e48 100644 --- a/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md +++ b/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md @@ -3,9 +3,9 @@ title: Creating gists intro: 'You can create two kinds of gists: {% ifversion ghae %}internal{% else %}public{% endif %} and secret. Create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist if you''re ready to share your ideas with {% ifversion ghae %}enterprise members{% else %}the world{% endif %} or a secret gist if you''re not.' permissions: '{% data reusables.enterprise-accounts.emu-permission-gist %}' redirect_from: - - /articles/about-gists/ - - /articles/cannot-delete-an-anonymous-gist/ - - /articles/deleting-an-anonymous-gist/ + - /articles/about-gists + - /articles/cannot-delete-an-anonymous-gist + - /articles/deleting-an-anonymous-gist - /articles/creating-gists - /github/writing-on-github/creating-gists versions: diff --git a/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md b/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md index 2c4f0958a8..cbc1fe7c11 100644 --- a/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md +++ b/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md @@ -2,8 +2,8 @@ title: Editing and sharing content with gists intro: '' redirect_from: - - /categories/23/articles/ - - /categories/gists/ + - /categories/23/articles + - /categories/gists - /articles/editing-and-sharing-content-with-gists versions: fpt: '*' diff --git a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md index 2acde49fb3..568196ac4e 100644 --- a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md +++ b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md @@ -1,8 +1,8 @@ --- title: Getting started with writing and formatting on GitHub redirect_from: - - /articles/markdown-basics/ - - /articles/things-you-can-do-in-a-text-area-on-github/ + - /articles/markdown-basics + - /articles/things-you-can-do-in-a-text-area-on-github - /articles/getting-started-with-writing-and-formatting-on-github intro: 'You can use simple features to format your comments and interact with others in issues, pull requests, and wikis on GitHub.' versions: diff --git a/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md index 2464279e9e..5f8e3d33ce 100644 --- a/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -3,7 +3,7 @@ title: Attaching files intro: You can convey information by attaching a variety of file types to your issues and pull requests. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/file-attachments-on-issues-and-pull-requests - - /articles/issue-attachments/ + - /articles/issue-attachments - /articles/file-attachments-on-issues-and-pull-requests - /github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests versions: diff --git a/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md b/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md index 6962e12ae7..45ee882eba 100644 --- a/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md +++ b/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md @@ -2,7 +2,7 @@ title: Editing a saved reply intro: You can edit the title and body of a saved reply. redirect_from: - - /articles/changing-a-saved-reply/ + - /articles/changing-a-saved-reply - /articles/editing-a-saved-reply - /github/writing-on-github/editing-a-saved-reply versions: diff --git a/content/graphql/reference/mutations.md b/content/graphql/reference/mutations.md index 83e7d46707..73f190ae96 100644 --- a/content/graphql/reference/mutations.md +++ b/content/graphql/reference/mutations.md @@ -18,6 +18,5 @@ Every GraphQL schema has a root type for both queries and mutations. The [mutati For more information, see "[About mutations](/graphql/guides/forming-calls-with-graphql#about-mutations)." -{% for item in graphql.schemaForCurrentVersion.mutations %} - {% include graphql-mutation %} -{% endfor %} + + diff --git a/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md b/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md index a8af117ca4..d5073f08ca 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md +++ b/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md @@ -14,7 +14,7 @@ topics: - Teams --- -{% data reusables.organizations.about-organizations %} +{% data reusables.organizations.about-organizations %} For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." {% data reusables.organizations.organizations_include %} diff --git a/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md b/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md index e6ffdbf9b4..1301ef95bc 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md +++ b/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md @@ -2,7 +2,7 @@ title: About your organization’s news feed intro: You can use your organization's news feed to keep up with recent activity on repositories owned by that organization. redirect_from: - - /articles/news-feed/ + - /articles/news-feed - /articles/about-your-organization-s-news-feed - /articles/about-your-organizations-news-feed - /github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed diff --git a/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md b/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md index 4b89a45f7b..373c0c390d 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md +++ b/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md @@ -1,11 +1,11 @@ --- title: Accessing your organization's settings redirect_from: - - /articles/who-can-access-organization-billing-information-and-account-settings/ - - /articles/managing-the-organization-s-settings/ - - /articles/who-can-see-billing-information-account-settings/ - - /articles/who-can-see-billing-information-and-access-account-settings/ - - /articles/managing-an-organization-s-settings/ + - /articles/who-can-access-organization-billing-information-and-account-settings + - /articles/managing-the-organization-s-settings + - /articles/who-can-see-billing-information-account-settings + - /articles/who-can-see-billing-information-and-access-account-settings + - /articles/managing-an-organization-s-settings - /articles/accessing-your-organization-s-settings - /articles/accessing-your-organizations-settings - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings diff --git a/content/organizations/collaborating-with-groups-in-organizations/index.md b/content/organizations/collaborating-with-groups-in-organizations/index.md index 07f25f15ef..bd2e17c6b1 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/index.md +++ b/content/organizations/collaborating-with-groups-in-organizations/index.md @@ -2,7 +2,7 @@ title: Collaborating with groups in organizations intro: Groups of people can collaborate across many projects at the same time in organization accounts. redirect_from: - - /articles/creating-a-new-organization-account/ + - /articles/creating-a-new-organization-account - /articles/collaborating-with-groups-in-organizations - /github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations versions: diff --git a/content/organizations/index.md b/content/organizations/index.md index f212c92ae2..aebcbe659d 100644 --- a/content/organizations/index.md +++ b/content/organizations/index.md @@ -3,7 +3,7 @@ title: Organizations and teams shortTitle: Organizations intro: Collaborate across many projects while managing access to projects and data and customizing settings for your organization. redirect_from: - - /articles/about-improved-organization-permissions/ + - /articles/about-improved-organization-permissions - /categories/setting-up-and-managing-organizations-and-teams - /github/setting-up-and-managing-organizations-and-teams versions: diff --git a/content/organizations/keeping-your-organization-secure/index.md b/content/organizations/keeping-your-organization-secure/index.md index 78b47fb894..01d2dd4043 100644 --- a/content/organizations/keeping-your-organization-secure/index.md +++ b/content/organizations/keeping-your-organization-secure/index.md @@ -2,7 +2,7 @@ title: Keeping your organization secure intro: 'Organization owners have several features to help them keep their projects and data secure. If you''re the owner of an organization, you should regularly review your organization''s audit log{% ifversion not ghae %}, member 2FA status,{% endif %} and application settings to ensure that no unauthorized or malicious activity has occurred.' redirect_from: - - /articles/preventing-unauthorized-access-to-organization-information/ + - /articles/preventing-unauthorized-access-to-organization-information - /articles/keeping-your-organization-secure - /github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure versions: diff --git a/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md b/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md index 65657e2c0a..609f0b67d1 100644 --- a/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md @@ -4,7 +4,7 @@ intro: 'To prevent organization information from leaking into personal email acc product: '{% data reusables.gated-features.restrict-email-domain %}' permissions: Organization owners can restrict email notifications for an organization. redirect_from: - - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain/ + - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain - /articles/restricting-email-notifications-to-an-approved-domain - /github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain - /organizations/keeping-your-organization-secure/restricting-email-notifications-to-an-approved-domain diff --git a/content/organizations/managing-access-to-your-organizations-repositories/index.md b/content/organizations/managing-access-to-your-organizations-repositories/index.md index f2fb7816a9..94a30b7368 100644 --- a/content/organizations/managing-access-to-your-organizations-repositories/index.md +++ b/content/organizations/managing-access-to-your-organizations-repositories/index.md @@ -2,7 +2,7 @@ title: Managing access to your organization's repositories intro: Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access. redirect_from: - - /articles/permission-levels-for-an-organization-repository/ + - /articles/permission-levels-for-an-organization-repository - /articles/managing-access-to-your-organization-s-repositories - /articles/managing-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories diff --git a/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md b/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md index ae55c3dd9a..4e2c599dd2 100644 --- a/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md +++ b/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md @@ -2,7 +2,7 @@ title: Managing an individual's access to an organization repository intro: You can manage a person's access to a repository owned by your organization. redirect_from: - - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program/ + - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program - /articles/managing-an-individual-s-access-to-an-organization-repository - /articles/managing-an-individuals-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository diff --git a/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md b/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md index ed598dccd4..51d2c0a079 100644 --- a/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md +++ b/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md @@ -2,7 +2,7 @@ title: Managing team access to an organization repository intro: 'You can give a team access to a repository, remove a team''s access to a repository, or change a team''s permission level for a repository.' redirect_from: - - /articles/managing-team-access-to-an-organization-repository-early-access-program/ + - /articles/managing-team-access-to-an-organization-repository-early-access-program - /articles/managing-team-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository versions: diff --git a/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md b/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md index 87dda915f4..7a0e4bbd0d 100644 --- a/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md +++ b/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md @@ -3,7 +3,7 @@ title: Repository roles for an organization intro: 'You can customize access to each repository in your organization by assigning granular roles, giving people access to the features and tasks they need.' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/repository-permission-levels-for-an-organization-early-access-program/ + - /articles/repository-permission-levels-for-an-organization-early-access-program - /articles/repository-permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization - /organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization diff --git a/content/organizations/managing-git-access-to-your-organizations-repositories/index.md b/content/organizations/managing-git-access-to-your-organizations-repositories/index.md index 0148d99680..ddff241ba3 100644 --- a/content/organizations/managing-git-access-to-your-organizations-repositories/index.md +++ b/content/organizations/managing-git-access-to-your-organizations-repositories/index.md @@ -3,7 +3,7 @@ title: Managing Git access to your organization's repositories intro: You can add an SSH certificate authority (CA) to your organization and allow members to access the organization's repositories over Git using keys signed by the SSH CA. product: '{% data reusables.gated-features.ssh-certificate-authorities %}' redirect_from: - - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities/ + - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities - /articles/managing-git-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories versions: diff --git a/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md b/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md index c08a2a1e4e..fcbc84c3ef 100644 --- a/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md +++ b/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md @@ -2,7 +2,7 @@ title: Can I create accounts for people in my organization? intro: 'While you can add users to an organization you''ve created, you can''t create personal user accounts on behalf of another person.' redirect_from: - - /articles/can-i-create-accounts-for-those-in-my-organization/ + - /articles/can-i-create-accounts-for-those-in-my-organization - /articles/can-i-create-accounts-for-people-in-my-organization - /github/setting-up-and-managing-organizations-and-teams/can-i-create-accounts-for-people-in-my-organization versions: diff --git a/content/organizations/managing-membership-in-your-organization/index.md b/content/organizations/managing-membership-in-your-organization/index.md index 344036e617..1216f530f7 100644 --- a/content/organizations/managing-membership-in-your-organization/index.md +++ b/content/organizations/managing-membership-in-your-organization/index.md @@ -2,7 +2,7 @@ title: Managing membership in your organization intro: 'After you create your organization, you can {% ifversion fpt %}invite people to become{% else %}add people as{% endif %} members of the organization. You can also remove members of the organization, and reinstate former members.' redirect_from: - - /articles/removing-a-user-from-your-organization/ + - /articles/removing-a-user-from-your-organization - /articles/managing-membership-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization versions: diff --git a/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index fac88da5ef..31b090c1f3 100644 --- a/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -3,7 +3,7 @@ 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/ + - /articles/adding-or-inviting-members-to-a-team-in-an-organization - /articles/inviting-users-to-join-your-organization - /github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization versions: diff --git a/content/organizations/managing-organization-settings/renaming-an-organization.md b/content/organizations/managing-organization-settings/renaming-an-organization.md index 9fd78a8735..30bd57d2b3 100644 --- a/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -2,7 +2,7 @@ title: Renaming an organization intro: 'If your project or company has changed names, you can update the name of your organization to match.' redirect_from: - - /articles/what-happens-when-i-change-my-organization-s-name/ + - /articles/what-happens-when-i-change-my-organization-s-name - /articles/renaming-an-organization - /github/setting-up-and-managing-organizations-and-teams/renaming-an-organization versions: diff --git a/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md b/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md index 7397e09f54..44b80ce85d 100644 --- a/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md +++ b/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md @@ -3,7 +3,7 @@ title: Setting permissions for adding outside collaborators intro: 'To protect your organization''s data and the number of paid licenses used in your organization, you can allow only owners to invite outside collaborators to organization repositories.' product: '{% data reusables.gated-features.restrict-add-collaborator %}' redirect_from: - - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories/ + - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories - /articles/setting-permissions-for-adding-outside-collaborators - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators versions: diff --git a/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md b/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md index 2214a36df1..5309271e6e 100644 --- a/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md +++ b/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md @@ -2,7 +2,7 @@ title: Setting permissions for deleting or transferring repositories intro: 'You can allow organization members with admin permissions to a repository to delete or transfer the repository, or limit the ability to delete or transfer repositories to organization owners only.' redirect_from: - - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization/ + - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization - /articles/setting-permissions-for-deleting-or-transferring-repositories - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories versions: diff --git a/content/organizations/managing-organization-settings/transferring-organization-ownership.md b/content/organizations/managing-organization-settings/transferring-organization-ownership.md index e0f25c0485..da79cb679b 100644 --- a/content/organizations/managing-organization-settings/transferring-organization-ownership.md +++ b/content/organizations/managing-organization-settings/transferring-organization-ownership.md @@ -2,7 +2,7 @@ title: Transferring organization ownership intro: 'To make someone else the owner of an organization account, you must add a new owner{% ifversion fpt or ghec %}, ensure that the billing information is updated,{% endif %} and then remove yourself from the account.' redirect_from: - - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else/ + - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else - /articles/transferring-organization-ownership - /github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership versions: diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 03a6516b82..f7caf78b8b 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -90,6 +90,8 @@ You can only choose an additional permission if it's not already included in the - **View {% data variables.product.prodname_code_scanning %} results**: Ability to view {% data variables.product.prodname_code_scanning %} alerts. - **Dismiss or reopen {% data variables.product.prodname_code_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_code_scanning %} alerts. - **Delete {% data variables.product.prodname_code_scanning %} results**: Ability to delete {% data variables.product.prodname_code_scanning %} alerts. +- **View {% data variables.product.prodname_secret_scanning %} results**: Ability to view {% data variables.product.prodname_secret_scanning %} alerts. +- **Dismiss or reopen {% data variables.product.prodname_secret_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_secret_scanning %} alerts. ## Precedence for different levels of access diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 58b849aac4..a62d2b892d 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -2,7 +2,7 @@ title: Roles in an organization intro: Organization owners can assign roles to individuals and teams giving them different sets of permissions in the organization. redirect_from: - - /articles/permission-levels-for-an-organization-early-access-program/ + - /articles/permission-levels-for-an-organization-early-access-program - /articles/permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization - /organizations/managing-peoples-access-to-your-organization-with-roles/permission-levels-for-an-organization diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md index 4a825c5770..668ba3b7bc 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md @@ -2,7 +2,7 @@ title: Managing SAML single sign-on for your organization intro: Organization owners can manage organization members' identities and access to the organization with SAML single sign-on (SSO). redirect_from: - - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on/ + - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on - /articles/managing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: diff --git a/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md b/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md index 861713d54e..02f92675b7 100644 --- a/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md +++ b/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md @@ -2,7 +2,7 @@ title: Converting an admin team to improved organization permissions intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions - /articles/converting-an-admin-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions versions: diff --git a/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md b/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md index e6a0aebbe2..2d483eed91 100644 --- a/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md +++ b/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md @@ -2,8 +2,8 @@ title: Converting an Owners team to improved organization permissions intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. The "Owner" is now an administrative role given to individual members of your organization. Members of your legacy Owners team are automatically given owner privileges.' redirect_from: - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program/ - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions - /articles/converting-an-owners-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions versions: diff --git a/content/organizations/migrating-to-improved-organization-permissions/index.md b/content/organizations/migrating-to-improved-organization-permissions/index.md index 6621d5351c..510cc6c4d7 100644 --- a/content/organizations/migrating-to-improved-organization-permissions/index.md +++ b/content/organizations/migrating-to-improved-organization-permissions/index.md @@ -2,9 +2,9 @@ title: Migrating to improved organization permissions intro: 'If your organization was created after September 2015, your organization includes improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved organization permissions model.' redirect_from: - - /articles/improved-organization-permissions/ - - /articles/github-direct-organization-membership-pre-release-guide/ - - /articles/migrating-your-organization-to-improved-organization-permissions/ + - /articles/improved-organization-permissions + - /articles/github-direct-organization-membership-pre-release-guide + - /articles/migrating-your-organization-to-improved-organization-permissions - /articles/migrating-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions versions: diff --git a/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md b/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md index b25dc825a5..e5965cfefd 100644 --- a/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md +++ b/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md @@ -2,7 +2,7 @@ title: Migrating admin teams to improved organization permissions intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions/ + - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions - /articles/migrating-admin-teams-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions versions: diff --git a/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md b/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md index 7e98953052..a6dac889cb 100644 --- a/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md +++ b/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md @@ -2,7 +2,7 @@ title: Adding organization members to a team intro: 'People with owner or team maintainer permissions can add organization members to teams. People with owner permissions can also {% ifversion fpt or ghec %}invite non-members to join{% else %}add non-members to{% endif %} a team and the organization.' redirect_from: - - /articles/adding-organization-members-to-a-team-early-access-program/ + - /articles/adding-organization-members-to-a-team-early-access-program - /articles/adding-organization-members-to-a-team - /github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team versions: diff --git a/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md b/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md index 4d5df1c65f..457c1d5b7f 100644 --- a/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md +++ b/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md @@ -2,7 +2,7 @@ title: Assigning the team maintainer role to a team member intro: 'You can give a team member the ability to manage team membership and settings by assigning the team maintainer role.' redirect_from: - - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program/ + - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program - /articles/giving-team-maintainer-permissions-to-an-organization-member - /github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member - /organizations/managing-peoples-access-to-your-organization-with-roles/giving-team-maintainer-permissions-to-an-organization-member diff --git a/content/organizations/organizing-members-into-teams/creating-a-team.md b/content/organizations/organizing-members-into-teams/creating-a-team.md index 9224f9ceec..7422a82371 100644 --- a/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -2,7 +2,7 @@ title: Creating a team intro: You can create independent or nested teams to manage repository permissions and mentions for groups of people. redirect_from: - - /articles/creating-a-team-early-access-program/ + - /articles/creating-a-team-early-access-program - /articles/creating-a-team - /github/setting-up-and-managing-organizations-and-teams/creating-a-team versions: diff --git a/content/organizations/organizing-members-into-teams/index.md b/content/organizations/organizing-members-into-teams/index.md index e3c495fc00..ebe04edd68 100644 --- a/content/organizations/organizing-members-into-teams/index.md +++ b/content/organizations/organizing-members-into-teams/index.md @@ -2,14 +2,14 @@ title: Organizing members into teams intro: You can group organization members into teams that reflect your company or group's structure with cascading access permissions and mentions. redirect_from: - - /articles/setting-up-teams-improved-organization-permissions/ - - /articles/setting-up-teams-for-accessing-organization-repositories/ - - /articles/creating-teams/ - - /articles/adding-people-to-teams-in-an-organization/ - - /articles/removing-a-member-from-a-team-in-your-organization/ - - /articles/setting-up-teams/ - - /articles/maintaining-teams-improved-organization-permissions/ - - /articles/maintaining-teams/ + - /articles/setting-up-teams-improved-organization-permissions + - /articles/setting-up-teams-for-accessing-organization-repositories + - /articles/creating-teams + - /articles/adding-people-to-teams-in-an-organization + - /articles/removing-a-member-from-a-team-in-your-organization + - /articles/setting-up-teams + - /articles/maintaining-teams-improved-organization-permissions + - /articles/maintaining-teams - /articles/organizing-members-into-teams - /github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams versions: diff --git a/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md b/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md index 2c74627c10..6386e39cc6 100644 --- a/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md +++ b/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md @@ -2,7 +2,7 @@ title: Moving a team in your organization’s hierarchy intro: 'Team maintainers and organization owners can nest a team under a parent team, or change or remove a nested team''s parent.' redirect_from: - - /articles/changing-a-team-s-parent/ + - /articles/changing-a-team-s-parent - /articles/moving-a-team-in-your-organization-s-hierarchy - /articles/moving-a-team-in-your-organizations-hierarchy - /github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy diff --git a/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md b/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md index c893ca2f7e..aba9635cbe 100644 --- a/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md +++ b/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md @@ -2,7 +2,7 @@ title: Removing organization members from a team intro: 'People with *owner* or *team maintainer* permissions can remove team members from a team. This may be necessary if a person no longer needs access to a repository the team grants, or if a person is no longer focused on a team''s projects.' redirect_from: - - /articles/removing-organization-members-from-a-team-early-access-program/ + - /articles/removing-organization-members-from-a-team-early-access-program - /articles/removing-organization-members-from-a-team - /github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team versions: diff --git a/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md b/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md index 624adb2607..9e952acc4d 100644 --- a/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md +++ b/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md @@ -2,7 +2,7 @@ title: About OAuth App access restrictions intro: 'Organizations can choose which {% data variables.product.prodname_oauth_apps %} have access to their repositories and other resources by enabling {% data variables.product.prodname_oauth_app %} access restrictions.' redirect_from: - - /articles/about-third-party-application-restrictions/ + - /articles/about-third-party-application-restrictions - /articles/about-oauth-app-access-restrictions - /github/setting-up-and-managing-organizations-and-teams/about-oauth-app-access-restrictions versions: diff --git a/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md b/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md index c3e35bfd0d..c945c1acab 100644 --- a/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md +++ b/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md @@ -2,7 +2,7 @@ title: Approving OAuth Apps for your organization intro: 'When an organization member requests {% data variables.product.prodname_oauth_app %} access to organization resources, organization owners can approve or deny the request.' redirect_from: - - /articles/approving-third-party-applications-for-your-organization/ + - /articles/approving-third-party-applications-for-your-organization - /articles/approving-oauth-apps-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/approving-oauth-apps-for-your-organization versions: diff --git a/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md b/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md index ec74c0bbb4..da3f557b72 100644 --- a/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md +++ b/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md @@ -2,7 +2,7 @@ title: Denying access to a previously approved OAuth App for your organization intro: 'If an organization no longer requires a previously authorized {% data variables.product.prodname_oauth_app %}, owners can remove the application''s access to the organization''s resources.' redirect_from: - - /articles/denying-access-to-a-previously-approved-application-for-your-organization/ + - /articles/denying-access-to-a-previously-approved-application-for-your-organization - /articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/denying-access-to-a-previously-approved-oauth-app-for-your-organization versions: diff --git a/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md b/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md index 73e03b6c81..4931bc44cc 100644 --- a/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md +++ b/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md @@ -2,7 +2,7 @@ title: Disabling OAuth App access restrictions for your organization intro: 'Organization owners can disable restrictions on the {% data variables.product.prodname_oauth_apps %} that have access to the organization''s resources.' redirect_from: - - /articles/disabling-third-party-application-restrictions-for-your-organization/ + - /articles/disabling-third-party-application-restrictions-for-your-organization - /articles/disabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/disabling-oauth-app-access-restrictions-for-your-organization versions: diff --git a/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md b/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md index 41b188b041..5ad4a078f8 100644 --- a/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md +++ b/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md @@ -2,7 +2,7 @@ title: Enabling OAuth App access restrictions for your organization intro: 'Organization owners can enable {% data variables.product.prodname_oauth_app %} access restrictions to prevent untrusted apps from accessing the organization''s resources while allowing organization members to use {% data variables.product.prodname_oauth_apps %} for their personal accounts.' redirect_from: - - /articles/enabling-third-party-application-restrictions-for-your-organization/ + - /articles/enabling-third-party-application-restrictions-for-your-organization - /articles/enabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-oauth-app-access-restrictions-for-your-organization versions: diff --git a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md index 1326fe9a6b..8b423a877c 100644 --- a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md +++ b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md @@ -2,9 +2,9 @@ title: About custom domains and GitHub Pages intro: '{% data variables.product.prodname_pages %} supports using custom domains, or changing the root of your site''s URL from the default, like `octocat.github.io`, to any domain you own.' redirect_from: - - /articles/about-custom-domains-for-github-pages-sites/ - - /articles/about-supported-custom-domains/ - - /articles/custom-domain-redirects-for-your-github-pages-site/ + - /articles/about-custom-domains-for-github-pages-sites + - /articles/about-supported-custom-domains + - /articles/custom-domain-redirects-for-your-github-pages-site - /articles/about-custom-domains-and-github-pages - /github/working-with-github-pages/about-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -58,7 +58,7 @@ An apex domain is configured with an `A`, `ALIAS`, or `ANAME` record through you ## Securing the custom domain for your {% data variables.product.prodname_pages %} site -{% data reusables.pages.secure-your-domain %} 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)" and "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." +{% data reusables.pages.secure-your-domain %} 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)" and "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." There are a couple of reasons your site might be automatically disabled. diff --git a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md index c51ebbe4fe..df8f8b376f 100644 --- a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md +++ b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md @@ -2,13 +2,13 @@ title: Configuring a custom domain for your GitHub Pages site intro: 'You can customize the domain name of your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/tips-for-configuring-an-a-record-with-your-dns-provider/ - - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/ - - /articles/configuring-an-a-record-with-your-dns-provider/ - - /articles/using-a-custom-domain-with-github-pages/ - - /articles/tips-for-configuring-a-cname-record/ - - /articles/setting-up-a-custom-domain-with-pages/ - - /articles/setting-up-a-custom-domain-with-github-pages/ + - /articles/tips-for-configuring-an-a-record-with-your-dns-provider + - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site + - /articles/configuring-an-a-record-with-your-dns-provider + - /articles/using-a-custom-domain-with-github-pages + - /articles/tips-for-configuring-a-cname-record + - /articles/setting-up-a-custom-domain-with-pages + - /articles/setting-up-a-custom-domain-with-github-pages - /articles/configuring-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/configuring-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -24,4 +24,3 @@ children: - /troubleshooting-custom-domains-and-github-pages shortTitle: Configure a custom domain --- - diff --git a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md index e656dccca5..025d260cef 100644 --- a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md +++ b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md @@ -2,13 +2,13 @@ title: Managing a custom domain for your GitHub Pages site intro: 'You can set up or update certain DNS records and your repository settings to point the default domain for your {% data variables.product.prodname_pages %} site to a custom domain.' redirect_from: - - /articles/quick-start-setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain/ - - /articles/setting-up-a-www-subdomain/ - - /articles/setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain-and-www-subdomain/ - - /articles/adding-a-cname-file-to-your-repository/ - - /articles/setting-up-your-pages-site-repository/ + - /articles/quick-start-setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain + - /articles/setting-up-a-www-subdomain + - /articles/setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain-and-www-subdomain + - /articles/adding-a-cname-file-to-your-repository + - /articles/setting-up-your-pages-site-repository - /articles/managing-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -139,7 +139,7 @@ After you configure the apex domain, you must configure a CNAME record with your ## Securing your custom domain -{% data reusables.pages.secure-your-domain %} 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)." +{% data reusables.pages.secure-your-domain %} 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)." ## Further reading diff --git a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md index ef31967c41..892a5af812 100644 --- a/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md +++ b/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md @@ -2,9 +2,9 @@ title: Troubleshooting custom domains and GitHub Pages intro: 'You can check for common errors to resolve issues with custom domains or HTTPS for your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/my-custom-domain-isn-t-working/ - - /articles/custom-domain-isn-t-working/ - - /articles/troubleshooting-custom-domains/ + - /articles/my-custom-domain-isn-t-working + - /articles/custom-domain-isn-t-working + - /articles/troubleshooting-custom-domains - /articles/troubleshooting-custom-domains-and-github-pages - /github/working-with-github-pages/troubleshooting-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' diff --git a/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md b/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md index 3ada8ce82d..1ebf5d17a3 100644 --- a/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md +++ b/content/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site.md @@ -38,3 +38,17 @@ Before you configure a publishing source, make sure the branch you want to use a {% data reusables.pages.admin-must-push %} If you choose the `docs` folder on any branch as your publishing source, then later remove the `/docs` folder from that branch in your repository, your site won't build and you'll get a page build error message for a missing `/docs` folder. For more information, see "[Troubleshooting Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites#missing-docs-folder)." + +{% ifversion fpt %} + +Your {% data variables.product.prodname_pages %} site will always be deployed with a {% data variables.product.prodname_actions %} workflow run, even if you've configured your {% data variables.product.prodname_pages %} site to be built using a different CI tool. Most external CI workflows "deploy" to GitHub Pages by committing the build output to the `gh-pages` branch of the repository, and typically include a `.nojekyll` file. When this happens, the {% data variables.product.prodname_actions %} worfklow will detect the state that the branch does not need a build step, and will execute only the steps necessary to deploy the site to {% data variables.product.prodname_pages %} servers. + +To find potential errors with either the build or deployment, you can check the workflow run for your {% data variables.product.prodname_pages %} site by reviewing your repository's workflow runs. For more information, see "[Viewing workflow run history](/actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history)." For more information about how to re-run the workflow in case of an error, see "[Re-running workflows and jobs](/actions/managing-workflow-runs/re-running-workflows-and-jobs)." + +{% note %} + +{% data reusables.pages.pages-builds-with-github-actions-public-beta %} + +{% endnote %} + +{% endif %} diff --git a/content/pages/getting-started-with-github-pages/creating-a-github-pages-site.md b/content/pages/getting-started-with-github-pages/creating-a-github-pages-site.md index 8e9752d823..4d3d9100e9 100644 --- a/content/pages/getting-started-with-github-pages/creating-a-github-pages-site.md +++ b/content/pages/getting-started-with-github-pages/creating-a-github-pages-site.md @@ -53,6 +53,7 @@ shortTitle: Create a GitHub Pages site {% data reusables.pages.sidebar-pages %}{% ifversion fpt or ghec %} {% data reusables.pages.choose-visibility %}{% endif %} {% data reusables.pages.visit-site %} +{% data reusables.pages.check-workflow-run %} {% data reusables.pages.admin-must-push %} diff --git a/content/pages/index.md b/content/pages/index.md index a07911e622..ac99f2500e 100644 --- a/content/pages/index.md +++ b/content/pages/index.md @@ -3,12 +3,11 @@ title: GitHub Pages Documentation shortTitle: GitHub Pages intro: 'You can create a website directly from a repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}.' redirect_from: - - /categories/20/articles/ - - /categories/95/articles/ - - /categories/github-pages-features/ - - /pages/ - - /categories/96/articles/ - - /categories/github-pages-troubleshooting/ + - /categories/20/articles + - /categories/95/articles + - /categories/github-pages-features + - /categories/96/articles + - /categories/github-pages-troubleshooting - /categories/working-with-github-pages - /github/working-with-github-pages product: '{% data reusables.gated-features.pages %}' @@ -25,4 +24,3 @@ children: - /setting-up-a-github-pages-site-with-jekyll - /configuring-a-custom-domain-for-your-github-pages-site --- - diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md index 0a8646cfee..c5b53d6108 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md @@ -2,8 +2,8 @@ title: About Jekyll build errors for GitHub Pages sites intro: 'If Jekyll encounters an error building your {% data variables.product.prodname_pages %} site locally or on {% data variables.product.product_name %}, you''ll receive an error message with more information.' redirect_from: - - /articles/viewing-jekyll-build-error-messages/ - - /articles/generic-jekyll-build-failures/ + - /articles/viewing-jekyll-build-error-messages + - /articles/generic-jekyll-build-failures - /articles/about-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' @@ -36,15 +36,34 @@ If Jekyll does attempt to build your site and encounters an error, you will rece For more information about troubleshooting build errors, see "[Troubleshooting Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites)." -## Viewing Jekyll build error messages +{% ifversion fpt %} +## Viewing Jekyll build error messages with {% data variables.product.prodname_actions %} + +By default, your {% data variables.product.prodname_pages %} site is built and deployed with a {% data variables.product.prodname_actions %} workflow run unless you've configured your {% data variables.product.prodname_pages %} site to use a different CI tool. To find potential build errors, you can check the workflow run for your {% data variables.product.prodname_pages %} site by reviewing your repository's workflow runs. For more information, see "[Viewing workflow run history](/actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history)." For more information about how to re-run the workflow in case of an error, see "[Re-running workflows and jobs](/actions/managing-workflow-runs/re-running-workflows-and-jobs)." +{% note %} + +{% data reusables.pages.pages-builds-with-github-actions-public-beta %} + +{% endnote %} +{% endif %} + +## Viewing your repository's build failures on {% data variables.product.product_name %} + +You can see build failures (but not build warnings) for your site on {% data variables.product.product_name %} in the **Settings** tab of your site's repository. + +## Viewing Jekyll build error messages locally We recommend testing your site locally, which allows you to see build error messages on the command line, and addressing any build failures before pushing changes to {% data variables.product.product_name %}. For more information, see "[Testing your {% data variables.product.prodname_pages %} site locally with Jekyll](/articles/testing-your-github-pages-site-locally-with-jekyll)." +## Viewing Jekyll build error messages in your pull request + When you create a pull request to update your publishing source on {% data variables.product.product_name %}, you can see build error messages on the **Checks** tab of the pull request. For more information, see "[About status checks](/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)." +## Viewing Jekyll build errors by email + When you push changes to your publishing source on {% data variables.product.product_name %}, {% data variables.product.prodname_pages %} will attempt to build your site. If the build fails, you'll receive an email at your primary email address. You'll also receive emails for build warnings. {% data reusables.pages.build-failure-email-server %} -You can see build failures (but not build warnings) for your site on {% data variables.product.product_name %} in the **Settings** tab of your site's repository. +## Viewing Jekyll build error messages in your pull request with a third-party CI service You can configure a third-party service, such as [Travis CI](https://travis-ci.org/), to display error messages after each commit. diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md index eee0a3b371..e93f69bfd4 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md @@ -2,8 +2,8 @@ title: Adding a theme to your GitHub Pages site using Jekyll intro: You can personalize your Jekyll site by adding and customizing a theme. redirect_from: - - /articles/customizing-css-and-html-in-your-jekyll-theme/ - - /articles/adding-a-jekyll-theme-to-your-github-pages-site/ + - /articles/customizing-css-and-html-in-your-jekyll-theme + - /articles/adding-a-jekyll-theme-to-your-github-pages-site - /articles/adding-a-theme-to-your-github-pages-site-using-jekyll - /github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -27,7 +27,7 @@ People with write permissions for a repository can add a theme to a {% data vari {% data reusables.pages.navigate-publishing-source %} 2. Navigate to *_config.yml*. {% data reusables.repositories.edit-file %} -4. Add a new line to the file for the theme name. +4. Add a new line to the file for the theme name. - To use a supported theme, type `theme: THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the README of the theme's repository. For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. ![Supported theme in config file](/assets/images/help/pages/add-theme-to-config-file.png) - To use any other Jekyll theme hosted on {% data variables.product.prodname_dotcom %}, type `remote_theme: THEME-NAME`, replacing THEME-NAME with the name of the theme as shown in the README of the theme's repository. diff --git a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md index a39718836b..43c4262281 100644 --- a/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md +++ b/content/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll.md @@ -119,6 +119,7 @@ $ git remote add origin https://HOSTNAME/USER/REPOSITORY 3.2 or ghae %} +{% ifversion fpt or ghec or ghes > 3.3 or ghae %} You can change the format of the diff view in this tab by clicking {% octicon "gear" aria-label="The Settings gear" %} and choosing the unified or split view. The choice you make will apply when you view the diff for other pull requests. diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md index 5a79c30660..19207dd1b4 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md @@ -2,9 +2,9 @@ title: Working with forks intro: 'Forks are often used in open source development on {% data variables.product.product_name %}.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/working-with-forks/ + - /github/collaborating-with-issues-and-pull-requests/working-with-forks - /articles/working-with-forks - - /github/collaborating-with-pull-requests/working-with-forks/ + - /github/collaborating-with-pull-requests/working-with-forks versions: fpt: '*' ghes: '*' diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md index 9d9b203f5a..2a067051d5 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md @@ -3,7 +3,7 @@ title: What happens to forks when a repository is deleted or changes visibility? intro: Deleting your repository or changing its visibility affects that repository's forks. redirect_from: - /github/collaborating-with-issues-and-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - - /articles/changing-the-visibility-of-a-network/ + - /articles/changing-the-visibility-of-a-network - /articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility diff --git a/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md b/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md index 59f01c0302..5877608cd0 100644 --- a/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md +++ b/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md @@ -1,7 +1,7 @@ --- title: Changing a commit message redirect_from: - - /articles/can-i-delete-a-commit-message/ + - /articles/can-i-delete-a-commit-message - /articles/changing-a-commit-message - /github/committing-changes-to-your-project/changing-a-commit-message - /github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message diff --git a/content/pull-requests/committing-changes-to-your-project/index.md b/content/pull-requests/committing-changes-to-your-project/index.md index 0d0ffbebdd..9206e8d17d 100644 --- a/content/pull-requests/committing-changes-to-your-project/index.md +++ b/content/pull-requests/committing-changes-to-your-project/index.md @@ -2,8 +2,8 @@ title: Committing changes to your project intro: You can manage code changes in a repository by grouping work into commits. redirect_from: - - /categories/21/articles/ - - /categories/commits/ + - /categories/21/articles + - /categories/commits - /categories/committing-changes-to-your-project - /github/committing-changes-to-your-project versions: diff --git a/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md b/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md index 5bc13e0a96..e63f9863ff 100644 --- a/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md +++ b/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md @@ -1,7 +1,7 @@ --- title: Why are my commits linked to the wrong user? redirect_from: - - /articles/how-do-i-get-my-commits-to-link-to-my-github-account/ + - /articles/how-do-i-get-my-commits-to-link-to-my-github-account - /articles/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user diff --git a/content/repositories/creating-and-managing-repositories/about-repositories.md b/content/repositories/creating-and-managing-repositories/about-repositories.md index 46012a30d4..57a56440e4 100644 --- a/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -61,7 +61,7 @@ When you create a repository owned by your user account, the repository is alway - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghes %} - If {% data variables.product.product_location %} is not in private mode or behind a firewall, public repositories are accessible to everyone on the internet. Otherwise, public repositories are available to everyone using {% data variables.product.product_location %}, including outside collaborators. -- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. Internal repositories are accessible to all enterprise members. +- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghae %} - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- endif %} diff --git a/content/rest/guides/index.md b/content/rest/guides/index.md index 1715450046..072e826783 100644 --- a/content/rest/guides/index.md +++ b/content/rest/guides/index.md @@ -2,7 +2,7 @@ title: Guides intro: 'Learn about getting started with the REST API, authentication, and how to use the REST API for a variety of tasks.' redirect_from: - - /guides/ + - /guides - /v3/guides versions: fpt: '*' diff --git a/content/rest/guides/traversing-with-pagination.md b/content/rest/guides/traversing-with-pagination.md index 91595eb798..36400d1399 100644 --- a/content/rest/guides/traversing-with-pagination.md +++ b/content/rest/guides/traversing-with-pagination.md @@ -263,4 +263,4 @@ puts "The next page link is #{next_page_href}" [octokit.rb]: https://github.com/octokit/octokit.rb [personal token]: /articles/creating-an-access-token-for-command-line-use [hypermedia-relations]: https://github.com/octokit/octokit.rb#pagination -[listing commits]: /rest/reference/repos#list-commits +[listing commits]: /rest/reference/commits#list-commits diff --git a/content/rest/guides/working-with-comments.md b/content/rest/guides/working-with-comments.md index f1b2f1ee34..371054556f 100644 --- a/content/rest/guides/working-with-comments.md +++ b/content/rest/guides/working-with-comments.md @@ -126,4 +126,4 @@ on the entire commit. [personal token]: /articles/creating-an-access-token-for-command-line-use [octokit.rb]: https://github.com/octokit/octokit.rb [PR Review API]: /rest/reference/pulls#comments -[commit comment API]: /rest/reference/repos#get-a-commit-comment +[commit comment API]: /rest/reference/commits#get-a-commit-comment diff --git a/content/rest/overview/api-previews.md b/content/rest/overview/api-previews.md index 36d03bec29..7cd8e65bb0 100644 --- a/content/rest/overview/api-previews.md +++ b/content/rest/overview/api-previews.md @@ -165,7 +165,7 @@ GitHub App Manifests allow people to create preconfigured GitHub Apps. See "[Cre ## Deployment statuses -You can now update the `environment` of a [deployment status](/rest/reference/repos#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. +You can now update the `environment` of a [deployment status](/rest/reference/deployments#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. **Custom media type:** `flash-preview` **Announced:** [2018-10-16](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) diff --git a/content/rest/reference/branches.md b/content/rest/reference/branches.md new file mode 100644 index 0000000000..60a187a93b --- /dev/null +++ b/content/rest/reference/branches.md @@ -0,0 +1,30 @@ +--- +title: Branches +intro: 'The branches API allows you to modify branches and their protection settings.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Branches +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Merging + +The Repo Merging API supports merging branches in a repository. This accomplishes +essentially the same thing as merging one branch into another in a local repository +and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. + +The authenticated user will be the author of any merges done through this endpoint. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/content/rest/reference/collaborators.md b/content/rest/reference/collaborators.md new file mode 100644 index 0000000000..c4842b7049 --- /dev/null +++ b/content/rest/reference/collaborators.md @@ -0,0 +1,35 @@ +--- +title: Collaborators +intro: 'The collaborators API allows you to add, invite, and remove collaborators from a repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Collaborators + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Invitations + +The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. + +Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted +access to invitations **without** also granting access to repository code, while the +`repo` scope grants permission to code as well as invitations. + +### Invite a user to a repository + +Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/content/rest/reference/commits.md b/content/rest/reference/commits.md new file mode 100644 index 0000000000..79591a09a6 --- /dev/null +++ b/content/rest/reference/commits.md @@ -0,0 +1,68 @@ +--- +title: Commits +intro: 'The commits API allows you to retrieve information and commits, create commit comments, and create commit statuses.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Commits + +The Repo Commits API supports listing, viewing, and comparing commits in a repository. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit comments + +### Custom media types for commit comments + +These are the supported media types for commit comments. You can read more +about the use of media types in the API [here](/rest/overview/media-types). + + application/vnd.github-commitcomment.raw+json + application/vnd.github-commitcomment.text+json + application/vnd.github-commitcomment.html+json + application/vnd.github-commitcomment.full+json + +For more information, see "[Custom media types](/rest/overview/media-types)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit statuses + +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. + +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. + +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. + +Statuses can include a `context` to indicate what service is providing that status. +For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `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. + +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. + +If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/content/rest/reference/deployments.md b/content/rest/reference/deployments.md new file mode 100644 index 0000000000..1170b20485 --- /dev/null +++ b/content/rest/reference/deployments.md @@ -0,0 +1,90 @@ +--- +title: Deployments +intro: 'The deployments API allows you to create and delete deploy keys, deployments, and deployment environments.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Deploy keys + +{% data reusables.repositories.deploy-keys %} + +Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Deployments + +Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). + +Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. + +Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and +the `description` is a high-level summary of what happened with the deployment. + +GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. + +Below is a simple sequence diagram for how these interactions would work. + +``` ++---------+ +--------+ +-----------+ +-------------+ +| Tooling | | GitHub | | 3rd Party | | Your Server | ++---------+ +--------+ +-----------+ +-------------+ + | | | | + | Create Deployment | | | + |--------------------->| | | + | | | | + | Deployment Created | | | + |<---------------------| | | + | | | | + | | Deployment Event | | + | |---------------------->| | + | | | SSH+Deploys | + | | |-------------------->| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | + | | | Deploy Completed | + | | |<--------------------| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | +``` + +Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. + +Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. + + +### Inactive deployments + +When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. + +You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +## Environments + +The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." + +{% data reusables.gated-features.environments %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/content/rest/reference/index.md b/content/rest/reference/index.md index 66051d530b..eb8dc90939 100644 --- a/content/rest/reference/index.md +++ b/content/rest/reference/index.md @@ -14,14 +14,19 @@ children: - /activity - /apps - /billing + - /branches - /checks - /codes-of-conduct - /code-scanning - /codespaces + - /commits + - /collaborators + - /deployments - /emojis - /enterprise-admin - /gists - /git + - /pages - /gitignore - /interactions - /issues @@ -36,12 +41,15 @@ children: - /pulls - /rate-limit - /reactions + - /releases - /repos + - /repository-metrics - /scim - /search - /secret-scanning - /teams - /users + - /webhooks - /permissions-required-for-github-apps --- diff --git a/content/rest/reference/pages.md b/content/rest/reference/pages.md new file mode 100644 index 0000000000..713ca428fc --- /dev/null +++ b/content/rest/reference/pages.md @@ -0,0 +1,32 @@ +--- +title: Pages +intro: 'The GitHub Pages API allows you to interact with GitHub Pages sites and build information.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." + +In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: +* `null`: The site has yet to be built. +* `queued`: The build has been requested but not yet begun. +* `building`:The build is in progress. +* `built`: The site has been built. +* `errored`: Indicates an error occurred during the build. + +In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: +* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. +* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: + - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. + - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/content/rest/reference/permissions-required-for-github-apps.md b/content/rest/reference/permissions-required-for-github-apps.md index 388c85781c..a067fef447 100644 --- a/content/rest/reference/permissions-required-for-github-apps.md +++ b/content/rest/reference/permissions-required-for-github-apps.md @@ -41,18 +41,18 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /rate_limit`](/rest/reference/rate-limit#get-rate-limit-status-for-the-authenticated-user) - [`GET /repos/:owner/:repo`](/rest/reference/repos#get-a-repository) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repos#get-community-profile-metrics) +- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif -%} - [`GET /repos/:owner/:repo/contributors`](/rest/reference/repos#list-repository-contributors) - [`GET /repos/:owner/:repo/forks`](/rest/reference/repos#list-forks) - [`GET /repos/:owner/:repo/languages`](/rest/reference/repos#list-repository-languages) - [`GET /repos/:owner/:repo/license`](/rest/reference/licenses#get-the-license-for-a-repository) - [`GET /repos/:owner/:repo/stargazers`](/rest/reference/activity#list-stargazers) -- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repos#get-the-weekly-commit-activity) -- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repos#get-the-last-year-of-commit-activity) -- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repos#get-all-contributor-commit-activity) -- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repos#get-the-weekly-commit-count) -- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repository-metrics#get-the-weekly-commit-count) +- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) - [`GET /repos/:owner/:repo/subscribers`](/rest/reference/activity#list-watchers) - [`GET /repos/:owner/:repo/tags`](/rest/reference/repos#list-repository-tags) - [`GET /repos/:owner/:repo/topics`](/rest/reference/repos#get-all-repository-topics) @@ -73,14 +73,14 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /users/:username/subscriptions`](/rest/reference/activity#list-repositories-watched-by-a-user) _Collaborators_ -- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/repos#list-repository-collaborators) -- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) +- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/collaborators#list-repository-collaborators) +- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) _Commit comments_ -- [`GET /repos/:owner/:repo/comments`](/rest/reference/repos#list-commit-comments-for-a-repository) -- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#get-a-commit-comment) +- [`GET /repos/:owner/:repo/comments`](/rest/reference/commits#list-commit-comments-for-a-repository) +- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#get-a-commit-comment) - [`GET /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#list-reactions-for-a-commit-comment) -- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#list-commit-comments) +- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#list-commit-comments) _Events_ - [`GET /events`](/rest/reference/activity#list-public-events) @@ -173,7 +173,7 @@ _Search_ - [`DELETE /repos/:owner/:repo/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-for-a-repository) (:write) {% endif -%} {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif -%} - [`PUT /repos/:owner/:repo/topics`](/rest/reference/repos#replace-all-repository-topics) (:write) - [`POST /repos/:owner/:repo/transfer`](/rest/reference/repos#transfer-a-repository) (:write) @@ -186,57 +186,57 @@ _Search_ {% ifversion fpt -%} - [`DELETE /repos/:owner/:repo/vulnerability-alerts`](/rest/reference/repos#disable-vulnerability-alerts) (:write) {% endif -%} -- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/repos#accept-a-repository-invitation) (:write) -- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/repos#decline-a-repository-invitation) (:write) +- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#accept-a-repository-invitation) (:write) +- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#decline-a-repository-invitation) (:write) _Branches_ -- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#get-branch-protection) (:read) -- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#update-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#delete-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#get-admin-branch-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#set-admin-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#delete-admin-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#get-pull-request-review-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#update-pull-request-review-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#delete-pull-request-review-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#get-commit-signature-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#create-commit-signature-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#delete-commit-signature-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#get-status-checks-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#update-status-check-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#remove-status-check-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#get-all-status-check-contexts) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#add-status-check-contexts) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#set-status-check-contexts) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#remove-status-check-contexts) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#get-access-restrictions) (:read) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#delete-access-restrictions) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#get-branch-protection) (:read) +- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#update-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#delete-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#get-admin-branch-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#set-admin-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#delete-admin-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#get-pull-request-review-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#update-pull-request-review-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#delete-pull-request-review-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#get-commit-signature-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#create-commit-signature-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#delete-commit-signature-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#get-status-checks-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#update-status-check-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#remove-status-check-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#get-all-status-check-contexts) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#add-status-check-contexts) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#set-status-check-contexts) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#remove-status-check-contexts) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#get-access-restrictions) (:read) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#delete-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#add-team-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#set-team-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#remove-team-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#add-team-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#set-team-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#remove-team-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#list-users-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#add-user-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#set-user-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#add-user-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#set-user-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Collaborators_ -- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#add-a-repository-collaborator) (:write) -- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#remove-a-repository-collaborator) (:write) +- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#add-a-repository-collaborator) (:write) +- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#remove-a-repository-collaborator) (:write) _Invitations_ -- [`GET /repos/:owner/:repo/invitations`](/rest/reference/repos#list-repository-invitations) (:read) -- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#update-a-repository-invitation) (:write) -- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#delete-a-repository-invitation) (:write) +- [`GET /repos/:owner/:repo/invitations`](/rest/reference/collaborators#list-repository-invitations) (:read) +- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#update-a-repository-invitation) (:write) +- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#delete-a-repository-invitation) (:write) _Keys_ -- [`GET /repos/:owner/:repo/keys`](/rest/reference/repos#list-deploy-keys) (:read) -- [`POST /repos/:owner/:repo/keys`](/rest/reference/repos#create-a-deploy-key) (:write) -- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#get-a-deploy-key) (:read) -- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#delete-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys`](/rest/reference/deployments#list-deploy-keys) (:read) +- [`POST /repos/:owner/:repo/keys`](/rest/reference/deployments#create-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#get-a-deploy-key) (:read) +- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#delete-a-deploy-key) (:write) _Teams_ - [`GET /repos/:owner/:repo/teams`](/rest/reference/repos#list-repository-teams) (:read) @@ -245,10 +245,10 @@ _Teams_ {% ifversion fpt or ghec %} _Traffic_ -- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repos#get-repository-clones) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repos#get-top-referral-paths) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repos#get-top-referral-sources) (:read) -- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repos#get-page-views) (:read) +- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repository-metrics#get-repository-clones) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repository-metrics#get-top-referral-paths) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repository-metrics#get-top-referral-sources) (:read) +- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repository-metrics#get-page-views) (:read) {% endif %} {% ifversion fpt or ghec %} @@ -345,37 +345,37 @@ _Traffic_ - [`GET /repos/:owner/:repo/check-suites/:check_suite_id`](/rest/reference/checks#get-a-check-suite) (:read) - [`GET /repos/:owner/:repo/check-suites/:check_suite_id/check-runs`](/rest/reference/checks#list-check-runs-in-a-check-suite) (:read) - [`POST /repos/:owner/:repo/check-suites/:check_suite_id/rerequest`](/rest/reference/checks#rerequest-a-check-suite) (:write) -- [`GET /repos/:owner/:repo/commits`](/rest/reference/repos#list-commits) (:read) -- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/repos#get-a-commit) (:read) +- [`GET /repos/:owner/:repo/commits`](/rest/reference/commits#list-commits) (:read) +- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/commits#get-a-commit) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-runs`](/rest/reference/checks#list-check-runs-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-suites`](/rest/reference/checks#list-check-suites-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/community/code_of_conduct`](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) (:read) -- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/repos#compare-two-commits) (:read) +- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/commits#compare-two-commits) (:read) - [`GET /repos/:owner/:repo/contents/:path`](/rest/reference/repos#get-repository-content) (:read) {% ifversion fpt or ghes or ghae -%} - [`POST /repos/:owner/:repo/dispatches`](/rest/reference/repos#create-a-repository-dispatch-event) (:write) {% endif -%} - [`POST /repos/:owner/:repo/forks`](/rest/reference/repos#create-a-fork) (:read) -- [`POST /repos/:owner/:repo/merges`](/rest/reference/repos#merge-a-branch) (:write) +- [`POST /repos/:owner/:repo/merges`](/rest/reference/branches#merge-a-branch) (:write) - [`PUT /repos/:owner/:repo/pulls/:pull_number/merge`](/rest/reference/pulls#merge-a-pull-request) (:write) - [`GET /repos/:owner/:repo/readme(?:/(.*))?`](/rest/reference/repos#get-a-repository-readme) (:read) _Branches_ -- [`GET /repos/:owner/:repo/branches`](/rest/reference/repos#list-branches) (:read) -- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/repos#get-a-branch) (:read) +- [`GET /repos/:owner/:repo/branches`](/rest/reference/branches#list-branches) (:read) +- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/branches#get-a-branch) (:read) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#list-apps-with-access-to-the-protected-branch) (:write) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#add-app-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#set-app-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#add-app-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#set-app-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Commit comments_ -- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#update-a-commit-comment) (:write) -- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#delete-a-commit-comment) (:write) +- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#update-a-commit-comment) (:write) +- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#delete-a-commit-comment) (:write) - [`POST /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#create-reaction-for-a-commit-comment) (:read) -- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#create-a-commit-comment) (:read) +- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#create-a-commit-comment) (:read) _Git_ - [`POST /repos/:owner/:repo/git/blobs`](/rest/reference/git#create-a-blob) (:write) @@ -435,15 +435,15 @@ _Releases_ ### Permission on "deployments" -- [`GET /repos/:owner/:repo/deployments`](/rest/reference/repos#list-deployments) (:read) -- [`POST /repos/:owner/:repo/deployments`](/rest/reference/repos#create-a-deployment) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#get-a-deployment) (:read) +- [`GET /repos/:owner/:repo/deployments`](/rest/reference/deployments#list-deployments) (:read) +- [`POST /repos/:owner/:repo/deployments`](/rest/reference/deployments#create-a-deployment) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#get-a-deployment) (:read) {% ifversion fpt or ghes or ghae -%} -- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#delete-a-deployment) (:write) +- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#delete-a-deployment) (:write) {% endif -%} -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#list-deployment-statuses) (:read) -- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#create-a-deployment-status) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/repos#get-a-deployment-status) (:read) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#list-deployment-statuses) (:read) +- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#create-a-deployment-status) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/deployments#get-a-deployment-status) (:read) {% ifversion fpt or ghes or ghec %} ### Permission on "emails" @@ -703,16 +703,16 @@ _Teams_ ### Permission on "pages" -- [`GET /repos/:owner/:repo/pages`](/rest/reference/repos#get-a-github-pages-site) (:read) -- [`POST /repos/:owner/:repo/pages`](/rest/reference/repos#create-a-github-pages-site) (:write) -- [`PUT /repos/:owner/:repo/pages`](/rest/reference/repos#update-information-about-a-github-pages-site) (:write) -- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/repos#delete-a-github-pages-site) (:write) -- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/repos#list-github-pages-builds) (:read) -- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/repos#request-a-github-pages-build) (:write) -- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/repos#get-github-pages-build) (:read) -- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/repos#get-latest-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages`](/rest/reference/pages#get-a-github-pages-site) (:read) +- [`POST /repos/:owner/:repo/pages`](/rest/reference/pages#create-a-github-pages-site) (:write) +- [`PUT /repos/:owner/:repo/pages`](/rest/reference/pages#update-information-about-a-github-pages-site) (:write) +- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/pages#delete-a-github-pages-site) (:write) +- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/pages#list-github-pages-builds) (:read) +- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/pages#request-a-github-pages-build) (:write) +- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/pages#get-github-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/pages#get-latest-pages-build) (:read) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif %} ### Permission on "pull requests" @@ -812,12 +812,12 @@ _Reviews_ ### Permission on "repository hooks" -- [`GET /repos/:owner/:repo/hooks`](/rest/reference/repos#list-repository-webhooks) (:read) -- [`POST /repos/:owner/:repo/hooks`](/rest/reference/repos#create-a-repository-webhook) (:write) -- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#get-a-repository-webhook) (:read) -- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#update-a-repository-webhook) (:write) -- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#delete-a-repository-webhook) (:write) -- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/repos#ping-a-repository-webhook) (:read) +- [`GET /repos/:owner/:repo/hooks`](/rest/reference/webhooks#list-repository-webhooks) (:read) +- [`POST /repos/:owner/:repo/hooks`](/rest/reference/webhooks#create-a-repository-webhook) (:write) +- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#get-a-repository-webhook) (:read) +- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#update-a-repository-webhook) (:write) +- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#delete-a-repository-webhook) (:write) +- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/webhooks#ping-a-repository-webhook) (:read) - [`POST /repos/:owner/:repo/hooks/:hook_id/tests`](/rest/reference/repos#test-the-push-repository-webhook) (:read) {% ifversion ghes %} @@ -930,9 +930,9 @@ _Teams_ ### Permission on "statuses" -- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) (:read) -- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/repos#list-commit-statuses-for-a-reference) (:read) -- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/repos#create-a-commit-status) (:write) +- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) (:read) +- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/commits#list-commit-statuses-for-a-reference) (:read) +- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/commits#create-a-commit-status) (:write) ### Permission on "team discussions" diff --git a/content/rest/reference/pulls.md b/content/rest/reference/pulls.md index 9d0005a41b..d8b22a8117 100644 --- a/content/rest/reference/pulls.md +++ b/content/rest/reference/pulls.md @@ -62,7 +62,7 @@ Request, grouped together with a state and optional body comment. ## Review comments -Pull request review comments are comments on a portion of the unified diff made during a pull request review. Commit comments and issue comments are different from pull request review comments. You apply commit comments directly to a commit and you apply issue comments without referencing a portion of the unified diff. For more information, see "[Create a commit comment](/rest/reference/repos#create-a-commit-comment)" and "[Create an issue comment](/rest/reference/issues#create-an-issue-comment)." +Pull request review comments are comments on a portion of the unified diff made during a pull request review. Commit comments and issue comments are different from pull request review comments. You apply commit comments directly to a commit and you apply issue comments without referencing a portion of the unified diff. For more information, see "[Create a commit comment](/rest/reference/commits#create-a-commit-comment)" and "[Create an issue comment](/rest/reference/issues#create-an-issue-comment)." ### Custom media types for pull request review comments diff --git a/content/rest/reference/releases.md b/content/rest/reference/releases.md new file mode 100644 index 0000000000..a434451bea --- /dev/null +++ b/content/rest/reference/releases.md @@ -0,0 +1,23 @@ +--- +title: Releases +intro: 'The releases API allows you to create, modify, and delete releases and release assets.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% note %} + +**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. + +{% endnote %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/content/rest/reference/repos.md b/content/rest/reference/repos.md index b740a1207d..89a55881b8 100644 --- a/content/rest/reference/repos.md +++ b/content/rest/reference/repos.md @@ -30,52 +30,6 @@ To help streamline your workflow, you can use the API to add autolinks to extern {% endfor %} {% endif %} -## Branches - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Collaborators - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Comments - -### Custom media types for commit comments - -These are the supported media types for commit comments. You can read more -about the use of media types in the API [here](/rest/overview/media-types). - - application/vnd.github-commitcomment.raw+json - application/vnd.github-commitcomment.text+json - application/vnd.github-commitcomment.html+json - application/vnd.github-commitcomment.full+json - -For more information, see "[Custom media types](/rest/overview/media-types)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Commits - -The Repo Commits API supports listing, viewing, and comparing commits in a repository. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Community - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% endif %} ## Contents @@ -105,105 +59,12 @@ You can read more about the use of media types in the API [here](/rest/overview/ {% if operation.subcategory == 'contents' %}{% include rest_operation %}{% endif %} {% endfor %} -## Deploy keys - -{% data reusables.repositories.deploy-keys %} - -Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Deployments - -Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). - -Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. - -Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and -the `description` is a high-level summary of what happened with the deployment. - -GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. - -Below is a simple sequence diagram for how these interactions would work. - -``` -+---------+ +--------+ +-----------+ +-------------+ -| Tooling | | GitHub | | 3rd Party | | Your Server | -+---------+ +--------+ +-----------+ +-------------+ - | | | | - | Create Deployment | | | - |--------------------->| | | - | | | | - | Deployment Created | | | - |<---------------------| | | - | | | | - | | Deployment Event | | - | |---------------------->| | - | | | SSH+Deploys | - | | |-------------------->| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | - | | | Deploy Completed | - | | |<--------------------| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | -``` - -Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. - -Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. - - -### Inactive deployments - -When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. - -You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -## Environments - -The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." - -{% data reusables.gated-features.environments %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - ## Forks {% for operation in currentRestOperations %} {% if operation.subcategory == 'forks' %}{% include rest_operation %}{% endif %} {% endfor %} -## Invitations - -The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. - -Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted -access to invitations **without** also granting access to repository code, while the -`repo` scope grants permission to code as well as invitations. - -### Invite a user to a repository - -Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} -{% endfor %} - {% ifversion fpt or ghae or ghes > 3.2 or ghec %} ## Git LFS @@ -214,181 +75,3 @@ Use the API endpoint for adding a collaborator. For more information, see "[Add {% endif %} -## Merging - -The Repo Merging API supports merging branches in a repository. This accomplishes -essentially the same thing as merging one branch into another in a local repository -and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. - -The authenticated user will be the author of any merges done through this endpoint. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Pages - -The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." - -In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: -* `null`: The site has yet to be built. -* `queued`: The build has been requested but not yet begun. -* `building`:The build is in progress. -* `built`: The site has been built. -* `errored`: Indicates an error occurred during the build. - -In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: -* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. -* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: - - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. - - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Releases - -{% note %} - -**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. - -{% endnote %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statistics - -The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different -types of repository activity. - -### A word about caching - -Computing repository statistics is an expensive operation, so we try to return cached -data whenever possible. If the data hasn't been cached when you query a repository's -statistics, you'll receive a `202` response; a background job is also fired to -start compiling these statistics. Give the job a few moments to complete, and -then submit the request again. If the job has completed, that request will receive a -`200` response with the statistics in the response body. - -Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. - -### Statistics exclude some types of commits - -The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). - -To summarize: -- All statistics exclude merge commits. -- Contributor statistics also exclude empty commits. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statuses - -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. - -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. - -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. - -Statuses can include a `context` to indicate what service is providing that status. -For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `security`. You can -then use the [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. - -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. - -If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Traffic - -For repositories that you have push access to, the traffic API provides access -to the information provided in your repository graph. For more information, see "Viewing traffic to a repository." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - -## Webhooks - -Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} - -If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). - -In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} -{% endfor %} - -### Receiving Webhooks - -In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. - -#### Webhook headers - -{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. - -### PubSubHubbub - -GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. -Topic URLs for a GitHub repository's pushes are in this format: - -`https://github.com/{owner}/{repo}/events/{event}` - -The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." - -#### Response format - -The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. - - Accept: application/json - https://github.com/{owner}/{repo}/events/push.json - -#### Callback URLs - -Callback URLs can use the `http://` protocol. - - # Send updates to postbin.org - http://postbin.org/123 - -#### Subscribing - -The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: - -``` shell -curl -u "user" -i \ - {% data variables.product.api_url_pre %}/hub \ - -F "hub.mode=subscribe" \ - -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ - -F "hub.callback=http://postbin.org/123" -``` - -PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. - -##### Parameters - -Name | Type | Description ------|------|-------------- -``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. -``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. -``hub.callback``|`string` | The URI to receive the updates to the topic. -``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/content/rest/reference/repository-metrics.md b/content/rest/reference/repository-metrics.md new file mode 100644 index 0000000000..aea394d6e0 --- /dev/null +++ b/content/rest/reference/repository-metrics.md @@ -0,0 +1,61 @@ +--- +title: Repository metrics +intro: 'The repository metrics API allows you to retrieve community profile, statistics, and traffic for your repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% ifversion fpt or ghec %} +## Community + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% endif %} + +## Statistics + +The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different +types of repository activity. + +### A word about caching + +Computing repository statistics is an expensive operation, so we try to return cached +data whenever possible. If the data hasn't been cached when you query a repository's +statistics, you'll receive a `202` response; a background job is also fired to +start compiling these statistics. Give the job a few moments to complete, and +then submit the request again. If the job has completed, that request will receive a +`200` response with the statistics in the response body. + +Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. + +### Statistics exclude some types of commits + +The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). + +To summarize: +- All statistics exclude merge commits. +- Contributor statistics also exclude empty commits. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghec %} +## Traffic + +For repositories that you have push access to, the traffic API provides access +to the information provided in your repository graph. For more information, see "Viewing traffic to a repository." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/content/rest/reference/search.md b/content/rest/reference/search.md index 99d4a14e4f..19f0a12d45 100644 --- a/content/rest/reference/search.md +++ b/content/rest/reference/search.md @@ -58,7 +58,7 @@ GitHub Octocat in:readme user:defunkt const queryString = 'q=' + encodeURIComponent('GitHub Octocat in:readme user:defunkt'); ``` -See "[Searching on GitHub](/articles/searching-on-github/)" +See "[Searching on GitHub](/search-github/searching-on-github)" for a complete list of available qualifiers, their format, and an example of how to use them. For information about how to use operators to match specific quantities, dates, or to exclude results, see "[Understanding the search syntax](/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax/)." diff --git a/content/rest/reference/webhooks.md b/content/rest/reference/webhooks.md new file mode 100644 index 0000000000..c9908012c1 --- /dev/null +++ b/content/rest/reference/webhooks.md @@ -0,0 +1,77 @@ +--- +title: Webhooks +intro: 'The webhooks API allows you to create and manage webhooks for your repositories.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} + +If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). + +In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} +{% endfor %} + +### Receiving Webhooks + +In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. + +#### Webhook headers + +{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. + +### PubSubHubbub + +GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. +Topic URLs for a GitHub repository's pushes are in this format: + +`https://github.com/{owner}/{repo}/events/{event}` + +The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." + +#### Response format + +The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. + + Accept: application/json + https://github.com/{owner}/{repo}/events/push.json + +#### Callback URLs + +Callback URLs can use the `http://` protocol. + + # Send updates to postbin.org + http://postbin.org/123 + +#### Subscribing + +The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: + +``` shell +curl -u "user" -i \ + {% data variables.product.api_url_pre %}/hub \ + -F "hub.mode=subscribe" \ + -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ + -F "hub.callback=http://postbin.org/123" +``` + +PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. + +##### Parameters + +Name | Type | Description +-----|------|-------------- +``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. +``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. +``hub.callback``|`string` | The URI to receive the updates to the topic. +``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/contributing/content-style-guide.md b/contributing/content-style-guide.md index 5b6b09392c..45f3573506 100644 --- a/contributing/content-style-guide.md +++ b/contributing/content-style-guide.md @@ -128,7 +128,7 @@ To orient readers and help them understand if the section is relevant to them, i ### Alt text -Every image must include an alt attribute that provides a complete description of the image for the user. For more information, see “[Accessibility guidelines for images and videos](https://review.docs.microsoft.com/en-us/help/contribute/contribute-accessibility-multimedia)” in the Microsoft Docs Contributor Guide. +Every image must include an alt attribute that provides a complete description of the image for the user. For more information, see “[Accessibility guidelines for images and videos](https://review.docs.microsoft.com/en-us/help/contribute/contribute-accessibility-multimedia)” in the Microsoft Docs Contributor Guide. Note that you'll need to be logged on to your Microsoft account to be able access this Microsoft resource. ### Filenames diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index 2bf19599fa..5d013065a2 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -9235,6 +9235,11 @@ type Enterprise implements Node { The search string to look for. """ query: String + + """ + The viewer's role in an organization. + """ + viewerOrganizationRole: RoleInOrganization ): OrganizationConnection! """ @@ -17705,6 +17710,16 @@ type Mutation { input: UpdateLabelInput! ): UpdateLabelPayload @preview(toggledBy: "bane-preview") + """ + Sets whether private repository forks are enabled for an organization. + """ + updateOrganizationAllowPrivateRepositoryForkingSetting( + """ + Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting + """ + input: UpdateOrganizationAllowPrivateRepositoryForkingSettingInput! + ): UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload + """ Updates an existing project. """ @@ -21238,6 +21253,11 @@ type Organization implements Actor & MemberStatusable & Node & ProfileOwner & Pr orderBy: UserStatusOrder = {field: UPDATED_AT, direction: DESC} ): UserStatusConnection! + """ + Members can fork private repositories in this organization + """ + membersCanForkPrivateRepositories: Boolean! + """ A list of users who are members of this organization. """ @@ -33813,6 +33833,26 @@ type ReviewStatusHovercardContext implements HovercardContext { reviewDecision: PullRequestReviewDecision } +""" +Possible roles a user may have in relation to an organization. +""" +enum RoleInOrganization { + """ + A user who is a direct member of the organization. + """ + DIRECT_MEMBER + + """ + A user with full administrative access to the organization. + """ + OWNER + + """ + A user who is unaffiliated with the organization. + """ + UNAFFILIATED +} + """ The possible digest algorithms used to sign SAML requests for an identity provider. """ @@ -39265,6 +39305,46 @@ type UpdateLabelPayload @preview(toggledBy: "bane-preview") { label: Label } +""" +Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +input UpdateOrganizationAllowPrivateRepositoryForkingSettingInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Enable forking of private repositories in the organization? + """ + forkingEnabled: Boolean! + + """ + The ID of the organization on which to set the allow private repository forking setting. + """ + organizationId: ID! @possibleTypes(concreteTypes: ["Organization"]) +} + +""" +Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +type UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + A message confirming the result of updating the allow private repository forking setting. + """ + message: String + + """ + The organization with the updated allow private repository forking setting. + """ + organization: Organization +} + """ Autogenerated input type of UpdateProjectCard """ diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index 6581364bb6..e439e269e0 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -9858,6 +9858,11 @@ type Enterprise implements Node { The search string to look for. """ query: String + + """ + The viewer's role in an organization. + """ + viewerOrganizationRole: RoleInOrganization ): OrganizationConnection! """ @@ -14202,7 +14207,7 @@ union IpAllowListOwner = App | Enterprise | Organization """ An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. """ -type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { +type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { """ Reason that the conversation was locked. """ @@ -14459,6 +14464,51 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N last: Int ): ProjectCardConnection! + """ + Find a project by project (beta) number. + """ + projectNext( + """ + The project (beta) number. + """ + number: Int! + ): ProjectNext + + """ + A list of project (beta) items under the owner. + """ + projectsNext( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE + ): ProjectNextConnection! + """ Identifies when the comment was published at. """ @@ -19277,6 +19327,16 @@ type Mutation { input: UpdateNotificationRestrictionSettingInput! ): UpdateNotificationRestrictionSettingPayload + """ + Sets whether private repository forks are enabled for an organization. + """ + updateOrganizationAllowPrivateRepositoryForkingSetting( + """ + Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting + """ + input: UpdateOrganizationAllowPrivateRepositoryForkingSettingInput! + ): UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload + """ Updates an existing project. """ @@ -22991,6 +23051,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr orderBy: UserStatusOrder = {field: UPDATED_AT, direction: DESC} ): UserStatusConnection! + """ + Members can fork private repositories in this organization + """ + membersCanForkPrivateRepositories: Boolean! + """ A list of users who are members of this organization. """ @@ -23192,11 +23257,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr ): Project """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext @@ -23242,7 +23307,7 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr ): ProjectConnection! """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -23264,6 +23329,16 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! """ @@ -26651,23 +26726,48 @@ type ProjectNextItemFieldValueEdge { } """ -Represents an owner of a Project. +Properties by which the return project can be ordered. +""" +enum ProjectNextOrderField { + """ + The project's date and time of creation + """ + CREATED_AT + + """ + The project's number + """ + NUMBER + + """ + The project's title + """ + TITLE + + """ + The project's date and time of update + """ + UPDATED_AT +} + +""" +Represents an owner of a project (beta). """ interface ProjectNextOwner { id: ID! """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -26689,6 +26789,16 @@ interface ProjectNextOwner { Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! } @@ -26961,7 +27071,7 @@ type PublicKeyEdge { """ A repository pull request. """ -type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { +type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { """ Reason that the conversation was locked. """ @@ -27476,6 +27586,51 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab last: Int ): ProjectCardConnection! + """ + Find a project by project (beta) number. + """ + projectNext( + """ + The project (beta) number. + """ + number: Int! + ): ProjectNext + + """ + A list of project (beta) items under the owner. + """ + projectsNext( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE + ): ProjectNextConnection! + """ Identifies when the comment was published at. """ @@ -37399,6 +37554,26 @@ type ReviewStatusHovercardContext implements HovercardContext { reviewDecision: PullRequestReviewDecision } +""" +Possible roles a user may have in relation to an organization. +""" +enum RoleInOrganization { + """ + A user who is a direct member of the organization. + """ + DIRECT_MEMBER + + """ + A user with full administrative access to the organization. + """ + OWNER + + """ + A user who is unaffiliated with the organization. + """ + UNAFFILIATED +} + """ The possible digest algorithms used to sign SAML requests for an identity provider. """ @@ -44355,6 +44530,46 @@ type UpdateNotificationRestrictionSettingPayload { owner: VerifiableDomainOwner } +""" +Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +input UpdateOrganizationAllowPrivateRepositoryForkingSettingInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Enable forking of private repositories in the organization? + """ + forkingEnabled: Boolean! + + """ + The ID of the organization on which to set the allow private repository forking setting. + """ + organizationId: ID! @possibleTypes(concreteTypes: ["Organization"]) +} + +""" +Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +type UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + A message confirming the result of updating the allow private repository forking setting. + """ + message: String + + """ + The organization with the updated allow private repository forking setting. + """ + organization: Organization +} + """ Autogenerated input type of UpdateProjectCard """ @@ -45719,11 +45934,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn ): Project """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext @@ -45769,7 +45984,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn ): ProjectConnection! """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -45791,6 +46006,16 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index 6581364bb6..e439e269e0 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -9858,6 +9858,11 @@ type Enterprise implements Node { The search string to look for. """ query: String + + """ + The viewer's role in an organization. + """ + viewerOrganizationRole: RoleInOrganization ): OrganizationConnection! """ @@ -14202,7 +14207,7 @@ union IpAllowListOwner = App | Enterprise | Organization """ An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. """ -type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { +type Issue implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { """ Reason that the conversation was locked. """ @@ -14459,6 +14464,51 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N last: Int ): ProjectCardConnection! + """ + Find a project by project (beta) number. + """ + projectNext( + """ + The project (beta) number. + """ + number: Int! + ): ProjectNext + + """ + A list of project (beta) items under the owner. + """ + projectsNext( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE + ): ProjectNextConnection! + """ Identifies when the comment was published at. """ @@ -19277,6 +19327,16 @@ type Mutation { input: UpdateNotificationRestrictionSettingInput! ): UpdateNotificationRestrictionSettingPayload + """ + Sets whether private repository forks are enabled for an organization. + """ + updateOrganizationAllowPrivateRepositoryForkingSetting( + """ + Parameters for UpdateOrganizationAllowPrivateRepositoryForkingSetting + """ + input: UpdateOrganizationAllowPrivateRepositoryForkingSettingInput! + ): UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload + """ Updates an existing project. """ @@ -22991,6 +23051,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr orderBy: UserStatusOrder = {field: UPDATED_AT, direction: DESC} ): UserStatusConnection! + """ + Members can fork private repositories in this organization + """ + membersCanForkPrivateRepositories: Boolean! + """ A list of users who are members of this organization. """ @@ -23192,11 +23257,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr ): Project """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext @@ -23242,7 +23307,7 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr ): ProjectConnection! """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -23264,6 +23329,16 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! """ @@ -26651,23 +26726,48 @@ type ProjectNextItemFieldValueEdge { } """ -Represents an owner of a Project. +Properties by which the return project can be ordered. +""" +enum ProjectNextOrderField { + """ + The project's date and time of creation + """ + CREATED_AT + + """ + The project's number + """ + NUMBER + + """ + The project's title + """ + TITLE + + """ + The project's date and time of update + """ + UPDATED_AT +} + +""" +Represents an owner of a project (beta). """ interface ProjectNextOwner { id: ID! """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -26689,6 +26789,16 @@ interface ProjectNextOwner { Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! } @@ -26961,7 +27071,7 @@ type PublicKeyEdge { """ A repository pull request. """ -type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { +type PullRequest implements Assignable & Closable & Comment & Labelable & Lockable & Node & ProjectNextOwner & Reactable & RepositoryNode & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment { """ Reason that the conversation was locked. """ @@ -27476,6 +27586,51 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab last: Int ): ProjectCardConnection! + """ + Find a project by project (beta) number. + """ + projectNext( + """ + The project (beta) number. + """ + number: Int! + ): ProjectNext + + """ + A list of project (beta) items under the owner. + """ + projectsNext( + """ + Returns the elements in the list that come after the specified cursor. + """ + after: String + + """ + Returns the elements in the list that come before the specified cursor. + """ + before: String + + """ + Returns the first _n_ elements from the list. + """ + first: Int + + """ + Returns the last _n_ elements from the list. + """ + last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE + ): ProjectNextConnection! + """ Identifies when the comment was published at. """ @@ -37399,6 +37554,26 @@ type ReviewStatusHovercardContext implements HovercardContext { reviewDecision: PullRequestReviewDecision } +""" +Possible roles a user may have in relation to an organization. +""" +enum RoleInOrganization { + """ + A user who is a direct member of the organization. + """ + DIRECT_MEMBER + + """ + A user with full administrative access to the organization. + """ + OWNER + + """ + A user who is unaffiliated with the organization. + """ + UNAFFILIATED +} + """ The possible digest algorithms used to sign SAML requests for an identity provider. """ @@ -44355,6 +44530,46 @@ type UpdateNotificationRestrictionSettingPayload { owner: VerifiableDomainOwner } +""" +Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +input UpdateOrganizationAllowPrivateRepositoryForkingSettingInput { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + Enable forking of private repositories in the organization? + """ + forkingEnabled: Boolean! + + """ + The ID of the organization on which to set the allow private repository forking setting. + """ + organizationId: ID! @possibleTypes(concreteTypes: ["Organization"]) +} + +""" +Autogenerated return type of UpdateOrganizationAllowPrivateRepositoryForkingSetting +""" +type UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload { + """ + A unique identifier for the client performing the mutation. + """ + clientMutationId: String + + """ + A message confirming the result of updating the allow private repository forking setting. + """ + message: String + + """ + The organization with the updated allow private repository forking setting. + """ + organization: Organization +} + """ Autogenerated input type of UpdateProjectCard """ @@ -45719,11 +45934,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn ): Project """ - Find project by project next number. + Find a project by project (beta) number. """ projectNext( """ - The project next number. + The project (beta) number. """ number: Int! ): ProjectNext @@ -45769,7 +45984,7 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn ): ProjectConnection! """ - A list of project next items under the owner. + A list of project (beta) items under the owner. """ projectsNext( """ @@ -45791,6 +46006,16 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn Returns the last _n_ elements from the list. """ last: Int + + """ + A project (beta) to search for under the the owner. + """ + query: String + + """ + How to order the returned projects (beta). + """ + sortBy: ProjectNextOrderField = TITLE ): ProjectNextConnection! """ diff --git a/data/release-notes/enterprise-server/3-0/20.yml b/data/release-notes/enterprise-server/3-0/20.yml index 7a22e6eda7..58777fda86 100644 --- a/data/release-notes/enterprise-server/3-0/20.yml +++ b/data/release-notes/enterprise-server/3-0/20.yml @@ -10,6 +10,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - On a freshly set up {% data variables.product.prodname_ghe_server %} without any users, an attacker could create the first admin user. - Custom firewall rules are removed during the upgrade process. diff --git a/data/release-notes/enterprise-server/3-1/12.yml b/data/release-notes/enterprise-server/3-1/12.yml index 90717317d4..feb0161f06 100644 --- a/data/release-notes/enterprise-server/3-1/12.yml +++ b/data/release-notes/enterprise-server/3-1/12.yml @@ -12,6 +12,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues. - On a freshly set up {% data variables.product.prodname_ghe_server %} without any users, an attacker could create the first admin user. diff --git a/data/release-notes/enterprise-server/3-2/0-rc1.yml b/data/release-notes/enterprise-server/3-2/0-rc1.yml index 62d2d7a5ae..a59268d4f1 100644 --- a/data/release-notes/enterprise-server/3-2/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-2/0-rc1.yml @@ -244,10 +244,10 @@ sections: - heading: API Changes notes: # https://github.com/github/releases/issues/1253 - - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." # https://github.com/github/releases/issues/969 - - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. + - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Webhooks](/rest/reference/webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. # https://github.com/github/releases/issues/1349 - | diff --git a/data/release-notes/enterprise-server/3-2/0.yml b/data/release-notes/enterprise-server/3-2/0.yml index b5f39207ee..dd9ef8063b 100644 --- a/data/release-notes/enterprise-server/3-2/0.yml +++ b/data/release-notes/enterprise-server/3-2/0.yml @@ -246,7 +246,7 @@ sections: - heading: API Changes notes: # https://github.com/github/releases/issues/1253 - - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." # https://github.com/github/releases/issues/969 - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. diff --git a/data/release-notes/enterprise-server/3-2/4.yml b/data/release-notes/enterprise-server/3-2/4.yml index 472be8cae5..f3852870df 100644 --- a/data/release-notes/enterprise-server/3-2/4.yml +++ b/data/release-notes/enterprise-server/3-2/4.yml @@ -18,6 +18,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - On a freshly set up {% data variables.product.prodname_ghe_server %} without any users, an attacker could create the first admin user. - Custom firewall rules are removed during the upgrade process. diff --git a/data/release-notes/enterprise-server/3-3/0-rc1.yml b/data/release-notes/enterprise-server/3-3/0-rc1.yml index a3bbbfb99b..eaa5046942 100644 --- a/data/release-notes/enterprise-server/3-3/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-3/0-rc1.yml @@ -210,7 +210,7 @@ sections: - You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)." # https://github.com/github/releases/issues/1578 - - You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation. + - You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation. # https://github.com/github/releases/issues/1527 - Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)." diff --git a/data/release-notes/enterprise-server/3-3/0.yml b/data/release-notes/enterprise-server/3-3/0.yml index 9dec376333..c39c732888 100644 --- a/data/release-notes/enterprise-server/3-3/0.yml +++ b/data/release-notes/enterprise-server/3-3/0.yml @@ -53,6 +53,9 @@ sections: # https://github.com/github/releases/issues/1609 - A new stream processing service has been added to facilitate the growing set of events that are published to the audit log, including events associated with Git and {% data variables.product.prodname_actions %} activity. + # https://github.com/github/docs-content/issues/5801 + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] + - heading: Token Changes notes: # https://github.com/github/releases/issues/1390 @@ -204,7 +207,7 @@ sections: - You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)." # https://github.com/github/releases/issues/1578 - - You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation. + - You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation. # https://github.com/github/releases/issues/1527 - Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)." diff --git a/data/release-notes/github-ae/2021-06/2021-12-06.yml b/data/release-notes/github-ae/2021-06/2021-12-06.yml index 1b0a3fcaa6..77bbc00ce2 100644 --- a/data/release-notes/github-ae/2021-06/2021-12-06.yml +++ b/data/release-notes/github-ae/2021-06/2021-12-06.yml @@ -78,7 +78,7 @@ sections: - | With the [latest version of Octicons](https://github.com/primer/octicons/releases), the states of issues and pull requests are now more visually distinct so you can scan status more easily. For more information, see [{% data variables.product.prodname_blog %}](https://github.blog/changelog/2021-06-08-new-issue-and-pull-request-state-icons/). - | - You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Repositories](/rest/reference/repos#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. + You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Branches](/rest/reference/branches#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. - | You can now upload video files everywhere you write Markdown on {% data variables.product.product_name %}. Share demos, show reproduction steps, and more in issue and pull request comments, as well as in Markdown files within repositories, such as READMEs. For more information, see "[Attaching files](/github/writing-on-github/working-with-advanced-formatting/attaching-files)." - | @@ -103,7 +103,7 @@ sections: - | You can now sort the repositories on a user or organization profile by star count. - | - The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." - | When you define a submodule in {% data variables.product.product_location %} with a relative path, the submodule is now clickable in the web UI. Clicking the submodule in the web UI will take you to the linked repository. Previously, only submodules with absolute URLs were clickable. Relative paths for repositories with the same owner that follow the pattern ../REPOSITORY or relative paths for repositories with a different owner that follow the pattern ../OWNER/REPOSITORY are supported. For more information about working with submodules, see [Working with submodules](https://github.blog/2016-02-01-working-with-submodules/) on {% data variables.product.prodname_blog %}. - | diff --git a/data/reusables/accounts/accounts-billed-separately.md b/data/reusables/accounts/accounts-billed-separately.md new file mode 100644 index 0000000000..3e99bbe898 --- /dev/null +++ b/data/reusables/accounts/accounts-billed-separately.md @@ -0,0 +1 @@ +Each account on {% data variables.product.product_name %} is billed separately. Upgrading an organization account enables paid features for the organization's repositories only and does not affect the features available in repositories owned by any associated personal accounts. Similarly, upgrading a personal account enables paid features for the personal account's repositories only and does not affect the repositories of any organization accounts. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." diff --git a/data/reusables/organizations/organization-plans.md b/data/reusables/organizations/organization-plans.md new file mode 100644 index 0000000000..7a87c02ae6 --- /dev/null +++ b/data/reusables/organizations/organization-plans.md @@ -0,0 +1,8 @@ +{% ifversion fpt or ghec %} +All organizations can own an unlimited number of public and private repositories. You can use organizations for free, with {% data variables.product.prodname_free_team %}, which includes limited features on private repositories. To get the full feature set on private repositories and additional features at the organization level, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} + +If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} + +{% ifversion fpt %} +{% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +{% endif %} \ No newline at end of file diff --git a/data/reusables/organizations/organizations_include.md b/data/reusables/organizations/organizations_include.md index e5473f8427..3d3d828796 100644 --- a/data/reusables/organizations/organizations_include.md +++ b/data/reusables/organizations/organizations_include.md @@ -6,14 +6,4 @@ Organizations include: - The option to [require all organization members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} - The ability to [create and administer classrooms with GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} -{% ifversion fpt or ghec %} -You can use organizations for free, with {% data variables.product.prodname_free_team %}, which includes unlimited collaborators on unlimited public repositories with full features, and unlimited private repositories with limited features. - -For additional features, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} - -If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} - -{% ifversion fpt %} -{% data reusables.enterprise.link-to-ghec-trial %} -{% endif %} -{% endif %} +{% data reusables.organizations.organization-plans %} diff --git a/data/reusables/pages/check-workflow-run.md b/data/reusables/pages/check-workflow-run.md new file mode 100644 index 0000000000..1639689602 --- /dev/null +++ b/data/reusables/pages/check-workflow-run.md @@ -0,0 +1,8 @@ +{% ifversion fpt %} +1. If your {% data variables.product.prodname_pages %} site is built from a public repository, it is built and deployed with a {% data variables.product.prodname_actions %} workflow run unless you've configured your {% data variables.product.prodname_pages %} site to use a different CI tool. For more information about how to view the workflow status, see "[Viewing workflow run history](/actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history)." + +{% note %} + +{% data reusables.pages.pages-builds-with-github-actions-public-beta %} + +{% endnote %}{% endif %} \ No newline at end of file diff --git a/data/reusables/pages/pages-builds-with-github-actions-public-beta.md b/data/reusables/pages/pages-builds-with-github-actions-public-beta.md new file mode 100644 index 0000000000..0261ed78bd --- /dev/null +++ b/data/reusables/pages/pages-builds-with-github-actions-public-beta.md @@ -0,0 +1,5 @@ +{% ifversion fpt %} + +**Note:** {% data variables.product.prodname_actions %} workflow runs for your {% data variables.product.prodname_pages %} sites are in public beta for public repositories and subject to change. {% data variables.product.prodname_actions %} workflow runs are free for public repositories. + +{% endif %} \ No newline at end of file diff --git a/data/reusables/pages/twenty-minutes-to-publish.md b/data/reusables/pages/twenty-minutes-to-publish.md index 6a499d411a..edc5821cce 100644 --- a/data/reusables/pages/twenty-minutes-to-publish.md +++ b/data/reusables/pages/twenty-minutes-to-publish.md @@ -1 +1 @@ -**Note:** It can take up to 20 minutes for changes to your site to publish after you push the changes to {% data variables.product.product_name %}. If your don't see your changes reflected in your browser after an hour, see "[About Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/about-jekyll-build-errors-for-github-pages-sites)." +**Note:** It can take up to 10 minutes for changes to your site to publish after you push the changes to {% data variables.product.product_name %}. If your don't see your {% data variables.product.prodname_pages %} site changes reflected in your browser after an hour, see "[About Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/about-jekyll-build-errors-for-github-pages-sites)." \ No newline at end of file diff --git a/data/reusables/webhooks/commit_comment_properties.md b/data/reusables/webhooks/commit_comment_properties.md index d49f8f7a6d..0fa24770b4 100644 --- a/data/reusables/webhooks/commit_comment_properties.md +++ b/data/reusables/webhooks/commit_comment_properties.md @@ -1,4 +1,4 @@ Key | Type | Description ----|------|------------- `action`|`string` | The action performed. Can be `created`. -`comment`|`object` | The [commit comment](/rest/reference/repos#get-a-commit-comment) resource. +`comment`|`object` | The [commit comment](/rest/reference/commits#get-a-commit-comment) resource. diff --git a/data/reusables/webhooks/deploy_key_properties.md b/data/reusables/webhooks/deploy_key_properties.md index 00ead10fdc..03957f6ee7 100644 --- a/data/reusables/webhooks/deploy_key_properties.md +++ b/data/reusables/webhooks/deploy_key_properties.md @@ -1,4 +1,4 @@ Key | Type | Description ----|------|------------- `action` |`string` | The action performed. Can be either `created` or `deleted`. -`key` |`object` | The [`deploy key`](/rest/reference/repos#get-a-deploy-key) resource. +`key` |`object` | The [`deploy key`](/rest/reference/deployments#get-a-deploy-key) resource. diff --git a/data/reusables/webhooks/deployment_short_desc.md b/data/reusables/webhooks/deployment_short_desc.md index 249535a29d..5f74c88d0f 100644 --- a/data/reusables/webhooks/deployment_short_desc.md +++ b/data/reusables/webhooks/deployment_short_desc.md @@ -1 +1 @@ -A deployment is created. {% data reusables.webhooks.action_type_desc %} For more information, see the "[deployment](/rest/reference/repos#list-deployments)" REST API. +A deployment is created. {% data reusables.webhooks.action_type_desc %} For more information, see the "[deployment](/rest/reference/deployments#list-deployments)" REST API. diff --git a/data/reusables/webhooks/deployment_status_short_desc.md b/data/reusables/webhooks/deployment_status_short_desc.md index d58bd3e0ef..5c8fe47344 100644 --- a/data/reusables/webhooks/deployment_status_short_desc.md +++ b/data/reusables/webhooks/deployment_status_short_desc.md @@ -1 +1 @@ -A deployment is created. {% data reusables.webhooks.action_type_desc %} For more information, see the "[deployment statuses](/rest/reference/repos#list-deployment-statuses)" REST API. +A deployment is created. {% data reusables.webhooks.action_type_desc %} For more information, see the "[deployment statuses](/rest/reference/deployments#list-deployment-statuses)" REST API. diff --git a/data/ui.yml b/data/ui.yml index d35ee9a7c1..e692ce51af 100644 --- a/data/ui.yml +++ b/data/ui.yml @@ -62,7 +62,7 @@ survey: optional: Optional required: Required email_placeholder: email@example.com - email_label: Can we contact you if we have more questions? + email_label: If we can contact you with more questions, please enter your email address send: Send feedback: Thank you! We received your feedback. not_support: If you need a reply, please contact support instead. diff --git a/lib/graphql/static/changelog.json b/lib/graphql/static/changelog.json index 31a883026e..d4ffc5b315 100644 --- a/lib/graphql/static/changelog.json +++ b/lib/graphql/static/changelog.json @@ -1,4 +1,35 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "Type `ProjectNextOrderField` was added", + "Type `RoleInOrganization` was added", + "Type `UpdateOrganizationAllowPrivateRepositoryForkingSettingInput` was added", + "Type `UpdateOrganizationAllowPrivateRepositoryForkingSettingPayload` was added", + "Argument `viewerOrganizationRole: RoleInOrganization` added to field `Enterprise.organizations`", + "`Issue` object implements `ProjectNextOwner` interface", + "Field `projectNext` was added to object type `Issue`", + "Field `projectsNext` was added to object type `Issue`", + "Field `updateOrganizationAllowPrivateRepositoryForkingSetting` was added to object type `Mutation`", + "Field `membersCanForkPrivateRepositories` was added to object type `Organization`", + "Argument `query: String` added to field `Organization.projectsNext`", + "Argument `sortBy: ProjectNextOrderField` added to field `Organization.projectsNext`", + "Argument `query: String` added to field `ProjectNextOwner.projectsNext`", + "Argument `sortBy: ProjectNextOrderField` added to field `ProjectNextOwner.projectsNext`", + "`PullRequest` object implements `ProjectNextOwner` interface", + "Field `projectNext` was added to object type `PullRequest`", + "Field `projectsNext` was added to object type `PullRequest`", + "Argument `query: String` added to field `User.projectsNext`", + "Argument `sortBy: ProjectNextOrderField` added to field `User.projectsNext`" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2021-12-15" + }, { "schemaChanges": [ { diff --git a/lib/graphql/static/prerendered-input-objects.json b/lib/graphql/static/prerendered-input-objects.json index 40562a0d25..0b5c0190f5 100644 --- a/lib/graphql/static/prerendered-input-objects.json +++ b/lib/graphql/static/prerendered-input-objects.json @@ -1,6 +1,6 @@ { "dotcom": { - "html": "
    \n
    \n

    \n \n \nAcceptEnterpriseAdministratorInvitationInput

    \n

    Autogenerated input type of AcceptEnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The id of the invitation being accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAcceptTopicSuggestionInput

    \n

    Autogenerated input type of AcceptTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of AddEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will receive the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectNextItemInput

    \n

    Autogenerated input type of AddProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID!)

    The content id of the item (Issue or PullRequest).

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to add the item to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddVerifiableDomainInput

    \n

    Autogenerated input type of AddVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The URL of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner to add the domain to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveVerifiableDomainInput

    \n

    Autogenerated input type of ApproveVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to approve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelEnterpriseAdminInvitationInput

    \n

    Autogenerated input type of CancelEnterpriseAdminInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The Node ID of the pending enterprise administrator invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelSponsorshipInput

    \n

    Autogenerated input type of CancelSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateSponsorshipInput

    \n

    Autogenerated input type of CreateSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    amount (Int)

    The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRecurring (Boolean)

    Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierId (ID)

    The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeclineTopicSuggestionInput

    \n

    Autogenerated input type of DeclineTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (TopicSuggestionDeclineReason!)

    The reason why the suggested topic is declined.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePackageVersionInput

    \n

    Autogenerated input type of DeletePackageVersion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersionId (ID!)

    The ID of the package version to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectNextItemInput

    \n

    Autogenerated input type of DeleteProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The ID of the item to be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project from which the item should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteVerifiableDomainInput

    \n

    Autogenerated input type of DeleteVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationOrder

    \n

    Ordering options for Enterprise Server installation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerInstallationOrderField!)

    The field to order Enterprise Server installations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nInviteEnterpriseAdminInput

    \n

    Autogenerated input type of InviteEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise to which you want to invite an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (String)

    The login of a user to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileOrder

    \n

    Ways in which lists of package files can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package files by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageFileOrderField)

    The field in which to order package files by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageOrder

    \n

    Ways in which lists of packages can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order packages by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageOrderField)

    The field in which to order packages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionOrder

    \n

    Ways in which lists of package versions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package versions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageVersionOrderField)

    The field in which to order package versions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateEnterpriseIdentityProviderRecoveryCodesInput

    \n

    Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateVerifiableDomainTokenInput

    \n

    Autogenerated input type of RegenerateVerifiableDomainToken.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to regenerate the verification token of.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of RemoveEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which to remove the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseOrganizationInput

    \n

    Autogenerated input type of RemoveEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which the organization should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove from the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of RemoveEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will lose the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifierFilter

    \n

    An advisory identifier to filter results on.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (SecurityAdvisoryIdentifierType!)

    The identifier type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier string. Supports exact or partial matching.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryOrder

    \n

    Ordering options for security advisory connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityAdvisoryOrderField!)

    The field to order security advisories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityOrder

    \n

    Ordering options for security vulnerability connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityVulnerabilityOrderField!)

    The field to order security vulnerabilities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of SetEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethod (SamlDigestAlgorithm!)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    idpCertificate (String!)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm!)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI!)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetOrganizationInteractionLimitInput

    \n

    Autogenerated input type of SetOrganizationInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetRepositoryInteractionLimitInput

    \n

    Autogenerated input type of SetRepositoryInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetUserInteractionLimitInput

    \n

    Autogenerated input type of SetUserInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the user to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorOrder

    \n

    Ordering options for connections to get sponsor entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorOrderField!)

    The field to order sponsor entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableOrder

    \n

    Ordering options for connections to get sponsorable entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorableOrderField!)

    The field to order sponsorable entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityOrder

    \n

    Ordering options for GitHub Sponsors activity connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsActivityOrderField!)

    The field to order activity by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierOrder

    \n

    Ordering options for Sponsors tiers connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsTierOrderField!)

    The field to order tiers by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterOrder

    \n

    Ordering options for sponsorship newsletter connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipNewsletterOrderField!)

    The field to order sponsorship newsletters by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipOrder

    \n

    Ordering options for sponsorship connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipOrderField!)

    The field to order sponsorship by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAdministratorRoleInput

    \n

    Autogenerated input type of UpdateEnterpriseAdministratorRole.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a administrator whose role is being changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The new role for the Enterprise administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateNotificationRestrictionSettingInput

    \n

    Autogenerated input type of UpdateNotificationRestrictionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (NotificationRestrictionSettingValue!)

    The value for the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectNextItemFieldInput

    \n

    Autogenerated input type of UpdateProjectNextItemField.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldId (ID!)

    The id of the field to be updated. Only supports custom fields and status for now.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The id of the item to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The value which will be set on the field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSponsorshipPreferencesInput

    \n

    Autogenerated input type of UpdateSponsorshipPreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainOrder

    \n

    Ordering options for verifiable domain connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (VerifiableDomainOrderField!)

    The field to order verifiable domains by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifyVerifiableDomainInput

    \n

    Autogenerated input type of VerifyVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to verify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nAcceptEnterpriseAdministratorInvitationInput

    \n

    Autogenerated input type of AcceptEnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The id of the invitation being accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAcceptTopicSuggestionInput

    \n

    Autogenerated input type of AcceptTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of AddEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will receive the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectNextItemInput

    \n

    Autogenerated input type of AddProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID!)

    The content id of the item (Issue or PullRequest).

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to add the item to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddVerifiableDomainInput

    \n

    Autogenerated input type of AddVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The URL of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner to add the domain to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveVerifiableDomainInput

    \n

    Autogenerated input type of ApproveVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to approve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelEnterpriseAdminInvitationInput

    \n

    Autogenerated input type of CancelEnterpriseAdminInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The Node ID of the pending enterprise administrator invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelSponsorshipInput

    \n

    Autogenerated input type of CancelSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateSponsorshipInput

    \n

    Autogenerated input type of CreateSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    amount (Int)

    The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRecurring (Boolean)

    Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierId (ID)

    The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeclineTopicSuggestionInput

    \n

    Autogenerated input type of DeclineTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (TopicSuggestionDeclineReason!)

    The reason why the suggested topic is declined.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePackageVersionInput

    \n

    Autogenerated input type of DeletePackageVersion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersionId (ID!)

    The ID of the package version to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectNextItemInput

    \n

    Autogenerated input type of DeleteProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The ID of the item to be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project from which the item should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteVerifiableDomainInput

    \n

    Autogenerated input type of DeleteVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationOrder

    \n

    Ordering options for Enterprise Server installation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerInstallationOrderField!)

    The field to order Enterprise Server installations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nInviteEnterpriseAdminInput

    \n

    Autogenerated input type of InviteEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise to which you want to invite an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (String)

    The login of a user to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileOrder

    \n

    Ways in which lists of package files can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package files by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageFileOrderField)

    The field in which to order package files by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageOrder

    \n

    Ways in which lists of packages can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order packages by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageOrderField)

    The field in which to order packages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionOrder

    \n

    Ways in which lists of package versions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package versions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageVersionOrderField)

    The field in which to order package versions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateEnterpriseIdentityProviderRecoveryCodesInput

    \n

    Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateVerifiableDomainTokenInput

    \n

    Autogenerated input type of RegenerateVerifiableDomainToken.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to regenerate the verification token of.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of RemoveEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which to remove the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseOrganizationInput

    \n

    Autogenerated input type of RemoveEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which the organization should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove from the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of RemoveEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will lose the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifierFilter

    \n

    An advisory identifier to filter results on.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (SecurityAdvisoryIdentifierType!)

    The identifier type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier string. Supports exact or partial matching.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryOrder

    \n

    Ordering options for security advisory connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityAdvisoryOrderField!)

    The field to order security advisories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityOrder

    \n

    Ordering options for security vulnerability connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityVulnerabilityOrderField!)

    The field to order security vulnerabilities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of SetEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethod (SamlDigestAlgorithm!)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    idpCertificate (String!)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm!)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI!)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetOrganizationInteractionLimitInput

    \n

    Autogenerated input type of SetOrganizationInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetRepositoryInteractionLimitInput

    \n

    Autogenerated input type of SetRepositoryInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetUserInteractionLimitInput

    \n

    Autogenerated input type of SetUserInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the user to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorOrder

    \n

    Ordering options for connections to get sponsor entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorOrderField!)

    The field to order sponsor entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableOrder

    \n

    Ordering options for connections to get sponsorable entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorableOrderField!)

    The field to order sponsorable entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityOrder

    \n

    Ordering options for GitHub Sponsors activity connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsActivityOrderField!)

    The field to order activity by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierOrder

    \n

    Ordering options for Sponsors tiers connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsTierOrderField!)

    The field to order tiers by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterOrder

    \n

    Ordering options for sponsorship newsletter connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipNewsletterOrderField!)

    The field to order sponsorship newsletters by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipOrder

    \n

    Ordering options for sponsorship connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipOrderField!)

    The field to order sponsorship by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAdministratorRoleInput

    \n

    Autogenerated input type of UpdateEnterpriseAdministratorRole.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a administrator whose role is being changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The new role for the Enterprise administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateNotificationRestrictionSettingInput

    \n

    Autogenerated input type of UpdateNotificationRestrictionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (NotificationRestrictionSettingValue!)

    The value for the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateOrganizationAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingEnabled (Boolean!)

    Enable forking of private repositories in the organization?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectNextItemFieldInput

    \n

    Autogenerated input type of UpdateProjectNextItemField.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldId (ID!)

    The id of the field to be updated. Only supports custom fields and status for now.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The id of the item to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The value which will be set on the field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSponsorshipPreferencesInput

    \n

    Autogenerated input type of UpdateSponsorshipPreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainOrder

    \n

    Ordering options for verifiable domain connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (VerifiableDomainOrderField!)

    The field to order verifiable domains by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifyVerifiableDomainInput

    \n

    Autogenerated input type of VerifyVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to verify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n AcceptEnterpriseAdministratorInvitationInput", @@ -1521,6 +1521,13 @@ "indentationLevel": 0, "items": [] }, + { + "contents": "\n UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, { "contents": "\n UpdateProjectCardInput", "headingLevel": 2, @@ -1664,7 +1671,7 @@ ] }, "ghec": { - "html": "
    \n
    \n

    \n \n \nAcceptEnterpriseAdministratorInvitationInput

    \n

    Autogenerated input type of AcceptEnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The id of the invitation being accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAcceptTopicSuggestionInput

    \n

    Autogenerated input type of AcceptTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of AddEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will receive the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectNextItemInput

    \n

    Autogenerated input type of AddProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID!)

    The content id of the item (Issue or PullRequest).

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to add the item to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddVerifiableDomainInput

    \n

    Autogenerated input type of AddVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The URL of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner to add the domain to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveVerifiableDomainInput

    \n

    Autogenerated input type of ApproveVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to approve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelEnterpriseAdminInvitationInput

    \n

    Autogenerated input type of CancelEnterpriseAdminInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The Node ID of the pending enterprise administrator invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelSponsorshipInput

    \n

    Autogenerated input type of CancelSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateSponsorshipInput

    \n

    Autogenerated input type of CreateSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    amount (Int)

    The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRecurring (Boolean)

    Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierId (ID)

    The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeclineTopicSuggestionInput

    \n

    Autogenerated input type of DeclineTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (TopicSuggestionDeclineReason!)

    The reason why the suggested topic is declined.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePackageVersionInput

    \n

    Autogenerated input type of DeletePackageVersion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersionId (ID!)

    The ID of the package version to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectNextItemInput

    \n

    Autogenerated input type of DeleteProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The ID of the item to be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project from which the item should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteVerifiableDomainInput

    \n

    Autogenerated input type of DeleteVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationOrder

    \n

    Ordering options for Enterprise Server installation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerInstallationOrderField!)

    The field to order Enterprise Server installations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nInviteEnterpriseAdminInput

    \n

    Autogenerated input type of InviteEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise to which you want to invite an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (String)

    The login of a user to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileOrder

    \n

    Ways in which lists of package files can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package files by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageFileOrderField)

    The field in which to order package files by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageOrder

    \n

    Ways in which lists of packages can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order packages by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageOrderField)

    The field in which to order packages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionOrder

    \n

    Ways in which lists of package versions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package versions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageVersionOrderField)

    The field in which to order package versions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateEnterpriseIdentityProviderRecoveryCodesInput

    \n

    Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateVerifiableDomainTokenInput

    \n

    Autogenerated input type of RegenerateVerifiableDomainToken.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to regenerate the verification token of.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of RemoveEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which to remove the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseOrganizationInput

    \n

    Autogenerated input type of RemoveEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which the organization should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove from the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of RemoveEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will lose the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifierFilter

    \n

    An advisory identifier to filter results on.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (SecurityAdvisoryIdentifierType!)

    The identifier type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier string. Supports exact or partial matching.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryOrder

    \n

    Ordering options for security advisory connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityAdvisoryOrderField!)

    The field to order security advisories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityOrder

    \n

    Ordering options for security vulnerability connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityVulnerabilityOrderField!)

    The field to order security vulnerabilities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of SetEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethod (SamlDigestAlgorithm!)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    idpCertificate (String!)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm!)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI!)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetOrganizationInteractionLimitInput

    \n

    Autogenerated input type of SetOrganizationInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetRepositoryInteractionLimitInput

    \n

    Autogenerated input type of SetRepositoryInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetUserInteractionLimitInput

    \n

    Autogenerated input type of SetUserInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the user to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorOrder

    \n

    Ordering options for connections to get sponsor entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorOrderField!)

    The field to order sponsor entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableOrder

    \n

    Ordering options for connections to get sponsorable entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorableOrderField!)

    The field to order sponsorable entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityOrder

    \n

    Ordering options for GitHub Sponsors activity connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsActivityOrderField!)

    The field to order activity by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierOrder

    \n

    Ordering options for Sponsors tiers connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsTierOrderField!)

    The field to order tiers by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterOrder

    \n

    Ordering options for sponsorship newsletter connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipNewsletterOrderField!)

    The field to order sponsorship newsletters by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipOrder

    \n

    Ordering options for sponsorship connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipOrderField!)

    The field to order sponsorship by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAdministratorRoleInput

    \n

    Autogenerated input type of UpdateEnterpriseAdministratorRole.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a administrator whose role is being changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The new role for the Enterprise administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateNotificationRestrictionSettingInput

    \n

    Autogenerated input type of UpdateNotificationRestrictionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (NotificationRestrictionSettingValue!)

    The value for the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectNextItemFieldInput

    \n

    Autogenerated input type of UpdateProjectNextItemField.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldId (ID!)

    The id of the field to be updated. Only supports custom fields and status for now.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The id of the item to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The value which will be set on the field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSponsorshipPreferencesInput

    \n

    Autogenerated input type of UpdateSponsorshipPreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainOrder

    \n

    Ordering options for verifiable domain connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (VerifiableDomainOrderField!)

    The field to order verifiable domains by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifyVerifiableDomainInput

    \n

    Autogenerated input type of VerifyVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to verify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nAcceptEnterpriseAdministratorInvitationInput

    \n

    Autogenerated input type of AcceptEnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The id of the invitation being accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAcceptTopicSuggestionInput

    \n

    Autogenerated input type of AcceptTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of AddEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will receive the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectNextItemInput

    \n

    Autogenerated input type of AddProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID!)

    The content id of the item (Issue or PullRequest).

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to add the item to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddVerifiableDomainInput

    \n

    Autogenerated input type of AddVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The URL of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner to add the domain to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveVerifiableDomainInput

    \n

    Autogenerated input type of ApproveVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to approve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelEnterpriseAdminInvitationInput

    \n

    Autogenerated input type of CancelEnterpriseAdminInvitation.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationId (ID!)

    The Node ID of the pending enterprise administrator invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCancelSponsorshipInput

    \n

    Autogenerated input type of CancelSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateSponsorshipInput

    \n

    Autogenerated input type of CreateSponsorship.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    amount (Int)

    The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRecurring (Boolean)

    Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierId (ID)

    The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeclineTopicSuggestionInput

    \n

    Autogenerated input type of DeclineTopicSuggestion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the suggested topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (TopicSuggestionDeclineReason!)

    The reason why the suggested topic is declined.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePackageVersionInput

    \n

    Autogenerated input type of DeletePackageVersion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersionId (ID!)

    The ID of the package version to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectNextItemInput

    \n

    Autogenerated input type of DeleteProjectNextItem.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The ID of the item to be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project from which the item should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteVerifiableDomainInput

    \n

    Autogenerated input type of DeleteVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationOrder

    \n

    Ordering options for Enterprise Server installation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerInstallationOrderField!)

    The field to order Enterprise Server installations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nInviteEnterpriseAdminInput

    \n

    Autogenerated input type of InviteEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise to which you want to invite an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (String)

    The login of a user to invite as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileOrder

    \n

    Ways in which lists of package files can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package files by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageFileOrderField)

    The field in which to order package files by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageOrder

    \n

    Ways in which lists of packages can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order packages by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageOrderField)

    The field in which to order packages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionOrder

    \n

    Ways in which lists of package versions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The direction in which to order package versions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PackageVersionOrderField)

    The field in which to order package versions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateEnterpriseIdentityProviderRecoveryCodesInput

    \n

    Autogenerated input type of RegenerateEnterpriseIdentityProviderRecoveryCodes.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRegenerateVerifiableDomainTokenInput

    \n

    Autogenerated input type of RegenerateVerifiableDomainToken.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to regenerate the verification token of.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of RemoveEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which to remove the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseOrganizationInput

    \n

    Autogenerated input type of RemoveEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise from which the organization should be removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove from the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseSupportEntitlementInput

    \n

    Autogenerated input type of RemoveEnterpriseSupportEntitlement.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a member who will lose the support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifierFilter

    \n

    An advisory identifier to filter results on.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (SecurityAdvisoryIdentifierType!)

    The identifier type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier string. Supports exact or partial matching.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryOrder

    \n

    Ordering options for security advisory connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityAdvisoryOrderField!)

    The field to order security advisories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityOrder

    \n

    Ordering options for security vulnerability connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SecurityVulnerabilityOrderField!)

    The field to order security vulnerabilities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetEnterpriseIdentityProviderInput

    \n

    Autogenerated input type of SetEnterpriseIdentityProvider.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethod (SamlDigestAlgorithm!)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set an identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    idpCertificate (String!)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm!)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI!)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetOrganizationInteractionLimitInput

    \n

    Autogenerated input type of SetOrganizationInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetRepositoryInteractionLimitInput

    \n

    Autogenerated input type of SetRepositoryInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSetUserInteractionLimitInput

    \n

    Autogenerated input type of SetUserInteractionLimit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiry (RepositoryInteractionLimitExpiry)

    When this limit should expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The limit to set.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the user to set a limit for.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorOrder

    \n

    Ordering options for connections to get sponsor entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorOrderField!)

    The field to order sponsor entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableOrder

    \n

    Ordering options for connections to get sponsorable entities for GitHub Sponsors.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorableOrderField!)

    The field to order sponsorable entities by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityOrder

    \n

    Ordering options for GitHub Sponsors activity connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsActivityOrderField!)

    The field to order activity by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierOrder

    \n

    Ordering options for Sponsors tiers connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorsTierOrderField!)

    The field to order tiers by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterOrder

    \n

    Ordering options for sponsorship newsletter connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipNewsletterOrderField!)

    The field to order sponsorship newsletters by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipOrder

    \n

    Ordering options for sponsorship connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SponsorshipOrderField!)

    The field to order sponsorship by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAdministratorRoleInput

    \n

    Autogenerated input type of UpdateEnterpriseAdministratorRole.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the Enterprise which the admin belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of a administrator whose role is being changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The new role for the Enterprise administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateNotificationRestrictionSettingInput

    \n

    Autogenerated input type of UpdateNotificationRestrictionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (NotificationRestrictionSettingValue!)

    The value for the restrict notifications setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateOrganizationAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingEnabled (Boolean!)

    Enable forking of private repositories in the organization?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectNextItemFieldInput

    \n

    Autogenerated input type of UpdateProjectNextItemField.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldId (ID!)

    The id of the field to be updated. Only supports custom fields and status for now.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemId (ID!)

    The id of the item to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The value which will be set on the field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSponsorshipPreferencesInput

    \n

    Autogenerated input type of UpdateSponsorshipPreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy)

    Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    receiveEmails (Boolean)

    Whether the sponsor should receive email updates from the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorId (ID)

    The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorLogin (String)

    The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableId (ID)

    The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorableLogin (String)

    The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainOrder

    \n

    Ordering options for verifiable domain connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (VerifiableDomainOrderField!)

    The field to order verifiable domains by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifyVerifiableDomainInput

    \n

    Autogenerated input type of VerifyVerifiableDomain.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the verifiable domain to verify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n AcceptEnterpriseAdministratorInvitationInput", @@ -3185,6 +3192,13 @@ "indentationLevel": 0, "items": [] }, + { + "contents": "\n UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, { "contents": "\n UpdateProjectCardInput", "headingLevel": 2, @@ -8612,7 +8626,7 @@ ] }, "ghae": { - "html": "
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseAdminInput

    \n

    Autogenerated input type of AddEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise account to which the administrator should be added.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to add as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nAddAssigneesToAssignableInput

    \n

    Autogenerated input type of AddAssigneesToAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to add assignees to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to add as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddCommentInput

    \n

    Autogenerated input type of AddComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddDiscussionCommentInput

    \n

    Autogenerated input type of AddDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    replyToId (ID)

    The Node ID of the discussion comment within this discussion to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddEnterpriseAdminInput

    \n

    Autogenerated input type of AddEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise account to which the administrator should be added.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to add as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddLabelsToLabelableInput

    \n

    Autogenerated input type of AddLabelsToLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of the labels to add.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to add labels to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectCardInput

    \n

    Autogenerated input type of AddProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contentId (ID)

    The content of the card. Must be a member of the ProjectCardItem union.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note on the card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The Node ID of the ProjectColumn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddProjectColumnInput

    \n

    Autogenerated input type of AddProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Node ID of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewCommentInput

    \n

    Autogenerated input type of AddPullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The SHA of the commit to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inReplyTo (ID)

    The comment id to reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The relative path of the file to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewInput

    \n

    Autogenerated input type of AddPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The contents of the review body comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments ([DraftPullRequestReviewComment])

    The review line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOID (GitObjectID)

    The commit OID the review pertains to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent)

    The event to perform on the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threads ([DraftPullRequestReviewThread])

    The review line comment threads.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddPullRequestReviewThreadInput

    \n

    Autogenerated input type of AddPullRequestReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the thread's first comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The node ID of the pull request reviewing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Node ID of the review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddReactionInput

    \n

    Autogenerated input type of AddReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji to react with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddStarInput

    \n

    Autogenerated input type of AddStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to star.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddUpvoteInput

    \n

    Autogenerated input type of AddUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApproveDeploymentsInput

    \n

    Autogenerated input type of ApproveDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for approving deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nArchiveRepositoryInput

    \n

    Autogenerated input type of ArchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to mark as archived.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAuditLogOrder

    \n

    Ordering options for Audit Log connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (AuditLogOrderField)

    The field to order Audit Logs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nChangeUserStatusInput

    \n

    Autogenerated input type of ChangeUserStatus.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    The emoji to represent your status. Can either be a native Unicode emoji or an emoji name with colons, e.g., 😀.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the user status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitedAvailability (Boolean)

    Whether this status should indicate you are not fully available on GitHub, e.g., you are away.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A short description of your current status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID)

    The ID of the organization whose members will be allowed to see the status. If\nomitted, the status will be publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationData

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel!)

    Represents an annotation's information level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationRange!)

    The location of the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    A short description of the feedback for these lines of code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to add an annotation to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Details about this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title that represents the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationRange

    \n

    Information from a check run analysis to specific lines of code.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endColumn (Int)

    The ending column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endLine (Int!)

    The ending line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startColumn (Int)

    The starting column of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int!)

    The starting line of the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunAction

    \n

    Possible further actions the integrator can perform.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A short explanation of what this action would do.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifier (String!)

    A reference for the action on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The text to be displayed on a button in the web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunFilter

    \n

    The filters that are available when fetching check runs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check runs created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check runs by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkType (CheckRunType)

    Filters the check runs by this type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState)

    Filters the check runs by this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutput

    \n

    Descriptive details about the check run.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations ([CheckAnnotationData!])

    The annotations that are made as part of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    images ([CheckRunOutputImage!])

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    The summary of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    The details of the check run (supports Commonmark).

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A title to provide for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunOutputImage

    \n

    Images attached to the check run output displayed in the GitHub pull request UI.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    alt (String!)

    The alternative text for the image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    caption (String)

    A short image description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    imageUrl (URI!)

    The full URL of the image.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteAutoTriggerPreference

    \n

    The auto-trigger preferences that are available for check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID!)

    The node ID of the application that owns the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    setting (Boolean!)

    Set to true to enable automatic creation of CheckSuite events upon pushes to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteFilter

    \n

    The filters that are available when fetching check suites.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (Int)

    Filters the check suites created by this application ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkName (String)

    Filters the check suites by this name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClearLabelsFromLabelableInput

    \n

    Autogenerated input type of ClearLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the labelable object to clear the labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneProjectInput

    \n

    Autogenerated input type of CloneProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeWorkflows (Boolean!)

    Whether or not to clone the source project's workflows.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    The visibility of the project, defaults to false (private).

    \n\n\n\n\n\n\n\n\n\n\n\n

    sourceId (ID!)

    The source project to clone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetOwnerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloneTemplateRepositoryInput

    \n

    Autogenerated input type of CloneTemplateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includeAllBranches (Boolean)

    Whether to copy all branches from the template to the new repository. Defaults\nto copying only the default branch of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the template repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCloseIssueInput

    \n

    Autogenerated input type of CloseIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosePullRequestInput

    \n

    Autogenerated input type of ClosePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitAuthor

    \n

    Specifies an author for filtering Git commits.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([String!])

    Email addresses to filter by. Commits authored by any of the specified email addresses will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    ID of a User to filter by. If non-null, only commits authored by this user\nwill be returned. This field takes precedence over emails.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionOrder

    \n

    Ordering options for commit contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (CommitContributionOrderField!)

    The field by which to order commit contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitMessage

    \n

    A message to include with a new commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headline (String!)

    The headline of the message.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommittableBranch

    \n

    A git ref for a commit to be appended to.

    \n

    The ref must be a branch, i.e. its fully qualified name must start\nwith refs/heads/ (although the input is not required to be fully\nqualified).

    \n

    The Ref may be specified by its global node ID or by the\nrepository nameWithOwner and branch name.

    \n

    Examples

    \n

    Specify a branch using a global node ID:

    \n
    { "id": "MDM6UmVmMTpyZWZzL2hlYWRzL21haW4=" }\n
    \n

    Specify a branch using nameWithOwner and branch name:

    \n
    {\n  "nameWithOwner": "github/graphql-client",\n  "branchName": "main"\n}.\n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchName (String)

    The unqualified name of the branch to append the commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryNameWithOwner (String)

    The nameWithOwner of the repository to commit to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionOrder

    \n

    Ordering options for contribution connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertProjectCardNoteToIssueInput

    \n

    Autogenerated input type of ConvertProjectCardNoteToIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the newly created issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to convert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to create the issue in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the newly created issue. Defaults to the card's note text.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertPullRequestToDraftInput

    \n

    Autogenerated input type of ConvertPullRequestToDraft.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to convert to draft.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateBranchProtectionRuleInput

    \n

    Autogenerated input type of CreateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The global relay id of the repository in which a new branch protection rule should be created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckRunInput

    \n

    Autogenerated input type of CreateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCheckSuiteInput

    \n

    Autogenerated input type of CreateCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headSha (GitObjectID!)

    The SHA of the head commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateCommitOnBranchInput

    \n

    Autogenerated input type of CreateCommitOnBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (CommittableBranch!)

    The Ref to be updated. Must be a branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID!)

    The git commit oid expected at the head of the branch prior to the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fileChanges (FileChanges)

    A description of changes to files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (CommitMessage!)

    The commit message the be included with the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentInput

    \n

    Autogenerated input type of CreateDeployment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerge (Boolean)

    Attempt to automatically merge the default branch into the requested ref, defaults to true.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Short description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Name for the target deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    JSON payload with extra information about the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The node ID of the ref to be deployed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredContexts ([String!])

    The status contexts to verify against commit status checks. To bypass required\ncontexts, pass an empty array. Defaults to all unique contexts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    task (String)

    Specifies a task to execute.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDeploymentStatusInput

    \n

    Autogenerated input type of CreateDeploymentStatus.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateDeploymentStatusInput is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoInactive (Boolean)

    Adds a new inactive status to all non-transient, non-production environment\ndeployments with the same repository and environment name as the created\nstatus's deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentId (ID!)

    The node ID of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the status. Maximum length of 140 characters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    If provided, updates the environment of the deploy. Otherwise, does not modify the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentUrl (String)

    Sets the URL for accessing your environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (String)

    The log URL to associate with this status. This URL should contain\noutput to keep the user updated while the task is running or serve as\nhistorical information for what happened in the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    The state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateDiscussionInput

    \n

    Autogenerated input type of CreateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID!)

    The id of the discussion category to associate with this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The id of the repository on which to create the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnterpriseOrganizationInput

    \n

    Autogenerated input type of CreateEnterpriseOrganization.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminLogins ([String!]!)

    The logins for the administrators of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingEmail (String!)

    The email used for sending billing receipts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise owning the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String!)

    The profile name of the new organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateEnvironmentInput

    \n

    Autogenerated input type of CreateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIpAllowListEntryInput

    \n

    Autogenerated input type of CreateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner for which to create the new IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateIssueInput

    \n

    Autogenerated input type of CreateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    The Node ID for the user assignee for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueTemplate (String)

    The name of an issue template in the repository, assigns labels and assignees from the template to the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateLabelInput

    \n

    Autogenerated input type of CreateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    CreateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String!)

    A 6 character hex code, without the leading #, identifying the color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateProjectInput

    \n

    Autogenerated input type of CreateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The owner ID to create the project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryIds ([ID!])

    A list of repository IDs to create as linked repositories for the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (ProjectTemplate)

    The name of the GitHub-provided template.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatePullRequestInput

    \n

    Autogenerated input type of CreatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    baseRefName (String!)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository. You cannot update the base branch on a pull request to point\nto another repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draft (Boolean)

    Indicates whether this pull request should be a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    The name of the branch where your changes are implemented. For cross-repository pull requests\nin the same network, namespace head_ref_name with a user like this: username:branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRefInput

    \n

    Autogenerated input type of CreateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The fully qualified name of the new Ref (ie: refs/heads/my_new_branch).

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the new Ref shall target. Must point to a commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository to create the Ref in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateRepositoryInput

    \n

    Autogenerated input type of CreateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A short description of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID)

    The ID of the owner for the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID)

    When an organization is specified as the owner, this ID identifies the team\nthat should be granted access to the new repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionCommentInput

    \n

    Autogenerated input type of CreateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The ID of the discussion to which the comment belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreateTeamDiscussionInput

    \n

    Autogenerated input type of CreateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The content of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    private (Boolean)

    If true, restricts the visibility of this discussion to team members and\norganization admins. If false or not specified, allows any organization member\nto view this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamId (ID!)

    The ID of the team to which the discussion belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteBranchProtectionRuleInput

    \n

    Autogenerated input type of DeleteBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDeploymentInput

    \n

    Autogenerated input type of DeleteDeployment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the deployment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionCommentInput

    \n

    Autogenerated input type of DeleteDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node id of the discussion comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteDiscussionInput

    \n

    Autogenerated input type of DeleteDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The id of the discussion to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteEnvironmentInput

    \n

    Autogenerated input type of DeleteEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the environment to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIpAllowListEntryInput

    \n

    Autogenerated input type of DeleteIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueCommentInput

    \n

    Autogenerated input type of DeleteIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteIssueInput

    \n

    Autogenerated input type of DeleteIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteLabelInput

    \n

    Autogenerated input type of DeleteLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DeleteLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectCardInput

    \n

    Autogenerated input type of DeleteProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardId (ID!)

    The id of the card to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectColumnInput

    \n

    Autogenerated input type of DeleteProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteProjectInput

    \n

    Autogenerated input type of DeleteProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewCommentInput

    \n

    Autogenerated input type of DeletePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeletePullRequestReviewInput

    \n

    Autogenerated input type of DeletePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteRefInput

    \n

    Autogenerated input type of DeleteRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionCommentInput

    \n

    Autogenerated input type of DeleteTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeleteTeamDiscussionInput

    \n

    Autogenerated input type of DeleteTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The discussion ID to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentOrder

    \n

    Ordering options for deployment connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DeploymentOrderField!)

    The field to order deployments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisablePullRequestAutoMergeInput

    \n

    Autogenerated input type of DisablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to disable auto merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionOrder

    \n

    Ways in which lists of discussions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order discussions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (DiscussionOrderField!)

    The field by which to order discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissPullRequestReviewInput

    \n

    Autogenerated input type of DismissPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The contents of the pull request review dismissal message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDismissRepositoryVulnerabilityAlertInput

    \n

    Autogenerated input type of DismissRepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (DismissReason!)

    The reason the Dependabot alert is being dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlertId (ID!)

    The Dependabot alert ID to dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewComment

    \n

    Specifies a review comment to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    Position in the file to leave a comment on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDraftPullRequestReviewThread

    \n

    Specifies a review comment thread to be left with a Pull Request Review.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    Body of the comment to leave.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    The line of the blob to which the thread refers. The end of the line range for multi-line comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Path to the file being commented on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    side (DiffSide)

    The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The first line of the range to which the comment refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startSide (DiffSide)

    The side of the diff on which the start line resides.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnablePullRequestAutoMergeInput

    \n

    Autogenerated input type of EnablePullRequestAutoMerge.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the commit when the PR is mergable; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to enable auto-merge on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationOrder

    \n

    Ordering options for enterprise administrator invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseAdministratorInvitationOrderField!)

    The field to order enterprise administrator invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberOrder

    \n

    Ordering options for enterprise member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseMemberOrderField!)

    The field to order enterprise members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailOrder

    \n

    Ordering options for Enterprise Server user account email connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountEmailOrderField!)

    The field to order emails by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountOrder

    \n

    Ordering options for Enterprise Server user account connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountOrderField!)

    The field to order user accounts by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadOrder

    \n

    Ordering options for Enterprise Server user accounts upload connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (EnterpriseServerUserAccountsUploadOrderField!)

    The field to order user accounts uploads by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileAddition

    \n

    A command to add a file at the given path with the given contents as part of a\ncommit. Any existing file at that that path will be replaced.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contents (Base64String!)

    The base64 encoded contents of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the repository where the file will be located.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileChanges

    \n

    A description of a set of changes to a file tree to be made as part of\na git commit, modeled as zero or more file additions and zero or more\nfile deletions.

    \n

    Both fields are optional; omitting both will produce a commit with no\nfile changes.

    \n

    deletions and additions describe changes to files identified\nby their path in the git tree using unix-style path separators, i.e.\n/. The root of a git tree is an empty string, so paths are not\nslash-prefixed.

    \n

    path values must be unique across all additions and deletions\nprovided. Any duplication will result in a validation error.

    \n

    Encoding

    \n

    File contents must be provided in full for each FileAddition.

    \n

    The contents of a FileAddition must be encoded using RFC 4648\ncompliant base64, i.e. correct padding is required and no characters\noutside the standard alphabet may be used. Invalid base64\nencoding will be rejected with a validation error.

    \n

    The encoded contents may be binary.

    \n

    For text files, no assumptions are made about the character encoding of\nthe file contents (after base64 decoding). No charset transcoding or\nline-ending normalization will be performed; it is the client's\nresponsibility to manage the character encoding of files they provide.\nHowever, for maximum compatibility we recommend using UTF-8 encoding\nand ensuring that all files in a repository use a consistent\nline-ending convention (\\n or \\r\\n), and that all files end\nwith a newline.

    \n

    Modeling file changes

    \n

    Each of the the five types of conceptual changes that can be made in a\ngit commit can be described using the FileChanges type as follows:

    \n
      \n
    1. \n

      New file addition: create file hello world\\n at path docs/README.txt:

      \n

      {\n"additions" [\n{\n"path": "docs/README.txt",\n"contents": base64encode("hello world\\n")\n}\n]\n}

      \n
    2. \n
    3. \n

      Existing file modification: change existing docs/README.txt to have new\ncontent new content here\\n:

      \n
      {\n  "additions" [\n    {\n      "path": "docs/README.txt",\n      "contents": base64encode("new content here\\n")\n    }\n  ]\n}\n
      \n
    4. \n
    5. \n

      Existing file deletion: remove existing file docs/README.txt.\nNote that the path is required to exist -- specifying a\npath that does not exist on the given branch will abort the\ncommit and return an error.

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt"\n    }\n  ]\n}\n
      \n
    6. \n
    7. \n

      File rename with no changes: rename docs/README.txt with\nprevious content hello world\\n to the same content at\nnewdocs/README.txt:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("hello world\\n")\n    }\n  ]\n}\n
      \n
    8. \n
    9. \n

      File rename with changes: rename docs/README.txt with\nprevious content hello world\\n to a file at path\nnewdocs/README.txt with content new contents\\n:

      \n
      {\n  "deletions" [\n    {\n      "path": "docs/README.txt",\n    }\n  ],\n  "additions" [\n    {\n      "path": "newdocs/README.txt",\n      "contents": base64encode("new contents\\n")\n    }\n  ]\n}.\n
      \n
    10. \n
    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions ([FileAddition!])

    File to add or change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions ([FileDeletion!])

    Files to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFileDeletion

    \n

    A command to delete the file at the given path as part of a commit.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    path (String!)

    The path to delete.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowUserInput

    \n

    Autogenerated input type of FollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to follow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistOrder

    \n

    Ordering options for gist connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (GistOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nImportProjectInput

    \n

    Autogenerated input type of ImportProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnImports ([ProjectColumnImport!]!)

    A list of columns containing issues and pull requests.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of Project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerName (String!)

    The name of the Organization or User to create the Project under.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the Project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryOrder

    \n

    Ordering options for IP allow list entry connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IpAllowListEntryOrderField!)

    The field to order IP allow list entries by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentOrder

    \n

    Ways in which lists of issue comments can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issue comments by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueCommentOrderField!)

    The field in which to order issue comments by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueFilters

    \n

    Ways in which to filter lists of issues.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignee (String)

    List issues assigned to given name. Pass in null for issues with no assigned\nuser, and * for issues assigned to any user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdBy (String)

    List issues created by given name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels ([String!])

    List issues where the list of label names exist on the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentioned (String)

    List issues where the given name is mentioned in the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (String)

    List issues by given milestone argument. If an string representation of an\ninteger is passed, it should refer to a milestone by its number field. Pass in\nnull for issues with no milestone, and * for issues that are assigned to any milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    since (DateTime)

    List issues that have been updated at or after the given date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    states ([IssueState!])

    List issues filtered by the list of states given.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscribed (Boolean)

    List issues subscribed to by viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order issues by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (IssueOrderField!)

    The field in which to order issues by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelOrder

    \n

    Ways in which lists of labels can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order labels by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LabelOrderField!)

    The field in which to order labels by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageOrder

    \n

    Ordering options for language connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (LanguageOrderField!)

    The field to order languages by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLinkRepositoryToProjectInput

    \n

    Autogenerated input type of LinkRepositoryToProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project to link to a Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository to link to a Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockLockableInput

    \n

    Autogenerated input type of LockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    A reason for why the item will be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of MarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to mark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkFileAsViewedInput

    \n

    Autogenerated input type of MarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as viewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkPullRequestReadyForReviewInput

    \n

    Autogenerated input type of MarkPullRequestReadyForReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be marked as ready for review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergeBranchInput

    \n

    Autogenerated input type of MergeBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    base (String!)

    The name of the base branch that the provided head will be merged into.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitMessage (String)

    Message to use for the merge commit. If omitted, a default will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    head (String!)

    The head to merge into the base branch. This can be a branch name or a commit GitObjectID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the Repository containing the base branch that will be modified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergePullRequestInput

    \n

    Autogenerated input type of MergePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address to associate with this merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    Commit body to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    Commit headline to use for the merge commit; if omitted, a default message will be used.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    OID that the pull request head ref must match to allow merge; if omitted, no check is performed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod)

    The merge method to use. If omitted, defaults to 'MERGE'.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneOrder

    \n

    Ordering options for milestone connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (MilestoneOrderField!)

    The field to order milestones by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMinimizeCommentInput

    \n

    Autogenerated input type of MinimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    classifier (ReportedContentClassifiers!)

    The classification of comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectCardInput

    \n

    Autogenerated input type of MoveProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterCardId (ID)

    Place the new card after the card with this id. Pass null to place it at the top.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cardId (ID!)

    The id of the card to move.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move it into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMoveProjectColumnInput

    \n

    Autogenerated input type of MoveProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterColumnId (ID)

    Place the new column after the column with this id. Pass null to place it at the front.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columnId (ID!)

    The id of the column to move.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationOrder

    \n

    Ordering options for organization connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (OrganizationOrderField!)

    The field to order organizations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinIssueInput

    \n

    Autogenerated input type of PinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardImport

    \n

    An issue or PR and its owning repository to be used in a project card.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    number (Int!)

    The issue or pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (String!)

    Repository name with owner (owner/repository).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnImport

    \n

    A project column and a list of its issues and PRs.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    columnName (String!)

    The name of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues ([ProjectCardImport!])

    A list of issues and pull requests in the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int!)

    The position of the column, starting from 0.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectOrder

    \n

    Ways in which lists of projects can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order projects by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ProjectOrderField!)

    The field in which to order projects by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestOrder

    \n

    Ways in which lists of issues can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order pull requests by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (PullRequestOrderField!)

    The field in which to order pull requests by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionOrder

    \n

    Ways in which lists of reactions can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order reactions by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReactionOrderField!)

    The field in which to order reactions by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefOrder

    \n

    Ways in which lists of git refs can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order refs by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RefOrderField!)

    The field in which to order refs by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdate

    \n

    A ref update.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    RefUpdate is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    afterOid (GitObjectID!)

    The value this ref should be updated to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeOid (GitObjectID)

    The value this ref needs to point to before the update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Force a non fast-forward update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (GitRefname!)

    The fully qualified name of the ref to be update. For example refs/heads/branch-name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRejectDeploymentsInput

    \n

    Autogenerated input type of RejectDeployments.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comment (String)

    Optional comment for rejecting deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentIds ([ID!]!)

    The ids of environments to reject deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRunId (ID!)

    The node ID of the workflow run containing the pending deployments.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseOrder

    \n

    Ways in which lists of releases can be ordered upon return.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order releases by the specified field.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (ReleaseOrderField!)

    The field in which to order releases by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveAssigneesFromAssignableInput

    \n

    Autogenerated input type of RemoveAssigneesFromAssignable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableId (ID!)

    The id of the assignable object to remove assignees from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assigneeIds ([ID!]!)

    The id of users to remove as assignees.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveEnterpriseAdminInput

    \n

    Autogenerated input type of RemoveEnterpriseAdmin.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID from which to remove the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user to remove as an administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveLabelsFromLabelableInput

    \n

    Autogenerated input type of RemoveLabelsFromLabelable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!]!)

    The ids of labels to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelableId (ID!)

    The id of the Labelable to remove labels from.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveOutsideCollaboratorInput

    \n

    Autogenerated input type of RemoveOutsideCollaborator.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization to remove the outside collaborator from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    The ID of the outside collaborator to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveReactionInput

    \n

    Autogenerated input type of RemoveReaction.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ReactionContent!)

    The name of the emoji reaction to remove.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveStarInput

    \n

    Autogenerated input type of RemoveStar.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starrableId (ID!)

    The Starrable ID to unstar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemoveUpvoteInput

    \n

    Autogenerated input type of RemoveUpvote.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the discussion or comment to remove upvote.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenIssueInput

    \n

    Autogenerated input type of ReopenIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    ID of the issue to be opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenPullRequestInput

    \n

    Autogenerated input type of ReopenPullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    ID of the pull request to be reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationOrder

    \n

    Ordering options for repository invitation connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryInvitationOrderField!)

    The field to order repository invitations by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryOrder

    \n

    Ordering options for repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (RepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequestReviewsInput

    \n

    Autogenerated input type of RequestReviews.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamIds ([ID!])

    The Node IDs of the team to request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    union (Boolean)

    Add users to the set rather than replace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userIds ([ID!])

    The Node IDs of the user to request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckInput

    \n

    Specifies the attributes for a new or updated required status check.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    appId (ID)

    The ID of the App that must set the status in order for it to be accepted.\nOmit this value to use whichever app has recently been setting this status, or\nuse "any" to allow any app to set the status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    Status check context that must pass for commits to be accepted to the matching branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRerequestCheckSuiteInput

    \n

    Autogenerated input type of RerequestCheckSuite.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuiteId (ID!)

    The Node ID of the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nResolveReviewThreadInput

    \n

    Autogenerated input type of ResolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to resolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyOrder

    \n

    Ordering options for saved reply connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (SavedReplyOrderField!)

    The field to order saved replies by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarOrder

    \n

    Ways in which star connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (StarOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmitPullRequestReviewInput

    \n

    Autogenerated input type of SubmitPullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The text field to set on the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    event (PullRequestReviewEvent!)

    The event to send to the Pull Request Review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID)

    The Pull Request ID to submit any pending reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID)

    The Pull Request Review ID to submit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentOrder

    \n

    Ways in which team discussion comment connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionCommentOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionOrder

    \n

    Ways in which team discussion connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamDiscussionOrderField!)

    The field by which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberOrder

    \n

    Ordering options for team member connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamMemberOrderField!)

    The field to order team members by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamOrder

    \n

    Ways in which team connections can be ordered.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The direction in which to order nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamOrderField!)

    The field in which to order nodes by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryOrder

    \n

    Ordering options for team repository connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (TeamRepositoryOrderField!)

    The field to order repositories by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferIssueInput

    \n

    Autogenerated input type of TransferIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The Node ID of the issue to be transferred.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository the issue should be transferred to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnarchiveRepositoryInput

    \n

    Autogenerated input type of UnarchiveRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to unarchive.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnfollowUserInput

    \n

    Autogenerated input type of UnfollowUser.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userId (ID!)

    ID of the user to unfollow.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlinkRepositoryFromProjectInput

    \n

    Autogenerated input type of UnlinkRepositoryFromProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The ID of the Project linked to the Repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the Repository linked to the Project.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockLockableInput

    \n

    Autogenerated input type of UnlockLockable.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockableId (ID!)

    ID of the item to be unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkDiscussionCommentAsAnswerInput

    \n

    Autogenerated input type of UnmarkDiscussionCommentAsAnswer.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion comment to unmark as an answer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkFileAsViewedInput

    \n

    Autogenerated input type of UnmarkFileAsViewed.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file to mark as unviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkIssueAsDuplicateInput

    \n

    Autogenerated input type of UnmarkIssueAsDuplicate.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    canonicalId (ID!)

    ID of the issue or pull request currently considered canonical/authoritative/original.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicateId (ID!)

    ID of the issue or pull request currently marked as a duplicate.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnminimizeCommentInput

    \n

    Autogenerated input type of UnminimizeComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subjectId (ID!)

    The Node ID of the subject to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinIssueInput

    \n

    Autogenerated input type of UnpinIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueId (ID!)

    The ID of the issue to be unpinned.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnresolveReviewThreadInput

    \n

    Autogenerated input type of UnresolveReviewThread.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    threadId (ID!)

    The ID of the thread to unresolve.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateBranchProtectionRuleInput

    \n

    Autogenerated input type of UpdateBranchProtectionRule.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleId (ID!)

    The global relay id of the branch protection rule to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bypassPullRequestActorIds ([ID!])

    A list of User or Team IDs allowed to bypass pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String)

    The glob-like pattern used to determine matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushActorIds ([ID!])

    A list of User, Team or App IDs allowed to push to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String!])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckInput!])

    The list of required status checks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalActorIds ([ID!])

    A list of User or Team IDs allowed to dismiss reviews on pull requests targeting matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckRunInput

    \n

    Autogenerated input type of UpdateCheckRun.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actions ([CheckRunAction!])

    Possible further actions the integrator can perform, which a user may trigger.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRunId (ID!)

    The node of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    The time that the check run finished.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The final conclusion of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL of the integrator's site that has the full details of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the check.

    \n\n\n\n\n\n\n\n\n\n\n\n

    output (CheckRunOutput)

    Descriptive details about the run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    The time that the check run began.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (RequestableCheckStatusState)

    The current status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateCheckSuitePreferencesInput

    \n

    Autogenerated input type of UpdateCheckSuitePreferences.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoTriggerPreferences ([CheckSuiteAutoTriggerPreference!]!)

    The check suite preferences to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionCommentInput

    \n

    Autogenerated input type of UpdateDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The new contents of the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentId (ID!)

    The Node ID of the discussion comment to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateDiscussionInput

    \n

    Autogenerated input type of UpdateDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The new contents of the discussion body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    categoryId (ID)

    The Node ID of a discussion category within the same repository to change this discussion to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionId (ID!)

    The Node ID of the discussion to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The new discussion title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the allow private repository forking setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseDefaultRepositoryPermissionSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseDefaultRepositoryPermissionSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the base repository permission setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The value for the base repository permission setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can change repository visibility setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanCreateRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanCreateRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can create repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateInternalRepositories (Boolean)

    Allow members to create internal repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositories (Boolean)

    Allow members to create private repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositories (Boolean)

    Allow members to create public repositories. Defaults to current value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesPolicyEnabled (Boolean)

    When false, allow member organizations to set their own repository creation member privileges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanCreateRepositoriesSettingValue)

    Value for the members can create repositories setting on the enterprise. This\nor the granular public/private/internal allowed fields (but not both) must be provided.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteIssuesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteIssuesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete issues setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete issues setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanDeleteRepositoriesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanDeleteRepositoriesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can delete repositories setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can delete repositories setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanInviteCollaboratorsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanInviteCollaboratorsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can invite collaborators setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanMakePurchasesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanMakePurchasesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can make purchases setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseMembersCanMakePurchasesSettingValue!)

    The value for the members can make purchases setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanUpdateProtectedBranchesSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanUpdateProtectedBranchesSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can update protected branches setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can update protected branches setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseMembersCanViewDependencyInsightsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseMembersCanViewDependencyInsightsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the members can view dependency insights setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseOrganizationProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseOrganizationProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the organization projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the organization projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseProfileInput

    \n

    Autogenerated input type of UpdateEnterpriseProfile.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The Enterprise ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (String)

    The URL of the enterprise's website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseRepositoryProjectsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseRepositoryProjectsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the repository projects setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the repository projects setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTeamDiscussionsSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the team discussions setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledDisabledSettingValue!)

    The value for the team discussions setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnterpriseTwoFactorAuthenticationRequiredSettingInput

    \n

    Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationRequiredSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseId (ID!)

    The ID of the enterprise on which to set the two factor authentication required setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (EnterpriseEnabledSettingValue!)

    The value for the two factor authentication required setting on the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateEnvironmentInput

    \n

    Autogenerated input type of UpdateEnvironment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environmentId (ID!)

    The node ID of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers ([ID!])

    The ids of users or teams that can approve deployments to this environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimer (Int)

    The wait timer in minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner on which to set the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListEnabledSettingValue!)

    The value for the IP allow list enabled setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListEntryInput

    \n

    Autogenerated input type of UpdateIpAllowListEntry.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    An IP address or range of addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntryId (ID!)

    The ID of the IP allow list entry to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the IP allow list entry is active when an IP allow list is enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    An optional name for the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIpAllowListForInstalledAppsEnabledSettingInput

    \n

    Autogenerated input type of UpdateIpAllowListForInstalledAppsEnabledSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ownerId (ID!)

    The ID of the owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settingValue (IpAllowListForInstalledAppsEnabledSettingValue!)

    The value for the IP allow list configuration for installed GitHub Apps setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueCommentInput

    \n

    Autogenerated input type of UpdateIssueComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the IssueComment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateIssueInput

    \n

    Autogenerated input type of UpdateIssue.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The body for the issue description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the Issue to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState)

    The desired issue state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title for the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateLabelInput

    \n

    Autogenerated input type of UpdateLabel.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateLabelInput is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    color (String)

    A 6 character hex code, without the leading #, identifying the updated color of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of the label, such as its purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the label to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The updated name of the label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateOrganizationAllowPrivateRepositoryForkingSettingInput

    \n

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingEnabled (Boolean!)

    Enable forking of private repositories in the organization?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationId (ID!)

    The ID of the organization on which to set the allow private repository forking setting.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectCardInput

    \n

    Autogenerated input type of UpdateProjectCard.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean)

    Whether or not the ProjectCard should be archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The note of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCardId (ID!)

    The ProjectCard ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectColumnInput

    \n

    Autogenerated input type of UpdateProjectColumn.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectColumnId (ID!)

    The ProjectColumn ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateProjectInput

    \n

    Autogenerated input type of UpdateProject.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The description of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectId (ID!)

    The Project ID to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    public (Boolean)

    Whether the project is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestBranchInput

    \n

    Autogenerated input type of UpdatePullRequestBranch.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expectedHeadOid (GitObjectID)

    The head ref oid for the upstream branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestInput

    \n

    Autogenerated input type of UpdatePullRequest.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assigneeIds ([ID!])

    An array of Node IDs of users for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    The name of the branch you want your changes pulled into. This should be an existing branch\non the current repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The contents of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelIds ([ID!])

    An array of Node IDs of labels for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneId (ID)

    The Node ID of the milestone for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectIds ([ID!])

    An array of Node IDs for projects associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestId (ID!)

    The Node ID of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestUpdateState)

    The target state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewCommentInput

    \n

    Autogenerated input type of UpdatePullRequestReviewComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewCommentId (ID!)

    The Node ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdatePullRequestReviewInput

    \n

    Autogenerated input type of UpdatePullRequestReview.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReviewId (ID!)

    The Node ID of the pull request review to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefInput

    \n

    Autogenerated input type of UpdateRef.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    force (Boolean)

    Permit updates of branch Refs that are not fast-forwards?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The GitObjectID that the Ref shall be updated to target.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refId (ID!)

    The Node ID of the Ref to be updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRefsInput

    \n

    Autogenerated input type of UpdateRefs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateRefsInput is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdates ([RefUpdate!]!)

    A list of ref updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateRepositoryInput

    \n

    Autogenerated input type of UpdateRepository.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A new description for the repository. Pass an empty string to erase the existing description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean)

    Indicates if the repository should have the issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean)

    Indicates if the repository should have the project boards feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean)

    Indicates if the repository should have the wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The URL for a web page about this repository. Pass an empty string to erase the existing URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The new name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The ID of the repository to update.

    \n\n\n\n\n\n\n\n\n\n\n\n

    template (Boolean)

    Whether this repository should be marked as a template such that anyone who\ncan access it can create new repositories with the same files and directory structure.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateSubscriptionInput

    \n

    Autogenerated input type of UpdateSubscription.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (SubscriptionState!)

    The new state of the subscription.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribableId (ID!)

    The Node ID of the subscribable object to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionCommentInput

    \n

    Autogenerated input type of UpdateTeamDiscussionComment.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The updated text of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The ID of the comment to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamDiscussionInput

    \n

    Autogenerated input type of UpdateTeamDiscussion.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The updated text of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String)

    The current version of the body content. If provided, this update operation\nwill be rejected if the given version does not match the latest version on the server.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the discussion to modify.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinned (Boolean)

    If provided, sets the pinned state of the updated discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The updated title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTeamReviewAssignmentInput

    \n

    Autogenerated input type of UpdateTeamReviewAssignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    UpdateTeamReviewAssignmentInput is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    algorithm (TeamReviewAssignmentAlgorithm)

    The algorithm to use for review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Turn on or off review assignment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    excludedTeamMemberIds ([ID!])

    An array of team member IDs to exclude.

    \n\n\n\n\n\n\n\n\n\n\n\n

    id (ID!)

    The Node ID of the team to update review assignments of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notifyTeam (Boolean)

    Notify the entire team of the PR if it is delegated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamMemberCount (Int)

    The number of team members to assign.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUpdateTopicsInput

    \n

    Autogenerated input type of UpdateTopics.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryId (ID!)

    The Node ID of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicNames ([String!]!)

    An array of topic names.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusOrder

    \n

    Ordering options for user status connections.

    \n
    \n\n
    \n \n \n\n\n

    Input fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    direction (OrderDirection!)

    The ordering direction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    field (UserStatusOrderField!)

    The field to order user statuses by.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n AddAssigneesToAssignableInput", @@ -9874,6 +9888,13 @@ "indentationLevel": 0, "items": [] }, + { + "contents": "\n UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, { "contents": "\n UpdateProjectCardInput", "headingLevel": 2, diff --git a/lib/graphql/static/prerendered-mutations.json b/lib/graphql/static/prerendered-mutations.json new file mode 100644 index 0000000000..f2313edd33 --- /dev/null +++ b/lib/graphql/static/prerendered-mutations.json @@ -0,0 +1,7198 @@ +{ + "dotcom": { + "html": "
    \n
    \n

    \n \n \nacceptEnterpriseAdministratorInvitation

    \n

    Accepts a pending invitation for a user to become an administrator of an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The invitation that was accepted.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of accepting an administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nacceptTopicSuggestion

    \n

    Applies a suggested topic to the repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    topic (Topic)

    The accepted topic.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddDiscussionComment

    \n

    Adds a comment to a Discussion, possibly as a reply to another comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The newly created discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseSupportEntitlement

    \n

    Adds a support entitlement to an enterprise member.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of adding the support entitlement.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectNextItem

    \n

    Adds an existing item (Issue or PullRequest) to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectNextItem (ProjectNextItem)

    The item added to the project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddUpvote

    \n

    Add an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddVerifiableDomain

    \n

    Adds a verifiable domain to an owning account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was added.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveDeployments

    \n

    Approve all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveVerifiableDomain

    \n

    Approve a verifiable domain for notification delivery.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was approved.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncancelEnterpriseAdminInvitation

    \n

    Cancels a pending invitation for an administrator to join an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The invitation that was canceled.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of canceling an administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncancelSponsorship

    \n

    Cancel an active sponsorship.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The tier that was being used at the time of cancellation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertPullRequestToDraft

    \n

    Converts a pull request to draft.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is now a draft.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCommitOnBranch

    \n

    Appends a commit to the given branch as the authenticated user.

    \n

    This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

    \n

    Locating a Branch

    \n

    Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

    \n

    Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

    \n

    Describing Changes

    \n

    fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

    \n

    Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

    \n

    Authorship

    \n

    Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

    \n

    A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

    \n

    If you need full control over author and committer information, please\nuse the Git Database REST API instead.

    \n

    Commit Signing

    \n

    Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commit (Commit)

    The new commit.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The ref which has been updated to point to the new commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDiscussion

    \n

    Create a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnvironment

    \n

    Creates an environment or simply returns it if already exists.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The new or existing environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateSponsorship

    \n

    Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorship (Sponsorship)

    The sponsorship that was started.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeclineTopicSuggestion

    \n

    Rejects a suggested topic for the repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    topic (Topic)

    The declined topic.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussion

    \n

    Delete a discussion and all of its replies.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussionComment

    \n

    Delete a discussion comment. If it has replies, wipe it instead.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The discussion comment that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteEnvironment

    \n

    Deletes an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectNextItem

    \n

    Deletes an item from a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedItemId (ID)

    The ID of the deleted item.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteVerifiableDomain

    \n

    Deletes a verifiable domain.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owning account from which the domain was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissRepositoryVulnerabilityAlert

    \n

    Dismisses the Dependabot alert.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

    The Dependabot alert that was dismissed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ninviteEnterpriseAdmin

    \n

    Invite someone to become an administrator of the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The created enterprise administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkDiscussionCommentAsAnswer

    \n

    Mark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the chosen comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateEnterpriseIdentityProviderRecoveryCodes

    \n

    Regenerates the identity provider recovery codes for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider for the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateVerifiableDomainToken

    \n

    Regenerates a verifiable domain's verification token.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    verificationToken (String)

    The verification token that was generated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrejectDeployments

    \n

    Reject all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseIdentityProvider

    \n

    Removes the identity provider from an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider that was removed from the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseOrganization

    \n

    Removes an organization from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was removed from the enterprise.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseSupportEntitlement

    \n

    Removes a support entitlement from an enterprise member.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing the support entitlement.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveUpvote

    \n

    Remove an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetEnterpriseIdentityProvider

    \n

    Creates or updates the identity provider for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider for the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetOrganizationInteractionLimit

    \n

    Set an organization level interaction limit for an organization's public repositories.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetRepositoryInteractionLimit

    \n

    Sets an interaction limit setting for a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetUserInteractionLimit

    \n

    Set a user level interaction limit for an user's public repositories.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkDiscussionCommentAsAnswer

    \n

    Unmark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussion

    \n

    Update a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The modified discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussionComment

    \n

    Update the contents of a comment on a Discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The modified discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAdministratorRole

    \n

    Updates the role of an enterprise administrator.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of changing the administrator's role.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the base repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated base repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the base repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnvironment

    \n

    Updates an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The updated environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

    \n

    Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateNotificationRestrictionSetting

    \n

    Update the setting to restrict notifications to only verified or approved domains available to an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectNextItemField

    \n

    Updates a field of an item from a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectNextItem (ProjectNextItem)

    The updated item.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestBranch

    \n

    Merge HEAD from upstream branch into pull request branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSponsorshipPreferences

    \n

    Change visibility of your sponsorship and opt in or out of email updates from the maintainer.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorship (Sponsorship)

    The sponsorship that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nverifyVerifiableDomain

    \n

    Verify that a verifiable domain has the expected DNS record.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was verified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n acceptEnterpriseAdministratorInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n acceptTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelEnterpriseAdminInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n declineTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n inviteEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateEnterpriseIdentityProviderRecoveryCodes", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setOrganizationInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setRepositoryInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setUserInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAdministratorRole", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectNextItemField", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSponsorshipPreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghec": { + "html": "
    \n
    \n

    \n \n \nacceptEnterpriseAdministratorInvitation

    \n

    Accepts a pending invitation for a user to become an administrator of an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The invitation that was accepted.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of accepting an administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nacceptTopicSuggestion

    \n

    Applies a suggested topic to the repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    topic (Topic)

    The accepted topic.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddDiscussionComment

    \n

    Adds a comment to a Discussion, possibly as a reply to another comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The newly created discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseSupportEntitlement

    \n

    Adds a support entitlement to an enterprise member.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of adding the support entitlement.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectNextItem

    \n

    Adds an existing item (Issue or PullRequest) to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectNextItem (ProjectNextItem)

    The item added to the project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddUpvote

    \n

    Add an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddVerifiableDomain

    \n

    Adds a verifiable domain to an owning account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was added.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveDeployments

    \n

    Approve all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveVerifiableDomain

    \n

    Approve a verifiable domain for notification delivery.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was approved.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncancelEnterpriseAdminInvitation

    \n

    Cancels a pending invitation for an administrator to join an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The invitation that was canceled.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of canceling an administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncancelSponsorship

    \n

    Cancel an active sponsorship.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The tier that was being used at the time of cancellation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertPullRequestToDraft

    \n

    Converts a pull request to draft.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is now a draft.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCommitOnBranch

    \n

    Appends a commit to the given branch as the authenticated user.

    \n

    This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

    \n

    Locating a Branch

    \n

    Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

    \n

    Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

    \n

    Describing Changes

    \n

    fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

    \n

    Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

    \n

    Authorship

    \n

    Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

    \n

    A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

    \n

    If you need full control over author and committer information, please\nuse the Git Database REST API instead.

    \n

    Commit Signing

    \n

    Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commit (Commit)

    The new commit.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The ref which has been updated to point to the new commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDiscussion

    \n

    Create a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnvironment

    \n

    Creates an environment or simply returns it if already exists.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The new or existing environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateSponsorship

    \n

    Start a new sponsorship of a maintainer in GitHub Sponsors, or reactivate a past sponsorship.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorship (Sponsorship)

    The sponsorship that was started.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeclineTopicSuggestion

    \n

    Rejects a suggested topic for the repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    topic (Topic)

    The declined topic.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussion

    \n

    Delete a discussion and all of its replies.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussionComment

    \n

    Delete a discussion comment. If it has replies, wipe it instead.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The discussion comment that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteEnvironment

    \n

    Deletes an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectNextItem

    \n

    Deletes an item from a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedItemId (ID)

    The ID of the deleted item.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteVerifiableDomain

    \n

    Deletes a verifiable domain.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owning account from which the domain was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissRepositoryVulnerabilityAlert

    \n

    Dismisses the Dependabot alert.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

    The Dependabot alert that was dismissed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ninviteEnterpriseAdmin

    \n

    Invite someone to become an administrator of the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invitation (EnterpriseAdministratorInvitation)

    The created enterprise administrator invitation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkDiscussionCommentAsAnswer

    \n

    Mark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the chosen comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateEnterpriseIdentityProviderRecoveryCodes

    \n

    Regenerates the identity provider recovery codes for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider for the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateVerifiableDomainToken

    \n

    Regenerates a verifiable domain's verification token.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    verificationToken (String)

    The verification token that was generated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrejectDeployments

    \n

    Reject all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseIdentityProvider

    \n

    Removes the identity provider from an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider that was removed from the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseOrganization

    \n

    Removes an organization from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was removed from the enterprise.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseSupportEntitlement

    \n

    Removes a support entitlement from an enterprise member.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing the support entitlement.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveUpvote

    \n

    Remove an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetEnterpriseIdentityProvider

    \n

    Creates or updates the identity provider for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    identityProvider (EnterpriseIdentityProvider)

    The identity provider for the enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetOrganizationInteractionLimit

    \n

    Set an organization level interaction limit for an organization's public repositories.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetRepositoryInteractionLimit

    \n

    Sets an interaction limit setting for a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsetUserInteractionLimit

    \n

    Set a user level interaction limit for an user's public repositories.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that the interaction limit was set for.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkDiscussionCommentAsAnswer

    \n

    Unmark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussion

    \n

    Update a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The modified discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussionComment

    \n

    Update the contents of a comment on a Discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The modified discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAdministratorRole

    \n

    Updates the role of an enterprise administrator.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of changing the administrator's role.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the base repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated base repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the base repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnvironment

    \n

    Updates an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The updated environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

    \n

    Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateNotificationRestrictionSetting

    \n

    Update the setting to restrict notifications to only verified or approved domains available to an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectNextItemField

    \n

    Updates a field of an item from a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectNextItem (ProjectNextItem)

    The updated item.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestBranch

    \n

    Merge HEAD from upstream branch into pull request branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSponsorshipPreferences

    \n

    Change visibility of your sponsorship and opt in or out of email updates from the maintainer.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    sponsorship (Sponsorship)

    The sponsorship that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nverifyVerifiableDomain

    \n

    Verify that a verifiable domain has the expected DNS record.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was verified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n acceptEnterpriseAdministratorInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n acceptTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelEnterpriseAdminInvitation", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cancelSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createSponsorship", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n declineTopicSuggestion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectNextItem", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n inviteEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateEnterpriseIdentityProviderRecoveryCodes", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseSupportEntitlement", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setEnterpriseIdentityProvider", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setOrganizationInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setRepositoryInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n setUserInteractionLimit", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAdministratorRole", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectNextItemField", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSponsorshipPreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.3": { + "html": "
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddDiscussionComment

    \n

    Adds a comment to a Discussion, possibly as a reply to another comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The newly created discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseAdmin

    \n

    Adds an administrator to the global enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was added as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddUpvote

    \n

    Add an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddVerifiableDomain

    \n

    Adds a verifiable domain to an owning account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was added.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveDeployments

    \n

    Approve all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveVerifiableDomain

    \n

    Approve a verifiable domain for notification delivery.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was approved.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertPullRequestToDraft

    \n

    Converts a pull request to draft.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is now a draft.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCommitOnBranch

    \n

    Appends a commit to the given branch as the authenticated user.

    \n

    This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

    \n

    Locating a Branch

    \n

    Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

    \n

    Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

    \n

    Describing Changes

    \n

    fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

    \n

    Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

    \n

    Authorship

    \n

    Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

    \n

    A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

    \n

    If you need full control over author and committer information, please\nuse the Git Database REST API instead.

    \n

    Commit Signing

    \n

    Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commit (Commit)

    The new commit.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The ref which has been updated to point to the new commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateContentAttachment

    \n

    Create a content attachment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    contentAttachment (ContentAttachment)

    The newly created content attachment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDiscussion

    \n

    Create a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnvironment

    \n

    Creates an environment or simply returns it if already exists.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The new or existing environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussion

    \n

    Delete a discussion and all of its replies.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussionComment

    \n

    Delete a discussion comment. If it has replies, wipe it instead.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The discussion comment that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteEnvironment

    \n

    Deletes an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteVerifiableDomain

    \n

    Deletes a verifiable domain.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owning account from which the domain was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkDiscussionCommentAsAnswer

    \n

    Mark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the chosen comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateVerifiableDomainToken

    \n

    Regenerates a verifiable domain's verification token.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    verificationToken (String)

    The verification token that was generated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrejectDeployments

    \n

    Reject all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveUpvote

    \n

    Remove an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkDiscussionCommentAsAnswer

    \n

    Unmark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussion

    \n

    Update a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The modified discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussionComment

    \n

    Update the contents of a comment on a Discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The modified discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the base repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated base repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the base repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnvironment

    \n

    Updates an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The updated environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

    \n

    Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateNotificationRestrictionSetting

    \n

    Update the setting to restrict notifications to only verified or approved domains available to an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nverifyVerifiableDomain

    \n

    Verify that a verifiable domain has the expected DNS record.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was verified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.2": { + "html": "
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddDiscussionComment

    \n

    Adds a comment to a Discussion, possibly as a reply to another comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The newly created discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseAdmin

    \n

    Adds an administrator to the global enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was added as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddUpvote

    \n

    Add an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddVerifiableDomain

    \n

    Adds a verifiable domain to an owning account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was added.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveDeployments

    \n

    Approve all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveVerifiableDomain

    \n

    Approve a verifiable domain for notification delivery.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was approved.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertPullRequestToDraft

    \n

    Converts a pull request to draft.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is now a draft.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateContentAttachment

    \n

    Create a content attachment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    contentAttachment (ContentAttachment)

    The newly created content attachment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDiscussion

    \n

    Create a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnvironment

    \n

    Creates an environment or simply returns it if already exists.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The new or existing environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussion

    \n

    Delete a discussion and all of its replies.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussionComment

    \n

    Delete a discussion comment. If it has replies, wipe it instead.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The discussion comment that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteEnvironment

    \n

    Deletes an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteVerifiableDomain

    \n

    Deletes a verifiable domain.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owning account from which the domain was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkDiscussionCommentAsAnswer

    \n

    Mark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the chosen comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nregenerateVerifiableDomainToken

    \n

    Regenerates a verifiable domain's verification token.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    verificationToken (String)

    The verification token that was generated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrejectDeployments

    \n

    Reject all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveUpvote

    \n

    Remove an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkDiscussionCommentAsAnswer

    \n

    Unmark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussion

    \n

    Update a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The modified discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussionComment

    \n

    Update the contents of a comment on a Discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The modified discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the base repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated base repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the base repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnvironment

    \n

    Updates an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The updated environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

    \n

    Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateNotificationRestrictionSetting

    \n

    Update the setting to restrict notifications to only verified or approved domains available to an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner)

    The owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nverifyVerifiableDomain

    \n

    Verify that a verifiable domain has the expected DNS record.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    domain (VerifiableDomain)

    The verifiable domain that was verified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n regenerateVerifiableDomainToken", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateNotificationRestrictionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n verifyVerifiableDomain", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.1": { + "html": "
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseAdmin

    \n

    Adds an administrator to the global enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was added as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateContentAttachment

    \n

    Create a content attachment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    contentAttachment (ContentAttachment)

    The newly created content attachment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the default repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated default repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the default repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghes-3.0": { + "html": "
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseAdmin

    \n

    Adds an administrator to the global enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was added as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateContentAttachment

    \n

    Create a content attachment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createContentAttachment is available under the Create content attachments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    contentAttachment (ContentAttachment)

    The newly created content attachment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePackageVersion

    \n

    Delete a package version.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deletePackageVersion is available under the Access to package version deletion preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    success (Boolean)

    Whether or not the operation succeeded.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    pinIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    unpinIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the default repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated default repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the default repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createContentAttachment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePackageVersion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + }, + "ghae": { + "html": "
    \n
    \n

    \n \n \naddAssigneesToAssignable

    \n

    Adds assignees to an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was assigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddComment

    \n

    Adds a comment to an Issue or Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commentEdge (IssueCommentEdge)

    The edge from the subject's comment connection.

    \n\n\n\n\n\n\n\n

    subject (Node)

    The subject.

    \n\n\n\n\n\n\n\n

    timelineEdge (IssueTimelineItemEdge)

    The edge from the subject's timeline connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddDiscussionComment

    \n

    Adds a comment to a Discussion, possibly as a reply to another comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The newly created discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddEnterpriseAdmin

    \n

    Adds an administrator to the global enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was added as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole)

    The role of the administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddLabelsToLabelable

    \n

    Adds labels to a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was labeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectCard

    \n

    Adds a card to a ProjectColumn. Either contentId or note must be provided but not both.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The edge from the ProjectColumn's card connection.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The ProjectColumn.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddProjectColumn

    \n

    Adds a column to a Project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The edge from the project's column connection.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReview

    \n

    Adds a review to a Pull Request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The newly created pull request review.

    \n\n\n\n\n\n\n\n

    reviewEdge (PullRequestReviewEdge)

    The edge from the pull request's review connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewComment

    \n

    Adds a comment to a review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (PullRequestReviewComment)

    The newly created comment.

    \n\n\n\n\n\n\n\n

    commentEdge (PullRequestReviewCommentEdge)

    The edge from the review's comment connection.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddPullRequestReviewThread

    \n

    Adds a new thread to a pending Pull Request Review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The newly created thread.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddReaction

    \n

    Adds a reaction to a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddStar

    \n

    Adds a star to a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \naddUpvote

    \n

    Add an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \napproveDeployments

    \n

    Approve all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \narchiveRepository

    \n

    Marks a repository as archived.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was marked as archived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nchangeUserStatus

    \n

    Update your status on GitHub.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    status (UserStatus)

    Your updated status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclearLabelsFromLabelable

    \n

    Clears all labels from a labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The item that was unlabeled.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneProject

    \n

    Creates a new project by cloning configuration from an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    jobStatusId (String)

    The id of the JobStatus for populating cloned fields.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new cloned project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloneTemplateRepository

    \n

    Create a new repository with the same files and directory structure as a template repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncloseIssue

    \n

    Close an issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nclosePullRequest

    \n

    Close a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was closed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertProjectCardNoteToIssue

    \n

    Convert a project note card to one associated with a newly created issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nconvertPullRequestToDraft

    \n

    Converts a pull request to draft.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is now a draft.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckRun

    \n

    Create a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The newly created check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCheckSuite

    \n

    Create a check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The newly created check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateCommitOnBranch

    \n

    Appends a commit to the given branch as the authenticated user.

    \n

    This mutation creates a commit whose parent is the HEAD of the provided\nbranch and also updates that branch to point to the new commit.\nIt can be thought of as similar to git commit.

    \n

    Locating a Branch

    \n

    Commits are appended to a branch of type Ref.\nThis must refer to a git branch (i.e. the fully qualified path must\nbegin with refs/heads/, although including this prefix is optional.

    \n

    Callers may specify the branch to commit to either by its global node\nID or by passing both of repositoryNameWithOwner and refName. For\nmore details see the documentation for CommittableBranch.

    \n

    Describing Changes

    \n

    fileChanges are specified as a FilesChanges object describing\nFileAdditions and FileDeletions.

    \n

    Please see the documentation for FileChanges for more information on\nhow to use this argument to describe any set of file changes.

    \n

    Authorship

    \n

    Similar to the web commit interface, this mutation does not support\nspecifying the author or committer of the commit and will not add\nsupport for this in the future.

    \n

    A commit created by a successful execution of this mutation will be\nauthored by the owner of the credential which authenticates the API\nrequest. The committer will be identical to that of commits authored\nusing the web interface.

    \n

    If you need full control over author and committer information, please\nuse the Git Database REST API instead.

    \n

    Commit Signing

    \n

    Commits made using this mutation are automatically signed by GitHub if\nsupported and will be marked as verified in the user interface.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    commit (Commit)

    The new commit.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The ref which has been updated to point to the new commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeployment

    \n

    Creates a new deployment event.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeployment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    autoMerged (Boolean)

    True if the default branch has been auto-merged into the deployment ref.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployment (Deployment)

    The new deployment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDeploymentStatus

    \n

    Create a deployment status.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createDeploymentStatus is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus)

    The new deployment status.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateDiscussion

    \n

    Create a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnterpriseOrganization

    \n

    Creates an organization as part of an enterprise account.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise that owns the created organization.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateEnvironment

    \n

    Creates an environment or simply returns it if already exists.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The new or existing environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIpAllowListEntry

    \n

    Creates a new IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was created.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateIssue

    \n

    Creates a new issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The new issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateLabel

    \n

    Creates a new label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    createLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The new label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateProject

    \n

    Creates a new project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreatePullRequest

    \n

    Create a new pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The new pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRef

    \n

    Create a new Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The newly created ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateRepository

    \n

    Create a new repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The new repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussion

    \n

    Creates a new team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The new discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ncreateTeamDiscussionComment

    \n

    Creates a new team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The new comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteBranchProtectionRule

    \n

    Delete a branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDeployment

    \n

    Deletes a deployment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussion

    \n

    Delete a discussion and all of its replies.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteDiscussionComment

    \n

    Delete a discussion comment. If it has replies, wipe it instead.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The discussion comment that was just deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteEnvironment

    \n

    Deletes an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIpAllowListEntry

    \n

    Deletes an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was deleted.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssue

    \n

    Deletes an Issue object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository the issue belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteIssueComment

    \n

    Deletes an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteLabel

    \n

    Deletes a label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    deleteLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProject

    \n

    Deletes a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (ProjectOwner)

    The repository or organization the project was removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectCard

    \n

    Deletes a project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    column (ProjectColumn)

    The column the deleted card was in.

    \n\n\n\n\n\n\n\n

    deletedCardId (ID)

    The deleted card ID.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteProjectColumn

    \n

    Deletes a project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deletedColumnId (ID)

    The deleted column ID.

    \n\n\n\n\n\n\n\n

    project (Project)

    The project the deleted column was in.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReview

    \n

    Deletes a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The deleted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeletePullRequestReviewComment

    \n

    Deletes a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review the deleted comment belonged to.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteRef

    \n

    Delete a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussion

    \n

    Deletes a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndeleteTeamDiscussionComment

    \n

    Deletes a team discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndisablePullRequestAutoMerge

    \n

    Disable auto merge on the given pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto merge was disabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissPullRequestReview

    \n

    Dismisses an approved or rejected pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The dismissed pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ndismissRepositoryVulnerabilityAlert

    \n

    Dismisses the Dependabot alert.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repositoryVulnerabilityAlert (RepositoryVulnerabilityAlert)

    The Dependabot alert that was dismissed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nenablePullRequestAutoMerge

    \n

    Enable the default auto-merge on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request auto-merge was enabled on.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nfollowUser

    \n

    Follow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was followed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nimportProject

    \n

    Creates a new project by importing columns and a list of issues/PRs.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    importProject is available under the Import project preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The new Project!.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlinkRepositoryToProject

    \n

    Creates a repository link for a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nlockLockable

    \n

    Lock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    lockedRecord (Lockable)

    The item that was locked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkDiscussionCommentAsAnswer

    \n

    Mark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the chosen comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkFileAsViewed

    \n

    Mark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmarkPullRequestReadyForReview

    \n

    Marks a pull request ready for review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is ready for review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergeBranch

    \n

    Merge a head into a branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The resulting merge Commit.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmergePullRequest

    \n

    Merge a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was merged.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nminimizeComment

    \n

    Minimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    minimizedComment (Minimizable)

    The comment that was minimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectCard

    \n

    Moves a project card to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cardEdge (ProjectCardEdge)

    The new edge of the moved card.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nmoveProjectColumn

    \n

    Moves a project column to another place.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    columnEdge (ProjectColumnEdge)

    The new edge of the moved column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \npinIssue

    \n

    Pin an issue to a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrejectDeployments

    \n

    Reject all pending deployments under one or more environments.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    deployments ([Deployment!])

    The affected deployments.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveAssigneesFromAssignable

    \n

    Removes assignees from an assignable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignable (Assignable)

    The item that was unassigned.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveEnterpriseAdmin

    \n

    Removes an administrator from the enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admin (User)

    The user who was removed as an administrator.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of removing an administrator.

    \n\n\n\n\n\n\n\n

    viewer (User)

    The viewer performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveLabelsFromLabelable

    \n

    Removes labels from a Labelable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    labelable (Labelable)

    The Labelable the labels were removed from.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveOutsideCollaborator

    \n

    Removes outside collaborator from all repositories in an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    removedUser (User)

    The user that was removed as an outside collaborator.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveReaction

    \n

    Removes a reaction from a subject.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    reaction (Reaction)

    The reaction object.

    \n\n\n\n\n\n\n\n

    subject (Reactable)

    The reactable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveStar

    \n

    Removes a star from a Starrable.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    starrable (Starrable)

    The starrable.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nremoveUpvote

    \n

    Remove an upvote to a discussion or discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subject (Votable)

    The votable subject.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenIssue

    \n

    Reopen a issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was opened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nreopenPullRequest

    \n

    Reopen a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that was reopened.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrequestReviews

    \n

    Set review requests on a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The pull request that is getting requests.

    \n\n\n\n\n\n\n\n

    requestedReviewersEdge (UserEdge)

    The edge from the pull request to the requested reviewers.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nrerequestCheckSuite

    \n

    Rerequests an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite)

    The requested check suite.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nresolveReviewThread

    \n

    Marks a review thread as resolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nsubmitPullRequestReview

    \n

    Submits a pending pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The submitted pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \ntransferIssue

    \n

    Transfer an issue to a different repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was transferred.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunarchiveRepository

    \n

    Unarchives a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The repository that was unarchived.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunfollowUser

    \n

    Unfollow a user.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    user (User)

    The user that was unfollowed.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlinkRepositoryFromProject

    \n

    Deletes a repository link from a project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The linked Project.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The linked Repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunlockLockable

    \n

    Unlock a lockable object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unlockedRecord (Lockable)

    The item that was unlocked.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkDiscussionCommentAsAnswer

    \n

    Unmark a discussion comment as the chosen answer for discussions in an answerable category.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that includes the comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkFileAsViewed

    \n

    Unmark a pull request file as viewed.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunmarkIssueAsDuplicate

    \n

    Unmark an issue as a duplicate of another issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request that was marked as a duplicate.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunminimizeComment

    \n

    Unminimizes a comment on an Issue, Commit, Pull Request, or Gist.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    unminimizedComment (Minimizable)

    The comment that was unminimized.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunpinIssue

    \n

    Unpin a pinned issue from a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue that was unpinned.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nunresolveReviewThread

    \n

    Marks a review thread as unresolved.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    thread (PullRequestReviewThread)

    The thread to resolve.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateBranchProtectionRule

    \n

    Create a new branch protection rule.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    The newly created BranchProtectionRule.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckRun

    \n

    Update a check run.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkRun (CheckRun)

    The updated check run.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateCheckSuitePreferences

    \n

    Modifies the settings of an existing check suite.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussion

    \n

    Update a discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    discussion (Discussion)

    The modified discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateDiscussionComment

    \n

    Update the contents of a comment on a Discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    comment (DiscussionComment)

    The modified discussion comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseDefaultRepositoryPermissionSetting

    \n

    Sets the base repository permission for organizations in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated base repository permission setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the base repository permission setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanChangeRepositoryVisibilitySetting

    \n

    Sets whether organization members with admin permissions on a repository can change repository visibility.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can change repository visibility setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can change repository visibility setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanCreateRepositoriesSetting

    \n

    Sets the members can create repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can create repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can create repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteIssuesSetting

    \n

    Sets the members can delete issues setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete issues setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete issues setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanDeleteRepositoriesSetting

    \n

    Sets the members can delete repositories setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can delete repositories setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can delete repositories setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanInviteCollaboratorsSetting

    \n

    Sets whether members can invite collaborators are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can invite collaborators setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can invite collaborators setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanMakePurchasesSetting

    \n

    Sets whether or not an organization admin can make purchases.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can make purchases setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can make purchases setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanUpdateProtectedBranchesSetting

    \n

    Sets the members can update protected branches setting for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can update protected branches setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can update protected branches setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseMembersCanViewDependencyInsightsSetting

    \n

    Sets the members can view dependency insights for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated members can view dependency insights setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the members can view dependency insights setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseOrganizationProjectsSetting

    \n

    Sets whether organization projects are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated organization projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the organization projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseProfile

    \n

    Updates an enterprise's profile.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The updated enterprise.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseRepositoryProjectsSetting

    \n

    Sets whether repository projects are enabled for a enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated repository projects setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the repository projects setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTeamDiscussionsSetting

    \n

    Sets whether team discussions are enabled for an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated team discussions setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the team discussions setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnterpriseTwoFactorAuthenticationRequiredSetting

    \n

    Sets whether two factor authentication is required for all users in an enterprise.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise with the updated two factor authentication required setting.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the two factor authentication required setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateEnvironment

    \n

    Updates an environment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    environment (Environment)

    The updated environment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEnabledSetting

    \n

    Sets whether an IP allow list is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListEntry

    \n

    Updates an IP allow list entry.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ipAllowListEntry (IpAllowListEntry)

    The IP allow list entry that was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIpAllowListForInstalledAppsEnabledSetting

    \n

    Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    owner (IpAllowListOwner)

    The IP allow list owner on which the setting was updated.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssue

    \n

    Updates an Issue.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issue (Issue)

    The issue.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateIssueComment

    \n

    Updates an IssueComment object.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    issueComment (IssueComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateLabel

    \n

    Updates an existing label.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateLabel is available under the Labels preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    label (Label)

    The updated label.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateOrganizationAllowPrivateRepositoryForkingSetting

    \n

    Sets whether private repository forks are enabled for an organization.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    message (String)

    A message confirming the result of updating the allow private repository forking setting.

    \n\n\n\n\n\n\n\n

    organization (Organization)

    The organization with the updated allow private repository forking setting.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProject

    \n

    Updates an existing project.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    project (Project)

    The updated project.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectCard

    \n

    Updates an existing project card.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    The updated ProjectCard.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateProjectColumn

    \n

    Updates an existing project column.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    projectColumn (ProjectColumn)

    The updated project column.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequest

    \n

    Update a pull request.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestBranch

    \n

    Merge HEAD from upstream branch into pull request branch.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    The updated pull request.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReview

    \n

    Updates the body of a pull request review.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The updated pull request review.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdatePullRequestReviewComment

    \n

    Updates a pull request review comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    pullRequestReviewComment (PullRequestReviewComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRef

    \n

    Update a Git Ref.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    ref (Ref)

    The updated Ref.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRefs

    \n

    Creates, updates and/or deletes multiple refs in a repository.

    \n

    This mutation takes a list of RefUpdates and performs these updates\non the repository. All updates are performed atomically, meaning that\nif one of them is rejected, no other ref will be modified.

    \n

    RefUpdate.beforeOid specifies that the given reference needs to point\nto the given value before performing any updates. A value of\n0000000000000000000000000000000000000000 can be used to verify that\nthe references should not exist.

    \n

    RefUpdate.afterOid specifies the value that the given reference\nwill point to after performing all updates. A value of\n0000000000000000000000000000000000000000 can be used to delete a\nreference.

    \n

    If RefUpdate.force is set to true, a non-fast-forward updates\nfor the given reference will be allowed.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateRefs is available under the Update refs preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateRepository

    \n

    Update information about a repository.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateSubscription

    \n

    Updates the state for subscribable subjects.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    subscribable (Subscribable)

    The input subscribable entity.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussion

    \n

    Updates a team discussion.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussion (TeamDiscussion)

    The updated discussion.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamDiscussionComment

    \n

    Updates a discussion comment.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    teamDiscussionComment (TeamDiscussionComment)

    The updated comment.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTeamReviewAssignment

    \n

    Updates team review assignment.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    updateTeamReviewAssignment is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    team (Team)

    The team that was modified.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nupdateTopics

    \n

    Replaces the repository's topics with the given topics.

    \n
    \n\n
    \n \n\n \n\n \n \n

    Input fields

    \n\n\n\n\n\n\n\n\n \n

    Return fields

    \n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    clientMutationId (String)

    A unique identifier for the client performing the mutation.

    \n\n\n\n\n\n\n\n

    invalidTopicNames ([String!])

    Names of the provided topics that are not valid.

    \n\n\n\n\n\n\n\n

    repository (Repository)

    The updated repository.

    \n\n\n\n\n\n\n\n
    \n\n
    \n
    \n
    \n", + "miniToc": [ + { + "contents": "\n addAssigneesToAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addLabelsToLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addPullRequestReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n addUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n approveDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n archiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n changeUserStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n clearLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n cloneTemplateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closeIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n closePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertProjectCardNoteToIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n convertPullRequestToDraft", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createCommitOnBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDeploymentStatus", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnterpriseOrganization", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n createTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDeployment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deletePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n deleteTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n disablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n dismissRepositoryVulnerabilityAlert", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n enablePullRequestAutoMerge", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n followUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n importProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n linkRepositoryToProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n lockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n markPullRequestReadyForReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergeBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n mergePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n minimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n moveProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n pinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rejectDeployments", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeAssigneesFromAssignable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeEnterpriseAdmin", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeLabelsFromLabelable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeOutsideCollaborator", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeReaction", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeStar", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n removeUpvote", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n reopenPullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n requestReviews", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n rerequestCheckSuite", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n resolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n submitPullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n transferIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unarchiveRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unfollowUser", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlinkRepositoryFromProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unlockLockable", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkDiscussionCommentAsAnswer", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkFileAsViewed", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unmarkIssueAsDuplicate", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unminimizeComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unpinIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n unresolveReviewThread", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateBranchProtectionRule", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckRun", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateCheckSuitePreferences", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseDefaultRepositoryPermissionSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanChangeRepositoryVisibilitySetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanCreateRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteIssuesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanDeleteRepositoriesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanInviteCollaboratorsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanMakePurchasesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanUpdateProtectedBranchesSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseMembersCanViewDependencyInsightsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseOrganizationProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseProfile", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseRepositoryProjectsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTeamDiscussionsSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnterpriseTwoFactorAuthenticationRequiredSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateEnvironment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListEntry", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIpAllowListForInstalledAppsEnabledSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssue", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateIssueComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateLabel", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateOrganizationAllowPrivateRepositoryForkingSetting", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProject", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectCard", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateProjectColumn", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequest", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestBranch", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReview", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updatePullRequestReviewComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRef", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRefs", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateRepository", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateSubscription", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussion", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamDiscussionComment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTeamReviewAssignment", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + }, + { + "contents": "\n updateTopics", + "headingLevel": 2, + "platform": "", + "indentationLevel": 0, + "items": [] + } + ] + } +} \ No newline at end of file diff --git a/lib/graphql/static/prerendered-objects.json b/lib/graphql/static/prerendered-objects.json index 79a8a3a217..e4e641affc 100644 --- a/lib/graphql/static/prerendered-objects.json +++ b/lib/graphql/static/prerendered-objects.json @@ -1,6 +1,6 @@ { "dotcom": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependency

    \n

    A dependency manifest entry.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasDependencies (Boolean!)

    Does the dependency itself have dependencies?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageManager (String)

    The dependency package manager.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageName (String!)

    The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository containing the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requirements (String!)

    The dependency version requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyConnection

    \n

    The connection type for DependencyGraphDependency.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphDependencyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphDependency])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphDependency)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifest

    \n

    Dependency manifest for a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    blobPath (String!)

    Path to view the manifest file blob.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencies (DependencyGraphDependencyConnection)

    A list of manifest dependencies.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    dependenciesCount (Int)

    The number of dependencies listed in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    exceedsMaxSize (Boolean!)

    Is the manifest too big to parse?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String!)

    Fully qualified manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parseable (Boolean!)

    Were we able to parse the manifest?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestConnection

    \n

    The connection type for DependencyGraphManifest.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphManifestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphManifest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphManifest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    domains (VerifiableDomainConnection!)

    A list of domains owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

    Enterprise Server installations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    connectedOnly (Boolean)

    \n

    Whether or not to only return installations discovered via GitHub Connect.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerInstallationOrder)

    \n

    Ordering options for Enterprise Server installations returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for support entitlement users returned from the connection.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerInstallationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerInstallation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerInstallation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    platform (FundingPlatform!)

    The funding platform this link is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The configured URL for this funding link.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitIpAddresses ([String!])

    IP addresses that users connect to for git operations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hookIpAddresses ([String!])

    IP addresses that service hooks are sent from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    importerIpAddresses ([String!])

    IP addresses that the importer connects from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pagesIpAddresses ([String!])

    IP addresses for GitHub Pages' A records.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    The category's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    The technical description of how apps listed in this category work with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The category's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryListingCount (Int!)

    How many Marketplace listings have this as their primary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryListingCount (Int!)

    How many Marketplace listings have this as their secondary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the category used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App this listing represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyUrl (URI)

    URL to the listing owner's company site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationResourcePath (URI!)

    The HTTP path for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationUrl (URI!)

    The HTTP URL for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    documentationUrl (URI)

    URL to the listing's documentation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescription (String)

    The listing's detailed description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescriptionHTML (HTML!)

    The listing's detailed description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The listing's introductory description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The listing's introductory description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPublishedFreeTrialPlans (Boolean!)

    Does this listing have any plans with a free trial?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTermsOfService (Boolean!)

    Does this listing have a terms of service link?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    A technical description of how this app works with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorksHTML (HTML!)

    The listing's technical description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installationUrl (URI)

    URL to install the product to the viewer's account or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installedForViewer (Boolean!)

    Whether this listing's app has been installed for the current viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether this listing has been removed from the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPaid (Boolean!)

    Whether the product this listing represents is available as part of a paid plan.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing has been approved for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRejected (Boolean!)

    Whether this listing has been rejected by GitHub for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverified (Boolean!)

    Whether this listing has been approved for unverified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverifiedPending (Boolean!)

    Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromDraft (Boolean!)

    Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromUnverified (Boolean!)

    Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether this listing has been approved for verified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI)

    URL for the listing's logo image.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    normalizedShortDescription (String!)

    The listing's very short description without a trailing period or ampersands.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pricingUrl (URI)

    URL to the listing's detailed pricing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryCategory (MarketplaceCategory!)

    The category that best describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyPolicyUrl (URI!)

    URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    screenshotUrls ([String]!)

    The URLs for the listing's screenshots.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryCategory (MarketplaceCategory)

    An alternate category that describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The listing's very short description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusUrl (URI)

    URL to the listing's status page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportEmail (String)

    An email address for support for this listing's app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportUrl (URI!)

    Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    termsOfServiceUrl (URI)

    URL to the listing's terms of service.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAddPlans (Boolean!)

    Can the current viewer add plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanApprove (Boolean!)

    Can the current viewer approve this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDelist (Boolean!)

    Can the current viewer delist this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEdit (Boolean!)

    Can the current viewer edit this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditCategories (Boolean!)

    Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditPlans (Boolean!)

    Can the current viewer edit the plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRedraft (Boolean!)

    Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReject (Boolean!)

    Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRequestApproval (Boolean!)

    Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchased (Boolean!)

    Indicates whether the current user has an active subscription to this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchasedForAllOrganizations (Boolean!)

    Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsListingAdmin (Boolean!)

    Does the current viewer role allow them to administer this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MarketplaceListingEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([MarketplaceListing])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (MarketplaceListing)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domains (VerifiableDomainConnection)

    A list of domains owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether the organization has verified its profile email and website.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project next items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    latestVersion (PackageVersion)

    Find the latest version for the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the name of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageType (PackageType!)

    Identifies the type of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository this package belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Find package version by version string.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    version (String!)

    \n

    The package version.

    \n\n
    \n\n
    \n\n\n

    versions (PackageVersionConnection!)

    list of versions for this package.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageVersionOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Package])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Package)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    md5 (String)

    MD5 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Name of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersion (PackageVersion)

    The package version this file belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha1 (String)

    SHA1 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha256 (String)

    SHA256 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    Size of the file in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to download the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageTag

    \n

    A version tag contains the mapping between a tag name and a version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    Identifies the tag name of the version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Version that the tag is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    files (PackageFileConnection!)

    List of files associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageFileOrder)

    \n

    Ordering of the returned package files.

    \n\n
    \n\n
    \n\n\n

    package (Package)

    The package associated with this version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    platform (String)

    The platform this version was built for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preRelease (Boolean!)

    Whether or not this version is a pre-release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readme (String)

    The README of this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    The release associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageVersionStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String)

    The package version summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (String!)

    The version string.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageVersionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageVersion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageVersion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    Returns true if the project is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    items (ProjectNextItemConnection!)

    List of items in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextField)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItemFieldValue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencyGraphManifests (DependencyGraphManifestConnection)

    A list of dependency manifests contained in the repository.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    dependenciesAfter (String)

    \n

    Cursor to paginate dependencies.

    \n\n
    \n\n
    \n

    dependenciesFirst (Int)

    \n

    Number of dependencies to fetch.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    withDependencies (Boolean)

    \n

    Flag to scope to only manifests with dependencies.

    \n\n
    \n\n
    \n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    fundingLinks ([FundingLink!]!)

    The funding links for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    expiresAt (DateTime)

    The time the currently active limit expires.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The current limit that is enabled on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (RepositoryInteractionLimitOrigin!)

    The origin of the currently active interaction limit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SecurityVulnerabilityOrder)

    \n

    Ordering options for the returned topics.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsActivity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    A description of the goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The full description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The full description of the listing rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The short description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tiers (SponsorsTierConnection)

    The published tiers for this GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsTierOrder)

    \n

    Ordering options for Sponsors tiers returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminInfo (SponsorsTierAdminInfo)

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    The description of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The tier description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInCents (Int!)

    How much this tier costs per month in cents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInDollars (Int!)

    How much this tier costs per month in USD.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsListing (SponsorsListing!)

    The sponsors listing that this tier belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    sponsorships (SponsorshipConnection!)

    The sponsorships associated with this tier.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsTierEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsTier])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsTier)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainer (User!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    maintainer is deprecated.

    Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

    \n
    \n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy!)

    The privacy level for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (User)

    The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    sponsor is deprecated.

    Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n\n

    sponsorEntity (Sponsor)

    The user or organization that is sponsoring, if you have permission to view them.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsorship])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsorship)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the newsletter, the message the sponsorable wanted to give.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorshipNewsletter)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project next items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (VerifiableDomain)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependency

    \n

    A dependency manifest entry.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasDependencies (Boolean!)

    Does the dependency itself have dependencies?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageManager (String)

    The dependency package manager.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageName (String!)

    The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository containing the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requirements (String!)

    The dependency version requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyConnection

    \n

    The connection type for DependencyGraphDependency.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphDependencyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphDependency])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphDependency)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifest

    \n

    Dependency manifest for a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    blobPath (String!)

    Path to view the manifest file blob.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencies (DependencyGraphDependencyConnection)

    A list of manifest dependencies.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    dependenciesCount (Int)

    The number of dependencies listed in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    exceedsMaxSize (Boolean!)

    Is the manifest too big to parse?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String!)

    Fully qualified manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parseable (Boolean!)

    Were we able to parse the manifest?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestConnection

    \n

    The connection type for DependencyGraphManifest.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphManifestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphManifest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphManifest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    viewerOrganizationRole (RoleInOrganization)

    \n

    The viewer's role in an organization.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    domains (VerifiableDomainConnection!)

    A list of domains owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

    Enterprise Server installations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    connectedOnly (Boolean)

    \n

    Whether or not to only return installations discovered via GitHub Connect.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerInstallationOrder)

    \n

    Ordering options for Enterprise Server installations returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for support entitlement users returned from the connection.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerInstallationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerInstallation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerInstallation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    platform (FundingPlatform!)

    The funding platform this link is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The configured URL for this funding link.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitIpAddresses ([String!])

    IP addresses that users connect to for git operations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hookIpAddresses ([String!])

    IP addresses that service hooks are sent from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    importerIpAddresses ([String!])

    IP addresses that the importer connects from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pagesIpAddresses ([String!])

    IP addresses for GitHub Pages' A records.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    The category's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    The technical description of how apps listed in this category work with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The category's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryListingCount (Int!)

    How many Marketplace listings have this as their primary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryListingCount (Int!)

    How many Marketplace listings have this as their secondary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the category used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App this listing represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyUrl (URI)

    URL to the listing owner's company site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationResourcePath (URI!)

    The HTTP path for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationUrl (URI!)

    The HTTP URL for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    documentationUrl (URI)

    URL to the listing's documentation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescription (String)

    The listing's detailed description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescriptionHTML (HTML!)

    The listing's detailed description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The listing's introductory description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The listing's introductory description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPublishedFreeTrialPlans (Boolean!)

    Does this listing have any plans with a free trial?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTermsOfService (Boolean!)

    Does this listing have a terms of service link?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    A technical description of how this app works with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorksHTML (HTML!)

    The listing's technical description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installationUrl (URI)

    URL to install the product to the viewer's account or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installedForViewer (Boolean!)

    Whether this listing's app has been installed for the current viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether this listing has been removed from the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPaid (Boolean!)

    Whether the product this listing represents is available as part of a paid plan.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing has been approved for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRejected (Boolean!)

    Whether this listing has been rejected by GitHub for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverified (Boolean!)

    Whether this listing has been approved for unverified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverifiedPending (Boolean!)

    Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromDraft (Boolean!)

    Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromUnverified (Boolean!)

    Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether this listing has been approved for verified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI)

    URL for the listing's logo image.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    normalizedShortDescription (String!)

    The listing's very short description without a trailing period or ampersands.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pricingUrl (URI)

    URL to the listing's detailed pricing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryCategory (MarketplaceCategory!)

    The category that best describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyPolicyUrl (URI!)

    URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    screenshotUrls ([String]!)

    The URLs for the listing's screenshots.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryCategory (MarketplaceCategory)

    An alternate category that describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The listing's very short description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusUrl (URI)

    URL to the listing's status page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportEmail (String)

    An email address for support for this listing's app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportUrl (URI!)

    Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    termsOfServiceUrl (URI)

    URL to the listing's terms of service.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAddPlans (Boolean!)

    Can the current viewer add plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanApprove (Boolean!)

    Can the current viewer approve this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDelist (Boolean!)

    Can the current viewer delist this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEdit (Boolean!)

    Can the current viewer edit this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditCategories (Boolean!)

    Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditPlans (Boolean!)

    Can the current viewer edit the plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRedraft (Boolean!)

    Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReject (Boolean!)

    Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRequestApproval (Boolean!)

    Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchased (Boolean!)

    Indicates whether the current user has an active subscription to this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchasedForAllOrganizations (Boolean!)

    Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsListingAdmin (Boolean!)

    Does the current viewer role allow them to administer this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MarketplaceListingEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([MarketplaceListing])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (MarketplaceListing)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domains (VerifiableDomainConnection)

    A list of domains owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether the organization has verified its profile email and website.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersCanForkPrivateRepositories (Boolean!)

    Members can fork private repositories in this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    latestVersion (PackageVersion)

    Find the latest version for the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the name of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageType (PackageType!)

    Identifies the type of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository this package belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Find package version by version string.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    version (String!)

    \n

    The package version.

    \n\n
    \n\n
    \n\n\n

    versions (PackageVersionConnection!)

    list of versions for this package.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageVersionOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Package])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Package)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    md5 (String)

    MD5 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Name of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersion (PackageVersion)

    The package version this file belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha1 (String)

    SHA1 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha256 (String)

    SHA256 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    Size of the file in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to download the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageTag

    \n

    A version tag contains the mapping between a tag name and a version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    Identifies the tag name of the version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Version that the tag is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    files (PackageFileConnection!)

    List of files associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageFileOrder)

    \n

    Ordering of the returned package files.

    \n\n
    \n\n
    \n\n\n

    package (Package)

    The package associated with this version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    platform (String)

    The platform this version was built for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preRelease (Boolean!)

    Whether or not this version is a pre-release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readme (String)

    The README of this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    The release associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageVersionStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String)

    The package version summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (String!)

    The version string.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageVersionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageVersion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageVersion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    Returns true if the project is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    items (ProjectNextItemConnection!)

    List of items in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextField)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItemFieldValue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencyGraphManifests (DependencyGraphManifestConnection)

    A list of dependency manifests contained in the repository.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    dependenciesAfter (String)

    \n

    Cursor to paginate dependencies.

    \n\n
    \n\n
    \n

    dependenciesFirst (Int)

    \n

    Number of dependencies to fetch.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    withDependencies (Boolean)

    \n

    Flag to scope to only manifests with dependencies.

    \n\n
    \n\n
    \n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    fundingLinks ([FundingLink!]!)

    The funding links for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    expiresAt (DateTime)

    The time the currently active limit expires.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The current limit that is enabled on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (RepositoryInteractionLimitOrigin!)

    The origin of the currently active interaction limit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SecurityVulnerabilityOrder)

    \n

    Ordering options for the returned topics.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsActivity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    A description of the goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The full description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The full description of the listing rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The short description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tiers (SponsorsTierConnection)

    The published tiers for this GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsTierOrder)

    \n

    Ordering options for Sponsors tiers returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminInfo (SponsorsTierAdminInfo)

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    The description of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The tier description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInCents (Int!)

    How much this tier costs per month in cents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInDollars (Int!)

    How much this tier costs per month in USD.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsListing (SponsorsListing!)

    The sponsors listing that this tier belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    sponsorships (SponsorshipConnection!)

    The sponsorships associated with this tier.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsTierEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsTier])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsTier)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainer (User!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    maintainer is deprecated.

    Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

    \n
    \n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy!)

    The privacy level for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (User)

    The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    sponsor is deprecated.

    Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n\n

    sponsorEntity (Sponsor)

    The user or organization that is sponsoring, if you have permission to view them.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsorship])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsorship)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the newsletter, the message the sponsorable wanted to give.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorshipNewsletter)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (VerifiableDomain)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", @@ -3680,7 +3680,7 @@ ] }, "ghec": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependency

    \n

    A dependency manifest entry.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasDependencies (Boolean!)

    Does the dependency itself have dependencies?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageManager (String)

    The dependency package manager.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageName (String!)

    The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository containing the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requirements (String!)

    The dependency version requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyConnection

    \n

    The connection type for DependencyGraphDependency.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphDependencyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphDependency])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphDependency)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifest

    \n

    Dependency manifest for a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    blobPath (String!)

    Path to view the manifest file blob.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencies (DependencyGraphDependencyConnection)

    A list of manifest dependencies.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    dependenciesCount (Int)

    The number of dependencies listed in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    exceedsMaxSize (Boolean!)

    Is the manifest too big to parse?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String!)

    Fully qualified manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parseable (Boolean!)

    Were we able to parse the manifest?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestConnection

    \n

    The connection type for DependencyGraphManifest.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphManifestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphManifest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphManifest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    domains (VerifiableDomainConnection!)

    A list of domains owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

    Enterprise Server installations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    connectedOnly (Boolean)

    \n

    Whether or not to only return installations discovered via GitHub Connect.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerInstallationOrder)

    \n

    Ordering options for Enterprise Server installations returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for support entitlement users returned from the connection.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerInstallationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerInstallation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerInstallation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    platform (FundingPlatform!)

    The funding platform this link is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The configured URL for this funding link.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitIpAddresses ([String!])

    IP addresses that users connect to for git operations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hookIpAddresses ([String!])

    IP addresses that service hooks are sent from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    importerIpAddresses ([String!])

    IP addresses that the importer connects from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pagesIpAddresses ([String!])

    IP addresses for GitHub Pages' A records.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    The category's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    The technical description of how apps listed in this category work with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The category's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryListingCount (Int!)

    How many Marketplace listings have this as their primary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryListingCount (Int!)

    How many Marketplace listings have this as their secondary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the category used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App this listing represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyUrl (URI)

    URL to the listing owner's company site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationResourcePath (URI!)

    The HTTP path for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationUrl (URI!)

    The HTTP URL for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    documentationUrl (URI)

    URL to the listing's documentation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescription (String)

    The listing's detailed description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescriptionHTML (HTML!)

    The listing's detailed description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The listing's introductory description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The listing's introductory description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPublishedFreeTrialPlans (Boolean!)

    Does this listing have any plans with a free trial?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTermsOfService (Boolean!)

    Does this listing have a terms of service link?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    A technical description of how this app works with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorksHTML (HTML!)

    The listing's technical description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installationUrl (URI)

    URL to install the product to the viewer's account or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installedForViewer (Boolean!)

    Whether this listing's app has been installed for the current viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether this listing has been removed from the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPaid (Boolean!)

    Whether the product this listing represents is available as part of a paid plan.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing has been approved for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRejected (Boolean!)

    Whether this listing has been rejected by GitHub for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverified (Boolean!)

    Whether this listing has been approved for unverified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverifiedPending (Boolean!)

    Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromDraft (Boolean!)

    Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromUnverified (Boolean!)

    Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether this listing has been approved for verified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI)

    URL for the listing's logo image.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    normalizedShortDescription (String!)

    The listing's very short description without a trailing period or ampersands.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pricingUrl (URI)

    URL to the listing's detailed pricing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryCategory (MarketplaceCategory!)

    The category that best describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyPolicyUrl (URI!)

    URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    screenshotUrls ([String]!)

    The URLs for the listing's screenshots.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryCategory (MarketplaceCategory)

    An alternate category that describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The listing's very short description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusUrl (URI)

    URL to the listing's status page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportEmail (String)

    An email address for support for this listing's app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportUrl (URI!)

    Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    termsOfServiceUrl (URI)

    URL to the listing's terms of service.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAddPlans (Boolean!)

    Can the current viewer add plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanApprove (Boolean!)

    Can the current viewer approve this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDelist (Boolean!)

    Can the current viewer delist this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEdit (Boolean!)

    Can the current viewer edit this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditCategories (Boolean!)

    Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditPlans (Boolean!)

    Can the current viewer edit the plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRedraft (Boolean!)

    Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReject (Boolean!)

    Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRequestApproval (Boolean!)

    Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchased (Boolean!)

    Indicates whether the current user has an active subscription to this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchasedForAllOrganizations (Boolean!)

    Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsListingAdmin (Boolean!)

    Does the current viewer role allow them to administer this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MarketplaceListingEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([MarketplaceListing])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (MarketplaceListing)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domains (VerifiableDomainConnection)

    A list of domains owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether the organization has verified its profile email and website.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project next items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    latestVersion (PackageVersion)

    Find the latest version for the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the name of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageType (PackageType!)

    Identifies the type of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository this package belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Find package version by version string.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    version (String!)

    \n

    The package version.

    \n\n
    \n\n
    \n\n\n

    versions (PackageVersionConnection!)

    list of versions for this package.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageVersionOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Package])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Package)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    md5 (String)

    MD5 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Name of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersion (PackageVersion)

    The package version this file belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha1 (String)

    SHA1 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha256 (String)

    SHA256 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    Size of the file in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to download the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageTag

    \n

    A version tag contains the mapping between a tag name and a version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    Identifies the tag name of the version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Version that the tag is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    files (PackageFileConnection!)

    List of files associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageFileOrder)

    \n

    Ordering of the returned package files.

    \n\n
    \n\n
    \n\n\n

    package (Package)

    The package associated with this version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    platform (String)

    The platform this version was built for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preRelease (Boolean!)

    Whether or not this version is a pre-release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readme (String)

    The README of this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    The release associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageVersionStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String)

    The package version summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (String!)

    The version string.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageVersionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageVersion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageVersion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    Returns true if the project is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    items (ProjectNextItemConnection!)

    List of items in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextField)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItemFieldValue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencyGraphManifests (DependencyGraphManifestConnection)

    A list of dependency manifests contained in the repository.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    dependenciesAfter (String)

    \n

    Cursor to paginate dependencies.

    \n\n
    \n\n
    \n

    dependenciesFirst (Int)

    \n

    Number of dependencies to fetch.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    withDependencies (Boolean)

    \n

    Flag to scope to only manifests with dependencies.

    \n\n
    \n\n
    \n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    fundingLinks ([FundingLink!]!)

    The funding links for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    expiresAt (DateTime)

    The time the currently active limit expires.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The current limit that is enabled on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (RepositoryInteractionLimitOrigin!)

    The origin of the currently active interaction limit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SecurityVulnerabilityOrder)

    \n

    Ordering options for the returned topics.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsActivity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    A description of the goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The full description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The full description of the listing rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The short description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tiers (SponsorsTierConnection)

    The published tiers for this GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsTierOrder)

    \n

    Ordering options for Sponsors tiers returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminInfo (SponsorsTierAdminInfo)

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    The description of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The tier description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInCents (Int!)

    How much this tier costs per month in cents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInDollars (Int!)

    How much this tier costs per month in USD.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsListing (SponsorsListing!)

    The sponsors listing that this tier belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    sponsorships (SponsorshipConnection!)

    The sponsorships associated with this tier.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsTierEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsTier])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsTier)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainer (User!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    maintainer is deprecated.

    Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

    \n
    \n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy!)

    The privacy level for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (User)

    The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    sponsor is deprecated.

    Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n\n

    sponsorEntity (Sponsor)

    The user or organization that is sponsoring, if you have permission to view them.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsorship])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsorship)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the newsletter, the message the sponsorable wanted to give.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorshipNewsletter)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project next items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (VerifiableDomain)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependency

    \n

    A dependency manifest entry.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasDependencies (Boolean!)

    Does the dependency itself have dependencies?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageManager (String)

    The dependency package manager.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageName (String!)

    The name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository containing the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requirements (String!)

    The dependency version requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyConnection

    \n

    The connection type for DependencyGraphDependency.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphDependencyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphDependency])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphDependencyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphDependency)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifest

    \n

    Dependency manifest for a repository.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    blobPath (String!)

    Path to view the manifest file blob.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencies (DependencyGraphDependencyConnection)

    A list of manifest dependencies.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    dependenciesCount (Int)

    The number of dependencies listed in the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n

    exceedsMaxSize (Boolean!)

    Is the manifest too big to parse?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String!)

    Fully qualified manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parseable (Boolean!)

    Were we able to parse the manifest?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the manifest.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestConnection

    \n

    The connection type for DependencyGraphManifest.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DependencyGraphManifestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DependencyGraphManifest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDependencyGraphManifestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n
    \n

    Preview notice

    \n

    DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DependencyGraphManifest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    viewerOrganizationRole (RoleInOrganization)

    \n

    The viewer's role in an organization.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    domains (VerifiableDomainConnection!)

    A list of domains owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

    Enterprise Server installations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    connectedOnly (Boolean)

    \n

    Whether or not to only return installations discovered via GitHub Connect.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerInstallationOrder)

    \n

    Ordering options for Enterprise Server installations returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for support entitlement users returned from the connection.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerInstallationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerInstallation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerInstallation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    platform (FundingPlatform!)

    The funding platform this link is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The configured URL for this funding link.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitIpAddresses ([String!])

    IP addresses that users connect to for git operations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hookIpAddresses ([String!])

    IP addresses that service hooks are sent from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    importerIpAddresses ([String!])

    IP addresses that the importer connects from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pagesIpAddresses ([String!])

    IP addresses for GitHub Pages' A records.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    The category's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    The technical description of how apps listed in this category work with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The category's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryListingCount (Int!)

    How many Marketplace listings have this as their primary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryListingCount (Int!)

    How many Marketplace listings have this as their secondary category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the category used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Marketplace category.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App this listing represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyUrl (URI)

    URL to the listing owner's company site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationResourcePath (URI!)

    The HTTP path for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    configurationUrl (URI!)

    The HTTP URL for configuring access to the listing's integration or OAuth app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    documentationUrl (URI)

    URL to the listing's documentation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescription (String)

    The listing's detailed description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extendedDescriptionHTML (HTML!)

    The listing's detailed description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The listing's introductory description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The listing's introductory description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPublishedFreeTrialPlans (Boolean!)

    Does this listing have any plans with a free trial?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTermsOfService (Boolean!)

    Does this listing have a terms of service link?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorks (String)

    A technical description of how this app works with GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    howItWorksHTML (HTML!)

    The listing's technical description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installationUrl (URI)

    URL to install the product to the viewer's account or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    installedForViewer (Boolean!)

    Whether this listing's app has been installed for the current viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether this listing has been removed from the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPaid (Boolean!)

    Whether the product this listing represents is available as part of a paid plan.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing has been approved for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRejected (Boolean!)

    Whether this listing has been rejected by GitHub for display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverified (Boolean!)

    Whether this listing has been approved for unverified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnverifiedPending (Boolean!)

    Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromDraft (Boolean!)

    Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerificationPendingFromUnverified (Boolean!)

    Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether this listing has been approved for verified display in the Marketplace.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI)

    URL for the listing's logo image.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    normalizedShortDescription (String!)

    The listing's very short description without a trailing period or ampersands.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pricingUrl (URI)

    URL to the listing's detailed pricing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    primaryCategory (MarketplaceCategory!)

    The category that best describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacyPolicyUrl (URI!)

    URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    screenshotUrls ([String]!)

    The URLs for the listing's screenshots.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondaryCategory (MarketplaceCategory)

    An alternate category that describes the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The listing's very short description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing used in its URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusUrl (URI)

    URL to the listing's status page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportEmail (String)

    An email address for support for this listing's app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    supportUrl (URI!)

    Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    termsOfServiceUrl (URI)

    URL to the listing's terms of service.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAddPlans (Boolean!)

    Can the current viewer add plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanApprove (Boolean!)

    Can the current viewer approve this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDelist (Boolean!)

    Can the current viewer delist this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEdit (Boolean!)

    Can the current viewer edit this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditCategories (Boolean!)

    Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEditPlans (Boolean!)

    Can the current viewer edit the plans for this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRedraft (Boolean!)

    Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReject (Boolean!)

    Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanRequestApproval (Boolean!)

    Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchased (Boolean!)

    Indicates whether the current user has an active subscription to this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasPurchasedForAllOrganizations (Boolean!)

    Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsListingAdmin (Boolean!)

    Does the current viewer role allow them to administer this Marketplace listing.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MarketplaceListingEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([MarketplaceListing])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (MarketplaceListing)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domains (VerifiableDomainConnection)

    A list of domains owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \n\n
    \n\n
    \n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether the organization has verified its profile email and website.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersCanForkPrivateRepositories (Boolean!)

    Members can fork private repositories in this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    latestVersion (PackageVersion)

    Find the latest version for the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the name of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageType (PackageType!)

    Identifies the type of the package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository this package belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Find package version by version string.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    version (String!)

    \n

    The package version.

    \n\n
    \n\n
    \n\n\n

    versions (PackageVersionConnection!)

    list of versions for this package.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageVersionOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Package])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Package)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    md5 (String)

    MD5 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Name of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packageVersion (PackageVersion)

    The package version this file belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha1 (String)

    SHA1 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sha256 (String)

    SHA256 hash of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    Size of the file in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to download the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageTag

    \n

    A version tag contains the mapping between a tag name and a version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    Identifies the tag name of the version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (PackageVersion)

    Version that the tag is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    files (PackageFileConnection!)

    List of files associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PackageFileOrder)

    \n

    Ordering of the returned package files.

    \n\n
    \n\n
    \n\n\n

    package (Package)

    The package associated with this version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    platform (String)

    The platform this version was built for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preRelease (Boolean!)

    Whether or not this version is a pre-release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readme (String)

    The README of this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    The release associated with this package version.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statistics (PackageVersionStatistics)

    Statistics about package activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String)

    The package version summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    version (String!)

    The version string.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PackageVersionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PackageVersion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PackageVersion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    downloadsTotalCount (Int!)

    Number of times the package was downloaded since it was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    Returns true if the project is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    items (ProjectNextItemConnection!)

    List of items in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextField)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created the item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectNextItemFieldValue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dependencyGraphManifests (DependencyGraphManifestConnection)

    A list of dependency manifests contained in the repository.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    dependenciesAfter (String)

    \n

    Cursor to paginate dependencies.

    \n\n
    \n\n
    \n

    dependenciesFirst (Int)

    \n

    Number of dependencies to fetch.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    withDependencies (Boolean)

    \n

    Flag to scope to only manifests with dependencies.

    \n\n
    \n\n
    \n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    fundingLinks ([FundingLink!]!)

    The funding links for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    expiresAt (DateTime)

    The time the currently active limit expires.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (RepositoryInteractionLimit!)

    The current limit that is enabled on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (RepositoryInteractionLimitOrigin!)

    The origin of the currently active interaction limit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SecurityVulnerabilityOrder)

    \n

    Ordering options for the returned topics.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsActivity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String)

    A description of the goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescription (String!)

    The full description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fullDescriptionHTML (HTML!)

    The full description of the listing rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The listing's full name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescription (String!)

    The short description of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The short name of the listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tiers (SponsorsTierConnection)

    The published tiers for this GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsTierOrder)

    \n

    Ordering options for Sponsors tiers returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    adminInfo (SponsorsTierAdminInfo)

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    The description of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The tier description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInCents (Int!)

    How much this tier costs per month in cents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyPriceInDollars (Int!)

    How much this tier costs per month in USD.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsListing (SponsorsListing!)

    The sponsors listing that this tier belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    sponsorships (SponsorshipConnection!)

    The sponsorships associated with this tier.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorsTierEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsTier])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorsTier)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainer (User!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    maintainer is deprecated.

    Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

    \n
    \n\n\n\n\n\n\n

    privacyLevel (SponsorshipPrivacy!)

    The privacy level for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (User)

    The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    sponsor is deprecated.

    Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n\n

    sponsorEntity (Sponsor)

    The user or organization that is sponsoring, if you have permission to view them.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The entity that is being sponsored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsorship])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Sponsorship)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The contents of the newsletter, the message the sponsorable wanted to give.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SponsorshipNewsletter)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasSponsorsListing (Boolean!)

    True if this user/organization has a GitHub Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    interactionAbility (RepositoryInteractionAbility)

    The interaction ability settings for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \n\n
    \n\n
    \n\n\n

    isSponsoringViewer (Boolean!)

    True if the viewer is sponsored by this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    packages (PackageConnection!)

    A list of packages under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    names ([String])

    \n

    Find packages by their names.

    \n\n
    \n\n
    \n

    orderBy (PackageOrder)

    \n

    Ordering of the returned packages.

    \n\n
    \n\n
    \n

    packageType (PackageType)

    \n

    Filter registry package by type.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Find packages in a repository by ID.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projectNext (ProjectNext)

    Find a project by project (beta) number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project (beta) number.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsNext (ProjectNextConnection!)

    A list of project (beta) items under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    A project (beta) to search for under the the owner.

    \n\n
    \n\n
    \n

    sortBy (ProjectNextOrderField)

    \n

    How to order the returned projects (beta).

    \n

    The default value is TITLE.

    \n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \n
    \n\n
    \n\n\n

    sponsorsListing (SponsorsListing)

    The GitHub Sponsors listing for this user or organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsMaintainer (SponsorshipConnection!)

    This object's sponsorships as the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includePrivate (Boolean)

    \n

    Whether or not to include private sponsorships in the result set.

    \n

    The default value is false.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    sponsorshipsAsSponsor (SponsorshipConnection!)

    This object's sponsorships as the sponsor.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SponsorshipOrder)

    \n

    Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSponsor (Boolean!)

    Whether or not the viewer is able to sponsor this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsSponsoring (Boolean!)

    True if the viewer is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (VerifiableDomain)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", @@ -20197,7 +20197,7 @@ ] }, "ghae": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasAnonymousAccessEnabled (Boolean!)

    Indicates if the repository has anonymous Git read access feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suspendedAt (DateTime)

    Identifies the date and time when the user was suspended.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    city (String)

    City.

    \n\n\n\n\n\n\n\n\n\n\n\n

    country (String)

    Country name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    countryCode (String)

    Country code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    region (String)

    Region name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    regionCode (String)

    Region or state code.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    logoBackgroundColor (String!)

    The hex color code, without the leading '#', for the logo background.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logoUrl (URI!)

    A URL pointing to the app's logo.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting image.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the app.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    A slug based on the name of the app for use in URLs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to the app's homepage.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was assigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who was assigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newBase (String!)

    The new base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oldBase (String!)

    The old base for this PR.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentRefName (String!)

    Identifies the name of the base ref for the pull request after it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousRefName (String!)

    Identifies the name of the base ref for the pull request before it was changed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String)

    Identifies the name of the Ref associated with the base_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ranges ([BlameRange!]!)

    The list of ranges from a Git blame.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    age (Int!)

    Identifies the recency of the change, from 1 (new) to 10 (old). This is\ncalculated as a 2-quantile and determines the length of distance between the\nmedian age of all the changes in the file and the recency of the current\nrange's change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit!)

    Identifies the line author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endingLine (Int!)

    The ending line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startingLine (Int!)

    The starting line for the range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    byteSize (Int!)

    Byte size of Blob object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBinary (Boolean)

    Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Indicates whether the contents is truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the Blob is binary.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this bot.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

    A list of conflicts matching branches protection rule and other branch protection rules.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    bypassPullRequestAllowances (BypassPullRequestAllowanceConnection!)

    A list of actors able to bypass PRs for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    creator (Actor)

    The actor who created this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissesStaleReviews (Boolean!)

    Will new commits pushed to matching branches dismiss pull request review approvals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAdminEnforced (Boolean!)

    Can admins overwrite branch protection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingRefs (RefConnection!)

    Repository refs that are protected by this rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushAllowances (PushAllowanceConnection!)

    A list push allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    The repository associated with this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusChecks ([RequiredStatusCheckDescription!])

    List of required status checks that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresApprovingReviews (Boolean!)

    Are approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCommitSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStatusChecks (Boolean!)

    Are status checks required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresStrictStatusChecks (Boolean!)

    Are branches required to be up to date before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsPushes (Boolean!)

    Is pushing to matching branches restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restrictsReviewDismissals (Boolean!)

    Is dismissal of pull request reviews restricted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

    A list review dismissal allowances for this branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conflictingBranchProtectionRule (BranchProtectionRule)

    Identifies the conflicting branch protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the branch ref that has conflicting rules.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleConflictEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRuleConflict])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRuleConflict)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BranchProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BranchProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BranchProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowance

    \n

    A team or user who has the ability to bypass a pull request requirement on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (BranchActorAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceConnection

    \n

    The connection type for BypassPullRequestAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([BypassPullRequestAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([BypassPullRequestAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nBypassPullRequestAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (BypassPullRequestAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CWE)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotationLevel (CheckAnnotationLevel)

    The annotation's severity level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blobUrl (URI!)

    The path to the file that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (CheckAnnotationSpan!)

    The position of this annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String!)

    The annotation's message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path that this annotation was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rawDetails (String)

    Additional information about the annotation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The annotation's title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckAnnotationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckAnnotation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckAnnotation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (Int)

    Column number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int!)

    Line number (1 indexed).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    end (CheckAnnotationPosition!)

    End position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n

    start (CheckAnnotationPosition!)

    Start position (inclusive).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    annotations (CheckAnnotationConnection)

    The check run's annotations.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    checkSuite (CheckSuite!)

    The check suite that this run is a part of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    completedAt (DateTime)

    Identifies the date and time when the check run was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    detailsUrl (URI)

    The URL from which to find full details of the check run on the integrator's site.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check run on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the check for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink to the check run summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check run was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \n\n
    \n\n
    \n\n\n

    summary (String)

    A string representing the check run's summary.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    A string representing the check run's text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    A string representing the check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckRunEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckRun])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckRun)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckStep)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The GitHub App which created this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branch (Ref)

    The name of the branch for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkRuns (CheckRunConnection)

    The check runs associated with a check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckRunFilter)

    \n

    Filters the check runs by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (User)

    The user who triggered the check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    matchingPullRequests (PullRequestConnection)

    A list of open pull requests matching the check suite.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    push (Push)

    The push that triggered this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The status of this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflowRun (WorkflowRun)

    The workflow run associated with this check suite.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CheckSuiteEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckSuite])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CheckSuite)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closer (Closer)

    Object which triggered the creation of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this closed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The key for the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The formal name of the Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI)

    The HTTP path for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    The HTTP URL for this Code of Conduct.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedCommentAuthor (Actor)

    The user who authored the deleted comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    associatedPullRequests (PullRequestConnection)

    The merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (PullRequestOrder)

    \n

    Ordering options for pull requests.

    \n\n
    \n\n
    \n\n\n

    author (GitActor)

    Authorship details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredByCommitter (Boolean!)

    Check if the committer and the author match.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authoredDate (DateTime!)

    The datetime when this commit was authored.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authors (GitActorConnection!)

    The list of authors for this commit based on the git author and the Co-authored-by\nmessage trailer. The git author will always be first.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    blame (Blame!)

    Fetches git blame information.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The file whose Git blame information you want.

    \n\n
    \n\n
    \n\n\n

    changedFiles (Int!)

    The number of changed files in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checkSuites (CheckSuiteConnection)

    The check suites associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (CheckSuiteFilter)

    \n

    Filters the check suites by this type.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    comments (CommitCommentConnection!)

    Comments made on the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedDate (DateTime!)

    The datetime when this commit was committed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committedViaWeb (Boolean!)

    Check if committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer details of the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployments (DeploymentConnection)

    The deployments associated with a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    file (TreeEntry)

    The tree entry representing the file located at the given path.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    path (String!)

    \n

    The path for the file.

    \n\n
    \n\n
    \n\n\n

    history (CommitHistoryConnection!)

    The linear commit history starting from (and including) this commit, in the same order as git log.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (CommitAuthor)

    \n

    If non-null, filters history to only show commits with matching authorship.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    path (String)

    \n

    If non-null, filters history to only show commits touching files under this path.

    \n\n
    \n\n
    \n

    since (GitTimestamp)

    \n

    Allows specifying a beginning time or date for fetching commits.

    \n\n
    \n\n
    \n

    until (GitTimestamp)

    \n

    Allows specifying an ending time or date for fetching commits.

    \n\n
    \n\n
    \n\n\n

    message (String!)

    The Git commit message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBody (String!)

    The Git commit message body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageBodyHTML (HTML!)

    The commit message body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadline (String!)

    The Git commit message headline.

    \n\n\n\n\n\n\n\n\n\n\n\n

    messageHeadlineHTML (HTML!)

    The commit message headline rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (Organization)

    The organization this commit was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parents (CommitConnection!)

    The parents of a commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pushedDate (DateTime)

    The datetime when this commit was pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (GitSignature)

    Commit signing information, if present.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (Status)

    Status information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statusCheckRollup (StatusCheckRollup)

    Check and Status rollup information for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tarballUrl (URI!)

    Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tree (Tree!)

    Commit's root Tree.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeResourcePath (URI!)

    The HTTP path for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    treeUrl (URI!)

    The HTTP URL for the tree of this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    zipballUrl (URI!)

    Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment, if the commit exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    Identifies the file path associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    Identifies the line position associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this commit comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CommitComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CommitComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedCommitContributionConnection!)

    The commit contributions, each representing a day.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (CommitContributionOrder)

    \n

    Ordering options for commit contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the commits were made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for the user's commits to the repository in this time range.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Commit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Commit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was connected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    colors ([String!]!)

    A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHalloween (Boolean!)

    Determine if the color set was chosen because it's currently Halloween.

    \n\n\n\n\n\n\n\n\n\n\n\n

    months ([ContributionCalendarMonth!]!)

    A list of the months of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalContributions (Int!)

    The count of total contributions in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weeks ([ContributionCalendarWeek!]!)

    A list of the weeks of contributions in this calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    The hex color code that represents how many contributions were made on this day compared to others in the calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionCount (Int!)

    How many contributions were made by the user on this day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    date (Date!)

    The day this square represents.

    \n\n\n\n\n\n\n\n\n\n\n\n

    weekday (Int!)

    A number representing which day of the week this square represents, e.g., 1 is Monday.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    firstDay (Date!)

    The date of the first day of this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalWeeks (Int!)

    How many weeks started in this month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    year (Int!)

    The year the month occurred in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributionDays ([ContributionCalendarDay!]!)

    The days of contributions in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstDay (Date!)

    The date of the earliest square in this week.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitContributionsByRepository ([CommitContributionsByRepository!]!)

    Commit contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    contributionCalendar (ContributionCalendar!)

    A calendar of this user's contributions on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionYears ([Int!]!)

    The years the user has been making contributions with the most recent year first.

    \n\n\n\n\n\n\n\n\n\n\n\n

    doesEndInCurrentMonth (Boolean!)

    Determine if this collection's time span ends in the current month.

    \n\n\n\n\n\n\n\n\n\n\n\n

    earliestRestrictedContributionDate (Date)

    The date of the first restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endedAt (DateTime!)

    The ending date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstIssueContribution (CreatedIssueOrRestrictedContribution)

    The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection's time range and ignoreTimeRange is false. If\nthe issue is not visible but the user has opted to show private contributions,\na RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

    The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection's time range and\nignoreTimeRange is not true. If the pull request is not visible but the user\nhas opted to show private contributions, a RestrictedContribution will be returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

    The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasActivityInThePast (Boolean!)

    Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyContributions (Boolean!)

    Determine if there are any contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasAnyRestrictedContributions (Boolean!)

    Determine if the user made any contributions in this time frame whose details\nare not visible because they were made in a private repository. Can only be\ntrue if the user enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSingleDay (Boolean!)

    Whether or not the collector's time span is all within the same day.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueContributions (CreatedIssueContributionConnection!)

    A list of issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issueContributionsByRepository ([IssueContributionsByRepository!]!)

    Issue contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    joinedGitHubContribution (JoinedGitHubContribution)

    When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestRestrictedContributionDate (Date)

    The date of the most recent restricted contribution the user made in this time\nperiod. Can only be non-null when the user has enabled private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithActivity (ContributionsCollection)

    When this collection's time range does not include any activity from the user, use this\nto get a different collection from an earlier time range that does have activity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mostRecentCollectionWithoutActivity (ContributionsCollection)

    Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularIssueContribution (CreatedIssueContribution)

    The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    popularPullRequestContribution (CreatedPullRequestContribution)

    The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestContributions (CreatedPullRequestContributionConnection!)

    Pull request contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

    Pull request contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

    Pull request review contributions made by the user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

    Pull request review contributions made by the user, grouped by repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    maxRepositories (Int)

    \n

    How many repositories should be included.

    \n

    The default value is 25.

    \n
    \n\n
    \n\n\n

    repositoryContributions (CreatedRepositoryContributionConnection!)

    A list of repositories owned by the user that the user created in this time range.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from the result.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    restrictedContributionsCount (Int!)

    A count of contributions made by the user that the viewer cannot access. Only\nnon-zero when the user has chosen to share their private contribution counts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime!)

    The beginning date and time of this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCommitContributions (Int!)

    How many commits were made by the user in this time span.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalIssueContributions (Int!)

    How many issues the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestContributions (Int!)

    How many pull requests the user opened.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalPullRequestReviewContributions (Int!)

    How many pull request reviews the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedCommits (Int!)

    How many different repositories the user committed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedIssues (Int!)

    How many different repositories the user opened issues in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first issue ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented issue be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoriesWithContributedPullRequestReviews (Int!)

    How many different repositories the user left pull request reviews in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRepositoriesWithContributedPullRequests (Int!)

    How many different repositories the user opened pull requests in.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first pull request ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n

    excludePopular (Boolean)

    \n

    Should the user's most commented pull request be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    totalRepositoryContributions (Int!)

    How many repositories the user created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    excludeFirst (Boolean)

    \n

    Should the user's first repository ever be excluded from this count.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    user (User!)

    The user who made the contributions in this collection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this convert to draft event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nConvertedToDiscussionEvent

    \n

    Represents aconverted_to_discussionevent on a given issue.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion that the issue was converted into.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commitCount (Int!)

    How many commits were made on this day to this repository by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the user made a commit in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedCommitContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedCommitContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of commits across days and repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedCommitContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedIssueContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedIssueContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedIssueContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that was opened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContribution

    \n

    Represents the contribution a user made by leaving a review on a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview!)

    The review the user left on the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository containing the pull request that the user reviewed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedPullRequestReviewContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedPullRequestReviewContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedPullRequestReviewContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([CreatedRepositoryContributionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CreatedRepositoryContribution])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (CreatedRepositoryContribution)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    referencedAt (DateTime!)

    Identifies when the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request that made the reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (ReferencedSubject!)

    Issue or pull request to which the reference was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    willCloseTarget (Boolean!)

    Checks if the target will be closed when the source is merged.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with thedemilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The deploy key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    readOnly (Boolean!)

    Whether or not the deploy key is read only.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The deploy key title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    verified (Boolean!)

    Whether or not the deploy key has been verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeployKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeployKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeployKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    The deployment associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    The ref associated with thedeployedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    Identifies the commit sha of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitOid (String!)

    Identifies the oid of the deployment commit, even if the commit has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The deployment description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestEnvironment (String)

    The latest environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestStatus (DeploymentStatus)

    The latest status of this deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalEnvironment (String)

    The original environment to which this deployment was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String)

    Extra information that a deployment system might need.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the Ref of the deployment, if the deployment was created by ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentState)

    The current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    statuses (DeploymentStatusConnection)

    A list of statuses associated with the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    task (String)

    The deployment task.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Deployment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Deployment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentStatus (DeploymentStatus!)

    The deployment status that updated the deployment environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentProtectionRule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review the deployment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentReviewer)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor!)

    Identifies the actor who triggered the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployment (Deployment!)

    Identifies the deployment associated with status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (String)

    Identifies the environment of the deployment at the time of this deployment status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    environment is available under the Deployments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    environmentUrl (URI)

    Identifies the environment URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    logUrl (URI)

    Identifies the log URL of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (DeploymentStatusState!)

    Identifies the current state of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DeploymentStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DeploymentStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (ReferencedSubject!)

    Issue or pull request from which the issue was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Issue or pull request which was disconnected.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The main text of the discussion post.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The number identifying this discussion within the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionCategory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (DiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Discussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    billingInfo (EnterpriseBillingInfo)

    Enterprise billing information visible to enterprise billing managers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the enterprise as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The location of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    members (EnterpriseMemberConnection!)

    A list of users who are members of this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    deployment (EnterpriseUserDeployment)

    \n

    Only return members within the selected GitHub Enterprise deployment.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for members returned from the connection.

    \n\n
    \n\n
    \n

    organizationLogins ([String!])

    \n

    Only return members within the organizations with these logins.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization or server.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    The name of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (OrganizationConnection!)

    A list of organizations that belong to this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    viewerOrganizationRole (RoleInOrganization)

    \n

    The viewer's role in an organization.

    \n\n
    \n\n
    \n\n\n

    ownerInfo (EnterpriseOwnerInfo)

    Enterprise information only visible to enterprise owners.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    slug (String!)

    The URL-friendly identifier for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseUserAccountConnection!)

    A list of user accounts on this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerIsAdmin (Boolean!)

    Is the current viewer an admin of this enterprise?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The URL of the enterprise website.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The role of the administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitation

    \n

    An invitation for a user to become an owner or billing manager of an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email of the person who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise the invitation is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseAdministratorRole!)

    The invitee's pending role in the enterprise (owner or billing_manager).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseAdministratorInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseAdministratorInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseAdministratorInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allLicensableUsersCount (Int!)

    The number of licenseable users/emails across the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assetPacks (Int!)

    The number of data packs used by all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    availableSeats (Int!)

    The number of available seats across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    availableSeats is deprecated.

    availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    bandwidthQuota (Float!)

    The bandwidth quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsage (Float!)

    The bandwidth usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bandwidthUsagePercentage (Int!)

    The bandwidth usage as a percentage of the bandwidth quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    seats (Int!)

    The total seats across all organizations owned by the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    seats is deprecated.

    seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    storageQuota (Float!)

    The storage quota in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsage (Float!)

    The storage usage in GB for all organizations owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    storageUsagePercentage (Int!)

    The storage usage as a percentage of the storage quota.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalAvailableLicenses (Int!)

    The number of available licenses across all owned organizations based on the unique number of billable users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalLicenses (Int!)

    The total number of licenses allocated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (SamlDigestAlgorithm)

    The digest algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise)

    The enterprise this identity provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    ExternalIdentities provisioned by this identity provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the identity provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    recoveryCodes ([String!])

    Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (SamlSignatureAlgorithm)

    The signature algorithm used to sign SAML requests for the identity provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the identity provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseMember])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the user does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All members consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (EnterpriseMember)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOrganizationMembershipEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (EnterpriseUserAccountMembershipRole!)

    The role of the user in the enterprise membership.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseOutsideCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the outside collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All outside collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    admins (EnterpriseAdministratorConnection!)

    A list of all of the administrators for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for administrators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabled (UserConnection!)

    A list of users in the enterprise who currently have two-factor authentication disabled.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

    Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided private repository forking setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

    The setting value for base repository permissions for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided base repository permission.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (DefaultRepositoryPermissionField!)

    \n

    The permission to find organizations for.

    \n\n
    \n\n
    \n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the enterprise has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base repository permission is currently being updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingTwoFactorRequirement (Boolean!)

    Whether the two-factor authentication requirement is currently being enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided can change repository visibility setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanCreateInternalRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create internal repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePrivateRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create private repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreatePublicRepositoriesSetting (Boolean)

    The setting value for whether members of organizations in the enterprise can create public repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

    The setting value for whether members of organizations in the enterprise can create repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository creation setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (OrganizationMembersCanCreateRepositoriesSettingValue!)

    \n

    The setting to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete issues.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete issues setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can delete repositories setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members of organizations in the enterprise can invite outside collaborators.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can invite collaborators setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

    Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members with admin permissions for repositories can update protected branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can update protected branches setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether members can view dependency insights.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided members can view dependency insights setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether organization projects are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided organization projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

    A list of outside collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    login (String)

    \n

    The login of one specific outside collaborator.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseMemberOrder)

    \n

    Ordering options for outside collaborators returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    visibility (RepositoryVisibility)

    \n

    Only return outside collaborators on repositories with this visibility.

    \n\n
    \n\n
    \n\n\n

    pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

    A list of pending administrator invitations for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseAdministratorInvitationOrder)

    \n

    Ordering options for pending enterprise administrator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseAdministratorRole)

    \n

    The role to filter by.

    \n\n
    \n\n
    \n\n\n

    pendingCollaboratorInvitations (RepositoryInvitationConnection!)

    A list of pending collaborator invitations across the repositories in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingCollaborators (EnterprisePendingCollaboratorConnection!)

    A list of pending collaborators across the repositories in the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    pendingCollaborators is deprecated.

    Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryInvitationOrder)

    \n

    Ordering options for pending repository collaborator invitations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

    A list of pending member invitations for organizations in the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether repository projects are enabled in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryProjectsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided repository projects setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    samlIdentityProvider (EnterpriseIdentityProvider)

    The SAML Identity Provider for the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProviderSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the SAML single sign-on setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (IdentityProviderConfigurationState!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

    The setting value for whether team discussions are enabled for organizations in this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamDiscussionsSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the provided team discussions setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n

    twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

    The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twoFactorRequiredSettingOrganizations (OrganizationConnection!)

    A list of enterprise organizations configured with the two-factor authentication setting value.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations with this setting.

    \n\n
    \n\n
    \n

    value (Boolean!)

    \n

    The setting value to find organizations for.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingCollaboratorEdge

    \n

    A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invited collaborator does not have a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending collaborators consume a license Removal on 2021-01-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (EnterpriseRepositoryInfoConnection!)

    The enterprise organization repositories this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterprisePendingMemberInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalUniqueUserCount (Int!)

    Identifies the total count of unique users in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUnlicensed (Boolean!)

    Whether the invitation has a license for the enterprise.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    isUnlicensed is deprecated.

    All pending members consume a license Removal on 2020-07-01 UTC.

    \n
    \n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The repository's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseRepositoryInfoEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseRepositoryInfo])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseRepositoryInfo)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    customerName (String!)

    The customer name to which the Enterprise Server installation belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hostName (String!)

    The host name of the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isConnected (Boolean!)

    Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccounts (EnterpriseServerUserAccountConnection!)

    User accounts on this Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountOrder)

    \n

    Ordering options for Enterprise Server user accounts returned from the connection.

    \n\n
    \n\n
    \n\n\n

    userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

    User accounts uploads for the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountsUploadOrder)

    \n

    Ordering options for Enterprise Server user accounts uploads returned from the connection.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emails (EnterpriseServerUserAccountEmailConnection!)

    User emails belonging to this user account.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (EnterpriseServerUserAccountEmailOrder)

    \n

    Ordering options for Enterprise Server user account emails returned from the connection.

    \n\n
    \n\n
    \n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation on which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether the user account is a site administrator on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The login of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    profileName (String)

    The profile name of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteCreatedAt (DateTime!)

    The date and time when the user account was created on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remoteUserId (Int!)

    The ID of the user account on the Enterprise Server installation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrimary (Boolean!)

    Indicates whether this is the primary email of the associated user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userAccount (EnterpriseServerUserAccount!)

    The user account to which the email belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountEmailEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountEmail])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountEmail)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise to which this upload belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseServerInstallation (EnterpriseServerInstallation!)

    The Enterprise Server installation for which this upload was generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the file uploaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    syncState (EnterpriseServerUserAccountsUploadSyncState!)

    The synchronization state of the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseServerUserAccountsUploadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseServerUserAccountsUpload])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseServerUserAccountsUpload)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccount

    \n

    An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the enterprise user account's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterprise (Enterprise!)

    The enterprise in which this user account exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    An identifier for the enterprise user account, a login or email address.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the enterprise user account.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizations (EnterpriseOrganizationMembershipConnection!)

    A list of enterprise organizations this user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (OrganizationOrder)

    \n

    Ordering options for organizations returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (EnterpriseUserAccountMembershipRole)

    \n

    The role of the user in the enterprise organization.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user within the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnterpriseUserAccountEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([EnterpriseUserAccount])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (EnterpriseUserAccount)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Environment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    guid (String!)

    The GUID for this identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    Organization invitation for this SCIM-provisioned external identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentity (ExternalIdentitySamlAttributes)

    SAML Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    scimIdentity (ExternalIdentityScimAttributes)

    SCIM Identity attributes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ExternalIdentityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ExternalIdentity])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ExternalIdentity)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameId (String)

    The NameID of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SAML identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    emails ([UserEmailMetadata!])

    The emails associated with the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    familyName (String)

    Family name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    givenName (String)

    Given name of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    groups ([String!])

    The groups linked to this identity in IDP.

    \n\n\n\n\n\n\n\n\n\n\n\n

    username (String)

    The userName of the SCIM identity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (GistCommentConnection!)

    A list of comments associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The gist description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files ([GistFile])

    The files in this gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    The maximum number of files to return.

    \n

    The default value is 10.

    \n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The oid of the files to return.

    \n\n
    \n\n
    \n\n\n

    forks (GistConnection!)

    A list of forks associated with the gist.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n\n\n

    isFork (Boolean!)

    Identifies if the gist is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPublic (Boolean!)

    Whether the gist is public or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The gist name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner)

    The gist owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pushedAt (DateTime)

    Identifies when the gist was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this Gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the comment body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gist (Gist!)

    The associated gist.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GistComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GistComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GistEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Gist])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Gist)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    encodedName (String)

    The file name encoded to remove characters that are invalid in URL paths.

    \n\n\n\n\n\n\n\n\n\n\n\n

    encoding (String)

    The gist file encoding.

    \n\n\n\n\n\n\n\n\n\n\n\n

    extension (String)

    The file extension from the file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isImage (Boolean!)

    Indicates if this file is an image.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTruncated (Boolean!)

    Whether the file's contents were truncated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    language (Language)

    The programming language this file is written in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The gist file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int)

    The gist file size in bytes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String)

    UTF8 text data or null if the file is binary.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    truncate (Int)

    \n

    Optionally truncate the returned file to this length.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the author's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    date (GitTimestamp)

    The timestamp of the Git action (authoring or committing).

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name in the Git commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The GitHub user corresponding to the email field. Null if no such user exists.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([GitActorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([GitActor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (GitActor)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    gitHubServicesSha (GitObjectID!)

    Returns a String that's a SHA of github-services.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    keyId (String)

    Hex-encoded ID of the key that signed this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRef (Ref)

    Identifies the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the Ref associated with the head_ref_deleted event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    afterCommit (Commit)

    Identifies the after commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    beforeCommit (Commit)

    Identifies the before commit SHA for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contexts ([HovercardContext!]!)

    Each of the contexts for this hovercard.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntry

    \n

    An IP address or range of addresses that is allowed to access an owner's resources.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowListValue (String!)

    A single IP address or range of IP addresses in CIDR notation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isActive (Boolean!)

    Whether the entry is currently active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The name of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (IpAllowListOwner!)

    The owner of the IP allow list entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IpAllowListEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IpAllowListEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IpAllowListEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssue

    \n

    An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the body of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyResourcePath (URI!)

    The http path for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    Identifies the body of the issue rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyUrl (URI!)

    The http URL for this issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this issue read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    locked (Boolean!)

    true if the object is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the issue number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Issue conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (IssueState!)

    Identifies the state of the issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (IssueTimelineConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (IssueTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([IssueTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns the pull request associated with the comment, if this comment was made on a\npull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Issue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedIssueContributionConnection!)

    The issue contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the issues were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Issue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String)

    The template purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String)

    The suggested issue body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The template name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The suggested issue title.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([IssueTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([IssueTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (IssueTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String!)

    Identifies the label color.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the label was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A brief description of this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDefault (Boolean!)

    Indicates whether or not this is a default label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    name (String!)

    Identifies the label name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the label was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LabelEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Label])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Label)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with thelabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    color (String)

    The color defined for the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the current language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([LanguageEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Language])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalSize (Int!)

    The total size in bytes of files written in that language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    size (Int!)

    The number of bytes of code written in the language.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The full text of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conditions ([LicenseRule]!)

    The conditions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    A human-readable description of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    featured (Boolean!)

    Whether the license should be featured.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hidden (Boolean!)

    Whether the license should be displayed in license pickers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    implementation (String)

    Instructions on how to implement the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The lowercased SPDX ID of the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limitations ([LicenseRule]!)

    The limitations set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The license full name specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nickname (String)

    Customary short name if applicable (e.g, GPLv3).

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissions ([LicenseRule]!)

    The permissions set by the license.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pseudoLicense (Boolean!)

    Whether the license is a pseudo-license placeholder (e.g., other, no-license).

    \n\n\n\n\n\n\n\n\n\n\n\n

    spdxId (String)

    Short identifier specified by https://spdx.org/licenses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI)

    URL to the license on https://choosealicense.com.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    description (String!)

    A description of the rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The machine-readable rule key.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (String!)

    The human-readable rule label.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (LockReason)

    Reason that the conversation was locked (optional).

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI!)

    A URL pointing to the GitHub App's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The mannequin's email on the source instance.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTML path to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL to this resource.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRef (Ref)

    Identifies the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeRefName (String!)

    Identifies the name of the Ref associated with the merge event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this merged event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    Identifies the actor who created the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    Identifies the description of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dueOn (DateTime)

    Identifies the due date of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    number (Int!)

    Identifies the number of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    progressPercentage (Float!)

    Identifies the percentage complete for the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with the milestone.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (MilestoneState!)

    Identifies the state of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    Identifies the title of the milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this milestone.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([MilestoneEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Milestone])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Milestone)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestoneTitle (String!)

    Identifies the milestone title associated with themilestonedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (MilestoneItem!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousProjectColumnName (String!)

    Column name the issue or pull request was moved from.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectCard (ProjectCard)

    Project card referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name the issue or pull request was moved to.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    applicationUrl (URI)

    The application URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    callbackUrl (URI)

    The callback URL of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rateLimit (Int)

    The rate limit of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (OauthApplicationCreateAuditEntryState)

    The state of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationEmail (String)

    The email address used to invite a billing manager for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgAddMemberAuditEntryPermission)

    The permission level of the member added to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    billingPlan (OrgCreateAuditEntryBillingPlan)

    The billing plan for the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    digestMethodUrl (URI)

    The SAML provider's digest algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuerUrl (URI)

    The SAML provider's issuer URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethodUrl (URI)

    The SAML provider's signature algorithm URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    singleSignOnUrl (URI)

    The SAML provider's single sign-on URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationInvitation (OrganizationInvitation)

    The organization invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationName (String)

    The name of the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationResourcePath (URI)

    The HTTP path for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oauthApplicationUrl (URI)

    The HTTP URL for the OAuth Application.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveBillingManagerAuditEntryReason)

    The reason for the billing manager being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

    The types of membership the member has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveMemberAuditEntryReason)

    The reason for the member being removed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

    The types of membership the outside collaborator has with the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

    The reason for the outside collaborator being removed from the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredCustomEmailRoutingsCount (Int)

    The number of custom email routings for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredIssueAssignmentsCount (Int)

    The number of issue assignments for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

    Restored organization membership objects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredMembershipsCount (Int)

    The number of restored memberships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoriesCount (Int)

    The number of repositories of the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryStarsCount (Int)

    The number of starred repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    restoredRepositoryWatchesCount (Int)

    The number of watched repositories for the restored member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUser (User)

    The user being unblocked by the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserName (String)

    The username of the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserResourcePath (URI)

    The HTTP path for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockedUserUrl (URI)

    The HTTP URL for the blocked user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The new base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (OrgUpdateMemberAuditEntryPermission)

    The new member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateMemberAuditEntryPermission)

    The former member permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canCreateRepositories (Boolean)

    Can members create repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

    The permission for visibility level of repositories for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canInviteOutsideCollaboratorsToRepositories (Boolean)

    Can outside collaborators be invited to repositories in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganization

    \n

    An account on GitHub, with one or more owners, that has repositories, members and teams.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    auditLog (OrganizationAuditEntryConnection!)

    Audit log entries of the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (AuditLogOrder)

    \n

    Ordering options for the returned audit log entries.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The query string to filter audit entries.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the organization's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The organization's public profile description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (String)

    The organization's public profile description rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The organization's public email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

    The setting value for whether the organization has an IP allow list enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses that are allowed to access resources owned by the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IpAllowListEntryOrder)

    \n

    Ordering options for IP allow list entries returned.

    \n\n
    \n\n
    \n\n\n

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The organization's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The organization's login name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    membersCanForkPrivateRepositories (Boolean!)

    Members can fork private repositories in this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersWithRole (OrganizationMemberConnection!)

    A list of users who are members of this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The organization's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationBillingEmail (String)

    The billing email for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingMembers (UserConnection!)

    A list of users who have been invited to join this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing organization's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    requiresTwoFactorAuthentication (Boolean)

    When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    samlIdentityProvider (OrganizationIdentityProvider)

    The Organization's SAML identity providers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    Find an organization's team by its slug.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    slug (String!)

    \n

    The name or slug of the team to find.

    \n\n
    \n\n
    \n\n\n

    teams (TeamConnection!)

    A list of teams in this organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    ldapMapped (Boolean)

    \n

    If true, filters teams that are mapped to an LDAP Group (Enterprise only).

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Ordering options for teams returned from the connection.

    \n\n
    \n\n
    \n

    privacy (TeamPrivacy)

    \n

    If non-null, filters teams according to privacy.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If non-null, filters teams with query on team name and team slug.

    \n\n
    \n\n
    \n

    role (TeamRole)

    \n

    If non-null, filters teams according to whether the viewer is an admin or member on team.

    \n\n
    \n\n
    \n

    rootTeamsOnly (Boolean)

    \n

    If true, restrict to only root teams.

    \n

    The default value is false.

    \n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The HTTP path listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL listing organization's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    twitterUsername (String)

    The organization's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Organization is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateRepositories (Boolean!)

    Viewer can create repositories on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateTeams (Boolean!)

    Viewer can create teams on this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsAMember (Boolean!)

    Viewer is an active member of this organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    websiteUrl (URI)

    The organization's public profile URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationAuditEntryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationAuditEntry])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationAuditEntry)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Organization])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Organization)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    digestMethod (URI)

    The digest algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalIdentities (ExternalIdentityConnection!)

    External Identities provisioned by this Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    idpCertificate (X509Certificate)

    The x509 certificate used by the Identity Provider to sign assertions and responses.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issuer (String)

    The Issuer Entity ID for the SAML Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Organization this Identity Provider belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signatureMethod (URI)

    The signature algorithm used to sign SAML requests for the Identity Provider.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ssoUrl (URI)

    The URL endpoint for the Identity Provider's SAML SSO.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String)

    The email address of the user invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitationType (OrganizationInvitationType!)

    The type of invitation that was sent (e.g. email, user).

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who was invited to the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization the invite is for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationInvitationRole!)

    The user's pending role in the organization (e.g. member, owner).

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([OrganizationInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (OrganizationInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([OrganizationMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasTwoFactorEnabled (Boolean)

    Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (OrganizationMemberRole)

    The role this user has in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantTeams (TeamConnection!)

    Teams in this organization the user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    teamsResourcePath (URI!)

    The path for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The URL for the full team list for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalTeamCount (Int!)

    The total number of teams the user is on in the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relevantOrganizations (OrganizationConnection!)

    Organizations this user is a member of that are relevant.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    totalOrganizationCount (Int!)

    The total number of organizations this user is in.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    endCursor (String)

    When paginating forwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasNextPage (Boolean!)

    When paginating forwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasPreviousPage (Boolean!)

    When paginating backwards, are there more items?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startCursor (String)

    When paginating backwards, the cursor to continue.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    organization (Organization!)

    The organization the repository belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (DefaultRepositoryPermissionField!)

    The level of access this source has granted to the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    source (PermissionGranter!)

    The source of this permission.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnableItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnableItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    The issue that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that this issue was pinned to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PinnedIssueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedIssue])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PinnedIssue)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProfileItemShowcase

    \n

    A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    hasPinnedItems (Boolean!)

    Whether or not the owner has pinned any repositories or gists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    items (PinnableItemConnection!)

    The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The project's description body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The projects description body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the object is closed (definition of closed may depend on type).

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    columns (ProjectColumnConnection!)

    List of columns in the project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who originally created the project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectOwner!)

    The project's owner. Currently limited to repositories, organizations, and users.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pendingCards (ProjectCardConnection!)

    List of pending cards in this project.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    progress (ProjectProgress!)

    Project progress details.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectState!)

    Whether the project is open or closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    column (ProjectColumn)

    The project column this card is associated under. A card may only belong to one\nproject column at a time. The column field will be null if the card is created\nin a pending state and has yet to be associated with a column. Once cards are\nassociated with a column, they will not become pending in the future.

    \n\n\n\n\n\n\n\n\n\n\n\n

    content (ProjectCardItem)

    The card content item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Whether the card is archived.

    \n\n\n\n\n\n\n\n\n\n\n\n

    note (String)

    The card note.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (ProjectCardState)

    The state of ProjectCard.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this card.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectCardEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectCard])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectCard)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cards (ProjectCardConnection!)

    List of cards in the column.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The project column's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    purpose (ProjectColumnPurpose)

    The semantic purpose of the column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this project column.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectColumnEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectColumn])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ProjectColumn)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ProjectEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Project])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Project)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    doneCount (Int!)

    The number of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    donePercentage (Float!)

    The percentage of done cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabled (Boolean!)

    Whether progress tracking is enabled and cards with purpose exist for this project.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressCount (Int!)

    The number of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inProgressPercentage (Float!)

    The percentage of in-progress cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoCount (Int!)

    The number of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n

    todoPercentage (Float!)

    The percentage of to do cards.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    accessedAt (DateTime)

    The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies the date and time when the key was created. Keys created before\nMarch 5th, 2014 have inaccurate values. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fingerprint (String!)

    The fingerprint for this PublicKey.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadOnly (Boolean)

    Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    key (String!)

    The public key string.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime)

    Identifies the date and time when the key was updated. Keys created before\nMarch 5th, 2014 may have inaccurate values. Values will be null for keys not\nowned by the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PublicKeyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PublicKey])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PublicKey)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeLockReason (LockReason)

    Reason that the conversation was locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    additions (Int!)

    The number of additions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignees (UserConnection!)

    A list of Users assigned to this object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRef (Ref)

    Identifies the base Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefName (String!)

    Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRefOid (GitObjectID!)

    Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    baseRepository (Repository)

    The repository associated with this pull request's base Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canBeRebased (Boolean!)

    Whether or not the pull request is rebaseable.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    changedFiles (Int!)

    The number of changed files in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksResourcePath (URI!)

    The HTTP path for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    checksUrl (URI!)

    The HTTP URL for the checks of this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closed (Boolean!)

    true if the pull request is closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closedAt (DateTime)

    Identifies the date and time when the object was closed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n\n\n

    comments (IssueCommentConnection!)

    A list of comments associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    commits (PullRequestCommitConnection!)

    A list of commits present in this pull request's head branch not present in the base branch.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions in this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this pull request's body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    files (PullRequestChangedFileConnection)

    Lists the files changed within this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    headRef (Ref)

    Identifies the head Ref associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefName (String!)

    Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRefOid (GitObjectID!)

    Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepository (Repository)

    The repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    headRepositoryOwner (RepositoryOwner)

    The owner of the repository associated with this pull request's head Ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hovercard (Hovercard!)

    The hovercard information for this issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    includeNotificationContexts (Boolean)

    \n

    Whether or not to include notification contexts.

    \n

    The default value is true.

    \n
    \n\n
    \n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    The head and base repositories are different.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Identifies if the pull request is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isReadByViewer (Boolean)

    Is this pull request read by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labels (LabelConnection)

    A list of labels associated with the object.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    latestOpinionatedReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    writersOnly (Boolean)

    \n

    Only return reviews from user who have write access to the repository.

    \n

    The default value is false.

    \n
    \n\n
    \n\n\n

    latestReviews (PullRequestReviewConnection)

    A list of latest reviews per user associated with the pull request that are not also pending review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    locked (Boolean!)

    true if the pull request is locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    maintainerCanModify (Boolean!)

    Indicates whether maintainers can modify the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeCommit (Commit)

    The commit that was created when this pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeStateStatus (MergeStateStatus!)

    Detailed information about the current pull request merge state status.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    mergeable (MergeableState!)

    Whether or not the pull request can be merged based on the existence of merge conflicts.

    \n\n\n\n\n\n\n\n\n\n\n\n

    merged (Boolean!)

    Whether or not the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedAt (DateTime)

    The date and time that the pull request was merged.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergedBy (Actor)

    The actor who merged the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Identifies the milestone associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the pull request number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    participants (UserConnection!)

    A list of Users that are participating in the Pull Request conversation.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    permalink (URI!)

    The permalink to the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    potentialMergeCommit (Commit)

    The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectCards (ProjectCardConnection!)

    List of project cards associated with this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    archivedStates ([ProjectCardArchivedState])

    \n

    A list of archived states to filter the cards by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertResourcePath (URI!)

    The HTTP path for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    revertUrl (URI!)

    The HTTP URL for reverting this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of this pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequests (ReviewRequestConnection)

    A list of review requests associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviewThreads (PullRequestReviewThreadConnection!)

    The list of all review threads for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    reviews (PullRequestReviewConnection)

    A list of reviews associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    author (String)

    \n

    Filter by author of the review.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    states ([PullRequestReviewState!])

    \n

    A list of states to filter the reviews.

    \n\n
    \n\n
    \n\n\n

    state (PullRequestState!)

    Identifies the state of the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suggestedReviewers ([SuggestedReviewer]!)

    A list of reviewer suggestions based on commit history and past review comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timeline (PullRequestTimelineConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    timeline is deprecated.

    timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Allows filtering timeline events by a since timestamp.

    \n\n
    \n\n
    \n\n\n

    timelineItems (PullRequestTimelineItemsConnection!)

    A list of events, comments, commits, etc. associated with the pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    itemTypes ([PullRequestTimelineItemsItemType!])

    \n

    Filter timeline items by type.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    Filter timeline items by a since timestamp.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    title (String!)

    Identifies the pull request title.

    \n\n\n\n\n\n\n\n\n\n\n\n

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanApplySuggestion (Boolean!)

    Whether or not the viewer can apply suggestion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDeleteHeadRef (Boolean!)

    Check if the viewer can restore the deleted head ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerMergeBodyText (String!)

    The merge body text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerMergeHeadlineText (String!)

    The merge headline text for the viewer and method.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    mergeType (PullRequestMergeMethod)

    \n

    The merge method for the message.

    \n\n
    \n\n
    \n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    additions (Int!)

    The number of additions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletions (Int!)

    The number of deletions to the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerViewedState (FileViewedState!)

    The state of the file for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestChangedFileEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestChangedFile])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestChangedFile)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit!)

    The Git commit object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this pull request commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (CommitCommentConnection!)

    The comments that exist in this thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit!)

    The commit the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The file the comments were made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The position in the diff for the commit that the comment was made on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request this commit comment thread belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestCommitEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestCommit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestCommit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestContributionConnection!)

    The pull request contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull requests were opened.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorCanPushToRepository (Boolean!)

    Indicates whether the author of this review has push access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    Identifies the pull request review body.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body of this review rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (PullRequestReviewCommentConnection!)

    A list of review comments for the current pull request review.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    Identifies the commit associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    onBehalfOf (TeamConnection!)

    A list of teams that this review was made on behalf of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewState!)

    Identifies the current state of the pull request review.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submittedAt (DateTime)

    Identifies when the Pull Request Review was submitted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this PullRequestReview.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the subject of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The comment body of this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The comment body of this review comment rendered as plain text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies when the comment was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diffHunk (String!)

    The diff hunk to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    draftedAt (DateTime!)

    Identifies when the comment was created in a draft state.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMinimized (Boolean!)

    Returns whether or not a comment has been minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    minimizedReason (String)

    Returns why the comment was minimized.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalCommit (Commit)

    Identifies the original commit associated with the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalPosition (Int!)

    The original line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    outdated (Boolean!)

    Identifies when the comment body is outdated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    position (Int)

    The line index in the diff to which the comment applies.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestReview (PullRequestReview)

    The pull request review associated with this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    replyTo (PullRequestReviewComment)

    The comment this is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository associated with this node.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (PullRequestReviewCommentState!)

    Identifies the state of the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies when the comment was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL permalink for this review comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanMinimize (Boolean!)

    Check if the current viewer can minimize this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReview])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contributions (CreatedPullRequestReviewContributionConnection!)

    The pull request review contributions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ContributionOrder)

    \n

    Ordering options for contributions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository in which the pull request reviews were made.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReview)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comments (PullRequestReviewCommentConnection!)

    A list of pull request comments associated with the thread.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    skip (Int)

    \n

    Skips the first n elements in the list.

    \n\n
    \n\n
    \n\n\n

    diffSide (DiffSide!)

    The side of the diff on which this thread was placed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCollapsed (Boolean!)

    Whether or not the thread has been collapsed (resolved).

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOutdated (Boolean!)

    Indicates whether this thread was outdated by newer changes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isResolved (Boolean!)

    Whether this thread has been resolved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    line (Int)

    The line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalLine (Int)

    The original line in the file to which this thread refers.

    \n\n\n\n\n\n\n\n\n\n\n\n

    originalStartLine (Int)

    The original start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    Identifies the file path of this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    Identifies the repository associated with this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resolvedBy (User)

    The user who resolved this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startDiffSide (DiffSide)

    The side of the diff that the first line of the thread starts on (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    startLine (Int)

    The start line in the file to which this thread refers (multi-line only).

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReply (Boolean!)

    Indicates whether the current viewer can reply to this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanResolve (Boolean!)

    Whether or not the viewer can resolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUnresolve (Boolean!)

    Whether or not the viewer can unresolve this thread.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestReviewThreadEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestReviewThread])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestReviewThread)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestRevisionMarker

    \n

    Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastSeenCommit (Commit!)

    The last commit the viewer has seen.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request to which the marker belongs.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String)

    The body of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PullRequestTimelineItemsEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filteredCount (Int!)

    Identifies the count of items after applying before and after filters.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PullRequestTimelineItems])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageCount (Int!)

    Identifies the count of items after applying before/after filters and first/last/skip slicing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the timeline was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PullRequestTimelineItems)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    nextSha (GitObjectID)

    The SHA after the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSha (GitObjectID)

    The SHA before the push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pusher (User!)

    The user who pushed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository that was pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowance

    \n

    A team, user or app who has the ability to push to a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (PushAllowanceActor)

    The actor that can push.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([PushAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PushAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (PushAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cost (Int!)

    The point cost for the current query counting against the rate limit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    limit (Int!)

    The maximum number of points the client is permitted to consume in a 60 minute window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodeCount (Int!)

    The maximum number of nodes this query may return.

    \n\n\n\n\n\n\n\n\n\n\n\n

    remaining (Int!)

    The number of points remaining in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resetAt (DateTime!)

    The time at which the current rate limit window resets in UTC epoch seconds.

    \n\n\n\n\n\n\n\n\n\n\n\n

    used (Int!)

    The number of points used in the current rate limit window.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactingUserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactable (Reactable!)

    The reactable piece of content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the user who created this reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reaction])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reaction)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    content (ReactionContent!)

    Identifies the emoji reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime)

    Identifies when the reaction was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactors (ReactorConnection!)

    Reactors to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    subject (Reactable!)

    The subject that was reacted to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    users (ReactingUserConnection!)

    Users who have reacted to the reaction subject with the emotion represented by this reaction group.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-10-01 UTC.

    \n
    \n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerHasReacted (Boolean!)

    Whether or not the authenticated user has left a reaction on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Reactor!)

    The author of the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactedAt (DateTime!)

    The moment when the user made the reaction.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this ready for review event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    associatedPullRequests (PullRequestConnection!)

    A list of pull requests with this ref as the head ref.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    branchProtectionRule (BranchProtectionRule)

    Branch protection rules for this ref.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The ref name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    prefix (String!)

    The ref's prefix, such as refs/heads/ or refs/tags/.

    \n\n\n\n\n\n\n\n\n\n\n\n

    refUpdateRule (RefUpdateRule)

    Branch protection rules that are viewable by non-admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the ref belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject)

    The object the ref points to. Returns null when object does not exist.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RefEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Ref])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Ref)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    allowsDeletions (Boolean!)

    Can this branch be deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    allowsForcePushes (Boolean!)

    Are force pushes allowed on this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (String!)

    Identifies the protection rule pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredApprovingReviewCount (Int)

    Number of approving reviews required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiredStatusCheckContexts ([String])

    List of required status check contexts that must pass for commits to be accepted to matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresLinearHistory (Boolean!)

    Are merge commits prohibited from being pushed to this branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresSignatures (Boolean!)

    Are commits required to be signed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPush (Boolean!)

    Can the viewer push to the branch.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commit (Commit)

    Identifies the commit associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitRepository (Repository!)

    Identifies the repository associated with thereferencedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Reference originated in a different repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDirectReference (Boolean!)

    Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (ReferencedSubject!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (User)

    The author of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML)

    The description of this release rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDraft (Boolean!)

    Whether or not the release is a draft.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrerelease (Boolean!)

    Whether or not the release is a prerelease.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    name (String)

    The title of the release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies the date and time when the release was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    releaseAssets (ReleaseAssetConnection!)

    List of releases assets which are dependent on this release.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    name (String)

    \n

    A list of names to filter the assets by.

    \n\n
    \n\n
    \n\n\n

    repository (Repository!)

    The repository that the release belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML)

    A description of the release, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    tag (Ref)

    The Git tag the release points to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagCommit (Commit)

    The tag commit for this release.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagName (String!)

    The name of the release's Git tag.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this issue.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    contentType (String!)

    The asset's content-type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadCount (Int!)

    The number of times this asset was downloaded.

    \n\n\n\n\n\n\n\n\n\n\n\n

    downloadUrl (URI!)

    Identifies the URL where you can download the release asset via the browser.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Identifies the title of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    release (Release)

    Release that the asset is associated with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    size (Int!)

    The size (in bytes) of the asset.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    uploadedBy (User!)

    The user that performed the upload.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    Identifies the URL of the release asset.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseAssetEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReleaseAsset])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReleaseAsset)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReleaseEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Release])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Release)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Project referenced by event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    project is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    projectColumnName (String!)

    Column name referenced by this project event.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    currentTitle (String!)

    Identifies the current title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousTitle (String!)

    Identifies the previous title of the issue or pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (RenamedTitleSubject!)

    Subject that was renamed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    closable (Closable!)

    Object that was reopened.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAccessAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoAddMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoArchivedAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEnabled (Boolean)

    Whether the change was to enable (true) or disable (false) the merge type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeType (RepoChangeMergeSettingAuditEntryMergeType)

    The merge method affected by the change.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkParentName (String)

    The name of the parent repository for this forked repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkSourceName (String)

    The name of the root repository for this network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoCreateAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoDestroyAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepoRemoveMemberAuditEntryVisibility)

    The visibility of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topicName (String)

    The name of the topic added to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    assignableUsers (UserConnection!)

    A list of users that can be assigned to issues in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRules (BranchProtectionRuleConnection!)

    A list of branch protection rules for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    codeOfConduct (CodeOfConduct)

    Returns the code of conduct for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    collaborators (RepositoryCollaboratorConnection)

    A list of collaborators associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliation (CollaboratorAffiliation)

    \n

    Collaborators affiliation level with a repository.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    contactLinks ([RepositoryContactLink!])

    Returns a list of contact links associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    defaultBranchRef (Ref)

    The Ref associated with the repository's default branch.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deleteBranchOnMerge (Boolean!)

    Whether or not branches are automatically deleted when merged in this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deployKeys (DeployKeyConnection!)

    A list of deploy keys that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    deployments (DeploymentConnection!)

    Deployments associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    environments ([String!])

    \n

    Environments to list deployments for.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DeploymentOrder)

    \n

    Ordering options for deployments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    description (String)

    The description of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    descriptionHTML (HTML!)

    The description of the repository rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    Returns a single discussion from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterByAssignable (Boolean)

    \n

    Filter by categories that are assignable by the viewer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    discussions (DiscussionConnection!)

    A list of discussions that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n\n\n

    diskUsage (Int)

    The number of kilobytes this repository occupies on disk.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    forkCount (Int!)

    Returns how many forks there are of this repository in the whole network.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \n\n\n\n\n\n\n\n\n\n\n\n

    forks (RepositoryConnection!)

    A list of direct forked repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    hasAnonymousAccessEnabled (Boolean!)

    Indicates if the repository has anonymous Git read access feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasIssuesEnabled (Boolean!)

    Indicates if the repository has issues feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasProjectsEnabled (Boolean!)

    Indicates if the repository has the Projects feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasWikiEnabled (Boolean!)

    Indicates if the repository has wiki feature enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    homepageUrl (URI)

    The repository's URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isArchived (Boolean!)

    Indicates if the repository is unmaintained.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isBlankIssuesEnabled (Boolean!)

    Returns true if blank issue creation is allowed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDisabled (Boolean!)

    Returns whether or not this repository disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmpty (Boolean!)

    Returns whether or not this repository is empty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFork (Boolean!)

    Identifies if the repository is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isInOrganization (Boolean!)

    Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLocked (Boolean!)

    Indicates if the repository has been locked or not.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isMirror (Boolean!)

    Identifies if the repository is a mirror.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Identifies if the repository is private or internal.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSecurityPolicyEnabled (Boolean)

    Returns true if this repository has a security policy.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isTemplate (Boolean!)

    Identifies if the repository is a template that can be used to generate new repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUserConfigurationRepository (Boolean!)

    Is this repository a user configuration repository?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue)

    Returns a single issue from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueOrPullRequest (IssueOrPullRequest)

    Returns a single issue-like object from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the issue to be returned.

    \n\n
    \n\n
    \n\n\n

    issueTemplates ([IssueTemplate!])

    Returns a list of issue templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issues (IssueConnection!)

    A list of issues that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    label (Label)

    Returns a single label by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    Label name.

    \n\n
    \n\n
    \n\n\n

    labels (LabelConnection)

    A list of labels associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LabelOrder)

    \n

    Ordering options for labels returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    If provided, searches labels by name and description.

    \n\n
    \n\n
    \n\n\n

    languages (LanguageConnection)

    A list containing a breakdown of the language composition of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (LanguageOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\n\n\n\n\n\n\n

    licenseInfo (License)

    The license associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockReason (RepositoryLockReason)

    The reason the repository has been locked.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mentionableUsers (UserConnection!)

    A list of Users that can be mentioned in the context of the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters users with query on user name and login.

    \n\n
    \n\n
    \n\n\n

    mergeCommitAllowed (Boolean!)

    Whether or not PRs are merged with a merge commit on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    milestone (Milestone)

    Returns a single milestone from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the milestone to be returned.

    \n\n
    \n\n
    \n\n\n

    milestones (MilestoneConnection)

    A list of milestones associated with the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (MilestoneOrder)

    \n

    Ordering options for milestones.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters milestones with a query on the title.

    \n\n
    \n\n
    \n

    states ([MilestoneState!])

    \n

    Filter by the state of the milestones.

    \n\n
    \n\n
    \n\n\n

    mirrorUrl (URI)

    The repository's original mirror URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nameWithOwner (String!)

    The repository's name with owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    A Git object in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    expression (String)

    \n

    A Git revision expression suitable for rev-parse.

    \n\n
    \n\n
    \n

    oid (GitObjectID)

    \n

    The Git object ID.

    \n\n
    \n\n
    \n\n\n

    openGraphImageUrl (URI!)

    The image used to represent this repository in Open Graph data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (RepositoryOwner!)

    The User owner of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned in this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    primaryLanguage (Language)

    The primary language of the repository's code.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing the repository's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest)

    Returns a single pull request from the current repository by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The number for the pull request to be returned.

    \n\n
    \n\n
    \n\n\n

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests that have been opened in the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    pushedAt (DateTime)

    Identifies when the repository was last pushed to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    rebaseMergeAllowed (Boolean!)

    Whether or not rebase-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ref (Ref)

    Fetch a given ref from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    qualifiedName (String!)

    \n

    The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

    \n\n
    \n\n
    \n\n\n

    refs (RefConnection)

    Fetch a list of refs from the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    direction (OrderDirection)

    \n

    DEPRECATED: use orderBy. The ordering direction.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RefOrder)

    \n

    Ordering options for refs returned from the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    Filters refs with query on name.

    \n\n
    \n\n
    \n

    refPrefix (String!)

    \n

    A ref name prefix like refs/heads/, refs/tags/, etc.

    \n\n
    \n\n
    \n\n\n

    release (Release)

    Lookup a single release given various criteria.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    tagName (String!)

    \n

    The name of the Tag the Release was created from.

    \n\n
    \n\n
    \n\n\n

    releases (ReleaseConnection!)

    List of releases which are dependent on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReleaseOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    repositoryTopics (RepositoryTopicConnection!)

    A list of applied repository-topic associations for this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityPolicyUrl (URI)

    The security policy URL.

    \n\n\n\n\n\n\n\n\n\n\n\n

    shortDescriptionHTML (HTML!)

    A description of the repository, rendered to HTML without any links in it.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    limit (Int)

    \n

    How many characters to return.

    \n

    The default value is 200.

    \n
    \n\n
    \n\n\n

    squashMergeAllowed (Boolean!)

    Whether or not squash-merging is enabled on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sshUrl (GitSSHRemote!)

    The SSH URL to clone this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    submodules (SubmoduleConnection!)

    Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    tempCloneToken (String)

    Temporary authentication token for cloning this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    templateRepository (Repository)

    The repository from which this repository was generated, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    usesCustomOpenGraphImage (Boolean!)

    Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Indicates whether the viewer has admin permissions on this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdateTopics (Boolean!)

    Indicates whether the viewer can update the topics of this repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultCommitEmail (String)

    The last commit email for the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDefaultMergeMethod (PullRequestMergeMethod!)

    The last used merge method by the viewer or the default for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPermission (RepositoryPermission)

    The users permission level on the repository. Will return null if authenticated as an GitHub App.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerPossibleCommitEmails ([String!])

    A list of emails this viewer can commit with.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

    A list of vulnerability alerts that are on this repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    watchers (UserConnection!)

    A list of users watching the repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryCollaboratorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission the user has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionSources ([PermissionSource!])

    A list of sources for the user's access to the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalDiskUsage (Int!)

    The total size in kilobytes of all repositories in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    about (String!)

    The contact link purpose.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The contact link name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The contact link URL.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Repository)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String)

    The email address that received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitee (User)

    The user who received the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    inviter (User!)

    The user who created the invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI!)

    The permalink for this repository invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission granted on this repository by this invitation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (RepositoryInfo)

    The Repository the user is invited to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryInvitationEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryInvitation])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryInvitation)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    resourcePath (URI!)

    The HTTP path for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topic (Topic!)

    The topic.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this repository-topic.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryTopicEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryTopic])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryTopic)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseResourcePath (URI)

    The HTTP path for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseSlug (String)

    The slug of the enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enterpriseUrl (URI)

    The HTTP URL for this enterprise.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    When was the alert created?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissReason (String)

    The reason the alert was dismissed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissedAt (DateTime)

    When was the alert dismissed?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismisser (User)

    The user who dismissed the alert.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The associated repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityAdvisory (SecurityAdvisory)

    The associated security advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    securityVulnerability (SecurityVulnerability)

    The associated security vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestFilename (String!)

    The vulnerable manifest filename.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableManifestPath (String!)

    The vulnerable manifest path.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableRequirements (String)

    The vulnerable requirements.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([RepositoryVulnerabilityAlertEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([RepositoryVulnerabilityAlert])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (RepositoryVulnerabilityAlert)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRequiredStatusCheckDescription

    \n

    Represents a required status check for a protected branch, but not any specific run of that check.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    app (App)

    The App that must provide this status in order for it to be accepted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isRestricted (Boolean!)

    Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

    \n\n\n\n\n\n\n\n\n\n\n\n

    occurredAt (DateTime!)

    When this contribution was made.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who made this contribution.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowance

    \n

    A team or user who has the ability to dismiss a review on a protected branch.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (ReviewDismissalAllowanceActor)

    The actor that can dismiss.

    \n\n\n\n\n\n\n\n\n\n\n\n

    branchProtectionRule (BranchProtectionRule)

    Identifies the branch protection rule associated with the allowed user or team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewDismissalAllowanceEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewDismissalAllowance])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewDismissalAllowance)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessage (String)

    Identifies the optional message associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    dismissalMessageHTML (String)

    Identifies the optional message associated with the event, rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousReviewState (PullRequestReviewState!)

    Identifies the previous state of the review with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequestCommit (PullRequestCommit)

    Identifies the commit which caused the review to become stale.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    review (PullRequestReview)

    Identifies the review associated with thereview_dismissedevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this review dismissed event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    asCodeOwner (Boolean!)

    Whether this request was created for a code owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    Identifies the pull request associated with this review request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    The reviewer that is requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([ReviewRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ReviewRequest])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (ReviewRequest)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review request was removed.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    PullRequest referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requestedReviewer (RequestedReviewer)

    Identifies the reviewer whose review was requested.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReviewStatusHovercardContext

    \n

    A hovercard context with a message describing the current code review state of the pull\nrequest.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewDecision (PullRequestReviewDecision)

    The current status of the pull request with respect to code review.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    body (String!)

    The body of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The saved reply body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the saved reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (Actor)

    The user that saved this reply.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SavedReplyEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SavedReply])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SavedReply)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    codeCount (Int!)

    The number of pieces of code that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionCount (Int!)

    The number of discussions that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    edges ([SearchResultItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueCount (Int!)

    The number of issues that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SearchResultItem])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryCount (Int!)

    The number of repositories that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userCount (Int!)

    The number of users that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wikiCount (Int!)

    The number of wiki pages that matched the search query.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SearchResultItem)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    textMatches ([TextMatch])

    Text matches on the result found.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    This is a long plaintext description of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    ghsaId (String!)

    The GitHub Security Advisory ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    identifiers ([SecurityAdvisoryIdentifier!]!)

    A list of identifiers for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    origin (String!)

    The organization that originated the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permalink (URI)

    The permalink for the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime!)

    When the advisory was published.

    \n\n\n\n\n\n\n\n\n\n\n\n

    references ([SecurityAdvisoryReference!]!)

    A list of references for this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    summary (String!)

    A short plaintext summary of the advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the advisory was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerabilities (SecurityVulnerabilityConnection!)

    Vulnerabilities associated with this Advisory.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    ecosystem (SecurityAdvisoryEcosystem)

    \n

    An ecosystem to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    package (String)

    \n

    A package name to filter vulnerabilities by.

    \n\n
    \n\n
    \n

    severities ([SecurityAdvisorySeverity!])

    \n

    A list of severities to filter vulnerabilities by.

    \n\n
    \n\n
    \n\n\n

    withdrawnAt (DateTime)

    When the advisory was withdrawn, if it has been withdrawn.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityAdvisoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityAdvisory])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityAdvisory)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    type (String!)

    The identifier type, e.g. GHSA, CVE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    The identifier.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ecosystem (SecurityAdvisoryEcosystem!)

    The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The package name.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    identifier (String!)

    The package name or version.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    url (URI!)

    A publicly accessible reference.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    advisory (SecurityAdvisory!)

    The Advisory associated with this Vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    firstPatchedVersion (SecurityAdvisoryPackageVersion)

    The first version containing a fix for the vulnerability.

    \n\n\n\n\n\n\n\n\n\n\n\n

    package (SecurityAdvisoryPackage!)

    A description of the vulnerable package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    severity (SecurityAdvisorySeverity!)

    The severity of the vulnerability within this package.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    When the vulnerability was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vulnerableVersionRange (String!)

    A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

    \n
      \n
    • = 0.2.0 denotes a single vulnerable version.
    • \n
    • <= 1.0.8 denotes a version range up to and including the specified version
    • \n
    • < 0.1.11 denotes a version range up to, but excluding, the specified version
    • \n
    • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
    • \n
    • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
    • \n

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SecurityVulnerabilityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SecurityVulnerability])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (SecurityVulnerability)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StargazerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StarredRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOverLimit (Boolean!)

    Is the list of stars for this user truncated? This is true for users that have many stars.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    starredAt (DateTime!)

    Identifies when the item was starred.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    combinedContexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    commit (Commit)

    The commit this status is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (StatusContext)

    Looks up an individual status context by context name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The context name.

    \n\n
    \n\n
    \n\n\n

    contexts ([StatusContext!]!)

    The individual status contexts for this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (StatusState!)

    The combined commit status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollup

    \n

    Represents the rollup for both the check runs and status for a commit.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    commit (Commit)

    The commit the status and check runs are attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contexts (StatusCheckRollupContextConnection!)

    A list of status contexts and check runs for this commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The combined status for the commit.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([StatusCheckRollupContextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([StatusCheckRollupContext])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (StatusCheckRollupContext)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    avatarUrl (URI)

    The avatar of the OAuth application or the user that created the status.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n

    The default value is 40.

    \n
    \n\n
    \n\n\n

    commit (Commit)

    This commit this status context is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    context (String!)

    The name of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    creator (Actor)

    The actor who created this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \n\n
    \n\n
    \n\n\n

    state (StatusState!)

    The state of this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetUrl (URI)

    The URL for this status context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    branch (String)

    The branch of the upstream submodule for tracking updates.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gitUrl (URI!)

    The git URL of the submodule repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the submodule in .gitmodules.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String!)

    The path in the superproject that this submodule is located in.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subprojectCommitOid (GitObjectID)

    The commit revision of the subproject repository being tracked by the submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([SubmoduleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Submodule])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Submodule)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSuggestedReviewer

    \n

    A suggestion to review a pull request based on a user's commit history and review comments.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    isAuthor (Boolean!)

    Is this suggestion based on past commits?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCommenter (Boolean!)

    Is this suggestion based on past review comments?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewer (User!)

    Identifies the user suggested to review the pull request.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    The Git tag message.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The Git tag name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tagger (GitActor)

    Details about the tag author.

    \n\n\n\n\n\n\n\n\n\n\n\n

    target (GitObject!)

    The Git object the tag points to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    ancestors (TeamConnection!)

    A list of teams that are ancestors of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI)

    A URL pointing to the team's avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size in pixels of the resulting square image.

    \n

    The default value is 400.

    \n
    \n\n
    \n\n\n

    childTeams (TeamConnection!)

    List of child teams belonging to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    immediateOnly (Boolean)

    \n

    Whether to list immediate child teams or all descendant child teams.

    \n

    The default value is true.

    \n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    userLogins ([String!])

    \n

    User logins to filter by.

    \n\n
    \n\n
    \n\n\n

    combinedSlug (String!)

    The slug corresponding to the organization and team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String)

    The description of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion)

    Find a team discussion by its number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The sequence number of the discussion to find.

    \n\n
    \n\n
    \n\n\n

    discussions (TeamDiscussionConnection!)

    A list of team discussions.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isPinned (Boolean)

    \n

    If provided, filters discussions according to whether or not they are pinned.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    discussionsResourcePath (URI!)

    The HTTP path for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussionsUrl (URI!)

    The HTTP URL for team discussions.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamResourcePath (URI!)

    The HTTP path for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editTeamUrl (URI!)

    The HTTP URL for editing this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    invitations (OrganizationInvitationConnection)

    A list of pending invitations for users to this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    memberStatuses (UserStatusConnection!)

    Get the status messages members of this entity have set that are either public or visible only to the organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (UserStatusOrder)

    \n

    Ordering options for user statuses returned from the connection.

    \n\n
    \n\n
    \n\n\n

    members (TeamMemberConnection!)

    A list of users who are members of this team.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    membership (TeamMembershipType)

    \n

    Filter by membership type.

    \n

    The default value is ALL.

    \n
    \n\n
    \n

    orderBy (TeamMemberOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n

    role (TeamMemberRole)

    \n

    Filter by team member role.

    \n\n
    \n\n
    \n\n\n

    membersResourcePath (URI!)

    The HTTP path for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    membersUrl (URI!)

    The HTTP URL for the team' members.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamResourcePath (URI!)

    The HTTP path creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    newTeamUrl (URI!)

    The HTTP URL creating a new team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization!)

    The organization that owns this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The parent team of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    privacy (TeamPrivacy!)

    The level of privacy the team has.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositories (TeamRepositoryConnection!)

    A list of repositories this team has access to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamRepositoryOrder)

    \n

    Order for the connection.

    \n\n
    \n\n
    \n

    query (String)

    \n

    The search string to look for.

    \n\n
    \n\n
    \n\n\n

    repositoriesResourcePath (URI!)

    The HTTP path for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoriesUrl (URI!)

    The HTTP URL for this team's repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

    What algorithm is used for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationEnabled (Boolean!)

    True if review assignment is enabled for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationMemberCount (Int)

    How many team members are required for review assignment for this team.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    reviewRequestDelegationNotifyTeam (Boolean!)

    When assigning team members via delegation, whether the entire team should be notified as well.

    \n\n\n\n\n
    \n

    Preview notice

    \n

    reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

    \n
    \n\n\n\n\n\n\n\n\n

    slug (String!)

    The slug corresponding to the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsResourcePath (URI!)

    The HTTP path for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamsUrl (URI!)

    The HTTP URL for this team's teams.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanAdminister (Boolean!)

    Team is adminable by the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeam (Team)

    The new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamName (String)

    The name of the new parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamNameWas (String)

    The name of the former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamResourcePath (URI)

    The HTTP path for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamUrl (URI)

    The HTTP URL for the parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWas (Team)

    The former parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasResourcePath (URI)

    The HTTP path for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    parentTeamWasUrl (URI)

    The HTTP URL for the previous parent team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Team])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the discussion's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    Identifies the discussion body hash.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (TeamDiscussionCommentConnection!)

    A list of comments on this discussion.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    fromComment (Int)

    \n

    When provided, filters the connection such that results begin with the comment with this number.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (TeamDiscussionCommentOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    commentsResourcePath (URI!)

    The HTTP path for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commentsUrl (URI!)

    The HTTP URL for discussion comments.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPinned (Boolean!)

    Whether or not the discussion is pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isPrivate (Boolean!)

    Whether or not the discussion is only visible to team members and org admins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the discussion within its team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team!)

    The team that defines the context of this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of the discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanPin (Boolean!)

    Whether or not the current viewer can pin this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanSubscribe (Boolean!)

    Check if the viewer is able to change their subscription status for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerSubscription (SubscriptionState)

    Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    author (Actor)

    The actor who authored the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    authorAssociation (CommentAuthorAssociation!)

    Author's association with the comment's team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    body (String!)

    The body as Markdown.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyHTML (HTML!)

    The body rendered to HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyText (String!)

    The body rendered to text.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bodyVersion (String!)

    The current version of the body content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdViaEmail (Boolean!)

    Check if this comment was created via an email reply.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (TeamDiscussion!)

    The discussion this comment is about.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited the comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    includesCreatedEdit (Boolean!)

    Check if this comment was edited and includes an edit with the creation data.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lastEditedAt (DateTime)

    The moment the editor made the last edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    Identifies the comment number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publishedAt (DateTime)

    Identifies when the comment was published at.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactionGroups ([ReactionGroup!])

    A list of reactions grouped by content left on the subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reactions (ReactionConnection!)

    A list of Reactions left on the Issue.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    content (ReactionContent)

    \n

    Allows filtering Reactions by emoji.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ReactionOrder)

    \n

    Allows specifying the order in which reactions are returned.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userContentEdits (UserContentEditConnection)

    A list of edits to this content.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    viewerCanDelete (Boolean!)

    Check if the current viewer can delete this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanUpdate (Boolean!)

    Check if the current viewer can update this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

    Reasons why the current viewer can not update this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerDidAuthor (Boolean!)

    Did the viewer author this comment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussionComment])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussionComment)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([TeamDiscussion])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (TeamDiscussion)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (Team)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamMemberEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessResourcePath (URI!)

    The HTTP path to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    memberAccessUrl (URI!)

    The HTTP URL to the organization's member access page.

    \n\n\n\n\n\n\n\n\n\n\n\n

    role (TeamMemberRole!)

    The role the member has on the team.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    action (String!)

    The action name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actor (AuditEntryActor)

    The user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorIp (String)

    The IP address of the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLocation (ActorLocation)

    A readable representation of the actor's location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorLogin (String)

    The username of the user who initiated the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorResourcePath (URI)

    The HTTP path for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    actorUrl (URI)

    The HTTP URL for the actor.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (PreciseDateTime!)

    The time the action was initiated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isLdapMapped (Boolean)

    Whether the team was mapped to an LDAP Group.

    \n\n\n\n\n\n\n\n\n\n\n\n

    operationType (OperationType)

    The corresponding operation type for the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The Organization associated with the Audit Entry.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationName (String)

    The name of the Organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationResourcePath (URI)

    The HTTP path for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organizationUrl (URI)

    The HTTP URL for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository)

    The repository associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryName (String)

    The name of the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryResourcePath (URI)

    The HTTP path for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repositoryUrl (URI)

    The HTTP URL for the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n

    team (Team)

    The team associated with the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamName (String)

    The name of the team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamResourcePath (URI)

    The HTTP path for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    teamUrl (URI)

    The HTTP URL for this team.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    The user affected by the action.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userLogin (String)

    For actions involving two users, the actor is the initiator and the user is the affected user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userResourcePath (URI)

    The HTTP path for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    userUrl (URI)

    The HTTP URL for the user.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([TeamRepositoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Repository])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permission (RepositoryPermission!)

    The permission level the team has on the repository.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    fragment (String!)

    The specific text fragment within the property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n

    highlights ([TextMatchHighlight!]!)

    Highlights within the matched fragment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    property (String!)

    The property matched on.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    beginIndice (Int!)

    The indice in the fragment where the matched text begins.

    \n\n\n\n\n\n\n\n\n\n\n\n

    endIndice (Int!)

    The indice in the fragment where the matched text ends.

    \n\n\n\n\n\n\n\n\n\n\n\n

    text (String!)

    The text matched.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    name (String!)

    The topic's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    relatedTopics ([Topic!]!)

    A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    first (Int)

    \n

    How many topics to return.

    \n

    The default value is 3.

    \n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    stargazerCount (Int!)

    Returns a count of how many stargazers there are on this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    stargazers (StargazerConnection!)

    A list of users who have starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n\n\n

    viewerHasStarred (Boolean!)

    Returns a boolean indicating whether the viewing user has starred this starrable.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fromRepository (Repository)

    The repository this came from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    abbreviatedOid (String!)

    An abbreviated version of the Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitResourcePath (URI!)

    The HTTP path for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitUrl (URI!)

    The HTTP URL for this Git object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    entries ([TreeEntry!])

    A list of tree entries.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    The Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the Git object belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    extension (String)

    The extension of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGenerated (Boolean!)

    Whether or not this tree entry is generated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mode (Int!)

    Entry file mode.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    Entry file name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    object (GitObject)

    Entry file object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oid (GitObjectID!)

    Entry file Git object ID.

    \n\n\n\n\n\n\n\n\n\n\n\n

    path (String)

    The full path of the file.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The Repository the tree entry belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    submodule (Submodule)

    If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String!)

    Entry file type.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignable (Assignable!)

    Identifies the assignable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    assignee (Assignee)

    Identifies the user or mannequin that was unassigned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User)

    Identifies the subject (user) who was unassigned.

    \n\n\n\n\n\n\n
    \n

    Deprecation notice

    \n

    user is deprecated.

    Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

    \n
    \n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    email (String!)

    Email used to sign this object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isValid (Boolean!)

    True if the signature is valid and verified by GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    payload (String!)

    Payload for GPG signing object. Raw ODB object without the signature header.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signature (String!)

    ASCII-armored signature header from object.

    \n\n\n\n\n\n\n\n\n\n\n\n

    signer (User)

    GitHub user corresponding to the email signing this commit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    state (GitSignatureState!)

    The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

    \n\n\n\n\n\n\n\n\n\n\n\n

    wasSignedByGitHub (Boolean!)

    True if the signature was made with GitHub's signing key.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    label (Label!)

    Identifies the label associated with theunlabeledevent.

    \n\n\n\n\n\n\n\n\n\n\n\n

    labelable (Labelable!)

    Identifies the Labelable associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    lockable (Lockable!)

    Object that was unlocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canonical (IssueOrPullRequest)

    The authoritative issue or pull request which has been duplicated by another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    duplicate (IssueOrPullRequest)

    The issue or pull request which has been marked as a duplicate of another.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCrossRepository (Boolean!)

    Canonical and duplicate belong to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issue (Issue!)

    Identifies the issue associated with the event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subscribable (Subscribable!)

    Object referenced by event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUser

    \n

    A user is an individual's account on GitHub that owns repositories and can make new content.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    anyPinnableItems (Boolean!)

    Determine if this repository owner has any items that can be pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    type (PinnableItemType)

    \n

    Filter to only a particular kind of pinnable item.

    \n\n
    \n\n
    \n\n\n

    avatarUrl (URI!)

    A URL pointing to the user's public avatar.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    size (Int)

    \n

    The size of the resulting square image.

    \n\n
    \n\n
    \n\n\n

    bio (String)

    The user's public profile bio.

    \n\n\n\n\n\n\n\n\n\n\n\n

    bioHTML (HTML!)

    The user's public profile bio as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to check.

    \n\n
    \n\n
    \n\n\n

    commitComments (CommitCommentConnection!)

    A list of commit comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    company (String)

    The user's public profile company.

    \n\n\n\n\n\n\n\n\n\n\n\n

    companyHTML (HTML!)

    The user's public profile company as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    contributionsCollection (ContributionsCollection!)

    The collection of contributions this user has made to different repositories.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    from (DateTime)

    \n

    Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

    \n\n
    \n\n
    \n

    organizationID (ID)

    \n

    The ID of the organization used to filter contributions.

    \n\n
    \n\n
    \n

    to (DateTime)

    \n

    Only contributions made before and up to (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \n\n
    \n\n
    \n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    email (String!)

    The user's publicly visible profile email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    followers (FollowerConnection!)

    A list of users the given user is followed by.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    following (FollowingConnection!)

    A list of users the given user is following.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gist (Gist)

    Find gist by repo name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The gist name to find.

    \n\n
    \n\n
    \n\n\n

    gistComments (GistCommentConnection!)

    A list of gist comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    gists (GistConnection!)

    A list of the Gists the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (GistOrder)

    \n

    Ordering options for gists returned from the connection.

    \n\n
    \n\n
    \n

    privacy (GistPrivacy)

    \n

    Filters Gists according to privacy.

    \n\n
    \n\n
    \n\n\n

    hovercard (Hovercard!)

    The hovercard information for this user in a given context.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    primarySubjectId (ID)

    \n

    The ID of the subject to get the hovercard in the context of.

    \n\n
    \n\n
    \n\n\n

    isBountyHunter (Boolean!)

    Whether or not this user is a participant in the GitHub Security Bug Bounty.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isCampusExpert (Boolean!)

    Whether or not this user is a participant in the GitHub Campus Experts Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isDeveloperProgramMember (Boolean!)

    Whether or not this user is a GitHub Developer Program member.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isEmployee (Boolean!)

    Whether or not this user is a GitHub employee.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isHireable (Boolean!)

    Whether or not the user has marked themselves as for hire.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSiteAdmin (Boolean!)

    Whether or not this user is a site administrator.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isViewer (Boolean!)

    Whether or not this user is the viewing user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    issueComments (IssueCommentConnection!)

    A list of issue comments made by this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueCommentOrder)

    \n

    Ordering options for issue comments returned from the connection.

    \n\n
    \n\n
    \n\n\n

    issues (IssueConnection!)

    A list of issues associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    filterBy (IssueFilters)

    \n

    Filtering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \n\n
    \n\n
    \n

    states ([IssueState!])

    \n

    A list of states to filter the issues by.

    \n\n
    \n\n
    \n\n\n

    itemShowcase (ProfileItemShowcase!)

    Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

    \n\n\n\n\n\n\n\n\n\n\n\n

    location (String)

    The user's public profile location.

    \n\n\n\n\n\n\n\n\n\n\n\n

    login (String!)

    The username used to login.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String)

    The user's public profile name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    Find an organization by its login that the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to find.

    \n\n
    \n\n
    \n\n\n

    organizationVerifiedDomainEmails ([String!]!)

    Verified email addresses that match verified domains for a specified organization the user is a member of.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    login (String!)

    \n

    The login of the organization to match verified domains from.

    \n\n
    \n\n
    \n\n\n

    organizations (OrganizationConnection!)

    A list of organizations the user belongs to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pinnableItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinnable items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItems (PinnableItemConnection!)

    A list of repositories and gists this profile owner has pinned to their profile.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    types ([PinnableItemType!])

    \n

    Filter the types of pinned items that are returned.

    \n\n
    \n\n
    \n\n\n

    pinnedItemsRemaining (Int!)

    Returns how many more items this profile owner can pin to their profile.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (Project)

    Find project by number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project number to find.

    \n\n
    \n\n
    \n\n\n

    projects (ProjectConnection!)

    A list of projects under the owner.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (ProjectOrder)

    \n

    Ordering options for projects returned from the connection.

    \n\n
    \n\n
    \n

    search (String)

    \n

    Query to search projects by, currently only searching by name.

    \n\n
    \n\n
    \n

    states ([ProjectState!])

    \n

    A list of states to filter the projects by.

    \n\n
    \n\n
    \n\n\n

    projectsResourcePath (URI!)

    The HTTP path listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectsUrl (URI!)

    The HTTP URL listing user's projects.

    \n\n\n\n\n\n\n\n\n\n\n\n

    publicKeys (PublicKeyConnection!)

    A list of public keys associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pullRequests (PullRequestConnection!)

    A list of pull requests associated with this user.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    baseRefName (String)

    \n

    The base ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    headRefName (String)

    \n

    The head ref name to filter the pull requests by.

    \n\n
    \n\n
    \n

    labels ([String!])

    \n

    A list of label names to filter the pull requests by.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (IssueOrder)

    \n

    Ordering options for pull requests returned from the connection.

    \n\n
    \n\n
    \n

    states ([PullRequestState!])

    \n

    A list of states to filter the pull requests by.

    \n\n
    \n\n
    \n\n\n

    repositories (RepositoryConnection!)

    A list of repositories that the user owns.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isFork (Boolean)

    \n

    If non-null, filters repositories according to whether they are forks of another repository.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repositoriesContributedTo (RepositoryConnection!)

    A list of repositories that the user recently contributed to.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    contributionTypes ([RepositoryContributionType])

    \n

    If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    includeUserRepositories (Boolean)

    \n

    If true, include user repositories.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    repository (Repository)

    Find Repository.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    savedReplies (SavedReplyConnection)

    Replies this user has saved.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (SavedReplyOrder)

    \n

    The field to order saved replies by.

    \n\n
    \n\n
    \n\n\n

    starredRepositories (StarredRepositoryConnection!)

    Repositories the user has starred.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (StarOrder)

    \n

    Order for connection.

    \n\n
    \n\n
    \n

    ownedByViewer (Boolean)

    \n

    Filters starred repositories to only return repositories owned by the viewer.

    \n\n
    \n\n
    \n\n\n

    status (UserStatus)

    The user's description of what they're currently doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    suspendedAt (DateTime)

    Identifies the date and time when the user was suspended.

    \n\n\n\n\n\n\n\n\n\n\n\n

    topRepositories (RepositoryConnection!)

    Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder!)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    since (DateTime)

    \n

    How far back in time to fetch contributed repositories.

    \n\n
    \n\n
    \n\n\n

    twitterUsername (String)

    The user's Twitter username.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanChangePinnedItems (Boolean!)

    Can the viewer pin repositories and gists to the profile?.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanCreateProjects (Boolean!)

    Can the current viewer create new projects on this owner.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanFollow (Boolean!)

    Whether or not the viewer is able to follow the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    watching (RepositoryConnection!)

    A list of repositories the given user is watching.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    affiliations ([RepositoryAffiliation])

    \n

    Affiliation options for repositories returned from the connection. If none\nspecified, the results will include repositories for which the current\nviewer is an owner or collaborator, or member.

    \n\n
    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    isLocked (Boolean)

    \n

    If non-null, filters repositories according to whether they have been locked.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (RepositoryOrder)

    \n

    Ordering options for repositories returned from the connection.

    \n\n
    \n\n
    \n

    ownerAffiliations ([RepositoryAffiliation])

    \n

    Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

    \n\n
    \n\n
    \n

    privacy (RepositoryPrivacy)

    \n

    If non-null, filters repositories according to privacy.

    \n\n
    \n\n
    \n\n\n

    websiteUrl (URI)

    A URL pointing to the user's public website/blog.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    actor (Actor)

    Identifies the actor who performed the event.

    \n\n\n\n\n\n\n\n\n\n\n\n

    blockDuration (UserBlockDuration!)

    Number of days that the user was blocked for.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (User)

    The user who was blocked.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([User])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedAt (DateTime)

    Identifies the date and time when the object was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deletedBy (Actor)

    The actor who deleted this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    diff (String)

    A summary of the changes for this edit.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editedAt (DateTime!)

    When this content was edited.

    \n\n\n\n\n\n\n\n\n\n\n\n

    editor (Actor)

    The actor who edited this content.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserContentEditEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserContentEdit])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserContentEdit)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (User)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    primary (Boolean)

    Boolean to identify primary emails.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (String)

    Type of email.

    \n\n\n\n\n\n\n\n\n\n\n\n

    value (String!)

    Email id.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String)

    An emoji summarizing the user's status.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML)

    The status emoji as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    expiresAt (DateTime)

    If set, the status will not be shown after this date.

    \n\n\n\n\n\n\n\n\n\n\n\n

    indicatesLimitedAvailability (Boolean!)

    Whether this status indicates the user is not fully available on GitHub.

    \n\n\n\n\n\n\n\n\n\n\n\n

    message (String)

    A brief message describing what the user is doing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    organization (Organization)

    The organization whose members can see this status. If null, this status is publicly visible.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user who has this status.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    edges ([UserStatusEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([UserStatus])

    A list of nodes.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pageInfo (PageInfo!)

    Information to aid in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalCount (Int!)

    Identifies the total count of items in the connection.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cursor (String!)

    A cursor for use in pagination.

    \n\n\n\n\n\n\n\n\n\n\n\n

    node (UserStatus)

    The item at the end of the edge.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    message (String!)

    A string describing this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    octicon (String!)

    An octicon to accompany this context.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewer (User!)

    Identifies the user who is related to this context.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of the workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    createdAt (DateTime!)

    Identifies the date and time when the object was created.

    \n\n\n\n\n\n\n\n\n\n\n\n

    databaseId (Int)

    Identifies the primary key from the database.

    \n\n\n\n\n\n\n\n\n\n\n\n

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n\n\n

    resourcePath (URI!)

    The HTTP path for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \n\n\n\n\n\n\n\n\n\n\n\n

    updatedAt (DateTime!)

    Identifies the date and time when the object was last updated.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The HTTP URL for this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", diff --git a/lib/graphql/static/schema-dotcom.json b/lib/graphql/static/schema-dotcom.json index 41dda1419c..30203ac35b 100644 --- a/lib/graphql/static/schema-dotcom.json +++ b/lib/graphql/static/schema-dotcom.json @@ -6376,6 +6376,48 @@ } ] }, + { + "name": "updateOrganizationAllowPrivateRepositoryForkingSetting", + "kind": "mutations", + "id": "updateorganizationallowprivaterepositoryforkingsetting", + "href": "/graphql/reference/mutations#updateorganizationallowprivaterepositoryforkingsetting", + "description": "

    Sets whether private repository forks are enabled for an organization.

    ", + "inputFields": [ + { + "name": "input", + "type": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "kind": "input-objects", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput" + } + ], + "returnFields": [ + { + "name": "clientMutationId", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A unique identifier for the client performing the mutation.

    " + }, + { + "name": "message", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A message confirming the result of updating the allow private repository forking setting.

    " + }, + { + "name": "organization", + "type": "Organization", + "id": "organization", + "kind": "objects", + "href": "/graphql/reference/objects#organization", + "description": "

    The organization with the updated allow private repository forking setting.

    " + } + ] + }, { "name": "updateProject", "kind": "mutations", @@ -17214,6 +17256,16 @@ "kind": "scalars", "href": "/graphql/reference/scalars#string" } + }, + { + "name": "viewerOrganizationRole", + "description": "

    The viewer's role in an organization.

    ", + "type": { + "name": "RoleInOrganization", + "id": "roleinorganization", + "kind": "enums", + "href": "/graphql/reference/enums#roleinorganization" + } } ] }, @@ -23217,6 +23269,11 @@ "id": "node", "href": "/graphql/reference/interfaces#node" }, + { + "name": "ProjectNextOwner", + "id": "projectnextowner", + "href": "/graphql/reference/interfaces#projectnextowner" + }, { "name": "Reactable", "id": "reactable", @@ -23718,6 +23775,97 @@ } ] }, + { + "name": "projectNext", + "description": "

    Find a project by project (beta) number.

    ", + "type": "ProjectNext", + "id": "projectnext", + "kind": "objects", + "href": "/graphql/reference/objects#projectnext", + "arguments": [ + { + "name": "number", + "description": "

    The project (beta) number.

    ", + "type": { + "name": "Int!", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + } + ] + }, + { + "name": "projectsNext", + "description": "

    A list of project (beta) items under the owner.

    ", + "type": "ProjectNextConnection!", + "id": "projectnextconnection", + "kind": "objects", + "href": "/graphql/reference/objects#projectnextconnection", + "arguments": [ + { + "name": "after", + "description": "

    Returns the elements in the list that come after the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "before", + "description": "

    Returns the elements in the list that come before the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "first", + "description": "

    Returns the first n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "last", + "description": "

    Returns the last n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } + } + ] + }, { "name": "publishedAt", "description": "

    Identifies when the comment was published at.

    ", @@ -33377,6 +33525,14 @@ } ] }, + { + "name": "membersCanForkPrivateRepositories", + "description": "

    Members can fork private repositories in this organization.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, { "name": "membersWithRole", "description": "

    A list of users who are members of this organization.

    ", @@ -33765,7 +33921,7 @@ }, { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -33773,7 +33929,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -33865,7 +34021,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -33910,6 +34066,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] }, @@ -38875,6 +39052,11 @@ "id": "node", "href": "/graphql/reference/interfaces#node" }, + { + "name": "ProjectNextOwner", + "id": "projectnextowner", + "href": "/graphql/reference/interfaces#projectnextowner" + }, { "name": "Reactable", "id": "reactable", @@ -39869,6 +40051,97 @@ } ] }, + { + "name": "projectNext", + "description": "

    Find a project by project (beta) number.

    ", + "type": "ProjectNext", + "id": "projectnext", + "kind": "objects", + "href": "/graphql/reference/objects#projectnext", + "arguments": [ + { + "name": "number", + "description": "

    The project (beta) number.

    ", + "type": { + "name": "Int!", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + } + ] + }, + { + "name": "projectsNext", + "description": "

    A list of project (beta) items under the owner.

    ", + "type": "ProjectNextConnection!", + "id": "projectnextconnection", + "kind": "objects", + "href": "/graphql/reference/objects#projectnextconnection", + "arguments": [ + { + "name": "after", + "description": "

    Returns the elements in the list that come after the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "before", + "description": "

    Returns the elements in the list that come before the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "first", + "description": "

    Returns the first n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "last", + "description": "

    Returns the last n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } + } + ] + }, { "name": "publishedAt", "description": "

    Identifies when the comment was published at.

    ", @@ -60691,7 +60964,7 @@ }, { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -60699,7 +60972,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -60791,7 +61064,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -60836,6 +61109,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] }, @@ -64369,11 +64663,11 @@ "kind": "interfaces", "id": "projectnextowner", "href": "/graphql/reference/interfaces#projectnextowner", - "description": "

    Represents an owner of a Project.

    ", + "description": "

    Represents an owner of a project (beta).

    ", "fields": [ { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -64381,7 +64675,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -64393,7 +64687,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -64438,6 +64732,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] } @@ -68228,6 +68543,31 @@ } ] }, + { + "name": "ProjectNextOrderField", + "kind": "enums", + "id": "projectnextorderfield", + "href": "/graphql/reference/enums#projectnextorderfield", + "description": "

    Properties by which the return project can be ordered.

    ", + "values": [ + { + "name": "CREATED_AT", + "description": "

    The project's date and time of creation.

    " + }, + { + "name": "NUMBER", + "description": "

    The project's number.

    " + }, + { + "name": "TITLE", + "description": "

    The project's title.

    " + }, + { + "name": "UPDATED_AT", + "description": "

    The project's date and time of update.

    " + } + ] + }, { "name": "ProjectOrderField", "kind": "enums", @@ -69252,6 +69592,27 @@ } ] }, + { + "name": "RoleInOrganization", + "kind": "enums", + "id": "roleinorganization", + "href": "/graphql/reference/enums#roleinorganization", + "description": "

    Possible roles a user may have in relation to an organization.

    ", + "values": [ + { + "name": "DIRECT_MEMBER", + "description": "

    A user who is a direct member of the organization.

    " + }, + { + "name": "OWNER", + "description": "

    A user with full administrative access to the organization.

    " + }, + { + "name": "UNAFFILIATED", + "description": "

    A user who is unaffiliated with the organization.

    " + } + ] + }, { "name": "SamlDigestAlgorithm", "kind": "enums", @@ -79894,6 +80255,40 @@ } ] }, + { + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "kind": "inputObjects", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput", + "description": "

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    ", + "inputFields": [ + { + "name": "clientMutationId", + "description": "

    A unique identifier for the client performing the mutation.

    ", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + }, + { + "name": "forkingEnabled", + "description": "

    Enable forking of private repositories in the organization?.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, + { + "name": "organizationId", + "description": "

    The ID of the organization on which to set the allow private repository forking setting.

    ", + "type": "ID!", + "id": "id", + "kind": "scalars", + "href": "/graphql/reference/scalars#id", + "isDeprecated": false + } + ] + }, { "name": "UpdateProjectCardInput", "kind": "inputObjects", diff --git a/lib/graphql/static/schema-ghae.json b/lib/graphql/static/schema-ghae.json index d863960e4a..bfc0740817 100644 --- a/lib/graphql/static/schema-ghae.json +++ b/lib/graphql/static/schema-ghae.json @@ -5277,6 +5277,48 @@ } ] }, + { + "name": "updateOrganizationAllowPrivateRepositoryForkingSetting", + "kind": "mutations", + "id": "updateorganizationallowprivaterepositoryforkingsetting", + "href": "/graphql/reference/mutations#updateorganizationallowprivaterepositoryforkingsetting", + "description": "

    Sets whether private repository forks are enabled for an organization.

    ", + "inputFields": [ + { + "name": "input", + "type": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "kind": "input-objects", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput" + } + ], + "returnFields": [ + { + "name": "clientMutationId", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A unique identifier for the client performing the mutation.

    " + }, + { + "name": "message", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A message confirming the result of updating the allow private repository forking setting.

    " + }, + { + "name": "organization", + "type": "Organization", + "id": "organization", + "kind": "objects", + "href": "/graphql/reference/objects#organization", + "description": "

    The organization with the updated allow private repository forking setting.

    " + } + ] + }, { "name": "updateProject", "kind": "mutations", @@ -15584,6 +15626,16 @@ "kind": "scalars", "href": "/graphql/reference/scalars#string" } + }, + { + "name": "viewerOrganizationRole", + "description": "

    The viewer's role in an organization.

    ", + "type": { + "name": "RoleInOrganization", + "id": "roleinorganization", + "kind": "enums", + "href": "/graphql/reference/enums#roleinorganization" + } } ] }, @@ -30527,6 +30579,14 @@ } ] }, + { + "name": "membersCanForkPrivateRepositories", + "description": "

    Members can fork private repositories in this organization.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, { "name": "membersWithRole", "description": "

    A list of users who are members of this organization.

    ", @@ -61359,6 +61419,27 @@ } ] }, + { + "name": "RoleInOrganization", + "kind": "enums", + "id": "roleinorganization", + "href": "/graphql/reference/enums#roleinorganization", + "description": "

    Possible roles a user may have in relation to an organization.

    ", + "values": [ + { + "name": "DIRECT_MEMBER", + "description": "

    A user who is a direct member of the organization.

    " + }, + { + "name": "OWNER", + "description": "

    A user with full administrative access to the organization.

    " + }, + { + "name": "UNAFFILIATED", + "description": "

    A user who is unaffiliated with the organization.

    " + } + ] + }, { "name": "SamlDigestAlgorithm", "kind": "enums", @@ -70402,6 +70483,40 @@ } ] }, + { + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "kind": "inputObjects", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput", + "description": "

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    ", + "inputFields": [ + { + "name": "clientMutationId", + "description": "

    A unique identifier for the client performing the mutation.

    ", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + }, + { + "name": "forkingEnabled", + "description": "

    Enable forking of private repositories in the organization?.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, + { + "name": "organizationId", + "description": "

    The ID of the organization on which to set the allow private repository forking setting.

    ", + "type": "ID!", + "id": "id", + "kind": "scalars", + "href": "/graphql/reference/scalars#id", + "isDeprecated": false + } + ] + }, { "name": "UpdateProjectCardInput", "kind": "inputObjects", diff --git a/lib/graphql/static/schema-ghec.json b/lib/graphql/static/schema-ghec.json index 41dda1419c..30203ac35b 100644 --- a/lib/graphql/static/schema-ghec.json +++ b/lib/graphql/static/schema-ghec.json @@ -6376,6 +6376,48 @@ } ] }, + { + "name": "updateOrganizationAllowPrivateRepositoryForkingSetting", + "kind": "mutations", + "id": "updateorganizationallowprivaterepositoryforkingsetting", + "href": "/graphql/reference/mutations#updateorganizationallowprivaterepositoryforkingsetting", + "description": "

    Sets whether private repository forks are enabled for an organization.

    ", + "inputFields": [ + { + "name": "input", + "type": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput!", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "kind": "input-objects", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput" + } + ], + "returnFields": [ + { + "name": "clientMutationId", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A unique identifier for the client performing the mutation.

    " + }, + { + "name": "message", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string", + "description": "

    A message confirming the result of updating the allow private repository forking setting.

    " + }, + { + "name": "organization", + "type": "Organization", + "id": "organization", + "kind": "objects", + "href": "/graphql/reference/objects#organization", + "description": "

    The organization with the updated allow private repository forking setting.

    " + } + ] + }, { "name": "updateProject", "kind": "mutations", @@ -17214,6 +17256,16 @@ "kind": "scalars", "href": "/graphql/reference/scalars#string" } + }, + { + "name": "viewerOrganizationRole", + "description": "

    The viewer's role in an organization.

    ", + "type": { + "name": "RoleInOrganization", + "id": "roleinorganization", + "kind": "enums", + "href": "/graphql/reference/enums#roleinorganization" + } } ] }, @@ -23217,6 +23269,11 @@ "id": "node", "href": "/graphql/reference/interfaces#node" }, + { + "name": "ProjectNextOwner", + "id": "projectnextowner", + "href": "/graphql/reference/interfaces#projectnextowner" + }, { "name": "Reactable", "id": "reactable", @@ -23718,6 +23775,97 @@ } ] }, + { + "name": "projectNext", + "description": "

    Find a project by project (beta) number.

    ", + "type": "ProjectNext", + "id": "projectnext", + "kind": "objects", + "href": "/graphql/reference/objects#projectnext", + "arguments": [ + { + "name": "number", + "description": "

    The project (beta) number.

    ", + "type": { + "name": "Int!", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + } + ] + }, + { + "name": "projectsNext", + "description": "

    A list of project (beta) items under the owner.

    ", + "type": "ProjectNextConnection!", + "id": "projectnextconnection", + "kind": "objects", + "href": "/graphql/reference/objects#projectnextconnection", + "arguments": [ + { + "name": "after", + "description": "

    Returns the elements in the list that come after the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "before", + "description": "

    Returns the elements in the list that come before the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "first", + "description": "

    Returns the first n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "last", + "description": "

    Returns the last n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } + } + ] + }, { "name": "publishedAt", "description": "

    Identifies when the comment was published at.

    ", @@ -33377,6 +33525,14 @@ } ] }, + { + "name": "membersCanForkPrivateRepositories", + "description": "

    Members can fork private repositories in this organization.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, { "name": "membersWithRole", "description": "

    A list of users who are members of this organization.

    ", @@ -33765,7 +33921,7 @@ }, { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -33773,7 +33929,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -33865,7 +34021,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -33910,6 +34066,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] }, @@ -38875,6 +39052,11 @@ "id": "node", "href": "/graphql/reference/interfaces#node" }, + { + "name": "ProjectNextOwner", + "id": "projectnextowner", + "href": "/graphql/reference/interfaces#projectnextowner" + }, { "name": "Reactable", "id": "reactable", @@ -39869,6 +40051,97 @@ } ] }, + { + "name": "projectNext", + "description": "

    Find a project by project (beta) number.

    ", + "type": "ProjectNext", + "id": "projectnext", + "kind": "objects", + "href": "/graphql/reference/objects#projectnext", + "arguments": [ + { + "name": "number", + "description": "

    The project (beta) number.

    ", + "type": { + "name": "Int!", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + } + ] + }, + { + "name": "projectsNext", + "description": "

    A list of project (beta) items under the owner.

    ", + "type": "ProjectNextConnection!", + "id": "projectnextconnection", + "kind": "objects", + "href": "/graphql/reference/objects#projectnextconnection", + "arguments": [ + { + "name": "after", + "description": "

    Returns the elements in the list that come after the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "before", + "description": "

    Returns the elements in the list that come before the specified cursor.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "first", + "description": "

    Returns the first n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "last", + "description": "

    Returns the last n elements from the list.

    ", + "type": { + "name": "Int", + "id": "int", + "kind": "scalars", + "href": "/graphql/reference/scalars#int" + } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } + } + ] + }, { "name": "publishedAt", "description": "

    Identifies when the comment was published at.

    ", @@ -60691,7 +60964,7 @@ }, { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -60699,7 +60972,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -60791,7 +61064,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -60836,6 +61109,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] }, @@ -64369,11 +64663,11 @@ "kind": "interfaces", "id": "projectnextowner", "href": "/graphql/reference/interfaces#projectnextowner", - "description": "

    Represents an owner of a Project.

    ", + "description": "

    Represents an owner of a project (beta).

    ", "fields": [ { "name": "projectNext", - "description": "

    Find project by project next number.

    ", + "description": "

    Find a project by project (beta) number.

    ", "type": "ProjectNext", "id": "projectnext", "kind": "objects", @@ -64381,7 +64675,7 @@ "arguments": [ { "name": "number", - "description": "

    The project next number.

    ", + "description": "

    The project (beta) number.

    ", "type": { "name": "Int!", "id": "int", @@ -64393,7 +64687,7 @@ }, { "name": "projectsNext", - "description": "

    A list of project next items under the owner.

    ", + "description": "

    A list of project (beta) items under the owner.

    ", "type": "ProjectNextConnection!", "id": "projectnextconnection", "kind": "objects", @@ -64438,6 +64732,27 @@ "kind": "scalars", "href": "/graphql/reference/scalars#int" } + }, + { + "name": "query", + "description": "

    A project (beta) to search for under the the owner.

    ", + "type": { + "name": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + } + }, + { + "name": "sortBy", + "defaultValue": "TITLE", + "description": "

    How to order the returned projects (beta).

    ", + "type": { + "name": "ProjectNextOrderField", + "id": "projectnextorderfield", + "kind": "enums", + "href": "/graphql/reference/enums#projectnextorderfield" + } } ] } @@ -68228,6 +68543,31 @@ } ] }, + { + "name": "ProjectNextOrderField", + "kind": "enums", + "id": "projectnextorderfield", + "href": "/graphql/reference/enums#projectnextorderfield", + "description": "

    Properties by which the return project can be ordered.

    ", + "values": [ + { + "name": "CREATED_AT", + "description": "

    The project's date and time of creation.

    " + }, + { + "name": "NUMBER", + "description": "

    The project's number.

    " + }, + { + "name": "TITLE", + "description": "

    The project's title.

    " + }, + { + "name": "UPDATED_AT", + "description": "

    The project's date and time of update.

    " + } + ] + }, { "name": "ProjectOrderField", "kind": "enums", @@ -69252,6 +69592,27 @@ } ] }, + { + "name": "RoleInOrganization", + "kind": "enums", + "id": "roleinorganization", + "href": "/graphql/reference/enums#roleinorganization", + "description": "

    Possible roles a user may have in relation to an organization.

    ", + "values": [ + { + "name": "DIRECT_MEMBER", + "description": "

    A user who is a direct member of the organization.

    " + }, + { + "name": "OWNER", + "description": "

    A user with full administrative access to the organization.

    " + }, + { + "name": "UNAFFILIATED", + "description": "

    A user who is unaffiliated with the organization.

    " + } + ] + }, { "name": "SamlDigestAlgorithm", "kind": "enums", @@ -79894,6 +80255,40 @@ } ] }, + { + "name": "UpdateOrganizationAllowPrivateRepositoryForkingSettingInput", + "kind": "inputObjects", + "id": "updateorganizationallowprivaterepositoryforkingsettinginput", + "href": "/graphql/reference/input-objects#updateorganizationallowprivaterepositoryforkingsettinginput", + "description": "

    Autogenerated input type of UpdateOrganizationAllowPrivateRepositoryForkingSetting.

    ", + "inputFields": [ + { + "name": "clientMutationId", + "description": "

    A unique identifier for the client performing the mutation.

    ", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + }, + { + "name": "forkingEnabled", + "description": "

    Enable forking of private repositories in the organization?.

    ", + "type": "Boolean!", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + }, + { + "name": "organizationId", + "description": "

    The ID of the organization on which to set the allow private repository forking setting.

    ", + "type": "ID!", + "id": "id", + "kind": "scalars", + "href": "/graphql/reference/scalars#id", + "isDeprecated": false + } + ] + }, { "name": "UpdateProjectCardInput", "kind": "inputObjects", diff --git a/lib/page.js b/lib/page.js index 1b822831a9..7d02c58251 100644 --- a/lib/page.js +++ b/lib/page.js @@ -13,7 +13,6 @@ import renderContent from './render-content/index.js' import processLearningTracks from './process-learning-tracks.js' import { productMap } from './all-products.js' import slash from 'slash' -import statsd from './statsd.js' import readFileContents from './read-file-contents.js' import getLinkData from './get-link-data.js' import getDocumentType from './get-document-type.js' @@ -114,9 +113,7 @@ class Page { this.showMiniToc = this.showMiniToc === false ? this.showMiniToc : true } - // Instrument the `_render` method, so externally we call #render - // but it's wrapped in a timer that reports to Datadog - this.render = statsd.asyncTimer(this._render.bind(this), 'page.render') + this.render = this._render.bind(this) return this } diff --git a/lib/redirects/static/archived-frontmatter-fallbacks.json b/lib/redirects/static/archived-frontmatter-fallbacks.json index 88af792b6e..68a60c08ee 100644 --- a/lib/redirects/static/archived-frontmatter-fallbacks.json +++ b/lib/redirects/static/archived-frontmatter-fallbacks.json @@ -242268,43495 +242268,5 @@ "/pt/enterprise/2.17/v3/users", "/pt/enterprise/2.17/user/v3/users", "/pt/enterprise/2.17/rest/reference/users" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/about-actions", - "/de/enterprise/2.13/articles/about-actions", - "/de/enterprise/2.13/user/articles/about-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.13/actions/building-actions/about-actions", - "/de/enterprise/2.13/user/actions/building-actions/about-actions", - "/de/enterprise/2.13/actions/creating-actions/about-actions" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/about-actions", - "/de/enterprise/2.14/articles/about-actions", - "/de/enterprise/2.14/user/articles/about-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.14/actions/building-actions/about-actions", - "/de/enterprise/2.14/user/actions/building-actions/about-actions", - "/de/enterprise/2.14/actions/creating-actions/about-actions" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/about-actions", - "/de/enterprise/2.15/articles/about-actions", - "/de/enterprise/2.15/user/articles/about-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.15/actions/building-actions/about-actions", - "/de/enterprise/2.15/user/actions/building-actions/about-actions", - "/de/enterprise/2.15/actions/creating-actions/about-actions" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/about-actions", - "/de/enterprise/2.16/articles/about-actions", - "/de/enterprise/2.16/user/articles/about-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.16/actions/building-actions/about-actions", - "/de/enterprise/2.16/user/actions/building-actions/about-actions", - "/de/enterprise/2.16/actions/creating-actions/about-actions" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/about-actions", - "/de/enterprise/2.17/articles/about-actions", - "/de/enterprise/2.17/user/articles/about-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-actions", - "/de/enterprise/2.17/actions/building-actions/about-actions", - "/de/enterprise/2.17/user/actions/building-actions/about-actions", - "/de/enterprise/2.17/actions/creating-actions/about-actions" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/creating-a-composite-run-steps-action", - "/de/enterprise/2.13/actions/creating-actions/creating-a-composite-run-steps-action" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/creating-a-composite-run-steps-action", - "/de/enterprise/2.14/actions/creating-actions/creating-a-composite-run-steps-action" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/creating-a-composite-run-steps-action", - "/de/enterprise/2.15/actions/creating-actions/creating-a-composite-run-steps-action" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/creating-a-composite-run-steps-action", - "/de/enterprise/2.16/actions/creating-actions/creating-a-composite-run-steps-action" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/creating-a-composite-run-steps-action", - "/de/enterprise/2.17/actions/creating-actions/creating-a-composite-run-steps-action" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/articles/creating-a-docker-container-action", - "/de/enterprise/2.13/user/articles/creating-a-docker-container-action", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/user/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.13/actions/creating-actions/creating-a-docker-container-action" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/articles/creating-a-docker-container-action", - "/de/enterprise/2.14/user/articles/creating-a-docker-container-action", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/user/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.14/actions/creating-actions/creating-a-docker-container-action" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/articles/creating-a-docker-container-action", - "/de/enterprise/2.15/user/articles/creating-a-docker-container-action", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/user/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.15/actions/creating-actions/creating-a-docker-container-action" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/articles/creating-a-docker-container-action", - "/de/enterprise/2.16/user/articles/creating-a-docker-container-action", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/user/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.16/actions/creating-actions/creating-a-docker-container-action" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/articles/creating-a-docker-container-action", - "/de/enterprise/2.17/user/articles/creating-a-docker-container-action", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/user/actions/building-actions/creating-a-docker-container-action", - "/de/enterprise/2.17/actions/creating-actions/creating-a-docker-container-action" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/creating-a-javascript-action", - "/de/enterprise/2.13/articles/creating-a-javascript-action", - "/de/enterprise/2.13/user/articles/creating-a-javascript-action", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.13/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.13/user/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.13/actions/creating-actions/creating-a-javascript-action" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/creating-a-javascript-action", - "/de/enterprise/2.14/articles/creating-a-javascript-action", - "/de/enterprise/2.14/user/articles/creating-a-javascript-action", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.14/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.14/user/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.14/actions/creating-actions/creating-a-javascript-action" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/creating-a-javascript-action", - "/de/enterprise/2.15/articles/creating-a-javascript-action", - "/de/enterprise/2.15/user/articles/creating-a-javascript-action", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.15/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.15/user/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.15/actions/creating-actions/creating-a-javascript-action" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/creating-a-javascript-action", - "/de/enterprise/2.16/articles/creating-a-javascript-action", - "/de/enterprise/2.16/user/articles/creating-a-javascript-action", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.16/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.16/user/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.16/actions/creating-actions/creating-a-javascript-action" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/creating-a-javascript-action", - "/de/enterprise/2.17/articles/creating-a-javascript-action", - "/de/enterprise/2.17/user/articles/creating-a-javascript-action", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/creating-a-javascript-action", - "/de/enterprise/2.17/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.17/user/actions/building-actions/creating-a-javascript-action", - "/de/enterprise/2.17/actions/creating-actions/creating-a-javascript-action" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.13/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.13/user/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.13/actions/creating-actions/dockerfile-support-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.14/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.14/user/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.14/actions/creating-actions/dockerfile-support-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.15/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.15/user/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.15/actions/creating-actions/dockerfile-support-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.16/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.16/user/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.16/actions/creating-actions/dockerfile-support-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.17/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.17/user/actions/building-actions/dockerfile-support-for-github-actions", - "/de/enterprise/2.17/actions/creating-actions/dockerfile-support-for-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions", - "/de/enterprise/2.13/articles/building-actions", - "/de/enterprise/2.13/user/articles/building-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.13/actions/building-actions", - "/de/enterprise/2.13/user/actions/building-actions", - "/de/enterprise/2.13/articles/creating-a-github-action", - "/de/enterprise/2.13/user/articles/creating-a-github-action", - "/de/enterprise/2.13/actions/creating-actions" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions", - "/de/enterprise/2.14/articles/building-actions", - "/de/enterprise/2.14/user/articles/building-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.14/actions/building-actions", - "/de/enterprise/2.14/user/actions/building-actions", - "/de/enterprise/2.14/articles/creating-a-github-action", - "/de/enterprise/2.14/user/articles/creating-a-github-action", - "/de/enterprise/2.14/actions/creating-actions" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions", - "/de/enterprise/2.15/articles/building-actions", - "/de/enterprise/2.15/user/articles/building-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.15/actions/building-actions", - "/de/enterprise/2.15/user/actions/building-actions", - "/de/enterprise/2.15/articles/creating-a-github-action", - "/de/enterprise/2.15/user/articles/creating-a-github-action", - "/de/enterprise/2.15/actions/creating-actions" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions", - "/de/enterprise/2.16/articles/building-actions", - "/de/enterprise/2.16/user/articles/building-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.16/actions/building-actions", - "/de/enterprise/2.16/user/actions/building-actions", - "/de/enterprise/2.16/articles/creating-a-github-action", - "/de/enterprise/2.16/user/articles/creating-a-github-action", - "/de/enterprise/2.16/actions/creating-actions" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions", - "/de/enterprise/2.17/articles/building-actions", - "/de/enterprise/2.17/user/articles/building-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/building-actions", - "/de/enterprise/2.17/actions/building-actions", - "/de/enterprise/2.17/user/actions/building-actions", - "/de/enterprise/2.17/articles/creating-a-github-action", - "/de/enterprise/2.17/user/articles/creating-a-github-action", - "/de/enterprise/2.17/actions/creating-actions" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/user/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/user/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.13/actions/creating-actions/metadata-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/user/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/user/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.14/actions/creating-actions/metadata-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/user/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/user/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.15/actions/creating-actions/metadata-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/user/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/user/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.16/actions/creating-actions/metadata-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/user/articles/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/user/actions/building-actions/metadata-syntax-for-github-actions", - "/de/enterprise/2.17/actions/creating-actions/metadata-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/creating-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.13/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.13/user/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.13/actions/creating-actions/setting-exit-codes-for-actions" - ], - [ - "/de/enterprise/2.14/user/actions/creating-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.14/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.14/user/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.14/actions/creating-actions/setting-exit-codes-for-actions" - ], - [ - "/de/enterprise/2.15/user/actions/creating-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.15/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.15/user/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.15/actions/creating-actions/setting-exit-codes-for-actions" - ], - [ - "/de/enterprise/2.16/user/actions/creating-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.16/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.16/user/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.16/actions/creating-actions/setting-exit-codes-for-actions" - ], - [ - "/de/enterprise/2.17/user/actions/creating-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.17/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.17/user/actions/building-actions/setting-exit-codes-for-actions", - "/de/enterprise/2.17/actions/creating-actions/setting-exit-codes-for-actions" - ], - [ - "/de/enterprise/2.13/user/actions/guides/about-continuous-integration", - "/de/enterprise/2.13/articles/about-continuous-integration", - "/de/enterprise/2.13/user/articles/about-continuous-integration", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.13/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.13/user/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.13/actions/guides/about-continuous-integration" - ], - [ - "/de/enterprise/2.14/user/actions/guides/about-continuous-integration", - "/de/enterprise/2.14/articles/about-continuous-integration", - "/de/enterprise/2.14/user/articles/about-continuous-integration", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.14/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.14/user/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.14/actions/guides/about-continuous-integration" - ], - [ - "/de/enterprise/2.15/user/actions/guides/about-continuous-integration", - "/de/enterprise/2.15/articles/about-continuous-integration", - "/de/enterprise/2.15/user/articles/about-continuous-integration", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.15/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.15/user/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.15/actions/guides/about-continuous-integration" - ], - [ - "/de/enterprise/2.16/user/actions/guides/about-continuous-integration", - "/de/enterprise/2.16/articles/about-continuous-integration", - "/de/enterprise/2.16/user/articles/about-continuous-integration", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.16/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.16/user/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.16/actions/guides/about-continuous-integration" - ], - [ - "/de/enterprise/2.17/user/actions/guides/about-continuous-integration", - "/de/enterprise/2.17/articles/about-continuous-integration", - "/de/enterprise/2.17/user/articles/about-continuous-integration", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-continuous-integration", - "/de/enterprise/2.17/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.17/user/actions/building-and-testing-code-with-continuous-integration/about-continuous-integration", - "/de/enterprise/2.17/actions/guides/about-continuous-integration" - ], - [ - "/de/enterprise/2.13/user/actions/guides/about-packaging-with-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.13/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.13/user/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.13/actions/guides/about-packaging-with-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/guides/about-packaging-with-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.14/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.14/user/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.14/actions/guides/about-packaging-with-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/guides/about-packaging-with-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.15/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.15/user/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.15/actions/guides/about-packaging-with-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/guides/about-packaging-with-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.16/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.16/user/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.16/actions/guides/about-packaging-with-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/guides/about-packaging-with-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.17/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.17/user/actions/publishing-packages-with-github-actions/about-packaging-with-github-actions", - "/de/enterprise/2.17/actions/guides/about-packaging-with-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/guides/about-service-containers", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.13/actions/guides/about-service-containers" - ], - [ - "/de/enterprise/2.14/user/actions/guides/about-service-containers", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.14/actions/guides/about-service-containers" - ], - [ - "/de/enterprise/2.15/user/actions/guides/about-service-containers", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.15/actions/guides/about-service-containers" - ], - [ - "/de/enterprise/2.16/user/actions/guides/about-service-containers", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.16/actions/guides/about-service-containers" - ], - [ - "/de/enterprise/2.17/user/actions/guides/about-service-containers", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-service-containers", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/about-service-containers", - "/de/enterprise/2.17/actions/guides/about-service-containers" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-java-with-ant", - "/de/enterprise/2.13/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.13/actions/guides/building-and-testing-java-with-ant" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-java-with-ant", - "/de/enterprise/2.14/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.14/actions/guides/building-and-testing-java-with-ant" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-java-with-ant", - "/de/enterprise/2.15/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.15/actions/guides/building-and-testing-java-with-ant" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-java-with-ant", - "/de/enterprise/2.16/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.16/actions/guides/building-and-testing-java-with-ant" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-java-with-ant", - "/de/enterprise/2.17/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/building-and-testing-java-with-ant", - "/de/enterprise/2.17/actions/guides/building-and-testing-java-with-ant" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.13/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.13/actions/guides/building-and-testing-java-with-gradle" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.14/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.14/actions/guides/building-and-testing-java-with-gradle" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.15/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.15/actions/guides/building-and-testing-java-with-gradle" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.16/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.16/actions/guides/building-and-testing-java-with-gradle" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.17/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/building-and-testing-java-with-gradle", - "/de/enterprise/2.17/actions/guides/building-and-testing-java-with-gradle" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-java-with-maven", - "/de/enterprise/2.13/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.13/actions/guides/building-and-testing-java-with-maven" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-java-with-maven", - "/de/enterprise/2.14/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.14/actions/guides/building-and-testing-java-with-maven" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-java-with-maven", - "/de/enterprise/2.15/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.15/actions/guides/building-and-testing-java-with-maven" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-java-with-maven", - "/de/enterprise/2.16/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.16/actions/guides/building-and-testing-java-with-maven" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-java-with-maven", - "/de/enterprise/2.17/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/building-and-testing-java-with-maven", - "/de/enterprise/2.17/actions/guides/building-and-testing-java-with-maven" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-net", - "/de/enterprise/2.13/actions/guides/building-and-testing-net" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-net", - "/de/enterprise/2.14/actions/guides/building-and-testing-net" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-net", - "/de/enterprise/2.15/actions/guides/building-and-testing-net" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-net", - "/de/enterprise/2.16/actions/guides/building-and-testing-net" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-net", - "/de/enterprise/2.17/actions/guides/building-and-testing-net" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-nodejs", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.13/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.13/actions/guides/building-and-testing-nodejs" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-nodejs", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.14/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.14/actions/guides/building-and-testing-nodejs" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-nodejs", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.15/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.15/actions/guides/building-and-testing-nodejs" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-nodejs", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.16/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.16/actions/guides/building-and-testing-nodejs" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-nodejs", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-nodejs-with-github-actions", - "/de/enterprise/2.17/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/using-nodejs-with-github-actions", - "/de/enterprise/2.17/actions/guides/building-and-testing-nodejs" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-powershell", - "/de/enterprise/2.13/actions/guides/building-and-testing-powershell" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-powershell", - "/de/enterprise/2.14/actions/guides/building-and-testing-powershell" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-powershell", - "/de/enterprise/2.15/actions/guides/building-and-testing-powershell" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-powershell", - "/de/enterprise/2.16/actions/guides/building-and-testing-powershell" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-powershell", - "/de/enterprise/2.17/actions/guides/building-and-testing-powershell" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-python", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.13/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.13/actions/guides/building-and-testing-python" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-python", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.14/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.14/actions/guides/building-and-testing-python" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-python", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.15/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.15/actions/guides/building-and-testing-python" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-python", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.16/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.16/actions/guides/building-and-testing-python" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-python", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-python-with-github-actions", - "/de/enterprise/2.17/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/using-python-with-github-actions", - "/de/enterprise/2.17/actions/guides/building-and-testing-python" - ], - [ - "/de/enterprise/2.13/user/actions/guides/building-and-testing-ruby", - "/de/enterprise/2.13/actions/guides/building-and-testing-ruby" - ], - [ - "/de/enterprise/2.14/user/actions/guides/building-and-testing-ruby", - "/de/enterprise/2.14/actions/guides/building-and-testing-ruby" - ], - [ - "/de/enterprise/2.15/user/actions/guides/building-and-testing-ruby", - "/de/enterprise/2.15/actions/guides/building-and-testing-ruby" - ], - [ - "/de/enterprise/2.16/user/actions/guides/building-and-testing-ruby", - "/de/enterprise/2.16/actions/guides/building-and-testing-ruby" - ], - [ - "/de/enterprise/2.17/user/actions/guides/building-and-testing-ruby", - "/de/enterprise/2.17/actions/guides/building-and-testing-ruby" - ], - [ - "/de/enterprise/2.13/user/actions/guides/creating-postgresql-service-containers", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.13/actions/guides/creating-postgresql-service-containers" - ], - [ - "/de/enterprise/2.14/user/actions/guides/creating-postgresql-service-containers", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.14/actions/guides/creating-postgresql-service-containers" - ], - [ - "/de/enterprise/2.15/user/actions/guides/creating-postgresql-service-containers", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.15/actions/guides/creating-postgresql-service-containers" - ], - [ - "/de/enterprise/2.16/user/actions/guides/creating-postgresql-service-containers", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.16/actions/guides/creating-postgresql-service-containers" - ], - [ - "/de/enterprise/2.17/user/actions/guides/creating-postgresql-service-containers", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/creating-postgresql-service-containers", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/creating-postgresql-service-containers", - "/de/enterprise/2.17/actions/guides/creating-postgresql-service-containers" - ], - [ - "/de/enterprise/2.13/user/actions/guides/creating-redis-service-containers", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.13/actions/guides/creating-redis-service-containers" - ], - [ - "/de/enterprise/2.14/user/actions/guides/creating-redis-service-containers", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.14/actions/guides/creating-redis-service-containers" - ], - [ - "/de/enterprise/2.15/user/actions/guides/creating-redis-service-containers", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.15/actions/guides/creating-redis-service-containers" - ], - [ - "/de/enterprise/2.16/user/actions/guides/creating-redis-service-containers", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.16/actions/guides/creating-redis-service-containers" - ], - [ - "/de/enterprise/2.17/user/actions/guides/creating-redis-service-containers", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/creating-redis-service-containers", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/creating-redis-service-containers", - "/de/enterprise/2.17/actions/guides/creating-redis-service-containers" - ], - [ - "/de/enterprise/2.13/user/actions/guides/deploying-to-amazon-elastic-container-service", - "/de/enterprise/2.13/actions/guides/deploying-to-amazon-elastic-container-service" - ], - [ - "/de/enterprise/2.14/user/actions/guides/deploying-to-amazon-elastic-container-service", - "/de/enterprise/2.14/actions/guides/deploying-to-amazon-elastic-container-service" - ], - [ - "/de/enterprise/2.15/user/actions/guides/deploying-to-amazon-elastic-container-service", - "/de/enterprise/2.15/actions/guides/deploying-to-amazon-elastic-container-service" - ], - [ - "/de/enterprise/2.16/user/actions/guides/deploying-to-amazon-elastic-container-service", - "/de/enterprise/2.16/actions/guides/deploying-to-amazon-elastic-container-service" - ], - [ - "/de/enterprise/2.17/user/actions/guides/deploying-to-amazon-elastic-container-service", - "/de/enterprise/2.17/actions/guides/deploying-to-amazon-elastic-container-service" - ], - [ - "/de/enterprise/2.13/user/actions/guides/deploying-to-azure-app-service", - "/de/enterprise/2.13/actions/guides/deploying-to-azure-app-service" - ], - [ - "/de/enterprise/2.14/user/actions/guides/deploying-to-azure-app-service", - "/de/enterprise/2.14/actions/guides/deploying-to-azure-app-service" - ], - [ - "/de/enterprise/2.15/user/actions/guides/deploying-to-azure-app-service", - "/de/enterprise/2.15/actions/guides/deploying-to-azure-app-service" - ], - [ - "/de/enterprise/2.16/user/actions/guides/deploying-to-azure-app-service", - "/de/enterprise/2.16/actions/guides/deploying-to-azure-app-service" - ], - [ - "/de/enterprise/2.17/user/actions/guides/deploying-to-azure-app-service", - "/de/enterprise/2.17/actions/guides/deploying-to-azure-app-service" - ], - [ - "/de/enterprise/2.13/user/actions/guides/deploying-to-google-kubernetes-engine", - "/de/enterprise/2.13/actions/guides/deploying-to-google-kubernetes-engine" - ], - [ - "/de/enterprise/2.14/user/actions/guides/deploying-to-google-kubernetes-engine", - "/de/enterprise/2.14/actions/guides/deploying-to-google-kubernetes-engine" - ], - [ - "/de/enterprise/2.15/user/actions/guides/deploying-to-google-kubernetes-engine", - "/de/enterprise/2.15/actions/guides/deploying-to-google-kubernetes-engine" - ], - [ - "/de/enterprise/2.16/user/actions/guides/deploying-to-google-kubernetes-engine", - "/de/enterprise/2.16/actions/guides/deploying-to-google-kubernetes-engine" - ], - [ - "/de/enterprise/2.17/user/actions/guides/deploying-to-google-kubernetes-engine", - "/de/enterprise/2.17/actions/guides/deploying-to-google-kubernetes-engine" - ], - [ - "/de/enterprise/2.13/user/actions/guides", - "/de/enterprise/2.13/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.13/user/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.13/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.13/user/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.13/actions/language-and-framework-guides", - "/de/enterprise/2.13/user/actions/language-and-framework-guides", - "/de/enterprise/2.13/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.13/actions/language-and-framework-guides/user-actions-for-docker", - "/de/enterprise/2.13/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.13/actions/language-and-framework-guides/user-actions-for-java", - "/de/enterprise/2.13/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.13/actions/language-and-framework-guides/user-actions-for-javascript-and-typescript", - "/de/enterprise/2.13/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.13/actions/language-and-framework-guides/user-actions-for-python", - "/de/enterprise/2.13/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.13/user/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.13/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.13/user/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.13/actions/guides" - ], - [ - "/de/enterprise/2.14/user/actions/guides", - "/de/enterprise/2.14/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.14/user/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.14/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.14/user/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.14/actions/language-and-framework-guides", - "/de/enterprise/2.14/user/actions/language-and-framework-guides", - "/de/enterprise/2.14/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.14/actions/language-and-framework-guides/user-actions-for-docker", - "/de/enterprise/2.14/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.14/actions/language-and-framework-guides/user-actions-for-java", - "/de/enterprise/2.14/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.14/actions/language-and-framework-guides/user-actions-for-javascript-and-typescript", - "/de/enterprise/2.14/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.14/actions/language-and-framework-guides/user-actions-for-python", - "/de/enterprise/2.14/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.14/user/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.14/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.14/user/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.14/actions/guides" - ], - [ - "/de/enterprise/2.15/user/actions/guides", - "/de/enterprise/2.15/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.15/user/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.15/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.15/user/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.15/actions/language-and-framework-guides", - "/de/enterprise/2.15/user/actions/language-and-framework-guides", - "/de/enterprise/2.15/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.15/actions/language-and-framework-guides/user-actions-for-docker", - "/de/enterprise/2.15/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.15/actions/language-and-framework-guides/user-actions-for-java", - "/de/enterprise/2.15/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.15/actions/language-and-framework-guides/user-actions-for-javascript-and-typescript", - "/de/enterprise/2.15/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.15/actions/language-and-framework-guides/user-actions-for-python", - "/de/enterprise/2.15/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.15/user/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.15/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.15/user/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.15/actions/guides" - ], - [ - "/de/enterprise/2.16/user/actions/guides", - "/de/enterprise/2.16/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.16/user/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.16/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.16/user/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.16/actions/language-and-framework-guides", - "/de/enterprise/2.16/user/actions/language-and-framework-guides", - "/de/enterprise/2.16/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.16/actions/language-and-framework-guides/user-actions-for-docker", - "/de/enterprise/2.16/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.16/actions/language-and-framework-guides/user-actions-for-java", - "/de/enterprise/2.16/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.16/actions/language-and-framework-guides/user-actions-for-javascript-and-typescript", - "/de/enterprise/2.16/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.16/actions/language-and-framework-guides/user-actions-for-python", - "/de/enterprise/2.16/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.16/user/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.16/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.16/user/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.16/actions/guides" - ], - [ - "/de/enterprise/2.17/user/actions/guides", - "/de/enterprise/2.17/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.17/user/actions/guides/caching-and-storing-workflow-data", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-databases-and-services", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/using-databases-and-service-containers", - "/de/enterprise/2.17/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.17/user/actions/guides/using-databases-and-service-containers", - "/de/enterprise/2.17/actions/language-and-framework-guides", - "/de/enterprise/2.17/user/actions/language-and-framework-guides", - "/de/enterprise/2.17/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/github-actions-for-docker", - "/de/enterprise/2.17/actions/language-and-framework-guides/user-actions-for-docker", - "/de/enterprise/2.17/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/github-actions-for-java", - "/de/enterprise/2.17/actions/language-and-framework-guides/user-actions-for-java", - "/de/enterprise/2.17/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/github-actions-for-javascript-and-typescript", - "/de/enterprise/2.17/actions/language-and-framework-guides/user-actions-for-javascript-and-typescript", - "/de/enterprise/2.17/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/github-actions-for-python", - "/de/enterprise/2.17/actions/language-and-framework-guides/user-actions-for-python", - "/de/enterprise/2.17/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.17/user/actions/publishing-packages-with-github-actions", - "/de/enterprise/2.17/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.17/user/actions/building-and-testing-code-with-continuous-integration", - "/de/enterprise/2.17/actions/guides" - ], - [ - "/de/enterprise/2.13/user/actions/guides/publishing-docker-images", - "/de/enterprise/2.13/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.13/actions/guides/publishing-docker-images" - ], - [ - "/de/enterprise/2.14/user/actions/guides/publishing-docker-images", - "/de/enterprise/2.14/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.14/actions/guides/publishing-docker-images" - ], - [ - "/de/enterprise/2.15/user/actions/guides/publishing-docker-images", - "/de/enterprise/2.15/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.15/actions/guides/publishing-docker-images" - ], - [ - "/de/enterprise/2.16/user/actions/guides/publishing-docker-images", - "/de/enterprise/2.16/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.16/actions/guides/publishing-docker-images" - ], - [ - "/de/enterprise/2.17/user/actions/guides/publishing-docker-images", - "/de/enterprise/2.17/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/publishing-docker-images", - "/de/enterprise/2.17/actions/guides/publishing-docker-images" - ], - [ - "/de/enterprise/2.13/user/actions/guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.13/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.13/actions/guides/publishing-java-packages-with-gradle" - ], - [ - "/de/enterprise/2.14/user/actions/guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.14/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.14/actions/guides/publishing-java-packages-with-gradle" - ], - [ - "/de/enterprise/2.15/user/actions/guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.15/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.15/actions/guides/publishing-java-packages-with-gradle" - ], - [ - "/de/enterprise/2.16/user/actions/guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.16/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.16/actions/guides/publishing-java-packages-with-gradle" - ], - [ - "/de/enterprise/2.17/user/actions/guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.17/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/publishing-java-packages-with-gradle", - "/de/enterprise/2.17/actions/guides/publishing-java-packages-with-gradle" - ], - [ - "/de/enterprise/2.13/user/actions/guides/publishing-java-packages-with-maven", - "/de/enterprise/2.13/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.13/actions/guides/publishing-java-packages-with-maven" - ], - [ - "/de/enterprise/2.14/user/actions/guides/publishing-java-packages-with-maven", - "/de/enterprise/2.14/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.14/actions/guides/publishing-java-packages-with-maven" - ], - [ - "/de/enterprise/2.15/user/actions/guides/publishing-java-packages-with-maven", - "/de/enterprise/2.15/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.15/actions/guides/publishing-java-packages-with-maven" - ], - [ - "/de/enterprise/2.16/user/actions/guides/publishing-java-packages-with-maven", - "/de/enterprise/2.16/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.16/actions/guides/publishing-java-packages-with-maven" - ], - [ - "/de/enterprise/2.17/user/actions/guides/publishing-java-packages-with-maven", - "/de/enterprise/2.17/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/publishing-java-packages-with-maven", - "/de/enterprise/2.17/actions/guides/publishing-java-packages-with-maven" - ], - [ - "/de/enterprise/2.13/user/actions/guides/publishing-nodejs-packages", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.13/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.13/user/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.13/actions/guides/publishing-nodejs-packages" - ], - [ - "/de/enterprise/2.14/user/actions/guides/publishing-nodejs-packages", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.14/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.14/user/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.14/actions/guides/publishing-nodejs-packages" - ], - [ - "/de/enterprise/2.15/user/actions/guides/publishing-nodejs-packages", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.15/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.15/user/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.15/actions/guides/publishing-nodejs-packages" - ], - [ - "/de/enterprise/2.16/user/actions/guides/publishing-nodejs-packages", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.16/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.16/user/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.16/actions/guides/publishing-nodejs-packages" - ], - [ - "/de/enterprise/2.17/user/actions/guides/publishing-nodejs-packages", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/publishing-nodejs-packages", - "/de/enterprise/2.17/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.17/user/actions/language-and-framework-guides/publishing-nodejs-packages", - "/de/enterprise/2.17/actions/guides/publishing-nodejs-packages" - ], - [ - "/de/enterprise/2.13/user/actions/guides/setting-up-continuous-integration-using-workflow-templates", - "/de/enterprise/2.13/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/user/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/user/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.13/actions/guides/setting-up-continuous-integration-using-workflow-templates" - ], - [ - "/de/enterprise/2.14/user/actions/guides/setting-up-continuous-integration-using-workflow-templates", - "/de/enterprise/2.14/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/user/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/user/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.14/actions/guides/setting-up-continuous-integration-using-workflow-templates" - ], - [ - "/de/enterprise/2.15/user/actions/guides/setting-up-continuous-integration-using-workflow-templates", - "/de/enterprise/2.15/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/user/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/user/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.15/actions/guides/setting-up-continuous-integration-using-workflow-templates" - ], - [ - "/de/enterprise/2.16/user/actions/guides/setting-up-continuous-integration-using-workflow-templates", - "/de/enterprise/2.16/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/user/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/user/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.16/actions/guides/setting-up-continuous-integration-using-workflow-templates" - ], - [ - "/de/enterprise/2.17/user/actions/guides/setting-up-continuous-integration-using-workflow-templates", - "/de/enterprise/2.17/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/user/articles/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/user/actions/building-and-testing-code-with-continuous-integration/setting-up-continuous-integration-using-github-actions", - "/de/enterprise/2.17/actions/guides/setting-up-continuous-integration-using-workflow-templates" - ], - [ - "/de/enterprise/2.13/user/actions/guides/storing-workflow-data-as-artifacts", - "/de/enterprise/2.13/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/user/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.13/actions/guides/storing-workflow-data-as-artifacts" - ], - [ - "/de/enterprise/2.14/user/actions/guides/storing-workflow-data-as-artifacts", - "/de/enterprise/2.14/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/user/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.14/actions/guides/storing-workflow-data-as-artifacts" - ], - [ - "/de/enterprise/2.15/user/actions/guides/storing-workflow-data-as-artifacts", - "/de/enterprise/2.15/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/user/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.15/actions/guides/storing-workflow-data-as-artifacts" - ], - [ - "/de/enterprise/2.16/user/actions/guides/storing-workflow-data-as-artifacts", - "/de/enterprise/2.16/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/user/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.16/actions/guides/storing-workflow-data-as-artifacts" - ], - [ - "/de/enterprise/2.17/user/actions/guides/storing-workflow-data-as-artifacts", - "/de/enterprise/2.17/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/user/articles/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts", - "/de/enterprise/2.17/actions/guides/storing-workflow-data-as-artifacts" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/about-self-hosted-runners", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/about-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/about-self-hosted-runners", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/about-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/about-self-hosted-runners", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/about-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/about-self-hosted-runners", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/about-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/about-self-hosted-runners", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/about-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/adding-self-hosted-runners", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/adding-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/adding-self-hosted-runners", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/adding-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/adding-self-hosted-runners", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/adding-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/adding-self-hosted-runners", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/adding-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/adding-self-hosted-runners", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/adding-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.13/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.14/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.15/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.16/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/configuring-the-self-hosted-runner-application-as-a-service", - "/de/enterprise/2.17/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/hosting-your-own-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", - "/de/enterprise/2.13/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", - "/de/enterprise/2.14/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", - "/de/enterprise/2.15/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", - "/de/enterprise/2.16/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", - "/de/enterprise/2.17/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/checking-the-status-of-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/removing-self-hosted-runners", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/removing-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/removing-self-hosted-runners", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/removing-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/removing-self-hosted-runners", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/removing-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/removing-self-hosted-runners", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/removing-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/removing-self-hosted-runners", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/removing-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/removing-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-a-proxy-server-with-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", - "/de/enterprise/2.13/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", - "/de/enterprise/2.14/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", - "/de/enterprise/2.15/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", - "/de/enterprise/2.16/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", - "/de/enterprise/2.17/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.13/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow" - ], - [ - "/de/enterprise/2.14/user/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.14/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow" - ], - [ - "/de/enterprise/2.15/user/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.15/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow" - ], - [ - "/de/enterprise/2.16/user/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.16/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow" - ], - [ - "/de/enterprise/2.17/user/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-self-hosted-runners-in-a-workflow", - "/de/enterprise/2.17/actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow" - ], - [ - "/de/enterprise/2.13/user/actions", - "/de/enterprise/2.13/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/user/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.13/user/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/user/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.13/marketplace/actions", - "/de/enterprise/2.13/user/marketplace/actions", - "/de/enterprise/2.13/actions" - ], - [ - "/de/enterprise/2.14/user/actions", - "/de/enterprise/2.14/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/user/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.14/user/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/user/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.14/marketplace/actions", - "/de/enterprise/2.14/user/marketplace/actions", - "/de/enterprise/2.14/actions" - ], - [ - "/de/enterprise/2.15/user/actions", - "/de/enterprise/2.15/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/user/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.15/user/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/user/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.15/marketplace/actions", - "/de/enterprise/2.15/user/marketplace/actions", - "/de/enterprise/2.15/actions" - ], - [ - "/de/enterprise/2.16/user/actions", - "/de/enterprise/2.16/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/user/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.16/user/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/user/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.16/marketplace/actions", - "/de/enterprise/2.16/user/marketplace/actions", - "/de/enterprise/2.16/actions" - ], - [ - "/de/enterprise/2.17/user/actions", - "/de/enterprise/2.17/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/user/articles/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.17/user/articles/customizing-your-project-with-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/user/categories/automating-your-workflow-with-github-actions", - "/de/enterprise/2.17/marketplace/actions", - "/de/enterprise/2.17/user/marketplace/actions", - "/de/enterprise/2.17/actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/essential-features-of-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/essential-features-of-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/essential-features-of-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/essential-features-of-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/essential-features-of-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/essential-features-of-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/essential-features-of-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/essential-features-of-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/essential-features-of-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/essential-features-of-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/finding-and-customizing-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.13/actions/learn-github-actions/finding-and-customizing-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/finding-and-customizing-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.14/actions/learn-github-actions/finding-and-customizing-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/finding-and-customizing-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.15/actions/learn-github-actions/finding-and-customizing-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/finding-and-customizing-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.16/actions/learn-github-actions/finding-and-customizing-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/finding-and-customizing-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-github-marketplace-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-actions-from-github-marketplace-in-your-workflow", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/using-actions-from-github-marketplace", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/using-community-workflows-and-actions", - "/de/enterprise/2.17/actions/learn-github-actions/finding-and-customizing-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions", - "/de/enterprise/2.13/articles/about-github-actions", - "/de/enterprise/2.13/user/articles/about-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.13/actions/getting-started-with-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.13/user/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.13/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.13/user/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.13/articles/configuring-a-workflow", - "/de/enterprise/2.13/user/articles/configuring-a-workflow", - "/de/enterprise/2.13/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.13/user/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.13/user/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.13/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.13/user/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.13/articles/configuring-workflows", - "/de/enterprise/2.13/user/articles/configuring-workflows", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows", - "/de/enterprise/2.13/articles/getting-started-with-github-actions", - "/de/enterprise/2.13/user/articles/getting-started-with-github-actions", - "/de/enterprise/2.13/actions/migrating-to-github-actions", - "/de/enterprise/2.13/user/actions/migrating-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions", - "/de/enterprise/2.14/articles/about-github-actions", - "/de/enterprise/2.14/user/articles/about-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.14/actions/getting-started-with-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.14/user/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.14/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.14/user/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.14/articles/configuring-a-workflow", - "/de/enterprise/2.14/user/articles/configuring-a-workflow", - "/de/enterprise/2.14/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.14/user/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.14/user/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.14/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.14/user/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.14/articles/configuring-workflows", - "/de/enterprise/2.14/user/articles/configuring-workflows", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows", - "/de/enterprise/2.14/articles/getting-started-with-github-actions", - "/de/enterprise/2.14/user/articles/getting-started-with-github-actions", - "/de/enterprise/2.14/actions/migrating-to-github-actions", - "/de/enterprise/2.14/user/actions/migrating-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions", - "/de/enterprise/2.15/articles/about-github-actions", - "/de/enterprise/2.15/user/articles/about-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.15/actions/getting-started-with-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.15/user/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.15/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.15/user/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.15/articles/configuring-a-workflow", - "/de/enterprise/2.15/user/articles/configuring-a-workflow", - "/de/enterprise/2.15/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.15/user/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.15/user/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.15/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.15/user/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.15/articles/configuring-workflows", - "/de/enterprise/2.15/user/articles/configuring-workflows", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows", - "/de/enterprise/2.15/articles/getting-started-with-github-actions", - "/de/enterprise/2.15/user/articles/getting-started-with-github-actions", - "/de/enterprise/2.15/actions/migrating-to-github-actions", - "/de/enterprise/2.15/user/actions/migrating-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions", - "/de/enterprise/2.16/articles/about-github-actions", - "/de/enterprise/2.16/user/articles/about-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.16/actions/getting-started-with-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.16/user/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.16/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.16/user/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.16/articles/configuring-a-workflow", - "/de/enterprise/2.16/user/articles/configuring-a-workflow", - "/de/enterprise/2.16/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.16/user/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.16/user/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.16/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.16/user/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.16/articles/configuring-workflows", - "/de/enterprise/2.16/user/articles/configuring-workflows", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows", - "/de/enterprise/2.16/articles/getting-started-with-github-actions", - "/de/enterprise/2.16/user/articles/getting-started-with-github-actions", - "/de/enterprise/2.16/actions/migrating-to-github-actions", - "/de/enterprise/2.16/user/actions/migrating-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions", - "/de/enterprise/2.17/articles/about-github-actions", - "/de/enterprise/2.17/user/articles/about-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/about-github-actions", - "/de/enterprise/2.17/actions/getting-started-with-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/about-github-actions", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/overview", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.17/user/articles/migrating-github-actions-from-hcl-syntax-to-yaml-syntax", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/configuring-a-workflow", - "/de/enterprise/2.17/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.17/user/articles/creating-a-workflow-with-github-actions", - "/de/enterprise/2.17/articles/configuring-a-workflow", - "/de/enterprise/2.17/user/articles/configuring-a-workflow", - "/de/enterprise/2.17/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.17/user/github/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.17/user/automatisieren-ihren-workflow-mit-github-aktionen/configuring-a-workflow", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/configuring-a-workflow", - "/de/enterprise/2.17/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.17/user/actions/creating-workflows/workflow-configuration-options", - "/de/enterprise/2.17/articles/configuring-workflows", - "/de/enterprise/2.17/user/articles/configuring-workflows", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/configuring-workflows", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/getting-started-with-github-actions", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows", - "/de/enterprise/2.17/articles/getting-started-with-github-actions", - "/de/enterprise/2.17/user/articles/getting-started-with-github-actions", - "/de/enterprise/2.17/actions/migrating-to-github-actions", - "/de/enterprise/2.17/user/actions/migrating-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/introduction-to-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/introduction-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/introduction-to-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/introduction-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/introduction-to-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/introduction-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/introduction-to-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/introduction-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/introduction-to-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/core-concepts-for-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/introduction-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/managing-complex-workflows", - "/de/enterprise/2.13/actions/learn-github-actions/managing-complex-workflows" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/managing-complex-workflows", - "/de/enterprise/2.14/actions/learn-github-actions/managing-complex-workflows" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/managing-complex-workflows", - "/de/enterprise/2.15/actions/learn-github-actions/managing-complex-workflows" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/managing-complex-workflows", - "/de/enterprise/2.16/actions/learn-github-actions/managing-complex-workflows" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/managing-complex-workflows", - "/de/enterprise/2.17/actions/learn-github-actions/managing-complex-workflows" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.13/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.13/user/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.14/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.14/user/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.15/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.15/user/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.16/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.16/user/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.17/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.17/user/actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/migrating-from-azure-pipelines-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.13/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.13/user/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/migrating-from-circleci-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.14/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.14/user/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/migrating-from-circleci-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.15/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.15/user/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/migrating-from-circleci-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.16/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.16/user/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/migrating-from-circleci-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.17/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.17/user/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/migrating-from-circleci-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/migrating-from-gitlab-cicd-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.13/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.13/user/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/migrating-from-jenkins-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.14/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.14/user/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/migrating-from-jenkins-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.15/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.15/user/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/migrating-from-jenkins-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.16/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.16/user/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/migrating-from-jenkins-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.17/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.17/user/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/migrating-from-jenkins-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.13/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.13/user/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.14/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.14/user/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.15/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.15/user/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.16/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.16/user/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.17/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.17/user/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/migrating-from-travis-ci-to-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.13/actions/learn-github-actions/security-hardening-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.14/actions/learn-github-actions/security-hardening-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.15/actions/learn-github-actions/security-hardening-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.16/actions/learn-github-actions/security-hardening-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/security-hardening-for-github-actions", - "/de/enterprise/2.17/actions/learn-github-actions/security-hardening-for-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/learn-github-actions/sharing-workflows-with-your-organization", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.13/actions/learn-github-actions/sharing-workflows-with-your-organization" - ], - [ - "/de/enterprise/2.14/user/actions/learn-github-actions/sharing-workflows-with-your-organization", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.14/actions/learn-github-actions/sharing-workflows-with-your-organization" - ], - [ - "/de/enterprise/2.15/user/actions/learn-github-actions/sharing-workflows-with-your-organization", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.15/actions/learn-github-actions/sharing-workflows-with-your-organization" - ], - [ - "/de/enterprise/2.16/user/actions/learn-github-actions/sharing-workflows-with-your-organization", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.16/actions/learn-github-actions/sharing-workflows-with-your-organization" - ], - [ - "/de/enterprise/2.17/user/actions/learn-github-actions/sharing-workflows-with-your-organization", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization", - "/de/enterprise/2.17/actions/learn-github-actions/sharing-workflows-with-your-organization" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/adding-a-workflow-status-badge", - "/de/enterprise/2.13/actions/managing-workflow-runs/adding-a-workflow-status-badge" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/adding-a-workflow-status-badge", - "/de/enterprise/2.14/actions/managing-workflow-runs/adding-a-workflow-status-badge" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/adding-a-workflow-status-badge", - "/de/enterprise/2.15/actions/managing-workflow-runs/adding-a-workflow-status-badge" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/adding-a-workflow-status-badge", - "/de/enterprise/2.16/actions/managing-workflow-runs/adding-a-workflow-status-badge" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/adding-a-workflow-status-badge", - "/de/enterprise/2.17/actions/managing-workflow-runs/adding-a-workflow-status-badge" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/canceling-a-workflow", - "/de/enterprise/2.13/actions/managing-workflow-runs/canceling-a-workflow" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/canceling-a-workflow", - "/de/enterprise/2.14/actions/managing-workflow-runs/canceling-a-workflow" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/canceling-a-workflow", - "/de/enterprise/2.15/actions/managing-workflow-runs/canceling-a-workflow" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/canceling-a-workflow", - "/de/enterprise/2.16/actions/managing-workflow-runs/canceling-a-workflow" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/canceling-a-workflow", - "/de/enterprise/2.17/actions/managing-workflow-runs/canceling-a-workflow" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/deleting-a-workflow-run", - "/de/enterprise/2.13/actions/managing-workflow-runs/deleting-a-workflow-run" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/deleting-a-workflow-run", - "/de/enterprise/2.14/actions/managing-workflow-runs/deleting-a-workflow-run" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/deleting-a-workflow-run", - "/de/enterprise/2.15/actions/managing-workflow-runs/deleting-a-workflow-run" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/deleting-a-workflow-run", - "/de/enterprise/2.16/actions/managing-workflow-runs/deleting-a-workflow-run" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/deleting-a-workflow-run", - "/de/enterprise/2.17/actions/managing-workflow-runs/deleting-a-workflow-run" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/downloading-workflow-artifacts", - "/de/enterprise/2.13/actions/managing-workflow-runs/downloading-workflow-artifacts" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/downloading-workflow-artifacts", - "/de/enterprise/2.14/actions/managing-workflow-runs/downloading-workflow-artifacts" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/downloading-workflow-artifacts", - "/de/enterprise/2.15/actions/managing-workflow-runs/downloading-workflow-artifacts" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/downloading-workflow-artifacts", - "/de/enterprise/2.16/actions/managing-workflow-runs/downloading-workflow-artifacts" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/downloading-workflow-artifacts", - "/de/enterprise/2.17/actions/managing-workflow-runs/downloading-workflow-artifacts" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/enabling-debug-logging", - "/de/enterprise/2.13/actions/managing-workflow-runs/enabling-debug-logging" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/enabling-debug-logging", - "/de/enterprise/2.14/actions/managing-workflow-runs/enabling-debug-logging" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/enabling-debug-logging", - "/de/enterprise/2.15/actions/managing-workflow-runs/enabling-debug-logging" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/enabling-debug-logging", - "/de/enterprise/2.16/actions/managing-workflow-runs/enabling-debug-logging" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/enabling-debug-logging", - "/de/enterprise/2.17/actions/managing-workflow-runs/enabling-debug-logging" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.13/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.13/user/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.13/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.13/user/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.13/articles/managing-a-workflow-run", - "/de/enterprise/2.13/user/articles/managing-a-workflow-run", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.13/actions/managing-workflow-runs" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.14/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.14/user/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.14/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.14/user/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.14/articles/managing-a-workflow-run", - "/de/enterprise/2.14/user/articles/managing-a-workflow-run", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.14/actions/managing-workflow-runs" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.15/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.15/user/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.15/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.15/user/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.15/articles/managing-a-workflow-run", - "/de/enterprise/2.15/user/articles/managing-a-workflow-run", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.15/actions/managing-workflow-runs" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.16/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.16/user/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.16/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.16/user/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.16/articles/managing-a-workflow-run", - "/de/enterprise/2.16/user/articles/managing-a-workflow-run", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.16/actions/managing-workflow-runs" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/managing-a-workflow-run", - "/de/enterprise/2.17/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.17/user/articles/viewing-your-repository-s-workflows", - "/de/enterprise/2.17/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.17/user/articles/viewing-your-repositorys-workflows", - "/de/enterprise/2.17/articles/managing-a-workflow-run", - "/de/enterprise/2.17/user/articles/managing-a-workflow-run", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/configuring-and-managing-workflow-files-and-runs", - "/de/enterprise/2.17/actions/managing-workflow-runs" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/manually-running-a-workflow", - "/de/enterprise/2.13/actions/managing-workflow-runs/manually-running-a-workflow" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/manually-running-a-workflow", - "/de/enterprise/2.14/actions/managing-workflow-runs/manually-running-a-workflow" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/manually-running-a-workflow", - "/de/enterprise/2.15/actions/managing-workflow-runs/manually-running-a-workflow" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/manually-running-a-workflow", - "/de/enterprise/2.16/actions/managing-workflow-runs/manually-running-a-workflow" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/manually-running-a-workflow", - "/de/enterprise/2.17/actions/managing-workflow-runs/manually-running-a-workflow" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/re-running-a-workflow", - "/de/enterprise/2.13/actions/managing-workflow-runs/re-running-a-workflow" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/re-running-a-workflow", - "/de/enterprise/2.14/actions/managing-workflow-runs/re-running-a-workflow" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/re-running-a-workflow", - "/de/enterprise/2.15/actions/managing-workflow-runs/re-running-a-workflow" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/re-running-a-workflow", - "/de/enterprise/2.16/actions/managing-workflow-runs/re-running-a-workflow" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/re-running-a-workflow", - "/de/enterprise/2.17/actions/managing-workflow-runs/re-running-a-workflow" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/removing-workflow-artifacts", - "/de/enterprise/2.13/actions/managing-workflow-runs/removing-workflow-artifacts" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/removing-workflow-artifacts", - "/de/enterprise/2.14/actions/managing-workflow-runs/removing-workflow-artifacts" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/removing-workflow-artifacts", - "/de/enterprise/2.15/actions/managing-workflow-runs/removing-workflow-artifacts" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/removing-workflow-artifacts", - "/de/enterprise/2.16/actions/managing-workflow-runs/removing-workflow-artifacts" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/removing-workflow-artifacts", - "/de/enterprise/2.17/actions/managing-workflow-runs/removing-workflow-artifacts" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/using-workflow-run-logs", - "/de/enterprise/2.13/actions/managing-workflow-runs/using-workflow-run-logs" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/using-workflow-run-logs", - "/de/enterprise/2.14/actions/managing-workflow-runs/using-workflow-run-logs" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/using-workflow-run-logs", - "/de/enterprise/2.15/actions/managing-workflow-runs/using-workflow-run-logs" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/using-workflow-run-logs", - "/de/enterprise/2.16/actions/managing-workflow-runs/using-workflow-run-logs" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/using-workflow-run-logs", - "/de/enterprise/2.17/actions/managing-workflow-runs/using-workflow-run-logs" - ], - [ - "/de/enterprise/2.13/user/actions/managing-workflow-runs/viewing-workflow-run-history", - "/de/enterprise/2.13/actions/managing-workflow-runs/viewing-workflow-run-history" - ], - [ - "/de/enterprise/2.14/user/actions/managing-workflow-runs/viewing-workflow-run-history", - "/de/enterprise/2.14/actions/managing-workflow-runs/viewing-workflow-run-history" - ], - [ - "/de/enterprise/2.15/user/actions/managing-workflow-runs/viewing-workflow-run-history", - "/de/enterprise/2.15/actions/managing-workflow-runs/viewing-workflow-run-history" - ], - [ - "/de/enterprise/2.16/user/actions/managing-workflow-runs/viewing-workflow-run-history", - "/de/enterprise/2.16/actions/managing-workflow-runs/viewing-workflow-run-history" - ], - [ - "/de/enterprise/2.17/user/actions/managing-workflow-runs/viewing-workflow-run-history", - "/de/enterprise/2.17/actions/managing-workflow-runs/viewing-workflow-run-history" - ], - [ - "/de/enterprise/2.13/user/actions/quickstart", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.13/actions/quickstart" - ], - [ - "/de/enterprise/2.14/user/actions/quickstart", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.14/actions/quickstart" - ], - [ - "/de/enterprise/2.15/user/actions/quickstart", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.15/actions/quickstart" - ], - [ - "/de/enterprise/2.16/user/actions/quickstart", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.16/actions/quickstart" - ], - [ - "/de/enterprise/2.17/user/actions/quickstart", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates", - "/de/enterprise/2.17/actions/quickstart" - ], - [ - "/de/enterprise/2.13/user/actions/reference/authentication-in-a-workflow", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.13/actions/reference/authentication-in-a-workflow" - ], - [ - "/de/enterprise/2.14/user/actions/reference/authentication-in-a-workflow", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.14/actions/reference/authentication-in-a-workflow" - ], - [ - "/de/enterprise/2.15/user/actions/reference/authentication-in-a-workflow", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.15/actions/reference/authentication-in-a-workflow" - ], - [ - "/de/enterprise/2.16/user/actions/reference/authentication-in-a-workflow", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.16/actions/reference/authentication-in-a-workflow" - ], - [ - "/de/enterprise/2.17/user/actions/reference/authentication-in-a-workflow", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/authenticating-with-the-github_token", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/authenticating-with-the-github_token", - "/de/enterprise/2.17/actions/reference/authentication-in-a-workflow" - ], - [ - "/de/enterprise/2.13/user/actions/reference/context-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/user/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/user/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.13/actions/reference/context-and-expression-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/reference/context-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/user/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/user/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.14/actions/reference/context-and-expression-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/reference/context-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/user/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/user/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.15/actions/reference/context-and-expression-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/reference/context-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/user/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/user/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.16/actions/reference/context-and-expression-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/reference/context-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/user/articles/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/user/actions/reference/contexts-and-expression-syntax-for-github-actions", - "/de/enterprise/2.17/actions/reference/context-and-expression-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/reference/encrypted-secrets", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.13/actions/reference/encrypted-secrets" - ], - [ - "/de/enterprise/2.14/user/actions/reference/encrypted-secrets", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.14/actions/reference/encrypted-secrets" - ], - [ - "/de/enterprise/2.15/user/actions/reference/encrypted-secrets", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.15/actions/reference/encrypted-secrets" - ], - [ - "/de/enterprise/2.16/user/actions/reference/encrypted-secrets", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.16/actions/reference/encrypted-secrets" - ], - [ - "/de/enterprise/2.17/user/actions/reference/encrypted-secrets", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets", - "/de/enterprise/2.17/actions/reference/encrypted-secrets" - ], - [ - "/de/enterprise/2.13/user/actions/reference/environment-variables", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.13/actions/reference/environment-variables" - ], - [ - "/de/enterprise/2.14/user/actions/reference/environment-variables", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.14/actions/reference/environment-variables" - ], - [ - "/de/enterprise/2.15/user/actions/reference/environment-variables", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.15/actions/reference/environment-variables" - ], - [ - "/de/enterprise/2.16/user/actions/reference/environment-variables", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.16/actions/reference/environment-variables" - ], - [ - "/de/enterprise/2.17/user/actions/reference/environment-variables", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/using-environment-variables", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/using-environment-variables", - "/de/enterprise/2.17/actions/reference/environment-variables" - ], - [ - "/de/enterprise/2.13/user/actions/reference/events-that-trigger-workflows", - "/de/enterprise/2.13/articles/events-that-trigger-workflows", - "/de/enterprise/2.13/user/articles/events-that-trigger-workflows", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.13/actions/reference/events-that-trigger-workflows" - ], - [ - "/de/enterprise/2.14/user/actions/reference/events-that-trigger-workflows", - "/de/enterprise/2.14/articles/events-that-trigger-workflows", - "/de/enterprise/2.14/user/articles/events-that-trigger-workflows", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.14/actions/reference/events-that-trigger-workflows" - ], - [ - "/de/enterprise/2.15/user/actions/reference/events-that-trigger-workflows", - "/de/enterprise/2.15/articles/events-that-trigger-workflows", - "/de/enterprise/2.15/user/articles/events-that-trigger-workflows", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.15/actions/reference/events-that-trigger-workflows" - ], - [ - "/de/enterprise/2.16/user/actions/reference/events-that-trigger-workflows", - "/de/enterprise/2.16/articles/events-that-trigger-workflows", - "/de/enterprise/2.16/user/articles/events-that-trigger-workflows", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.16/actions/reference/events-that-trigger-workflows" - ], - [ - "/de/enterprise/2.17/user/actions/reference/events-that-trigger-workflows", - "/de/enterprise/2.17/articles/events-that-trigger-workflows", - "/de/enterprise/2.17/user/articles/events-that-trigger-workflows", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows", - "/de/enterprise/2.17/actions/reference/events-that-trigger-workflows" - ], - [ - "/de/enterprise/2.13/user/actions/reference", - "/de/enterprise/2.13/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.13/user/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.13/actions/reference" - ], - [ - "/de/enterprise/2.14/user/actions/reference", - "/de/enterprise/2.14/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.14/user/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.14/actions/reference" - ], - [ - "/de/enterprise/2.15/user/actions/reference", - "/de/enterprise/2.15/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.15/user/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.15/actions/reference" - ], - [ - "/de/enterprise/2.16/user/actions/reference", - "/de/enterprise/2.16/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.16/user/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.16/actions/reference" - ], - [ - "/de/enterprise/2.17/user/actions/reference", - "/de/enterprise/2.17/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.17/user/actions/configuring-and-managing-workflows/using-variables-and-secrets-in-a-workflow", - "/de/enterprise/2.17/actions/reference" - ], - [ - "/de/enterprise/2.13/user/actions/reference/specifications-for-github-hosted-runners", - "/de/enterprise/2.13/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.13/user/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/user/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.13/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.13/user/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.13/actions/reference/specifications-for-github-hosted-runners" - ], - [ - "/de/enterprise/2.14/user/actions/reference/specifications-for-github-hosted-runners", - "/de/enterprise/2.14/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.14/user/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/user/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.14/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.14/user/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.14/actions/reference/specifications-for-github-hosted-runners" - ], - [ - "/de/enterprise/2.15/user/actions/reference/specifications-for-github-hosted-runners", - "/de/enterprise/2.15/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.15/user/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/user/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.15/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.15/user/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.15/actions/reference/specifications-for-github-hosted-runners" - ], - [ - "/de/enterprise/2.16/user/actions/reference/specifications-for-github-hosted-runners", - "/de/enterprise/2.16/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.16/user/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/user/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.16/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.16/user/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.16/actions/reference/specifications-for-github-hosted-runners" - ], - [ - "/de/enterprise/2.17/user/actions/reference/specifications-for-github-hosted-runners", - "/de/enterprise/2.17/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.17/user/articles/virtual-environments-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/user/actions/reference/virtual-environments-for-github-hosted-runners", - "/de/enterprise/2.17/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.17/user/actions/reference/software-installed-on-github-hosted-runners", - "/de/enterprise/2.17/actions/reference/specifications-for-github-hosted-runners" - ], - [ - "/de/enterprise/2.13/user/actions/reference/usage-limits-billing-and-administration", - "/de/enterprise/2.13/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.13/user/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.13/actions/reference/usage-limits-billing-and-administration" - ], - [ - "/de/enterprise/2.14/user/actions/reference/usage-limits-billing-and-administration", - "/de/enterprise/2.14/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.14/user/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.14/actions/reference/usage-limits-billing-and-administration" - ], - [ - "/de/enterprise/2.15/user/actions/reference/usage-limits-billing-and-administration", - "/de/enterprise/2.15/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.15/user/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.15/actions/reference/usage-limits-billing-and-administration" - ], - [ - "/de/enterprise/2.16/user/actions/reference/usage-limits-billing-and-administration", - "/de/enterprise/2.16/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.16/user/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.16/actions/reference/usage-limits-billing-and-administration" - ], - [ - "/de/enterprise/2.17/user/actions/reference/usage-limits-billing-and-administration", - "/de/enterprise/2.17/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.17/user/actions/getting-started-with-github-actions/usage-and-billing-information-for-github-actions", - "/de/enterprise/2.17/actions/reference/usage-limits-billing-and-administration" - ], - [ - "/de/enterprise/2.13/user/actions/reference/workflow-commands-for-github-actions", - "/de/enterprise/2.13/articles/development-tools-for-github-actions", - "/de/enterprise/2.13/user/articles/development-tools-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.13/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.13/user/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.13/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.13/user/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.13/actions/reference/workflow-commands-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/reference/workflow-commands-for-github-actions", - "/de/enterprise/2.14/articles/development-tools-for-github-actions", - "/de/enterprise/2.14/user/articles/development-tools-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.14/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.14/user/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.14/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.14/user/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.14/actions/reference/workflow-commands-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/reference/workflow-commands-for-github-actions", - "/de/enterprise/2.15/articles/development-tools-for-github-actions", - "/de/enterprise/2.15/user/articles/development-tools-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.15/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.15/user/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.15/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.15/user/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.15/actions/reference/workflow-commands-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/reference/workflow-commands-for-github-actions", - "/de/enterprise/2.16/articles/development-tools-for-github-actions", - "/de/enterprise/2.16/user/articles/development-tools-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.16/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.16/user/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.16/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.16/user/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.16/actions/reference/workflow-commands-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/reference/workflow-commands-for-github-actions", - "/de/enterprise/2.17/articles/development-tools-for-github-actions", - "/de/enterprise/2.17/user/articles/development-tools-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions", - "/de/enterprise/2.17/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.17/user/actions/reference/development-tools-for-github-actions", - "/de/enterprise/2.17/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.17/user/actions/reference/logging-commands-for-github-actions", - "/de/enterprise/2.17/actions/reference/workflow-commands-for-github-actions" - ], - [ - "/de/enterprise/2.13/user/actions/reference/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/user/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/user/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/user/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/user/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.13/actions/reference/workflow-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.14/user/actions/reference/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/user/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/user/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/user/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/user/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.14/actions/reference/workflow-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.15/user/actions/reference/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/user/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/user/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/user/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/user/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.15/actions/reference/workflow-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.16/user/actions/reference/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/user/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/user/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/user/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/user/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.16/actions/reference/workflow-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.17/user/actions/reference/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/user/articles/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/user/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/user/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/user/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions", - "/de/enterprise/2.17/actions/reference/workflow-syntax-for-github-actions" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.13/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.13/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.13/admin/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.14/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.14/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.14/admin/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.15/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.15/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.15/admin/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.16/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.16/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.16/admin/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.17/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.17/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.17/admin/authentication/allowing-built-in-authentication-for-users-outside-your-identity-provider" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/categories/authentication", - "/de/enterprise/2.13/admin/guides/categories/authentication", - "/de/enterprise/2.13/admin/guides/installation/user-authentication", - "/de/enterprise/2.13/admin/articles/inviting-users", - "/de/enterprise/2.13/admin/guides/articles/inviting-users", - "/de/enterprise/2.13/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance", - "/de/enterprise/2.13/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/categories/authentication", - "/de/enterprise/2.14/admin/guides/categories/authentication", - "/de/enterprise/2.14/admin/guides/installation/user-authentication", - "/de/enterprise/2.14/admin/articles/inviting-users", - "/de/enterprise/2.14/admin/guides/articles/inviting-users", - "/de/enterprise/2.14/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance", - "/de/enterprise/2.14/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/categories/authentication", - "/de/enterprise/2.15/admin/guides/categories/authentication", - "/de/enterprise/2.15/admin/guides/installation/user-authentication", - "/de/enterprise/2.15/admin/articles/inviting-users", - "/de/enterprise/2.15/admin/guides/articles/inviting-users", - "/de/enterprise/2.15/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance", - "/de/enterprise/2.15/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/categories/authentication", - "/de/enterprise/2.16/admin/guides/categories/authentication", - "/de/enterprise/2.16/admin/guides/installation/user-authentication", - "/de/enterprise/2.16/admin/articles/inviting-users", - "/de/enterprise/2.16/admin/guides/articles/inviting-users", - "/de/enterprise/2.16/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance", - "/de/enterprise/2.16/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/categories/authentication", - "/de/enterprise/2.17/admin/guides/categories/authentication", - "/de/enterprise/2.17/admin/guides/installation/user-authentication", - "/de/enterprise/2.17/admin/articles/inviting-users", - "/de/enterprise/2.17/admin/guides/articles/inviting-users", - "/de/enterprise/2.17/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance", - "/de/enterprise/2.17/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/changing-authentication-methods", - "/de/enterprise/2.13/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.13/admin/guides/user-management/changing-authentication-methods", - "/de/enterprise/2.13/admin/authentication/changing-authentication-methods" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/changing-authentication-methods", - "/de/enterprise/2.14/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.14/admin/guides/user-management/changing-authentication-methods", - "/de/enterprise/2.14/admin/authentication/changing-authentication-methods" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/changing-authentication-methods", - "/de/enterprise/2.15/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.15/admin/guides/user-management/changing-authentication-methods", - "/de/enterprise/2.15/admin/authentication/changing-authentication-methods" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/changing-authentication-methods", - "/de/enterprise/2.16/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.16/admin/guides/user-management/changing-authentication-methods", - "/de/enterprise/2.16/admin/authentication/changing-authentication-methods" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/changing-authentication-methods", - "/de/enterprise/2.17/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.17/admin/guides/user-management/changing-authentication-methods", - "/de/enterprise/2.17/admin/authentication/changing-authentication-methods" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.13/admin/articles/disabling-sign-ups", - "/de/enterprise/2.13/admin/guides/articles/disabling-sign-ups", - "/de/enterprise/2.13/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.13/admin/guides/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.13/admin/authentication/disabling-unauthenticated-sign-ups" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.14/admin/articles/disabling-sign-ups", - "/de/enterprise/2.14/admin/guides/articles/disabling-sign-ups", - "/de/enterprise/2.14/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.14/admin/guides/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.14/admin/authentication/disabling-unauthenticated-sign-ups" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.15/admin/articles/disabling-sign-ups", - "/de/enterprise/2.15/admin/guides/articles/disabling-sign-ups", - "/de/enterprise/2.15/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.15/admin/guides/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.15/admin/authentication/disabling-unauthenticated-sign-ups" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.16/admin/articles/disabling-sign-ups", - "/de/enterprise/2.16/admin/guides/articles/disabling-sign-ups", - "/de/enterprise/2.16/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.16/admin/guides/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.16/admin/authentication/disabling-unauthenticated-sign-ups" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.17/admin/articles/disabling-sign-ups", - "/de/enterprise/2.17/admin/guides/articles/disabling-sign-ups", - "/de/enterprise/2.17/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.17/admin/guides/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.17/admin/authentication/disabling-unauthenticated-sign-ups" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication", - "/de/enterprise/2.13/admin/authentication" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication", - "/de/enterprise/2.14/admin/authentication" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication", - "/de/enterprise/2.15/admin/authentication" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication", - "/de/enterprise/2.16/admin/authentication" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication", - "/de/enterprise/2.17/admin/authentication" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/using-built-in-authentication", - "/de/enterprise/2.13/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.13/admin/guides/user-management/using-built-in-authentication", - "/de/enterprise/2.13/admin/authentication/using-built-in-authentication" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/using-built-in-authentication", - "/de/enterprise/2.14/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.14/admin/guides/user-management/using-built-in-authentication", - "/de/enterprise/2.14/admin/authentication/using-built-in-authentication" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/using-built-in-authentication", - "/de/enterprise/2.15/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.15/admin/guides/user-management/using-built-in-authentication", - "/de/enterprise/2.15/admin/authentication/using-built-in-authentication" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/using-built-in-authentication", - "/de/enterprise/2.16/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.16/admin/guides/user-management/using-built-in-authentication", - "/de/enterprise/2.16/admin/authentication/using-built-in-authentication" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/using-built-in-authentication", - "/de/enterprise/2.17/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.17/admin/guides/user-management/using-built-in-authentication", - "/de/enterprise/2.17/admin/authentication/using-built-in-authentication" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/using-cas", - "/de/enterprise/2.13/admin/articles/configuring-cas-authentication", - "/de/enterprise/2.13/admin/guides/articles/configuring-cas-authentication", - "/de/enterprise/2.13/admin/articles/about-cas-authentication", - "/de/enterprise/2.13/admin/guides/articles/about-cas-authentication", - "/de/enterprise/2.13/admin/user-management/using-cas", - "/de/enterprise/2.13/admin/guides/user-management/using-cas", - "/de/enterprise/2.13/admin/authentication/using-cas" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/using-cas", - "/de/enterprise/2.14/admin/articles/configuring-cas-authentication", - "/de/enterprise/2.14/admin/guides/articles/configuring-cas-authentication", - "/de/enterprise/2.14/admin/articles/about-cas-authentication", - "/de/enterprise/2.14/admin/guides/articles/about-cas-authentication", - "/de/enterprise/2.14/admin/user-management/using-cas", - "/de/enterprise/2.14/admin/guides/user-management/using-cas", - "/de/enterprise/2.14/admin/authentication/using-cas" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/using-cas", - "/de/enterprise/2.15/admin/articles/configuring-cas-authentication", - "/de/enterprise/2.15/admin/guides/articles/configuring-cas-authentication", - "/de/enterprise/2.15/admin/articles/about-cas-authentication", - "/de/enterprise/2.15/admin/guides/articles/about-cas-authentication", - "/de/enterprise/2.15/admin/user-management/using-cas", - "/de/enterprise/2.15/admin/guides/user-management/using-cas", - "/de/enterprise/2.15/admin/authentication/using-cas" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/using-cas", - "/de/enterprise/2.16/admin/articles/configuring-cas-authentication", - "/de/enterprise/2.16/admin/guides/articles/configuring-cas-authentication", - "/de/enterprise/2.16/admin/articles/about-cas-authentication", - "/de/enterprise/2.16/admin/guides/articles/about-cas-authentication", - "/de/enterprise/2.16/admin/user-management/using-cas", - "/de/enterprise/2.16/admin/guides/user-management/using-cas", - "/de/enterprise/2.16/admin/authentication/using-cas" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/using-cas", - "/de/enterprise/2.17/admin/articles/configuring-cas-authentication", - "/de/enterprise/2.17/admin/guides/articles/configuring-cas-authentication", - "/de/enterprise/2.17/admin/articles/about-cas-authentication", - "/de/enterprise/2.17/admin/guides/articles/about-cas-authentication", - "/de/enterprise/2.17/admin/user-management/using-cas", - "/de/enterprise/2.17/admin/guides/user-management/using-cas", - "/de/enterprise/2.17/admin/authentication/using-cas" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/using-ldap", - "/de/enterprise/2.13/admin/articles/configuring-ldap-authentication", - "/de/enterprise/2.13/admin/guides/articles/configuring-ldap-authentication", - "/de/enterprise/2.13/admin/articles/about-ldap-authentication", - "/de/enterprise/2.13/admin/guides/articles/about-ldap-authentication", - "/de/enterprise/2.13/admin/articles/viewing-ldap-users", - "/de/enterprise/2.13/admin/guides/articles/viewing-ldap-users", - "/de/enterprise/2.13/admin/hidden/enabling-ldap-sync", - "/de/enterprise/2.13/admin/guides/hidden/enabling-ldap-sync", - "/de/enterprise/2.13/admin/hidden/ldap-sync", - "/de/enterprise/2.13/admin/guides/hidden/ldap-sync", - "/de/enterprise/2.13/admin/user-management/using-ldap", - "/de/enterprise/2.13/admin/guides/user-management/using-ldap", - "/de/enterprise/2.13/admin/authentication/using-ldap" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/using-ldap", - "/de/enterprise/2.14/admin/articles/configuring-ldap-authentication", - "/de/enterprise/2.14/admin/guides/articles/configuring-ldap-authentication", - "/de/enterprise/2.14/admin/articles/about-ldap-authentication", - "/de/enterprise/2.14/admin/guides/articles/about-ldap-authentication", - "/de/enterprise/2.14/admin/articles/viewing-ldap-users", - "/de/enterprise/2.14/admin/guides/articles/viewing-ldap-users", - "/de/enterprise/2.14/admin/hidden/enabling-ldap-sync", - "/de/enterprise/2.14/admin/guides/hidden/enabling-ldap-sync", - "/de/enterprise/2.14/admin/hidden/ldap-sync", - "/de/enterprise/2.14/admin/guides/hidden/ldap-sync", - "/de/enterprise/2.14/admin/user-management/using-ldap", - "/de/enterprise/2.14/admin/guides/user-management/using-ldap", - "/de/enterprise/2.14/admin/authentication/using-ldap" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/using-ldap", - "/de/enterprise/2.15/admin/articles/configuring-ldap-authentication", - "/de/enterprise/2.15/admin/guides/articles/configuring-ldap-authentication", - "/de/enterprise/2.15/admin/articles/about-ldap-authentication", - "/de/enterprise/2.15/admin/guides/articles/about-ldap-authentication", - "/de/enterprise/2.15/admin/articles/viewing-ldap-users", - "/de/enterprise/2.15/admin/guides/articles/viewing-ldap-users", - "/de/enterprise/2.15/admin/hidden/enabling-ldap-sync", - "/de/enterprise/2.15/admin/guides/hidden/enabling-ldap-sync", - "/de/enterprise/2.15/admin/hidden/ldap-sync", - "/de/enterprise/2.15/admin/guides/hidden/ldap-sync", - "/de/enterprise/2.15/admin/user-management/using-ldap", - "/de/enterprise/2.15/admin/guides/user-management/using-ldap", - "/de/enterprise/2.15/admin/authentication/using-ldap" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/using-ldap", - "/de/enterprise/2.16/admin/articles/configuring-ldap-authentication", - "/de/enterprise/2.16/admin/guides/articles/configuring-ldap-authentication", - "/de/enterprise/2.16/admin/articles/about-ldap-authentication", - "/de/enterprise/2.16/admin/guides/articles/about-ldap-authentication", - "/de/enterprise/2.16/admin/articles/viewing-ldap-users", - "/de/enterprise/2.16/admin/guides/articles/viewing-ldap-users", - "/de/enterprise/2.16/admin/hidden/enabling-ldap-sync", - "/de/enterprise/2.16/admin/guides/hidden/enabling-ldap-sync", - "/de/enterprise/2.16/admin/hidden/ldap-sync", - "/de/enterprise/2.16/admin/guides/hidden/ldap-sync", - "/de/enterprise/2.16/admin/user-management/using-ldap", - "/de/enterprise/2.16/admin/guides/user-management/using-ldap", - "/de/enterprise/2.16/admin/authentication/using-ldap" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/using-ldap", - "/de/enterprise/2.17/admin/articles/configuring-ldap-authentication", - "/de/enterprise/2.17/admin/guides/articles/configuring-ldap-authentication", - "/de/enterprise/2.17/admin/articles/about-ldap-authentication", - "/de/enterprise/2.17/admin/guides/articles/about-ldap-authentication", - "/de/enterprise/2.17/admin/articles/viewing-ldap-users", - "/de/enterprise/2.17/admin/guides/articles/viewing-ldap-users", - "/de/enterprise/2.17/admin/hidden/enabling-ldap-sync", - "/de/enterprise/2.17/admin/guides/hidden/enabling-ldap-sync", - "/de/enterprise/2.17/admin/hidden/ldap-sync", - "/de/enterprise/2.17/admin/guides/hidden/ldap-sync", - "/de/enterprise/2.17/admin/user-management/using-ldap", - "/de/enterprise/2.17/admin/guides/user-management/using-ldap", - "/de/enterprise/2.17/admin/authentication/using-ldap" - ], - [ - "/de/enterprise/2.13/admin/guides/authentication/using-saml", - "/de/enterprise/2.13/admin/articles/configuring-saml-authentication", - "/de/enterprise/2.13/admin/guides/articles/configuring-saml-authentication", - "/de/enterprise/2.13/admin/articles/about-saml-authentication", - "/de/enterprise/2.13/admin/guides/articles/about-saml-authentication", - "/de/enterprise/2.13/admin/user-management/using-saml", - "/de/enterprise/2.13/admin/guides/user-management/using-saml", - "/de/enterprise/2.13/admin/authentication/using-saml" - ], - [ - "/de/enterprise/2.14/admin/guides/authentication/using-saml", - "/de/enterprise/2.14/admin/articles/configuring-saml-authentication", - "/de/enterprise/2.14/admin/guides/articles/configuring-saml-authentication", - "/de/enterprise/2.14/admin/articles/about-saml-authentication", - "/de/enterprise/2.14/admin/guides/articles/about-saml-authentication", - "/de/enterprise/2.14/admin/user-management/using-saml", - "/de/enterprise/2.14/admin/guides/user-management/using-saml", - "/de/enterprise/2.14/admin/authentication/using-saml" - ], - [ - "/de/enterprise/2.15/admin/guides/authentication/using-saml", - "/de/enterprise/2.15/admin/articles/configuring-saml-authentication", - "/de/enterprise/2.15/admin/guides/articles/configuring-saml-authentication", - "/de/enterprise/2.15/admin/articles/about-saml-authentication", - "/de/enterprise/2.15/admin/guides/articles/about-saml-authentication", - "/de/enterprise/2.15/admin/user-management/using-saml", - "/de/enterprise/2.15/admin/guides/user-management/using-saml", - "/de/enterprise/2.15/admin/authentication/using-saml" - ], - [ - "/de/enterprise/2.16/admin/guides/authentication/using-saml", - "/de/enterprise/2.16/admin/articles/configuring-saml-authentication", - "/de/enterprise/2.16/admin/guides/articles/configuring-saml-authentication", - "/de/enterprise/2.16/admin/articles/about-saml-authentication", - "/de/enterprise/2.16/admin/guides/articles/about-saml-authentication", - "/de/enterprise/2.16/admin/user-management/using-saml", - "/de/enterprise/2.16/admin/guides/user-management/using-saml", - "/de/enterprise/2.16/admin/authentication/using-saml" - ], - [ - "/de/enterprise/2.17/admin/guides/authentication/using-saml", - "/de/enterprise/2.17/admin/articles/configuring-saml-authentication", - "/de/enterprise/2.17/admin/guides/articles/configuring-saml-authentication", - "/de/enterprise/2.17/admin/articles/about-saml-authentication", - "/de/enterprise/2.17/admin/guides/articles/about-saml-authentication", - "/de/enterprise/2.17/admin/user-management/using-saml", - "/de/enterprise/2.17/admin/guides/user-management/using-saml", - "/de/enterprise/2.17/admin/authentication/using-saml" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/about-enterprise-configuration", - "/de/enterprise/2.13/admin/configuration/about-enterprise-configuration" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/about-enterprise-configuration", - "/de/enterprise/2.14/admin/configuration/about-enterprise-configuration" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/about-enterprise-configuration", - "/de/enterprise/2.15/admin/configuration/about-enterprise-configuration" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/about-enterprise-configuration", - "/de/enterprise/2.16/admin/configuration/about-enterprise-configuration" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/about-enterprise-configuration", - "/de/enterprise/2.17/admin/configuration/about-enterprise-configuration" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.13/admin/articles/ssh-access", - "/de/enterprise/2.13/admin/guides/articles/ssh-access", - "/de/enterprise/2.13/admin/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.13/admin/guides/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.13/admin/guides/installation/administrative-shell-ssh-access", - "/de/enterprise/2.13/admin/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/guides/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/guides/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/guides/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/guides/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.13/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.13/admin/guides/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.13/admin/configuration/accessing-the-administrative-shell-ssh" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.14/admin/articles/ssh-access", - "/de/enterprise/2.14/admin/guides/articles/ssh-access", - "/de/enterprise/2.14/admin/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.14/admin/guides/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.14/admin/guides/installation/administrative-shell-ssh-access", - "/de/enterprise/2.14/admin/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/guides/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/guides/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/guides/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/guides/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.14/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.14/admin/guides/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.14/admin/configuration/accessing-the-administrative-shell-ssh" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.15/admin/articles/ssh-access", - "/de/enterprise/2.15/admin/guides/articles/ssh-access", - "/de/enterprise/2.15/admin/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.15/admin/guides/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.15/admin/guides/installation/administrative-shell-ssh-access", - "/de/enterprise/2.15/admin/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/guides/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/guides/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/guides/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/guides/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.15/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.15/admin/configuration/accessing-the-administrative-shell-ssh" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.16/admin/articles/ssh-access", - "/de/enterprise/2.16/admin/guides/articles/ssh-access", - "/de/enterprise/2.16/admin/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.16/admin/guides/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.16/admin/guides/installation/administrative-shell-ssh-access", - "/de/enterprise/2.16/admin/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/guides/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/guides/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/guides/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/guides/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.16/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.16/admin/configuration/accessing-the-administrative-shell-ssh" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.17/admin/articles/ssh-access", - "/de/enterprise/2.17/admin/guides/articles/ssh-access", - "/de/enterprise/2.17/admin/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.17/admin/guides/articles/adding-an-ssh-key-for-shell-access", - "/de/enterprise/2.17/admin/guides/installation/administrative-shell-ssh-access", - "/de/enterprise/2.17/admin/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/guides/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/guides/2.13/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/guides/2.14/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/guides/2.15/articles/troubleshooting-ssh-permission-denied-publickey", - "/de/enterprise/2.17/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.17/admin/configuration/accessing-the-administrative-shell-ssh" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/accessing-the-management-console", - "/de/enterprise/2.13/admin/articles/about-the-management-console", - "/de/enterprise/2.13/admin/guides/articles/about-the-management-console", - "/de/enterprise/2.13/admin/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.13/admin/guides/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.13/admin/articles/web-based-management-console", - "/de/enterprise/2.13/admin/guides/articles/web-based-management-console", - "/de/enterprise/2.13/admin/categories/management-console", - "/de/enterprise/2.13/admin/guides/categories/management-console", - "/de/enterprise/2.13/admin/articles/accessing-the-management-console", - "/de/enterprise/2.13/admin/guides/articles/accessing-the-management-console", - "/de/enterprise/2.13/admin/guides/installation/web-based-management-console", - "/de/enterprise/2.13/admin/installation/accessing-the-management-console", - "/de/enterprise/2.13/admin/guides/installation/accessing-the-management-console", - "/de/enterprise/2.13/admin/configuration/accessing-the-management-console" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/accessing-the-management-console", - "/de/enterprise/2.14/admin/articles/about-the-management-console", - "/de/enterprise/2.14/admin/guides/articles/about-the-management-console", - "/de/enterprise/2.14/admin/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.14/admin/guides/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.14/admin/articles/web-based-management-console", - "/de/enterprise/2.14/admin/guides/articles/web-based-management-console", - "/de/enterprise/2.14/admin/categories/management-console", - "/de/enterprise/2.14/admin/guides/categories/management-console", - "/de/enterprise/2.14/admin/articles/accessing-the-management-console", - "/de/enterprise/2.14/admin/guides/articles/accessing-the-management-console", - "/de/enterprise/2.14/admin/guides/installation/web-based-management-console", - "/de/enterprise/2.14/admin/installation/accessing-the-management-console", - "/de/enterprise/2.14/admin/guides/installation/accessing-the-management-console", - "/de/enterprise/2.14/admin/configuration/accessing-the-management-console" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/accessing-the-management-console", - "/de/enterprise/2.15/admin/articles/about-the-management-console", - "/de/enterprise/2.15/admin/guides/articles/about-the-management-console", - "/de/enterprise/2.15/admin/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.15/admin/guides/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.15/admin/articles/web-based-management-console", - "/de/enterprise/2.15/admin/guides/articles/web-based-management-console", - "/de/enterprise/2.15/admin/categories/management-console", - "/de/enterprise/2.15/admin/guides/categories/management-console", - "/de/enterprise/2.15/admin/articles/accessing-the-management-console", - "/de/enterprise/2.15/admin/guides/articles/accessing-the-management-console", - "/de/enterprise/2.15/admin/guides/installation/web-based-management-console", - "/de/enterprise/2.15/admin/installation/accessing-the-management-console", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-management-console", - "/de/enterprise/2.15/admin/configuration/accessing-the-management-console" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/accessing-the-management-console", - "/de/enterprise/2.16/admin/articles/about-the-management-console", - "/de/enterprise/2.16/admin/guides/articles/about-the-management-console", - "/de/enterprise/2.16/admin/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.16/admin/guides/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.16/admin/articles/web-based-management-console", - "/de/enterprise/2.16/admin/guides/articles/web-based-management-console", - "/de/enterprise/2.16/admin/categories/management-console", - "/de/enterprise/2.16/admin/guides/categories/management-console", - "/de/enterprise/2.16/admin/articles/accessing-the-management-console", - "/de/enterprise/2.16/admin/guides/articles/accessing-the-management-console", - "/de/enterprise/2.16/admin/guides/installation/web-based-management-console", - "/de/enterprise/2.16/admin/installation/accessing-the-management-console", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-management-console", - "/de/enterprise/2.16/admin/configuration/accessing-the-management-console" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/accessing-the-management-console", - "/de/enterprise/2.17/admin/articles/about-the-management-console", - "/de/enterprise/2.17/admin/guides/articles/about-the-management-console", - "/de/enterprise/2.17/admin/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.17/admin/guides/articles/management-console-for-emergency-recovery", - "/de/enterprise/2.17/admin/articles/web-based-management-console", - "/de/enterprise/2.17/admin/guides/articles/web-based-management-console", - "/de/enterprise/2.17/admin/categories/management-console", - "/de/enterprise/2.17/admin/guides/categories/management-console", - "/de/enterprise/2.17/admin/articles/accessing-the-management-console", - "/de/enterprise/2.17/admin/guides/articles/accessing-the-management-console", - "/de/enterprise/2.17/admin/guides/installation/web-based-management-console", - "/de/enterprise/2.17/admin/installation/accessing-the-management-console", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-management-console", - "/de/enterprise/2.17/admin/configuration/accessing-the-management-console" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/command-line-utilities", - "/de/enterprise/2.13/admin/articles/viewing-all-services", - "/de/enterprise/2.13/admin/guides/articles/viewing-all-services", - "/de/enterprise/2.13/admin/articles/command-line-utilities", - "/de/enterprise/2.13/admin/guides/articles/command-line-utilities", - "/de/enterprise/2.13/admin/installation/command-line-utilities", - "/de/enterprise/2.13/admin/guides/installation/command-line-utilities", - "/de/enterprise/2.13/admin/configuration/command-line-utilities" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/command-line-utilities", - "/de/enterprise/2.14/admin/articles/viewing-all-services", - "/de/enterprise/2.14/admin/guides/articles/viewing-all-services", - "/de/enterprise/2.14/admin/articles/command-line-utilities", - "/de/enterprise/2.14/admin/guides/articles/command-line-utilities", - "/de/enterprise/2.14/admin/installation/command-line-utilities", - "/de/enterprise/2.14/admin/guides/installation/command-line-utilities", - "/de/enterprise/2.14/admin/configuration/command-line-utilities" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/command-line-utilities", - "/de/enterprise/2.15/admin/articles/viewing-all-services", - "/de/enterprise/2.15/admin/guides/articles/viewing-all-services", - "/de/enterprise/2.15/admin/articles/command-line-utilities", - "/de/enterprise/2.15/admin/guides/articles/command-line-utilities", - "/de/enterprise/2.15/admin/installation/command-line-utilities", - "/de/enterprise/2.15/admin/guides/installation/command-line-utilities", - "/de/enterprise/2.15/admin/configuration/command-line-utilities" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/command-line-utilities", - "/de/enterprise/2.16/admin/articles/viewing-all-services", - "/de/enterprise/2.16/admin/guides/articles/viewing-all-services", - "/de/enterprise/2.16/admin/articles/command-line-utilities", - "/de/enterprise/2.16/admin/guides/articles/command-line-utilities", - "/de/enterprise/2.16/admin/installation/command-line-utilities", - "/de/enterprise/2.16/admin/guides/installation/command-line-utilities", - "/de/enterprise/2.16/admin/configuration/command-line-utilities" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/command-line-utilities", - "/de/enterprise/2.17/admin/articles/viewing-all-services", - "/de/enterprise/2.17/admin/guides/articles/viewing-all-services", - "/de/enterprise/2.17/admin/articles/command-line-utilities", - "/de/enterprise/2.17/admin/guides/articles/command-line-utilities", - "/de/enterprise/2.17/admin/installation/command-line-utilities", - "/de/enterprise/2.17/admin/guides/installation/command-line-utilities", - "/de/enterprise/2.17/admin/configuration/command-line-utilities" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-a-hostname", - "/de/enterprise/2.13/admin/guides/installation/configuring-hostnames", - "/de/enterprise/2.13/admin/installation/configuring-a-hostname", - "/de/enterprise/2.13/admin/guides/installation/configuring-a-hostname", - "/de/enterprise/2.13/admin/configuration/configuring-a-hostname" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-a-hostname", - "/de/enterprise/2.14/admin/guides/installation/configuring-hostnames", - "/de/enterprise/2.14/admin/installation/configuring-a-hostname", - "/de/enterprise/2.14/admin/guides/installation/configuring-a-hostname", - "/de/enterprise/2.14/admin/configuration/configuring-a-hostname" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-a-hostname", - "/de/enterprise/2.15/admin/guides/installation/configuring-hostnames", - "/de/enterprise/2.15/admin/installation/configuring-a-hostname", - "/de/enterprise/2.15/admin/guides/installation/configuring-a-hostname", - "/de/enterprise/2.15/admin/configuration/configuring-a-hostname" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-a-hostname", - "/de/enterprise/2.16/admin/guides/installation/configuring-hostnames", - "/de/enterprise/2.16/admin/installation/configuring-a-hostname", - "/de/enterprise/2.16/admin/guides/installation/configuring-a-hostname", - "/de/enterprise/2.16/admin/configuration/configuring-a-hostname" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-a-hostname", - "/de/enterprise/2.17/admin/guides/installation/configuring-hostnames", - "/de/enterprise/2.17/admin/installation/configuring-a-hostname", - "/de/enterprise/2.17/admin/guides/installation/configuring-a-hostname", - "/de/enterprise/2.17/admin/configuration/configuring-a-hostname" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-advanced-security-features", - "/de/enterprise/2.13/admin/configuration/configuring-advanced-security-features" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-advanced-security-features", - "/de/enterprise/2.14/admin/configuration/configuring-advanced-security-features" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-advanced-security-features", - "/de/enterprise/2.15/admin/configuration/configuring-advanced-security-features" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-advanced-security-features", - "/de/enterprise/2.16/admin/configuration/configuring-advanced-security-features" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-advanced-security-features", - "/de/enterprise/2.17/admin/configuration/configuring-advanced-security-features" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.13/admin/guides/installation/configuring-a-proxy-server", - "/de/enterprise/2.13/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.13/admin/guides/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.13/admin/configuration/configuring-an-outbound-web-proxy-server" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.14/admin/guides/installation/configuring-a-proxy-server", - "/de/enterprise/2.14/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.14/admin/guides/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.14/admin/configuration/configuring-an-outbound-web-proxy-server" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-a-proxy-server", - "/de/enterprise/2.15/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.15/admin/configuration/configuring-an-outbound-web-proxy-server" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-a-proxy-server", - "/de/enterprise/2.16/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.16/admin/configuration/configuring-an-outbound-web-proxy-server" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-a-proxy-server", - "/de/enterprise/2.17/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.17/admin/configuration/configuring-an-outbound-web-proxy-server" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-applications", - "/de/enterprise/2.13/admin/installation/configuring-applications", - "/de/enterprise/2.13/admin/guides/installation/configuring-applications", - "/de/enterprise/2.13/admin/configuration/configuring-applications" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-applications", - "/de/enterprise/2.14/admin/installation/configuring-applications", - "/de/enterprise/2.14/admin/guides/installation/configuring-applications", - "/de/enterprise/2.14/admin/configuration/configuring-applications" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-applications", - "/de/enterprise/2.15/admin/installation/configuring-applications", - "/de/enterprise/2.15/admin/guides/installation/configuring-applications", - "/de/enterprise/2.15/admin/configuration/configuring-applications" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-applications", - "/de/enterprise/2.16/admin/installation/configuring-applications", - "/de/enterprise/2.16/admin/guides/installation/configuring-applications", - "/de/enterprise/2.16/admin/configuration/configuring-applications" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-applications", - "/de/enterprise/2.17/admin/installation/configuring-applications", - "/de/enterprise/2.17/admin/guides/installation/configuring-applications", - "/de/enterprise/2.17/admin/configuration/configuring-applications" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.13/admin/categories/backups-and-restores", - "/de/enterprise/2.13/admin/guides/categories/backups-and-restores", - "/de/enterprise/2.13/admin/articles/backup-and-recovery", - "/de/enterprise/2.13/admin/guides/articles/backup-and-recovery", - "/de/enterprise/2.13/admin/articles/backing-up-github-enterprise", - "/de/enterprise/2.13/admin/guides/articles/backing-up-github-enterprise", - "/de/enterprise/2.13/admin/articles/restoring-github-enterprise", - "/de/enterprise/2.13/admin/guides/articles/restoring-github-enterprise", - "/de/enterprise/2.13/admin/articles/backing-up-repository-data", - "/de/enterprise/2.13/admin/guides/articles/backing-up-repository-data", - "/de/enterprise/2.13/admin/articles/restoring-enterprise-data", - "/de/enterprise/2.13/admin/guides/articles/restoring-enterprise-data", - "/de/enterprise/2.13/admin/articles/restoring-repository-data", - "/de/enterprise/2.13/admin/guides/articles/restoring-repository-data", - "/de/enterprise/2.13/admin/articles/backing-up-enterprise-data", - "/de/enterprise/2.13/admin/guides/articles/backing-up-enterprise-data", - "/de/enterprise/2.13/admin/guides/installation/backups-and-disaster-recovery", - "/de/enterprise/2.13/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.13/admin/configuration/configuring-backups-on-your-appliance" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.14/admin/categories/backups-and-restores", - "/de/enterprise/2.14/admin/guides/categories/backups-and-restores", - "/de/enterprise/2.14/admin/articles/backup-and-recovery", - "/de/enterprise/2.14/admin/guides/articles/backup-and-recovery", - "/de/enterprise/2.14/admin/articles/backing-up-github-enterprise", - "/de/enterprise/2.14/admin/guides/articles/backing-up-github-enterprise", - "/de/enterprise/2.14/admin/articles/restoring-github-enterprise", - "/de/enterprise/2.14/admin/guides/articles/restoring-github-enterprise", - "/de/enterprise/2.14/admin/articles/backing-up-repository-data", - "/de/enterprise/2.14/admin/guides/articles/backing-up-repository-data", - "/de/enterprise/2.14/admin/articles/restoring-enterprise-data", - "/de/enterprise/2.14/admin/guides/articles/restoring-enterprise-data", - "/de/enterprise/2.14/admin/articles/restoring-repository-data", - "/de/enterprise/2.14/admin/guides/articles/restoring-repository-data", - "/de/enterprise/2.14/admin/articles/backing-up-enterprise-data", - "/de/enterprise/2.14/admin/guides/articles/backing-up-enterprise-data", - "/de/enterprise/2.14/admin/guides/installation/backups-and-disaster-recovery", - "/de/enterprise/2.14/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.14/admin/configuration/configuring-backups-on-your-appliance" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.15/admin/categories/backups-and-restores", - "/de/enterprise/2.15/admin/guides/categories/backups-and-restores", - "/de/enterprise/2.15/admin/articles/backup-and-recovery", - "/de/enterprise/2.15/admin/guides/articles/backup-and-recovery", - "/de/enterprise/2.15/admin/articles/backing-up-github-enterprise", - "/de/enterprise/2.15/admin/guides/articles/backing-up-github-enterprise", - "/de/enterprise/2.15/admin/articles/restoring-github-enterprise", - "/de/enterprise/2.15/admin/guides/articles/restoring-github-enterprise", - "/de/enterprise/2.15/admin/articles/backing-up-repository-data", - "/de/enterprise/2.15/admin/guides/articles/backing-up-repository-data", - "/de/enterprise/2.15/admin/articles/restoring-enterprise-data", - "/de/enterprise/2.15/admin/guides/articles/restoring-enterprise-data", - "/de/enterprise/2.15/admin/articles/restoring-repository-data", - "/de/enterprise/2.15/admin/guides/articles/restoring-repository-data", - "/de/enterprise/2.15/admin/articles/backing-up-enterprise-data", - "/de/enterprise/2.15/admin/guides/articles/backing-up-enterprise-data", - "/de/enterprise/2.15/admin/guides/installation/backups-and-disaster-recovery", - "/de/enterprise/2.15/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.15/admin/configuration/configuring-backups-on-your-appliance" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.16/admin/categories/backups-and-restores", - "/de/enterprise/2.16/admin/guides/categories/backups-and-restores", - "/de/enterprise/2.16/admin/articles/backup-and-recovery", - "/de/enterprise/2.16/admin/guides/articles/backup-and-recovery", - "/de/enterprise/2.16/admin/articles/backing-up-github-enterprise", - "/de/enterprise/2.16/admin/guides/articles/backing-up-github-enterprise", - "/de/enterprise/2.16/admin/articles/restoring-github-enterprise", - "/de/enterprise/2.16/admin/guides/articles/restoring-github-enterprise", - "/de/enterprise/2.16/admin/articles/backing-up-repository-data", - "/de/enterprise/2.16/admin/guides/articles/backing-up-repository-data", - "/de/enterprise/2.16/admin/articles/restoring-enterprise-data", - "/de/enterprise/2.16/admin/guides/articles/restoring-enterprise-data", - "/de/enterprise/2.16/admin/articles/restoring-repository-data", - "/de/enterprise/2.16/admin/guides/articles/restoring-repository-data", - "/de/enterprise/2.16/admin/articles/backing-up-enterprise-data", - "/de/enterprise/2.16/admin/guides/articles/backing-up-enterprise-data", - "/de/enterprise/2.16/admin/guides/installation/backups-and-disaster-recovery", - "/de/enterprise/2.16/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.16/admin/configuration/configuring-backups-on-your-appliance" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.17/admin/categories/backups-and-restores", - "/de/enterprise/2.17/admin/guides/categories/backups-and-restores", - "/de/enterprise/2.17/admin/articles/backup-and-recovery", - "/de/enterprise/2.17/admin/guides/articles/backup-and-recovery", - "/de/enterprise/2.17/admin/articles/backing-up-github-enterprise", - "/de/enterprise/2.17/admin/guides/articles/backing-up-github-enterprise", - "/de/enterprise/2.17/admin/articles/restoring-github-enterprise", - "/de/enterprise/2.17/admin/guides/articles/restoring-github-enterprise", - "/de/enterprise/2.17/admin/articles/backing-up-repository-data", - "/de/enterprise/2.17/admin/guides/articles/backing-up-repository-data", - "/de/enterprise/2.17/admin/articles/restoring-enterprise-data", - "/de/enterprise/2.17/admin/guides/articles/restoring-enterprise-data", - "/de/enterprise/2.17/admin/articles/restoring-repository-data", - "/de/enterprise/2.17/admin/guides/articles/restoring-repository-data", - "/de/enterprise/2.17/admin/articles/backing-up-enterprise-data", - "/de/enterprise/2.17/admin/guides/articles/backing-up-enterprise-data", - "/de/enterprise/2.17/admin/guides/installation/backups-and-disaster-recovery", - "/de/enterprise/2.17/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.17/admin/configuration/configuring-backups-on-your-appliance" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-built-in-firewall-rules", - "/de/enterprise/2.13/admin/guides/installation/configuring-firewall-settings", - "/de/enterprise/2.13/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.13/admin/guides/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.13/admin/configuration/configuring-built-in-firewall-rules" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-built-in-firewall-rules", - "/de/enterprise/2.14/admin/guides/installation/configuring-firewall-settings", - "/de/enterprise/2.14/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.14/admin/guides/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.14/admin/configuration/configuring-built-in-firewall-rules" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-built-in-firewall-rules", - "/de/enterprise/2.15/admin/guides/installation/configuring-firewall-settings", - "/de/enterprise/2.15/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.15/admin/guides/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.15/admin/configuration/configuring-built-in-firewall-rules" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-built-in-firewall-rules", - "/de/enterprise/2.16/admin/guides/installation/configuring-firewall-settings", - "/de/enterprise/2.16/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.16/admin/guides/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.16/admin/configuration/configuring-built-in-firewall-rules" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-built-in-firewall-rules", - "/de/enterprise/2.17/admin/guides/installation/configuring-firewall-settings", - "/de/enterprise/2.17/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.17/admin/guides/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.17/admin/configuration/configuring-built-in-firewall-rules" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-code-scanning-for-your-appliance", - "/de/enterprise/2.13/admin/configuration/configuring-code-scanning-for-your-appliance" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-code-scanning-for-your-appliance", - "/de/enterprise/2.14/admin/configuration/configuring-code-scanning-for-your-appliance" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-code-scanning-for-your-appliance", - "/de/enterprise/2.15/admin/configuration/configuring-code-scanning-for-your-appliance" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-code-scanning-for-your-appliance", - "/de/enterprise/2.16/admin/configuration/configuring-code-scanning-for-your-appliance" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-code-scanning-for-your-appliance", - "/de/enterprise/2.17/admin/configuration/configuring-code-scanning-for-your-appliance" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-dns-nameservers", - "/de/enterprise/2.13/admin/guides/installation/about-dns-nameservers", - "/de/enterprise/2.13/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.13/admin/guides/installation/configuring-dns-nameservers", - "/de/enterprise/2.13/admin/configuration/configuring-dns-nameservers" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-dns-nameservers", - "/de/enterprise/2.14/admin/guides/installation/about-dns-nameservers", - "/de/enterprise/2.14/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.14/admin/guides/installation/configuring-dns-nameservers", - "/de/enterprise/2.14/admin/configuration/configuring-dns-nameservers" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-dns-nameservers", - "/de/enterprise/2.15/admin/guides/installation/about-dns-nameservers", - "/de/enterprise/2.15/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.15/admin/guides/installation/configuring-dns-nameservers", - "/de/enterprise/2.15/admin/configuration/configuring-dns-nameservers" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-dns-nameservers", - "/de/enterprise/2.16/admin/guides/installation/about-dns-nameservers", - "/de/enterprise/2.16/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.16/admin/guides/installation/configuring-dns-nameservers", - "/de/enterprise/2.16/admin/configuration/configuring-dns-nameservers" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-dns-nameservers", - "/de/enterprise/2.17/admin/guides/installation/about-dns-nameservers", - "/de/enterprise/2.17/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.17/admin/guides/installation/configuring-dns-nameservers", - "/de/enterprise/2.17/admin/configuration/configuring-dns-nameservers" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-email-for-notifications", - "/de/enterprise/2.13/admin/guides/installation/email-configuration", - "/de/enterprise/2.13/admin/articles/configuring-email", - "/de/enterprise/2.13/admin/guides/articles/configuring-email", - "/de/enterprise/2.13/admin/articles/troubleshooting-email", - "/de/enterprise/2.13/admin/guides/articles/troubleshooting-email", - "/de/enterprise/2.13/admin/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.13/admin/guides/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.13/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.13/admin/guides/user-management/configuring-email-for-notifications", - "/de/enterprise/2.13/admin/configuration/configuring-email-for-notifications" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-email-for-notifications", - "/de/enterprise/2.14/admin/guides/installation/email-configuration", - "/de/enterprise/2.14/admin/articles/configuring-email", - "/de/enterprise/2.14/admin/guides/articles/configuring-email", - "/de/enterprise/2.14/admin/articles/troubleshooting-email", - "/de/enterprise/2.14/admin/guides/articles/troubleshooting-email", - "/de/enterprise/2.14/admin/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.14/admin/guides/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.14/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.14/admin/guides/user-management/configuring-email-for-notifications", - "/de/enterprise/2.14/admin/configuration/configuring-email-for-notifications" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-email-for-notifications", - "/de/enterprise/2.15/admin/guides/installation/email-configuration", - "/de/enterprise/2.15/admin/articles/configuring-email", - "/de/enterprise/2.15/admin/guides/articles/configuring-email", - "/de/enterprise/2.15/admin/articles/troubleshooting-email", - "/de/enterprise/2.15/admin/guides/articles/troubleshooting-email", - "/de/enterprise/2.15/admin/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.15/admin/guides/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.15/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.15/admin/guides/user-management/configuring-email-for-notifications", - "/de/enterprise/2.15/admin/configuration/configuring-email-for-notifications" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-email-for-notifications", - "/de/enterprise/2.16/admin/guides/installation/email-configuration", - "/de/enterprise/2.16/admin/articles/configuring-email", - "/de/enterprise/2.16/admin/guides/articles/configuring-email", - "/de/enterprise/2.16/admin/articles/troubleshooting-email", - "/de/enterprise/2.16/admin/guides/articles/troubleshooting-email", - "/de/enterprise/2.16/admin/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.16/admin/guides/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.16/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.16/admin/guides/user-management/configuring-email-for-notifications", - "/de/enterprise/2.16/admin/configuration/configuring-email-for-notifications" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-email-for-notifications", - "/de/enterprise/2.17/admin/guides/installation/email-configuration", - "/de/enterprise/2.17/admin/articles/configuring-email", - "/de/enterprise/2.17/admin/guides/articles/configuring-email", - "/de/enterprise/2.17/admin/articles/troubleshooting-email", - "/de/enterprise/2.17/admin/guides/articles/troubleshooting-email", - "/de/enterprise/2.17/admin/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.17/admin/guides/articles/email-configuration-and-troubleshooting", - "/de/enterprise/2.17/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.17/admin/guides/user-management/configuring-email-for-notifications", - "/de/enterprise/2.17/admin/configuration/configuring-email-for-notifications" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.13/admin/guides/installation/disabling-github-enterprise-pages", - "/de/enterprise/2.13/admin/guides/installation/configuring-github-enterprise-pages", - "/de/enterprise/2.13/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.13/admin/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.13/admin/guides/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.13/admin/configuration/configuring-github-pages-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.14/admin/guides/installation/disabling-github-enterprise-pages", - "/de/enterprise/2.14/admin/guides/installation/configuring-github-enterprise-pages", - "/de/enterprise/2.14/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.14/admin/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.14/admin/guides/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.14/admin/configuration/configuring-github-pages-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.15/admin/guides/installation/disabling-github-enterprise-pages", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-enterprise-pages", - "/de/enterprise/2.15/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.15/admin/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.15/admin/guides/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.15/admin/configuration/configuring-github-pages-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.16/admin/guides/installation/disabling-github-enterprise-pages", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-enterprise-pages", - "/de/enterprise/2.16/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.16/admin/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.16/admin/guides/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.16/admin/configuration/configuring-github-pages-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.17/admin/guides/installation/disabling-github-enterprise-pages", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-enterprise-pages", - "/de/enterprise/2.17/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.17/admin/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.17/admin/guides/configuration/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-pages-for-your-enterprise", - "/de/enterprise/2.17/admin/configuration/configuring-github-pages-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-network-settings", - "/de/enterprise/2.13/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl", - "/de/enterprise/2.13/admin/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.13/admin/guides/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.13/admin/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.13/admin/guides/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.13/admin/guides/installation/configuring-your-github-enterprise-network-settings", - "/de/enterprise/2.13/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.13/admin/guides/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.13/admin/configuration/configuring-network-settings" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-network-settings", - "/de/enterprise/2.14/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl", - "/de/enterprise/2.14/admin/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.14/admin/guides/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.14/admin/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.14/admin/guides/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.14/admin/guides/installation/configuring-your-github-enterprise-network-settings", - "/de/enterprise/2.14/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.14/admin/guides/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.14/admin/configuration/configuring-network-settings" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-network-settings", - "/de/enterprise/2.15/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl", - "/de/enterprise/2.15/admin/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.15/admin/guides/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.15/admin/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.15/admin/guides/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.15/admin/guides/installation/configuring-your-github-enterprise-network-settings", - "/de/enterprise/2.15/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.15/admin/guides/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.15/admin/configuration/configuring-network-settings" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-network-settings", - "/de/enterprise/2.16/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl", - "/de/enterprise/2.16/admin/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.16/admin/guides/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.16/admin/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.16/admin/guides/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.16/admin/guides/installation/configuring-your-github-enterprise-network-settings", - "/de/enterprise/2.16/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.16/admin/guides/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.16/admin/configuration/configuring-network-settings" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-network-settings", - "/de/enterprise/2.17/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl", - "/de/enterprise/2.17/admin/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.17/admin/guides/articles/about-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.17/admin/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.17/admin/guides/articles/configuring-dns-ssl-and-subdomain-settings", - "/de/enterprise/2.17/admin/guides/installation/configuring-your-github-enterprise-network-settings", - "/de/enterprise/2.17/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.17/admin/guides/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.17/admin/configuration/configuring-network-settings" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-rate-limits", - "/de/enterprise/2.13/admin/installation/configuring-rate-limits", - "/de/enterprise/2.13/admin/guides/installation/configuring-rate-limits", - "/de/enterprise/2.13/admin/configuration/configuring-rate-limits" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-rate-limits", - "/de/enterprise/2.14/admin/installation/configuring-rate-limits", - "/de/enterprise/2.14/admin/guides/installation/configuring-rate-limits", - "/de/enterprise/2.14/admin/configuration/configuring-rate-limits" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-rate-limits", - "/de/enterprise/2.15/admin/installation/configuring-rate-limits", - "/de/enterprise/2.15/admin/guides/installation/configuring-rate-limits", - "/de/enterprise/2.15/admin/configuration/configuring-rate-limits" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-rate-limits", - "/de/enterprise/2.16/admin/installation/configuring-rate-limits", - "/de/enterprise/2.16/admin/guides/installation/configuring-rate-limits", - "/de/enterprise/2.16/admin/configuration/configuring-rate-limits" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-rate-limits", - "/de/enterprise/2.17/admin/installation/configuring-rate-limits", - "/de/enterprise/2.17/admin/guides/installation/configuring-rate-limits", - "/de/enterprise/2.17/admin/configuration/configuring-rate-limits" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.13/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.13/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.13/admin/configuration/configuring-the-ip-address-using-the-virtual-machine-console" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.14/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.14/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.14/admin/configuration/configuring-the-ip-address-using-the-virtual-machine-console" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.15/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.15/admin/configuration/configuring-the-ip-address-using-the-virtual-machine-console" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.16/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.16/admin/configuration/configuring-the-ip-address-using-the-virtual-machine-console" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.17/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.17/admin/configuration/configuring-the-ip-address-using-the-virtual-machine-console" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-time-synchronization", - "/de/enterprise/2.13/admin/articles/adjusting-the-clock", - "/de/enterprise/2.13/admin/guides/articles/adjusting-the-clock", - "/de/enterprise/2.13/admin/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.13/admin/guides/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.13/admin/articles/setting-ntp-servers", - "/de/enterprise/2.13/admin/guides/articles/setting-ntp-servers", - "/de/enterprise/2.13/admin/categories/time", - "/de/enterprise/2.13/admin/guides/categories/time", - "/de/enterprise/2.13/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.13/admin/guides/installation/configuring-time-synchronization", - "/de/enterprise/2.13/admin/configuration/configuring-time-synchronization" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-time-synchronization", - "/de/enterprise/2.14/admin/articles/adjusting-the-clock", - "/de/enterprise/2.14/admin/guides/articles/adjusting-the-clock", - "/de/enterprise/2.14/admin/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.14/admin/guides/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.14/admin/articles/setting-ntp-servers", - "/de/enterprise/2.14/admin/guides/articles/setting-ntp-servers", - "/de/enterprise/2.14/admin/categories/time", - "/de/enterprise/2.14/admin/guides/categories/time", - "/de/enterprise/2.14/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.14/admin/guides/installation/configuring-time-synchronization", - "/de/enterprise/2.14/admin/configuration/configuring-time-synchronization" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-time-synchronization", - "/de/enterprise/2.15/admin/articles/adjusting-the-clock", - "/de/enterprise/2.15/admin/guides/articles/adjusting-the-clock", - "/de/enterprise/2.15/admin/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.15/admin/guides/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.15/admin/articles/setting-ntp-servers", - "/de/enterprise/2.15/admin/guides/articles/setting-ntp-servers", - "/de/enterprise/2.15/admin/categories/time", - "/de/enterprise/2.15/admin/guides/categories/time", - "/de/enterprise/2.15/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.15/admin/guides/installation/configuring-time-synchronization", - "/de/enterprise/2.15/admin/configuration/configuring-time-synchronization" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-time-synchronization", - "/de/enterprise/2.16/admin/articles/adjusting-the-clock", - "/de/enterprise/2.16/admin/guides/articles/adjusting-the-clock", - "/de/enterprise/2.16/admin/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.16/admin/guides/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.16/admin/articles/setting-ntp-servers", - "/de/enterprise/2.16/admin/guides/articles/setting-ntp-servers", - "/de/enterprise/2.16/admin/categories/time", - "/de/enterprise/2.16/admin/guides/categories/time", - "/de/enterprise/2.16/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.16/admin/guides/installation/configuring-time-synchronization", - "/de/enterprise/2.16/admin/configuration/configuring-time-synchronization" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-time-synchronization", - "/de/enterprise/2.17/admin/articles/adjusting-the-clock", - "/de/enterprise/2.17/admin/guides/articles/adjusting-the-clock", - "/de/enterprise/2.17/admin/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.17/admin/guides/articles/configuring-time-zone-and-ntp-settings", - "/de/enterprise/2.17/admin/articles/setting-ntp-servers", - "/de/enterprise/2.17/admin/guides/articles/setting-ntp-servers", - "/de/enterprise/2.17/admin/categories/time", - "/de/enterprise/2.17/admin/guides/categories/time", - "/de/enterprise/2.17/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.17/admin/guides/installation/configuring-time-synchronization", - "/de/enterprise/2.17/admin/configuration/configuring-time-synchronization" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-tls", - "/de/enterprise/2.13/admin/articles/ssl-configuration", - "/de/enterprise/2.13/admin/guides/articles/ssl-configuration", - "/de/enterprise/2.13/admin/guides/installation/about-tls", - "/de/enterprise/2.13/admin/installation/configuring-tls", - "/de/enterprise/2.13/admin/guides/installation/configuring-tls", - "/de/enterprise/2.13/admin/configuration/configuring-tls" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-tls", - "/de/enterprise/2.14/admin/articles/ssl-configuration", - "/de/enterprise/2.14/admin/guides/articles/ssl-configuration", - "/de/enterprise/2.14/admin/guides/installation/about-tls", - "/de/enterprise/2.14/admin/installation/configuring-tls", - "/de/enterprise/2.14/admin/guides/installation/configuring-tls", - "/de/enterprise/2.14/admin/configuration/configuring-tls" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-tls", - "/de/enterprise/2.15/admin/articles/ssl-configuration", - "/de/enterprise/2.15/admin/guides/articles/ssl-configuration", - "/de/enterprise/2.15/admin/guides/installation/about-tls", - "/de/enterprise/2.15/admin/installation/configuring-tls", - "/de/enterprise/2.15/admin/guides/installation/configuring-tls", - "/de/enterprise/2.15/admin/configuration/configuring-tls" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-tls", - "/de/enterprise/2.16/admin/articles/ssl-configuration", - "/de/enterprise/2.16/admin/guides/articles/ssl-configuration", - "/de/enterprise/2.16/admin/guides/installation/about-tls", - "/de/enterprise/2.16/admin/installation/configuring-tls", - "/de/enterprise/2.16/admin/guides/installation/configuring-tls", - "/de/enterprise/2.16/admin/configuration/configuring-tls" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-tls", - "/de/enterprise/2.17/admin/articles/ssl-configuration", - "/de/enterprise/2.17/admin/guides/articles/ssl-configuration", - "/de/enterprise/2.17/admin/guides/installation/about-tls", - "/de/enterprise/2.17/admin/installation/configuring-tls", - "/de/enterprise/2.17/admin/guides/installation/configuring-tls", - "/de/enterprise/2.17/admin/configuration/configuring-tls" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/configuring-your-enterprise", - "/de/enterprise/2.13/admin/guides/installation/basic-configuration", - "/de/enterprise/2.13/admin/guides/installation/administrative-tools", - "/de/enterprise/2.13/admin/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.13/admin/guides/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.13/admin/guides/installation/configuring-the-github-enterprise-appliance", - "/de/enterprise/2.13/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/guides/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/configuration/configuring-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/configuring-your-enterprise", - "/de/enterprise/2.14/admin/guides/installation/basic-configuration", - "/de/enterprise/2.14/admin/guides/installation/administrative-tools", - "/de/enterprise/2.14/admin/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.14/admin/guides/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.14/admin/guides/installation/configuring-the-github-enterprise-appliance", - "/de/enterprise/2.14/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/guides/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/configuration/configuring-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/configuring-your-enterprise", - "/de/enterprise/2.15/admin/guides/installation/basic-configuration", - "/de/enterprise/2.15/admin/guides/installation/administrative-tools", - "/de/enterprise/2.15/admin/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.15/admin/guides/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-github-enterprise-appliance", - "/de/enterprise/2.15/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/configuration/configuring-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/configuring-your-enterprise", - "/de/enterprise/2.16/admin/guides/installation/basic-configuration", - "/de/enterprise/2.16/admin/guides/installation/administrative-tools", - "/de/enterprise/2.16/admin/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.16/admin/guides/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-github-enterprise-appliance", - "/de/enterprise/2.16/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/configuration/configuring-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/configuring-your-enterprise", - "/de/enterprise/2.17/admin/guides/installation/basic-configuration", - "/de/enterprise/2.17/admin/guides/installation/administrative-tools", - "/de/enterprise/2.17/admin/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.17/admin/guides/articles/restricting-ssh-access-to-specific-hosts", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-github-enterprise-appliance", - "/de/enterprise/2.17/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/configuration/configuring-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com", - "/de/enterprise/2.13/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.13/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.13/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.13/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com", - "/de/enterprise/2.14/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.14/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.14/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.14/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com", - "/de/enterprise/2.15/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.15/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.15/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com", - "/de/enterprise/2.16/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.16/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.16/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com", - "/de/enterprise/2.17/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-server-to-githubcom", - "/de/enterprise/2.17/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.17/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.13/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.13/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.13/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.14/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.14/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.14/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.15/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.15/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.15/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.16/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.16/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.16/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/configuration/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/configuration/enabling-alerts-for-vulnerable-dependencies-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.13/admin/maintenance-mode", - "/de/enterprise/2.13/admin/guides/maintenance-mode", - "/de/enterprise/2.13/admin/categories/maintenance-mode", - "/de/enterprise/2.13/admin/guides/categories/maintenance-mode", - "/de/enterprise/2.13/admin/articles/maintenance-mode", - "/de/enterprise/2.13/admin/guides/articles/maintenance-mode", - "/de/enterprise/2.13/admin/articles/enabling-maintenance-mode", - "/de/enterprise/2.13/admin/guides/articles/enabling-maintenance-mode", - "/de/enterprise/2.13/admin/articles/disabling-maintenance-mode", - "/de/enterprise/2.13/admin/guides/articles/disabling-maintenance-mode", - "/de/enterprise/2.13/admin/guides/installation/maintenance-mode", - "/de/enterprise/2.13/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.13/admin/guides/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.13/admin/configuration/enabling-and-scheduling-maintenance-mode" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.14/admin/maintenance-mode", - "/de/enterprise/2.14/admin/guides/maintenance-mode", - "/de/enterprise/2.14/admin/categories/maintenance-mode", - "/de/enterprise/2.14/admin/guides/categories/maintenance-mode", - "/de/enterprise/2.14/admin/articles/maintenance-mode", - "/de/enterprise/2.14/admin/guides/articles/maintenance-mode", - "/de/enterprise/2.14/admin/articles/enabling-maintenance-mode", - "/de/enterprise/2.14/admin/guides/articles/enabling-maintenance-mode", - "/de/enterprise/2.14/admin/articles/disabling-maintenance-mode", - "/de/enterprise/2.14/admin/guides/articles/disabling-maintenance-mode", - "/de/enterprise/2.14/admin/guides/installation/maintenance-mode", - "/de/enterprise/2.14/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.14/admin/guides/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.14/admin/configuration/enabling-and-scheduling-maintenance-mode" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.15/admin/maintenance-mode", - "/de/enterprise/2.15/admin/guides/maintenance-mode", - "/de/enterprise/2.15/admin/categories/maintenance-mode", - "/de/enterprise/2.15/admin/guides/categories/maintenance-mode", - "/de/enterprise/2.15/admin/articles/maintenance-mode", - "/de/enterprise/2.15/admin/guides/articles/maintenance-mode", - "/de/enterprise/2.15/admin/articles/enabling-maintenance-mode", - "/de/enterprise/2.15/admin/guides/articles/enabling-maintenance-mode", - "/de/enterprise/2.15/admin/articles/disabling-maintenance-mode", - "/de/enterprise/2.15/admin/guides/articles/disabling-maintenance-mode", - "/de/enterprise/2.15/admin/guides/installation/maintenance-mode", - "/de/enterprise/2.15/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.15/admin/guides/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.15/admin/configuration/enabling-and-scheduling-maintenance-mode" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.16/admin/maintenance-mode", - "/de/enterprise/2.16/admin/guides/maintenance-mode", - "/de/enterprise/2.16/admin/categories/maintenance-mode", - "/de/enterprise/2.16/admin/guides/categories/maintenance-mode", - "/de/enterprise/2.16/admin/articles/maintenance-mode", - "/de/enterprise/2.16/admin/guides/articles/maintenance-mode", - "/de/enterprise/2.16/admin/articles/enabling-maintenance-mode", - "/de/enterprise/2.16/admin/guides/articles/enabling-maintenance-mode", - "/de/enterprise/2.16/admin/articles/disabling-maintenance-mode", - "/de/enterprise/2.16/admin/guides/articles/disabling-maintenance-mode", - "/de/enterprise/2.16/admin/guides/installation/maintenance-mode", - "/de/enterprise/2.16/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.16/admin/guides/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.16/admin/configuration/enabling-and-scheduling-maintenance-mode" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.17/admin/maintenance-mode", - "/de/enterprise/2.17/admin/guides/maintenance-mode", - "/de/enterprise/2.17/admin/categories/maintenance-mode", - "/de/enterprise/2.17/admin/guides/categories/maintenance-mode", - "/de/enterprise/2.17/admin/articles/maintenance-mode", - "/de/enterprise/2.17/admin/guides/articles/maintenance-mode", - "/de/enterprise/2.17/admin/articles/enabling-maintenance-mode", - "/de/enterprise/2.17/admin/guides/articles/enabling-maintenance-mode", - "/de/enterprise/2.17/admin/articles/disabling-maintenance-mode", - "/de/enterprise/2.17/admin/guides/articles/disabling-maintenance-mode", - "/de/enterprise/2.17/admin/guides/installation/maintenance-mode", - "/de/enterprise/2.17/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.17/admin/guides/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.17/admin/configuration/enabling-and-scheduling-maintenance-mode" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/configuration/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-private-mode", - "/de/enterprise/2.13/admin/articles/private-mode", - "/de/enterprise/2.13/admin/guides/articles/private-mode", - "/de/enterprise/2.13/admin/guides/installation/security", - "/de/enterprise/2.13/admin/guides/installation/securing-your-instance", - "/de/enterprise/2.13/admin/installation/enabling-private-mode", - "/de/enterprise/2.13/admin/guides/installation/enabling-private-mode", - "/de/enterprise/2.13/admin/configuration/enabling-private-mode" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-private-mode", - "/de/enterprise/2.14/admin/articles/private-mode", - "/de/enterprise/2.14/admin/guides/articles/private-mode", - "/de/enterprise/2.14/admin/guides/installation/security", - "/de/enterprise/2.14/admin/guides/installation/securing-your-instance", - "/de/enterprise/2.14/admin/installation/enabling-private-mode", - "/de/enterprise/2.14/admin/guides/installation/enabling-private-mode", - "/de/enterprise/2.14/admin/configuration/enabling-private-mode" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-private-mode", - "/de/enterprise/2.15/admin/articles/private-mode", - "/de/enterprise/2.15/admin/guides/articles/private-mode", - "/de/enterprise/2.15/admin/guides/installation/security", - "/de/enterprise/2.15/admin/guides/installation/securing-your-instance", - "/de/enterprise/2.15/admin/installation/enabling-private-mode", - "/de/enterprise/2.15/admin/guides/installation/enabling-private-mode", - "/de/enterprise/2.15/admin/configuration/enabling-private-mode" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-private-mode", - "/de/enterprise/2.16/admin/articles/private-mode", - "/de/enterprise/2.16/admin/guides/articles/private-mode", - "/de/enterprise/2.16/admin/guides/installation/security", - "/de/enterprise/2.16/admin/guides/installation/securing-your-instance", - "/de/enterprise/2.16/admin/installation/enabling-private-mode", - "/de/enterprise/2.16/admin/guides/installation/enabling-private-mode", - "/de/enterprise/2.16/admin/configuration/enabling-private-mode" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-private-mode", - "/de/enterprise/2.17/admin/articles/private-mode", - "/de/enterprise/2.17/admin/guides/articles/private-mode", - "/de/enterprise/2.17/admin/guides/installation/security", - "/de/enterprise/2.17/admin/guides/installation/securing-your-instance", - "/de/enterprise/2.17/admin/installation/enabling-private-mode", - "/de/enterprise/2.17/admin/guides/installation/enabling-private-mode", - "/de/enterprise/2.17/admin/configuration/enabling-private-mode" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-subdomain-isolation", - "/de/enterprise/2.13/admin/guides/installation/about-subdomain-isolation", - "/de/enterprise/2.13/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.13/admin/guides/installation/enabling-subdomain-isolation", - "/de/enterprise/2.13/admin/configuration/enabling-subdomain-isolation" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-subdomain-isolation", - "/de/enterprise/2.14/admin/guides/installation/about-subdomain-isolation", - "/de/enterprise/2.14/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.14/admin/guides/installation/enabling-subdomain-isolation", - "/de/enterprise/2.14/admin/configuration/enabling-subdomain-isolation" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-subdomain-isolation", - "/de/enterprise/2.15/admin/guides/installation/about-subdomain-isolation", - "/de/enterprise/2.15/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.15/admin/guides/installation/enabling-subdomain-isolation", - "/de/enterprise/2.15/admin/configuration/enabling-subdomain-isolation" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-subdomain-isolation", - "/de/enterprise/2.16/admin/guides/installation/about-subdomain-isolation", - "/de/enterprise/2.16/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.16/admin/guides/installation/enabling-subdomain-isolation", - "/de/enterprise/2.16/admin/configuration/enabling-subdomain-isolation" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-subdomain-isolation", - "/de/enterprise/2.17/admin/guides/installation/about-subdomain-isolation", - "/de/enterprise/2.17/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.17/admin/guides/installation/enabling-subdomain-isolation", - "/de/enterprise/2.17/admin/configuration/enabling-subdomain-isolation" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.13/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.14/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.15/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.16/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.17/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.13/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.14/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.15/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.16/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com", - "/de/enterprise/2.17/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration", - "/de/enterprise/2.13/admin/configuration" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration", - "/de/enterprise/2.14/admin/configuration" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration", - "/de/enterprise/2.15/admin/configuration" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration", - "/de/enterprise/2.16/admin/configuration" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration", - "/de/enterprise/2.17/admin/configuration" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com", - "/de/enterprise/2.13/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/guides/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.13/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.13/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com", - "/de/enterprise/2.14/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/guides/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.14/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.14/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com", - "/de/enterprise/2.15/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com", - "/de/enterprise/2.16/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com", - "/de/enterprise/2.17/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/developer-workflow/connecting-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/network-ports", - "/de/enterprise/2.13/admin/articles/configuring-firewalls", - "/de/enterprise/2.13/admin/guides/articles/configuring-firewalls", - "/de/enterprise/2.13/admin/articles/firewall", - "/de/enterprise/2.13/admin/guides/articles/firewall", - "/de/enterprise/2.13/admin/guides/installation/network-configuration", - "/de/enterprise/2.13/admin/guides/installation/network-ports-to-open", - "/de/enterprise/2.13/admin/installation/network-ports", - "/de/enterprise/2.13/admin/guides/installation/network-ports", - "/de/enterprise/2.13/admin/configuration/network-ports" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/network-ports", - "/de/enterprise/2.14/admin/articles/configuring-firewalls", - "/de/enterprise/2.14/admin/guides/articles/configuring-firewalls", - "/de/enterprise/2.14/admin/articles/firewall", - "/de/enterprise/2.14/admin/guides/articles/firewall", - "/de/enterprise/2.14/admin/guides/installation/network-configuration", - "/de/enterprise/2.14/admin/guides/installation/network-ports-to-open", - "/de/enterprise/2.14/admin/installation/network-ports", - "/de/enterprise/2.14/admin/guides/installation/network-ports", - "/de/enterprise/2.14/admin/configuration/network-ports" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/network-ports", - "/de/enterprise/2.15/admin/articles/configuring-firewalls", - "/de/enterprise/2.15/admin/guides/articles/configuring-firewalls", - "/de/enterprise/2.15/admin/articles/firewall", - "/de/enterprise/2.15/admin/guides/articles/firewall", - "/de/enterprise/2.15/admin/guides/installation/network-configuration", - "/de/enterprise/2.15/admin/guides/installation/network-ports-to-open", - "/de/enterprise/2.15/admin/installation/network-ports", - "/de/enterprise/2.15/admin/guides/installation/network-ports", - "/de/enterprise/2.15/admin/configuration/network-ports" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/network-ports", - "/de/enterprise/2.16/admin/articles/configuring-firewalls", - "/de/enterprise/2.16/admin/guides/articles/configuring-firewalls", - "/de/enterprise/2.16/admin/articles/firewall", - "/de/enterprise/2.16/admin/guides/articles/firewall", - "/de/enterprise/2.16/admin/guides/installation/network-configuration", - "/de/enterprise/2.16/admin/guides/installation/network-ports-to-open", - "/de/enterprise/2.16/admin/installation/network-ports", - "/de/enterprise/2.16/admin/guides/installation/network-ports", - "/de/enterprise/2.16/admin/configuration/network-ports" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/network-ports", - "/de/enterprise/2.17/admin/articles/configuring-firewalls", - "/de/enterprise/2.17/admin/guides/articles/configuring-firewalls", - "/de/enterprise/2.17/admin/articles/firewall", - "/de/enterprise/2.17/admin/guides/articles/firewall", - "/de/enterprise/2.17/admin/guides/installation/network-configuration", - "/de/enterprise/2.17/admin/guides/installation/network-ports-to-open", - "/de/enterprise/2.17/admin/installation/network-ports", - "/de/enterprise/2.17/admin/guides/installation/network-ports", - "/de/enterprise/2.17/admin/configuration/network-ports" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/site-admin-dashboard", - "/de/enterprise/2.13/admin/articles/site-admin-dashboard", - "/de/enterprise/2.13/admin/guides/articles/site-admin-dashboard", - "/de/enterprise/2.13/admin/installation/site-admin-dashboard", - "/de/enterprise/2.13/admin/guides/installation/site-admin-dashboard", - "/de/enterprise/2.13/admin/configuration/site-admin-dashboard" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/site-admin-dashboard", - "/de/enterprise/2.14/admin/articles/site-admin-dashboard", - "/de/enterprise/2.14/admin/guides/articles/site-admin-dashboard", - "/de/enterprise/2.14/admin/installation/site-admin-dashboard", - "/de/enterprise/2.14/admin/guides/installation/site-admin-dashboard", - "/de/enterprise/2.14/admin/configuration/site-admin-dashboard" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/site-admin-dashboard", - "/de/enterprise/2.15/admin/articles/site-admin-dashboard", - "/de/enterprise/2.15/admin/guides/articles/site-admin-dashboard", - "/de/enterprise/2.15/admin/installation/site-admin-dashboard", - "/de/enterprise/2.15/admin/guides/installation/site-admin-dashboard", - "/de/enterprise/2.15/admin/configuration/site-admin-dashboard" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/site-admin-dashboard", - "/de/enterprise/2.16/admin/articles/site-admin-dashboard", - "/de/enterprise/2.16/admin/guides/articles/site-admin-dashboard", - "/de/enterprise/2.16/admin/installation/site-admin-dashboard", - "/de/enterprise/2.16/admin/guides/installation/site-admin-dashboard", - "/de/enterprise/2.16/admin/configuration/site-admin-dashboard" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/site-admin-dashboard", - "/de/enterprise/2.17/admin/articles/site-admin-dashboard", - "/de/enterprise/2.17/admin/guides/articles/site-admin-dashboard", - "/de/enterprise/2.17/admin/installation/site-admin-dashboard", - "/de/enterprise/2.17/admin/guides/installation/site-admin-dashboard", - "/de/enterprise/2.17/admin/configuration/site-admin-dashboard" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/troubleshooting-ssl-errors", - "/de/enterprise/2.13/admin/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.13/admin/guides/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.13/admin/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.13/admin/guides/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.13/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.13/admin/guides/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.13/admin/configuration/troubleshooting-ssl-errors" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/troubleshooting-ssl-errors", - "/de/enterprise/2.14/admin/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.14/admin/guides/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.14/admin/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.14/admin/guides/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.14/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.14/admin/guides/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.14/admin/configuration/troubleshooting-ssl-errors" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/guides/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.15/admin/guides/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.15/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/guides/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/configuration/troubleshooting-ssl-errors" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/guides/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.16/admin/guides/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.16/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/guides/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/configuration/troubleshooting-ssl-errors" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/guides/articles/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.17/admin/guides/categories/dns-ssl-and-subdomain-configuration", - "/de/enterprise/2.17/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/guides/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/configuration/troubleshooting-ssl-errors" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.13/admin/guides/installation/using-github-enterprise-with-a-load-balancer", - "/de/enterprise/2.13/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.13/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.13/admin/configuration/using-github-enterprise-server-with-a-load-balancer" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.14/admin/guides/installation/using-github-enterprise-with-a-load-balancer", - "/de/enterprise/2.14/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.14/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.14/admin/configuration/using-github-enterprise-server-with-a-load-balancer" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.15/admin/guides/installation/using-github-enterprise-with-a-load-balancer", - "/de/enterprise/2.15/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.15/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.15/admin/configuration/using-github-enterprise-server-with-a-load-balancer" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.16/admin/guides/installation/using-github-enterprise-with-a-load-balancer", - "/de/enterprise/2.16/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.16/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.16/admin/configuration/using-github-enterprise-server-with-a-load-balancer" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.17/admin/guides/installation/using-github-enterprise-with-a-load-balancer", - "/de/enterprise/2.17/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.17/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.17/admin/configuration/using-github-enterprise-server-with-a-load-balancer" - ], - [ - "/de/enterprise/2.13/admin/guides/configuration/validating-your-domain-settings", - "/de/enterprise/2.13/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.13/admin/guides/installation/validating-your-domain-settings", - "/de/enterprise/2.13/admin/configuration/validating-your-domain-settings" - ], - [ - "/de/enterprise/2.14/admin/guides/configuration/validating-your-domain-settings", - "/de/enterprise/2.14/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.14/admin/guides/installation/validating-your-domain-settings", - "/de/enterprise/2.14/admin/configuration/validating-your-domain-settings" - ], - [ - "/de/enterprise/2.15/admin/guides/configuration/validating-your-domain-settings", - "/de/enterprise/2.15/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.15/admin/guides/installation/validating-your-domain-settings", - "/de/enterprise/2.15/admin/configuration/validating-your-domain-settings" - ], - [ - "/de/enterprise/2.16/admin/guides/configuration/validating-your-domain-settings", - "/de/enterprise/2.16/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.16/admin/guides/installation/validating-your-domain-settings", - "/de/enterprise/2.16/admin/configuration/validating-your-domain-settings" - ], - [ - "/de/enterprise/2.17/admin/guides/configuration/validating-your-domain-settings", - "/de/enterprise/2.17/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.17/admin/guides/installation/validating-your-domain-settings", - "/de/enterprise/2.17/admin/configuration/validating-your-domain-settings" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/about-cluster-nodes", - "/de/enterprise/2.13/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.13/admin/guides/clustering/about-cluster-nodes", - "/de/enterprise/2.13/admin/enterprise-management/about-cluster-nodes" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/about-cluster-nodes", - "/de/enterprise/2.14/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.14/admin/guides/clustering/about-cluster-nodes", - "/de/enterprise/2.14/admin/enterprise-management/about-cluster-nodes" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/about-cluster-nodes", - "/de/enterprise/2.15/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.15/admin/guides/clustering/about-cluster-nodes", - "/de/enterprise/2.15/admin/enterprise-management/about-cluster-nodes" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/about-cluster-nodes", - "/de/enterprise/2.16/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.16/admin/guides/clustering/about-cluster-nodes", - "/de/enterprise/2.16/admin/enterprise-management/about-cluster-nodes" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/about-cluster-nodes", - "/de/enterprise/2.17/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.17/admin/guides/clustering/about-cluster-nodes", - "/de/enterprise/2.17/admin/enterprise-management/about-cluster-nodes" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/about-clustering", - "/de/enterprise/2.13/admin/clustering/overview", - "/de/enterprise/2.13/admin/guides/clustering/overview", - "/de/enterprise/2.13/admin/clustering/about-clustering", - "/de/enterprise/2.13/admin/guides/clustering/about-clustering", - "/de/enterprise/2.13/admin/clustering/clustering-overview", - "/de/enterprise/2.13/admin/guides/clustering/clustering-overview", - "/de/enterprise/2.13/admin/enterprise-management/about-clustering" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/about-clustering", - "/de/enterprise/2.14/admin/clustering/overview", - "/de/enterprise/2.14/admin/guides/clustering/overview", - "/de/enterprise/2.14/admin/clustering/about-clustering", - "/de/enterprise/2.14/admin/guides/clustering/about-clustering", - "/de/enterprise/2.14/admin/clustering/clustering-overview", - "/de/enterprise/2.14/admin/guides/clustering/clustering-overview", - "/de/enterprise/2.14/admin/enterprise-management/about-clustering" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/about-clustering", - "/de/enterprise/2.15/admin/clustering/overview", - "/de/enterprise/2.15/admin/guides/clustering/overview", - "/de/enterprise/2.15/admin/clustering/about-clustering", - "/de/enterprise/2.15/admin/guides/clustering/about-clustering", - "/de/enterprise/2.15/admin/clustering/clustering-overview", - "/de/enterprise/2.15/admin/guides/clustering/clustering-overview", - "/de/enterprise/2.15/admin/enterprise-management/about-clustering" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/about-clustering", - "/de/enterprise/2.16/admin/clustering/overview", - "/de/enterprise/2.16/admin/guides/clustering/overview", - "/de/enterprise/2.16/admin/clustering/about-clustering", - "/de/enterprise/2.16/admin/guides/clustering/about-clustering", - "/de/enterprise/2.16/admin/clustering/clustering-overview", - "/de/enterprise/2.16/admin/guides/clustering/clustering-overview", - "/de/enterprise/2.16/admin/enterprise-management/about-clustering" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/about-clustering", - "/de/enterprise/2.17/admin/clustering/overview", - "/de/enterprise/2.17/admin/guides/clustering/overview", - "/de/enterprise/2.17/admin/clustering/about-clustering", - "/de/enterprise/2.17/admin/guides/clustering/about-clustering", - "/de/enterprise/2.17/admin/clustering/clustering-overview", - "/de/enterprise/2.17/admin/guides/clustering/clustering-overview", - "/de/enterprise/2.17/admin/enterprise-management/about-clustering" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/about-geo-replication", - "/de/enterprise/2.13/admin/installation/about-geo-replication", - "/de/enterprise/2.13/admin/guides/installation/about-geo-replication", - "/de/enterprise/2.13/admin/enterprise-management/about-geo-replication" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/about-geo-replication", - "/de/enterprise/2.14/admin/installation/about-geo-replication", - "/de/enterprise/2.14/admin/guides/installation/about-geo-replication", - "/de/enterprise/2.14/admin/enterprise-management/about-geo-replication" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/about-geo-replication", - "/de/enterprise/2.15/admin/installation/about-geo-replication", - "/de/enterprise/2.15/admin/guides/installation/about-geo-replication", - "/de/enterprise/2.15/admin/enterprise-management/about-geo-replication" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/about-geo-replication", - "/de/enterprise/2.16/admin/installation/about-geo-replication", - "/de/enterprise/2.16/admin/guides/installation/about-geo-replication", - "/de/enterprise/2.16/admin/enterprise-management/about-geo-replication" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/about-geo-replication", - "/de/enterprise/2.17/admin/installation/about-geo-replication", - "/de/enterprise/2.17/admin/guides/installation/about-geo-replication", - "/de/enterprise/2.17/admin/enterprise-management/about-geo-replication" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/about-high-availability-configuration", - "/de/enterprise/2.13/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.13/admin/guides/installation/about-high-availability-configuration", - "/de/enterprise/2.13/admin/enterprise-management/about-high-availability-configuration" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/about-high-availability-configuration", - "/de/enterprise/2.14/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.14/admin/guides/installation/about-high-availability-configuration", - "/de/enterprise/2.14/admin/enterprise-management/about-high-availability-configuration" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/about-high-availability-configuration", - "/de/enterprise/2.15/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.15/admin/guides/installation/about-high-availability-configuration", - "/de/enterprise/2.15/admin/enterprise-management/about-high-availability-configuration" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/about-high-availability-configuration", - "/de/enterprise/2.16/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.16/admin/guides/installation/about-high-availability-configuration", - "/de/enterprise/2.16/admin/enterprise-management/about-high-availability-configuration" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/about-high-availability-configuration", - "/de/enterprise/2.17/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.17/admin/guides/installation/about-high-availability-configuration", - "/de/enterprise/2.17/admin/enterprise-management/about-high-availability-configuration" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/accessing-the-monitor-dashboard", - "/de/enterprise/2.13/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.13/admin/guides/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.13/admin/enterprise-management/accessing-the-monitor-dashboard" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/accessing-the-monitor-dashboard", - "/de/enterprise/2.14/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.14/admin/guides/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.14/admin/enterprise-management/accessing-the-monitor-dashboard" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/accessing-the-monitor-dashboard", - "/de/enterprise/2.15/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.15/admin/enterprise-management/accessing-the-monitor-dashboard" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/accessing-the-monitor-dashboard", - "/de/enterprise/2.16/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.16/admin/enterprise-management/accessing-the-monitor-dashboard" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/accessing-the-monitor-dashboard", - "/de/enterprise/2.17/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.17/admin/enterprise-management/accessing-the-monitor-dashboard" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/cluster-network-configuration", - "/de/enterprise/2.13/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.13/admin/guides/clustering/cluster-network-configuration", - "/de/enterprise/2.13/admin/enterprise-management/cluster-network-configuration" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/cluster-network-configuration", - "/de/enterprise/2.14/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.14/admin/guides/clustering/cluster-network-configuration", - "/de/enterprise/2.14/admin/enterprise-management/cluster-network-configuration" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/cluster-network-configuration", - "/de/enterprise/2.15/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.15/admin/guides/clustering/cluster-network-configuration", - "/de/enterprise/2.15/admin/enterprise-management/cluster-network-configuration" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/cluster-network-configuration", - "/de/enterprise/2.16/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.16/admin/guides/clustering/cluster-network-configuration", - "/de/enterprise/2.16/admin/enterprise-management/cluster-network-configuration" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/cluster-network-configuration", - "/de/enterprise/2.17/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.17/admin/guides/clustering/cluster-network-configuration", - "/de/enterprise/2.17/admin/enterprise-management/cluster-network-configuration" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/configuring-clustering", - "/de/enterprise/2.13/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.13/admin/guides/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.13/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.13/admin/guides/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.13/admin/guides/clustering/managing-a-github-enterprise-cluster", - "/de/enterprise/2.13/admin/enterprise-management/configuring-clustering" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/configuring-clustering", - "/de/enterprise/2.14/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.14/admin/guides/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.14/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.14/admin/guides/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.14/admin/guides/clustering/managing-a-github-enterprise-cluster", - "/de/enterprise/2.14/admin/enterprise-management/configuring-clustering" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/configuring-clustering", - "/de/enterprise/2.15/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.15/admin/guides/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.15/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.15/admin/guides/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.15/admin/guides/clustering/managing-a-github-enterprise-cluster", - "/de/enterprise/2.15/admin/enterprise-management/configuring-clustering" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/configuring-clustering", - "/de/enterprise/2.16/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.16/admin/guides/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.16/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.16/admin/guides/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.16/admin/guides/clustering/managing-a-github-enterprise-cluster", - "/de/enterprise/2.16/admin/enterprise-management/configuring-clustering" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/configuring-clustering", - "/de/enterprise/2.17/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.17/admin/guides/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.17/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.17/admin/guides/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.17/admin/guides/clustering/managing-a-github-enterprise-cluster", - "/de/enterprise/2.17/admin/enterprise-management/configuring-clustering" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/configuring-collectd", - "/de/enterprise/2.13/admin/installation/configuring-collectd", - "/de/enterprise/2.13/admin/guides/installation/configuring-collectd", - "/de/enterprise/2.13/admin/articles/configuring-collectd", - "/de/enterprise/2.13/admin/guides/articles/configuring-collectd", - "/de/enterprise/2.13/admin/enterprise-management/configuring-collectd" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/configuring-collectd", - "/de/enterprise/2.14/admin/installation/configuring-collectd", - "/de/enterprise/2.14/admin/guides/installation/configuring-collectd", - "/de/enterprise/2.14/admin/articles/configuring-collectd", - "/de/enterprise/2.14/admin/guides/articles/configuring-collectd", - "/de/enterprise/2.14/admin/enterprise-management/configuring-collectd" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/configuring-collectd", - "/de/enterprise/2.15/admin/installation/configuring-collectd", - "/de/enterprise/2.15/admin/guides/installation/configuring-collectd", - "/de/enterprise/2.15/admin/articles/configuring-collectd", - "/de/enterprise/2.15/admin/guides/articles/configuring-collectd", - "/de/enterprise/2.15/admin/enterprise-management/configuring-collectd" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/configuring-collectd", - "/de/enterprise/2.16/admin/installation/configuring-collectd", - "/de/enterprise/2.16/admin/guides/installation/configuring-collectd", - "/de/enterprise/2.16/admin/articles/configuring-collectd", - "/de/enterprise/2.16/admin/guides/articles/configuring-collectd", - "/de/enterprise/2.16/admin/enterprise-management/configuring-collectd" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/configuring-collectd", - "/de/enterprise/2.17/admin/installation/configuring-collectd", - "/de/enterprise/2.17/admin/guides/installation/configuring-collectd", - "/de/enterprise/2.17/admin/articles/configuring-collectd", - "/de/enterprise/2.17/admin/guides/articles/configuring-collectd", - "/de/enterprise/2.17/admin/enterprise-management/configuring-collectd" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/configuring-high-availability-replication-for-a-cluster", - "/de/enterprise/2.13/admin/enterprise-management/configuring-high-availability-replication-for-a-cluster" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/configuring-high-availability-replication-for-a-cluster", - "/de/enterprise/2.14/admin/enterprise-management/configuring-high-availability-replication-for-a-cluster" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/configuring-high-availability-replication-for-a-cluster", - "/de/enterprise/2.15/admin/enterprise-management/configuring-high-availability-replication-for-a-cluster" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/configuring-high-availability-replication-for-a-cluster", - "/de/enterprise/2.16/admin/enterprise-management/configuring-high-availability-replication-for-a-cluster" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/configuring-high-availability-replication-for-a-cluster", - "/de/enterprise/2.17/admin/enterprise-management/configuring-high-availability-replication-for-a-cluster" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/configuring-high-availability", - "/de/enterprise/2.13/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.13/admin/guides/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.13/admin/guides/installation/high-availability-cluster-configuration", - "/de/enterprise/2.13/admin/guides/installation/high-availability-configuration", - "/de/enterprise/2.13/admin/guides/installation/configuring-github-enterprise-for-high-availability", - "/de/enterprise/2.13/admin/enterprise-management/configuring-high-availability" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/configuring-high-availability", - "/de/enterprise/2.14/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.14/admin/guides/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.14/admin/guides/installation/high-availability-cluster-configuration", - "/de/enterprise/2.14/admin/guides/installation/high-availability-configuration", - "/de/enterprise/2.14/admin/guides/installation/configuring-github-enterprise-for-high-availability", - "/de/enterprise/2.14/admin/enterprise-management/configuring-high-availability" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/configuring-high-availability", - "/de/enterprise/2.15/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.15/admin/guides/installation/high-availability-cluster-configuration", - "/de/enterprise/2.15/admin/guides/installation/high-availability-configuration", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-enterprise-for-high-availability", - "/de/enterprise/2.15/admin/enterprise-management/configuring-high-availability" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/configuring-high-availability", - "/de/enterprise/2.16/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.16/admin/guides/installation/high-availability-cluster-configuration", - "/de/enterprise/2.16/admin/guides/installation/high-availability-configuration", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-enterprise-for-high-availability", - "/de/enterprise/2.16/admin/enterprise-management/configuring-high-availability" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/configuring-high-availability", - "/de/enterprise/2.17/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.17/admin/guides/installation/high-availability-cluster-configuration", - "/de/enterprise/2.17/admin/guides/installation/high-availability-configuration", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-enterprise-for-high-availability", - "/de/enterprise/2.17/admin/enterprise-management/configuring-high-availability" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/creating-a-high-availability-replica", - "/de/enterprise/2.13/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.13/admin/guides/installation/creating-a-high-availability-replica", - "/de/enterprise/2.13/admin/enterprise-management/creating-a-high-availability-replica" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/creating-a-high-availability-replica", - "/de/enterprise/2.14/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.14/admin/guides/installation/creating-a-high-availability-replica", - "/de/enterprise/2.14/admin/enterprise-management/creating-a-high-availability-replica" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/creating-a-high-availability-replica", - "/de/enterprise/2.15/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.15/admin/guides/installation/creating-a-high-availability-replica", - "/de/enterprise/2.15/admin/enterprise-management/creating-a-high-availability-replica" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/creating-a-high-availability-replica", - "/de/enterprise/2.16/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.16/admin/guides/installation/creating-a-high-availability-replica", - "/de/enterprise/2.16/admin/enterprise-management/creating-a-high-availability-replica" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/creating-a-high-availability-replica", - "/de/enterprise/2.17/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.17/admin/guides/installation/creating-a-high-availability-replica", - "/de/enterprise/2.17/admin/enterprise-management/creating-a-high-availability-replica" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.13/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.13/admin/guides/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.13/admin/enterprise-management/differences-between-clustering-and-high-availability-ha" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.14/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.14/admin/guides/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.14/admin/enterprise-management/differences-between-clustering-and-high-availability-ha" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.15/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.15/admin/guides/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.15/admin/enterprise-management/differences-between-clustering-and-high-availability-ha" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.16/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.16/admin/guides/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.16/admin/enterprise-management/differences-between-clustering-and-high-availability-ha" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.17/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.17/admin/guides/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.17/admin/enterprise-management/differences-between-clustering-and-high-availability-ha" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/enabling-automatic-update-checks", - "/de/enterprise/2.13/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.13/admin/guides/installation/enabling-automatic-update-checks", - "/de/enterprise/2.13/admin/enterprise-management/enabling-automatic-update-checks" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/enabling-automatic-update-checks", - "/de/enterprise/2.14/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.14/admin/guides/installation/enabling-automatic-update-checks", - "/de/enterprise/2.14/admin/enterprise-management/enabling-automatic-update-checks" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/enabling-automatic-update-checks", - "/de/enterprise/2.15/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.15/admin/guides/installation/enabling-automatic-update-checks", - "/de/enterprise/2.15/admin/enterprise-management/enabling-automatic-update-checks" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/enabling-automatic-update-checks", - "/de/enterprise/2.16/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.16/admin/guides/installation/enabling-automatic-update-checks", - "/de/enterprise/2.16/admin/enterprise-management/enabling-automatic-update-checks" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/enabling-automatic-update-checks", - "/de/enterprise/2.17/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.17/admin/guides/installation/enabling-automatic-update-checks", - "/de/enterprise/2.17/admin/enterprise-management/enabling-automatic-update-checks" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/evacuating-a-cluster-node", - "/de/enterprise/2.13/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.13/admin/guides/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.13/admin/enterprise-management/evacuating-a-cluster-node" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/evacuating-a-cluster-node", - "/de/enterprise/2.14/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.14/admin/guides/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.14/admin/enterprise-management/evacuating-a-cluster-node" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/evacuating-a-cluster-node", - "/de/enterprise/2.15/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.15/admin/guides/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.15/admin/enterprise-management/evacuating-a-cluster-node" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/evacuating-a-cluster-node", - "/de/enterprise/2.16/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.16/admin/guides/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.16/admin/enterprise-management/evacuating-a-cluster-node" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/evacuating-a-cluster-node", - "/de/enterprise/2.17/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.17/admin/guides/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.17/admin/enterprise-management/evacuating-a-cluster-node" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/increasing-cpu-or-memory-resources", - "/de/enterprise/2.13/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.13/admin/guides/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.13/admin/enterprise-management/increasing-cpu-or-memory-resources" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/increasing-cpu-or-memory-resources", - "/de/enterprise/2.14/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.14/admin/guides/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.14/admin/enterprise-management/increasing-cpu-or-memory-resources" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/increasing-cpu-or-memory-resources", - "/de/enterprise/2.15/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.15/admin/guides/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.15/admin/enterprise-management/increasing-cpu-or-memory-resources" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/increasing-cpu-or-memory-resources", - "/de/enterprise/2.16/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.16/admin/guides/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.16/admin/enterprise-management/increasing-cpu-or-memory-resources" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/increasing-cpu-or-memory-resources", - "/de/enterprise/2.17/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.17/admin/guides/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.17/admin/enterprise-management/increasing-cpu-or-memory-resources" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/increasing-storage-capacity", - "/de/enterprise/2.13/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.13/admin/guides/installation/increasing-storage-capacity", - "/de/enterprise/2.13/admin/enterprise-management/increasing-storage-capacity" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/increasing-storage-capacity", - "/de/enterprise/2.14/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.14/admin/guides/installation/increasing-storage-capacity", - "/de/enterprise/2.14/admin/enterprise-management/increasing-storage-capacity" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/increasing-storage-capacity", - "/de/enterprise/2.15/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.15/admin/guides/installation/increasing-storage-capacity", - "/de/enterprise/2.15/admin/enterprise-management/increasing-storage-capacity" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/increasing-storage-capacity", - "/de/enterprise/2.16/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.16/admin/guides/installation/increasing-storage-capacity", - "/de/enterprise/2.16/admin/enterprise-management/increasing-storage-capacity" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/increasing-storage-capacity", - "/de/enterprise/2.17/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.17/admin/guides/installation/increasing-storage-capacity", - "/de/enterprise/2.17/admin/enterprise-management/increasing-storage-capacity" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management", - "/de/enterprise/2.13/admin/enterprise-management" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management", - "/de/enterprise/2.14/admin/enterprise-management" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management", - "/de/enterprise/2.15/admin/enterprise-management" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management", - "/de/enterprise/2.16/admin/enterprise-management" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management", - "/de/enterprise/2.17/admin/enterprise-management" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/initializing-the-cluster", - "/de/enterprise/2.13/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.13/admin/guides/clustering/initializing-the-cluster", - "/de/enterprise/2.13/admin/enterprise-management/initializing-the-cluster" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/initializing-the-cluster", - "/de/enterprise/2.14/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.14/admin/guides/clustering/initializing-the-cluster", - "/de/enterprise/2.14/admin/enterprise-management/initializing-the-cluster" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/initializing-the-cluster", - "/de/enterprise/2.15/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.15/admin/guides/clustering/initializing-the-cluster", - "/de/enterprise/2.15/admin/enterprise-management/initializing-the-cluster" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/initializing-the-cluster", - "/de/enterprise/2.16/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.16/admin/guides/clustering/initializing-the-cluster", - "/de/enterprise/2.16/admin/enterprise-management/initializing-the-cluster" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/initializing-the-cluster", - "/de/enterprise/2.17/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.17/admin/guides/clustering/initializing-the-cluster", - "/de/enterprise/2.17/admin/enterprise-management/initializing-the-cluster" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.13/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.13/admin/guides/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.13/admin/enterprise-management/initiating-a-failover-to-your-replica-appliance" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.14/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.14/admin/guides/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.14/admin/enterprise-management/initiating-a-failover-to-your-replica-appliance" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.15/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.15/admin/guides/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.15/admin/enterprise-management/initiating-a-failover-to-your-replica-appliance" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.16/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.16/admin/guides/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.16/admin/enterprise-management/initiating-a-failover-to-your-replica-appliance" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.17/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.17/admin/guides/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.17/admin/enterprise-management/initiating-a-failover-to-your-replica-appliance" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-cluster", - "/de/enterprise/2.13/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-cluster", - "/de/enterprise/2.14/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-cluster", - "/de/enterprise/2.15/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-cluster", - "/de/enterprise/2.16/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/initiating-a-failover-to-your-replica-cluster", - "/de/enterprise/2.17/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.13/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.13/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.13/admin-guide/migrating", - "/de/enterprise/2.13/user/admin-guide/migrating", - "/de/enterprise/2.13/admin/guides-guide/migrating", - "/de/enterprise/2.13/admin/articles/migrating-github-enterprise", - "/de/enterprise/2.13/admin/guides/articles/migrating-github-enterprise", - "/de/enterprise/2.13/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x", - "/de/enterprise/2.13/admin/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.13/admin/guides/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.13/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x", - "/de/enterprise/2.13/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23", - "/de/enterprise/2.13/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.14/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.14/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.14/admin-guide/migrating", - "/de/enterprise/2.14/user/admin-guide/migrating", - "/de/enterprise/2.14/admin/guides-guide/migrating", - "/de/enterprise/2.14/admin/articles/migrating-github-enterprise", - "/de/enterprise/2.14/admin/guides/articles/migrating-github-enterprise", - "/de/enterprise/2.14/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x", - "/de/enterprise/2.14/admin/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.14/admin/guides/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.14/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x", - "/de/enterprise/2.14/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23", - "/de/enterprise/2.14/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.15/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.15/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.15/admin-guide/migrating", - "/de/enterprise/2.15/user/admin-guide/migrating", - "/de/enterprise/2.15/admin/guides-guide/migrating", - "/de/enterprise/2.15/admin/articles/migrating-github-enterprise", - "/de/enterprise/2.15/admin/guides/articles/migrating-github-enterprise", - "/de/enterprise/2.15/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x", - "/de/enterprise/2.15/admin/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.15/admin/guides/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.15/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x", - "/de/enterprise/2.15/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23", - "/de/enterprise/2.15/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.16/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.16/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.16/admin-guide/migrating", - "/de/enterprise/2.16/user/admin-guide/migrating", - "/de/enterprise/2.16/admin/guides-guide/migrating", - "/de/enterprise/2.16/admin/articles/migrating-github-enterprise", - "/de/enterprise/2.16/admin/guides/articles/migrating-github-enterprise", - "/de/enterprise/2.16/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x", - "/de/enterprise/2.16/admin/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.16/admin/guides/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.16/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x", - "/de/enterprise/2.16/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23", - "/de/enterprise/2.16/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.17/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.17/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.17/admin-guide/migrating", - "/de/enterprise/2.17/user/admin-guide/migrating", - "/de/enterprise/2.17/admin/guides-guide/migrating", - "/de/enterprise/2.17/admin/articles/migrating-github-enterprise", - "/de/enterprise/2.17/admin/guides/articles/migrating-github-enterprise", - "/de/enterprise/2.17/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x", - "/de/enterprise/2.17/admin/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.17/admin/guides/articles/upgrading-to-a-newer-release", - "/de/enterprise/2.17/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x", - "/de/enterprise/2.17/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23", - "/de/enterprise/2.17/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/monitoring-cluster-nodes", - "/de/enterprise/2.13/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.13/admin/guides/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.13/admin/enterprise-management/monitoring-cluster-nodes" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/monitoring-cluster-nodes", - "/de/enterprise/2.14/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.14/admin/guides/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.14/admin/enterprise-management/monitoring-cluster-nodes" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/monitoring-cluster-nodes", - "/de/enterprise/2.15/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.15/admin/guides/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.15/admin/enterprise-management/monitoring-cluster-nodes" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/monitoring-cluster-nodes", - "/de/enterprise/2.16/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.16/admin/guides/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.16/admin/enterprise-management/monitoring-cluster-nodes" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/monitoring-cluster-nodes", - "/de/enterprise/2.17/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.17/admin/guides/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.17/admin/enterprise-management/monitoring-cluster-nodes" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/monitoring-using-snmp", - "/de/enterprise/2.13/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.13/admin/guides/installation/monitoring-using-snmp", - "/de/enterprise/2.13/admin/articles/monitoring-using-snmp", - "/de/enterprise/2.13/admin/guides/articles/monitoring-using-snmp", - "/de/enterprise/2.13/admin/enterprise-management/monitoring-using-snmp" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/monitoring-using-snmp", - "/de/enterprise/2.14/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.14/admin/guides/installation/monitoring-using-snmp", - "/de/enterprise/2.14/admin/articles/monitoring-using-snmp", - "/de/enterprise/2.14/admin/guides/articles/monitoring-using-snmp", - "/de/enterprise/2.14/admin/enterprise-management/monitoring-using-snmp" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/monitoring-using-snmp", - "/de/enterprise/2.15/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.15/admin/guides/installation/monitoring-using-snmp", - "/de/enterprise/2.15/admin/articles/monitoring-using-snmp", - "/de/enterprise/2.15/admin/guides/articles/monitoring-using-snmp", - "/de/enterprise/2.15/admin/enterprise-management/monitoring-using-snmp" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/monitoring-using-snmp", - "/de/enterprise/2.16/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.16/admin/guides/installation/monitoring-using-snmp", - "/de/enterprise/2.16/admin/articles/monitoring-using-snmp", - "/de/enterprise/2.16/admin/guides/articles/monitoring-using-snmp", - "/de/enterprise/2.16/admin/enterprise-management/monitoring-using-snmp" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/monitoring-using-snmp", - "/de/enterprise/2.17/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.17/admin/guides/installation/monitoring-using-snmp", - "/de/enterprise/2.17/admin/articles/monitoring-using-snmp", - "/de/enterprise/2.17/admin/guides/articles/monitoring-using-snmp", - "/de/enterprise/2.17/admin/enterprise-management/monitoring-using-snmp" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/monitoring-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/system-resource-monitoring-and-alerting", - "/de/enterprise/2.13/admin/guides/installation/monitoring-your-github-enterprise-appliance", - "/de/enterprise/2.13/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/guides/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/enterprise-management/monitoring-your-appliance" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/monitoring-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/system-resource-monitoring-and-alerting", - "/de/enterprise/2.14/admin/guides/installation/monitoring-your-github-enterprise-appliance", - "/de/enterprise/2.14/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/guides/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/enterprise-management/monitoring-your-appliance" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/monitoring-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/system-resource-monitoring-and-alerting", - "/de/enterprise/2.15/admin/guides/installation/monitoring-your-github-enterprise-appliance", - "/de/enterprise/2.15/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/enterprise-management/monitoring-your-appliance" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/monitoring-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/system-resource-monitoring-and-alerting", - "/de/enterprise/2.16/admin/guides/installation/monitoring-your-github-enterprise-appliance", - "/de/enterprise/2.16/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/enterprise-management/monitoring-your-appliance" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/monitoring-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/system-resource-monitoring-and-alerting", - "/de/enterprise/2.17/admin/guides/installation/monitoring-your-github-enterprise-appliance", - "/de/enterprise/2.17/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/enterprise-management/monitoring-your-appliance" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/recommended-alert-thresholds", - "/de/enterprise/2.13/admin/guides/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.13/admin/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.13/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.13/admin/guides/installation/recommended-alert-thresholds", - "/de/enterprise/2.13/admin/enterprise-management/recommended-alert-thresholds" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/recommended-alert-thresholds", - "/de/enterprise/2.14/admin/guides/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.14/admin/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.14/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.14/admin/guides/installation/recommended-alert-thresholds", - "/de/enterprise/2.14/admin/enterprise-management/recommended-alert-thresholds" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/recommended-alert-thresholds", - "/de/enterprise/2.15/admin/guides/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.15/admin/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.15/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.15/admin/guides/installation/recommended-alert-thresholds", - "/de/enterprise/2.15/admin/enterprise-management/recommended-alert-thresholds" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/recommended-alert-thresholds", - "/de/enterprise/2.16/admin/guides/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.16/admin/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.16/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.16/admin/guides/installation/recommended-alert-thresholds", - "/de/enterprise/2.16/admin/enterprise-management/recommended-alert-thresholds" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/recommended-alert-thresholds", - "/de/enterprise/2.17/admin/guides/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.17/admin/installation/about-recommended-alert-thresholds", - "/de/enterprise/2.17/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.17/admin/guides/installation/recommended-alert-thresholds", - "/de/enterprise/2.17/admin/enterprise-management/recommended-alert-thresholds" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/recovering-a-high-availability-configuration", - "/de/enterprise/2.13/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.13/admin/guides/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.13/admin/enterprise-management/recovering-a-high-availability-configuration" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/recovering-a-high-availability-configuration", - "/de/enterprise/2.14/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.14/admin/guides/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.14/admin/enterprise-management/recovering-a-high-availability-configuration" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/recovering-a-high-availability-configuration", - "/de/enterprise/2.15/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.15/admin/guides/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.15/admin/enterprise-management/recovering-a-high-availability-configuration" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/recovering-a-high-availability-configuration", - "/de/enterprise/2.16/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.16/admin/guides/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.16/admin/enterprise-management/recovering-a-high-availability-configuration" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/recovering-a-high-availability-configuration", - "/de/enterprise/2.17/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.17/admin/guides/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.17/admin/enterprise-management/recovering-a-high-availability-configuration" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/removing-a-high-availability-replica", - "/de/enterprise/2.13/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.13/admin/guides/installation/removing-a-high-availability-replica", - "/de/enterprise/2.13/admin/enterprise-management/removing-a-high-availability-replica" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/removing-a-high-availability-replica", - "/de/enterprise/2.14/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.14/admin/guides/installation/removing-a-high-availability-replica", - "/de/enterprise/2.14/admin/enterprise-management/removing-a-high-availability-replica" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/removing-a-high-availability-replica", - "/de/enterprise/2.15/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.15/admin/guides/installation/removing-a-high-availability-replica", - "/de/enterprise/2.15/admin/enterprise-management/removing-a-high-availability-replica" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/removing-a-high-availability-replica", - "/de/enterprise/2.16/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.16/admin/guides/installation/removing-a-high-availability-replica", - "/de/enterprise/2.16/admin/enterprise-management/removing-a-high-availability-replica" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/removing-a-high-availability-replica", - "/de/enterprise/2.17/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.17/admin/guides/installation/removing-a-high-availability-replica", - "/de/enterprise/2.17/admin/enterprise-management/removing-a-high-availability-replica" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/replacing-a-cluster-node", - "/de/enterprise/2.13/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.13/admin/guides/clustering/replacing-a-cluster-node", - "/de/enterprise/2.13/admin/enterprise-management/replacing-a-cluster-node" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/replacing-a-cluster-node", - "/de/enterprise/2.14/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.14/admin/guides/clustering/replacing-a-cluster-node", - "/de/enterprise/2.14/admin/enterprise-management/replacing-a-cluster-node" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/replacing-a-cluster-node", - "/de/enterprise/2.15/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.15/admin/guides/clustering/replacing-a-cluster-node", - "/de/enterprise/2.15/admin/enterprise-management/replacing-a-cluster-node" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/replacing-a-cluster-node", - "/de/enterprise/2.16/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.16/admin/guides/clustering/replacing-a-cluster-node", - "/de/enterprise/2.16/admin/enterprise-management/replacing-a-cluster-node" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/replacing-a-cluster-node", - "/de/enterprise/2.17/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.17/admin/guides/clustering/replacing-a-cluster-node", - "/de/enterprise/2.17/admin/enterprise-management/replacing-a-cluster-node" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/setting-up-external-monitoring", - "/de/enterprise/2.13/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.13/admin/guides/installation/setting-up-external-monitoring", - "/de/enterprise/2.13/admin/enterprise-management/setting-up-external-monitoring" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/setting-up-external-monitoring", - "/de/enterprise/2.14/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.14/admin/guides/installation/setting-up-external-monitoring", - "/de/enterprise/2.14/admin/enterprise-management/setting-up-external-monitoring" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/setting-up-external-monitoring", - "/de/enterprise/2.15/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.15/admin/guides/installation/setting-up-external-monitoring", - "/de/enterprise/2.15/admin/enterprise-management/setting-up-external-monitoring" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/setting-up-external-monitoring", - "/de/enterprise/2.16/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.16/admin/guides/installation/setting-up-external-monitoring", - "/de/enterprise/2.16/admin/enterprise-management/setting-up-external-monitoring" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/setting-up-external-monitoring", - "/de/enterprise/2.17/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.17/admin/guides/installation/setting-up-external-monitoring", - "/de/enterprise/2.17/admin/enterprise-management/setting-up-external-monitoring" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.13/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm", - "/de/enterprise/2.13/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources", - "/de/enterprise/2.13/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.13/admin/guides/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.13/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.14/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm", - "/de/enterprise/2.14/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources", - "/de/enterprise/2.14/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.14/admin/guides/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.14/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.15/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm", - "/de/enterprise/2.15/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources", - "/de/enterprise/2.15/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.15/admin/guides/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.15/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.16/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm", - "/de/enterprise/2.16/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources", - "/de/enterprise/2.16/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.16/admin/guides/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.16/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.17/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm", - "/de/enterprise/2.17/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources", - "/de/enterprise/2.17/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.17/admin/guides/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.17/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/upgrade-requirements", - "/de/enterprise/2.13/admin/installation/upgrade-requirements", - "/de/enterprise/2.13/admin/guides/installation/upgrade-requirements", - "/de/enterprise/2.13/admin/guides/installation/finding-the-current-github-enterprise-release", - "/de/enterprise/2.13/admin/enterprise-management/upgrade-requirements" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/upgrade-requirements", - "/de/enterprise/2.14/admin/installation/upgrade-requirements", - "/de/enterprise/2.14/admin/guides/installation/upgrade-requirements", - "/de/enterprise/2.14/admin/guides/installation/finding-the-current-github-enterprise-release", - "/de/enterprise/2.14/admin/enterprise-management/upgrade-requirements" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/upgrade-requirements", - "/de/enterprise/2.15/admin/installation/upgrade-requirements", - "/de/enterprise/2.15/admin/guides/installation/upgrade-requirements", - "/de/enterprise/2.15/admin/guides/installation/finding-the-current-github-enterprise-release", - "/de/enterprise/2.15/admin/enterprise-management/upgrade-requirements" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/upgrade-requirements", - "/de/enterprise/2.16/admin/installation/upgrade-requirements", - "/de/enterprise/2.16/admin/guides/installation/upgrade-requirements", - "/de/enterprise/2.16/admin/guides/installation/finding-the-current-github-enterprise-release", - "/de/enterprise/2.16/admin/enterprise-management/upgrade-requirements" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/upgrade-requirements", - "/de/enterprise/2.17/admin/installation/upgrade-requirements", - "/de/enterprise/2.17/admin/guides/installation/upgrade-requirements", - "/de/enterprise/2.17/admin/guides/installation/finding-the-current-github-enterprise-release", - "/de/enterprise/2.17/admin/enterprise-management/upgrade-requirements" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/upgrading-a-cluster", - "/de/enterprise/2.13/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.13/admin/guides/clustering/upgrading-a-cluster", - "/de/enterprise/2.13/admin/enterprise-management/upgrading-a-cluster" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/upgrading-a-cluster", - "/de/enterprise/2.14/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.14/admin/guides/clustering/upgrading-a-cluster", - "/de/enterprise/2.14/admin/enterprise-management/upgrading-a-cluster" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/upgrading-a-cluster", - "/de/enterprise/2.15/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.15/admin/guides/clustering/upgrading-a-cluster", - "/de/enterprise/2.15/admin/enterprise-management/upgrading-a-cluster" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/upgrading-a-cluster", - "/de/enterprise/2.16/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.16/admin/guides/clustering/upgrading-a-cluster", - "/de/enterprise/2.16/admin/enterprise-management/upgrading-a-cluster" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/upgrading-a-cluster", - "/de/enterprise/2.17/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.17/admin/guides/clustering/upgrading-a-cluster", - "/de/enterprise/2.17/admin/enterprise-management/upgrading-a-cluster" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-management/upgrading-github-enterprise-server", - "/de/enterprise/2.13/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.13/admin/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.13/admin/guides/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.13/admin/articles/migrations-and-upgrades", - "/de/enterprise/2.13/admin/guides/articles/migrations-and-upgrades", - "/de/enterprise/2.13/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine", - "/de/enterprise/2.13/admin/guides/installation/upgrade-packages-for-older-releases", - "/de/enterprise/2.13/admin/articles/upgrading-older-installations", - "/de/enterprise/2.13/admin/guides/articles/upgrading-older-installations", - "/de/enterprise/2.13/admin/hidden/upgrading-older-installations", - "/de/enterprise/2.13/admin/guides/hidden/upgrading-older-installations", - "/de/enterprise/2.13/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.13/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.13/admin/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.13/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.13/admin/guides/installation/upgrading-github-enterprise", - "/de/enterprise/2.13/admin/enterprise-management/upgrading-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-management/upgrading-github-enterprise-server", - "/de/enterprise/2.14/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.14/admin/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.14/admin/guides/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.14/admin/articles/migrations-and-upgrades", - "/de/enterprise/2.14/admin/guides/articles/migrations-and-upgrades", - "/de/enterprise/2.14/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine", - "/de/enterprise/2.14/admin/guides/installation/upgrade-packages-for-older-releases", - "/de/enterprise/2.14/admin/articles/upgrading-older-installations", - "/de/enterprise/2.14/admin/guides/articles/upgrading-older-installations", - "/de/enterprise/2.14/admin/hidden/upgrading-older-installations", - "/de/enterprise/2.14/admin/guides/hidden/upgrading-older-installations", - "/de/enterprise/2.14/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.14/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.14/admin/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.14/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.14/admin/guides/installation/upgrading-github-enterprise", - "/de/enterprise/2.14/admin/enterprise-management/upgrading-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-management/upgrading-github-enterprise-server", - "/de/enterprise/2.15/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.15/admin/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.15/admin/guides/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.15/admin/articles/migrations-and-upgrades", - "/de/enterprise/2.15/admin/guides/articles/migrations-and-upgrades", - "/de/enterprise/2.15/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine", - "/de/enterprise/2.15/admin/guides/installation/upgrade-packages-for-older-releases", - "/de/enterprise/2.15/admin/articles/upgrading-older-installations", - "/de/enterprise/2.15/admin/guides/articles/upgrading-older-installations", - "/de/enterprise/2.15/admin/hidden/upgrading-older-installations", - "/de/enterprise/2.15/admin/guides/hidden/upgrading-older-installations", - "/de/enterprise/2.15/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.15/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.15/admin/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.15/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.15/admin/guides/installation/upgrading-github-enterprise", - "/de/enterprise/2.15/admin/enterprise-management/upgrading-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-management/upgrading-github-enterprise-server", - "/de/enterprise/2.16/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.16/admin/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.16/admin/guides/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.16/admin/articles/migrations-and-upgrades", - "/de/enterprise/2.16/admin/guides/articles/migrations-and-upgrades", - "/de/enterprise/2.16/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine", - "/de/enterprise/2.16/admin/guides/installation/upgrade-packages-for-older-releases", - "/de/enterprise/2.16/admin/articles/upgrading-older-installations", - "/de/enterprise/2.16/admin/guides/articles/upgrading-older-installations", - "/de/enterprise/2.16/admin/hidden/upgrading-older-installations", - "/de/enterprise/2.16/admin/guides/hidden/upgrading-older-installations", - "/de/enterprise/2.16/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.16/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.16/admin/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.16/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.16/admin/guides/installation/upgrading-github-enterprise", - "/de/enterprise/2.16/admin/enterprise-management/upgrading-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-management/upgrading-github-enterprise-server", - "/de/enterprise/2.17/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.17/admin/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.17/admin/guides/articles/upgrading-to-the-latest-release", - "/de/enterprise/2.17/admin/articles/migrations-and-upgrades", - "/de/enterprise/2.17/admin/guides/articles/migrations-and-upgrades", - "/de/enterprise/2.17/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine", - "/de/enterprise/2.17/admin/guides/installation/upgrade-packages-for-older-releases", - "/de/enterprise/2.17/admin/articles/upgrading-older-installations", - "/de/enterprise/2.17/admin/guides/articles/upgrading-older-installations", - "/de/enterprise/2.17/admin/hidden/upgrading-older-installations", - "/de/enterprise/2.17/admin/guides/hidden/upgrading-older-installations", - "/de/enterprise/2.17/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.17/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program", - "/de/enterprise/2.17/admin/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.17/admin/guides/hidden/upgrading-github-enterprise-using-a-hotpatch", - "/de/enterprise/2.17/admin/guides/installation/upgrading-github-enterprise", - "/de/enterprise/2.17/admin/enterprise-management/upgrading-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.13/admin/enterprise-support/about-github-enterprise-support" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.14/admin/enterprise-support/about-github-enterprise-support" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.15/admin/enterprise-support/about-github-enterprise-support" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.16/admin/enterprise-support/about-github-enterprise-support" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.17/admin/enterprise-support/about-github-enterprise-support" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/enterprise-support/about-premium-support-for-github-enterprise", - "/de/enterprise/2.13/admin/guides/enterprise-support/about-premium-support", - "/de/enterprise/2.13/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/enterprise-support/about-premium-support-for-github-enterprise", - "/de/enterprise/2.14/admin/guides/enterprise-support/about-premium-support", - "/de/enterprise/2.14/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/enterprise-support/about-premium-support-for-github-enterprise", - "/de/enterprise/2.15/admin/guides/enterprise-support/about-premium-support", - "/de/enterprise/2.15/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-premium-support-for-github-enterprise", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-premium-support", - "/de/enterprise/2.16/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-premium-support-for-github-enterprise", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-premium-support", - "/de/enterprise/2.17/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.13/admin/enterprise-support/about-github-premium-support-for-github-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.14/admin/enterprise-support/about-github-premium-support-for-github-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.15/admin/enterprise-support/about-github-premium-support-for-github-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.16/admin/enterprise-support/about-github-premium-support-for-github-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.17/admin/enterprise-support/about-github-premium-support-for-github-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.13/admin/enterprise-support/about-support-for-advanced-security" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.14/admin/enterprise-support/about-support-for-advanced-security" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.15/admin/enterprise-support/about-support-for-advanced-security" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.16/admin/enterprise-support/about-support-for-advanced-security" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.17/admin/enterprise-support/about-support-for-advanced-security" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support", - "/de/enterprise/2.13/admin/enterprise-support" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support", - "/de/enterprise/2.14/admin/enterprise-support" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support", - "/de/enterprise/2.15/admin/enterprise-support" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support", - "/de/enterprise/2.16/admin/enterprise-support" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support", - "/de/enterprise/2.17/admin/enterprise-support" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/overview", - "/de/enterprise/2.13/admin/enterprise-support/overview" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/overview", - "/de/enterprise/2.14/admin/enterprise-support/overview" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/overview", - "/de/enterprise/2.15/admin/enterprise-support/overview" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/overview", - "/de/enterprise/2.16/admin/enterprise-support/overview" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/overview", - "/de/enterprise/2.17/admin/enterprise-support/overview" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.13/admin/enterprise-support/preparing-to-submit-a-ticket" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.14/admin/enterprise-support/preparing-to-submit-a-ticket" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.15/admin/enterprise-support/preparing-to-submit-a-ticket" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.16/admin/enterprise-support/preparing-to-submit-a-ticket" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.17/admin/enterprise-support/preparing-to-submit-a-ticket" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.13/admin/guides/installation/troubleshooting", - "/de/enterprise/2.13/admin/articles/support-bundles", - "/de/enterprise/2.13/admin/guides/articles/support-bundles", - "/de/enterprise/2.13/admin/guides/enterprise-support/providing-data-to-github-enterprise-support", - "/de/enterprise/2.13/admin/enterprise-support/providing-data-to-github-support" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.14/admin/guides/installation/troubleshooting", - "/de/enterprise/2.14/admin/articles/support-bundles", - "/de/enterprise/2.14/admin/guides/articles/support-bundles", - "/de/enterprise/2.14/admin/guides/enterprise-support/providing-data-to-github-enterprise-support", - "/de/enterprise/2.14/admin/enterprise-support/providing-data-to-github-support" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.15/admin/guides/installation/troubleshooting", - "/de/enterprise/2.15/admin/articles/support-bundles", - "/de/enterprise/2.15/admin/guides/articles/support-bundles", - "/de/enterprise/2.15/admin/guides/enterprise-support/providing-data-to-github-enterprise-support", - "/de/enterprise/2.15/admin/enterprise-support/providing-data-to-github-support" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.16/admin/guides/installation/troubleshooting", - "/de/enterprise/2.16/admin/articles/support-bundles", - "/de/enterprise/2.16/admin/guides/articles/support-bundles", - "/de/enterprise/2.16/admin/guides/enterprise-support/providing-data-to-github-enterprise-support", - "/de/enterprise/2.16/admin/enterprise-support/providing-data-to-github-support" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.17/admin/guides/installation/troubleshooting", - "/de/enterprise/2.17/admin/articles/support-bundles", - "/de/enterprise/2.17/admin/guides/articles/support-bundles", - "/de/enterprise/2.17/admin/guides/enterprise-support/providing-data-to-github-enterprise-support", - "/de/enterprise/2.17/admin/enterprise-support/providing-data-to-github-support" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/reaching-github-support", - "/de/enterprise/2.13/admin/guides/enterprise-support/reaching-github-enterprise-support", - "/de/enterprise/2.13/admin/enterprise-support/reaching-github-support" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/reaching-github-support", - "/de/enterprise/2.14/admin/guides/enterprise-support/reaching-github-enterprise-support", - "/de/enterprise/2.14/admin/enterprise-support/reaching-github-support" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/reaching-github-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/reaching-github-enterprise-support", - "/de/enterprise/2.15/admin/enterprise-support/reaching-github-support" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/reaching-github-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/reaching-github-enterprise-support", - "/de/enterprise/2.16/admin/enterprise-support/reaching-github-support" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/reaching-github-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/reaching-github-enterprise-support", - "/de/enterprise/2.17/admin/enterprise-support/reaching-github-support" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.13/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support", - "/de/enterprise/2.13/admin/enterprise-support/receiving-help-from-github-support" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.14/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support", - "/de/enterprise/2.14/admin/enterprise-support/receiving-help-from-github-support" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support", - "/de/enterprise/2.15/admin/enterprise-support/receiving-help-from-github-support" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support", - "/de/enterprise/2.16/admin/enterprise-support/receiving-help-from-github-support" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support", - "/de/enterprise/2.17/admin/enterprise-support/receiving-help-from-github-support" - ], - [ - "/de/enterprise/2.13/admin/guides/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.13/admin/enterprise-support/submitting-a-ticket" - ], - [ - "/de/enterprise/2.14/admin/guides/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.14/admin/enterprise-support/submitting-a-ticket" - ], - [ - "/de/enterprise/2.15/admin/guides/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.15/admin/enterprise-support/submitting-a-ticket" - ], - [ - "/de/enterprise/2.16/admin/guides/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.16/admin/enterprise-support/submitting-a-ticket" - ], - [ - "/de/enterprise/2.17/admin/guides/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.17/admin/enterprise-support/submitting-a-ticket" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.13/admin/github-actions/about-using-actions-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.14/admin/github-actions/about-using-actions-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.15/admin/github-actions/about-using-actions-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.16/admin/github-actions/about-using-actions-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/user-actions/about-using-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/github-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/user-actions/about-using-githubcom-actions-on-github-enterprise-server", - "/de/enterprise/2.17/admin/github-actions/about-using-actions-on-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.13/admin/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.13/admin/guides/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.13/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.14/admin/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.14/admin/guides/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.14/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.15/admin/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.15/admin/guides/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.15/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.16/admin/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.16/admin/guides/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.16/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.17/admin/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.17/admin/guides/user-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect", - "/de/enterprise/2.17/admin/github-actions/enabling-automatic-access-to-githubcom-actions-using-github-connect" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/github-actions/enabling-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/github-actions/enabling-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/github-actions/enabling-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/github-actions/enabling-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/user-actions/enabling-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/github-actions/enabling-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.13/admin/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.13/admin/guides/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.13/admin/github-actions/enforcing-github-actions-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.14/admin/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.14/admin/guides/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.14/admin/github-actions/enforcing-github-actions-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.15/admin/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.15/admin/guides/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.15/admin/github-actions/enforcing-github-actions-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.16/admin/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.16/admin/guides/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.16/admin/github-actions/enforcing-github-actions-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.17/admin/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.17/admin/guides/user-actions/enforcing-github-actions-policies-for-your-enterprise", - "/de/enterprise/2.17/admin/github-actions/enforcing-github-actions-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.13/admin/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.13/admin/guides/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.13/admin/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.13/admin/guides/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.13/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.14/admin/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.14/admin/guides/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.14/admin/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.14/admin/guides/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.14/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.15/admin/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.15/admin/guides/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.15/admin/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.15/admin/guides/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.15/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.16/admin/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.16/admin/guides/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.16/admin/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.16/admin/guides/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.16/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/user-actions/getting-started-with-github-actions-for-github-enterprise-server", - "/de/enterprise/2.17/admin/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.17/admin/guides/github-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.17/admin/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.17/admin/guides/user-actions/enabling-github-actions-and-configuring-storage", - "/de/enterprise/2.17/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions", - "/de/enterprise/2.13/admin/user-actions", - "/de/enterprise/2.13/admin/guides/user-actions", - "/de/enterprise/2.13/admin/github-actions" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions", - "/de/enterprise/2.14/admin/user-actions", - "/de/enterprise/2.14/admin/guides/user-actions", - "/de/enterprise/2.14/admin/github-actions" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions", - "/de/enterprise/2.15/admin/user-actions", - "/de/enterprise/2.15/admin/guides/user-actions", - "/de/enterprise/2.15/admin/github-actions" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions", - "/de/enterprise/2.16/admin/user-actions", - "/de/enterprise/2.16/admin/guides/user-actions", - "/de/enterprise/2.16/admin/github-actions" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions", - "/de/enterprise/2.17/admin/user-actions", - "/de/enterprise/2.17/admin/guides/user-actions", - "/de/enterprise/2.17/admin/github-actions" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.13/admin/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.13/admin/guides/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.13/admin/github-actions/managing-access-to-actions-from-githubcom" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.14/admin/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.14/admin/guides/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.14/admin/github-actions/managing-access-to-actions-from-githubcom" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.15/admin/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.15/admin/guides/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.15/admin/github-actions/managing-access-to-actions-from-githubcom" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.16/admin/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.16/admin/guides/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.16/admin/github-actions/managing-access-to-actions-from-githubcom" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.17/admin/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.17/admin/guides/user-actions/managing-access-to-actions-from-githubcom", - "/de/enterprise/2.17/admin/github-actions/managing-access-to-actions-from-githubcom" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.13/admin/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.13/admin/guides/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.13/admin/github-actions/manually-syncing-actions-from-githubcom" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.14/admin/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.14/admin/guides/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.14/admin/github-actions/manually-syncing-actions-from-githubcom" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.15/admin/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.15/admin/guides/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.15/admin/github-actions/manually-syncing-actions-from-githubcom" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.16/admin/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.16/admin/guides/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.16/admin/github-actions/manually-syncing-actions-from-githubcom" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.17/admin/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.17/admin/guides/user-actions/manually-syncing-actions-from-githubcom", - "/de/enterprise/2.17/admin/github-actions/manually-syncing-actions-from-githubcom" - ], - [ - "/de/enterprise/2.13/admin/guides/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.13/admin/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.13/admin/guides/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.13/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access" - ], - [ - "/de/enterprise/2.14/admin/guides/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.14/admin/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.14/admin/guides/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.14/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access" - ], - [ - "/de/enterprise/2.15/admin/guides/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.15/admin/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.15/admin/guides/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.15/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access" - ], - [ - "/de/enterprise/2.16/admin/guides/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.16/admin/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.16/admin/guides/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.16/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access" - ], - [ - "/de/enterprise/2.17/admin/guides/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.17/admin/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.17/admin/guides/user-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access", - "/de/enterprise/2.17/admin/github-actions/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access" - ], - [ - "/de/enterprise/2.13/admin/guides", - "/de/enterprise/2.13/admin/hidden/migrating-from-github-fi", - "/de/enterprise/2.13/admin/guides/hidden/migrating-from-github-fi", - "/de/enterprise/2.13/admin" - ], - [ - "/de/enterprise/2.14/admin/guides", - "/de/enterprise/2.14/admin/hidden/migrating-from-github-fi", - "/de/enterprise/2.14/admin/guides/hidden/migrating-from-github-fi", - "/de/enterprise/2.14/admin" - ], - [ - "/de/enterprise/2.15/admin/guides", - "/de/enterprise/2.15/admin/hidden/migrating-from-github-fi", - "/de/enterprise/2.15/admin/guides/hidden/migrating-from-github-fi", - "/de/enterprise/2.15/admin" - ], - [ - "/de/enterprise/2.16/admin/guides", - "/de/enterprise/2.16/admin/hidden/migrating-from-github-fi", - "/de/enterprise/2.16/admin/guides/hidden/migrating-from-github-fi", - "/de/enterprise/2.16/admin" - ], - [ - "/de/enterprise/2.17/admin/guides", - "/de/enterprise/2.17/admin/hidden/migrating-from-github-fi", - "/de/enterprise/2.17/admin/guides/hidden/migrating-from-github-fi", - "/de/enterprise/2.17/admin" - ], - [ - "/de/enterprise/2.13/admin/guides/installation", - "/de/enterprise/2.13/admin-guide", - "/de/enterprise/2.13/user/admin-guide", - "/de/enterprise/2.13/admin/guides-guide", - "/de/enterprise/2.13/admin/categories/customization", - "/de/enterprise/2.13/admin/guides/categories/customization", - "/de/enterprise/2.13/admin/categories/general", - "/de/enterprise/2.13/admin/guides/categories/general", - "/de/enterprise/2.13/admin/categories/logging-and-monitoring", - "/de/enterprise/2.13/admin/guides/categories/logging-and-monitoring", - "/de/enterprise/2.13/admin/installation" - ], - [ - "/de/enterprise/2.14/admin/guides/installation", - "/de/enterprise/2.14/admin-guide", - "/de/enterprise/2.14/user/admin-guide", - "/de/enterprise/2.14/admin/guides-guide", - "/de/enterprise/2.14/admin/categories/customization", - "/de/enterprise/2.14/admin/guides/categories/customization", - "/de/enterprise/2.14/admin/categories/general", - "/de/enterprise/2.14/admin/guides/categories/general", - "/de/enterprise/2.14/admin/categories/logging-and-monitoring", - "/de/enterprise/2.14/admin/guides/categories/logging-and-monitoring", - "/de/enterprise/2.14/admin/installation" - ], - [ - "/de/enterprise/2.15/admin/guides/installation", - "/de/enterprise/2.15/admin-guide", - "/de/enterprise/2.15/user/admin-guide", - "/de/enterprise/2.15/admin/guides-guide", - "/de/enterprise/2.15/admin/categories/customization", - "/de/enterprise/2.15/admin/guides/categories/customization", - "/de/enterprise/2.15/admin/categories/general", - "/de/enterprise/2.15/admin/guides/categories/general", - "/de/enterprise/2.15/admin/categories/logging-and-monitoring", - "/de/enterprise/2.15/admin/guides/categories/logging-and-monitoring", - "/de/enterprise/2.15/admin/installation" - ], - [ - "/de/enterprise/2.16/admin/guides/installation", - "/de/enterprise/2.16/admin-guide", - "/de/enterprise/2.16/user/admin-guide", - "/de/enterprise/2.16/admin/guides-guide", - "/de/enterprise/2.16/admin/categories/customization", - "/de/enterprise/2.16/admin/guides/categories/customization", - "/de/enterprise/2.16/admin/categories/general", - "/de/enterprise/2.16/admin/guides/categories/general", - "/de/enterprise/2.16/admin/categories/logging-and-monitoring", - "/de/enterprise/2.16/admin/guides/categories/logging-and-monitoring", - "/de/enterprise/2.16/admin/installation" - ], - [ - "/de/enterprise/2.17/admin/guides/installation", - "/de/enterprise/2.17/admin-guide", - "/de/enterprise/2.17/user/admin-guide", - "/de/enterprise/2.17/admin/guides-guide", - "/de/enterprise/2.17/admin/categories/customization", - "/de/enterprise/2.17/admin/guides/categories/customization", - "/de/enterprise/2.17/admin/categories/general", - "/de/enterprise/2.17/admin/guides/categories/general", - "/de/enterprise/2.17/admin/categories/logging-and-monitoring", - "/de/enterprise/2.17/admin/guides/categories/logging-and-monitoring", - "/de/enterprise/2.17/admin/installation" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-aws", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-aws" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-aws", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-aws" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-aws", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-aws" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-aws", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-aws" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-aws", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-aws" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-azure", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-azure" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-azure", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-azure" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-azure", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-azure" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-azure", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-azure" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-azure", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-azure" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-google-cloud-platform" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-google-cloud-platform" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-google-cloud-platform" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-google-cloud-platform" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-google-cloud-platform" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-hyper-v", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-hyper-v" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-hyper-v", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-hyper-v" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-hyper-v", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-hyper-v" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-hyper-v", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-hyper-v" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-hyper-v", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-hyper-v" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-openstack-kvm", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-openstack-kvm" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-openstack-kvm", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-openstack-kvm" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-openstack-kvm", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-openstack-kvm" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-openstack-kvm", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-openstack-kvm" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-openstack-kvm", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-openstack-kvm" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.13/admin/articles/getting-started-with-vmware", - "/de/enterprise/2.13/admin/guides/articles/getting-started-with-vmware", - "/de/enterprise/2.13/admin/articles/installing-vmware-tools", - "/de/enterprise/2.13/admin/guides/articles/installing-vmware-tools", - "/de/enterprise/2.13/admin/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.13/admin/guides/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-vmware", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-vmware" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.14/admin/articles/getting-started-with-vmware", - "/de/enterprise/2.14/admin/guides/articles/getting-started-with-vmware", - "/de/enterprise/2.14/admin/articles/installing-vmware-tools", - "/de/enterprise/2.14/admin/guides/articles/installing-vmware-tools", - "/de/enterprise/2.14/admin/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.14/admin/guides/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-vmware", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-vmware" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.15/admin/articles/getting-started-with-vmware", - "/de/enterprise/2.15/admin/guides/articles/getting-started-with-vmware", - "/de/enterprise/2.15/admin/articles/installing-vmware-tools", - "/de/enterprise/2.15/admin/guides/articles/installing-vmware-tools", - "/de/enterprise/2.15/admin/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.15/admin/guides/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-vmware", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-vmware" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.16/admin/articles/getting-started-with-vmware", - "/de/enterprise/2.16/admin/guides/articles/getting-started-with-vmware", - "/de/enterprise/2.16/admin/articles/installing-vmware-tools", - "/de/enterprise/2.16/admin/guides/articles/installing-vmware-tools", - "/de/enterprise/2.16/admin/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.16/admin/guides/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-vmware", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-vmware" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.17/admin/articles/getting-started-with-vmware", - "/de/enterprise/2.17/admin/guides/articles/getting-started-with-vmware", - "/de/enterprise/2.17/admin/articles/installing-vmware-tools", - "/de/enterprise/2.17/admin/guides/articles/installing-vmware-tools", - "/de/enterprise/2.17/admin/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.17/admin/guides/articles/vmware-esxi-virtual-machine-maximums", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-vmware", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-vmware" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.13/admin/guides/installation/installing-github-enterprise-on-xenserver", - "/de/enterprise/2.13/admin/installation/installing-github-enterprise-server-on-xenserver" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.14/admin/guides/installation/installing-github-enterprise-on-xenserver", - "/de/enterprise/2.14/admin/installation/installing-github-enterprise-server-on-xenserver" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-on-xenserver", - "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-xenserver" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-on-xenserver", - "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-xenserver" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-on-xenserver", - "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-xenserver" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/supported-platforms", - "/de/enterprise/2.13/admin/guides/installation/provisioning-and-installation", - "/de/enterprise/2.13/admin/guides/installation/setting-up-a-github-enterprise-instance", - "/de/enterprise/2.13/admin/installation/setting-up-a-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/supported-platforms", - "/de/enterprise/2.14/admin/guides/installation/provisioning-and-installation", - "/de/enterprise/2.14/admin/guides/installation/setting-up-a-github-enterprise-instance", - "/de/enterprise/2.14/admin/installation/setting-up-a-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/supported-platforms", - "/de/enterprise/2.15/admin/guides/installation/provisioning-and-installation", - "/de/enterprise/2.15/admin/guides/installation/setting-up-a-github-enterprise-instance", - "/de/enterprise/2.15/admin/installation/setting-up-a-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/supported-platforms", - "/de/enterprise/2.16/admin/guides/installation/provisioning-and-installation", - "/de/enterprise/2.16/admin/guides/installation/setting-up-a-github-enterprise-instance", - "/de/enterprise/2.16/admin/installation/setting-up-a-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/supported-platforms", - "/de/enterprise/2.17/admin/guides/installation/provisioning-and-installation", - "/de/enterprise/2.17/admin/guides/installation/setting-up-a-github-enterprise-instance", - "/de/enterprise/2.17/admin/installation/setting-up-a-github-enterprise-server-instance" - ], - [ - "/de/enterprise/2.13/admin/guides/installation/setting-up-a-staging-instance", - "/de/enterprise/2.13/admin/installation/setting-up-a-staging-instance" - ], - [ - "/de/enterprise/2.14/admin/guides/installation/setting-up-a-staging-instance", - "/de/enterprise/2.14/admin/installation/setting-up-a-staging-instance" - ], - [ - "/de/enterprise/2.15/admin/guides/installation/setting-up-a-staging-instance", - "/de/enterprise/2.15/admin/installation/setting-up-a-staging-instance" - ], - [ - "/de/enterprise/2.16/admin/guides/installation/setting-up-a-staging-instance", - "/de/enterprise/2.16/admin/installation/setting-up-a-staging-instance" - ], - [ - "/de/enterprise/2.17/admin/guides/installation/setting-up-a-staging-instance", - "/de/enterprise/2.17/admin/installation/setting-up-a-staging-instance" - ], - [ - "/de/enterprise/2.13/admin/guides/overview/about-enterprise-accounts", - "/de/enterprise/2.13/admin/installation/about-enterprise-accounts", - "/de/enterprise/2.13/admin/guides/installation/about-enterprise-accounts", - "/de/enterprise/2.13/admin/overview/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.14/admin/guides/overview/about-enterprise-accounts", - "/de/enterprise/2.14/admin/installation/about-enterprise-accounts", - "/de/enterprise/2.14/admin/guides/installation/about-enterprise-accounts", - "/de/enterprise/2.14/admin/overview/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.15/admin/guides/overview/about-enterprise-accounts", - "/de/enterprise/2.15/admin/installation/about-enterprise-accounts", - "/de/enterprise/2.15/admin/guides/installation/about-enterprise-accounts", - "/de/enterprise/2.15/admin/overview/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.16/admin/guides/overview/about-enterprise-accounts", - "/de/enterprise/2.16/admin/installation/about-enterprise-accounts", - "/de/enterprise/2.16/admin/guides/installation/about-enterprise-accounts", - "/de/enterprise/2.16/admin/overview/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.17/admin/guides/overview/about-enterprise-accounts", - "/de/enterprise/2.17/admin/installation/about-enterprise-accounts", - "/de/enterprise/2.17/admin/guides/installation/about-enterprise-accounts", - "/de/enterprise/2.17/admin/overview/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.13/admin/guides/overview/about-the-github-enterprise-api", - "/de/enterprise/2.13/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.13/admin/guides/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.13/admin/articles/about-the-enterprise-api", - "/de/enterprise/2.13/admin/guides/articles/about-the-enterprise-api", - "/de/enterprise/2.13/admin/articles/using-the-api", - "/de/enterprise/2.13/admin/guides/articles/using-the-api", - "/de/enterprise/2.13/admin/categories/api", - "/de/enterprise/2.13/admin/guides/categories/api", - "/de/enterprise/2.13/admin/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.13/admin/guides/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.13/admin/overview/about-the-github-enterprise-api" - ], - [ - "/de/enterprise/2.14/admin/guides/overview/about-the-github-enterprise-api", - "/de/enterprise/2.14/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.14/admin/guides/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.14/admin/articles/about-the-enterprise-api", - "/de/enterprise/2.14/admin/guides/articles/about-the-enterprise-api", - "/de/enterprise/2.14/admin/articles/using-the-api", - "/de/enterprise/2.14/admin/guides/articles/using-the-api", - "/de/enterprise/2.14/admin/categories/api", - "/de/enterprise/2.14/admin/guides/categories/api", - "/de/enterprise/2.14/admin/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.14/admin/guides/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.14/admin/overview/about-the-github-enterprise-api" - ], - [ - "/de/enterprise/2.15/admin/guides/overview/about-the-github-enterprise-api", - "/de/enterprise/2.15/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.15/admin/guides/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.15/admin/articles/about-the-enterprise-api", - "/de/enterprise/2.15/admin/guides/articles/about-the-enterprise-api", - "/de/enterprise/2.15/admin/articles/using-the-api", - "/de/enterprise/2.15/admin/guides/articles/using-the-api", - "/de/enterprise/2.15/admin/categories/api", - "/de/enterprise/2.15/admin/guides/categories/api", - "/de/enterprise/2.15/admin/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.15/admin/guides/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.15/admin/overview/about-the-github-enterprise-api" - ], - [ - "/de/enterprise/2.16/admin/guides/overview/about-the-github-enterprise-api", - "/de/enterprise/2.16/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.16/admin/guides/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.16/admin/articles/about-the-enterprise-api", - "/de/enterprise/2.16/admin/guides/articles/about-the-enterprise-api", - "/de/enterprise/2.16/admin/articles/using-the-api", - "/de/enterprise/2.16/admin/guides/articles/using-the-api", - "/de/enterprise/2.16/admin/categories/api", - "/de/enterprise/2.16/admin/guides/categories/api", - "/de/enterprise/2.16/admin/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.16/admin/guides/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.16/admin/overview/about-the-github-enterprise-api" - ], - [ - "/de/enterprise/2.17/admin/guides/overview/about-the-github-enterprise-api", - "/de/enterprise/2.17/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.17/admin/guides/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.17/admin/articles/about-the-enterprise-api", - "/de/enterprise/2.17/admin/guides/articles/about-the-enterprise-api", - "/de/enterprise/2.17/admin/articles/using-the-api", - "/de/enterprise/2.17/admin/guides/articles/using-the-api", - "/de/enterprise/2.17/admin/categories/api", - "/de/enterprise/2.17/admin/guides/categories/api", - "/de/enterprise/2.17/admin/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.17/admin/guides/overview/about-the-github-enterprise-server-api", - "/de/enterprise/2.17/admin/overview/about-the-github-enterprise-api" - ], - [ - "/de/enterprise/2.13/admin/guides/overview", - "/de/enterprise/2.13/admin/overview" - ], - [ - "/de/enterprise/2.14/admin/guides/overview", - "/de/enterprise/2.14/admin/overview" - ], - [ - "/de/enterprise/2.15/admin/guides/overview", - "/de/enterprise/2.15/admin/overview" - ], - [ - "/de/enterprise/2.16/admin/guides/overview", - "/de/enterprise/2.16/admin/overview" - ], - [ - "/de/enterprise/2.17/admin/guides/overview", - "/de/enterprise/2.17/admin/overview" - ], - [ - "/de/enterprise/2.13/admin/guides/overview/managing-billing-for-your-enterprise", - "/de/enterprise/2.13/admin/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.13/admin/guides/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.13/admin/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.13/admin/guides/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.13/admin/overview/managing-billing-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/overview/managing-billing-for-your-enterprise", - "/de/enterprise/2.14/admin/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.14/admin/guides/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.14/admin/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.14/admin/guides/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.14/admin/overview/managing-billing-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/overview/managing-billing-for-your-enterprise", - "/de/enterprise/2.15/admin/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.15/admin/guides/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.15/admin/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.15/admin/guides/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.15/admin/overview/managing-billing-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/overview/managing-billing-for-your-enterprise", - "/de/enterprise/2.16/admin/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.16/admin/guides/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.16/admin/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.16/admin/guides/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.16/admin/overview/managing-billing-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/overview/managing-billing-for-your-enterprise", - "/de/enterprise/2.17/admin/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.17/admin/guides/installation/managing-billing-for-github-enterprise", - "/de/enterprise/2.17/admin/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.17/admin/guides/overview/managing-billing-for-github-enterprise", - "/de/enterprise/2.17/admin/overview/managing-billing-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/overview/managing-your-github-enterprise-license", - "/de/enterprise/2.13/admin/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.13/admin/guides/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.13/admin/categories/licenses", - "/de/enterprise/2.13/admin/guides/categories/licenses", - "/de/enterprise/2.13/admin/articles/license-files", - "/de/enterprise/2.13/admin/guides/articles/license-files", - "/de/enterprise/2.13/admin/installation/about-license-files", - "/de/enterprise/2.13/admin/guides/installation/about-license-files", - "/de/enterprise/2.13/admin/articles/downloading-your-license", - "/de/enterprise/2.13/admin/guides/articles/downloading-your-license", - "/de/enterprise/2.13/admin/installation/downloading-your-license", - "/de/enterprise/2.13/admin/guides/installation/downloading-your-license", - "/de/enterprise/2.13/admin/articles/upgrading-your-license", - "/de/enterprise/2.13/admin/guides/articles/upgrading-your-license", - "/de/enterprise/2.13/admin/installation/updating-your-license", - "/de/enterprise/2.13/admin/guides/installation/updating-your-license", - "/de/enterprise/2.13/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.13/admin/guides/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.13/admin/overview/managing-your-github-enterprise-license" - ], - [ - "/de/enterprise/2.14/admin/guides/overview/managing-your-github-enterprise-license", - "/de/enterprise/2.14/admin/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.14/admin/guides/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.14/admin/categories/licenses", - "/de/enterprise/2.14/admin/guides/categories/licenses", - "/de/enterprise/2.14/admin/articles/license-files", - "/de/enterprise/2.14/admin/guides/articles/license-files", - "/de/enterprise/2.14/admin/installation/about-license-files", - "/de/enterprise/2.14/admin/guides/installation/about-license-files", - "/de/enterprise/2.14/admin/articles/downloading-your-license", - "/de/enterprise/2.14/admin/guides/articles/downloading-your-license", - "/de/enterprise/2.14/admin/installation/downloading-your-license", - "/de/enterprise/2.14/admin/guides/installation/downloading-your-license", - "/de/enterprise/2.14/admin/articles/upgrading-your-license", - "/de/enterprise/2.14/admin/guides/articles/upgrading-your-license", - "/de/enterprise/2.14/admin/installation/updating-your-license", - "/de/enterprise/2.14/admin/guides/installation/updating-your-license", - "/de/enterprise/2.14/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.14/admin/guides/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.14/admin/overview/managing-your-github-enterprise-license" - ], - [ - "/de/enterprise/2.15/admin/guides/overview/managing-your-github-enterprise-license", - "/de/enterprise/2.15/admin/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.15/admin/guides/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.15/admin/categories/licenses", - "/de/enterprise/2.15/admin/guides/categories/licenses", - "/de/enterprise/2.15/admin/articles/license-files", - "/de/enterprise/2.15/admin/guides/articles/license-files", - "/de/enterprise/2.15/admin/installation/about-license-files", - "/de/enterprise/2.15/admin/guides/installation/about-license-files", - "/de/enterprise/2.15/admin/articles/downloading-your-license", - "/de/enterprise/2.15/admin/guides/articles/downloading-your-license", - "/de/enterprise/2.15/admin/installation/downloading-your-license", - "/de/enterprise/2.15/admin/guides/installation/downloading-your-license", - "/de/enterprise/2.15/admin/articles/upgrading-your-license", - "/de/enterprise/2.15/admin/guides/articles/upgrading-your-license", - "/de/enterprise/2.15/admin/installation/updating-your-license", - "/de/enterprise/2.15/admin/guides/installation/updating-your-license", - "/de/enterprise/2.15/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.15/admin/guides/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.15/admin/overview/managing-your-github-enterprise-license" - ], - [ - "/de/enterprise/2.16/admin/guides/overview/managing-your-github-enterprise-license", - "/de/enterprise/2.16/admin/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.16/admin/guides/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.16/admin/categories/licenses", - "/de/enterprise/2.16/admin/guides/categories/licenses", - "/de/enterprise/2.16/admin/articles/license-files", - "/de/enterprise/2.16/admin/guides/articles/license-files", - "/de/enterprise/2.16/admin/installation/about-license-files", - "/de/enterprise/2.16/admin/guides/installation/about-license-files", - "/de/enterprise/2.16/admin/articles/downloading-your-license", - "/de/enterprise/2.16/admin/guides/articles/downloading-your-license", - "/de/enterprise/2.16/admin/installation/downloading-your-license", - "/de/enterprise/2.16/admin/guides/installation/downloading-your-license", - "/de/enterprise/2.16/admin/articles/upgrading-your-license", - "/de/enterprise/2.16/admin/guides/articles/upgrading-your-license", - "/de/enterprise/2.16/admin/installation/updating-your-license", - "/de/enterprise/2.16/admin/guides/installation/updating-your-license", - "/de/enterprise/2.16/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.16/admin/guides/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.16/admin/overview/managing-your-github-enterprise-license" - ], - [ - "/de/enterprise/2.17/admin/guides/overview/managing-your-github-enterprise-license", - "/de/enterprise/2.17/admin/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.17/admin/guides/installation/managing-your-github-enterprise-license", - "/de/enterprise/2.17/admin/categories/licenses", - "/de/enterprise/2.17/admin/guides/categories/licenses", - "/de/enterprise/2.17/admin/articles/license-files", - "/de/enterprise/2.17/admin/guides/articles/license-files", - "/de/enterprise/2.17/admin/installation/about-license-files", - "/de/enterprise/2.17/admin/guides/installation/about-license-files", - "/de/enterprise/2.17/admin/articles/downloading-your-license", - "/de/enterprise/2.17/admin/guides/articles/downloading-your-license", - "/de/enterprise/2.17/admin/installation/downloading-your-license", - "/de/enterprise/2.17/admin/guides/installation/downloading-your-license", - "/de/enterprise/2.17/admin/articles/upgrading-your-license", - "/de/enterprise/2.17/admin/guides/articles/upgrading-your-license", - "/de/enterprise/2.17/admin/installation/updating-your-license", - "/de/enterprise/2.17/admin/guides/installation/updating-your-license", - "/de/enterprise/2.17/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.17/admin/guides/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.17/admin/overview/managing-your-github-enterprise-license" - ], - [ - "/de/enterprise/2.13/admin/guides/overview/system-overview", - "/de/enterprise/2.13/admin/installation/system-overview", - "/de/enterprise/2.13/admin/guides/installation/system-overview", - "/de/enterprise/2.13/admin/overview/system-overview" - ], - [ - "/de/enterprise/2.14/admin/guides/overview/system-overview", - "/de/enterprise/2.14/admin/installation/system-overview", - "/de/enterprise/2.14/admin/guides/installation/system-overview", - "/de/enterprise/2.14/admin/overview/system-overview" - ], - [ - "/de/enterprise/2.15/admin/guides/overview/system-overview", - "/de/enterprise/2.15/admin/installation/system-overview", - "/de/enterprise/2.15/admin/guides/installation/system-overview", - "/de/enterprise/2.15/admin/overview/system-overview" - ], - [ - "/de/enterprise/2.16/admin/guides/overview/system-overview", - "/de/enterprise/2.16/admin/installation/system-overview", - "/de/enterprise/2.16/admin/guides/installation/system-overview", - "/de/enterprise/2.16/admin/overview/system-overview" - ], - [ - "/de/enterprise/2.17/admin/guides/overview/system-overview", - "/de/enterprise/2.17/admin/installation/system-overview", - "/de/enterprise/2.17/admin/guides/installation/system-overview", - "/de/enterprise/2.17/admin/overview/system-overview" - ], - [ - "/de/enterprise/2.13/admin/guides/packages/configuring-package-ecosystem-support-for-your-enterprise", - "/de/enterprise/2.13/admin/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.13/admin/guides/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.13/admin/packages/configuring-package-ecosystem-support-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/packages/configuring-package-ecosystem-support-for-your-enterprise", - "/de/enterprise/2.14/admin/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.14/admin/guides/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.14/admin/packages/configuring-package-ecosystem-support-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/packages/configuring-package-ecosystem-support-for-your-enterprise", - "/de/enterprise/2.15/admin/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.15/admin/guides/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.15/admin/packages/configuring-package-ecosystem-support-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/packages/configuring-package-ecosystem-support-for-your-enterprise", - "/de/enterprise/2.16/admin/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.16/admin/guides/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.16/admin/packages/configuring-package-ecosystem-support-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/packages/configuring-package-ecosystem-support-for-your-enterprise", - "/de/enterprise/2.17/admin/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.17/admin/guides/packages/configuring-packages-support-for-your-enterprise", - "/de/enterprise/2.17/admin/packages/configuring-package-ecosystem-support-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/packages/enabling-github-packages-with-aws", - "/de/enterprise/2.13/admin/packages/enabling-github-packages-with-aws" - ], - [ - "/de/enterprise/2.14/admin/guides/packages/enabling-github-packages-with-aws", - "/de/enterprise/2.14/admin/packages/enabling-github-packages-with-aws" - ], - [ - "/de/enterprise/2.15/admin/guides/packages/enabling-github-packages-with-aws", - "/de/enterprise/2.15/admin/packages/enabling-github-packages-with-aws" - ], - [ - "/de/enterprise/2.16/admin/guides/packages/enabling-github-packages-with-aws", - "/de/enterprise/2.16/admin/packages/enabling-github-packages-with-aws" - ], - [ - "/de/enterprise/2.17/admin/guides/packages/enabling-github-packages-with-aws", - "/de/enterprise/2.17/admin/packages/enabling-github-packages-with-aws" - ], - [ - "/de/enterprise/2.13/admin/guides/packages/enabling-github-packages-with-minio", - "/de/enterprise/2.13/admin/packages/enabling-github-packages-with-minio" - ], - [ - "/de/enterprise/2.14/admin/guides/packages/enabling-github-packages-with-minio", - "/de/enterprise/2.14/admin/packages/enabling-github-packages-with-minio" - ], - [ - "/de/enterprise/2.15/admin/guides/packages/enabling-github-packages-with-minio", - "/de/enterprise/2.15/admin/packages/enabling-github-packages-with-minio" - ], - [ - "/de/enterprise/2.16/admin/guides/packages/enabling-github-packages-with-minio", - "/de/enterprise/2.16/admin/packages/enabling-github-packages-with-minio" - ], - [ - "/de/enterprise/2.17/admin/guides/packages/enabling-github-packages-with-minio", - "/de/enterprise/2.17/admin/packages/enabling-github-packages-with-minio" - ], - [ - "/de/enterprise/2.13/admin/guides/packages/getting-started-with-github-packages-for-your-enterprise", - "/de/enterprise/2.13/admin/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.13/admin/guides/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.13/admin/packages/getting-started-with-github-packages-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/packages/getting-started-with-github-packages-for-your-enterprise", - "/de/enterprise/2.14/admin/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.14/admin/guides/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.14/admin/packages/getting-started-with-github-packages-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/packages/getting-started-with-github-packages-for-your-enterprise", - "/de/enterprise/2.15/admin/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.15/admin/guides/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.15/admin/packages/getting-started-with-github-packages-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/packages/getting-started-with-github-packages-for-your-enterprise", - "/de/enterprise/2.16/admin/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.16/admin/guides/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.16/admin/packages/getting-started-with-github-packages-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/packages/getting-started-with-github-packages-for-your-enterprise", - "/de/enterprise/2.17/admin/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.17/admin/guides/packages/enabling-github-packages-for-your-enterprise", - "/de/enterprise/2.17/admin/packages/getting-started-with-github-packages-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/packages", - "/de/enterprise/2.13/admin/packages" - ], - [ - "/de/enterprise/2.14/admin/guides/packages", - "/de/enterprise/2.14/admin/packages" - ], - [ - "/de/enterprise/2.15/admin/guides/packages", - "/de/enterprise/2.15/admin/packages" - ], - [ - "/de/enterprise/2.16/admin/guides/packages", - "/de/enterprise/2.16/admin/packages" - ], - [ - "/de/enterprise/2.17/admin/guides/packages", - "/de/enterprise/2.17/admin/packages" - ], - [ - "/de/enterprise/2.13/admin/guides/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages", - "/de/enterprise/2.13/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages" - ], - [ - "/de/enterprise/2.14/admin/guides/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages", - "/de/enterprise/2.14/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages" - ], - [ - "/de/enterprise/2.15/admin/guides/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages", - "/de/enterprise/2.15/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages" - ], - [ - "/de/enterprise/2.16/admin/guides/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages", - "/de/enterprise/2.16/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages" - ], - [ - "/de/enterprise/2.17/admin/guides/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages", - "/de/enterprise/2.17/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/about-pre-receive-hooks", - "/de/enterprise/2.13/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.13/admin/guides/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.13/admin/policies/about-pre-receive-hooks" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/about-pre-receive-hooks", - "/de/enterprise/2.14/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.14/admin/guides/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.14/admin/policies/about-pre-receive-hooks" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/about-pre-receive-hooks", - "/de/enterprise/2.15/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.15/admin/guides/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.15/admin/policies/about-pre-receive-hooks" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/about-pre-receive-hooks", - "/de/enterprise/2.16/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.16/admin/guides/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.16/admin/policies/about-pre-receive-hooks" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/about-pre-receive-hooks", - "/de/enterprise/2.17/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.17/admin/guides/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.17/admin/policies/about-pre-receive-hooks" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.13/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.13/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.13/admin/policies/creating-a-pre-receive-hook-environment" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.14/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.14/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.14/admin/policies/creating-a-pre-receive-hook-environment" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.15/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.15/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.15/admin/policies/creating-a-pre-receive-hook-environment" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.16/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.16/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.16/admin/policies/creating-a-pre-receive-hook-environment" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.17/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.17/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.17/admin/policies/creating-a-pre-receive-hook-environment" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/creating-a-pre-receive-hook-script", - "/de/enterprise/2.13/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.13/admin/guides/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.13/admin/policies/creating-a-pre-receive-hook-script" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/creating-a-pre-receive-hook-script", - "/de/enterprise/2.14/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.14/admin/guides/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.14/admin/policies/creating-a-pre-receive-hook-script" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/creating-a-pre-receive-hook-script", - "/de/enterprise/2.15/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.15/admin/guides/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.15/admin/policies/creating-a-pre-receive-hook-script" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/creating-a-pre-receive-hook-script", - "/de/enterprise/2.16/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.16/admin/guides/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.16/admin/policies/creating-a-pre-receive-hook-script" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/creating-a-pre-receive-hook-script", - "/de/enterprise/2.17/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.17/admin/guides/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.17/admin/policies/creating-a-pre-receive-hook-script" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/enforcing-policies-for-your-enterprise", - "/de/enterprise/2.13/admin/policies/enforcing-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/enforcing-policies-for-your-enterprise", - "/de/enterprise/2.14/admin/policies/enforcing-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/enforcing-policies-for-your-enterprise", - "/de/enterprise/2.15/admin/policies/enforcing-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/enforcing-policies-for-your-enterprise", - "/de/enterprise/2.16/admin/policies/enforcing-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/enforcing-policies-for-your-enterprise", - "/de/enterprise/2.17/admin/policies/enforcing-policies-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/enforcing-policy-with-pre-receive-hooks", - "/de/enterprise/2.13/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.13/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.13/admin/policies/enforcing-policy-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/enforcing-policy-with-pre-receive-hooks", - "/de/enterprise/2.14/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.14/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.14/admin/policies/enforcing-policy-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/enforcing-policy-with-pre-receive-hooks", - "/de/enterprise/2.15/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.15/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.15/admin/policies/enforcing-policy-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/enforcing-policy-with-pre-receive-hooks", - "/de/enterprise/2.16/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.16/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.16/admin/policies/enforcing-policy-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/enforcing-policy-with-pre-receive-hooks", - "/de/enterprise/2.17/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.17/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.17/admin/policies/enforcing-policy-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.13/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-changing-a-repository-s-visibility", - "/de/enterprise/2.13/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.13/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.13/admin/guides/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.13/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.13/admin/installation/setting-git-push-limits", - "/de/enterprise/2.13/admin/guides/installation/setting-git-push-limits", - "/de/enterprise/2.13/admin/guides/installation/git-server-settings", - "/de/enterprise/2.13/admin/articles/setting-git-push-limits", - "/de/enterprise/2.13/admin/guides/articles/setting-git-push-limits", - "/de/enterprise/2.13/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.13/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.13/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.13/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.13/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.13/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.13/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.13/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.13/admin/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.13/admin/guides/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository", - "/de/enterprise/2.13/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.13/admin/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.13/admin/guides/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.13/admin/articles/block-force-pushes", - "/de/enterprise/2.13/admin/guides/articles/block-force-pushes", - "/de/enterprise/2.13/admin/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.13/admin/guides/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.13/admin/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.13/admin/guides/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.13/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/guides/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.13/admin/guides/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.13/admin/policies/enforcing-repository-management-policies-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.14/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-changing-a-repository-s-visibility", - "/de/enterprise/2.14/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.14/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.14/admin/guides/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.14/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.14/admin/installation/setting-git-push-limits", - "/de/enterprise/2.14/admin/guides/installation/setting-git-push-limits", - "/de/enterprise/2.14/admin/guides/installation/git-server-settings", - "/de/enterprise/2.14/admin/articles/setting-git-push-limits", - "/de/enterprise/2.14/admin/guides/articles/setting-git-push-limits", - "/de/enterprise/2.14/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.14/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.14/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.14/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.14/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.14/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.14/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.14/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.14/admin/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.14/admin/guides/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository", - "/de/enterprise/2.14/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.14/admin/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.14/admin/guides/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.14/admin/articles/block-force-pushes", - "/de/enterprise/2.14/admin/guides/articles/block-force-pushes", - "/de/enterprise/2.14/admin/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.14/admin/guides/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.14/admin/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.14/admin/guides/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.14/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/guides/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.14/admin/guides/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.14/admin/policies/enforcing-repository-management-policies-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.15/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-a-repository-s-visibility", - "/de/enterprise/2.15/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.15/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.15/admin/guides/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.15/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.15/admin/installation/setting-git-push-limits", - "/de/enterprise/2.15/admin/guides/installation/setting-git-push-limits", - "/de/enterprise/2.15/admin/guides/installation/git-server-settings", - "/de/enterprise/2.15/admin/articles/setting-git-push-limits", - "/de/enterprise/2.15/admin/guides/articles/setting-git-push-limits", - "/de/enterprise/2.15/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.15/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.15/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.15/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.15/admin/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.15/admin/guides/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository", - "/de/enterprise/2.15/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.15/admin/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.15/admin/guides/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.15/admin/articles/block-force-pushes", - "/de/enterprise/2.15/admin/guides/articles/block-force-pushes", - "/de/enterprise/2.15/admin/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.15/admin/guides/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.15/admin/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.15/admin/guides/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.15/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/guides/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.15/admin/policies/enforcing-repository-management-policies-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.16/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-a-repository-s-visibility", - "/de/enterprise/2.16/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.16/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.16/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.16/admin/installation/setting-git-push-limits", - "/de/enterprise/2.16/admin/guides/installation/setting-git-push-limits", - "/de/enterprise/2.16/admin/guides/installation/git-server-settings", - "/de/enterprise/2.16/admin/articles/setting-git-push-limits", - "/de/enterprise/2.16/admin/guides/articles/setting-git-push-limits", - "/de/enterprise/2.16/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.16/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.16/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.16/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.16/admin/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.16/admin/guides/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository", - "/de/enterprise/2.16/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.16/admin/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.16/admin/guides/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.16/admin/articles/block-force-pushes", - "/de/enterprise/2.16/admin/guides/articles/block-force-pushes", - "/de/enterprise/2.16/admin/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.16/admin/guides/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.16/admin/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.16/admin/guides/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.16/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/guides/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.16/admin/policies/enforcing-repository-management-policies-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.17/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-a-repository-s-visibility", - "/de/enterprise/2.17/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.17/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.17/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.17/admin/installation/setting-git-push-limits", - "/de/enterprise/2.17/admin/guides/installation/setting-git-push-limits", - "/de/enterprise/2.17/admin/guides/installation/git-server-settings", - "/de/enterprise/2.17/admin/articles/setting-git-push-limits", - "/de/enterprise/2.17/admin/guides/articles/setting-git-push-limits", - "/de/enterprise/2.17/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.17/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.17/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.17/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.17/admin/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.17/admin/guides/articles/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository", - "/de/enterprise/2.17/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.17/admin/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.17/admin/guides/articles/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.17/admin/articles/block-force-pushes", - "/de/enterprise/2.17/admin/guides/articles/block-force-pushes", - "/de/enterprise/2.17/admin/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.17/admin/guides/articles/blocking-force-pushes-for-a-user-account", - "/de/enterprise/2.17/admin/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.17/admin/guides/articles/blocking-force-pushes-for-an-organization", - "/de/enterprise/2.17/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/guides/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.17/admin/policies/enforcing-repository-management-policies-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/policies", - "/de/enterprise/2.13/admin/developer-workflow", - "/de/enterprise/2.13/admin/guides/developer-workflow", - "/de/enterprise/2.13/admin/policies" - ], - [ - "/de/enterprise/2.14/admin/guides/policies", - "/de/enterprise/2.14/admin/developer-workflow", - "/de/enterprise/2.14/admin/guides/developer-workflow", - "/de/enterprise/2.14/admin/policies" - ], - [ - "/de/enterprise/2.15/admin/guides/policies", - "/de/enterprise/2.15/admin/developer-workflow", - "/de/enterprise/2.15/admin/guides/developer-workflow", - "/de/enterprise/2.15/admin/policies" - ], - [ - "/de/enterprise/2.16/admin/guides/policies", - "/de/enterprise/2.16/admin/developer-workflow", - "/de/enterprise/2.16/admin/guides/developer-workflow", - "/de/enterprise/2.16/admin/policies" - ], - [ - "/de/enterprise/2.17/admin/guides/policies", - "/de/enterprise/2.17/admin/developer-workflow", - "/de/enterprise/2.17/admin/guides/developer-workflow", - "/de/enterprise/2.17/admin/policies" - ], - [ - "/de/enterprise/2.13/admin/guides/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.13/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance", - "/de/enterprise/2.13/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance" - ], - [ - "/de/enterprise/2.14/admin/guides/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.14/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance", - "/de/enterprise/2.14/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance" - ], - [ - "/de/enterprise/2.15/admin/guides/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance", - "/de/enterprise/2.15/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance" - ], - [ - "/de/enterprise/2.16/admin/guides/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance", - "/de/enterprise/2.16/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance" - ], - [ - "/de/enterprise/2.17/admin/guides/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance", - "/de/enterprise/2.17/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance" - ], - [ - "/de/enterprise/2.13/admin/guides/release-notes", - "/de/enterprise/2.13/admin/release-notes" - ], - [ - "/de/enterprise/2.14/admin/guides/release-notes", - "/de/enterprise/2.14/admin/release-notes" - ], - [ - "/de/enterprise/2.15/admin/guides/release-notes", - "/de/enterprise/2.15/admin/release-notes" - ], - [ - "/de/enterprise/2.16/admin/guides/release-notes", - "/de/enterprise/2.16/admin/release-notes" - ], - [ - "/de/enterprise/2.17/admin/guides/release-notes", - "/de/enterprise/2.17/admin/release-notes" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/about-migrations", - "/de/enterprise/2.13/admin/migrations/about-migrations", - "/de/enterprise/2.13/admin/guides/migrations/about-migrations", - "/de/enterprise/2.13/admin/user-management/about-migrations" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/about-migrations", - "/de/enterprise/2.14/admin/migrations/about-migrations", - "/de/enterprise/2.14/admin/guides/migrations/about-migrations", - "/de/enterprise/2.14/admin/user-management/about-migrations" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/about-migrations", - "/de/enterprise/2.15/admin/migrations/about-migrations", - "/de/enterprise/2.15/admin/guides/migrations/about-migrations", - "/de/enterprise/2.15/admin/user-management/about-migrations" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/about-migrations", - "/de/enterprise/2.16/admin/migrations/about-migrations", - "/de/enterprise/2.16/admin/guides/migrations/about-migrations", - "/de/enterprise/2.16/admin/user-management/about-migrations" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/about-migrations", - "/de/enterprise/2.17/admin/migrations/about-migrations", - "/de/enterprise/2.17/admin/guides/migrations/about-migrations", - "/de/enterprise/2.17/admin/user-management/about-migrations" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/activity-dashboard", - "/de/enterprise/2.13/admin/articles/activity-dashboard", - "/de/enterprise/2.13/admin/guides/articles/activity-dashboard", - "/de/enterprise/2.13/admin/installation/activity-dashboard", - "/de/enterprise/2.13/admin/guides/installation/activity-dashboard", - "/de/enterprise/2.13/admin/user-management/activity-dashboard" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/activity-dashboard", - "/de/enterprise/2.14/admin/articles/activity-dashboard", - "/de/enterprise/2.14/admin/guides/articles/activity-dashboard", - "/de/enterprise/2.14/admin/installation/activity-dashboard", - "/de/enterprise/2.14/admin/guides/installation/activity-dashboard", - "/de/enterprise/2.14/admin/user-management/activity-dashboard" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/activity-dashboard", - "/de/enterprise/2.15/admin/articles/activity-dashboard", - "/de/enterprise/2.15/admin/guides/articles/activity-dashboard", - "/de/enterprise/2.15/admin/installation/activity-dashboard", - "/de/enterprise/2.15/admin/guides/installation/activity-dashboard", - "/de/enterprise/2.15/admin/user-management/activity-dashboard" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/activity-dashboard", - "/de/enterprise/2.16/admin/articles/activity-dashboard", - "/de/enterprise/2.16/admin/guides/articles/activity-dashboard", - "/de/enterprise/2.16/admin/installation/activity-dashboard", - "/de/enterprise/2.16/admin/guides/installation/activity-dashboard", - "/de/enterprise/2.16/admin/user-management/activity-dashboard" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/activity-dashboard", - "/de/enterprise/2.17/admin/articles/activity-dashboard", - "/de/enterprise/2.17/admin/guides/articles/activity-dashboard", - "/de/enterprise/2.17/admin/installation/activity-dashboard", - "/de/enterprise/2.17/admin/guides/installation/activity-dashboard", - "/de/enterprise/2.17/admin/user-management/activity-dashboard" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/adding-people-to-teams", - "/de/enterprise/2.13/admin/articles/adding-teams", - "/de/enterprise/2.13/admin/guides/articles/adding-teams", - "/de/enterprise/2.13/admin/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.13/admin/guides/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.13/admin/guides/user-management/adding-or-inviting-people-to-teams", - "/de/enterprise/2.13/admin/user-management/adding-people-to-teams" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/adding-people-to-teams", - "/de/enterprise/2.14/admin/articles/adding-teams", - "/de/enterprise/2.14/admin/guides/articles/adding-teams", - "/de/enterprise/2.14/admin/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.14/admin/guides/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.14/admin/guides/user-management/adding-or-inviting-people-to-teams", - "/de/enterprise/2.14/admin/user-management/adding-people-to-teams" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/adding-people-to-teams", - "/de/enterprise/2.15/admin/articles/adding-teams", - "/de/enterprise/2.15/admin/guides/articles/adding-teams", - "/de/enterprise/2.15/admin/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.15/admin/guides/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.15/admin/guides/user-management/adding-or-inviting-people-to-teams", - "/de/enterprise/2.15/admin/user-management/adding-people-to-teams" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/adding-people-to-teams", - "/de/enterprise/2.16/admin/articles/adding-teams", - "/de/enterprise/2.16/admin/guides/articles/adding-teams", - "/de/enterprise/2.16/admin/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.16/admin/guides/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.16/admin/guides/user-management/adding-or-inviting-people-to-teams", - "/de/enterprise/2.16/admin/user-management/adding-people-to-teams" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/adding-people-to-teams", - "/de/enterprise/2.17/admin/articles/adding-teams", - "/de/enterprise/2.17/admin/guides/articles/adding-teams", - "/de/enterprise/2.17/admin/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.17/admin/guides/articles/adding-or-inviting-people-to-teams", - "/de/enterprise/2.17/admin/guides/user-management/adding-or-inviting-people-to-teams", - "/de/enterprise/2.17/admin/user-management/adding-people-to-teams" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/audit-logging", - "/de/enterprise/2.13/admin/articles/audit-logging", - "/de/enterprise/2.13/admin/guides/articles/audit-logging", - "/de/enterprise/2.13/admin/installation/audit-logging", - "/de/enterprise/2.13/admin/guides/installation/audit-logging", - "/de/enterprise/2.13/admin/user-management/audit-logging" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/audit-logging", - "/de/enterprise/2.14/admin/articles/audit-logging", - "/de/enterprise/2.14/admin/guides/articles/audit-logging", - "/de/enterprise/2.14/admin/installation/audit-logging", - "/de/enterprise/2.14/admin/guides/installation/audit-logging", - "/de/enterprise/2.14/admin/user-management/audit-logging" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/audit-logging", - "/de/enterprise/2.15/admin/articles/audit-logging", - "/de/enterprise/2.15/admin/guides/articles/audit-logging", - "/de/enterprise/2.15/admin/installation/audit-logging", - "/de/enterprise/2.15/admin/guides/installation/audit-logging", - "/de/enterprise/2.15/admin/user-management/audit-logging" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/audit-logging", - "/de/enterprise/2.16/admin/articles/audit-logging", - "/de/enterprise/2.16/admin/guides/articles/audit-logging", - "/de/enterprise/2.16/admin/installation/audit-logging", - "/de/enterprise/2.16/admin/guides/installation/audit-logging", - "/de/enterprise/2.16/admin/user-management/audit-logging" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/audit-logging", - "/de/enterprise/2.17/admin/articles/audit-logging", - "/de/enterprise/2.17/admin/guides/articles/audit-logging", - "/de/enterprise/2.17/admin/installation/audit-logging", - "/de/enterprise/2.17/admin/guides/installation/audit-logging", - "/de/enterprise/2.17/admin/user-management/audit-logging" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/audited-actions", - "/de/enterprise/2.13/admin/articles/audited-actions", - "/de/enterprise/2.13/admin/guides/articles/audited-actions", - "/de/enterprise/2.13/admin/installation/audited-actions", - "/de/enterprise/2.13/admin/guides/installation/audited-actions", - "/de/enterprise/2.13/admin/user-management/audited-actions" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/audited-actions", - "/de/enterprise/2.14/admin/articles/audited-actions", - "/de/enterprise/2.14/admin/guides/articles/audited-actions", - "/de/enterprise/2.14/admin/installation/audited-actions", - "/de/enterprise/2.14/admin/guides/installation/audited-actions", - "/de/enterprise/2.14/admin/user-management/audited-actions" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/audited-actions", - "/de/enterprise/2.15/admin/articles/audited-actions", - "/de/enterprise/2.15/admin/guides/articles/audited-actions", - "/de/enterprise/2.15/admin/installation/audited-actions", - "/de/enterprise/2.15/admin/guides/installation/audited-actions", - "/de/enterprise/2.15/admin/user-management/audited-actions" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/audited-actions", - "/de/enterprise/2.16/admin/articles/audited-actions", - "/de/enterprise/2.16/admin/guides/articles/audited-actions", - "/de/enterprise/2.16/admin/installation/audited-actions", - "/de/enterprise/2.16/admin/guides/installation/audited-actions", - "/de/enterprise/2.16/admin/user-management/audited-actions" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/audited-actions", - "/de/enterprise/2.17/admin/articles/audited-actions", - "/de/enterprise/2.17/admin/guides/articles/audited-actions", - "/de/enterprise/2.17/admin/installation/audited-actions", - "/de/enterprise/2.17/admin/guides/installation/audited-actions", - "/de/enterprise/2.17/admin/user-management/audited-actions" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/auditing-ssh-keys", - "/de/enterprise/2.13/admin/articles/auditing-ssh-keys", - "/de/enterprise/2.13/admin/guides/articles/auditing-ssh-keys", - "/de/enterprise/2.13/admin/user-management/auditing-ssh-keys" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/auditing-ssh-keys", - "/de/enterprise/2.14/admin/articles/auditing-ssh-keys", - "/de/enterprise/2.14/admin/guides/articles/auditing-ssh-keys", - "/de/enterprise/2.14/admin/user-management/auditing-ssh-keys" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/auditing-ssh-keys", - "/de/enterprise/2.15/admin/articles/auditing-ssh-keys", - "/de/enterprise/2.15/admin/guides/articles/auditing-ssh-keys", - "/de/enterprise/2.15/admin/user-management/auditing-ssh-keys" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/auditing-ssh-keys", - "/de/enterprise/2.16/admin/articles/auditing-ssh-keys", - "/de/enterprise/2.16/admin/guides/articles/auditing-ssh-keys", - "/de/enterprise/2.16/admin/user-management/auditing-ssh-keys" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/auditing-ssh-keys", - "/de/enterprise/2.17/admin/articles/auditing-ssh-keys", - "/de/enterprise/2.17/admin/guides/articles/auditing-ssh-keys", - "/de/enterprise/2.17/admin/user-management/auditing-ssh-keys" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/auditing-users-across-your-enterprise", - "/de/enterprise/2.13/admin/guides/user-management/auditing-users-across-an-organization", - "/de/enterprise/2.13/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.13/admin/guides/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.13/admin/user-management/auditing-users-across-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/auditing-users-across-your-enterprise", - "/de/enterprise/2.14/admin/guides/user-management/auditing-users-across-an-organization", - "/de/enterprise/2.14/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.14/admin/guides/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.14/admin/user-management/auditing-users-across-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/auditing-users-across-your-enterprise", - "/de/enterprise/2.15/admin/guides/user-management/auditing-users-across-an-organization", - "/de/enterprise/2.15/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.15/admin/guides/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.15/admin/user-management/auditing-users-across-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/auditing-users-across-your-enterprise", - "/de/enterprise/2.16/admin/guides/user-management/auditing-users-across-an-organization", - "/de/enterprise/2.16/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.16/admin/user-management/auditing-users-across-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/auditing-users-across-your-enterprise", - "/de/enterprise/2.17/admin/guides/user-management/auditing-users-across-an-organization", - "/de/enterprise/2.17/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.17/admin/user-management/auditing-users-across-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/best-practices-for-user-security", - "/de/enterprise/2.13/admin/user-management/best-practices-for-user-security" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/best-practices-for-user-security", - "/de/enterprise/2.14/admin/user-management/best-practices-for-user-security" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/best-practices-for-user-security", - "/de/enterprise/2.15/admin/user-management/best-practices-for-user-security" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/best-practices-for-user-security", - "/de/enterprise/2.16/admin/user-management/best-practices-for-user-security" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/best-practices-for-user-security", - "/de/enterprise/2.17/admin/user-management/best-practices-for-user-security" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/configuring-git-large-file-storage-for-your-enterprise", - "/de/enterprise/2.13/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise", - "/de/enterprise/2.13/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.13/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.13/admin/guides/installation/configuring-git-large-file-storage", - "/de/enterprise/2.13/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.13/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.13/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.13/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.13/admin/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.13/admin/guides/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.13/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/guides/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.13/admin/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.13/admin/guides/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.13/admin/guides/installation/migrating-to-different-large-file-storage-server", - "/de/enterprise/2.13/admin/user-management/configuring-git-large-file-storage-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/configuring-git-large-file-storage-for-your-enterprise", - "/de/enterprise/2.14/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise", - "/de/enterprise/2.14/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.14/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.14/admin/guides/installation/configuring-git-large-file-storage", - "/de/enterprise/2.14/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.14/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.14/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.14/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.14/admin/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.14/admin/guides/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.14/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/guides/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.14/admin/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.14/admin/guides/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.14/admin/guides/installation/migrating-to-different-large-file-storage-server", - "/de/enterprise/2.14/admin/user-management/configuring-git-large-file-storage-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/configuring-git-large-file-storage-for-your-enterprise", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise", - "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage", - "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.15/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.15/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.15/admin/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.15/admin/guides/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.15/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/guides/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.15/admin/guides/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/migrating-to-different-large-file-storage-server", - "/de/enterprise/2.15/admin/user-management/configuring-git-large-file-storage-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/configuring-git-large-file-storage-for-your-enterprise", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise", - "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage", - "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.16/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.16/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.16/admin/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.16/admin/guides/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.16/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/guides/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.16/admin/guides/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/migrating-to-different-large-file-storage-server", - "/de/enterprise/2.16/admin/user-management/configuring-git-large-file-storage-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/configuring-git-large-file-storage-for-your-enterprise", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise", - "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage", - "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.17/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.17/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.17/admin/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.17/admin/guides/articles/configuring-git-large-file-storage-for-a-repository", - "/de/enterprise/2.17/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/guides/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.17/admin/guides/articles/configuring-git-large-file-storage-for-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/migrating-to-different-large-file-storage-server", - "/de/enterprise/2.17/admin/user-management/configuring-git-large-file-storage-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.13/admin/user-management/configuring-visibility-for-organization-membership" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.14/admin/user-management/configuring-visibility-for-organization-membership" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.15/admin/user-management/configuring-visibility-for-organization-membership" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.16/admin/user-management/configuring-visibility-for-organization-membership" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.17/admin/user-management/configuring-visibility-for-organization-membership" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/continuous-integration-using-jenkins", - "/de/enterprise/2.13/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.13/admin/guides/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.13/admin/user-management/continuous-integration-using-jenkins" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/continuous-integration-using-jenkins", - "/de/enterprise/2.14/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.14/admin/guides/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.14/admin/user-management/continuous-integration-using-jenkins" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/continuous-integration-using-jenkins", - "/de/enterprise/2.15/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.15/admin/guides/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.15/admin/user-management/continuous-integration-using-jenkins" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/continuous-integration-using-jenkins", - "/de/enterprise/2.16/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.16/admin/guides/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.16/admin/user-management/continuous-integration-using-jenkins" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/continuous-integration-using-jenkins", - "/de/enterprise/2.17/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.17/admin/guides/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.17/admin/user-management/continuous-integration-using-jenkins" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/creating-teams", - "/de/enterprise/2.13/admin/user-management/creating-teams" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/creating-teams", - "/de/enterprise/2.14/admin/user-management/creating-teams" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/creating-teams", - "/de/enterprise/2.15/admin/user-management/creating-teams" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/creating-teams", - "/de/enterprise/2.16/admin/user-management/creating-teams" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/creating-teams", - "/de/enterprise/2.17/admin/user-management/creating-teams" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/customizing-user-messages-for-your-enterprise", - "/de/enterprise/2.13/admin/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.13/admin/guides/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.13/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.13/admin/guides/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.13/admin/user-management/customizing-user-messages-for-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/customizing-user-messages-for-your-enterprise", - "/de/enterprise/2.14/admin/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.14/admin/guides/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.14/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.14/admin/guides/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.14/admin/user-management/customizing-user-messages-for-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/customizing-user-messages-for-your-enterprise", - "/de/enterprise/2.15/admin/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.15/admin/guides/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.15/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.15/admin/guides/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.15/admin/user-management/customizing-user-messages-for-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/customizing-user-messages-for-your-enterprise", - "/de/enterprise/2.16/admin/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.16/admin/guides/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.16/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.16/admin/user-management/customizing-user-messages-for-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/customizing-user-messages-for-your-enterprise", - "/de/enterprise/2.17/admin/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.17/admin/guides/user-management/creating-a-custom-sign-in-message", - "/de/enterprise/2.17/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.17/admin/user-management/customizing-user-messages-for-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/disabling-git-ssh-access-on-your-enterprise", - "/de/enterprise/2.13/admin/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.13/admin/guides/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.13/admin/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.13/admin/guides/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.13/admin/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.13/admin/guides/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.13/admin/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.13/admin/guides/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.13/admin/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.13/admin/guides/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.13/admin/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.13/admin/guides/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.13/admin/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.13/admin/guides/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.13/admin/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.13/admin/guides/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.13/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise", - "/de/enterprise/2.13/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.13/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.13/admin/user-management/disabling-git-ssh-access-on-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/disabling-git-ssh-access-on-your-enterprise", - "/de/enterprise/2.14/admin/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.14/admin/guides/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.14/admin/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.14/admin/guides/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.14/admin/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.14/admin/guides/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.14/admin/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.14/admin/guides/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.14/admin/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.14/admin/guides/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.14/admin/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.14/admin/guides/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.14/admin/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.14/admin/guides/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.14/admin/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.14/admin/guides/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.14/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise", - "/de/enterprise/2.14/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.14/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.14/admin/user-management/disabling-git-ssh-access-on-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/disabling-git-ssh-access-on-your-enterprise", - "/de/enterprise/2.15/admin/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.15/admin/guides/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.15/admin/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.15/admin/guides/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.15/admin/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.15/admin/guides/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.15/admin/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.15/admin/guides/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.15/admin/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.15/admin/guides/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.15/admin/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.15/admin/guides/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.15/admin/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.15/admin/guides/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.15/admin/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.15/admin/guides/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.15/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise", - "/de/enterprise/2.15/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.15/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.15/admin/user-management/disabling-git-ssh-access-on-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/disabling-git-ssh-access-on-your-enterprise", - "/de/enterprise/2.16/admin/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.16/admin/guides/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.16/admin/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.16/admin/guides/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.16/admin/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.16/admin/guides/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.16/admin/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.16/admin/guides/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.16/admin/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.16/admin/guides/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.16/admin/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.16/admin/guides/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.16/admin/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.16/admin/guides/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.16/admin/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.16/admin/guides/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.16/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise", - "/de/enterprise/2.16/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.16/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.16/admin/user-management/disabling-git-ssh-access-on-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/disabling-git-ssh-access-on-your-enterprise", - "/de/enterprise/2.17/admin/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.17/admin/guides/hidden/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.17/admin/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.17/admin/guides/articles/disabling-ssh-access-for-a-user-account", - "/de/enterprise/2.17/admin/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.17/admin/guides/hidden/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.17/admin/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.17/admin/guides/articles/disabling-ssh-access-for-your-appliance", - "/de/enterprise/2.17/admin/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.17/admin/guides/hidden/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.17/admin/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.17/admin/guides/articles/disabling-ssh-access-for-an-organization", - "/de/enterprise/2.17/admin/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.17/admin/guides/hidden/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.17/admin/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.17/admin/guides/articles/disabling-ssh-access-to-a-repository", - "/de/enterprise/2.17/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise", - "/de/enterprise/2.17/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.17/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/user-management/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.17/admin/user-management/disabling-git-ssh-access-on-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/exporting-migration-data-from-githubcom", - "/de/enterprise/2.13/admin/guides/migrations/exporting-migration-data-from-github-com", - "/de/enterprise/2.13/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.13/admin/guides/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.13/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.13/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.13/admin/guides/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-github-com-source-organization", - "/de/enterprise/2.13/admin/guides/migrations/exporting-the-github-com-organization-s-repositories", - "/de/enterprise/2.13/admin/user-management/exporting-migration-data-from-githubcom" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/exporting-migration-data-from-githubcom", - "/de/enterprise/2.14/admin/guides/migrations/exporting-migration-data-from-github-com", - "/de/enterprise/2.14/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.14/admin/guides/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.14/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.14/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.14/admin/guides/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-github-com-source-organization", - "/de/enterprise/2.14/admin/guides/migrations/exporting-the-github-com-organization-s-repositories", - "/de/enterprise/2.14/admin/user-management/exporting-migration-data-from-githubcom" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/exporting-migration-data-from-githubcom", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-github-com", - "/de/enterprise/2.15/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.15/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.15/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-github-com-source-organization", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-github-com-organization-s-repositories", - "/de/enterprise/2.15/admin/user-management/exporting-migration-data-from-githubcom" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/exporting-migration-data-from-githubcom", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-github-com", - "/de/enterprise/2.16/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.16/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.16/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-github-com-source-organization", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-github-com-organization-s-repositories", - "/de/enterprise/2.16/admin/user-management/exporting-migration-data-from-githubcom" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/exporting-migration-data-from-githubcom", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-github-com", - "/de/enterprise/2.17/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.17/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.17/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-github-com-source-organization", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-github-com-organization-s-repositories", - "/de/enterprise/2.17/admin/user-management/exporting-migration-data-from-githubcom" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/exporting-migration-data-from-your-enterprise", - "/de/enterprise/2.13/admin/guides/migrations/exporting-migration-data-from-github-enterprise", - "/de/enterprise/2.13/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.13/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.13/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.13/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-github-enterprise-source-instance", - "/de/enterprise/2.13/admin/guides/migrations/exporting-the-github-enterprise-source-repositories", - "/de/enterprise/2.13/admin/user-management/exporting-migration-data-from-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/exporting-migration-data-from-your-enterprise", - "/de/enterprise/2.14/admin/guides/migrations/exporting-migration-data-from-github-enterprise", - "/de/enterprise/2.14/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.14/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.14/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.14/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-github-enterprise-source-instance", - "/de/enterprise/2.14/admin/guides/migrations/exporting-the-github-enterprise-source-repositories", - "/de/enterprise/2.14/admin/user-management/exporting-migration-data-from-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/exporting-migration-data-from-your-enterprise", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-github-enterprise", - "/de/enterprise/2.15/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.15/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.15/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-github-enterprise-source-instance", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-github-enterprise-source-repositories", - "/de/enterprise/2.15/admin/user-management/exporting-migration-data-from-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/exporting-migration-data-from-your-enterprise", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-github-enterprise", - "/de/enterprise/2.16/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.16/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.16/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-github-enterprise-source-instance", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-github-enterprise-source-repositories", - "/de/enterprise/2.16/admin/user-management/exporting-migration-data-from-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/exporting-migration-data-from-your-enterprise", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-github-enterprise", - "/de/enterprise/2.17/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.17/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.17/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-github-enterprise-source-instance", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-github-enterprise-source-repositories", - "/de/enterprise/2.17/admin/user-management/exporting-migration-data-from-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.13/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.13/admin/guides/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.13/admin/user-management/importing-data-from-third-party-version-control-systems" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.14/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.14/admin/guides/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.14/admin/user-management/importing-data-from-third-party-version-control-systems" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.15/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.15/admin/guides/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.15/admin/user-management/importing-data-from-third-party-version-control-systems" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.16/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.16/admin/guides/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.16/admin/user-management/importing-data-from-third-party-version-control-systems" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.17/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.17/admin/guides/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.17/admin/user-management/importing-data-from-third-party-version-control-systems" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management", - "/de/enterprise/2.13/admin/categories/user-management", - "/de/enterprise/2.13/admin/guides/categories/user-management", - "/de/enterprise/2.13/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.13/admin/guides/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.13/admin/migrations", - "/de/enterprise/2.13/admin/guides/migrations", - "/de/enterprise/2.13/admin/clustering", - "/de/enterprise/2.13/admin/guides/clustering", - "/de/enterprise/2.13/admin/user-management" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management", - "/de/enterprise/2.14/admin/categories/user-management", - "/de/enterprise/2.14/admin/guides/categories/user-management", - "/de/enterprise/2.14/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.14/admin/guides/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.14/admin/migrations", - "/de/enterprise/2.14/admin/guides/migrations", - "/de/enterprise/2.14/admin/clustering", - "/de/enterprise/2.14/admin/guides/clustering", - "/de/enterprise/2.14/admin/user-management" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management", - "/de/enterprise/2.15/admin/categories/user-management", - "/de/enterprise/2.15/admin/guides/categories/user-management", - "/de/enterprise/2.15/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.15/admin/guides/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.15/admin/migrations", - "/de/enterprise/2.15/admin/guides/migrations", - "/de/enterprise/2.15/admin/clustering", - "/de/enterprise/2.15/admin/guides/clustering", - "/de/enterprise/2.15/admin/user-management" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management", - "/de/enterprise/2.16/admin/categories/user-management", - "/de/enterprise/2.16/admin/guides/categories/user-management", - "/de/enterprise/2.16/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.16/admin/guides/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.16/admin/migrations", - "/de/enterprise/2.16/admin/guides/migrations", - "/de/enterprise/2.16/admin/clustering", - "/de/enterprise/2.16/admin/guides/clustering", - "/de/enterprise/2.16/admin/user-management" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management", - "/de/enterprise/2.17/admin/categories/user-management", - "/de/enterprise/2.17/admin/guides/categories/user-management", - "/de/enterprise/2.17/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.17/admin/guides/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.17/admin/migrations", - "/de/enterprise/2.17/admin/guides/migrations", - "/de/enterprise/2.17/admin/clustering", - "/de/enterprise/2.17/admin/guides/clustering", - "/de/enterprise/2.17/admin/user-management" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/log-forwarding", - "/de/enterprise/2.13/admin/articles/log-forwarding", - "/de/enterprise/2.13/admin/guides/articles/log-forwarding", - "/de/enterprise/2.13/admin/installation/log-forwarding", - "/de/enterprise/2.13/admin/guides/installation/log-forwarding", - "/de/enterprise/2.13/admin/enterprise-management/log-forwarding", - "/de/enterprise/2.13/admin/guides/enterprise-management/log-forwarding", - "/de/enterprise/2.13/admin/user-management/log-forwarding" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/log-forwarding", - "/de/enterprise/2.14/admin/articles/log-forwarding", - "/de/enterprise/2.14/admin/guides/articles/log-forwarding", - "/de/enterprise/2.14/admin/installation/log-forwarding", - "/de/enterprise/2.14/admin/guides/installation/log-forwarding", - "/de/enterprise/2.14/admin/enterprise-management/log-forwarding", - "/de/enterprise/2.14/admin/guides/enterprise-management/log-forwarding", - "/de/enterprise/2.14/admin/user-management/log-forwarding" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/log-forwarding", - "/de/enterprise/2.15/admin/articles/log-forwarding", - "/de/enterprise/2.15/admin/guides/articles/log-forwarding", - "/de/enterprise/2.15/admin/installation/log-forwarding", - "/de/enterprise/2.15/admin/guides/installation/log-forwarding", - "/de/enterprise/2.15/admin/enterprise-management/log-forwarding", - "/de/enterprise/2.15/admin/guides/enterprise-management/log-forwarding", - "/de/enterprise/2.15/admin/user-management/log-forwarding" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/log-forwarding", - "/de/enterprise/2.16/admin/articles/log-forwarding", - "/de/enterprise/2.16/admin/guides/articles/log-forwarding", - "/de/enterprise/2.16/admin/installation/log-forwarding", - "/de/enterprise/2.16/admin/guides/installation/log-forwarding", - "/de/enterprise/2.16/admin/enterprise-management/log-forwarding", - "/de/enterprise/2.16/admin/guides/enterprise-management/log-forwarding", - "/de/enterprise/2.16/admin/user-management/log-forwarding" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/log-forwarding", - "/de/enterprise/2.17/admin/articles/log-forwarding", - "/de/enterprise/2.17/admin/guides/articles/log-forwarding", - "/de/enterprise/2.17/admin/installation/log-forwarding", - "/de/enterprise/2.17/admin/guides/installation/log-forwarding", - "/de/enterprise/2.17/admin/enterprise-management/log-forwarding", - "/de/enterprise/2.17/admin/guides/enterprise-management/log-forwarding", - "/de/enterprise/2.17/admin/user-management/log-forwarding" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-dormant-users", - "/de/enterprise/2.13/admin/articles/dormant-users", - "/de/enterprise/2.13/admin/guides/articles/dormant-users", - "/de/enterprise/2.13/admin/articles/viewing-dormant-users", - "/de/enterprise/2.13/admin/guides/articles/viewing-dormant-users", - "/de/enterprise/2.13/admin/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.13/admin/guides/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.13/admin/user-management/managing-dormant-users" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-dormant-users", - "/de/enterprise/2.14/admin/articles/dormant-users", - "/de/enterprise/2.14/admin/guides/articles/dormant-users", - "/de/enterprise/2.14/admin/articles/viewing-dormant-users", - "/de/enterprise/2.14/admin/guides/articles/viewing-dormant-users", - "/de/enterprise/2.14/admin/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.14/admin/guides/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.14/admin/user-management/managing-dormant-users" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-dormant-users", - "/de/enterprise/2.15/admin/articles/dormant-users", - "/de/enterprise/2.15/admin/guides/articles/dormant-users", - "/de/enterprise/2.15/admin/articles/viewing-dormant-users", - "/de/enterprise/2.15/admin/guides/articles/viewing-dormant-users", - "/de/enterprise/2.15/admin/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.15/admin/guides/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.15/admin/user-management/managing-dormant-users" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-dormant-users", - "/de/enterprise/2.16/admin/articles/dormant-users", - "/de/enterprise/2.16/admin/guides/articles/dormant-users", - "/de/enterprise/2.16/admin/articles/viewing-dormant-users", - "/de/enterprise/2.16/admin/guides/articles/viewing-dormant-users", - "/de/enterprise/2.16/admin/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.16/admin/guides/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.16/admin/user-management/managing-dormant-users" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-dormant-users", - "/de/enterprise/2.17/admin/articles/dormant-users", - "/de/enterprise/2.17/admin/guides/articles/dormant-users", - "/de/enterprise/2.17/admin/articles/viewing-dormant-users", - "/de/enterprise/2.17/admin/guides/articles/viewing-dormant-users", - "/de/enterprise/2.17/admin/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.17/admin/guides/articles/determining-whether-a-user-account-is-dormant", - "/de/enterprise/2.17/admin/user-management/managing-dormant-users" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-global-webhooks", - "/de/enterprise/2.13/admin/user-management/about-global-webhooks", - "/de/enterprise/2.13/admin/guides/user-management/about-global-webhooks", - "/de/enterprise/2.13/admin/user-management/managing-global-webhooks" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-global-webhooks", - "/de/enterprise/2.14/admin/user-management/about-global-webhooks", - "/de/enterprise/2.14/admin/guides/user-management/about-global-webhooks", - "/de/enterprise/2.14/admin/user-management/managing-global-webhooks" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-global-webhooks", - "/de/enterprise/2.15/admin/user-management/about-global-webhooks", - "/de/enterprise/2.15/admin/guides/user-management/about-global-webhooks", - "/de/enterprise/2.15/admin/user-management/managing-global-webhooks" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-global-webhooks", - "/de/enterprise/2.16/admin/user-management/about-global-webhooks", - "/de/enterprise/2.16/admin/guides/user-management/about-global-webhooks", - "/de/enterprise/2.16/admin/user-management/managing-global-webhooks" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-global-webhooks", - "/de/enterprise/2.17/admin/user-management/about-global-webhooks", - "/de/enterprise/2.17/admin/guides/user-management/about-global-webhooks", - "/de/enterprise/2.17/admin/user-management/managing-global-webhooks" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-organizations-in-your-enterprise", - "/de/enterprise/2.13/admin/articles/adding-users-and-teams", - "/de/enterprise/2.13/admin/guides/articles/adding-users-and-teams", - "/de/enterprise/2.13/admin/categories/admin-bootcamp", - "/de/enterprise/2.13/admin/guides/categories/admin-bootcamp", - "/de/enterprise/2.13/admin/user-management/organizations-and-teams", - "/de/enterprise/2.13/admin/guides/user-management/organizations-and-teams", - "/de/enterprise/2.13/admin/user-management/managing-organizations-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-organizations-in-your-enterprise", - "/de/enterprise/2.14/admin/articles/adding-users-and-teams", - "/de/enterprise/2.14/admin/guides/articles/adding-users-and-teams", - "/de/enterprise/2.14/admin/categories/admin-bootcamp", - "/de/enterprise/2.14/admin/guides/categories/admin-bootcamp", - "/de/enterprise/2.14/admin/user-management/organizations-and-teams", - "/de/enterprise/2.14/admin/guides/user-management/organizations-and-teams", - "/de/enterprise/2.14/admin/user-management/managing-organizations-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-organizations-in-your-enterprise", - "/de/enterprise/2.15/admin/articles/adding-users-and-teams", - "/de/enterprise/2.15/admin/guides/articles/adding-users-and-teams", - "/de/enterprise/2.15/admin/categories/admin-bootcamp", - "/de/enterprise/2.15/admin/guides/categories/admin-bootcamp", - "/de/enterprise/2.15/admin/user-management/organizations-and-teams", - "/de/enterprise/2.15/admin/guides/user-management/organizations-and-teams", - "/de/enterprise/2.15/admin/user-management/managing-organizations-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-organizations-in-your-enterprise", - "/de/enterprise/2.16/admin/articles/adding-users-and-teams", - "/de/enterprise/2.16/admin/guides/articles/adding-users-and-teams", - "/de/enterprise/2.16/admin/categories/admin-bootcamp", - "/de/enterprise/2.16/admin/guides/categories/admin-bootcamp", - "/de/enterprise/2.16/admin/user-management/organizations-and-teams", - "/de/enterprise/2.16/admin/guides/user-management/organizations-and-teams", - "/de/enterprise/2.16/admin/user-management/managing-organizations-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-organizations-in-your-enterprise", - "/de/enterprise/2.17/admin/articles/adding-users-and-teams", - "/de/enterprise/2.17/admin/guides/articles/adding-users-and-teams", - "/de/enterprise/2.17/admin/categories/admin-bootcamp", - "/de/enterprise/2.17/admin/guides/categories/admin-bootcamp", - "/de/enterprise/2.17/admin/user-management/organizations-and-teams", - "/de/enterprise/2.17/admin/guides/user-management/organizations-and-teams", - "/de/enterprise/2.17/admin/user-management/managing-organizations-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-projects-using-jira", - "/de/enterprise/2.13/admin/guides/installation/project-management-using-jira", - "/de/enterprise/2.13/admin/articles/project-management-using-jira", - "/de/enterprise/2.13/admin/guides/articles/project-management-using-jira", - "/de/enterprise/2.13/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.13/admin/guides/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.13/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.13/admin/guides/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.13/admin/user-management/managing-projects-using-jira" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-projects-using-jira", - "/de/enterprise/2.14/admin/guides/installation/project-management-using-jira", - "/de/enterprise/2.14/admin/articles/project-management-using-jira", - "/de/enterprise/2.14/admin/guides/articles/project-management-using-jira", - "/de/enterprise/2.14/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.14/admin/guides/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.14/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.14/admin/guides/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.14/admin/user-management/managing-projects-using-jira" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-projects-using-jira", - "/de/enterprise/2.15/admin/guides/installation/project-management-using-jira", - "/de/enterprise/2.15/admin/articles/project-management-using-jira", - "/de/enterprise/2.15/admin/guides/articles/project-management-using-jira", - "/de/enterprise/2.15/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.15/admin/guides/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.15/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.15/admin/guides/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.15/admin/user-management/managing-projects-using-jira" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-projects-using-jira", - "/de/enterprise/2.16/admin/guides/installation/project-management-using-jira", - "/de/enterprise/2.16/admin/articles/project-management-using-jira", - "/de/enterprise/2.16/admin/guides/articles/project-management-using-jira", - "/de/enterprise/2.16/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.16/admin/guides/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.16/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.16/admin/guides/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.16/admin/user-management/managing-projects-using-jira" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-projects-using-jira", - "/de/enterprise/2.17/admin/guides/installation/project-management-using-jira", - "/de/enterprise/2.17/admin/articles/project-management-using-jira", - "/de/enterprise/2.17/admin/guides/articles/project-management-using-jira", - "/de/enterprise/2.17/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.17/admin/guides/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.17/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.17/admin/guides/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.17/admin/user-management/managing-projects-using-jira" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-repositories-in-your-enterprise", - "/de/enterprise/2.13/admin/user-management/repositories", - "/de/enterprise/2.13/admin/guides/user-management/repositories", - "/de/enterprise/2.13/admin/user-management/managing-repositories-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-repositories-in-your-enterprise", - "/de/enterprise/2.14/admin/user-management/repositories", - "/de/enterprise/2.14/admin/guides/user-management/repositories", - "/de/enterprise/2.14/admin/user-management/managing-repositories-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-repositories-in-your-enterprise", - "/de/enterprise/2.15/admin/user-management/repositories", - "/de/enterprise/2.15/admin/guides/user-management/repositories", - "/de/enterprise/2.15/admin/user-management/managing-repositories-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-repositories-in-your-enterprise", - "/de/enterprise/2.16/admin/user-management/repositories", - "/de/enterprise/2.16/admin/guides/user-management/repositories", - "/de/enterprise/2.16/admin/user-management/managing-repositories-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-repositories-in-your-enterprise", - "/de/enterprise/2.17/admin/user-management/repositories", - "/de/enterprise/2.17/admin/guides/user-management/repositories", - "/de/enterprise/2.17/admin/user-management/managing-repositories-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/managing-users-in-your-enterprise", - "/de/enterprise/2.13/admin/guides/user-management/enabling-avatars-and-identicons", - "/de/enterprise/2.13/admin/user-management/basic-account-settings", - "/de/enterprise/2.13/admin/guides/user-management/basic-account-settings", - "/de/enterprise/2.13/admin/user-management/user-security", - "/de/enterprise/2.13/admin/guides/user-management/user-security", - "/de/enterprise/2.13/admin/user-management/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/managing-users-in-your-enterprise", - "/de/enterprise/2.14/admin/guides/user-management/enabling-avatars-and-identicons", - "/de/enterprise/2.14/admin/user-management/basic-account-settings", - "/de/enterprise/2.14/admin/guides/user-management/basic-account-settings", - "/de/enterprise/2.14/admin/user-management/user-security", - "/de/enterprise/2.14/admin/guides/user-management/user-security", - "/de/enterprise/2.14/admin/user-management/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/managing-users-in-your-enterprise", - "/de/enterprise/2.15/admin/guides/user-management/enabling-avatars-and-identicons", - "/de/enterprise/2.15/admin/user-management/basic-account-settings", - "/de/enterprise/2.15/admin/guides/user-management/basic-account-settings", - "/de/enterprise/2.15/admin/user-management/user-security", - "/de/enterprise/2.15/admin/guides/user-management/user-security", - "/de/enterprise/2.15/admin/user-management/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/managing-users-in-your-enterprise", - "/de/enterprise/2.16/admin/guides/user-management/enabling-avatars-and-identicons", - "/de/enterprise/2.16/admin/user-management/basic-account-settings", - "/de/enterprise/2.16/admin/guides/user-management/basic-account-settings", - "/de/enterprise/2.16/admin/user-management/user-security", - "/de/enterprise/2.16/admin/guides/user-management/user-security", - "/de/enterprise/2.16/admin/user-management/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/managing-users-in-your-enterprise", - "/de/enterprise/2.17/admin/guides/user-management/enabling-avatars-and-identicons", - "/de/enterprise/2.17/admin/user-management/basic-account-settings", - "/de/enterprise/2.17/admin/guides/user-management/basic-account-settings", - "/de/enterprise/2.17/admin/user-management/user-security", - "/de/enterprise/2.17/admin/guides/user-management/user-security", - "/de/enterprise/2.17/admin/user-management/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/migrating-data-to-and-from-your-enterprise", - "/de/enterprise/2.13/admin/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.13/admin/guides/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.13/admin/categories/migrations-and-upgrades", - "/de/enterprise/2.13/admin/guides/categories/migrations-and-upgrades", - "/de/enterprise/2.13/admin/migrations/overview", - "/de/enterprise/2.13/admin/guides/migrations/overview", - "/de/enterprise/2.13/admin/user-management/migrating-data-to-and-from-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/migrating-data-to-and-from-your-enterprise", - "/de/enterprise/2.14/admin/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.14/admin/guides/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.14/admin/categories/migrations-and-upgrades", - "/de/enterprise/2.14/admin/guides/categories/migrations-and-upgrades", - "/de/enterprise/2.14/admin/migrations/overview", - "/de/enterprise/2.14/admin/guides/migrations/overview", - "/de/enterprise/2.14/admin/user-management/migrating-data-to-and-from-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/migrating-data-to-and-from-your-enterprise", - "/de/enterprise/2.15/admin/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.15/admin/guides/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.15/admin/categories/migrations-and-upgrades", - "/de/enterprise/2.15/admin/guides/categories/migrations-and-upgrades", - "/de/enterprise/2.15/admin/migrations/overview", - "/de/enterprise/2.15/admin/guides/migrations/overview", - "/de/enterprise/2.15/admin/user-management/migrating-data-to-and-from-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/migrating-data-to-and-from-your-enterprise", - "/de/enterprise/2.16/admin/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.16/admin/guides/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.16/admin/categories/migrations-and-upgrades", - "/de/enterprise/2.16/admin/guides/categories/migrations-and-upgrades", - "/de/enterprise/2.16/admin/migrations/overview", - "/de/enterprise/2.16/admin/guides/migrations/overview", - "/de/enterprise/2.16/admin/user-management/migrating-data-to-and-from-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/migrating-data-to-and-from-your-enterprise", - "/de/enterprise/2.17/admin/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.17/admin/guides/articles/moving-a-repository-from-github-com-to-github-enterprise", - "/de/enterprise/2.17/admin/categories/migrations-and-upgrades", - "/de/enterprise/2.17/admin/guides/categories/migrations-and-upgrades", - "/de/enterprise/2.17/admin/migrations/overview", - "/de/enterprise/2.17/admin/guides/migrations/overview", - "/de/enterprise/2.17/admin/user-management/migrating-data-to-and-from-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/migrating-data-to-your-enterprise", - "/de/enterprise/2.13/admin/guides/migrations/importing-migration-data-to-github-enterprise", - "/de/enterprise/2.13/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.13/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.13/admin/guides/migrations/reviewing-migration-data", - "/de/enterprise/2.13/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/migrations/applying-the-imported-data-on-github-enterprise", - "/de/enterprise/2.13/admin/guides/migrations/reviewing-the-imported-data", - "/de/enterprise/2.13/admin/guides/migrations/completing-the-import-on-github-enterprise", - "/de/enterprise/2.13/admin/guides/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.13/admin/user-management/migrating-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/migrating-data-to-your-enterprise", - "/de/enterprise/2.14/admin/guides/migrations/importing-migration-data-to-github-enterprise", - "/de/enterprise/2.14/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.14/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.14/admin/guides/migrations/reviewing-migration-data", - "/de/enterprise/2.14/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/migrations/applying-the-imported-data-on-github-enterprise", - "/de/enterprise/2.14/admin/guides/migrations/reviewing-the-imported-data", - "/de/enterprise/2.14/admin/guides/migrations/completing-the-import-on-github-enterprise", - "/de/enterprise/2.14/admin/guides/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.14/admin/user-management/migrating-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/migrating-data-to-your-enterprise", - "/de/enterprise/2.15/admin/guides/migrations/importing-migration-data-to-github-enterprise", - "/de/enterprise/2.15/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.15/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.15/admin/guides/migrations/reviewing-migration-data", - "/de/enterprise/2.15/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/applying-the-imported-data-on-github-enterprise", - "/de/enterprise/2.15/admin/guides/migrations/reviewing-the-imported-data", - "/de/enterprise/2.15/admin/guides/migrations/completing-the-import-on-github-enterprise", - "/de/enterprise/2.15/admin/guides/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.15/admin/user-management/migrating-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/migrating-data-to-your-enterprise", - "/de/enterprise/2.16/admin/guides/migrations/importing-migration-data-to-github-enterprise", - "/de/enterprise/2.16/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.16/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.16/admin/guides/migrations/reviewing-migration-data", - "/de/enterprise/2.16/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/applying-the-imported-data-on-github-enterprise", - "/de/enterprise/2.16/admin/guides/migrations/reviewing-the-imported-data", - "/de/enterprise/2.16/admin/guides/migrations/completing-the-import-on-github-enterprise", - "/de/enterprise/2.16/admin/guides/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.16/admin/user-management/migrating-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/migrating-data-to-your-enterprise", - "/de/enterprise/2.17/admin/guides/migrations/importing-migration-data-to-github-enterprise", - "/de/enterprise/2.17/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.17/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.17/admin/guides/migrations/reviewing-migration-data", - "/de/enterprise/2.17/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/applying-the-imported-data-on-github-enterprise", - "/de/enterprise/2.17/admin/guides/migrations/reviewing-the-imported-data", - "/de/enterprise/2.17/admin/guides/migrations/completing-the-import-on-github-enterprise", - "/de/enterprise/2.17/admin/guides/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.17/admin/user-management/migrating-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/migrating-to-internal-repositories", - "/de/enterprise/2.13/admin/installation/migrating-to-internal-repositories", - "/de/enterprise/2.13/admin/guides/installation/migrating-to-internal-repositories", - "/de/enterprise/2.13/admin/user-management/migrating-to-internal-repositories" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/migrating-to-internal-repositories", - "/de/enterprise/2.14/admin/installation/migrating-to-internal-repositories", - "/de/enterprise/2.14/admin/guides/installation/migrating-to-internal-repositories", - "/de/enterprise/2.14/admin/user-management/migrating-to-internal-repositories" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/migrating-to-internal-repositories", - "/de/enterprise/2.15/admin/installation/migrating-to-internal-repositories", - "/de/enterprise/2.15/admin/guides/installation/migrating-to-internal-repositories", - "/de/enterprise/2.15/admin/user-management/migrating-to-internal-repositories" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/migrating-to-internal-repositories", - "/de/enterprise/2.16/admin/installation/migrating-to-internal-repositories", - "/de/enterprise/2.16/admin/guides/installation/migrating-to-internal-repositories", - "/de/enterprise/2.16/admin/user-management/migrating-to-internal-repositories" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/migrating-to-internal-repositories", - "/de/enterprise/2.17/admin/installation/migrating-to-internal-repositories", - "/de/enterprise/2.17/admin/guides/installation/migrating-to-internal-repositories", - "/de/enterprise/2.17/admin/user-management/migrating-to-internal-repositories" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/monitoring-activity-in-your-enterprise", - "/de/enterprise/2.13/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.13/admin/user-management/monitoring-activity-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/monitoring-activity-in-your-enterprise", - "/de/enterprise/2.14/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.14/admin/user-management/monitoring-activity-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/monitoring-activity-in-your-enterprise", - "/de/enterprise/2.15/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/user-management/monitoring-activity-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/monitoring-activity-in-your-enterprise", - "/de/enterprise/2.16/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/user-management/monitoring-activity-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/monitoring-activity-in-your-enterprise", - "/de/enterprise/2.17/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/user-management/monitoring-activity-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.13/admin/user-management/placing-a-legal-hold-on-a-user-or-organization" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.14/admin/user-management/placing-a-legal-hold-on-a-user-or-organization" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.15/admin/user-management/placing-a-legal-hold-on-a-user-or-organization" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.16/admin/user-management/placing-a-legal-hold-on-a-user-or-organization" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.17/admin/user-management/placing-a-legal-hold-on-a-user-or-organization" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/preparing-to-migrate-data-to-your-enterprise", - "/de/enterprise/2.13/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.13/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.13/admin/guides/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.13/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.13/admin/guides/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.13/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.13/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.13/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise", - "/de/enterprise/2.13/admin/user-management/preparing-to-migrate-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/preparing-to-migrate-data-to-your-enterprise", - "/de/enterprise/2.14/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.14/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.14/admin/guides/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.14/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.14/admin/guides/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.14/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.14/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.14/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise", - "/de/enterprise/2.14/admin/user-management/preparing-to-migrate-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/preparing-to-migrate-data-to-your-enterprise", - "/de/enterprise/2.15/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.15/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.15/admin/guides/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.15/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.15/admin/guides/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.15/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.15/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise", - "/de/enterprise/2.15/admin/user-management/preparing-to-migrate-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/preparing-to-migrate-data-to-your-enterprise", - "/de/enterprise/2.16/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.16/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.16/admin/guides/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.16/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.16/admin/guides/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.16/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.16/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise", - "/de/enterprise/2.16/admin/user-management/preparing-to-migrate-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/preparing-to-migrate-data-to-your-enterprise", - "/de/enterprise/2.17/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.17/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.17/admin/guides/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.17/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.17/admin/guides/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.17/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.17/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise", - "/de/enterprise/2.17/admin/user-management/preparing-to-migrate-data-to-your-enterprise" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.13/admin/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.13/admin/guides/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.13/admin/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.13/admin/guides/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.13/admin/user-management/preventing-users-from-creating-organizations" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.14/admin/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.14/admin/guides/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.14/admin/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.14/admin/guides/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.14/admin/user-management/preventing-users-from-creating-organizations" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/guides/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/guides/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/user-management/preventing-users-from-creating-organizations" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/guides/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/guides/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/user-management/preventing-users-from-creating-organizations" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/guides/articles/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/guides/hidden/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/user-management/preventing-users-from-creating-organizations" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.13/admin/articles/promoting-a-site-administrator", - "/de/enterprise/2.13/admin/guides/articles/promoting-a-site-administrator", - "/de/enterprise/2.13/admin/articles/demoting-a-site-administrator", - "/de/enterprise/2.13/admin/guides/articles/demoting-a-site-administrator", - "/de/enterprise/2.13/admin/user-management/promoting-or-demoting-a-site-administrator" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.14/admin/articles/promoting-a-site-administrator", - "/de/enterprise/2.14/admin/guides/articles/promoting-a-site-administrator", - "/de/enterprise/2.14/admin/articles/demoting-a-site-administrator", - "/de/enterprise/2.14/admin/guides/articles/demoting-a-site-administrator", - "/de/enterprise/2.14/admin/user-management/promoting-or-demoting-a-site-administrator" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.15/admin/articles/promoting-a-site-administrator", - "/de/enterprise/2.15/admin/guides/articles/promoting-a-site-administrator", - "/de/enterprise/2.15/admin/articles/demoting-a-site-administrator", - "/de/enterprise/2.15/admin/guides/articles/demoting-a-site-administrator", - "/de/enterprise/2.15/admin/user-management/promoting-or-demoting-a-site-administrator" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.16/admin/articles/promoting-a-site-administrator", - "/de/enterprise/2.16/admin/guides/articles/promoting-a-site-administrator", - "/de/enterprise/2.16/admin/articles/demoting-a-site-administrator", - "/de/enterprise/2.16/admin/guides/articles/demoting-a-site-administrator", - "/de/enterprise/2.16/admin/user-management/promoting-or-demoting-a-site-administrator" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.17/admin/articles/promoting-a-site-administrator", - "/de/enterprise/2.17/admin/guides/articles/promoting-a-site-administrator", - "/de/enterprise/2.17/admin/articles/demoting-a-site-administrator", - "/de/enterprise/2.17/admin/guides/articles/demoting-a-site-administrator", - "/de/enterprise/2.17/admin/user-management/promoting-or-demoting-a-site-administrator" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/rebuilding-contributions-data", - "/de/enterprise/2.13/admin/articles/rebuilding-contributions-data", - "/de/enterprise/2.13/admin/guides/articles/rebuilding-contributions-data", - "/de/enterprise/2.13/admin/user-management/rebuilding-contributions-data" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/rebuilding-contributions-data", - "/de/enterprise/2.14/admin/articles/rebuilding-contributions-data", - "/de/enterprise/2.14/admin/guides/articles/rebuilding-contributions-data", - "/de/enterprise/2.14/admin/user-management/rebuilding-contributions-data" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/rebuilding-contributions-data", - "/de/enterprise/2.15/admin/articles/rebuilding-contributions-data", - "/de/enterprise/2.15/admin/guides/articles/rebuilding-contributions-data", - "/de/enterprise/2.15/admin/user-management/rebuilding-contributions-data" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/rebuilding-contributions-data", - "/de/enterprise/2.16/admin/articles/rebuilding-contributions-data", - "/de/enterprise/2.16/admin/guides/articles/rebuilding-contributions-data", - "/de/enterprise/2.16/admin/user-management/rebuilding-contributions-data" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/rebuilding-contributions-data", - "/de/enterprise/2.17/admin/articles/rebuilding-contributions-data", - "/de/enterprise/2.17/admin/guides/articles/rebuilding-contributions-data", - "/de/enterprise/2.17/admin/user-management/rebuilding-contributions-data" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.13/admin/user-management/removing-users-from-teams-and-organizations" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.14/admin/user-management/removing-users-from-teams-and-organizations" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.15/admin/user-management/removing-users-from-teams-and-organizations" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.16/admin/user-management/removing-users-from-teams-and-organizations" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.17/admin/user-management/removing-users-from-teams-and-organizations" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.13/admin/user-management/requiring-two-factor-authentication-for-an-organization" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.14/admin/user-management/requiring-two-factor-authentication-for-an-organization" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.15/admin/user-management/requiring-two-factor-authentication-for-an-organization" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.16/admin/user-management/requiring-two-factor-authentication-for-an-organization" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.17/admin/user-management/requiring-two-factor-authentication-for-an-organization" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/searching-the-audit-log", - "/de/enterprise/2.13/admin/articles/searching-the-audit-log", - "/de/enterprise/2.13/admin/guides/articles/searching-the-audit-log", - "/de/enterprise/2.13/admin/installation/searching-the-audit-log", - "/de/enterprise/2.13/admin/guides/installation/searching-the-audit-log", - "/de/enterprise/2.13/admin/user-management/searching-the-audit-log" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/searching-the-audit-log", - "/de/enterprise/2.14/admin/articles/searching-the-audit-log", - "/de/enterprise/2.14/admin/guides/articles/searching-the-audit-log", - "/de/enterprise/2.14/admin/installation/searching-the-audit-log", - "/de/enterprise/2.14/admin/guides/installation/searching-the-audit-log", - "/de/enterprise/2.14/admin/user-management/searching-the-audit-log" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/searching-the-audit-log", - "/de/enterprise/2.15/admin/articles/searching-the-audit-log", - "/de/enterprise/2.15/admin/guides/articles/searching-the-audit-log", - "/de/enterprise/2.15/admin/installation/searching-the-audit-log", - "/de/enterprise/2.15/admin/guides/installation/searching-the-audit-log", - "/de/enterprise/2.15/admin/user-management/searching-the-audit-log" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/searching-the-audit-log", - "/de/enterprise/2.16/admin/articles/searching-the-audit-log", - "/de/enterprise/2.16/admin/guides/articles/searching-the-audit-log", - "/de/enterprise/2.16/admin/installation/searching-the-audit-log", - "/de/enterprise/2.16/admin/guides/installation/searching-the-audit-log", - "/de/enterprise/2.16/admin/user-management/searching-the-audit-log" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/searching-the-audit-log", - "/de/enterprise/2.17/admin/articles/searching-the-audit-log", - "/de/enterprise/2.17/admin/guides/articles/searching-the-audit-log", - "/de/enterprise/2.17/admin/installation/searching-the-audit-log", - "/de/enterprise/2.17/admin/guides/installation/searching-the-audit-log", - "/de/enterprise/2.17/admin/user-management/searching-the-audit-log" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.13/admin/articles/suspending-a-user", - "/de/enterprise/2.13/admin/guides/articles/suspending-a-user", - "/de/enterprise/2.13/admin/articles/unsuspending-a-user", - "/de/enterprise/2.13/admin/guides/articles/unsuspending-a-user", - "/de/enterprise/2.13/admin/articles/viewing-suspended-users", - "/de/enterprise/2.13/admin/guides/articles/viewing-suspended-users", - "/de/enterprise/2.13/admin/articles/suspended-users", - "/de/enterprise/2.13/admin/guides/articles/suspended-users", - "/de/enterprise/2.13/admin/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.13/admin/guides/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.13/admin/user-management/suspending-and-unsuspending-users" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.14/admin/articles/suspending-a-user", - "/de/enterprise/2.14/admin/guides/articles/suspending-a-user", - "/de/enterprise/2.14/admin/articles/unsuspending-a-user", - "/de/enterprise/2.14/admin/guides/articles/unsuspending-a-user", - "/de/enterprise/2.14/admin/articles/viewing-suspended-users", - "/de/enterprise/2.14/admin/guides/articles/viewing-suspended-users", - "/de/enterprise/2.14/admin/articles/suspended-users", - "/de/enterprise/2.14/admin/guides/articles/suspended-users", - "/de/enterprise/2.14/admin/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.14/admin/guides/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.14/admin/user-management/suspending-and-unsuspending-users" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.15/admin/articles/suspending-a-user", - "/de/enterprise/2.15/admin/guides/articles/suspending-a-user", - "/de/enterprise/2.15/admin/articles/unsuspending-a-user", - "/de/enterprise/2.15/admin/guides/articles/unsuspending-a-user", - "/de/enterprise/2.15/admin/articles/viewing-suspended-users", - "/de/enterprise/2.15/admin/guides/articles/viewing-suspended-users", - "/de/enterprise/2.15/admin/articles/suspended-users", - "/de/enterprise/2.15/admin/guides/articles/suspended-users", - "/de/enterprise/2.15/admin/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.15/admin/guides/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.15/admin/user-management/suspending-and-unsuspending-users" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.16/admin/articles/suspending-a-user", - "/de/enterprise/2.16/admin/guides/articles/suspending-a-user", - "/de/enterprise/2.16/admin/articles/unsuspending-a-user", - "/de/enterprise/2.16/admin/guides/articles/unsuspending-a-user", - "/de/enterprise/2.16/admin/articles/viewing-suspended-users", - "/de/enterprise/2.16/admin/guides/articles/viewing-suspended-users", - "/de/enterprise/2.16/admin/articles/suspended-users", - "/de/enterprise/2.16/admin/guides/articles/suspended-users", - "/de/enterprise/2.16/admin/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.16/admin/guides/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.16/admin/user-management/suspending-and-unsuspending-users" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.17/admin/articles/suspending-a-user", - "/de/enterprise/2.17/admin/guides/articles/suspending-a-user", - "/de/enterprise/2.17/admin/articles/unsuspending-a-user", - "/de/enterprise/2.17/admin/guides/articles/unsuspending-a-user", - "/de/enterprise/2.17/admin/articles/viewing-suspended-users", - "/de/enterprise/2.17/admin/guides/articles/viewing-suspended-users", - "/de/enterprise/2.17/admin/articles/suspended-users", - "/de/enterprise/2.17/admin/guides/articles/suspended-users", - "/de/enterprise/2.17/admin/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.17/admin/guides/articles/suspending-and-unsuspending-users", - "/de/enterprise/2.17/admin/user-management/suspending-and-unsuspending-users" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/troubleshooting-service-hooks", - "/de/enterprise/2.13/admin/articles/troubleshooting-service-hooks", - "/de/enterprise/2.13/admin/guides/articles/troubleshooting-service-hooks", - "/de/enterprise/2.13/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.13/admin/guides/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.13/admin/user-management/troubleshooting-service-hooks" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/troubleshooting-service-hooks", - "/de/enterprise/2.14/admin/articles/troubleshooting-service-hooks", - "/de/enterprise/2.14/admin/guides/articles/troubleshooting-service-hooks", - "/de/enterprise/2.14/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.14/admin/guides/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.14/admin/user-management/troubleshooting-service-hooks" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/articles/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/guides/articles/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/guides/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/user-management/troubleshooting-service-hooks" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/articles/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/guides/articles/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/guides/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/user-management/troubleshooting-service-hooks" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/articles/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/guides/articles/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/guides/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/user-management/troubleshooting-service-hooks" - ], - [ - "/de/enterprise/2.13/admin/guides/user-management/viewing-push-logs", - "/de/enterprise/2.13/admin/articles/viewing-push-logs", - "/de/enterprise/2.13/admin/guides/articles/viewing-push-logs", - "/de/enterprise/2.13/admin/installation/viewing-push-logs", - "/de/enterprise/2.13/admin/guides/installation/viewing-push-logs", - "/de/enterprise/2.13/admin/user-management/viewing-push-logs" - ], - [ - "/de/enterprise/2.14/admin/guides/user-management/viewing-push-logs", - "/de/enterprise/2.14/admin/articles/viewing-push-logs", - "/de/enterprise/2.14/admin/guides/articles/viewing-push-logs", - "/de/enterprise/2.14/admin/installation/viewing-push-logs", - "/de/enterprise/2.14/admin/guides/installation/viewing-push-logs", - "/de/enterprise/2.14/admin/user-management/viewing-push-logs" - ], - [ - "/de/enterprise/2.15/admin/guides/user-management/viewing-push-logs", - "/de/enterprise/2.15/admin/articles/viewing-push-logs", - "/de/enterprise/2.15/admin/guides/articles/viewing-push-logs", - "/de/enterprise/2.15/admin/installation/viewing-push-logs", - "/de/enterprise/2.15/admin/guides/installation/viewing-push-logs", - "/de/enterprise/2.15/admin/user-management/viewing-push-logs" - ], - [ - "/de/enterprise/2.16/admin/guides/user-management/viewing-push-logs", - "/de/enterprise/2.16/admin/articles/viewing-push-logs", - "/de/enterprise/2.16/admin/guides/articles/viewing-push-logs", - "/de/enterprise/2.16/admin/installation/viewing-push-logs", - "/de/enterprise/2.16/admin/guides/installation/viewing-push-logs", - "/de/enterprise/2.16/admin/user-management/viewing-push-logs" - ], - [ - "/de/enterprise/2.17/admin/guides/user-management/viewing-push-logs", - "/de/enterprise/2.17/admin/articles/viewing-push-logs", - "/de/enterprise/2.17/admin/guides/articles/viewing-push-logs", - "/de/enterprise/2.17/admin/installation/viewing-push-logs", - "/de/enterprise/2.17/admin/guides/installation/viewing-push-logs", - "/de/enterprise/2.17/admin/user-management/viewing-push-logs" - ], - [ - "/de/enterprise/2.13/user/developers/apps/about-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.13/apps/building-integrations", - "/de/enterprise/2.13/user/apps/building-integrations", - "/de/enterprise/2.13/apps/getting-started-with-building-apps", - "/de/enterprise/2.13/user/apps/getting-started-with-building-apps", - "/de/enterprise/2.13/apps/about-apps", - "/de/enterprise/2.13/user/apps/about-apps", - "/de/enterprise/2.13/developers/apps/about-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/about-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.14/apps/building-integrations", - "/de/enterprise/2.14/user/apps/building-integrations", - "/de/enterprise/2.14/apps/getting-started-with-building-apps", - "/de/enterprise/2.14/user/apps/getting-started-with-building-apps", - "/de/enterprise/2.14/apps/about-apps", - "/de/enterprise/2.14/user/apps/about-apps", - "/de/enterprise/2.14/developers/apps/about-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/about-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.15/apps/building-integrations", - "/de/enterprise/2.15/user/apps/building-integrations", - "/de/enterprise/2.15/apps/getting-started-with-building-apps", - "/de/enterprise/2.15/user/apps/getting-started-with-building-apps", - "/de/enterprise/2.15/apps/about-apps", - "/de/enterprise/2.15/user/apps/about-apps", - "/de/enterprise/2.15/developers/apps/about-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/about-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.16/apps/building-integrations", - "/de/enterprise/2.16/user/apps/building-integrations", - "/de/enterprise/2.16/apps/getting-started-with-building-apps", - "/de/enterprise/2.16/user/apps/getting-started-with-building-apps", - "/de/enterprise/2.16/apps/about-apps", - "/de/enterprise/2.16/user/apps/about-apps", - "/de/enterprise/2.16/developers/apps/about-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/about-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-a-new-integration", - "/de/enterprise/2.17/apps/building-integrations", - "/de/enterprise/2.17/user/apps/building-integrations", - "/de/enterprise/2.17/apps/getting-started-with-building-apps", - "/de/enterprise/2.17/user/apps/getting-started-with-building-apps", - "/de/enterprise/2.17/apps/about-apps", - "/de/enterprise/2.17/user/apps/about-apps", - "/de/enterprise/2.17/developers/apps/about-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/authenticating-with-github-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.13/developers/apps/authenticating-with-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/authenticating-with-github-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.14/developers/apps/authenticating-with-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/authenticating-with-github-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.15/developers/apps/authenticating-with-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/authenticating-with-github-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.16/developers/apps/authenticating-with-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/authenticating-with-github-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/authentication-options-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/authenticating-with-github-apps", - "/de/enterprise/2.17/developers/apps/authenticating-with-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.13/v3/oauth", - "/de/enterprise/2.13/user/v3/oauth", - "/de/enterprise/2.13/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.13/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.13/developers/apps/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.14/v3/oauth", - "/de/enterprise/2.14/user/v3/oauth", - "/de/enterprise/2.14/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.14/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.14/developers/apps/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.15/v3/oauth", - "/de/enterprise/2.15/user/v3/oauth", - "/de/enterprise/2.15/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.15/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.15/developers/apps/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.16/v3/oauth", - "/de/enterprise/2.16/user/v3/oauth", - "/de/enterprise/2.16/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.16/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.16/developers/apps/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-authorization-options-for-oauth-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps/directing-users-to-review-their-access", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps/creating-multiple-tokens-for-oauth-apps", - "/de/enterprise/2.17/v3/oauth", - "/de/enterprise/2.17/user/v3/oauth", - "/de/enterprise/2.17/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps/authorization-options-for-oauth-apps", - "/de/enterprise/2.17/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps/authorizing-oauth-apps", - "/de/enterprise/2.17/developers/apps/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/building-github-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.13/apps/building-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps", - "/de/enterprise/2.13/developers/apps/building-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/building-github-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.14/apps/building-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps", - "/de/enterprise/2.14/developers/apps/building-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/building-github-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.15/apps/building-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps", - "/de/enterprise/2.15/developers/apps/building-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/building-github-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.16/apps/building-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps", - "/de/enterprise/2.16/developers/apps/building-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/building-github-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps", - "/de/enterprise/2.17/apps/building-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps", - "/de/enterprise/2.17/developers/apps/building-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/building-oauth-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.13/apps/building-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps", - "/de/enterprise/2.13/developers/apps/building-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/building-oauth-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.14/apps/building-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps", - "/de/enterprise/2.14/developers/apps/building-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/building-oauth-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.15/apps/building-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps", - "/de/enterprise/2.15/developers/apps/building-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/building-oauth-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.16/apps/building-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps", - "/de/enterprise/2.16/developers/apps/building-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/building-oauth-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps", - "/de/enterprise/2.17/apps/building-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps", - "/de/enterprise/2.17/developers/apps/building-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-a-custom-badge-for-your-github-app", - "/de/enterprise/2.13/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.13/developers/apps/creating-a-custom-badge-for-your-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-a-custom-badge-for-your-github-app", - "/de/enterprise/2.14/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.14/developers/apps/creating-a-custom-badge-for-your-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-a-custom-badge-for-your-github-app", - "/de/enterprise/2.15/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.15/developers/apps/creating-a-custom-badge-for-your-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-a-custom-badge-for-your-github-app", - "/de/enterprise/2.16/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.16/developers/apps/creating-a-custom-badge-for-your-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-a-custom-badge-for-your-github-app", - "/de/enterprise/2.17/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/creating-custom-badges-for-github-apps", - "/de/enterprise/2.17/developers/apps/creating-a-custom-badge-for-your-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-a-custom-badge-for-your-oauth-app", - "/de/enterprise/2.13/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.13/developers/apps/creating-a-custom-badge-for-your-oauth-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-a-custom-badge-for-your-oauth-app", - "/de/enterprise/2.14/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.14/developers/apps/creating-a-custom-badge-for-your-oauth-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-a-custom-badge-for-your-oauth-app", - "/de/enterprise/2.15/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.15/developers/apps/creating-a-custom-badge-for-your-oauth-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-a-custom-badge-for-your-oauth-app", - "/de/enterprise/2.16/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.16/developers/apps/creating-a-custom-badge-for-your-oauth-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-a-custom-badge-for-your-oauth-app", - "/de/enterprise/2.17/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps/creating-custom-badges-for-oauth-apps", - "/de/enterprise/2.17/developers/apps/creating-a-custom-badge-for-your-oauth-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-a-github-app-from-a-manifest", - "/de/enterprise/2.13/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.13/user/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.13/developers/apps/creating-a-github-app-from-a-manifest" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-a-github-app-from-a-manifest", - "/de/enterprise/2.14/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.14/user/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.14/developers/apps/creating-a-github-app-from-a-manifest" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-a-github-app-from-a-manifest", - "/de/enterprise/2.15/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.15/user/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.15/developers/apps/creating-a-github-app-from-a-manifest" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-a-github-app-from-a-manifest", - "/de/enterprise/2.16/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.16/user/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.16/developers/apps/creating-a-github-app-from-a-manifest" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-a-github-app-from-a-manifest", - "/de/enterprise/2.17/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.17/user/apps/building-github-apps/creating-github-apps-from-a-manifest", - "/de/enterprise/2.17/developers/apps/creating-a-github-app-from-a-manifest" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-a-github-app-using-url-parameters", - "/de/enterprise/2.13/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.13/user/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.13/developers/apps/creating-a-github-app-using-url-parameters" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-a-github-app-using-url-parameters", - "/de/enterprise/2.14/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.14/user/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.14/developers/apps/creating-a-github-app-using-url-parameters" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-a-github-app-using-url-parameters", - "/de/enterprise/2.15/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.15/user/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.15/developers/apps/creating-a-github-app-using-url-parameters" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-a-github-app-using-url-parameters", - "/de/enterprise/2.16/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.16/user/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.16/developers/apps/creating-a-github-app-using-url-parameters" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-a-github-app-using-url-parameters", - "/de/enterprise/2.17/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.17/user/apps/building-github-apps/creating-github-apps-using-url-parameters", - "/de/enterprise/2.17/developers/apps/creating-a-github-app-using-url-parameters" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-a-github-app", - "/de/enterprise/2.13/early-access/integrations/creating-an-integration", - "/de/enterprise/2.13/user/early-access/integrations/creating-an-integration", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.13/user/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.13/developers/apps/creating-a-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-a-github-app", - "/de/enterprise/2.14/early-access/integrations/creating-an-integration", - "/de/enterprise/2.14/user/early-access/integrations/creating-an-integration", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.14/user/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.14/developers/apps/creating-a-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-a-github-app", - "/de/enterprise/2.15/early-access/integrations/creating-an-integration", - "/de/enterprise/2.15/user/early-access/integrations/creating-an-integration", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.15/user/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.15/developers/apps/creating-a-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-a-github-app", - "/de/enterprise/2.16/early-access/integrations/creating-an-integration", - "/de/enterprise/2.16/user/early-access/integrations/creating-an-integration", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.16/user/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.16/developers/apps/creating-a-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-a-github-app", - "/de/enterprise/2.17/early-access/integrations/creating-an-integration", - "/de/enterprise/2.17/user/early-access/integrations/creating-an-integration", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/registering-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.17/user/apps/building-github-apps/creating-a-github-app", - "/de/enterprise/2.17/developers/apps/creating-a-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-an-oauth-app", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.13/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.13/user/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.13/developers/apps/creating-an-oauth-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-an-oauth-app", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.14/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.14/user/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.14/developers/apps/creating-an-oauth-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-an-oauth-app", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.15/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.15/user/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.15/developers/apps/creating-an-oauth-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-an-oauth-app", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.16/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.16/user/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.16/developers/apps/creating-an-oauth-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-an-oauth-app", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps", - "/de/enterprise/2.17/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.17/user/apps/building-oauth-apps/creating-an-oauth-app", - "/de/enterprise/2.17/developers/apps/creating-an-oauth-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.13/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.13/user/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.13/developers/apps/creating-ci-tests-with-the-checks-api" - ], - [ - "/de/enterprise/2.14/user/developers/apps/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.14/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.14/user/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.14/developers/apps/creating-ci-tests-with-the-checks-api" - ], - [ - "/de/enterprise/2.15/user/developers/apps/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.15/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.15/user/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.15/developers/apps/creating-ci-tests-with-the-checks-api" - ], - [ - "/de/enterprise/2.16/user/developers/apps/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.16/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.16/user/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.16/developers/apps/creating-ci-tests-with-the-checks-api" - ], - [ - "/de/enterprise/2.17/user/developers/apps/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.17/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.17/user/apps/quickstart-guides/creating-ci-tests-with-the-checks-api", - "/de/enterprise/2.17/developers/apps/creating-ci-tests-with-the-checks-api" - ], - [ - "/de/enterprise/2.13/user/developers/apps/deleting-a-github-app", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.13/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.13/user/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.13/developers/apps/deleting-a-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/deleting-a-github-app", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.14/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.14/user/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.14/developers/apps/deleting-a-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/deleting-a-github-app", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.15/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.15/user/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.15/developers/apps/deleting-a-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/deleting-a-github-app", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.16/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.16/user/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.16/developers/apps/deleting-a-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/deleting-a-github-app", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.17/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.17/user/apps/managing-github-apps/deleting-a-github-app", - "/de/enterprise/2.17/developers/apps/deleting-a-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/deleting-an-oauth-app", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.13/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.13/user/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.13/developers/apps/deleting-an-oauth-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/deleting-an-oauth-app", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.14/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.14/user/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.14/developers/apps/deleting-an-oauth-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/deleting-an-oauth-app", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.15/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.15/user/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.15/developers/apps/deleting-an-oauth-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/deleting-an-oauth-app", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.16/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.16/user/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.16/developers/apps/deleting-an-oauth-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/deleting-an-oauth-app", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.17/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.17/user/apps/managing-oauth-apps/deleting-an-oauth-app", - "/de/enterprise/2.17/developers/apps/deleting-an-oauth-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/differences-between-github-apps-and-oauth-apps", - "/de/enterprise/2.13/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.13/user/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.13/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.13/apps/differences-between-apps", - "/de/enterprise/2.13/user/apps/differences-between-apps", - "/de/enterprise/2.13/developers/apps/differences-between-github-apps-and-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/differences-between-github-apps-and-oauth-apps", - "/de/enterprise/2.14/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.14/user/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.14/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.14/apps/differences-between-apps", - "/de/enterprise/2.14/user/apps/differences-between-apps", - "/de/enterprise/2.14/developers/apps/differences-between-github-apps-and-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/differences-between-github-apps-and-oauth-apps", - "/de/enterprise/2.15/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.15/user/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.15/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.15/apps/differences-between-apps", - "/de/enterprise/2.15/user/apps/differences-between-apps", - "/de/enterprise/2.15/developers/apps/differences-between-github-apps-and-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/differences-between-github-apps-and-oauth-apps", - "/de/enterprise/2.16/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.16/user/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.16/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.16/apps/differences-between-apps", - "/de/enterprise/2.16/user/apps/differences-between-apps", - "/de/enterprise/2.16/developers/apps/differences-between-github-apps-and-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/differences-between-github-apps-and-oauth-apps", - "/de/enterprise/2.17/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.17/user/early-access/integrations/integrations-vs-oauth-applications", - "/de/enterprise/2.17/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type", - "/de/enterprise/2.17/apps/differences-between-apps", - "/de/enterprise/2.17/user/apps/differences-between-apps", - "/de/enterprise/2.17/developers/apps/differences-between-github-apps-and-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/editing-a-github-apps-permissions", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.13/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.13/user/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.13/developers/apps/editing-a-github-apps-permissions" - ], - [ - "/de/enterprise/2.14/user/developers/apps/editing-a-github-apps-permissions", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.14/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.14/user/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.14/developers/apps/editing-a-github-apps-permissions" - ], - [ - "/de/enterprise/2.15/user/developers/apps/editing-a-github-apps-permissions", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.15/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.15/user/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.15/developers/apps/editing-a-github-apps-permissions" - ], - [ - "/de/enterprise/2.16/user/developers/apps/editing-a-github-apps-permissions", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.16/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.16/user/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.16/developers/apps/editing-a-github-apps-permissions" - ], - [ - "/de/enterprise/2.17/user/developers/apps/editing-a-github-apps-permissions", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.17/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.17/user/apps/managing-github-apps/editing-a-github-app-s-permissions", - "/de/enterprise/2.17/developers/apps/editing-a-github-apps-permissions" - ], - [ - "/de/enterprise/2.13/user/developers/apps/getting-started-with-apps", - "/de/enterprise/2.13/developers/apps/getting-started-with-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/getting-started-with-apps", - "/de/enterprise/2.14/developers/apps/getting-started-with-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/getting-started-with-apps", - "/de/enterprise/2.15/developers/apps/getting-started-with-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/getting-started-with-apps", - "/de/enterprise/2.16/developers/apps/getting-started-with-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/getting-started-with-apps", - "/de/enterprise/2.17/developers/apps/getting-started-with-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/guides", - "/de/enterprise/2.13/apps/quickstart-guides", - "/de/enterprise/2.13/user/apps/quickstart-guides", - "/de/enterprise/2.13/developers/apps/guides" - ], - [ - "/de/enterprise/2.14/user/developers/apps/guides", - "/de/enterprise/2.14/apps/quickstart-guides", - "/de/enterprise/2.14/user/apps/quickstart-guides", - "/de/enterprise/2.14/developers/apps/guides" - ], - [ - "/de/enterprise/2.15/user/developers/apps/guides", - "/de/enterprise/2.15/apps/quickstart-guides", - "/de/enterprise/2.15/user/apps/quickstart-guides", - "/de/enterprise/2.15/developers/apps/guides" - ], - [ - "/de/enterprise/2.16/user/developers/apps/guides", - "/de/enterprise/2.16/apps/quickstart-guides", - "/de/enterprise/2.16/user/apps/quickstart-guides", - "/de/enterprise/2.16/developers/apps/guides" - ], - [ - "/de/enterprise/2.17/user/developers/apps/guides", - "/de/enterprise/2.17/apps/quickstart-guides", - "/de/enterprise/2.17/user/apps/quickstart-guides", - "/de/enterprise/2.17/developers/apps/guides" - ], - [ - "/de/enterprise/2.13/user/developers/apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.13/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.13/user/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.13/developers/apps/identifying-and-authorizing-users-for-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.14/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.14/user/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.14/developers/apps/identifying-and-authorizing-users-for-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.15/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.15/user/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.15/developers/apps/identifying-and-authorizing-users-for-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.16/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.16/user/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.16/developers/apps/identifying-and-authorizing-users-for-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.17/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.17/user/early-access/integrations/user-identification-authorization", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/identifying-users-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", - "/de/enterprise/2.17/developers/apps/identifying-and-authorizing-users-for-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps", - "/de/enterprise/2.13/early-access/integrations", - "/de/enterprise/2.13/user/early-access/integrations", - "/de/enterprise/2.13/early-access/integrations/authentication", - "/de/enterprise/2.13/user/early-access/integrations/authentication", - "/de/enterprise/2.13/early-access/integrations/install-an-integration", - "/de/enterprise/2.13/user/early-access/integrations/install-an-integration", - "/de/enterprise/2.13/apps/adding-integrations", - "/de/enterprise/2.13/user/apps/adding-integrations", - "/de/enterprise/2.13/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.13/apps", - "/de/enterprise/2.13/user/apps", - "/de/enterprise/2.13/v3/integrations", - "/de/enterprise/2.13/user/v3/integrations", - "/de/enterprise/2.13/developers/apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps", - "/de/enterprise/2.14/early-access/integrations", - "/de/enterprise/2.14/user/early-access/integrations", - "/de/enterprise/2.14/early-access/integrations/authentication", - "/de/enterprise/2.14/user/early-access/integrations/authentication", - "/de/enterprise/2.14/early-access/integrations/install-an-integration", - "/de/enterprise/2.14/user/early-access/integrations/install-an-integration", - "/de/enterprise/2.14/apps/adding-integrations", - "/de/enterprise/2.14/user/apps/adding-integrations", - "/de/enterprise/2.14/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.14/apps", - "/de/enterprise/2.14/user/apps", - "/de/enterprise/2.14/v3/integrations", - "/de/enterprise/2.14/user/v3/integrations", - "/de/enterprise/2.14/developers/apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps", - "/de/enterprise/2.15/early-access/integrations", - "/de/enterprise/2.15/user/early-access/integrations", - "/de/enterprise/2.15/early-access/integrations/authentication", - "/de/enterprise/2.15/user/early-access/integrations/authentication", - "/de/enterprise/2.15/early-access/integrations/install-an-integration", - "/de/enterprise/2.15/user/early-access/integrations/install-an-integration", - "/de/enterprise/2.15/apps/adding-integrations", - "/de/enterprise/2.15/user/apps/adding-integrations", - "/de/enterprise/2.15/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.15/apps", - "/de/enterprise/2.15/user/apps", - "/de/enterprise/2.15/v3/integrations", - "/de/enterprise/2.15/user/v3/integrations", - "/de/enterprise/2.15/developers/apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps", - "/de/enterprise/2.16/early-access/integrations", - "/de/enterprise/2.16/user/early-access/integrations", - "/de/enterprise/2.16/early-access/integrations/authentication", - "/de/enterprise/2.16/user/early-access/integrations/authentication", - "/de/enterprise/2.16/early-access/integrations/install-an-integration", - "/de/enterprise/2.16/user/early-access/integrations/install-an-integration", - "/de/enterprise/2.16/apps/adding-integrations", - "/de/enterprise/2.16/user/apps/adding-integrations", - "/de/enterprise/2.16/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.16/apps", - "/de/enterprise/2.16/user/apps", - "/de/enterprise/2.16/v3/integrations", - "/de/enterprise/2.16/user/v3/integrations", - "/de/enterprise/2.16/developers/apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps", - "/de/enterprise/2.17/early-access/integrations", - "/de/enterprise/2.17/user/early-access/integrations", - "/de/enterprise/2.17/early-access/integrations/authentication", - "/de/enterprise/2.17/user/early-access/integrations/authentication", - "/de/enterprise/2.17/early-access/integrations/install-an-integration", - "/de/enterprise/2.17/user/early-access/integrations/install-an-integration", - "/de/enterprise/2.17/apps/adding-integrations", - "/de/enterprise/2.17/user/apps/adding-integrations", - "/de/enterprise/2.17/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-a-new-integration/about-integrations", - "/de/enterprise/2.17/apps", - "/de/enterprise/2.17/user/apps", - "/de/enterprise/2.17/v3/integrations", - "/de/enterprise/2.17/user/v3/integrations", - "/de/enterprise/2.17/developers/apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/installing-github-apps", - "/de/enterprise/2.13/apps/installing-github-apps", - "/de/enterprise/2.13/user/apps/installing-github-apps", - "/de/enterprise/2.13/developers/apps/installing-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/installing-github-apps", - "/de/enterprise/2.14/apps/installing-github-apps", - "/de/enterprise/2.14/user/apps/installing-github-apps", - "/de/enterprise/2.14/developers/apps/installing-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/installing-github-apps", - "/de/enterprise/2.15/apps/installing-github-apps", - "/de/enterprise/2.15/user/apps/installing-github-apps", - "/de/enterprise/2.15/developers/apps/installing-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/installing-github-apps", - "/de/enterprise/2.16/apps/installing-github-apps", - "/de/enterprise/2.16/user/apps/installing-github-apps", - "/de/enterprise/2.16/developers/apps/installing-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/installing-github-apps", - "/de/enterprise/2.17/apps/installing-github-apps", - "/de/enterprise/2.17/user/apps/installing-github-apps", - "/de/enterprise/2.17/developers/apps/installing-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/making-a-github-app-public-or-private", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.13/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.13/user/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.13/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.13/user/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.13/developers/apps/making-a-github-app-public-or-private" - ], - [ - "/de/enterprise/2.14/user/developers/apps/making-a-github-app-public-or-private", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.14/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.14/user/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.14/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.14/user/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.14/developers/apps/making-a-github-app-public-or-private" - ], - [ - "/de/enterprise/2.15/user/developers/apps/making-a-github-app-public-or-private", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.15/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.15/user/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.15/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.15/user/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.15/developers/apps/making-a-github-app-public-or-private" - ], - [ - "/de/enterprise/2.16/user/developers/apps/making-a-github-app-public-or-private", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.16/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.16/user/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.16/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.16/user/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.16/developers/apps/making-a-github-app-public-or-private" - ], - [ - "/de/enterprise/2.17/user/developers/apps/making-a-github-app-public-or-private", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/about-installation-options-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/installation-options-for-github-apps", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.17/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.17/user/apps/managing-github-apps/changing-a-github-app-s-installation-option", - "/de/enterprise/2.17/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.17/user/apps/managing-github-apps/making-a-github-app-public-or-private", - "/de/enterprise/2.17/developers/apps/making-a-github-app-public-or-private" - ], - [ - "/de/enterprise/2.13/user/developers/apps/managing-github-apps", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.13/apps/managing-github-apps", - "/de/enterprise/2.13/user/apps/managing-github-apps", - "/de/enterprise/2.13/developers/apps/managing-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/managing-github-apps", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.14/apps/managing-github-apps", - "/de/enterprise/2.14/user/apps/managing-github-apps", - "/de/enterprise/2.14/developers/apps/managing-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/managing-github-apps", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.15/apps/managing-github-apps", - "/de/enterprise/2.15/user/apps/managing-github-apps", - "/de/enterprise/2.15/developers/apps/managing-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/managing-github-apps", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.16/apps/managing-github-apps", - "/de/enterprise/2.16/user/apps/managing-github-apps", - "/de/enterprise/2.16/developers/apps/managing-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/managing-github-apps", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps", - "/de/enterprise/2.17/apps/managing-github-apps", - "/de/enterprise/2.17/user/apps/managing-github-apps", - "/de/enterprise/2.17/developers/apps/managing-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/managing-oauth-apps", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.13/apps/managing-oauth-apps", - "/de/enterprise/2.13/user/apps/managing-oauth-apps", - "/de/enterprise/2.13/developers/apps/managing-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/managing-oauth-apps", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.14/apps/managing-oauth-apps", - "/de/enterprise/2.14/user/apps/managing-oauth-apps", - "/de/enterprise/2.14/developers/apps/managing-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/managing-oauth-apps", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.15/apps/managing-oauth-apps", - "/de/enterprise/2.15/user/apps/managing-oauth-apps", - "/de/enterprise/2.15/developers/apps/managing-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/managing-oauth-apps", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.16/apps/managing-oauth-apps", - "/de/enterprise/2.16/user/apps/managing-oauth-apps", - "/de/enterprise/2.16/developers/apps/managing-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/managing-oauth-apps", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps", - "/de/enterprise/2.17/apps/managing-oauth-apps", - "/de/enterprise/2.17/user/apps/managing-oauth-apps", - "/de/enterprise/2.17/developers/apps/managing-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.13/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.13/user/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.13/developers/apps/migrating-oauth-apps-to-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.14/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.14/user/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.14/developers/apps/migrating-oauth-apps-to-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.15/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.15/user/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.15/developers/apps/migrating-oauth-apps-to-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.16/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.16/user/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.16/developers/apps/migrating-oauth-apps-to-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.17/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.17/user/apps/migrating-oauth-apps-to-github-apps", - "/de/enterprise/2.17/developers/apps/migrating-oauth-apps-to-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/modifying-a-github-app", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.13/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.13/user/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.13/developers/apps/modifying-a-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/modifying-a-github-app", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.14/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.14/user/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.14/developers/apps/modifying-a-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/modifying-a-github-app", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.15/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.15/user/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.15/developers/apps/modifying-a-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/modifying-a-github-app", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.16/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.16/user/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.16/developers/apps/modifying-a-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/modifying-a-github-app", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.17/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.17/user/apps/managing-github-apps/modifying-a-github-app", - "/de/enterprise/2.17/developers/apps/modifying-a-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/modifying-an-oauth-app", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.13/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.13/user/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.13/developers/apps/modifying-an-oauth-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/modifying-an-oauth-app", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.14/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.14/user/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.14/developers/apps/modifying-an-oauth-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/modifying-an-oauth-app", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.15/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.15/user/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.15/developers/apps/modifying-an-oauth-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/modifying-an-oauth-app", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.16/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.16/user/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.16/developers/apps/modifying-an-oauth-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/modifying-an-oauth-app", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.17/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.17/user/apps/managing-oauth-apps/modifying-an-oauth-app", - "/de/enterprise/2.17/developers/apps/modifying-an-oauth-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/rate-limits-for-github-apps", - "/de/enterprise/2.13/early-access/integrations/rate-limits", - "/de/enterprise/2.13/user/early-access/integrations/rate-limits", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.13/developers/apps/rate-limits-for-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/rate-limits-for-github-apps", - "/de/enterprise/2.14/early-access/integrations/rate-limits", - "/de/enterprise/2.14/user/early-access/integrations/rate-limits", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.14/developers/apps/rate-limits-for-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/rate-limits-for-github-apps", - "/de/enterprise/2.15/early-access/integrations/rate-limits", - "/de/enterprise/2.15/user/early-access/integrations/rate-limits", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.15/developers/apps/rate-limits-for-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/rate-limits-for-github-apps", - "/de/enterprise/2.16/early-access/integrations/rate-limits", - "/de/enterprise/2.16/user/early-access/integrations/rate-limits", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.16/developers/apps/rate-limits-for-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/rate-limits-for-github-apps", - "/de/enterprise/2.17/early-access/integrations/rate-limits", - "/de/enterprise/2.17/user/early-access/integrations/rate-limits", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/about-rate-limits-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/rate-limits-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/understanding-rate-limits-for-github-apps", - "/de/enterprise/2.17/developers/apps/rate-limits-for-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.13/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.13/user/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.13/developers/apps/refreshing-user-to-server-access-tokens" - ], - [ - "/de/enterprise/2.14/user/developers/apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.14/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.14/user/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.14/developers/apps/refreshing-user-to-server-access-tokens" - ], - [ - "/de/enterprise/2.15/user/developers/apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.15/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.15/user/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.15/developers/apps/refreshing-user-to-server-access-tokens" - ], - [ - "/de/enterprise/2.16/user/developers/apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.16/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.16/user/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.16/developers/apps/refreshing-user-to-server-access-tokens" - ], - [ - "/de/enterprise/2.17/user/developers/apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.17/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.17/user/apps/building-github-apps/refreshing-user-to-server-access-tokens", - "/de/enterprise/2.17/developers/apps/refreshing-user-to-server-access-tokens" - ], - [ - "/de/enterprise/2.13/user/developers/apps/scopes-for-oauth-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.13/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.13/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.13/user/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.13/developers/apps/scopes-for-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/scopes-for-oauth-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.14/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.14/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.14/user/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.14/developers/apps/scopes-for-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/scopes-for-oauth-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.15/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.15/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.15/user/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.15/developers/apps/scopes-for-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/scopes-for-oauth-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.16/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.16/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.16/user/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.16/developers/apps/scopes-for-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/scopes-for-oauth-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-oauth-apps/about-scopes-for-oauth-apps", - "/de/enterprise/2.17/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps/scopes-for-oauth-apps", - "/de/enterprise/2.17/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.17/user/apps/building-oauth-apps/understanding-scopes-for-oauth-apps", - "/de/enterprise/2.17/developers/apps/scopes-for-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/setting-permissions-for-github-apps", - "/de/enterprise/2.13/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.13/user/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.13/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.13/user/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.13/developers/apps/setting-permissions-for-github-apps" - ], - [ - "/de/enterprise/2.14/user/developers/apps/setting-permissions-for-github-apps", - "/de/enterprise/2.14/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.14/user/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.14/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.14/user/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.14/developers/apps/setting-permissions-for-github-apps" - ], - [ - "/de/enterprise/2.15/user/developers/apps/setting-permissions-for-github-apps", - "/de/enterprise/2.15/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.15/user/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.15/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.15/user/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.15/developers/apps/setting-permissions-for-github-apps" - ], - [ - "/de/enterprise/2.16/user/developers/apps/setting-permissions-for-github-apps", - "/de/enterprise/2.16/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.16/user/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.16/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.16/user/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.16/developers/apps/setting-permissions-for-github-apps" - ], - [ - "/de/enterprise/2.17/user/developers/apps/setting-permissions-for-github-apps", - "/de/enterprise/2.17/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.17/user/apps/building-integrations/setting-up-and-registering-github-apps/about-permissions-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/permissions-for-github-apps", - "/de/enterprise/2.17/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.17/user/apps/building-github-apps/setting-permissions-for-github-apps", - "/de/enterprise/2.17/developers/apps/setting-permissions-for-github-apps" - ], - [ - "/de/enterprise/2.13/user/developers/apps/setting-up-your-development-environment-to-create-a-github-app", - "/de/enterprise/2.13/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.13/user/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.13/developers/apps/setting-up-your-development-environment-to-create-a-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/setting-up-your-development-environment-to-create-a-github-app", - "/de/enterprise/2.14/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.14/user/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.14/developers/apps/setting-up-your-development-environment-to-create-a-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/setting-up-your-development-environment-to-create-a-github-app", - "/de/enterprise/2.15/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.15/user/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.15/developers/apps/setting-up-your-development-environment-to-create-a-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/setting-up-your-development-environment-to-create-a-github-app", - "/de/enterprise/2.16/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.16/user/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.16/developers/apps/setting-up-your-development-environment-to-create-a-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/setting-up-your-development-environment-to-create-a-github-app", - "/de/enterprise/2.17/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.17/user/apps/quickstart-guides/setting-up-your-development-environment", - "/de/enterprise/2.17/developers/apps/setting-up-your-development-environment-to-create-a-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.13/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.13/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.13/user/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.13/developers/apps/transferring-ownership-of-a-github-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.14/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.14/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.14/user/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.14/developers/apps/transferring-ownership-of-a-github-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.15/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.15/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.15/user/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.15/developers/apps/transferring-ownership-of-a-github-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.16/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.16/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.16/user/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.16/developers/apps/transferring-ownership-of-a-github-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.17/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.17/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.17/user/apps/managing-github-apps/transferring-ownership-of-a-github-app", - "/de/enterprise/2.17/developers/apps/transferring-ownership-of-a-github-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.13/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.13/user/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.13/developers/apps/transferring-ownership-of-an-oauth-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.14/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.14/user/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.14/developers/apps/transferring-ownership-of-an-oauth-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.15/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.15/user/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.15/developers/apps/transferring-ownership-of-an-oauth-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.16/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.16/user/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.16/developers/apps/transferring-ownership-of-an-oauth-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.17/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.17/user/apps/managing-oauth-apps/transferring-ownership-of-an-oauth-app", - "/de/enterprise/2.17/developers/apps/transferring-ownership-of-an-oauth-app" - ], - [ - "/de/enterprise/2.13/user/developers/apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.13/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.13/user/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.13/developers/apps/troubleshooting-authorization-request-errors" - ], - [ - "/de/enterprise/2.14/user/developers/apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.14/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.14/user/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.14/developers/apps/troubleshooting-authorization-request-errors" - ], - [ - "/de/enterprise/2.15/user/developers/apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.15/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.15/user/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.15/developers/apps/troubleshooting-authorization-request-errors" - ], - [ - "/de/enterprise/2.16/user/developers/apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.16/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.16/user/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.16/developers/apps/troubleshooting-authorization-request-errors" - ], - [ - "/de/enterprise/2.17/user/developers/apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.17/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.17/user/apps/managing-oauth-apps/troubleshooting-authorization-request-errors", - "/de/enterprise/2.17/developers/apps/troubleshooting-authorization-request-errors" - ], - [ - "/de/enterprise/2.13/user/developers/apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.13/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.13/user/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.13/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.13/user/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.13/developers/apps/troubleshooting-oauth-app-access-token-request-errors" - ], - [ - "/de/enterprise/2.14/user/developers/apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.14/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.14/user/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.14/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.14/user/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.14/developers/apps/troubleshooting-oauth-app-access-token-request-errors" - ], - [ - "/de/enterprise/2.15/user/developers/apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.15/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.15/user/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.15/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.15/user/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.15/developers/apps/troubleshooting-oauth-app-access-token-request-errors" - ], - [ - "/de/enterprise/2.16/user/developers/apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.16/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.16/user/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.16/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.16/user/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.16/developers/apps/troubleshooting-oauth-app-access-token-request-errors" - ], - [ - "/de/enterprise/2.17/user/developers/apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.17/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.17/user/apps/building-integrations/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.17/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.17/user/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", - "/de/enterprise/2.17/developers/apps/troubleshooting-oauth-app-access-token-request-errors" - ], - [ - "/de/enterprise/2.13/user/developers/apps/using-content-attachments", - "/de/enterprise/2.13/apps/using-content-attachments", - "/de/enterprise/2.13/user/apps/using-content-attachments", - "/de/enterprise/2.13/developers/apps/using-content-attachments" - ], - [ - "/de/enterprise/2.14/user/developers/apps/using-content-attachments", - "/de/enterprise/2.14/apps/using-content-attachments", - "/de/enterprise/2.14/user/apps/using-content-attachments", - "/de/enterprise/2.14/developers/apps/using-content-attachments" - ], - [ - "/de/enterprise/2.15/user/developers/apps/using-content-attachments", - "/de/enterprise/2.15/apps/using-content-attachments", - "/de/enterprise/2.15/user/apps/using-content-attachments", - "/de/enterprise/2.15/developers/apps/using-content-attachments" - ], - [ - "/de/enterprise/2.16/user/developers/apps/using-content-attachments", - "/de/enterprise/2.16/apps/using-content-attachments", - "/de/enterprise/2.16/user/apps/using-content-attachments", - "/de/enterprise/2.16/developers/apps/using-content-attachments" - ], - [ - "/de/enterprise/2.17/user/developers/apps/using-content-attachments", - "/de/enterprise/2.17/apps/using-content-attachments", - "/de/enterprise/2.17/user/apps/using-content-attachments", - "/de/enterprise/2.17/developers/apps/using-content-attachments" - ], - [ - "/de/enterprise/2.13/user/developers/apps/using-the-github-api-in-your-app", - "/de/enterprise/2.13/apps/building-your-first-github-app", - "/de/enterprise/2.13/user/apps/building-your-first-github-app", - "/de/enterprise/2.13/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.13/user/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.13/developers/apps/using-the-github-api-in-your-app" - ], - [ - "/de/enterprise/2.14/user/developers/apps/using-the-github-api-in-your-app", - "/de/enterprise/2.14/apps/building-your-first-github-app", - "/de/enterprise/2.14/user/apps/building-your-first-github-app", - "/de/enterprise/2.14/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.14/user/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.14/developers/apps/using-the-github-api-in-your-app" - ], - [ - "/de/enterprise/2.15/user/developers/apps/using-the-github-api-in-your-app", - "/de/enterprise/2.15/apps/building-your-first-github-app", - "/de/enterprise/2.15/user/apps/building-your-first-github-app", - "/de/enterprise/2.15/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.15/user/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.15/developers/apps/using-the-github-api-in-your-app" - ], - [ - "/de/enterprise/2.16/user/developers/apps/using-the-github-api-in-your-app", - "/de/enterprise/2.16/apps/building-your-first-github-app", - "/de/enterprise/2.16/user/apps/building-your-first-github-app", - "/de/enterprise/2.16/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.16/user/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.16/developers/apps/using-the-github-api-in-your-app" - ], - [ - "/de/enterprise/2.17/user/developers/apps/using-the-github-api-in-your-app", - "/de/enterprise/2.17/apps/building-your-first-github-app", - "/de/enterprise/2.17/user/apps/building-your-first-github-app", - "/de/enterprise/2.17/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.17/user/apps/quickstart-guides/using-the-github-api-in-your-app", - "/de/enterprise/2.17/developers/apps/using-the-github-api-in-your-app" - ], - [ - "/de/enterprise/2.13/user/developers", - "/de/enterprise/2.13/developers" - ], - [ - "/de/enterprise/2.14/user/developers", - "/de/enterprise/2.14/developers" - ], - [ - "/de/enterprise/2.15/user/developers", - "/de/enterprise/2.15/developers" - ], - [ - "/de/enterprise/2.16/user/developers", - "/de/enterprise/2.16/developers" - ], - [ - "/de/enterprise/2.17/user/developers", - "/de/enterprise/2.17/developers" - ], - [ - "/de/enterprise/2.13/user/developers/overview/about-githubs-apis", - "/de/enterprise/2.13/v3/versions", - "/de/enterprise/2.13/user/v3/versions", - "/de/enterprise/2.13/developers/overview/about-githubs-apis" - ], - [ - "/de/enterprise/2.14/user/developers/overview/about-githubs-apis", - "/de/enterprise/2.14/v3/versions", - "/de/enterprise/2.14/user/v3/versions", - "/de/enterprise/2.14/developers/overview/about-githubs-apis" - ], - [ - "/de/enterprise/2.15/user/developers/overview/about-githubs-apis", - "/de/enterprise/2.15/v3/versions", - "/de/enterprise/2.15/user/v3/versions", - "/de/enterprise/2.15/developers/overview/about-githubs-apis" - ], - [ - "/de/enterprise/2.16/user/developers/overview/about-githubs-apis", - "/de/enterprise/2.16/v3/versions", - "/de/enterprise/2.16/user/v3/versions", - "/de/enterprise/2.16/developers/overview/about-githubs-apis" - ], - [ - "/de/enterprise/2.17/user/developers/overview/about-githubs-apis", - "/de/enterprise/2.17/v3/versions", - "/de/enterprise/2.17/user/v3/versions", - "/de/enterprise/2.17/developers/overview/about-githubs-apis" - ], - [ - "/de/enterprise/2.13/user/developers/overview", - "/de/enterprise/2.13/developers/overview" - ], - [ - "/de/enterprise/2.14/user/developers/overview", - "/de/enterprise/2.14/developers/overview" - ], - [ - "/de/enterprise/2.15/user/developers/overview", - "/de/enterprise/2.15/developers/overview" - ], - [ - "/de/enterprise/2.16/user/developers/overview", - "/de/enterprise/2.16/developers/overview" - ], - [ - "/de/enterprise/2.17/user/developers/overview", - "/de/enterprise/2.17/developers/overview" - ], - [ - "/de/enterprise/2.13/user/developers/overview/managing-deploy-keys", - "/de/enterprise/2.13/guides/managing-deploy-keys", - "/de/enterprise/2.13/user/guides/managing-deploy-keys", - "/de/enterprise/2.13/v3/guides/managing-deploy-keys", - "/de/enterprise/2.13/user/v3/guides/managing-deploy-keys", - "/de/enterprise/2.13/developers/overview/managing-deploy-keys" - ], - [ - "/de/enterprise/2.14/user/developers/overview/managing-deploy-keys", - "/de/enterprise/2.14/guides/managing-deploy-keys", - "/de/enterprise/2.14/user/guides/managing-deploy-keys", - "/de/enterprise/2.14/v3/guides/managing-deploy-keys", - "/de/enterprise/2.14/user/v3/guides/managing-deploy-keys", - "/de/enterprise/2.14/developers/overview/managing-deploy-keys" - ], - [ - "/de/enterprise/2.15/user/developers/overview/managing-deploy-keys", - "/de/enterprise/2.15/guides/managing-deploy-keys", - "/de/enterprise/2.15/user/guides/managing-deploy-keys", - "/de/enterprise/2.15/v3/guides/managing-deploy-keys", - "/de/enterprise/2.15/user/v3/guides/managing-deploy-keys", - "/de/enterprise/2.15/developers/overview/managing-deploy-keys" - ], - [ - "/de/enterprise/2.16/user/developers/overview/managing-deploy-keys", - "/de/enterprise/2.16/guides/managing-deploy-keys", - "/de/enterprise/2.16/user/guides/managing-deploy-keys", - "/de/enterprise/2.16/v3/guides/managing-deploy-keys", - "/de/enterprise/2.16/user/v3/guides/managing-deploy-keys", - "/de/enterprise/2.16/developers/overview/managing-deploy-keys" - ], - [ - "/de/enterprise/2.17/user/developers/overview/managing-deploy-keys", - "/de/enterprise/2.17/guides/managing-deploy-keys", - "/de/enterprise/2.17/user/guides/managing-deploy-keys", - "/de/enterprise/2.17/v3/guides/managing-deploy-keys", - "/de/enterprise/2.17/user/v3/guides/managing-deploy-keys", - "/de/enterprise/2.17/developers/overview/managing-deploy-keys" - ], - [ - "/de/enterprise/2.13/user/developers/overview/replacing-github-services", - "/de/enterprise/2.13/guides/replacing-github-services", - "/de/enterprise/2.13/user/guides/replacing-github-services", - "/de/enterprise/2.13/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.13/user/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.13/v3/guides/replacing-github-services", - "/de/enterprise/2.13/user/v3/guides/replacing-github-services", - "/de/enterprise/2.13/developers/overview/replacing-github-services" - ], - [ - "/de/enterprise/2.14/user/developers/overview/replacing-github-services", - "/de/enterprise/2.14/guides/replacing-github-services", - "/de/enterprise/2.14/user/guides/replacing-github-services", - "/de/enterprise/2.14/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.14/user/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.14/v3/guides/replacing-github-services", - "/de/enterprise/2.14/user/v3/guides/replacing-github-services", - "/de/enterprise/2.14/developers/overview/replacing-github-services" - ], - [ - "/de/enterprise/2.15/user/developers/overview/replacing-github-services", - "/de/enterprise/2.15/guides/replacing-github-services", - "/de/enterprise/2.15/user/guides/replacing-github-services", - "/de/enterprise/2.15/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.15/user/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.15/v3/guides/replacing-github-services", - "/de/enterprise/2.15/user/v3/guides/replacing-github-services", - "/de/enterprise/2.15/developers/overview/replacing-github-services" - ], - [ - "/de/enterprise/2.16/user/developers/overview/replacing-github-services", - "/de/enterprise/2.16/guides/replacing-github-services", - "/de/enterprise/2.16/user/guides/replacing-github-services", - "/de/enterprise/2.16/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.16/user/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.16/v3/guides/replacing-github-services", - "/de/enterprise/2.16/user/v3/guides/replacing-github-services", - "/de/enterprise/2.16/developers/overview/replacing-github-services" - ], - [ - "/de/enterprise/2.17/user/developers/overview/replacing-github-services", - "/de/enterprise/2.17/guides/replacing-github-services", - "/de/enterprise/2.17/user/guides/replacing-github-services", - "/de/enterprise/2.17/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.17/user/v3/guides/automating-deployments-to-integrators", - "/de/enterprise/2.17/v3/guides/replacing-github-services", - "/de/enterprise/2.17/user/v3/guides/replacing-github-services", - "/de/enterprise/2.17/developers/overview/replacing-github-services" - ], - [ - "/de/enterprise/2.13/user/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.13/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.13/user/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.13/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.13/user/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.13/developers/overview/using-ssh-agent-forwarding" - ], - [ - "/de/enterprise/2.14/user/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.14/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.14/user/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.14/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.14/user/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.14/developers/overview/using-ssh-agent-forwarding" - ], - [ - "/de/enterprise/2.15/user/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.15/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.15/user/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.15/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.15/user/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.15/developers/overview/using-ssh-agent-forwarding" - ], - [ - "/de/enterprise/2.16/user/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.16/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.16/user/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.16/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.16/user/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.16/developers/overview/using-ssh-agent-forwarding" - ], - [ - "/de/enterprise/2.17/user/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.17/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.17/user/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.17/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.17/user/v3/guides/using-ssh-agent-forwarding", - "/de/enterprise/2.17/developers/overview/using-ssh-agent-forwarding" - ], - [ - "/de/enterprise/2.13/user/developers/overview/viewing-deployment-history", - "/de/enterprise/2.13/developers/overview/viewing-deployment-history" - ], - [ - "/de/enterprise/2.14/user/developers/overview/viewing-deployment-history", - "/de/enterprise/2.14/developers/overview/viewing-deployment-history" - ], - [ - "/de/enterprise/2.15/user/developers/overview/viewing-deployment-history", - "/de/enterprise/2.15/developers/overview/viewing-deployment-history" - ], - [ - "/de/enterprise/2.16/user/developers/overview/viewing-deployment-history", - "/de/enterprise/2.16/developers/overview/viewing-deployment-history" - ], - [ - "/de/enterprise/2.17/user/developers/overview/viewing-deployment-history", - "/de/enterprise/2.17/developers/overview/viewing-deployment-history" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/about-webhooks", - "/de/enterprise/2.13/webhooks", - "/de/enterprise/2.13/user/webhooks", - "/de/enterprise/2.13/developers/webhooks-and-events/about-webhooks" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/about-webhooks", - "/de/enterprise/2.14/webhooks", - "/de/enterprise/2.14/user/webhooks", - "/de/enterprise/2.14/developers/webhooks-and-events/about-webhooks" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/about-webhooks", - "/de/enterprise/2.15/webhooks", - "/de/enterprise/2.15/user/webhooks", - "/de/enterprise/2.15/developers/webhooks-and-events/about-webhooks" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/about-webhooks", - "/de/enterprise/2.16/webhooks", - "/de/enterprise/2.16/user/webhooks", - "/de/enterprise/2.16/developers/webhooks-and-events/about-webhooks" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/about-webhooks", - "/de/enterprise/2.17/webhooks", - "/de/enterprise/2.17/user/webhooks", - "/de/enterprise/2.17/developers/webhooks-and-events/about-webhooks" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/configuring-your-server-to-receive-payloads", - "/de/enterprise/2.13/webhooks/configuring", - "/de/enterprise/2.13/user/webhooks/configuring", - "/de/enterprise/2.13/developers/webhooks-and-events/configuring-your-server-to-receive-payloads" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/configuring-your-server-to-receive-payloads", - "/de/enterprise/2.14/webhooks/configuring", - "/de/enterprise/2.14/user/webhooks/configuring", - "/de/enterprise/2.14/developers/webhooks-and-events/configuring-your-server-to-receive-payloads" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/configuring-your-server-to-receive-payloads", - "/de/enterprise/2.15/webhooks/configuring", - "/de/enterprise/2.15/user/webhooks/configuring", - "/de/enterprise/2.15/developers/webhooks-and-events/configuring-your-server-to-receive-payloads" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/configuring-your-server-to-receive-payloads", - "/de/enterprise/2.16/webhooks/configuring", - "/de/enterprise/2.16/user/webhooks/configuring", - "/de/enterprise/2.16/developers/webhooks-and-events/configuring-your-server-to-receive-payloads" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/configuring-your-server-to-receive-payloads", - "/de/enterprise/2.17/webhooks/configuring", - "/de/enterprise/2.17/user/webhooks/configuring", - "/de/enterprise/2.17/developers/webhooks-and-events/configuring-your-server-to-receive-payloads" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/creating-webhooks", - "/de/enterprise/2.13/webhooks/creating", - "/de/enterprise/2.13/user/webhooks/creating", - "/de/enterprise/2.13/developers/webhooks-and-events/creating-webhooks" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/creating-webhooks", - "/de/enterprise/2.14/webhooks/creating", - "/de/enterprise/2.14/user/webhooks/creating", - "/de/enterprise/2.14/developers/webhooks-and-events/creating-webhooks" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/creating-webhooks", - "/de/enterprise/2.15/webhooks/creating", - "/de/enterprise/2.15/user/webhooks/creating", - "/de/enterprise/2.15/developers/webhooks-and-events/creating-webhooks" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/creating-webhooks", - "/de/enterprise/2.16/webhooks/creating", - "/de/enterprise/2.16/user/webhooks/creating", - "/de/enterprise/2.16/developers/webhooks-and-events/creating-webhooks" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/creating-webhooks", - "/de/enterprise/2.17/webhooks/creating", - "/de/enterprise/2.17/user/webhooks/creating", - "/de/enterprise/2.17/developers/webhooks-and-events/creating-webhooks" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/events", - "/de/enterprise/2.13/developers/webhooks-and-events/events" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/events", - "/de/enterprise/2.14/developers/webhooks-and-events/events" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/events", - "/de/enterprise/2.15/developers/webhooks-and-events/events" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/events", - "/de/enterprise/2.16/developers/webhooks-and-events/events" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/events", - "/de/enterprise/2.17/developers/webhooks-and-events/events" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.13/developers/webhooks-and-events/user-event-types", - "/de/enterprise/2.13/v3/activity/event_types", - "/de/enterprise/2.13/user/v3/activity/event_types", - "/de/enterprise/2.13/developers/webhooks-and-events/github-event-types" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.14/developers/webhooks-and-events/user-event-types", - "/de/enterprise/2.14/v3/activity/event_types", - "/de/enterprise/2.14/user/v3/activity/event_types", - "/de/enterprise/2.14/developers/webhooks-and-events/github-event-types" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.15/developers/webhooks-and-events/user-event-types", - "/de/enterprise/2.15/v3/activity/event_types", - "/de/enterprise/2.15/user/v3/activity/event_types", - "/de/enterprise/2.15/developers/webhooks-and-events/github-event-types" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.16/developers/webhooks-and-events/user-event-types", - "/de/enterprise/2.16/v3/activity/event_types", - "/de/enterprise/2.16/user/v3/activity/event_types", - "/de/enterprise/2.16/developers/webhooks-and-events/github-event-types" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.17/developers/webhooks-and-events/user-event-types", - "/de/enterprise/2.17/v3/activity/event_types", - "/de/enterprise/2.17/user/v3/activity/event_types", - "/de/enterprise/2.17/developers/webhooks-and-events/github-event-types" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events", - "/de/enterprise/2.13/developers/webhooks-and-events" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events", - "/de/enterprise/2.14/developers/webhooks-and-events" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events", - "/de/enterprise/2.15/developers/webhooks-and-events" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events", - "/de/enterprise/2.16/developers/webhooks-and-events" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events", - "/de/enterprise/2.17/developers/webhooks-and-events" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.13/v3/issues/issue-event-types", - "/de/enterprise/2.13/user/v3/issues/issue-event-types", - "/de/enterprise/2.13/developers/webhooks-and-events/issue-event-types" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.14/v3/issues/issue-event-types", - "/de/enterprise/2.14/user/v3/issues/issue-event-types", - "/de/enterprise/2.14/developers/webhooks-and-events/issue-event-types" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.15/v3/issues/issue-event-types", - "/de/enterprise/2.15/user/v3/issues/issue-event-types", - "/de/enterprise/2.15/developers/webhooks-and-events/issue-event-types" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.16/v3/issues/issue-event-types", - "/de/enterprise/2.16/user/v3/issues/issue-event-types", - "/de/enterprise/2.16/developers/webhooks-and-events/issue-event-types" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.17/v3/issues/issue-event-types", - "/de/enterprise/2.17/user/v3/issues/issue-event-types", - "/de/enterprise/2.17/developers/webhooks-and-events/issue-event-types" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/securing-your-webhooks", - "/de/enterprise/2.13/webhooks/securing", - "/de/enterprise/2.13/user/webhooks/securing", - "/de/enterprise/2.13/developers/webhooks-and-events/securing-your-webhooks" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/securing-your-webhooks", - "/de/enterprise/2.14/webhooks/securing", - "/de/enterprise/2.14/user/webhooks/securing", - "/de/enterprise/2.14/developers/webhooks-and-events/securing-your-webhooks" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/securing-your-webhooks", - "/de/enterprise/2.15/webhooks/securing", - "/de/enterprise/2.15/user/webhooks/securing", - "/de/enterprise/2.15/developers/webhooks-and-events/securing-your-webhooks" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/securing-your-webhooks", - "/de/enterprise/2.16/webhooks/securing", - "/de/enterprise/2.16/user/webhooks/securing", - "/de/enterprise/2.16/developers/webhooks-and-events/securing-your-webhooks" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/securing-your-webhooks", - "/de/enterprise/2.17/webhooks/securing", - "/de/enterprise/2.17/user/webhooks/securing", - "/de/enterprise/2.17/developers/webhooks-and-events/securing-your-webhooks" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/testing-webhooks", - "/de/enterprise/2.13/webhooks/testing", - "/de/enterprise/2.13/user/webhooks/testing", - "/de/enterprise/2.13/developers/webhooks-and-events/testing-webhooks" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/testing-webhooks", - "/de/enterprise/2.14/webhooks/testing", - "/de/enterprise/2.14/user/webhooks/testing", - "/de/enterprise/2.14/developers/webhooks-and-events/testing-webhooks" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/testing-webhooks", - "/de/enterprise/2.15/webhooks/testing", - "/de/enterprise/2.15/user/webhooks/testing", - "/de/enterprise/2.15/developers/webhooks-and-events/testing-webhooks" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/testing-webhooks", - "/de/enterprise/2.16/webhooks/testing", - "/de/enterprise/2.16/user/webhooks/testing", - "/de/enterprise/2.16/developers/webhooks-and-events/testing-webhooks" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/testing-webhooks", - "/de/enterprise/2.17/webhooks/testing", - "/de/enterprise/2.17/user/webhooks/testing", - "/de/enterprise/2.17/developers/webhooks-and-events/testing-webhooks" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.13/early-access/integrations/webhooks", - "/de/enterprise/2.13/user/early-access/integrations/webhooks", - "/de/enterprise/2.13/v3/activity/events/types", - "/de/enterprise/2.13/user/v3/activity/events/types", - "/de/enterprise/2.13/webhooks/event-payloads", - "/de/enterprise/2.13/user/webhooks/event-payloads", - "/de/enterprise/2.13/developers/webhooks-and-events/webhook-events-and-payloads" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.14/early-access/integrations/webhooks", - "/de/enterprise/2.14/user/early-access/integrations/webhooks", - "/de/enterprise/2.14/v3/activity/events/types", - "/de/enterprise/2.14/user/v3/activity/events/types", - "/de/enterprise/2.14/webhooks/event-payloads", - "/de/enterprise/2.14/user/webhooks/event-payloads", - "/de/enterprise/2.14/developers/webhooks-and-events/webhook-events-and-payloads" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.15/early-access/integrations/webhooks", - "/de/enterprise/2.15/user/early-access/integrations/webhooks", - "/de/enterprise/2.15/v3/activity/events/types", - "/de/enterprise/2.15/user/v3/activity/events/types", - "/de/enterprise/2.15/webhooks/event-payloads", - "/de/enterprise/2.15/user/webhooks/event-payloads", - "/de/enterprise/2.15/developers/webhooks-and-events/webhook-events-and-payloads" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.16/early-access/integrations/webhooks", - "/de/enterprise/2.16/user/early-access/integrations/webhooks", - "/de/enterprise/2.16/v3/activity/events/types", - "/de/enterprise/2.16/user/v3/activity/events/types", - "/de/enterprise/2.16/webhooks/event-payloads", - "/de/enterprise/2.16/user/webhooks/event-payloads", - "/de/enterprise/2.16/developers/webhooks-and-events/webhook-events-and-payloads" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.17/early-access/integrations/webhooks", - "/de/enterprise/2.17/user/early-access/integrations/webhooks", - "/de/enterprise/2.17/v3/activity/events/types", - "/de/enterprise/2.17/user/v3/activity/events/types", - "/de/enterprise/2.17/webhooks/event-payloads", - "/de/enterprise/2.17/user/webhooks/event-payloads", - "/de/enterprise/2.17/developers/webhooks-and-events/webhook-events-and-payloads" - ], - [ - "/de/enterprise/2.13/user/developers/webhooks-and-events/webhooks", - "/de/enterprise/2.13/developers/webhooks-and-events/webhooks" - ], - [ - "/de/enterprise/2.14/user/developers/webhooks-and-events/webhooks", - "/de/enterprise/2.14/developers/webhooks-and-events/webhooks" - ], - [ - "/de/enterprise/2.15/user/developers/webhooks-and-events/webhooks", - "/de/enterprise/2.15/developers/webhooks-and-events/webhooks" - ], - [ - "/de/enterprise/2.16/user/developers/webhooks-and-events/webhooks", - "/de/enterprise/2.16/developers/webhooks-and-events/webhooks" - ], - [ - "/de/enterprise/2.17/user/developers/webhooks-and-events/webhooks", - "/de/enterprise/2.17/developers/webhooks-and-events/webhooks" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.13/user/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.13/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.13/user/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.13/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.13/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.14/user/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.14/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.14/user/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.14/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.14/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.15/user/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.15/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.15/user/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.15/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.16/user/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.16/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.16/user/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.16/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.17/user/articles/managing-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.17/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.17/user/articles/receiving-email-notifications-for-pushes-to-a-repository", - "/de/enterprise/2.17/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.13/user/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.13/articles/about-merge-methods-on-github", - "/de/enterprise/2.13/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.13/github/administering-a-repository/about-merge-methods-on-github" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.14/user/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.14/articles/about-merge-methods-on-github", - "/de/enterprise/2.14/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.14/github/administering-a-repository/about-merge-methods-on-github" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.15/user/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.15/articles/about-merge-methods-on-github", - "/de/enterprise/2.15/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.15/github/administering-a-repository/about-merge-methods-on-github" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/user/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/articles/about-merge-methods-on-github", - "/de/enterprise/2.16/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.16/github/administering-a-repository/about-merge-methods-on-github" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/user/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/articles/about-merge-methods-on-github", - "/de/enterprise/2.17/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.17/github/administering-a-repository/about-merge-methods-on-github" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.13/user/administering-a-repository/about-protected-branches", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.13/articles/about-protected-branches", - "/de/enterprise/2.13/user/articles/about-protected-branches", - "/de/enterprise/2.13/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.13/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.13/articles/about-branch-restrictions", - "/de/enterprise/2.13/user/articles/about-branch-restrictions", - "/de/enterprise/2.13/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.13/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.13/user/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.13/articles/about-required-status-checks", - "/de/enterprise/2.13/user/articles/about-required-status-checks", - "/de/enterprise/2.13/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.13/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.13/user/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.13/articles/types-of-required-status-checks", - "/de/enterprise/2.13/user/articles/types-of-required-status-checks", - "/de/enterprise/2.13/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.13/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.13/user/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.13/articles/about-required-commit-signing", - "/de/enterprise/2.13/user/articles/about-required-commit-signing", - "/de/enterprise/2.13/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.13/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.13/user/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.13/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.13/github/administering-a-repository/about-protected-branches" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.14/user/administering-a-repository/about-protected-branches", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.14/articles/about-protected-branches", - "/de/enterprise/2.14/user/articles/about-protected-branches", - "/de/enterprise/2.14/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.14/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.14/articles/about-branch-restrictions", - "/de/enterprise/2.14/user/articles/about-branch-restrictions", - "/de/enterprise/2.14/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.14/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.14/user/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.14/articles/about-required-status-checks", - "/de/enterprise/2.14/user/articles/about-required-status-checks", - "/de/enterprise/2.14/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.14/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.14/user/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.14/articles/types-of-required-status-checks", - "/de/enterprise/2.14/user/articles/types-of-required-status-checks", - "/de/enterprise/2.14/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.14/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.14/user/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.14/articles/about-required-commit-signing", - "/de/enterprise/2.14/user/articles/about-required-commit-signing", - "/de/enterprise/2.14/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.14/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.14/user/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.14/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.14/github/administering-a-repository/about-protected-branches" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.15/user/administering-a-repository/about-protected-branches", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.15/articles/about-protected-branches", - "/de/enterprise/2.15/user/articles/about-protected-branches", - "/de/enterprise/2.15/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/articles/about-branch-restrictions", - "/de/enterprise/2.15/user/articles/about-branch-restrictions", - "/de/enterprise/2.15/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.15/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.15/user/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.15/articles/about-required-status-checks", - "/de/enterprise/2.15/user/articles/about-required-status-checks", - "/de/enterprise/2.15/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.15/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.15/user/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.15/articles/types-of-required-status-checks", - "/de/enterprise/2.15/user/articles/types-of-required-status-checks", - "/de/enterprise/2.15/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.15/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.15/user/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.15/articles/about-required-commit-signing", - "/de/enterprise/2.15/user/articles/about-required-commit-signing", - "/de/enterprise/2.15/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.15/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.15/user/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.15/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/github/administering-a-repository/about-protected-branches" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.16/user/administering-a-repository/about-protected-branches", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.16/articles/about-protected-branches", - "/de/enterprise/2.16/user/articles/about-protected-branches", - "/de/enterprise/2.16/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/articles/about-branch-restrictions", - "/de/enterprise/2.16/user/articles/about-branch-restrictions", - "/de/enterprise/2.16/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/user/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/articles/about-required-status-checks", - "/de/enterprise/2.16/user/articles/about-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/articles/types-of-required-status-checks", - "/de/enterprise/2.16/user/articles/types-of-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/articles/about-required-commit-signing", - "/de/enterprise/2.16/user/articles/about-required-commit-signing", - "/de/enterprise/2.16/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/user/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/about-protected-branches" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.17/user/administering-a-repository/about-protected-branches", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-protected-branches", - "/de/enterprise/2.17/articles/about-protected-branches", - "/de/enterprise/2.17/user/articles/about-protected-branches", - "/de/enterprise/2.17/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/articles/about-branch-restrictions", - "/de/enterprise/2.17/user/articles/about-branch-restrictions", - "/de/enterprise/2.17/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/user/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/articles/about-required-status-checks", - "/de/enterprise/2.17/user/articles/about-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/articles/types-of-required-status-checks", - "/de/enterprise/2.17/user/articles/types-of-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/articles/about-required-commit-signing", - "/de/enterprise/2.17/user/articles/about-required-commit-signing", - "/de/enterprise/2.17/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/user/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/about-protected-branches" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.13/user/administering-a-repository/about-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.13/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.13/user/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.13/articles/downloading-files-with-curl", - "/de/enterprise/2.13/user/articles/downloading-files-with-curl", - "/de/enterprise/2.13/articles/about-releases", - "/de/enterprise/2.13/user/articles/about-releases", - "/de/enterprise/2.13/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/user/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.13/github/administering-a-repository/about-releases" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.14/user/administering-a-repository/about-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.14/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.14/user/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.14/articles/downloading-files-with-curl", - "/de/enterprise/2.14/user/articles/downloading-files-with-curl", - "/de/enterprise/2.14/articles/about-releases", - "/de/enterprise/2.14/user/articles/about-releases", - "/de/enterprise/2.14/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/user/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.14/github/administering-a-repository/about-releases" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.15/user/administering-a-repository/about-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.15/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.15/user/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.15/articles/downloading-files-with-curl", - "/de/enterprise/2.15/user/articles/downloading-files-with-curl", - "/de/enterprise/2.15/articles/about-releases", - "/de/enterprise/2.15/user/articles/about-releases", - "/de/enterprise/2.15/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/user/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/github/administering-a-repository/about-releases" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.16/user/administering-a-repository/about-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.16/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.16/user/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.16/articles/downloading-files-with-curl", - "/de/enterprise/2.16/user/articles/downloading-files-with-curl", - "/de/enterprise/2.16/articles/about-releases", - "/de/enterprise/2.16/user/articles/about-releases", - "/de/enterprise/2.16/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/github/administering-a-repository/about-releases" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.17/user/administering-a-repository/about-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/about-releases", - "/de/enterprise/2.17/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.17/user/articles/downloading-files-from-the-command-line", - "/de/enterprise/2.17/articles/downloading-files-with-curl", - "/de/enterprise/2.17/user/articles/downloading-files-with-curl", - "/de/enterprise/2.17/articles/about-releases", - "/de/enterprise/2.17/user/articles/about-releases", - "/de/enterprise/2.17/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/user/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.17/github/administering-a-repository/about-releases" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/user/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/user/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.13/github/administering-a-repository/automation-for-release-forms-with-query-parameters" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/user/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/user/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.14/github/administering-a-repository/automation-for-release-forms-with-query-parameters" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/user/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/user/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.15/github/administering-a-repository/automation-for-release-forms-with-query-parameters" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/user/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/user/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/github/administering-a-repository/automation-for-release-forms-with-query-parameters" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/user/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/user/articles/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/github/administering-a-repository/automation-for-release-forms-with-query-parameters" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.13/user/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.13/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.13/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.13/user/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.13/articles/setting-the-default-branch", - "/de/enterprise/2.13/user/articles/setting-the-default-branch", - "/de/enterprise/2.13/github/administering-a-repository/changing-the-default-branch" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.14/user/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.14/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.14/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.14/user/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.14/articles/setting-the-default-branch", - "/de/enterprise/2.14/user/articles/setting-the-default-branch", - "/de/enterprise/2.14/github/administering-a-repository/changing-the-default-branch" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.15/user/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.15/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.15/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.15/user/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.15/articles/setting-the-default-branch", - "/de/enterprise/2.15/user/articles/setting-the-default-branch", - "/de/enterprise/2.15/github/administering-a-repository/changing-the-default-branch" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.16/user/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.16/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/user/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/articles/setting-the-default-branch", - "/de/enterprise/2.16/user/articles/setting-the-default-branch", - "/de/enterprise/2.16/github/administering-a-repository/changing-the-default-branch" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.17/user/administering-a-repository/changing-the-default-branch", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/changing-the-default-branch", - "/de/enterprise/2.17/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/user/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/articles/setting-the-default-branch", - "/de/enterprise/2.17/user/articles/setting-the-default-branch", - "/de/enterprise/2.17/github/administering-a-repository/changing-the-default-branch" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.13/user/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.13/articles/about-topics", - "/de/enterprise/2.13/user/articles/about-topics", - "/de/enterprise/2.13/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.13/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.13/github/administering-a-repository/classifying-your-repository-with-topics" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.14/user/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.14/articles/about-topics", - "/de/enterprise/2.14/user/articles/about-topics", - "/de/enterprise/2.14/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.14/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.14/github/administering-a-repository/classifying-your-repository-with-topics" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.15/user/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.15/articles/about-topics", - "/de/enterprise/2.15/user/articles/about-topics", - "/de/enterprise/2.15/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.15/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.15/github/administering-a-repository/classifying-your-repository-with-topics" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/user/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/articles/about-topics", - "/de/enterprise/2.16/user/articles/about-topics", - "/de/enterprise/2.16/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.16/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.16/github/administering-a-repository/classifying-your-repository-with-topics" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/user/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/articles/about-topics", - "/de/enterprise/2.17/user/articles/about-topics", - "/de/enterprise/2.17/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.17/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.17/github/administering-a-repository/classifying-your-repository-with-topics" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/comparing-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.13/user/administering-a-repository/comparing-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.13/github/administering-a-repository/comparing-releases" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/comparing-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.14/user/administering-a-repository/comparing-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.14/github/administering-a-repository/comparing-releases" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/comparing-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.15/user/administering-a-repository/comparing-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.15/github/administering-a-repository/comparing-releases" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/comparing-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.16/user/administering-a-repository/comparing-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.16/github/administering-a-repository/comparing-releases" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/comparing-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.17/user/administering-a-repository/comparing-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/comparing-releases", - "/de/enterprise/2.17/github/administering-a-repository/comparing-releases" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/user/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/user/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.13/github/administering-a-repository/configuring-autolinks-to-reference-external-resources" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/user/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/user/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.14/github/administering-a-repository/configuring-autolinks-to-reference-external-resources" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/user/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/user/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.15/github/administering-a-repository/configuring-autolinks-to-reference-external-resources" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/user/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/user/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.16/github/administering-a-repository/configuring-autolinks-to-reference-external-resources" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/user/administering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/user/articles/configuring-autolinks-to-reference-external-resources", - "/de/enterprise/2.17/github/administering-a-repository/configuring-autolinks-to-reference-external-resources" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.13/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.14/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/user/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.13/github/administering-a-repository/configuring-commit-squashing-for-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/user/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.14/github/administering-a-repository/configuring-commit-squashing-for-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/user/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/github/administering-a-repository/configuring-commit-squashing-for-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/configuring-commit-squashing-for-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/configuring-commit-squashing-for-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.13/user/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.13/articles/configuring-pull-request-merges", - "/de/enterprise/2.13/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.13/github/administering-a-repository/configuring-pull-request-merges" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.14/user/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.14/articles/configuring-pull-request-merges", - "/de/enterprise/2.14/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.14/github/administering-a-repository/configuring-pull-request-merges" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.15/user/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.15/articles/configuring-pull-request-merges", - "/de/enterprise/2.15/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.15/github/administering-a-repository/configuring-pull-request-merges" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/user/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/articles/configuring-pull-request-merges", - "/de/enterprise/2.16/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.16/github/administering-a-repository/configuring-pull-request-merges" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/user/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/articles/configuring-pull-request-merges", - "/de/enterprise/2.17/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.17/github/administering-a-repository/configuring-pull-request-merges" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/user/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.13/github/administering-a-repository/customizing-how-changed-files-appear-on-github" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/user/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.14/github/administering-a-repository/customizing-how-changed-files-appear-on-github" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/user/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/github/administering-a-repository/customizing-how-changed-files-appear-on-github" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/user/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/github/administering-a-repository/customizing-how-changed-files-appear-on-github" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/user/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/github/administering-a-repository/customizing-how-changed-files-appear-on-github" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/user/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/user/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.13/github/administering-a-repository/customizing-your-repositorys-social-media-preview" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/user/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/user/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.14/github/administering-a-repository/customizing-your-repositorys-social-media-preview" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/user/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/user/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.15/github/administering-a-repository/customizing-your-repositorys-social-media-preview" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/user/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/user/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.16/github/administering-a-repository/customizing-your-repositorys-social-media-preview" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/user/administering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/user/articles/customizing-your-repositorys-social-media-preview", - "/de/enterprise/2.17/github/administering-a-repository/customizing-your-repositorys-social-media-preview" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/user/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.13/user/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.13/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.13/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.13/admin/guides/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.13/github/administering-a-repository/defining-the-mergeability-of-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/user/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.14/user/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.14/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.14/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.14/admin/guides/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.14/github/administering-a-repository/defining-the-mergeability-of-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/user/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.15/user/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.15/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.15/admin/guides/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.15/github/administering-a-repository/defining-the-mergeability-of-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.16/user/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.16/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.16/admin/guides/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.16/github/administering-a-repository/defining-the-mergeability-of-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.17/user/articles/defining-the-mergeability-of-a-pull-request", - "/de/enterprise/2.17/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.17/admin/guides/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.17/github/administering-a-repository/defining-the-mergeability-of-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.13/delete-a-repo", - "/de/enterprise/2.13/user/delete-a-repo", - "/de/enterprise/2.13/deleting-a-repo", - "/de/enterprise/2.13/user/deleting-a-repo", - "/de/enterprise/2.13/articles/deleting-a-repository", - "/de/enterprise/2.13/user/articles/deleting-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/deleting-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.14/delete-a-repo", - "/de/enterprise/2.14/user/delete-a-repo", - "/de/enterprise/2.14/deleting-a-repo", - "/de/enterprise/2.14/user/deleting-a-repo", - "/de/enterprise/2.14/articles/deleting-a-repository", - "/de/enterprise/2.14/user/articles/deleting-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/deleting-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.15/delete-a-repo", - "/de/enterprise/2.15/user/delete-a-repo", - "/de/enterprise/2.15/deleting-a-repo", - "/de/enterprise/2.15/user/deleting-a-repo", - "/de/enterprise/2.15/articles/deleting-a-repository", - "/de/enterprise/2.15/user/articles/deleting-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/deleting-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/delete-a-repo", - "/de/enterprise/2.16/user/delete-a-repo", - "/de/enterprise/2.16/deleting-a-repo", - "/de/enterprise/2.16/user/deleting-a-repo", - "/de/enterprise/2.16/articles/deleting-a-repository", - "/de/enterprise/2.16/user/articles/deleting-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/deleting-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/delete-a-repo", - "/de/enterprise/2.17/user/delete-a-repo", - "/de/enterprise/2.17/deleting-a-repo", - "/de/enterprise/2.17/user/deleting-a-repo", - "/de/enterprise/2.17/articles/deleting-a-repository", - "/de/enterprise/2.17/user/articles/deleting-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/deleting-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/articles/tidying-up-pull-requests", - "/de/enterprise/2.13/user/articles/tidying-up-pull-requests", - "/de/enterprise/2.13/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/user/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/articles/deleting-unused-branches", - "/de/enterprise/2.13/user/articles/deleting-unused-branches", - "/de/enterprise/2.13/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.13/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/articles/tidying-up-pull-requests", - "/de/enterprise/2.14/user/articles/tidying-up-pull-requests", - "/de/enterprise/2.14/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/user/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/articles/deleting-unused-branches", - "/de/enterprise/2.14/user/articles/deleting-unused-branches", - "/de/enterprise/2.14/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.14/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/articles/tidying-up-pull-requests", - "/de/enterprise/2.15/user/articles/tidying-up-pull-requests", - "/de/enterprise/2.15/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/user/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/articles/deleting-unused-branches", - "/de/enterprise/2.15/user/articles/deleting-unused-branches", - "/de/enterprise/2.15/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/articles/tidying-up-pull-requests", - "/de/enterprise/2.16/user/articles/tidying-up-pull-requests", - "/de/enterprise/2.16/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/articles/deleting-unused-branches", - "/de/enterprise/2.16/user/articles/deleting-unused-branches", - "/de/enterprise/2.16/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/articles/tidying-up-pull-requests", - "/de/enterprise/2.17/user/articles/tidying-up-pull-requests", - "/de/enterprise/2.17/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/articles/restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/articles/deleting-unused-branches", - "/de/enterprise/2.17/user/articles/deleting-unused-branches", - "/de/enterprise/2.17/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/disabling-or-limiting-github-actions-for-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/disabling-or-limiting-github-actions-for-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository", - "/de/enterprise/2.13/user/administering-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository", - "/de/enterprise/2.13/categories/administering-a-repository", - "/de/enterprise/2.13/user/categories/administering-a-repository", - "/de/enterprise/2.13/categories/admin/guidesistering-a-repository", - "/de/enterprise/2.13/github/administering-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository", - "/de/enterprise/2.14/user/administering-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository", - "/de/enterprise/2.14/categories/administering-a-repository", - "/de/enterprise/2.14/user/categories/administering-a-repository", - "/de/enterprise/2.14/categories/admin/guidesistering-a-repository", - "/de/enterprise/2.14/github/administering-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository", - "/de/enterprise/2.15/user/administering-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository", - "/de/enterprise/2.15/categories/administering-a-repository", - "/de/enterprise/2.15/user/categories/administering-a-repository", - "/de/enterprise/2.15/categories/admin/guidesistering-a-repository", - "/de/enterprise/2.15/github/administering-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository", - "/de/enterprise/2.16/user/administering-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository", - "/de/enterprise/2.16/categories/administering-a-repository", - "/de/enterprise/2.16/user/categories/administering-a-repository", - "/de/enterprise/2.16/categories/admin/guidesistering-a-repository", - "/de/enterprise/2.16/github/administering-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository", - "/de/enterprise/2.17/user/administering-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository", - "/de/enterprise/2.17/categories/administering-a-repository", - "/de/enterprise/2.17/user/categories/administering-a-repository", - "/de/enterprise/2.17/categories/admin/guidesistering-a-repository", - "/de/enterprise/2.17/github/administering-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.13/user/administering-a-repository/linking-to-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.13/articles/linking-to-releases", - "/de/enterprise/2.13/user/articles/linking-to-releases", - "/de/enterprise/2.13/github/administering-a-repository/linking-to-releases" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.14/user/administering-a-repository/linking-to-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.14/articles/linking-to-releases", - "/de/enterprise/2.14/user/articles/linking-to-releases", - "/de/enterprise/2.14/github/administering-a-repository/linking-to-releases" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.15/user/administering-a-repository/linking-to-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.15/articles/linking-to-releases", - "/de/enterprise/2.15/user/articles/linking-to-releases", - "/de/enterprise/2.15/github/administering-a-repository/linking-to-releases" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.16/user/administering-a-repository/linking-to-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.16/articles/linking-to-releases", - "/de/enterprise/2.16/user/articles/linking-to-releases", - "/de/enterprise/2.16/github/administering-a-repository/linking-to-releases" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.17/user/administering-a-repository/linking-to-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/linking-to-releases", - "/de/enterprise/2.17/articles/linking-to-releases", - "/de/enterprise/2.17/user/articles/linking-to-releases", - "/de/enterprise/2.17/github/administering-a-repository/linking-to-releases" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.13/user/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.13/articles/configuring-protected-branches", - "/de/enterprise/2.13/user/articles/configuring-protected-branches", - "/de/enterprise/2.13/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.13/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.13/articles/enabling-required-status-checks", - "/de/enterprise/2.13/user/articles/enabling-required-status-checks", - "/de/enterprise/2.13/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.13/user/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.13/articles/enabling-branch-restrictions", - "/de/enterprise/2.13/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.13/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.13/user/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.13/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.13/articles/enabling-required-commit-signing", - "/de/enterprise/2.13/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.13/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.13/user/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.13/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.13/user/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.13/user/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.13/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.13/user/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.13/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.13/user/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.13/user/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.13/github/administering-a-repository/managing-a-branch-protection-rule" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.14/user/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.14/articles/configuring-protected-branches", - "/de/enterprise/2.14/user/articles/configuring-protected-branches", - "/de/enterprise/2.14/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.14/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.14/articles/enabling-required-status-checks", - "/de/enterprise/2.14/user/articles/enabling-required-status-checks", - "/de/enterprise/2.14/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.14/user/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.14/articles/enabling-branch-restrictions", - "/de/enterprise/2.14/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.14/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.14/user/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.14/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.14/articles/enabling-required-commit-signing", - "/de/enterprise/2.14/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.14/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.14/user/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.14/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.14/user/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.14/user/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.14/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.14/user/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.14/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.14/user/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.14/user/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.14/github/administering-a-repository/managing-a-branch-protection-rule" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.15/user/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.15/articles/configuring-protected-branches", - "/de/enterprise/2.15/user/articles/configuring-protected-branches", - "/de/enterprise/2.15/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/articles/enabling-required-status-checks", - "/de/enterprise/2.15/user/articles/enabling-required-status-checks", - "/de/enterprise/2.15/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.15/user/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.15/articles/enabling-branch-restrictions", - "/de/enterprise/2.15/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.15/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.15/user/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.15/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/articles/enabling-required-commit-signing", - "/de/enterprise/2.15/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.15/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.15/user/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.15/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.15/user/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.15/user/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.15/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.15/user/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.15/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.15/user/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.15/user/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.15/github/administering-a-repository/managing-a-branch-protection-rule" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.16/user/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.16/articles/configuring-protected-branches", - "/de/enterprise/2.16/user/articles/configuring-protected-branches", - "/de/enterprise/2.16/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/articles/enabling-required-status-checks", - "/de/enterprise/2.16/user/articles/enabling-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/articles/enabling-branch-restrictions", - "/de/enterprise/2.16/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.16/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/user/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/articles/enabling-required-commit-signing", - "/de/enterprise/2.16/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.16/user/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.16/user/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.16/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.16/user/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.16/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.16/user/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.16/user/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.16/github/administering-a-repository/managing-a-branch-protection-rule" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.17/user/administering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-a-branch-protection-rule", - "/de/enterprise/2.17/articles/configuring-protected-branches", - "/de/enterprise/2.17/user/articles/configuring-protected-branches", - "/de/enterprise/2.17/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/articles/enabling-required-status-checks", - "/de/enterprise/2.17/user/articles/enabling-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/articles/enabling-branch-restrictions", - "/de/enterprise/2.17/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.17/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/user/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/articles/enabling-required-commit-signing", - "/de/enterprise/2.17/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.17/user/github/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.17/user/administering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/requiring-a-linear-commit-history", - "/de/enterprise/2.17/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.17/user/administering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-force-pushes-to-a-protected-branch", - "/de/enterprise/2.17/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.17/user/github/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.17/user/administering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/enabling-deletion-of-a-protected-branch", - "/de/enterprise/2.17/github/administering-a-repository/managing-a-branch-protection-rule" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.13/user/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.13/articles/managing-branches-in-your-repository", - "/de/enterprise/2.13/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.13/github/administering-a-repository/managing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.14/user/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.14/articles/managing-branches-in-your-repository", - "/de/enterprise/2.14/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.14/github/administering-a-repository/managing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.15/user/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.15/articles/managing-branches-in-your-repository", - "/de/enterprise/2.15/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.15/github/administering-a-repository/managing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/articles/managing-branches-in-your-repository", - "/de/enterprise/2.16/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/managing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/articles/managing-branches-in-your-repository", - "/de/enterprise/2.17/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/managing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.13/articles/creating-releases", - "/de/enterprise/2.13/user/articles/creating-releases", - "/de/enterprise/2.13/articles/listing-and-editing-releases", - "/de/enterprise/2.13/user/articles/listing-and-editing-releases", - "/de/enterprise/2.13/articles/editing-and-deleting-releases", - "/de/enterprise/2.13/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.13/articles/managing-releases-in-a-repository", - "/de/enterprise/2.13/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/creating-releases", - "/de/enterprise/2.13/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.13/user/administering-a-repository/creating-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.13/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.13/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.13/user/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.13/github/administering-a-repository/managing-releases-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.14/articles/creating-releases", - "/de/enterprise/2.14/user/articles/creating-releases", - "/de/enterprise/2.14/articles/listing-and-editing-releases", - "/de/enterprise/2.14/user/articles/listing-and-editing-releases", - "/de/enterprise/2.14/articles/editing-and-deleting-releases", - "/de/enterprise/2.14/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.14/articles/managing-releases-in-a-repository", - "/de/enterprise/2.14/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/creating-releases", - "/de/enterprise/2.14/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.14/user/administering-a-repository/creating-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.14/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.14/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.14/user/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.14/github/administering-a-repository/managing-releases-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.15/articles/creating-releases", - "/de/enterprise/2.15/user/articles/creating-releases", - "/de/enterprise/2.15/articles/listing-and-editing-releases", - "/de/enterprise/2.15/user/articles/listing-and-editing-releases", - "/de/enterprise/2.15/articles/editing-and-deleting-releases", - "/de/enterprise/2.15/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.15/articles/managing-releases-in-a-repository", - "/de/enterprise/2.15/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/creating-releases", - "/de/enterprise/2.15/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.15/user/administering-a-repository/creating-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.15/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.15/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.15/user/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.15/github/administering-a-repository/managing-releases-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/articles/creating-releases", - "/de/enterprise/2.16/user/articles/creating-releases", - "/de/enterprise/2.16/articles/listing-and-editing-releases", - "/de/enterprise/2.16/user/articles/listing-and-editing-releases", - "/de/enterprise/2.16/articles/editing-and-deleting-releases", - "/de/enterprise/2.16/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.16/articles/managing-releases-in-a-repository", - "/de/enterprise/2.16/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/creating-releases", - "/de/enterprise/2.16/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.16/user/administering-a-repository/creating-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.16/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/user/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/github/administering-a-repository/managing-releases-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/articles/creating-releases", - "/de/enterprise/2.17/user/articles/creating-releases", - "/de/enterprise/2.17/articles/listing-and-editing-releases", - "/de/enterprise/2.17/user/articles/listing-and-editing-releases", - "/de/enterprise/2.17/articles/editing-and-deleting-releases", - "/de/enterprise/2.17/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.17/articles/managing-releases-in-a-repository", - "/de/enterprise/2.17/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/creating-releases", - "/de/enterprise/2.17/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.17/user/administering-a-repository/creating-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/creating-releases", - "/de/enterprise/2.17/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.17/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.17/user/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.17/github/administering-a-repository/managing-releases-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.13/user/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.13/articles/managing-repository-settings", - "/de/enterprise/2.13/user/articles/managing-repository-settings", - "/de/enterprise/2.13/github/administering-a-repository/managing-repository-settings" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.14/user/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.14/articles/managing-repository-settings", - "/de/enterprise/2.14/user/articles/managing-repository-settings", - "/de/enterprise/2.14/github/administering-a-repository/managing-repository-settings" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.15/user/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.15/articles/managing-repository-settings", - "/de/enterprise/2.15/user/articles/managing-repository-settings", - "/de/enterprise/2.15/github/administering-a-repository/managing-repository-settings" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/user/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/articles/managing-repository-settings", - "/de/enterprise/2.16/user/articles/managing-repository-settings", - "/de/enterprise/2.16/github/administering-a-repository/managing-repository-settings" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/user/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/articles/managing-repository-settings", - "/de/enterprise/2.17/user/articles/managing-repository-settings", - "/de/enterprise/2.17/github/administering-a-repository/managing-repository-settings" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/user/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/user/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.13/github/administering-a-repository/managing-the-automatic-deletion-of-branches" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/user/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/user/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.14/github/administering-a-repository/managing-the-automatic-deletion-of-branches" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/user/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/user/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.15/github/administering-a-repository/managing-the-automatic-deletion-of-branches" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/user/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/user/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.16/github/administering-a-repository/managing-the-automatic-deletion-of-branches" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/user/administering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/user/articles/managing-the-automatic-deletion-of-branches", - "/de/enterprise/2.17/github/administering-a-repository/managing-the-automatic-deletion-of-branches" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.13/user/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.13/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.13/github/administering-a-repository/managing-the-forking-policy-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.14/user/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.14/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.14/github/administering-a-repository/managing-the-forking-policy-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.15/user/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.15/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/github/administering-a-repository/managing-the-forking-policy-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.16/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/github/administering-a-repository/managing-the-forking-policy-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.17/github/administering-a-repository/managing-the-forking-policy-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.13/user/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.13/categories/85/articles", - "/de/enterprise/2.13/user/categories/85/articles", - "/de/enterprise/2.13/categories/releases", - "/de/enterprise/2.13/user/categories/releases", - "/de/enterprise/2.13/github/administering-a-repository/releasing-projects-on-github" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.14/user/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.14/categories/85/articles", - "/de/enterprise/2.14/user/categories/85/articles", - "/de/enterprise/2.14/categories/releases", - "/de/enterprise/2.14/user/categories/releases", - "/de/enterprise/2.14/github/administering-a-repository/releasing-projects-on-github" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.15/user/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.15/categories/85/articles", - "/de/enterprise/2.15/user/categories/85/articles", - "/de/enterprise/2.15/categories/releases", - "/de/enterprise/2.15/user/categories/releases", - "/de/enterprise/2.15/github/administering-a-repository/releasing-projects-on-github" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.16/user/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.16/categories/85/articles", - "/de/enterprise/2.16/user/categories/85/articles", - "/de/enterprise/2.16/categories/releases", - "/de/enterprise/2.16/user/categories/releases", - "/de/enterprise/2.16/github/administering-a-repository/releasing-projects-on-github" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/user/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/categories/85/articles", - "/de/enterprise/2.17/user/categories/85/articles", - "/de/enterprise/2.17/categories/releases", - "/de/enterprise/2.17/user/categories/releases", - "/de/enterprise/2.17/github/administering-a-repository/releasing-projects-on-github" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.13/articles/renaming-a-repository", - "/de/enterprise/2.13/user/articles/renaming-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/renaming-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.14/articles/renaming-a-repository", - "/de/enterprise/2.14/user/articles/renaming-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/renaming-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.15/articles/renaming-a-repository", - "/de/enterprise/2.15/user/articles/renaming-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/renaming-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/articles/renaming-a-repository", - "/de/enterprise/2.16/user/articles/renaming-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/renaming-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/articles/renaming-a-repository", - "/de/enterprise/2.17/user/articles/renaming-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/renaming-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.13/user/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.13/articles/making-a-private-repository-public", - "/de/enterprise/2.13/user/articles/making-a-private-repository-public", - "/de/enterprise/2.13/articles/making-a-public-repository-private", - "/de/enterprise/2.13/user/articles/making-a-public-repository-private", - "/de/enterprise/2.13/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.13/user/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.13/articles/setting-repository-visibility", - "/de/enterprise/2.13/user/articles/setting-repository-visibility", - "/de/enterprise/2.13/github/administering-a-repository/setting-repository-visibility" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.14/user/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.14/articles/making-a-private-repository-public", - "/de/enterprise/2.14/user/articles/making-a-private-repository-public", - "/de/enterprise/2.14/articles/making-a-public-repository-private", - "/de/enterprise/2.14/user/articles/making-a-public-repository-private", - "/de/enterprise/2.14/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.14/user/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.14/articles/setting-repository-visibility", - "/de/enterprise/2.14/user/articles/setting-repository-visibility", - "/de/enterprise/2.14/github/administering-a-repository/setting-repository-visibility" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.15/user/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.15/articles/making-a-private-repository-public", - "/de/enterprise/2.15/user/articles/making-a-private-repository-public", - "/de/enterprise/2.15/articles/making-a-public-repository-private", - "/de/enterprise/2.15/user/articles/making-a-public-repository-private", - "/de/enterprise/2.15/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.15/user/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.15/articles/setting-repository-visibility", - "/de/enterprise/2.15/user/articles/setting-repository-visibility", - "/de/enterprise/2.15/github/administering-a-repository/setting-repository-visibility" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/user/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/articles/making-a-private-repository-public", - "/de/enterprise/2.16/user/articles/making-a-private-repository-public", - "/de/enterprise/2.16/articles/making-a-public-repository-private", - "/de/enterprise/2.16/user/articles/making-a-public-repository-private", - "/de/enterprise/2.16/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.16/user/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.16/articles/setting-repository-visibility", - "/de/enterprise/2.16/user/articles/setting-repository-visibility", - "/de/enterprise/2.16/github/administering-a-repository/setting-repository-visibility" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/user/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/articles/making-a-private-repository-public", - "/de/enterprise/2.17/user/articles/making-a-private-repository-public", - "/de/enterprise/2.17/articles/making-a-public-repository-private", - "/de/enterprise/2.17/user/articles/making-a-public-repository-private", - "/de/enterprise/2.17/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.17/user/articles/converting-a-public-repo-to-a-private-repo", - "/de/enterprise/2.17/articles/setting-repository-visibility", - "/de/enterprise/2.17/user/articles/setting-repository-visibility", - "/de/enterprise/2.17/github/administering-a-repository/setting-repository-visibility" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.13/user/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.13/articles/about-repository-transfers", - "/de/enterprise/2.13/user/articles/about-repository-transfers", - "/de/enterprise/2.13/move-a-repo", - "/de/enterprise/2.13/user/move-a-repo", - "/de/enterprise/2.13/moving-a-repo", - "/de/enterprise/2.13/user/moving-a-repo", - "/de/enterprise/2.13/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.13/user/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.13/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.13/user/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.13/articles/how-to-transfer-a-repo", - "/de/enterprise/2.13/user/articles/how-to-transfer-a-repo", - "/de/enterprise/2.13/articles/how-to-transfer-a-repository", - "/de/enterprise/2.13/user/articles/how-to-transfer-a-repository", - "/de/enterprise/2.13/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.13/user/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.13/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.13/user/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.13/articles/transferring-a-repository", - "/de/enterprise/2.13/user/articles/transferring-a-repository", - "/de/enterprise/2.13/github/administering-a-repository/transferring-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.14/user/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.14/articles/about-repository-transfers", - "/de/enterprise/2.14/user/articles/about-repository-transfers", - "/de/enterprise/2.14/move-a-repo", - "/de/enterprise/2.14/user/move-a-repo", - "/de/enterprise/2.14/moving-a-repo", - "/de/enterprise/2.14/user/moving-a-repo", - "/de/enterprise/2.14/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.14/user/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.14/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.14/user/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.14/articles/how-to-transfer-a-repo", - "/de/enterprise/2.14/user/articles/how-to-transfer-a-repo", - "/de/enterprise/2.14/articles/how-to-transfer-a-repository", - "/de/enterprise/2.14/user/articles/how-to-transfer-a-repository", - "/de/enterprise/2.14/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.14/user/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.14/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.14/user/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.14/articles/transferring-a-repository", - "/de/enterprise/2.14/user/articles/transferring-a-repository", - "/de/enterprise/2.14/github/administering-a-repository/transferring-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.15/user/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.15/articles/about-repository-transfers", - "/de/enterprise/2.15/user/articles/about-repository-transfers", - "/de/enterprise/2.15/move-a-repo", - "/de/enterprise/2.15/user/move-a-repo", - "/de/enterprise/2.15/moving-a-repo", - "/de/enterprise/2.15/user/moving-a-repo", - "/de/enterprise/2.15/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.15/user/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.15/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.15/user/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.15/articles/how-to-transfer-a-repo", - "/de/enterprise/2.15/user/articles/how-to-transfer-a-repo", - "/de/enterprise/2.15/articles/how-to-transfer-a-repository", - "/de/enterprise/2.15/user/articles/how-to-transfer-a-repository", - "/de/enterprise/2.15/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.15/user/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.15/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.15/user/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.15/articles/transferring-a-repository", - "/de/enterprise/2.15/user/articles/transferring-a-repository", - "/de/enterprise/2.15/github/administering-a-repository/transferring-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/articles/about-repository-transfers", - "/de/enterprise/2.16/user/articles/about-repository-transfers", - "/de/enterprise/2.16/move-a-repo", - "/de/enterprise/2.16/user/move-a-repo", - "/de/enterprise/2.16/moving-a-repo", - "/de/enterprise/2.16/user/moving-a-repo", - "/de/enterprise/2.16/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.16/user/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.16/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.16/user/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.16/articles/how-to-transfer-a-repo", - "/de/enterprise/2.16/user/articles/how-to-transfer-a-repo", - "/de/enterprise/2.16/articles/how-to-transfer-a-repository", - "/de/enterprise/2.16/user/articles/how-to-transfer-a-repository", - "/de/enterprise/2.16/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.16/user/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.16/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.16/articles/transferring-a-repository", - "/de/enterprise/2.16/user/articles/transferring-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/transferring-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/articles/about-repository-transfers", - "/de/enterprise/2.17/user/articles/about-repository-transfers", - "/de/enterprise/2.17/move-a-repo", - "/de/enterprise/2.17/user/move-a-repo", - "/de/enterprise/2.17/moving-a-repo", - "/de/enterprise/2.17/user/moving-a-repo", - "/de/enterprise/2.17/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.17/user/articles/what-is-transferred-with-a-repository", - "/de/enterprise/2.17/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.17/user/articles/what-is-transferred-with-a-repo", - "/de/enterprise/2.17/articles/how-to-transfer-a-repo", - "/de/enterprise/2.17/user/articles/how-to-transfer-a-repo", - "/de/enterprise/2.17/articles/how-to-transfer-a-repository", - "/de/enterprise/2.17/user/articles/how-to-transfer-a-repository", - "/de/enterprise/2.17/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.17/user/articles/transferring-a-repository-owned-by-your-personal-account", - "/de/enterprise/2.17/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.17/user/articles/transferring-a-repository-owned-by-your-organization", - "/de/enterprise/2.17/articles/transferring-a-repository", - "/de/enterprise/2.17/user/articles/transferring-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/transferring-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.13/user/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.13/github/administering-a-repository/troubleshooting-required-status-checks" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.14/user/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.14/github/administering-a-repository/troubleshooting-required-status-checks" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.15/user/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.15/github/administering-a-repository/troubleshooting-required-status-checks" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/troubleshooting-required-status-checks" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/troubleshooting-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/troubleshooting-required-status-checks" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.13/user/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.13/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.13/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.13/github/administering-a-repository/viewing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.14/user/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.14/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.14/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.14/github/administering-a-repository/viewing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.15/user/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.15/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.15/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.15/github/administering-a-repository/viewing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.16/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/viewing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.17/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/viewing-branches-in-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/user/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/user/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.13/github/administering-a-repository/viewing-deployment-activity-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/user/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/user/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.14/github/administering-a-repository/viewing-deployment-activity-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/user/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/user/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.15/github/administering-a-repository/viewing-deployment-activity-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/user/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/viewing-deployment-activity-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/user/articles/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/viewing-deployment-activity-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.13/user/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.13/articles/working-with-tags", - "/de/enterprise/2.13/user/articles/working-with-tags", - "/de/enterprise/2.13/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.13/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.13/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.13/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.13/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.13/user/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.13/user/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.13/github/administering-a-repository/viewing-your-repositorys-releases-and-tags" - ], - [ - "/de/enterprise/2.14/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.14/user/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.14/articles/working-with-tags", - "/de/enterprise/2.14/user/articles/working-with-tags", - "/de/enterprise/2.14/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.14/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.14/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.14/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.14/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.14/user/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.14/user/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.14/github/administering-a-repository/viewing-your-repositorys-releases-and-tags" - ], - [ - "/de/enterprise/2.15/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.15/user/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.15/articles/working-with-tags", - "/de/enterprise/2.15/user/articles/working-with-tags", - "/de/enterprise/2.15/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.15/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.15/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.15/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.15/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.15/user/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.15/user/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.15/github/administering-a-repository/viewing-your-repositorys-releases-and-tags" - ], - [ - "/de/enterprise/2.16/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.16/user/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.16/articles/working-with-tags", - "/de/enterprise/2.16/user/articles/working-with-tags", - "/de/enterprise/2.16/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.16/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/github/administering-a-repository/viewing-your-repositorys-releases-and-tags" - ], - [ - "/de/enterprise/2.17/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/user/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/articles/working-with-tags", - "/de/enterprise/2.17/user/articles/working-with-tags", - "/de/enterprise/2.17/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.17/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.17/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.17/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.17/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.17/user/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.17/user/admin/guidesistering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.17/github/administering-a-repository/viewing-your-repositorys-releases-and-tags" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.13/user/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.13/github/authenticating-to-github/about-authentication-to-github" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.14/user/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.14/github/authenticating-to-github/about-authentication-to-github" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.15/user/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.15/github/authenticating-to-github/about-authentication-to-github" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.16/user/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.16/github/authenticating-to-github/about-authentication-to-github" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.17/user/authenticating-to-github/about-authentication-to-github", - "/de/enterprise/2.17/github/authenticating-to-github/about-authentication-to-github" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.13/user/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.13/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.13/user/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.13/articles/about-gpg", - "/de/enterprise/2.13/user/articles/about-gpg", - "/de/enterprise/2.13/articles/about-commit-signature-verification", - "/de/enterprise/2.13/user/articles/about-commit-signature-verification", - "/de/enterprise/2.13/github/authenticating-to-github/about-commit-signature-verification" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.14/user/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.14/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.14/user/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.14/articles/about-gpg", - "/de/enterprise/2.14/user/articles/about-gpg", - "/de/enterprise/2.14/articles/about-commit-signature-verification", - "/de/enterprise/2.14/user/articles/about-commit-signature-verification", - "/de/enterprise/2.14/github/authenticating-to-github/about-commit-signature-verification" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.15/user/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.15/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.15/user/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.15/articles/about-gpg", - "/de/enterprise/2.15/user/articles/about-gpg", - "/de/enterprise/2.15/articles/about-commit-signature-verification", - "/de/enterprise/2.15/user/articles/about-commit-signature-verification", - "/de/enterprise/2.15/github/authenticating-to-github/about-commit-signature-verification" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.16/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.16/user/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.16/articles/about-gpg", - "/de/enterprise/2.16/user/articles/about-gpg", - "/de/enterprise/2.16/articles/about-commit-signature-verification", - "/de/enterprise/2.16/user/articles/about-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/about-commit-signature-verification" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.17/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.17/user/articles/about-gpg-commit-and-tag-signatures", - "/de/enterprise/2.17/articles/about-gpg", - "/de/enterprise/2.17/user/articles/about-gpg", - "/de/enterprise/2.17/articles/about-commit-signature-verification", - "/de/enterprise/2.17/user/articles/about-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/about-commit-signature-verification" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.13/user/authenticating-to-github/about-ssh", - "/de/enterprise/2.13/articles/about-ssh", - "/de/enterprise/2.13/user/articles/about-ssh", - "/de/enterprise/2.13/github/authenticating-to-github/about-ssh" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.14/user/authenticating-to-github/about-ssh", - "/de/enterprise/2.14/articles/about-ssh", - "/de/enterprise/2.14/user/articles/about-ssh", - "/de/enterprise/2.14/github/authenticating-to-github/about-ssh" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.15/user/authenticating-to-github/about-ssh", - "/de/enterprise/2.15/articles/about-ssh", - "/de/enterprise/2.15/user/articles/about-ssh", - "/de/enterprise/2.15/github/authenticating-to-github/about-ssh" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/about-ssh", - "/de/enterprise/2.16/articles/about-ssh", - "/de/enterprise/2.16/user/articles/about-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/about-ssh" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/about-ssh", - "/de/enterprise/2.17/articles/about-ssh", - "/de/enterprise/2.17/user/articles/about-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/about-ssh" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.13/user/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.13/articles/about-two-factor-authentication", - "/de/enterprise/2.13/user/articles/about-two-factor-authentication", - "/de/enterprise/2.13/github/authenticating-to-github/about-two-factor-authentication" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.14/user/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.14/articles/about-two-factor-authentication", - "/de/enterprise/2.14/user/articles/about-two-factor-authentication", - "/de/enterprise/2.14/github/authenticating-to-github/about-two-factor-authentication" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.15/user/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.15/articles/about-two-factor-authentication", - "/de/enterprise/2.15/user/articles/about-two-factor-authentication", - "/de/enterprise/2.15/github/authenticating-to-github/about-two-factor-authentication" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.16/articles/about-two-factor-authentication", - "/de/enterprise/2.16/user/articles/about-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/about-two-factor-authentication" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.17/articles/about-two-factor-authentication", - "/de/enterprise/2.17/user/articles/about-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/about-two-factor-authentication" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.13/user/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.13/articles/providing-your-2fa-security-code", - "/de/enterprise/2.13/user/articles/providing-your-2fa-security-code", - "/de/enterprise/2.13/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.13/user/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.13/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.13/user/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.13/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.13/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.13/github/authenticating-to-github/accessing-github-using-two-factor-authentication" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.14/user/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.14/articles/providing-your-2fa-security-code", - "/de/enterprise/2.14/user/articles/providing-your-2fa-security-code", - "/de/enterprise/2.14/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.14/user/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.14/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.14/user/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.14/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.14/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.14/github/authenticating-to-github/accessing-github-using-two-factor-authentication" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.15/user/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.15/articles/providing-your-2fa-security-code", - "/de/enterprise/2.15/user/articles/providing-your-2fa-security-code", - "/de/enterprise/2.15/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.15/user/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.15/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.15/user/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.15/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.15/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.15/github/authenticating-to-github/accessing-github-using-two-factor-authentication" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/articles/providing-your-2fa-security-code", - "/de/enterprise/2.16/user/articles/providing-your-2fa-security-code", - "/de/enterprise/2.16/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.16/user/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.16/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.16/user/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.16/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/accessing-github-using-two-factor-authentication" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/articles/providing-your-2fa-security-code", - "/de/enterprise/2.17/user/articles/providing-your-2fa-security-code", - "/de/enterprise/2.17/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.17/user/articles/providing-your-2fa-authentication-code", - "/de/enterprise/2.17/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.17/user/articles/authenticating-to-github-using-fido-u2f-via-nfc", - "/de/enterprise/2.17/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/accessing-github-using-two-factor-authentication" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.13/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.13/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.13/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.13/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.14/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.14/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.14/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.14/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.15/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.15/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.15/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.15/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.13/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.13/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.13/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.13/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.14/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.14/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.14/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.14/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.15/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.15/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.15/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.15/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.13/user/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.13/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.13/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.13/github/authenticating-to-github/associating-an-email-with-your-gpg-key" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.14/user/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.14/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.14/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.14/github/authenticating-to-github/associating-an-email-with-your-gpg-key" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.15/user/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.15/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.15/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.15/github/authenticating-to-github/associating-an-email-with-your-gpg-key" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/associating-an-email-with-your-gpg-key" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/associating-an-email-with-your-gpg-key" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.13/user/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.13/articles/authorizing-oauth-apps", - "/de/enterprise/2.13/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.13/github/authenticating-to-github/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.14/user/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.14/articles/authorizing-oauth-apps", - "/de/enterprise/2.14/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.14/github/authenticating-to-github/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.15/user/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.15/articles/authorizing-oauth-apps", - "/de/enterprise/2.15/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.15/github/authenticating-to-github/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.16/user/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.16/articles/authorizing-oauth-apps", - "/de/enterprise/2.16/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.16/github/authenticating-to-github/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.17/user/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.17/articles/authorizing-oauth-apps", - "/de/enterprise/2.17/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.17/github/authenticating-to-github/authorizing-oauth-apps" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.13/user/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.13/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.13/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.13/github/authenticating-to-github/checking-for-existing-gpg-keys" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.14/user/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.14/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.14/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.14/github/authenticating-to-github/checking-for-existing-gpg-keys" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.15/user/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.15/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.15/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.15/github/authenticating-to-github/checking-for-existing-gpg-keys" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/user/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/github/authenticating-to-github/checking-for-existing-gpg-keys" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/user/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/github/authenticating-to-github/checking-for-existing-gpg-keys" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.13/user/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.13/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.13/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.13/github/authenticating-to-github/checking-for-existing-ssh-keys" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.14/user/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.14/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.14/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.14/github/authenticating-to-github/checking-for-existing-ssh-keys" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.15/user/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.15/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.15/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.15/github/authenticating-to-github/checking-for-existing-ssh-keys" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/user/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/github/authenticating-to-github/checking-for-existing-ssh-keys" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/user/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/github/authenticating-to-github/checking-for-existing-ssh-keys" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/user/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.13/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/user/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.14/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/user/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/user/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/user/articles/checking-your-gpg-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.13/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.13/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.13/user/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.13/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.13/user/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.13/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.13/user/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.13/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.13/user/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.13/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.13/user/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.13/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.13/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.13/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.14/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.14/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.14/user/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.14/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.14/user/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.14/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.14/user/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.14/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.14/user/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.14/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.14/user/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.14/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.14/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.14/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.15/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.15/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.15/user/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.15/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.15/user/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.15/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.15/user/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.15/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.15/user/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.15/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.15/user/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.15/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.16/user/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.16/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.16/user/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.16/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.16/user/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.16/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.16/user/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.16/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.16/user/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.16/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.17/user/articles/downloading-your-two-factor-authentication-recovery-codes", - "/de/enterprise/2.17/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.17/user/articles/setting-a-fallback-authentication-number", - "/de/enterprise/2.17/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.17/user/articles/about-recover-accounts-elsewhere", - "/de/enterprise/2.17/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.17/user/articles/adding-a-fallback-authentication-method-with-recover-accounts-elsewhere", - "/de/enterprise/2.17/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.17/user/articles/generating-and-storing-an-account-recovery-token", - "/de/enterprise/2.17/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.13/user/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.13/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.13/user/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.13/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.13/user/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.13/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.13/user/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.13/articles/configuring-two-factor-authentication", - "/de/enterprise/2.13/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.13/github/authenticating-to-github/configuring-two-factor-authentication" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.14/user/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.14/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.14/user/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.14/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.14/user/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.14/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.14/user/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.14/articles/configuring-two-factor-authentication", - "/de/enterprise/2.14/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.14/github/authenticating-to-github/configuring-two-factor-authentication" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.15/user/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication", - "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.15/github/authenticating-to-github/configuring-two-factor-authentication" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.16/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.16/user/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.16/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.16/user/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.16/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.16/user/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.16/articles/configuring-two-factor-authentication", - "/de/enterprise/2.16/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/configuring-two-factor-authentication" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.17/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.17/user/articles/configuring-two-factor-authentication-via-a-totp-mobile-app", - "/de/enterprise/2.17/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.17/user/articles/configuring-two-factor-authentication-via-text-message", - "/de/enterprise/2.17/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.17/user/articles/configuring-two-factor-authentication-via-fido-u2f", - "/de/enterprise/2.17/articles/configuring-two-factor-authentication", - "/de/enterprise/2.17/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/configuring-two-factor-authentication" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.13/user/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.13/key-setup-redirect", - "/de/enterprise/2.13/user/key-setup-redirect", - "/de/enterprise/2.13/linux-key-setup", - "/de/enterprise/2.13/user/linux-key-setup", - "/de/enterprise/2.13/mac-key-setup", - "/de/enterprise/2.13/user/mac-key-setup", - "/de/enterprise/2.13/msysgit-key-setup", - "/de/enterprise/2.13/user/msysgit-key-setup", - "/de/enterprise/2.13/articles/ssh-key-setup", - "/de/enterprise/2.13/user/articles/ssh-key-setup", - "/de/enterprise/2.13/articles/generating-ssh-keys", - "/de/enterprise/2.13/user/articles/generating-ssh-keys", - "/de/enterprise/2.13/articles/generating-an-ssh-key", - "/de/enterprise/2.13/user/articles/generating-an-ssh-key", - "/de/enterprise/2.13/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.13/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.13/github/authenticating-to-github/connecting-to-github-with-ssh" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.14/user/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.14/key-setup-redirect", - "/de/enterprise/2.14/user/key-setup-redirect", - "/de/enterprise/2.14/linux-key-setup", - "/de/enterprise/2.14/user/linux-key-setup", - "/de/enterprise/2.14/mac-key-setup", - "/de/enterprise/2.14/user/mac-key-setup", - "/de/enterprise/2.14/msysgit-key-setup", - "/de/enterprise/2.14/user/msysgit-key-setup", - "/de/enterprise/2.14/articles/ssh-key-setup", - "/de/enterprise/2.14/user/articles/ssh-key-setup", - "/de/enterprise/2.14/articles/generating-ssh-keys", - "/de/enterprise/2.14/user/articles/generating-ssh-keys", - "/de/enterprise/2.14/articles/generating-an-ssh-key", - "/de/enterprise/2.14/user/articles/generating-an-ssh-key", - "/de/enterprise/2.14/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.14/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.14/github/authenticating-to-github/connecting-to-github-with-ssh" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.15/user/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.15/key-setup-redirect", - "/de/enterprise/2.15/user/key-setup-redirect", - "/de/enterprise/2.15/linux-key-setup", - "/de/enterprise/2.15/user/linux-key-setup", - "/de/enterprise/2.15/mac-key-setup", - "/de/enterprise/2.15/user/mac-key-setup", - "/de/enterprise/2.15/msysgit-key-setup", - "/de/enterprise/2.15/user/msysgit-key-setup", - "/de/enterprise/2.15/articles/ssh-key-setup", - "/de/enterprise/2.15/user/articles/ssh-key-setup", - "/de/enterprise/2.15/articles/generating-ssh-keys", - "/de/enterprise/2.15/user/articles/generating-ssh-keys", - "/de/enterprise/2.15/articles/generating-an-ssh-key", - "/de/enterprise/2.15/user/articles/generating-an-ssh-key", - "/de/enterprise/2.15/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.15/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.15/github/authenticating-to-github/connecting-to-github-with-ssh" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.16/key-setup-redirect", - "/de/enterprise/2.16/user/key-setup-redirect", - "/de/enterprise/2.16/linux-key-setup", - "/de/enterprise/2.16/user/linux-key-setup", - "/de/enterprise/2.16/mac-key-setup", - "/de/enterprise/2.16/user/mac-key-setup", - "/de/enterprise/2.16/msysgit-key-setup", - "/de/enterprise/2.16/user/msysgit-key-setup", - "/de/enterprise/2.16/articles/ssh-key-setup", - "/de/enterprise/2.16/user/articles/ssh-key-setup", - "/de/enterprise/2.16/articles/generating-ssh-keys", - "/de/enterprise/2.16/user/articles/generating-ssh-keys", - "/de/enterprise/2.16/articles/generating-an-ssh-key", - "/de/enterprise/2.16/user/articles/generating-an-ssh-key", - "/de/enterprise/2.16/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.16/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/connecting-to-github-with-ssh" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.17/key-setup-redirect", - "/de/enterprise/2.17/user/key-setup-redirect", - "/de/enterprise/2.17/linux-key-setup", - "/de/enterprise/2.17/user/linux-key-setup", - "/de/enterprise/2.17/mac-key-setup", - "/de/enterprise/2.17/user/mac-key-setup", - "/de/enterprise/2.17/msysgit-key-setup", - "/de/enterprise/2.17/user/msysgit-key-setup", - "/de/enterprise/2.17/articles/ssh-key-setup", - "/de/enterprise/2.17/user/articles/ssh-key-setup", - "/de/enterprise/2.17/articles/generating-ssh-keys", - "/de/enterprise/2.17/user/articles/generating-ssh-keys", - "/de/enterprise/2.17/articles/generating-an-ssh-key", - "/de/enterprise/2.17/user/articles/generating-an-ssh-key", - "/de/enterprise/2.17/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.17/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/connecting-to-github-with-ssh" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.13/user/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.13/articles/connecting-with-third-party-applications", - "/de/enterprise/2.13/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.13/github/authenticating-to-github/connecting-with-third-party-applications" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.14/user/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.14/articles/connecting-with-third-party-applications", - "/de/enterprise/2.14/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.14/github/authenticating-to-github/connecting-with-third-party-applications" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.15/user/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.15/articles/connecting-with-third-party-applications", - "/de/enterprise/2.15/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.15/github/authenticating-to-github/connecting-with-third-party-applications" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.16/user/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.16/articles/connecting-with-third-party-applications", - "/de/enterprise/2.16/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.16/github/authenticating-to-github/connecting-with-third-party-applications" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.17/user/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.17/articles/connecting-with-third-party-applications", - "/de/enterprise/2.17/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.17/github/authenticating-to-github/connecting-with-third-party-applications" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.13/user/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.13/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.13/user/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.13/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.13/user/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.13/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.13/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.13/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.13/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.13/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.13/github/authenticating-to-github/creating-a-personal-access-token" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.14/user/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.14/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.14/user/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.14/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.14/user/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.14/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.14/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.14/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.14/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.14/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.14/github/authenticating-to-github/creating-a-personal-access-token" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.15/user/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.15/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.15/user/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.15/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.15/user/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.15/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/github/authenticating-to-github/creating-a-personal-access-token" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.16/user/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.16/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.16/user/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.16/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.16/user/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.16/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/github/authenticating-to-github/creating-a-personal-access-token" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.17/user/authenticating-to-github/creating-a-personal-access-token", - "/de/enterprise/2.17/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.17/user/articles/creating-an-oauth-token-for-command-line-use", - "/de/enterprise/2.17/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.17/user/articles/creating-an-access-token-for-command-line-use", - "/de/enterprise/2.17/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/github/authenticating-to-github/creating-a-personal-access-token" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.13/user/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.13/articles/what-is-a-strong-password", - "/de/enterprise/2.13/user/articles/what-is-a-strong-password", - "/de/enterprise/2.13/articles/creating-a-strong-password", - "/de/enterprise/2.13/user/articles/creating-a-strong-password", - "/de/enterprise/2.13/github/authenticating-to-github/creating-a-strong-password" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.14/user/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.14/articles/what-is-a-strong-password", - "/de/enterprise/2.14/user/articles/what-is-a-strong-password", - "/de/enterprise/2.14/articles/creating-a-strong-password", - "/de/enterprise/2.14/user/articles/creating-a-strong-password", - "/de/enterprise/2.14/github/authenticating-to-github/creating-a-strong-password" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.15/user/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.15/articles/what-is-a-strong-password", - "/de/enterprise/2.15/user/articles/what-is-a-strong-password", - "/de/enterprise/2.15/articles/creating-a-strong-password", - "/de/enterprise/2.15/user/articles/creating-a-strong-password", - "/de/enterprise/2.15/github/authenticating-to-github/creating-a-strong-password" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.16/user/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.16/articles/what-is-a-strong-password", - "/de/enterprise/2.16/user/articles/what-is-a-strong-password", - "/de/enterprise/2.16/articles/creating-a-strong-password", - "/de/enterprise/2.16/user/articles/creating-a-strong-password", - "/de/enterprise/2.16/github/authenticating-to-github/creating-a-strong-password" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.17/user/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.17/articles/what-is-a-strong-password", - "/de/enterprise/2.17/user/articles/what-is-a-strong-password", - "/de/enterprise/2.17/articles/creating-a-strong-password", - "/de/enterprise/2.17/user/articles/creating-a-strong-password", - "/de/enterprise/2.17/github/authenticating-to-github/creating-a-strong-password" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.13/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.13/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.13/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.13/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.14/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.14/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.14/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.14/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.15/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.15/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.15/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.15/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.13/user/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.13/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.13/user/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.13/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.13/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.13/github/authenticating-to-github/error-agent-admitted-failure-to-sign" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.14/user/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.14/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.14/user/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.14/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.14/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.14/github/authenticating-to-github/error-agent-admitted-failure-to-sign" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.15/user/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.15/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.15/user/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.15/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.15/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.15/github/authenticating-to-github/error-agent-admitted-failure-to-sign" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/user/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.16/user/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.16/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/github/authenticating-to-github/error-agent-admitted-failure-to-sign" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/user/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.17/user/articles/error-agent-admitted-failure-to-sign-using-the-key", - "/de/enterprise/2.17/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/github/authenticating-to-github/error-agent-admitted-failure-to-sign" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.13/user/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.13/articles/error-bad-file-number", - "/de/enterprise/2.13/user/articles/error-bad-file-number", - "/de/enterprise/2.13/github/authenticating-to-github/error-bad-file-number" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.14/user/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.14/articles/error-bad-file-number", - "/de/enterprise/2.14/user/articles/error-bad-file-number", - "/de/enterprise/2.14/github/authenticating-to-github/error-bad-file-number" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.15/user/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.15/articles/error-bad-file-number", - "/de/enterprise/2.15/user/articles/error-bad-file-number", - "/de/enterprise/2.15/github/authenticating-to-github/error-bad-file-number" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.16/user/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.16/articles/error-bad-file-number", - "/de/enterprise/2.16/user/articles/error-bad-file-number", - "/de/enterprise/2.16/github/authenticating-to-github/error-bad-file-number" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.17/user/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.17/articles/error-bad-file-number", - "/de/enterprise/2.17/user/articles/error-bad-file-number", - "/de/enterprise/2.17/github/authenticating-to-github/error-bad-file-number" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.13/user/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.13/articles/error-key-already-in-use", - "/de/enterprise/2.13/user/articles/error-key-already-in-use", - "/de/enterprise/2.13/github/authenticating-to-github/error-key-already-in-use" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.14/user/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.14/articles/error-key-already-in-use", - "/de/enterprise/2.14/user/articles/error-key-already-in-use", - "/de/enterprise/2.14/github/authenticating-to-github/error-key-already-in-use" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.15/user/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.15/articles/error-key-already-in-use", - "/de/enterprise/2.15/user/articles/error-key-already-in-use", - "/de/enterprise/2.15/github/authenticating-to-github/error-key-already-in-use" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.16/user/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.16/articles/error-key-already-in-use", - "/de/enterprise/2.16/user/articles/error-key-already-in-use", - "/de/enterprise/2.16/github/authenticating-to-github/error-key-already-in-use" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.17/user/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.17/articles/error-key-already-in-use", - "/de/enterprise/2.17/user/articles/error-key-already-in-use", - "/de/enterprise/2.17/github/authenticating-to-github/error-key-already-in-use" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.13/user/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.13/articles/error-permission-denied-publickey", - "/de/enterprise/2.13/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.13/github/authenticating-to-github/error-permission-denied-publickey" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.14/user/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.14/articles/error-permission-denied-publickey", - "/de/enterprise/2.14/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.14/github/authenticating-to-github/error-permission-denied-publickey" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.15/user/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.15/articles/error-permission-denied-publickey", - "/de/enterprise/2.15/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.15/github/authenticating-to-github/error-permission-denied-publickey" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.16/articles/error-permission-denied-publickey", - "/de/enterprise/2.16/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-denied-publickey" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.17/articles/error-permission-denied-publickey", - "/de/enterprise/2.17/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-denied-publickey" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.13/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.13/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.13/user/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.13/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.13/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.13/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.14/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.14/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.14/user/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.14/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.14/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.14/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.15/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.15/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.15/user/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.15/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.15/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.15/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.16/user/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.16/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.17/user/articles/error-permission-to-user-repo-denied-to-other-user", - "/de/enterprise/2.17/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.13/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.13/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.13/user/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.13/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.13/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.13/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.14/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.14/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.14/user/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.14/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.14/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.14/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.15/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.15/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.15/user/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.15/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.15/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.15/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.16/user/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.16/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.17/user/articles/error-permission-to-user-repo-denied-to-user-other-repo", - "/de/enterprise/2.17/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.13/user/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.13/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.13/user/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.13/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.13/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.13/github/authenticating-to-github/error-ssh-add-illegal-option----k" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.14/user/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.14/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.14/user/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.14/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.14/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.14/github/authenticating-to-github/error-ssh-add-illegal-option----k" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.15/user/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.15/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.15/user/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.15/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.15/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.15/github/authenticating-to-github/error-ssh-add-illegal-option----k" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/user/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.16/user/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.16/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/github/authenticating-to-github/error-ssh-add-illegal-option----k" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/user/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.17/user/articles/error-ssh-add-illegal-option-k", - "/de/enterprise/2.17/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/github/authenticating-to-github/error-ssh-add-illegal-option----k" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.13/user/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.13/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.13/user/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.13/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.13/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.13/github/authenticating-to-github/error-were-doing-an-ssh-key-audit" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.14/user/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.14/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.14/user/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.14/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.14/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.14/github/authenticating-to-github/error-were-doing-an-ssh-key-audit" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.15/user/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.15/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.15/user/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.15/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.15/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.15/github/authenticating-to-github/error-were-doing-an-ssh-key-audit" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/user/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.16/user/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.16/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/github/authenticating-to-github/error-were-doing-an-ssh-key-audit" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/user/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.17/user/articles/error-we-re-doing-an-ssh-key-audit", - "/de/enterprise/2.17/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/github/authenticating-to-github/error-were-doing-an-ssh-key-audit" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.13/user/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.13/articles/generating-a-new-gpg-key", - "/de/enterprise/2.13/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.13/github/authenticating-to-github/generating-a-new-gpg-key" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.14/user/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.14/articles/generating-a-new-gpg-key", - "/de/enterprise/2.14/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.14/github/authenticating-to-github/generating-a-new-gpg-key" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.15/user/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.15/articles/generating-a-new-gpg-key", - "/de/enterprise/2.15/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.15/github/authenticating-to-github/generating-a-new-gpg-key" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.16/articles/generating-a-new-gpg-key", - "/de/enterprise/2.16/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/generating-a-new-gpg-key" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.17/articles/generating-a-new-gpg-key", - "/de/enterprise/2.17/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/generating-a-new-gpg-key" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.13/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.13/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.13/user/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.13/articles/generating-a-new-ssh-key", - "/de/enterprise/2.13/user/articles/generating-a-new-ssh-key", - "/de/enterprise/2.13/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.13/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.13/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.14/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.14/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.14/user/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.14/articles/generating-a-new-ssh-key", - "/de/enterprise/2.14/user/articles/generating-a-new-ssh-key", - "/de/enterprise/2.14/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.14/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.14/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.15/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.15/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.15/user/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.15/articles/generating-a-new-ssh-key", - "/de/enterprise/2.15/user/articles/generating-a-new-ssh-key", - "/de/enterprise/2.15/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.15/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.15/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.16/user/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.16/articles/generating-a-new-ssh-key", - "/de/enterprise/2.16/user/articles/generating-a-new-ssh-key", - "/de/enterprise/2.16/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.17/user/articles/adding-a-new-ssh-key-to-the-ssh-agent", - "/de/enterprise/2.17/articles/generating-a-new-ssh-key", - "/de/enterprise/2.17/user/articles/generating-a-new-ssh-key", - "/de/enterprise/2.17/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github", - "/de/enterprise/2.13/user/authenticating-to-github", - "/de/enterprise/2.13/categories/56/articles", - "/de/enterprise/2.13/user/categories/56/articles", - "/de/enterprise/2.13/categories/ssh", - "/de/enterprise/2.13/user/categories/ssh", - "/de/enterprise/2.13/mac-verify-ssh", - "/de/enterprise/2.13/user/mac-verify-ssh", - "/de/enterprise/2.13/ssh-issues", - "/de/enterprise/2.13/user/ssh-issues", - "/de/enterprise/2.13/verify-ssh-redirect", - "/de/enterprise/2.13/user/verify-ssh-redirect", - "/de/enterprise/2.13/win-verify-ssh", - "/de/enterprise/2.13/user/win-verify-ssh", - "/de/enterprise/2.13/categories/92/articles", - "/de/enterprise/2.13/user/categories/92/articles", - "/de/enterprise/2.13/categories/gpg", - "/de/enterprise/2.13/user/categories/gpg", - "/de/enterprise/2.13/categories/security", - "/de/enterprise/2.13/user/categories/security", - "/de/enterprise/2.13/categories/authenticating-to-github", - "/de/enterprise/2.13/user/categories/authenticating-to-github", - "/de/enterprise/2.13/github/authenticating-to-github" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github", - "/de/enterprise/2.14/user/authenticating-to-github", - "/de/enterprise/2.14/categories/56/articles", - "/de/enterprise/2.14/user/categories/56/articles", - "/de/enterprise/2.14/categories/ssh", - "/de/enterprise/2.14/user/categories/ssh", - "/de/enterprise/2.14/mac-verify-ssh", - "/de/enterprise/2.14/user/mac-verify-ssh", - "/de/enterprise/2.14/ssh-issues", - "/de/enterprise/2.14/user/ssh-issues", - "/de/enterprise/2.14/verify-ssh-redirect", - "/de/enterprise/2.14/user/verify-ssh-redirect", - "/de/enterprise/2.14/win-verify-ssh", - "/de/enterprise/2.14/user/win-verify-ssh", - "/de/enterprise/2.14/categories/92/articles", - "/de/enterprise/2.14/user/categories/92/articles", - "/de/enterprise/2.14/categories/gpg", - "/de/enterprise/2.14/user/categories/gpg", - "/de/enterprise/2.14/categories/security", - "/de/enterprise/2.14/user/categories/security", - "/de/enterprise/2.14/categories/authenticating-to-github", - "/de/enterprise/2.14/user/categories/authenticating-to-github", - "/de/enterprise/2.14/github/authenticating-to-github" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github", - "/de/enterprise/2.15/user/authenticating-to-github", - "/de/enterprise/2.15/categories/56/articles", - "/de/enterprise/2.15/user/categories/56/articles", - "/de/enterprise/2.15/categories/ssh", - "/de/enterprise/2.15/user/categories/ssh", - "/de/enterprise/2.15/mac-verify-ssh", - "/de/enterprise/2.15/user/mac-verify-ssh", - "/de/enterprise/2.15/ssh-issues", - "/de/enterprise/2.15/user/ssh-issues", - "/de/enterprise/2.15/verify-ssh-redirect", - "/de/enterprise/2.15/user/verify-ssh-redirect", - "/de/enterprise/2.15/win-verify-ssh", - "/de/enterprise/2.15/user/win-verify-ssh", - "/de/enterprise/2.15/categories/92/articles", - "/de/enterprise/2.15/user/categories/92/articles", - "/de/enterprise/2.15/categories/gpg", - "/de/enterprise/2.15/user/categories/gpg", - "/de/enterprise/2.15/categories/security", - "/de/enterprise/2.15/user/categories/security", - "/de/enterprise/2.15/categories/authenticating-to-github", - "/de/enterprise/2.15/user/categories/authenticating-to-github", - "/de/enterprise/2.15/github/authenticating-to-github" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github", - "/de/enterprise/2.16/user/authenticating-to-github", - "/de/enterprise/2.16/categories/56/articles", - "/de/enterprise/2.16/user/categories/56/articles", - "/de/enterprise/2.16/categories/ssh", - "/de/enterprise/2.16/user/categories/ssh", - "/de/enterprise/2.16/mac-verify-ssh", - "/de/enterprise/2.16/user/mac-verify-ssh", - "/de/enterprise/2.16/ssh-issues", - "/de/enterprise/2.16/user/ssh-issues", - "/de/enterprise/2.16/verify-ssh-redirect", - "/de/enterprise/2.16/user/verify-ssh-redirect", - "/de/enterprise/2.16/win-verify-ssh", - "/de/enterprise/2.16/user/win-verify-ssh", - "/de/enterprise/2.16/categories/92/articles", - "/de/enterprise/2.16/user/categories/92/articles", - "/de/enterprise/2.16/categories/gpg", - "/de/enterprise/2.16/user/categories/gpg", - "/de/enterprise/2.16/categories/security", - "/de/enterprise/2.16/user/categories/security", - "/de/enterprise/2.16/categories/authenticating-to-github", - "/de/enterprise/2.16/user/categories/authenticating-to-github", - "/de/enterprise/2.16/github/authenticating-to-github" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github", - "/de/enterprise/2.17/user/authenticating-to-github", - "/de/enterprise/2.17/categories/56/articles", - "/de/enterprise/2.17/user/categories/56/articles", - "/de/enterprise/2.17/categories/ssh", - "/de/enterprise/2.17/user/categories/ssh", - "/de/enterprise/2.17/mac-verify-ssh", - "/de/enterprise/2.17/user/mac-verify-ssh", - "/de/enterprise/2.17/ssh-issues", - "/de/enterprise/2.17/user/ssh-issues", - "/de/enterprise/2.17/verify-ssh-redirect", - "/de/enterprise/2.17/user/verify-ssh-redirect", - "/de/enterprise/2.17/win-verify-ssh", - "/de/enterprise/2.17/user/win-verify-ssh", - "/de/enterprise/2.17/categories/92/articles", - "/de/enterprise/2.17/user/categories/92/articles", - "/de/enterprise/2.17/categories/gpg", - "/de/enterprise/2.17/user/categories/gpg", - "/de/enterprise/2.17/categories/security", - "/de/enterprise/2.17/user/categories/security", - "/de/enterprise/2.17/categories/authenticating-to-github", - "/de/enterprise/2.17/user/categories/authenticating-to-github", - "/de/enterprise/2.17/github/authenticating-to-github" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.13/user/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.13/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.13/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.13/github/authenticating-to-github/keeping-your-account-and-data-secure" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.14/user/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.14/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.14/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.14/github/authenticating-to-github/keeping-your-account-and-data-secure" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.15/user/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.15/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.15/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.15/github/authenticating-to-github/keeping-your-account-and-data-secure" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/user/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/github/authenticating-to-github/keeping-your-account-and-data-secure" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/user/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/github/authenticating-to-github/keeping-your-account-and-data-secure" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.13/user/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.13/articles/generating-a-gpg-key", - "/de/enterprise/2.13/user/articles/generating-a-gpg-key", - "/de/enterprise/2.13/articles/signing-commits-with-gpg", - "/de/enterprise/2.13/user/articles/signing-commits-with-gpg", - "/de/enterprise/2.13/articles/managing-commit-signature-verification", - "/de/enterprise/2.13/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.13/github/authenticating-to-github/managing-commit-signature-verification" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.14/user/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.14/articles/generating-a-gpg-key", - "/de/enterprise/2.14/user/articles/generating-a-gpg-key", - "/de/enterprise/2.14/articles/signing-commits-with-gpg", - "/de/enterprise/2.14/user/articles/signing-commits-with-gpg", - "/de/enterprise/2.14/articles/managing-commit-signature-verification", - "/de/enterprise/2.14/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.14/github/authenticating-to-github/managing-commit-signature-verification" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.15/user/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.15/articles/generating-a-gpg-key", - "/de/enterprise/2.15/user/articles/generating-a-gpg-key", - "/de/enterprise/2.15/articles/signing-commits-with-gpg", - "/de/enterprise/2.15/user/articles/signing-commits-with-gpg", - "/de/enterprise/2.15/articles/managing-commit-signature-verification", - "/de/enterprise/2.15/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.15/github/authenticating-to-github/managing-commit-signature-verification" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.16/articles/generating-a-gpg-key", - "/de/enterprise/2.16/user/articles/generating-a-gpg-key", - "/de/enterprise/2.16/articles/signing-commits-with-gpg", - "/de/enterprise/2.16/user/articles/signing-commits-with-gpg", - "/de/enterprise/2.16/articles/managing-commit-signature-verification", - "/de/enterprise/2.16/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/managing-commit-signature-verification" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.17/articles/generating-a-gpg-key", - "/de/enterprise/2.17/user/articles/generating-a-gpg-key", - "/de/enterprise/2.17/articles/signing-commits-with-gpg", - "/de/enterprise/2.17/user/articles/signing-commits-with-gpg", - "/de/enterprise/2.17/articles/managing-commit-signature-verification", - "/de/enterprise/2.17/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/managing-commit-signature-verification" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.13/user/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.13/articles/preventing-unauthorized-access", - "/de/enterprise/2.13/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.13/github/authenticating-to-github/preventing-unauthorized-access" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.14/user/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.14/articles/preventing-unauthorized-access", - "/de/enterprise/2.14/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.14/github/authenticating-to-github/preventing-unauthorized-access" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.15/user/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.15/articles/preventing-unauthorized-access", - "/de/enterprise/2.15/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.15/github/authenticating-to-github/preventing-unauthorized-access" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.16/user/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.16/articles/preventing-unauthorized-access", - "/de/enterprise/2.16/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.16/github/authenticating-to-github/preventing-unauthorized-access" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.17/user/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.17/articles/preventing-unauthorized-access", - "/de/enterprise/2.17/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.17/github/authenticating-to-github/preventing-unauthorized-access" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.13/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.13/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.13/user/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.13/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.13/user/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.13/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.13/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.13/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.14/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.14/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.14/user/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.14/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.14/user/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.14/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.14/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.14/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.15/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.15/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.15/user/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.15/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.15/user/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.15/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.15/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.15/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.16/user/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.16/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.16/user/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.16/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.17/user/articles/recovering-your-account-if-you-lost-your-2fa-credentials", - "/de/enterprise/2.17/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.17/user/articles/authenticating-with-an-account-recovery-token", - "/de/enterprise/2.17/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.13/user/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.13/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.13/user/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.13/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.13/user/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.13/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.13/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.13/github/authenticating-to-github/recovering-your-ssh-key-passphrase" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.14/user/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.14/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.14/user/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.14/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.14/user/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.14/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.14/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.14/github/authenticating-to-github/recovering-your-ssh-key-passphrase" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.15/user/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.15/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.15/user/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.15/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.15/user/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.15/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.15/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.15/github/authenticating-to-github/recovering-your-ssh-key-passphrase" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/user/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.16/user/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.16/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.16/user/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.16/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/github/authenticating-to-github/recovering-your-ssh-key-passphrase" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/user/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.17/user/articles/how-do-i-recover-my-passphrase", - "/de/enterprise/2.17/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.17/user/articles/how-do-i-recover-my-ssh-key-passphrase", - "/de/enterprise/2.17/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/github/authenticating-to-github/recovering-your-ssh-key-passphrase" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.13/user/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.13/remove-sensitive-data", - "/de/enterprise/2.13/user/remove-sensitive-data", - "/de/enterprise/2.13/removing-sensitive-data", - "/de/enterprise/2.13/user/removing-sensitive-data", - "/de/enterprise/2.13/articles/remove-sensitive-data", - "/de/enterprise/2.13/user/articles/remove-sensitive-data", - "/de/enterprise/2.13/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.13/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.13/github/authenticating-to-github/removing-sensitive-data-from-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.14/user/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.14/remove-sensitive-data", - "/de/enterprise/2.14/user/remove-sensitive-data", - "/de/enterprise/2.14/removing-sensitive-data", - "/de/enterprise/2.14/user/removing-sensitive-data", - "/de/enterprise/2.14/articles/remove-sensitive-data", - "/de/enterprise/2.14/user/articles/remove-sensitive-data", - "/de/enterprise/2.14/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.14/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.14/github/authenticating-to-github/removing-sensitive-data-from-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.15/user/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.15/remove-sensitive-data", - "/de/enterprise/2.15/user/remove-sensitive-data", - "/de/enterprise/2.15/removing-sensitive-data", - "/de/enterprise/2.15/user/removing-sensitive-data", - "/de/enterprise/2.15/articles/remove-sensitive-data", - "/de/enterprise/2.15/user/articles/remove-sensitive-data", - "/de/enterprise/2.15/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.15/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.15/github/authenticating-to-github/removing-sensitive-data-from-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/user/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/remove-sensitive-data", - "/de/enterprise/2.16/user/remove-sensitive-data", - "/de/enterprise/2.16/removing-sensitive-data", - "/de/enterprise/2.16/user/removing-sensitive-data", - "/de/enterprise/2.16/articles/remove-sensitive-data", - "/de/enterprise/2.16/user/articles/remove-sensitive-data", - "/de/enterprise/2.16/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/github/authenticating-to-github/removing-sensitive-data-from-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/user/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/remove-sensitive-data", - "/de/enterprise/2.17/user/remove-sensitive-data", - "/de/enterprise/2.17/removing-sensitive-data", - "/de/enterprise/2.17/user/removing-sensitive-data", - "/de/enterprise/2.17/articles/remove-sensitive-data", - "/de/enterprise/2.17/user/articles/remove-sensitive-data", - "/de/enterprise/2.17/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/github/authenticating-to-github/removing-sensitive-data-from-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.13/user/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.13/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.13/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.13/github/authenticating-to-github/reviewing-your-authorized-applications-oauth" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.14/user/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.14/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.14/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.14/github/authenticating-to-github/reviewing-your-authorized-applications-oauth" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.15/user/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.15/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.15/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.15/github/authenticating-to-github/reviewing-your-authorized-applications-oauth" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-authorized-applications-oauth" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-authorized-applications-oauth" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.13/user/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.13/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.13/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.13/github/authenticating-to-github/reviewing-your-authorized-integrations" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.14/user/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.14/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.14/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.14/github/authenticating-to-github/reviewing-your-authorized-integrations" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.15/user/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.15/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.15/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.15/github/authenticating-to-github/reviewing-your-authorized-integrations" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-authorized-integrations" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-authorized-integrations" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.13/user/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.13/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.13/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.13/github/authenticating-to-github/reviewing-your-deploy-keys" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.14/user/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.14/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.14/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.14/github/authenticating-to-github/reviewing-your-deploy-keys" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.15/user/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.15/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.15/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.15/github/authenticating-to-github/reviewing-your-deploy-keys" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.16/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.16/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-deploy-keys" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.17/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.17/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-deploy-keys" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.13/user/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.13/articles/reviewing-your-security-log", - "/de/enterprise/2.13/user/articles/reviewing-your-security-log", - "/de/enterprise/2.13/github/authenticating-to-github/reviewing-your-security-log" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.14/user/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.14/articles/reviewing-your-security-log", - "/de/enterprise/2.14/user/articles/reviewing-your-security-log", - "/de/enterprise/2.14/github/authenticating-to-github/reviewing-your-security-log" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.15/user/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.15/articles/reviewing-your-security-log", - "/de/enterprise/2.15/user/articles/reviewing-your-security-log", - "/de/enterprise/2.15/github/authenticating-to-github/reviewing-your-security-log" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.16/articles/reviewing-your-security-log", - "/de/enterprise/2.16/user/articles/reviewing-your-security-log", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-security-log" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.17/articles/reviewing-your-security-log", - "/de/enterprise/2.17/user/articles/reviewing-your-security-log", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-security-log" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.13/user/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.13/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.13/user/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.13/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.13/user/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.13/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.13/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.13/github/authenticating-to-github/reviewing-your-ssh-keys" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.14/user/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.14/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.14/user/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.14/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.14/user/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.14/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.14/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.14/github/authenticating-to-github/reviewing-your-ssh-keys" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.15/user/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.15/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.15/user/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.15/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.15/user/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.15/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.15/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.15/github/authenticating-to-github/reviewing-your-ssh-keys" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.16/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.16/user/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.16/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.16/user/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.16/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.16/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-ssh-keys" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.17/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.17/user/articles/keeping-your-application-access-tokens-safe", - "/de/enterprise/2.17/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.17/user/articles/keeping-your-ssh-keys-and-application-access-tokens-safe", - "/de/enterprise/2.17/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.17/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-ssh-keys" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.13/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.13/categories/84/articles", - "/de/enterprise/2.13/user/categories/84/articles", - "/de/enterprise/2.13/categories/two-factor-authentication-2fa", - "/de/enterprise/2.13/user/categories/two-factor-authentication-2fa", - "/de/enterprise/2.13/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.13/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.13/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.14/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.14/categories/84/articles", - "/de/enterprise/2.14/user/categories/84/articles", - "/de/enterprise/2.14/categories/two-factor-authentication-2fa", - "/de/enterprise/2.14/user/categories/two-factor-authentication-2fa", - "/de/enterprise/2.14/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.14/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.14/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.15/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.15/categories/84/articles", - "/de/enterprise/2.15/user/categories/84/articles", - "/de/enterprise/2.15/categories/two-factor-authentication-2fa", - "/de/enterprise/2.15/user/categories/two-factor-authentication-2fa", - "/de/enterprise/2.15/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.15/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.15/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/categories/84/articles", - "/de/enterprise/2.16/user/categories/84/articles", - "/de/enterprise/2.16/categories/two-factor-authentication-2fa", - "/de/enterprise/2.16/user/categories/two-factor-authentication-2fa", - "/de/enterprise/2.16/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/categories/84/articles", - "/de/enterprise/2.17/user/categories/84/articles", - "/de/enterprise/2.17/categories/two-factor-authentication-2fa", - "/de/enterprise/2.17/user/categories/two-factor-authentication-2fa", - "/de/enterprise/2.17/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.13/user/authenticating-to-github/signing-commits", - "/de/enterprise/2.13/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.13/user/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.13/articles/signing-commits-using-gpg", - "/de/enterprise/2.13/user/articles/signing-commits-using-gpg", - "/de/enterprise/2.13/articles/signing-commits", - "/de/enterprise/2.13/user/articles/signing-commits", - "/de/enterprise/2.13/github/authenticating-to-github/signing-commits" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.14/user/authenticating-to-github/signing-commits", - "/de/enterprise/2.14/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.14/user/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.14/articles/signing-commits-using-gpg", - "/de/enterprise/2.14/user/articles/signing-commits-using-gpg", - "/de/enterprise/2.14/articles/signing-commits", - "/de/enterprise/2.14/user/articles/signing-commits", - "/de/enterprise/2.14/github/authenticating-to-github/signing-commits" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.15/user/authenticating-to-github/signing-commits", - "/de/enterprise/2.15/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.15/user/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.15/articles/signing-commits-using-gpg", - "/de/enterprise/2.15/user/articles/signing-commits-using-gpg", - "/de/enterprise/2.15/articles/signing-commits", - "/de/enterprise/2.15/user/articles/signing-commits", - "/de/enterprise/2.15/github/authenticating-to-github/signing-commits" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.16/user/authenticating-to-github/signing-commits", - "/de/enterprise/2.16/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.16/user/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.16/articles/signing-commits-using-gpg", - "/de/enterprise/2.16/user/articles/signing-commits-using-gpg", - "/de/enterprise/2.16/articles/signing-commits", - "/de/enterprise/2.16/user/articles/signing-commits", - "/de/enterprise/2.16/github/authenticating-to-github/signing-commits" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.17/user/authenticating-to-github/signing-commits", - "/de/enterprise/2.17/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.17/user/articles/signing-commits-and-tags-using-gpg", - "/de/enterprise/2.17/articles/signing-commits-using-gpg", - "/de/enterprise/2.17/user/articles/signing-commits-using-gpg", - "/de/enterprise/2.17/articles/signing-commits", - "/de/enterprise/2.17/user/articles/signing-commits", - "/de/enterprise/2.17/github/authenticating-to-github/signing-commits" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.13/user/authenticating-to-github/signing-tags", - "/de/enterprise/2.13/articles/signing-tags-using-gpg", - "/de/enterprise/2.13/user/articles/signing-tags-using-gpg", - "/de/enterprise/2.13/articles/signing-tags", - "/de/enterprise/2.13/user/articles/signing-tags", - "/de/enterprise/2.13/github/authenticating-to-github/signing-tags" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.14/user/authenticating-to-github/signing-tags", - "/de/enterprise/2.14/articles/signing-tags-using-gpg", - "/de/enterprise/2.14/user/articles/signing-tags-using-gpg", - "/de/enterprise/2.14/articles/signing-tags", - "/de/enterprise/2.14/user/articles/signing-tags", - "/de/enterprise/2.14/github/authenticating-to-github/signing-tags" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.15/user/authenticating-to-github/signing-tags", - "/de/enterprise/2.15/articles/signing-tags-using-gpg", - "/de/enterprise/2.15/user/articles/signing-tags-using-gpg", - "/de/enterprise/2.15/articles/signing-tags", - "/de/enterprise/2.15/user/articles/signing-tags", - "/de/enterprise/2.15/github/authenticating-to-github/signing-tags" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.16/user/authenticating-to-github/signing-tags", - "/de/enterprise/2.16/articles/signing-tags-using-gpg", - "/de/enterprise/2.16/user/articles/signing-tags-using-gpg", - "/de/enterprise/2.16/articles/signing-tags", - "/de/enterprise/2.16/user/articles/signing-tags", - "/de/enterprise/2.16/github/authenticating-to-github/signing-tags" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.17/user/authenticating-to-github/signing-tags", - "/de/enterprise/2.17/articles/signing-tags-using-gpg", - "/de/enterprise/2.17/user/articles/signing-tags-using-gpg", - "/de/enterprise/2.17/articles/signing-tags", - "/de/enterprise/2.17/user/articles/signing-tags", - "/de/enterprise/2.17/github/authenticating-to-github/signing-tags" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.13/user/authenticating-to-github/sudo-mode", - "/de/enterprise/2.13/articles/sudo-mode", - "/de/enterprise/2.13/user/articles/sudo-mode", - "/de/enterprise/2.13/github/authenticating-to-github/sudo-mode" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.14/user/authenticating-to-github/sudo-mode", - "/de/enterprise/2.14/articles/sudo-mode", - "/de/enterprise/2.14/user/articles/sudo-mode", - "/de/enterprise/2.14/github/authenticating-to-github/sudo-mode" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.15/user/authenticating-to-github/sudo-mode", - "/de/enterprise/2.15/articles/sudo-mode", - "/de/enterprise/2.15/user/articles/sudo-mode", - "/de/enterprise/2.15/github/authenticating-to-github/sudo-mode" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.16/user/authenticating-to-github/sudo-mode", - "/de/enterprise/2.16/articles/sudo-mode", - "/de/enterprise/2.16/user/articles/sudo-mode", - "/de/enterprise/2.16/github/authenticating-to-github/sudo-mode" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.17/user/authenticating-to-github/sudo-mode", - "/de/enterprise/2.17/articles/sudo-mode", - "/de/enterprise/2.17/user/articles/sudo-mode", - "/de/enterprise/2.17/github/authenticating-to-github/sudo-mode" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.13/user/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.13/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.13/user/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.13/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.13/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.13/github/authenticating-to-github/telling-git-about-your-signing-key" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.14/user/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.14/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.14/user/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.14/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.14/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.14/github/authenticating-to-github/telling-git-about-your-signing-key" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.15/user/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.15/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.15/user/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.15/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.15/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.15/github/authenticating-to-github/telling-git-about-your-signing-key" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.16/user/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.16/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.16/user/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.16/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.16/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.16/github/authenticating-to-github/telling-git-about-your-signing-key" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.17/user/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.17/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.17/user/articles/telling-git-about-your-gpg-key", - "/de/enterprise/2.17/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.17/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.17/github/authenticating-to-github/telling-git-about-your-signing-key" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.13/user/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.13/articles/testing-your-ssh-connection", - "/de/enterprise/2.13/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.13/github/authenticating-to-github/testing-your-ssh-connection" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.14/user/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.14/articles/testing-your-ssh-connection", - "/de/enterprise/2.14/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.14/github/authenticating-to-github/testing-your-ssh-connection" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.15/user/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.15/articles/testing-your-ssh-connection", - "/de/enterprise/2.15/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.15/github/authenticating-to-github/testing-your-ssh-connection" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.16/user/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.16/articles/testing-your-ssh-connection", - "/de/enterprise/2.16/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.16/github/authenticating-to-github/testing-your-ssh-connection" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.17/user/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.17/articles/testing-your-ssh-connection", - "/de/enterprise/2.17/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.17/github/authenticating-to-github/testing-your-ssh-connection" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.13/user/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.13/articles/troubleshooting-gpg", - "/de/enterprise/2.13/user/articles/troubleshooting-gpg", - "/de/enterprise/2.13/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.13/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.13/github/authenticating-to-github/troubleshooting-commit-signature-verification" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.14/user/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.14/articles/troubleshooting-gpg", - "/de/enterprise/2.14/user/articles/troubleshooting-gpg", - "/de/enterprise/2.14/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.14/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.14/github/authenticating-to-github/troubleshooting-commit-signature-verification" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.15/user/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.15/articles/troubleshooting-gpg", - "/de/enterprise/2.15/user/articles/troubleshooting-gpg", - "/de/enterprise/2.15/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.15/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.15/github/authenticating-to-github/troubleshooting-commit-signature-verification" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/articles/troubleshooting-gpg", - "/de/enterprise/2.16/user/articles/troubleshooting-gpg", - "/de/enterprise/2.16/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/troubleshooting-commit-signature-verification" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/articles/troubleshooting-gpg", - "/de/enterprise/2.17/user/articles/troubleshooting-gpg", - "/de/enterprise/2.17/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/troubleshooting-commit-signature-verification" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.13/user/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.13/articles/troubleshooting-ssh", - "/de/enterprise/2.13/user/articles/troubleshooting-ssh", - "/de/enterprise/2.13/github/authenticating-to-github/troubleshooting-ssh" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.14/user/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.14/articles/troubleshooting-ssh", - "/de/enterprise/2.14/user/articles/troubleshooting-ssh", - "/de/enterprise/2.14/github/authenticating-to-github/troubleshooting-ssh" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.15/user/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.15/articles/troubleshooting-ssh", - "/de/enterprise/2.15/user/articles/troubleshooting-ssh", - "/de/enterprise/2.15/github/authenticating-to-github/troubleshooting-ssh" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.16/articles/troubleshooting-ssh", - "/de/enterprise/2.16/user/articles/troubleshooting-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/troubleshooting-ssh" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.17/articles/troubleshooting-ssh", - "/de/enterprise/2.17/user/articles/troubleshooting-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/troubleshooting-ssh" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.13/user/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.13/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.13/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.13/github/authenticating-to-github/updating-an-expired-gpg-key" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.14/user/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.14/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.14/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.14/github/authenticating-to-github/updating-an-expired-gpg-key" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.15/user/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.15/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.15/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.15/github/authenticating-to-github/updating-an-expired-gpg-key" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.16/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.16/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/updating-an-expired-gpg-key" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.17/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.17/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/updating-an-expired-gpg-key" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.13/user/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.13/articles/rolling-your-credentials", - "/de/enterprise/2.13/user/articles/rolling-your-credentials", - "/de/enterprise/2.13/articles/how-can-i-reset-my-password", - "/de/enterprise/2.13/user/articles/how-can-i-reset-my-password", - "/de/enterprise/2.13/articles/updating-your-github-access-credentials", - "/de/enterprise/2.13/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.13/github/authenticating-to-github/updating-your-github-access-credentials" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.14/user/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.14/articles/rolling-your-credentials", - "/de/enterprise/2.14/user/articles/rolling-your-credentials", - "/de/enterprise/2.14/articles/how-can-i-reset-my-password", - "/de/enterprise/2.14/user/articles/how-can-i-reset-my-password", - "/de/enterprise/2.14/articles/updating-your-github-access-credentials", - "/de/enterprise/2.14/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.14/github/authenticating-to-github/updating-your-github-access-credentials" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.15/user/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.15/articles/rolling-your-credentials", - "/de/enterprise/2.15/user/articles/rolling-your-credentials", - "/de/enterprise/2.15/articles/how-can-i-reset-my-password", - "/de/enterprise/2.15/user/articles/how-can-i-reset-my-password", - "/de/enterprise/2.15/articles/updating-your-github-access-credentials", - "/de/enterprise/2.15/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.15/github/authenticating-to-github/updating-your-github-access-credentials" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.16/user/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.16/articles/rolling-your-credentials", - "/de/enterprise/2.16/user/articles/rolling-your-credentials", - "/de/enterprise/2.16/articles/how-can-i-reset-my-password", - "/de/enterprise/2.16/user/articles/how-can-i-reset-my-password", - "/de/enterprise/2.16/articles/updating-your-github-access-credentials", - "/de/enterprise/2.16/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.16/github/authenticating-to-github/updating-your-github-access-credentials" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.17/user/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.17/articles/rolling-your-credentials", - "/de/enterprise/2.17/user/articles/rolling-your-credentials", - "/de/enterprise/2.17/articles/how-can-i-reset-my-password", - "/de/enterprise/2.17/user/articles/how-can-i-reset-my-password", - "/de/enterprise/2.17/articles/updating-your-github-access-credentials", - "/de/enterprise/2.17/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.17/github/authenticating-to-github/updating-your-github-access-credentials" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.13/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.13/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.13/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.13/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.14/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.14/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.14/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.14/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.15/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.15/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.15/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.15/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key" - ], - [ - "/de/enterprise/2.13/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.13/user/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.13/ssh-key-passphrases", - "/de/enterprise/2.13/user/ssh-key-passphrases", - "/de/enterprise/2.13/working-with-key-passphrases", - "/de/enterprise/2.13/user/working-with-key-passphrases", - "/de/enterprise/2.13/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.13/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.13/github/authenticating-to-github/working-with-ssh-key-passphrases" - ], - [ - "/de/enterprise/2.14/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.14/user/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.14/ssh-key-passphrases", - "/de/enterprise/2.14/user/ssh-key-passphrases", - "/de/enterprise/2.14/working-with-key-passphrases", - "/de/enterprise/2.14/user/working-with-key-passphrases", - "/de/enterprise/2.14/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.14/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.14/github/authenticating-to-github/working-with-ssh-key-passphrases" - ], - [ - "/de/enterprise/2.15/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.15/user/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.15/ssh-key-passphrases", - "/de/enterprise/2.15/user/ssh-key-passphrases", - "/de/enterprise/2.15/working-with-key-passphrases", - "/de/enterprise/2.15/user/working-with-key-passphrases", - "/de/enterprise/2.15/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.15/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.15/github/authenticating-to-github/working-with-ssh-key-passphrases" - ], - [ - "/de/enterprise/2.16/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/user/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/ssh-key-passphrases", - "/de/enterprise/2.16/user/ssh-key-passphrases", - "/de/enterprise/2.16/working-with-key-passphrases", - "/de/enterprise/2.16/user/working-with-key-passphrases", - "/de/enterprise/2.16/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/github/authenticating-to-github/working-with-ssh-key-passphrases" - ], - [ - "/de/enterprise/2.17/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/user/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/ssh-key-passphrases", - "/de/enterprise/2.17/user/ssh-key-passphrases", - "/de/enterprise/2.17/working-with-key-passphrases", - "/de/enterprise/2.17/user/working-with-key-passphrases", - "/de/enterprise/2.17/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/github/authenticating-to-github/working-with-ssh-key-passphrases" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.13/user/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.13/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.13/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.13/github/building-a-strong-community/about-issue-and-pull-request-templates" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.14/user/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.14/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.14/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.14/github/building-a-strong-community/about-issue-and-pull-request-templates" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.15/user/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.15/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.15/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.15/github/building-a-strong-community/about-issue-and-pull-request-templates" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/github/building-a-strong-community/about-issue-and-pull-request-templates" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/github/building-a-strong-community/about-issue-and-pull-request-templates" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.13/user/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.13/articles/about-team-discussions", - "/de/enterprise/2.13/user/articles/about-team-discussions", - "/de/enterprise/2.13/github/building-a-strong-community/about-team-discussions" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.14/user/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.14/articles/about-team-discussions", - "/de/enterprise/2.14/user/articles/about-team-discussions", - "/de/enterprise/2.14/github/building-a-strong-community/about-team-discussions" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.15/user/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.15/articles/about-team-discussions", - "/de/enterprise/2.15/user/articles/about-team-discussions", - "/de/enterprise/2.15/github/building-a-strong-community/about-team-discussions" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.16/user/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.16/articles/about-team-discussions", - "/de/enterprise/2.16/user/articles/about-team-discussions", - "/de/enterprise/2.16/github/building-a-strong-community/about-team-discussions" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.17/user/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.17/articles/about-team-discussions", - "/de/enterprise/2.17/user/articles/about-team-discussions", - "/de/enterprise/2.17/github/building-a-strong-community/about-team-discussions" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.13/user/building-a-strong-community/about-wikis", - "/de/enterprise/2.13/articles/about-github-wikis", - "/de/enterprise/2.13/user/articles/about-github-wikis", - "/de/enterprise/2.13/articles/about-wikis", - "/de/enterprise/2.13/user/articles/about-wikis", - "/de/enterprise/2.13/github/building-a-strong-community/about-wikis" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.14/user/building-a-strong-community/about-wikis", - "/de/enterprise/2.14/articles/about-github-wikis", - "/de/enterprise/2.14/user/articles/about-github-wikis", - "/de/enterprise/2.14/articles/about-wikis", - "/de/enterprise/2.14/user/articles/about-wikis", - "/de/enterprise/2.14/github/building-a-strong-community/about-wikis" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.15/user/building-a-strong-community/about-wikis", - "/de/enterprise/2.15/articles/about-github-wikis", - "/de/enterprise/2.15/user/articles/about-github-wikis", - "/de/enterprise/2.15/articles/about-wikis", - "/de/enterprise/2.15/user/articles/about-wikis", - "/de/enterprise/2.15/github/building-a-strong-community/about-wikis" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/about-wikis", - "/de/enterprise/2.16/articles/about-github-wikis", - "/de/enterprise/2.16/user/articles/about-github-wikis", - "/de/enterprise/2.16/articles/about-wikis", - "/de/enterprise/2.16/user/articles/about-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/about-wikis" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/about-wikis", - "/de/enterprise/2.17/articles/about-github-wikis", - "/de/enterprise/2.17/user/articles/about-github-wikis", - "/de/enterprise/2.17/articles/about-wikis", - "/de/enterprise/2.17/user/articles/about-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/about-wikis" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.13/user/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.13/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.13/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.13/github/building-a-strong-community/adding-a-license-to-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.14/user/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.14/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.14/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.14/github/building-a-strong-community/adding-a-license-to-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.15/user/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.15/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.15/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.15/github/building-a-strong-community/adding-a-license-to-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.16/user/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.16/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.16/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.16/github/building-a-strong-community/adding-a-license-to-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.17/user/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.17/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.17/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.17/github/building-a-strong-community/adding-a-license-to-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.13/user/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.13/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.13/user/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.13/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.13/user/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.13/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.13/user/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.13/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.13/user/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.13/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.13/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.13/github/building-a-strong-community/adding-or-editing-wiki-pages" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.14/user/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.14/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.14/user/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.14/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.14/user/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.14/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.14/user/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.14/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.14/user/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.14/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.14/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.14/github/building-a-strong-community/adding-or-editing-wiki-pages" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.15/user/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.15/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.15/user/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.15/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.15/user/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.15/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.15/user/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.15/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.15/user/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.15/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.15/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.15/github/building-a-strong-community/adding-or-editing-wiki-pages" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/user/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.16/user/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.16/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.16/user/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.16/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.16/user/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.16/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.16/user/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.16/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/github/building-a-strong-community/adding-or-editing-wiki-pages" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/user/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.17/user/articles/adding-wiki-pages-via-the-online-interface", - "/de/enterprise/2.17/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.17/user/articles/editing-wiki-pages-via-the-online-interface", - "/de/enterprise/2.17/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.17/user/articles/adding-and-editing-wik-pages-locally", - "/de/enterprise/2.17/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.17/user/articles/adding-and-editing-wiki-pages-locally", - "/de/enterprise/2.17/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/github/building-a-strong-community/adding-or-editing-wiki-pages" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.13/user/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.13/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.13/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.13/github/building-a-strong-community/adding-support-resources-to-your-project" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.14/user/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.14/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.14/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.14/github/building-a-strong-community/adding-support-resources-to-your-project" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.15/user/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.15/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.15/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.15/github/building-a-strong-community/adding-support-resources-to-your-project" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.16/user/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.16/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.16/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.16/github/building-a-strong-community/adding-support-resources-to-your-project" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.17/user/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.17/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.17/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.17/github/building-a-strong-community/adding-support-resources-to-your-project" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.13/user/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.13/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.13/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.13/github/building-a-strong-community/changing-access-permissions-for-wikis" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.14/user/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.14/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.14/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.14/github/building-a-strong-community/changing-access-permissions-for-wikis" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.15/user/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.15/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.15/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.15/github/building-a-strong-community/changing-access-permissions-for-wikis" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/changing-access-permissions-for-wikis" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/changing-access-permissions-for-wikis" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.13/user/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.13/articles/collaborating-with-your-team", - "/de/enterprise/2.13/user/articles/collaborating-with-your-team", - "/de/enterprise/2.13/github/building-a-strong-community/collaborating-with-your-team" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.14/user/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.14/articles/collaborating-with-your-team", - "/de/enterprise/2.14/user/articles/collaborating-with-your-team", - "/de/enterprise/2.14/github/building-a-strong-community/collaborating-with-your-team" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.15/user/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.15/articles/collaborating-with-your-team", - "/de/enterprise/2.15/user/articles/collaborating-with-your-team", - "/de/enterprise/2.15/github/building-a-strong-community/collaborating-with-your-team" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.16/user/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.16/articles/collaborating-with-your-team", - "/de/enterprise/2.16/user/articles/collaborating-with-your-team", - "/de/enterprise/2.16/github/building-a-strong-community/collaborating-with-your-team" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.17/user/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.17/articles/collaborating-with-your-team", - "/de/enterprise/2.17/user/articles/collaborating-with-your-team", - "/de/enterprise/2.17/github/building-a-strong-community/collaborating-with-your-team" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.13/user/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.13/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.13/user/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.13/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.13/user/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.13/github/building-a-strong-community/configuring-issue-templates-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.14/user/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.14/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.14/user/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.14/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.14/user/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.14/github/building-a-strong-community/configuring-issue-templates-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.15/user/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.15/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.15/user/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.15/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.15/user/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.15/github/building-a-strong-community/configuring-issue-templates-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.16/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/user/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/configuring-issue-templates-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/creating-issue-templates-for-your-repository", - "/de/enterprise/2.17/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/user/articles/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/configuring-issue-templates-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.13/user/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.13/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.13/user/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.13/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.13/user/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.13/github/building-a-strong-community/creating-a-default-community-health-file" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.14/user/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.14/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.14/user/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.14/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.14/user/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.14/github/building-a-strong-community/creating-a-default-community-health-file" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.15/user/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.15/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.15/user/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.15/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.15/user/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.15/github/building-a-strong-community/creating-a-default-community-health-file" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.16/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.16/user/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-default-community-health-file" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.17/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.17/user/articles/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-default-community-health-file-for-your-organization", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-default-community-health-file" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.13/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.13/articles/creating-a-footer", - "/de/enterprise/2.13/user/articles/creating-a-footer", - "/de/enterprise/2.13/articles/creating-a-sidebar", - "/de/enterprise/2.13/user/articles/creating-a-sidebar", - "/de/enterprise/2.13/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.13/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.13/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.14/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.14/articles/creating-a-footer", - "/de/enterprise/2.14/user/articles/creating-a-footer", - "/de/enterprise/2.14/articles/creating-a-sidebar", - "/de/enterprise/2.14/user/articles/creating-a-sidebar", - "/de/enterprise/2.14/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.14/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.14/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.15/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.15/articles/creating-a-footer", - "/de/enterprise/2.15/user/articles/creating-a-footer", - "/de/enterprise/2.15/articles/creating-a-sidebar", - "/de/enterprise/2.15/user/articles/creating-a-sidebar", - "/de/enterprise/2.15/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.15/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.15/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/articles/creating-a-footer", - "/de/enterprise/2.16/user/articles/creating-a-footer", - "/de/enterprise/2.16/articles/creating-a-sidebar", - "/de/enterprise/2.16/user/articles/creating-a-sidebar", - "/de/enterprise/2.16/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/articles/creating-a-footer", - "/de/enterprise/2.17/user/articles/creating-a-footer", - "/de/enterprise/2.17/articles/creating-a-sidebar", - "/de/enterprise/2.17/user/articles/creating-a-sidebar", - "/de/enterprise/2.17/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.13/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.13/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.13/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.13/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.14/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.14/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.14/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.14/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.15/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.15/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.15/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.15/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.13/user/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.13/articles/creating-a-team-discussion", - "/de/enterprise/2.13/user/articles/creating-a-team-discussion", - "/de/enterprise/2.13/github/building-a-strong-community/creating-a-team-discussion" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.14/user/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.14/articles/creating-a-team-discussion", - "/de/enterprise/2.14/user/articles/creating-a-team-discussion", - "/de/enterprise/2.14/github/building-a-strong-community/creating-a-team-discussion" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.15/user/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.15/articles/creating-a-team-discussion", - "/de/enterprise/2.15/user/articles/creating-a-team-discussion", - "/de/enterprise/2.15/github/building-a-strong-community/creating-a-team-discussion" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.16/articles/creating-a-team-discussion", - "/de/enterprise/2.16/user/articles/creating-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-team-discussion" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.17/articles/creating-a-team-discussion", - "/de/enterprise/2.17/user/articles/creating-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-team-discussion" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.13/user/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.13/articles/disabling-wikis", - "/de/enterprise/2.13/user/articles/disabling-wikis", - "/de/enterprise/2.13/github/building-a-strong-community/disabling-wikis" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.14/user/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.14/articles/disabling-wikis", - "/de/enterprise/2.14/user/articles/disabling-wikis", - "/de/enterprise/2.14/github/building-a-strong-community/disabling-wikis" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.15/user/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.15/articles/disabling-wikis", - "/de/enterprise/2.15/user/articles/disabling-wikis", - "/de/enterprise/2.15/github/building-a-strong-community/disabling-wikis" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.16/articles/disabling-wikis", - "/de/enterprise/2.16/user/articles/disabling-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/disabling-wikis" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.17/articles/disabling-wikis", - "/de/enterprise/2.17/user/articles/disabling-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/disabling-wikis" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.13/user/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.13/categories/49/articles", - "/de/enterprise/2.13/user/categories/49/articles", - "/de/enterprise/2.13/categories/wiki", - "/de/enterprise/2.13/user/categories/wiki", - "/de/enterprise/2.13/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.13/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.13/github/building-a-strong-community/documenting-your-project-with-wikis" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.14/user/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.14/categories/49/articles", - "/de/enterprise/2.14/user/categories/49/articles", - "/de/enterprise/2.14/categories/wiki", - "/de/enterprise/2.14/user/categories/wiki", - "/de/enterprise/2.14/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.14/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.14/github/building-a-strong-community/documenting-your-project-with-wikis" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.15/user/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.15/categories/49/articles", - "/de/enterprise/2.15/user/categories/49/articles", - "/de/enterprise/2.15/categories/wiki", - "/de/enterprise/2.15/user/categories/wiki", - "/de/enterprise/2.15/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.15/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.15/github/building-a-strong-community/documenting-your-project-with-wikis" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.16/categories/49/articles", - "/de/enterprise/2.16/user/categories/49/articles", - "/de/enterprise/2.16/categories/wiki", - "/de/enterprise/2.16/user/categories/wiki", - "/de/enterprise/2.16/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.16/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/documenting-your-project-with-wikis" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.17/categories/49/articles", - "/de/enterprise/2.17/user/categories/49/articles", - "/de/enterprise/2.17/categories/wiki", - "/de/enterprise/2.17/user/categories/wiki", - "/de/enterprise/2.17/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.17/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/documenting-your-project-with-wikis" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.13/user/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.13/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.13/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.13/github/building-a-strong-community/editing-or-deleting-a-team-discussion" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.14/user/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.14/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.14/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.14/github/building-a-strong-community/editing-or-deleting-a-team-discussion" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.15/user/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.15/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.15/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.15/github/building-a-strong-community/editing-or-deleting-a-team-discussion" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/editing-or-deleting-a-team-discussion" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/editing-or-deleting-a-team-discussion" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.13/user/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.13/articles/adding-links-to-wikis", - "/de/enterprise/2.13/user/articles/adding-links-to-wikis", - "/de/enterprise/2.13/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.13/user/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.13/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.13/user/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.13/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.13/user/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.13/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.13/user/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.13/articles/adding-images-to-wikis", - "/de/enterprise/2.13/user/articles/adding-images-to-wikis", - "/de/enterprise/2.13/articles/supported-mediawiki-formats", - "/de/enterprise/2.13/user/articles/supported-mediawiki-formats", - "/de/enterprise/2.13/articles/editing-wiki-content", - "/de/enterprise/2.13/user/articles/editing-wiki-content", - "/de/enterprise/2.13/github/building-a-strong-community/editing-wiki-content" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.14/user/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.14/articles/adding-links-to-wikis", - "/de/enterprise/2.14/user/articles/adding-links-to-wikis", - "/de/enterprise/2.14/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.14/user/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.14/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.14/user/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.14/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.14/user/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.14/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.14/user/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.14/articles/adding-images-to-wikis", - "/de/enterprise/2.14/user/articles/adding-images-to-wikis", - "/de/enterprise/2.14/articles/supported-mediawiki-formats", - "/de/enterprise/2.14/user/articles/supported-mediawiki-formats", - "/de/enterprise/2.14/articles/editing-wiki-content", - "/de/enterprise/2.14/user/articles/editing-wiki-content", - "/de/enterprise/2.14/github/building-a-strong-community/editing-wiki-content" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.15/user/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.15/articles/adding-links-to-wikis", - "/de/enterprise/2.15/user/articles/adding-links-to-wikis", - "/de/enterprise/2.15/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.15/user/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.15/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.15/user/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.15/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.15/user/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.15/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.15/user/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.15/articles/adding-images-to-wikis", - "/de/enterprise/2.15/user/articles/adding-images-to-wikis", - "/de/enterprise/2.15/articles/supported-mediawiki-formats", - "/de/enterprise/2.15/user/articles/supported-mediawiki-formats", - "/de/enterprise/2.15/articles/editing-wiki-content", - "/de/enterprise/2.15/user/articles/editing-wiki-content", - "/de/enterprise/2.15/github/building-a-strong-community/editing-wiki-content" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.16/user/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.16/articles/adding-links-to-wikis", - "/de/enterprise/2.16/user/articles/adding-links-to-wikis", - "/de/enterprise/2.16/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.16/user/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.16/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.16/user/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.16/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.16/user/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.16/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.16/user/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.16/articles/adding-images-to-wikis", - "/de/enterprise/2.16/user/articles/adding-images-to-wikis", - "/de/enterprise/2.16/articles/supported-mediawiki-formats", - "/de/enterprise/2.16/user/articles/supported-mediawiki-formats", - "/de/enterprise/2.16/articles/editing-wiki-content", - "/de/enterprise/2.16/user/articles/editing-wiki-content", - "/de/enterprise/2.16/github/building-a-strong-community/editing-wiki-content" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.17/user/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.17/articles/adding-links-to-wikis", - "/de/enterprise/2.17/user/articles/adding-links-to-wikis", - "/de/enterprise/2.17/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.17/user/articles/how-do-i-add-links-to-my-wiki", - "/de/enterprise/2.17/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.17/user/articles/how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.17/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.17/user/articles/needs-writing-review-how-do-i-add-or-upload-images-to-the-wiki", - "/de/enterprise/2.17/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.17/user/articles/how-do-i-add-images-to-my-wiki", - "/de/enterprise/2.17/articles/adding-images-to-wikis", - "/de/enterprise/2.17/user/articles/adding-images-to-wikis", - "/de/enterprise/2.17/articles/supported-mediawiki-formats", - "/de/enterprise/2.17/user/articles/supported-mediawiki-formats", - "/de/enterprise/2.17/articles/editing-wiki-content", - "/de/enterprise/2.17/user/articles/editing-wiki-content", - "/de/enterprise/2.17/github/building-a-strong-community/editing-wiki-content" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community", - "/de/enterprise/2.13/user/building-a-strong-community", - "/de/enterprise/2.13/categories/building-a-strong-community", - "/de/enterprise/2.13/user/categories/building-a-strong-community", - "/de/enterprise/2.13/github/building-a-strong-community" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community", - "/de/enterprise/2.14/user/building-a-strong-community", - "/de/enterprise/2.14/categories/building-a-strong-community", - "/de/enterprise/2.14/user/categories/building-a-strong-community", - "/de/enterprise/2.14/github/building-a-strong-community" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community", - "/de/enterprise/2.15/user/building-a-strong-community", - "/de/enterprise/2.15/categories/building-a-strong-community", - "/de/enterprise/2.15/user/categories/building-a-strong-community", - "/de/enterprise/2.15/github/building-a-strong-community" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community", - "/de/enterprise/2.16/user/building-a-strong-community", - "/de/enterprise/2.16/categories/building-a-strong-community", - "/de/enterprise/2.16/user/categories/building-a-strong-community", - "/de/enterprise/2.16/github/building-a-strong-community" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community", - "/de/enterprise/2.17/user/building-a-strong-community", - "/de/enterprise/2.17/categories/building-a-strong-community", - "/de/enterprise/2.17/user/categories/building-a-strong-community", - "/de/enterprise/2.17/github/building-a-strong-community" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.13/user/building-a-strong-community/locking-conversations", - "/de/enterprise/2.13/articles/locking-conversations", - "/de/enterprise/2.13/user/articles/locking-conversations", - "/de/enterprise/2.13/github/building-a-strong-community/locking-conversations" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.14/user/building-a-strong-community/locking-conversations", - "/de/enterprise/2.14/articles/locking-conversations", - "/de/enterprise/2.14/user/articles/locking-conversations", - "/de/enterprise/2.14/github/building-a-strong-community/locking-conversations" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.15/user/building-a-strong-community/locking-conversations", - "/de/enterprise/2.15/articles/locking-conversations", - "/de/enterprise/2.15/user/articles/locking-conversations", - "/de/enterprise/2.15/github/building-a-strong-community/locking-conversations" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.16/user/building-a-strong-community/locking-conversations", - "/de/enterprise/2.16/articles/locking-conversations", - "/de/enterprise/2.16/user/articles/locking-conversations", - "/de/enterprise/2.16/github/building-a-strong-community/locking-conversations" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.17/user/building-a-strong-community/locking-conversations", - "/de/enterprise/2.17/articles/locking-conversations", - "/de/enterprise/2.17/user/articles/locking-conversations", - "/de/enterprise/2.17/github/building-a-strong-community/locking-conversations" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.13/user/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.13/articles/editing-a-comment", - "/de/enterprise/2.13/user/articles/editing-a-comment", - "/de/enterprise/2.13/articles/deleting-a-comment", - "/de/enterprise/2.13/user/articles/deleting-a-comment", - "/de/enterprise/2.13/articles/managing-disruptive-comments", - "/de/enterprise/2.13/user/articles/managing-disruptive-comments", - "/de/enterprise/2.13/github/building-a-strong-community/managing-disruptive-comments" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.14/user/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.14/articles/editing-a-comment", - "/de/enterprise/2.14/user/articles/editing-a-comment", - "/de/enterprise/2.14/articles/deleting-a-comment", - "/de/enterprise/2.14/user/articles/deleting-a-comment", - "/de/enterprise/2.14/articles/managing-disruptive-comments", - "/de/enterprise/2.14/user/articles/managing-disruptive-comments", - "/de/enterprise/2.14/github/building-a-strong-community/managing-disruptive-comments" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.15/user/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.15/articles/editing-a-comment", - "/de/enterprise/2.15/user/articles/editing-a-comment", - "/de/enterprise/2.15/articles/deleting-a-comment", - "/de/enterprise/2.15/user/articles/deleting-a-comment", - "/de/enterprise/2.15/articles/managing-disruptive-comments", - "/de/enterprise/2.15/user/articles/managing-disruptive-comments", - "/de/enterprise/2.15/github/building-a-strong-community/managing-disruptive-comments" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.16/user/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.16/articles/editing-a-comment", - "/de/enterprise/2.16/user/articles/editing-a-comment", - "/de/enterprise/2.16/articles/deleting-a-comment", - "/de/enterprise/2.16/user/articles/deleting-a-comment", - "/de/enterprise/2.16/articles/managing-disruptive-comments", - "/de/enterprise/2.16/user/articles/managing-disruptive-comments", - "/de/enterprise/2.16/github/building-a-strong-community/managing-disruptive-comments" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.17/user/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.17/articles/editing-a-comment", - "/de/enterprise/2.17/user/articles/editing-a-comment", - "/de/enterprise/2.17/articles/deleting-a-comment", - "/de/enterprise/2.17/user/articles/deleting-a-comment", - "/de/enterprise/2.17/articles/managing-disruptive-comments", - "/de/enterprise/2.17/user/articles/managing-disruptive-comments", - "/de/enterprise/2.17/github/building-a-strong-community/managing-disruptive-comments" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.13/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.13/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.13/user/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.13/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.13/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.13/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.14/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.14/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.14/user/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.14/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.14/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.14/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.15/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.15/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.15/user/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.15/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.15/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.15/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.16/user/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.16/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.17/user/articles/creating-an-issue-template-for-your-repository", - "/de/enterprise/2.17/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.13/user/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.13/articles/moderating-comments-and-conversations", - "/de/enterprise/2.13/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.13/github/building-a-strong-community/moderating-comments-and-conversations" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.14/user/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.14/articles/moderating-comments-and-conversations", - "/de/enterprise/2.14/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.14/github/building-a-strong-community/moderating-comments-and-conversations" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.15/user/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.15/articles/moderating-comments-and-conversations", - "/de/enterprise/2.15/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.15/github/building-a-strong-community/moderating-comments-and-conversations" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.16/user/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.16/articles/moderating-comments-and-conversations", - "/de/enterprise/2.16/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.16/github/building-a-strong-community/moderating-comments-and-conversations" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.17/user/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.17/articles/moderating-comments-and-conversations", - "/de/enterprise/2.17/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.17/github/building-a-strong-community/moderating-comments-and-conversations" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.13/user/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.13/articles/pinning-a-team-discussion", - "/de/enterprise/2.13/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.13/github/building-a-strong-community/pinning-a-team-discussion" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.14/user/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.14/articles/pinning-a-team-discussion", - "/de/enterprise/2.14/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.14/github/building-a-strong-community/pinning-a-team-discussion" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.15/user/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.15/articles/pinning-a-team-discussion", - "/de/enterprise/2.15/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.15/github/building-a-strong-community/pinning-a-team-discussion" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.16/articles/pinning-a-team-discussion", - "/de/enterprise/2.16/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/pinning-a-team-discussion" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.17/articles/pinning-a-team-discussion", - "/de/enterprise/2.17/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/pinning-a-team-discussion" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.13/user/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.13/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.13/user/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.13/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.13/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.13/github/building-a-strong-community/setting-guidelines-for-repository-contributors" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.14/user/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.14/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.14/user/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.14/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.14/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.14/github/building-a-strong-community/setting-guidelines-for-repository-contributors" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.15/user/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.15/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.15/user/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.15/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.15/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.15/github/building-a-strong-community/setting-guidelines-for-repository-contributors" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/user/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.16/user/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.16/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/github/building-a-strong-community/setting-guidelines-for-repository-contributors" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/user/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.17/user/articles/how-do-i-set-up-guidelines-for-contributors", - "/de/enterprise/2.17/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/github/building-a-strong-community/setting-guidelines-for-repository-contributors" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.13/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.13/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.13/user/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.13/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.13/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.13/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.14/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.14/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.14/user/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.14/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.14/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.14/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.15/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.15/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.15/user/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.15/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.15/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.15/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.16/user/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.16/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.17/user/articles/helping-people-contribute-to-your-project", - "/de/enterprise/2.17/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.13/user/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.13/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.13/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.13/github/building-a-strong-community/tracking-changes-in-a-comment" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.14/user/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.14/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.14/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.14/github/building-a-strong-community/tracking-changes-in-a-comment" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.15/user/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.15/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.15/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.15/github/building-a-strong-community/tracking-changes-in-a-comment" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.16/user/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.16/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.16/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.16/github/building-a-strong-community/tracking-changes-in-a-comment" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.17/user/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.17/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.17/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.17/github/building-a-strong-community/tracking-changes-in-a-comment" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.13/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.13/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.13/user/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.13/user/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.13/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.13/user/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.13/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.13/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.13/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.14/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.14/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.14/user/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.14/user/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.14/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.14/user/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.14/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.14/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.14/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.15/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.15/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/user/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/user/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.15/user/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.15/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.16/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.16/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.16/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.16/user/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.16/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.16/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.17/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.17/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/github/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/building-a-strong-community/using-issue-and-pull-request-templates", - "/de/enterprise/2.17/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.17/user/articles/using-templates-to-encourage-high-quality-issues-and-pull-requests-in-your-repository", - "/de/enterprise/2.17/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.17/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.13/user/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.13/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.13/user/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.13/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.13/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.13/github/building-a-strong-community/viewing-a-wikis-history-of-changes" - ], - [ - "/de/enterprise/2.14/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.14/user/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.14/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.14/user/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.14/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.14/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.14/github/building-a-strong-community/viewing-a-wikis-history-of-changes" - ], - [ - "/de/enterprise/2.15/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.15/user/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.15/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.15/user/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.15/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.15/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.15/github/building-a-strong-community/viewing-a-wikis-history-of-changes" - ], - [ - "/de/enterprise/2.16/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/user/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.16/user/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.16/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/github/building-a-strong-community/viewing-a-wikis-history-of-changes" - ], - [ - "/de/enterprise/2.17/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/user/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.17/user/articles/viewing-a-wiki-s-history-of-changes", - "/de/enterprise/2.17/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/github/building-a-strong-community/viewing-a-wikis-history-of-changes" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.13/articles/working-with-protected-branches", - "/de/enterprise/2.13/user/articles/working-with-protected-branches", - "/de/enterprise/2.13/articles/about-branches", - "/de/enterprise/2.13/user/articles/about-branches", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-branches" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.14/articles/working-with-protected-branches", - "/de/enterprise/2.14/user/articles/working-with-protected-branches", - "/de/enterprise/2.14/articles/about-branches", - "/de/enterprise/2.14/user/articles/about-branches", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-branches" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.15/articles/working-with-protected-branches", - "/de/enterprise/2.15/user/articles/working-with-protected-branches", - "/de/enterprise/2.15/articles/about-branches", - "/de/enterprise/2.15/user/articles/about-branches", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-branches" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.16/articles/working-with-protected-branches", - "/de/enterprise/2.16/user/articles/working-with-protected-branches", - "/de/enterprise/2.16/articles/about-branches", - "/de/enterprise/2.16/user/articles/about-branches", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-branches" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.17/articles/working-with-protected-branches", - "/de/enterprise/2.17/user/articles/working-with-protected-branches", - "/de/enterprise/2.17/articles/about-branches", - "/de/enterprise/2.17/user/articles/about-branches", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-branches" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.13/articles/types-of-collaborative-development-models", - "/de/enterprise/2.13/user/articles/types-of-collaborative-development-models", - "/de/enterprise/2.13/articles/about-collaborative-development-models", - "/de/enterprise/2.13/user/articles/about-collaborative-development-models", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.14/articles/types-of-collaborative-development-models", - "/de/enterprise/2.14/user/articles/types-of-collaborative-development-models", - "/de/enterprise/2.14/articles/about-collaborative-development-models", - "/de/enterprise/2.14/user/articles/about-collaborative-development-models", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.15/articles/types-of-collaborative-development-models", - "/de/enterprise/2.15/user/articles/types-of-collaborative-development-models", - "/de/enterprise/2.15/articles/about-collaborative-development-models", - "/de/enterprise/2.15/user/articles/about-collaborative-development-models", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.16/articles/types-of-collaborative-development-models", - "/de/enterprise/2.16/user/articles/types-of-collaborative-development-models", - "/de/enterprise/2.16/articles/about-collaborative-development-models", - "/de/enterprise/2.16/user/articles/about-collaborative-development-models", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.17/articles/types-of-collaborative-development-models", - "/de/enterprise/2.17/user/articles/types-of-collaborative-development-models", - "/de/enterprise/2.17/articles/about-collaborative-development-models", - "/de/enterprise/2.17/user/articles/about-collaborative-development-models", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.13/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.13/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.14/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.14/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.15/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.15/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.13/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.13/articles/about-conversations-on-github", - "/de/enterprise/2.13/user/articles/about-conversations-on-github", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.14/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.14/articles/about-conversations-on-github", - "/de/enterprise/2.14/user/articles/about-conversations-on-github", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.15/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.15/articles/about-conversations-on-github", - "/de/enterprise/2.15/user/articles/about-conversations-on-github", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.16/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.16/articles/about-conversations-on-github", - "/de/enterprise/2.16/user/articles/about-conversations-on-github", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.17/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/about-discussions-in-issues-and-pull-requests", - "/de/enterprise/2.17/articles/about-conversations-on-github", - "/de/enterprise/2.17/user/articles/about-conversations-on-github", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.13/articles/about-forks", - "/de/enterprise/2.13/user/articles/about-forks", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-forks" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.14/articles/about-forks", - "/de/enterprise/2.14/user/articles/about-forks", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-forks" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.15/articles/about-forks", - "/de/enterprise/2.15/user/articles/about-forks", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-forks" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.16/articles/about-forks", - "/de/enterprise/2.16/user/articles/about-forks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-forks" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.17/articles/about-forks", - "/de/enterprise/2.17/user/articles/about-forks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-forks" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.13/articles/about-merge-conflicts", - "/de/enterprise/2.13/user/articles/about-merge-conflicts", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.14/articles/about-merge-conflicts", - "/de/enterprise/2.14/user/articles/about-merge-conflicts", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.15/articles/about-merge-conflicts", - "/de/enterprise/2.15/user/articles/about-merge-conflicts", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.16/articles/about-merge-conflicts", - "/de/enterprise/2.16/user/articles/about-merge-conflicts", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.17/articles/about-merge-conflicts", - "/de/enterprise/2.17/user/articles/about-merge-conflicts", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.13/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.13/user/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.13/articles/about-pull-request-merges", - "/de/enterprise/2.13/user/articles/about-pull-request-merges", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.14/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.14/user/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.14/articles/about-pull-request-merges", - "/de/enterprise/2.14/user/articles/about-pull-request-merges", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.15/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.15/user/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.15/articles/about-pull-request-merges", - "/de/enterprise/2.15/user/articles/about-pull-request-merges", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.16/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.16/user/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.16/articles/about-pull-request-merges", - "/de/enterprise/2.16/user/articles/about-pull-request-merges", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.17/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.17/user/articles/about-pull-request-merge-squashing", - "/de/enterprise/2.17/articles/about-pull-request-merges", - "/de/enterprise/2.17/user/articles/about-pull-request-merges", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.13/articles/about-pull-request-reviews", - "/de/enterprise/2.13/user/articles/about-pull-request-reviews", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.14/articles/about-pull-request-reviews", - "/de/enterprise/2.14/user/articles/about-pull-request-reviews", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.15/articles/about-pull-request-reviews", - "/de/enterprise/2.15/user/articles/about-pull-request-reviews", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.16/articles/about-pull-request-reviews", - "/de/enterprise/2.16/user/articles/about-pull-request-reviews", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.17/articles/about-pull-request-reviews", - "/de/enterprise/2.17/user/articles/about-pull-request-reviews", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.13/articles/using-pull-requests", - "/de/enterprise/2.13/user/articles/using-pull-requests", - "/de/enterprise/2.13/articles/about-pull-requests", - "/de/enterprise/2.13/user/articles/about-pull-requests", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.14/articles/using-pull-requests", - "/de/enterprise/2.14/user/articles/using-pull-requests", - "/de/enterprise/2.14/articles/about-pull-requests", - "/de/enterprise/2.14/user/articles/about-pull-requests", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.15/articles/using-pull-requests", - "/de/enterprise/2.15/user/articles/using-pull-requests", - "/de/enterprise/2.15/articles/about-pull-requests", - "/de/enterprise/2.15/user/articles/about-pull-requests", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.16/articles/using-pull-requests", - "/de/enterprise/2.16/user/articles/using-pull-requests", - "/de/enterprise/2.16/articles/about-pull-requests", - "/de/enterprise/2.16/user/articles/about-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.17/articles/using-pull-requests", - "/de/enterprise/2.17/user/articles/using-pull-requests", - "/de/enterprise/2.17/articles/about-pull-requests", - "/de/enterprise/2.17/user/articles/about-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.13/articles/about-statuses", - "/de/enterprise/2.13/user/articles/about-statuses", - "/de/enterprise/2.13/articles/about-status-checks", - "/de/enterprise/2.13/user/articles/about-status-checks", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/about-status-checks" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.14/articles/about-statuses", - "/de/enterprise/2.14/user/articles/about-statuses", - "/de/enterprise/2.14/articles/about-status-checks", - "/de/enterprise/2.14/user/articles/about-status-checks", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/about-status-checks" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.15/articles/about-statuses", - "/de/enterprise/2.15/user/articles/about-statuses", - "/de/enterprise/2.15/articles/about-status-checks", - "/de/enterprise/2.15/user/articles/about-status-checks", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/about-status-checks" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.16/articles/about-statuses", - "/de/enterprise/2.16/user/articles/about-statuses", - "/de/enterprise/2.16/articles/about-status-checks", - "/de/enterprise/2.16/user/articles/about-status-checks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-status-checks" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.17/articles/about-statuses", - "/de/enterprise/2.17/user/articles/about-statuses", - "/de/enterprise/2.17/articles/about-status-checks", - "/de/enterprise/2.17/user/articles/about-status-checks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-status-checks" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.13/articles/addressing-merge-conflicts", - "/de/enterprise/2.13/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.14/articles/addressing-merge-conflicts", - "/de/enterprise/2.14/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.15/articles/addressing-merge-conflicts", - "/de/enterprise/2.15/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.16/articles/addressing-merge-conflicts", - "/de/enterprise/2.16/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.17/articles/addressing-merge-conflicts", - "/de/enterprise/2.17/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.13/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.13/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.14/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.14/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.15/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.15/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.13/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.13/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.14/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.14/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.15/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.15/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.13/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.13/user/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.14/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.14/user/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.15/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.15/user/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.16/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.16/user/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/user/articles/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.13/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.13/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.14/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.14/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.15/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.15/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.16/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.16/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.17/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.17/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.13/articles/closing-a-pull-request", - "/de/enterprise/2.13/user/articles/closing-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.14/articles/closing-a-pull-request", - "/de/enterprise/2.14/user/articles/closing-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.15/articles/closing-a-pull-request", - "/de/enterprise/2.15/user/articles/closing-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.16/articles/closing-a-pull-request", - "/de/enterprise/2.16/user/articles/closing-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.17/articles/closing-a-pull-request", - "/de/enterprise/2.17/user/articles/closing-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.13/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.13/user/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.13/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.13/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.14/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.14/user/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.14/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.14/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.15/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.15/user/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.15/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.15/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.16/user/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.16/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.17/user/articles/collaborating-on-repositories-with-code-quality-features-enabled", - "/de/enterprise/2.17/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.13/articles/adding-commit-comments", - "/de/enterprise/2.13/user/articles/adding-commit-comments", - "/de/enterprise/2.13/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.13/user/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.13/articles/commenting-on-differences-between-files", - "/de/enterprise/2.13/user/articles/commenting-on-differences-between-files", - "/de/enterprise/2.13/articles/commenting-on-a-pull-request", - "/de/enterprise/2.13/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.14/articles/adding-commit-comments", - "/de/enterprise/2.14/user/articles/adding-commit-comments", - "/de/enterprise/2.14/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.14/user/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.14/articles/commenting-on-differences-between-files", - "/de/enterprise/2.14/user/articles/commenting-on-differences-between-files", - "/de/enterprise/2.14/articles/commenting-on-a-pull-request", - "/de/enterprise/2.14/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.15/articles/adding-commit-comments", - "/de/enterprise/2.15/user/articles/adding-commit-comments", - "/de/enterprise/2.15/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.15/user/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.15/articles/commenting-on-differences-between-files", - "/de/enterprise/2.15/user/articles/commenting-on-differences-between-files", - "/de/enterprise/2.15/articles/commenting-on-a-pull-request", - "/de/enterprise/2.15/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.16/articles/adding-commit-comments", - "/de/enterprise/2.16/user/articles/adding-commit-comments", - "/de/enterprise/2.16/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.16/user/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.16/articles/commenting-on-differences-between-files", - "/de/enterprise/2.16/user/articles/commenting-on-differences-between-files", - "/de/enterprise/2.16/articles/commenting-on-a-pull-request", - "/de/enterprise/2.16/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.17/articles/adding-commit-comments", - "/de/enterprise/2.17/user/articles/adding-commit-comments", - "/de/enterprise/2.17/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.17/user/articles/commenting-on-the-diff-of-a-pull-request", - "/de/enterprise/2.17/articles/commenting-on-differences-between-files", - "/de/enterprise/2.17/user/articles/commenting-on-differences-between-files", - "/de/enterprise/2.17/articles/commenting-on-a-pull-request", - "/de/enterprise/2.17/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.13/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.13/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.14/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.14/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.15/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.15/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.13/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.13/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.14/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.14/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.15/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.15/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.13/articles/creating-a-pull-request", - "/de/enterprise/2.13/user/articles/creating-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.14/articles/creating-a-pull-request", - "/de/enterprise/2.14/user/articles/creating-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.15/articles/creating-a-pull-request", - "/de/enterprise/2.15/user/articles/creating-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.16/articles/creating-a-pull-request", - "/de/enterprise/2.16/user/articles/creating-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.17/articles/creating-a-pull-request", - "/de/enterprise/2.17/user/articles/creating-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.13/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.13/user/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.13/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.13/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.14/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.14/user/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.14/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.14/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.15/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.15/user/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.15/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.15/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.16/user/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.16/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.17/user/articles/deleting-branches-in-a-pull-request", - "/de/enterprise/2.17/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.13/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.13/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.14/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.14/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.15/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.15/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.16/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.16/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.17/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.17/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.13/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.13/user/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.13/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.13/user/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.14/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.14/user/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.14/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.14/user/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.15/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.15/user/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.15/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.15/user/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.16/user/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.16/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/user/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.17/user/articles/filtering-files-in-a-pull-request-by-file-type", - "/de/enterprise/2.17/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/user/articles/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.13/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.13/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.14/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.14/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.15/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.15/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.13/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.13/user/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.13/articles/github-flow-in-the-browser", - "/de/enterprise/2.13/user/articles/github-flow-in-the-browser", - "/de/enterprise/2.13/articles/user-flow-in-the-browser", - "/de/enterprise/2.13/articles/github-flow", - "/de/enterprise/2.13/user/articles/github-flow", - "/de/enterprise/2.13/articles/user-flow", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/github-flow" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.14/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.14/user/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.14/articles/github-flow-in-the-browser", - "/de/enterprise/2.14/user/articles/github-flow-in-the-browser", - "/de/enterprise/2.14/articles/user-flow-in-the-browser", - "/de/enterprise/2.14/articles/github-flow", - "/de/enterprise/2.14/user/articles/github-flow", - "/de/enterprise/2.14/articles/user-flow", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/github-flow" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.15/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.15/user/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.15/articles/github-flow-in-the-browser", - "/de/enterprise/2.15/user/articles/github-flow-in-the-browser", - "/de/enterprise/2.15/articles/user-flow-in-the-browser", - "/de/enterprise/2.15/articles/github-flow", - "/de/enterprise/2.15/user/articles/github-flow", - "/de/enterprise/2.15/articles/user-flow", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/github-flow" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.16/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.16/user/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.16/articles/github-flow-in-the-browser", - "/de/enterprise/2.16/user/articles/github-flow-in-the-browser", - "/de/enterprise/2.16/articles/user-flow-in-the-browser", - "/de/enterprise/2.16/articles/github-flow", - "/de/enterprise/2.16/user/articles/github-flow", - "/de/enterprise/2.16/articles/user-flow", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/github-flow" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.17/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.17/user/articles/creating-and-editing-files-in-your-repository", - "/de/enterprise/2.17/articles/github-flow-in-the-browser", - "/de/enterprise/2.17/user/articles/github-flow-in-the-browser", - "/de/enterprise/2.17/articles/user-flow-in-the-browser", - "/de/enterprise/2.17/articles/github-flow", - "/de/enterprise/2.17/user/articles/github-flow", - "/de/enterprise/2.17/articles/user-flow", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/github-flow" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.13/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.13/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.14/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.14/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.15/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.15/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.13/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.13/user/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.14/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.14/user/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.15/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.15/user/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.16/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.16/user/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/user/articles/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.13/categories/63/articles", - "/de/enterprise/2.13/user/categories/63/articles", - "/de/enterprise/2.13/categories/collaborating", - "/de/enterprise/2.13/user/categories/collaborating", - "/de/enterprise/2.13/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.13/user/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.13/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.13/user/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.13/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.13/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.14/categories/63/articles", - "/de/enterprise/2.14/user/categories/63/articles", - "/de/enterprise/2.14/categories/collaborating", - "/de/enterprise/2.14/user/categories/collaborating", - "/de/enterprise/2.14/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.14/user/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.14/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.14/user/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.14/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.14/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.15/categories/63/articles", - "/de/enterprise/2.15/user/categories/63/articles", - "/de/enterprise/2.15/categories/collaborating", - "/de/enterprise/2.15/user/categories/collaborating", - "/de/enterprise/2.15/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.15/user/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.15/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.15/user/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.15/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.15/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/categories/63/articles", - "/de/enterprise/2.16/user/categories/63/articles", - "/de/enterprise/2.16/categories/collaborating", - "/de/enterprise/2.16/user/categories/collaborating", - "/de/enterprise/2.16/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.16/user/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.16/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.16/user/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.16/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/categories/63/articles", - "/de/enterprise/2.17/user/categories/63/articles", - "/de/enterprise/2.17/categories/collaborating", - "/de/enterprise/2.17/user/categories/collaborating", - "/de/enterprise/2.17/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.17/user/categories/collaborating-on-projects-using-pull-requests", - "/de/enterprise/2.17/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.17/user/categories/collaborating-on-projects-using-issues-and-pull-requests", - "/de/enterprise/2.17/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.13/articles/merging-a-pull-request", - "/de/enterprise/2.13/user/articles/merging-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.14/articles/merging-a-pull-request", - "/de/enterprise/2.14/user/articles/merging-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.15/articles/merging-a-pull-request", - "/de/enterprise/2.15/user/articles/merging-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.16/articles/merging-a-pull-request", - "/de/enterprise/2.16/user/articles/merging-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.17/articles/merging-a-pull-request", - "/de/enterprise/2.17/user/articles/merging-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.13/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.13/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.14/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.14/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.15/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.15/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/overview" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/overview" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/overview" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/overview" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/overview" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.13/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.13/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.14/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.14/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.15/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.15/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.13/articles/requesting-a-pull-request-review", - "/de/enterprise/2.13/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.14/articles/requesting-a-pull-request-review", - "/de/enterprise/2.14/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.15/articles/requesting-a-pull-request-review", - "/de/enterprise/2.15/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.16/articles/requesting-a-pull-request-review", - "/de/enterprise/2.16/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.17/articles/requesting-a-pull-request-review", - "/de/enterprise/2.17/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.13/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.13/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.14/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.14/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.15/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.15/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.13/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.13/user/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.13/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.13/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.14/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.14/user/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.14/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.14/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.15/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.15/user/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.15/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.15/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.16/user/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.16/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.17/user/articles/resolving-a-merge-conflict-from-the-command-line", - "/de/enterprise/2.17/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.13/articles/reverting-a-pull-request", - "/de/enterprise/2.13/user/articles/reverting-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.14/articles/reverting-a-pull-request", - "/de/enterprise/2.14/user/articles/reverting-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.15/articles/reverting-a-pull-request", - "/de/enterprise/2.15/user/articles/reverting-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.16/articles/reverting-a-pull-request", - "/de/enterprise/2.16/user/articles/reverting-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.17/articles/reverting-a-pull-request", - "/de/enterprise/2.17/user/articles/reverting-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.13/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.13/user/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.13/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.13/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.14/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.14/user/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.14/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.14/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.15/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.15/user/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.15/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.15/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.16/user/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.16/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.17/user/articles/reviewing-and-discussing-changes-in-pull-requests", - "/de/enterprise/2.17/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.13/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.13/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.14/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.14/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.15/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.15/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.13/articles/syncing-a-fork", - "/de/enterprise/2.13/user/articles/syncing-a-fork", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/syncing-a-fork" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.14/articles/syncing-a-fork", - "/de/enterprise/2.14/user/articles/syncing-a-fork", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/syncing-a-fork" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.15/articles/syncing-a-fork", - "/de/enterprise/2.15/user/articles/syncing-a-fork", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/syncing-a-fork" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.16/articles/syncing-a-fork", - "/de/enterprise/2.16/user/articles/syncing-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/syncing-a-fork" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.17/articles/syncing-a-fork", - "/de/enterprise/2.17/user/articles/syncing-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/syncing-a-fork" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.13/articles/viewing-a-pull-request-review", - "/de/enterprise/2.13/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.14/articles/viewing-a-pull-request-review", - "/de/enterprise/2.14/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.15/articles/viewing-a-pull-request-review", - "/de/enterprise/2.15/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.16/articles/viewing-a-pull-request-review", - "/de/enterprise/2.16/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.17/articles/viewing-a-pull-request-review", - "/de/enterprise/2.17/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.13/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.13/user/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.13/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.13/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.14/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.14/user/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.14/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.14/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.15/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.15/user/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.15/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.15/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.16/user/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.16/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.17/user/articles/changing-the-visibility-of-a-network", - "/de/enterprise/2.17/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.13/articles/working-with-forks", - "/de/enterprise/2.13/user/articles/working-with-forks", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/working-with-forks" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.14/articles/working-with-forks", - "/de/enterprise/2.14/user/articles/working-with-forks", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/working-with-forks" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.15/articles/working-with-forks", - "/de/enterprise/2.15/user/articles/working-with-forks", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/working-with-forks" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.16/articles/working-with-forks", - "/de/enterprise/2.16/user/articles/working-with-forks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/working-with-forks" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.17/articles/working-with-forks", - "/de/enterprise/2.17/user/articles/working-with-forks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/working-with-forks" - ], - [ - "/de/enterprise/2.13/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.13/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.13/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.13/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.13/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.14/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.14/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.14/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.14/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.14/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.15/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.15/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.15/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.15/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.15/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.16/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.16/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.17/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.17/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.13/user/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.13/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.13/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.13/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.13/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.13/github/committing-changes-to-your-project/about-commits" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.14/user/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.14/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.14/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.14/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.14/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.14/github/committing-changes-to-your-project/about-commits" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.15/user/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.15/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/github/committing-changes-to-your-project/about-commits" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.16/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/github/committing-changes-to-your-project/about-commits" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/about-commits", - "/de/enterprise/2.17/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/github/committing-changes-to-your-project/about-commits" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.13/user/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.13/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.13/user/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.13/articles/changing-a-commit-message", - "/de/enterprise/2.13/user/articles/changing-a-commit-message", - "/de/enterprise/2.13/github/committing-changes-to-your-project/changing-a-commit-message" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.14/user/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.14/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.14/user/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.14/articles/changing-a-commit-message", - "/de/enterprise/2.14/user/articles/changing-a-commit-message", - "/de/enterprise/2.14/github/committing-changes-to-your-project/changing-a-commit-message" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.15/user/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.15/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.15/user/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.15/articles/changing-a-commit-message", - "/de/enterprise/2.15/user/articles/changing-a-commit-message", - "/de/enterprise/2.15/github/committing-changes-to-your-project/changing-a-commit-message" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.16/user/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.16/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.16/user/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.16/articles/changing-a-commit-message", - "/de/enterprise/2.16/user/articles/changing-a-commit-message", - "/de/enterprise/2.16/github/committing-changes-to-your-project/changing-a-commit-message" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.17/user/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.17/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.17/user/articles/can-i-delete-a-commit-message", - "/de/enterprise/2.17/articles/changing-a-commit-message", - "/de/enterprise/2.17/user/articles/changing-a-commit-message", - "/de/enterprise/2.17/github/committing-changes-to-your-project/changing-a-commit-message" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.13/user/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.13/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.13/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.13/github/committing-changes-to-your-project/commit-branch-and-tag-labels" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.14/user/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.14/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.14/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.14/github/committing-changes-to-your-project/commit-branch-and-tag-labels" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.15/user/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.15/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.15/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.15/github/committing-changes-to-your-project/commit-branch-and-tag-labels" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.16/user/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.16/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.16/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.16/github/committing-changes-to-your-project/commit-branch-and-tag-labels" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.17/user/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.17/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.17/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.17/github/committing-changes-to-your-project/commit-branch-and-tag-labels" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.13/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.13/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.13/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.13/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.14/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.14/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.14/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.14/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.15/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.15/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.15/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.15/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.13/user/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.13/articles/comparing-commits-across-time", - "/de/enterprise/2.13/user/articles/comparing-commits-across-time", - "/de/enterprise/2.13/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.13/user/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.13/github/committing-changes-to-your-project/comparing-commits" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.14/user/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.14/articles/comparing-commits-across-time", - "/de/enterprise/2.14/user/articles/comparing-commits-across-time", - "/de/enterprise/2.14/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.14/user/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.14/github/committing-changes-to-your-project/comparing-commits" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.15/user/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.15/articles/comparing-commits-across-time", - "/de/enterprise/2.15/user/articles/comparing-commits-across-time", - "/de/enterprise/2.15/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.15/user/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.15/github/committing-changes-to-your-project/comparing-commits" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.16/articles/comparing-commits-across-time", - "/de/enterprise/2.16/user/articles/comparing-commits-across-time", - "/de/enterprise/2.16/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.16/user/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.16/github/committing-changes-to-your-project/comparing-commits" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.17/articles/comparing-commits-across-time", - "/de/enterprise/2.17/user/articles/comparing-commits-across-time", - "/de/enterprise/2.17/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.17/user/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.17/github/committing-changes-to-your-project/comparing-commits" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.13/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.13/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.13/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.13/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.14/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.14/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.14/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.14/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.15/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.15/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.15/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.15/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.13/user/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.13/articles/creating-and-editing-commits", - "/de/enterprise/2.13/user/articles/creating-and-editing-commits", - "/de/enterprise/2.13/github/committing-changes-to-your-project/creating-and-editing-commits" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.14/user/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.14/articles/creating-and-editing-commits", - "/de/enterprise/2.14/user/articles/creating-and-editing-commits", - "/de/enterprise/2.14/github/committing-changes-to-your-project/creating-and-editing-commits" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.15/user/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.15/articles/creating-and-editing-commits", - "/de/enterprise/2.15/user/articles/creating-and-editing-commits", - "/de/enterprise/2.15/github/committing-changes-to-your-project/creating-and-editing-commits" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.16/articles/creating-and-editing-commits", - "/de/enterprise/2.16/user/articles/creating-and-editing-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/creating-and-editing-commits" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.17/articles/creating-and-editing-commits", - "/de/enterprise/2.17/user/articles/creating-and-editing-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/creating-and-editing-commits" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.13/user/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.13/articles/differences-between-commit-views", - "/de/enterprise/2.13/user/articles/differences-between-commit-views", - "/de/enterprise/2.13/github/committing-changes-to-your-project/differences-between-commit-views" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.14/user/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.14/articles/differences-between-commit-views", - "/de/enterprise/2.14/user/articles/differences-between-commit-views", - "/de/enterprise/2.14/github/committing-changes-to-your-project/differences-between-commit-views" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.15/user/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.15/articles/differences-between-commit-views", - "/de/enterprise/2.15/user/articles/differences-between-commit-views", - "/de/enterprise/2.15/github/committing-changes-to-your-project/differences-between-commit-views" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.16/user/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.16/articles/differences-between-commit-views", - "/de/enterprise/2.16/user/articles/differences-between-commit-views", - "/de/enterprise/2.16/github/committing-changes-to-your-project/differences-between-commit-views" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.17/user/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.17/articles/differences-between-commit-views", - "/de/enterprise/2.17/user/articles/differences-between-commit-views", - "/de/enterprise/2.17/github/committing-changes-to-your-project/differences-between-commit-views" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project", - "/de/enterprise/2.13/user/committing-changes-to-your-project", - "/de/enterprise/2.13/categories/21/articles", - "/de/enterprise/2.13/user/categories/21/articles", - "/de/enterprise/2.13/categories/commits", - "/de/enterprise/2.13/user/categories/commits", - "/de/enterprise/2.13/categories/committing-changes-to-your-project", - "/de/enterprise/2.13/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.13/github/committing-changes-to-your-project" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project", - "/de/enterprise/2.14/user/committing-changes-to-your-project", - "/de/enterprise/2.14/categories/21/articles", - "/de/enterprise/2.14/user/categories/21/articles", - "/de/enterprise/2.14/categories/commits", - "/de/enterprise/2.14/user/categories/commits", - "/de/enterprise/2.14/categories/committing-changes-to-your-project", - "/de/enterprise/2.14/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.14/github/committing-changes-to-your-project" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project", - "/de/enterprise/2.15/user/committing-changes-to-your-project", - "/de/enterprise/2.15/categories/21/articles", - "/de/enterprise/2.15/user/categories/21/articles", - "/de/enterprise/2.15/categories/commits", - "/de/enterprise/2.15/user/categories/commits", - "/de/enterprise/2.15/categories/committing-changes-to-your-project", - "/de/enterprise/2.15/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.15/github/committing-changes-to-your-project" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project", - "/de/enterprise/2.16/user/committing-changes-to-your-project", - "/de/enterprise/2.16/categories/21/articles", - "/de/enterprise/2.16/user/categories/21/articles", - "/de/enterprise/2.16/categories/commits", - "/de/enterprise/2.16/user/categories/commits", - "/de/enterprise/2.16/categories/committing-changes-to-your-project", - "/de/enterprise/2.16/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.16/github/committing-changes-to-your-project" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project", - "/de/enterprise/2.17/user/committing-changes-to-your-project", - "/de/enterprise/2.17/categories/21/articles", - "/de/enterprise/2.17/user/categories/21/articles", - "/de/enterprise/2.17/categories/commits", - "/de/enterprise/2.17/user/categories/commits", - "/de/enterprise/2.17/categories/committing-changes-to-your-project", - "/de/enterprise/2.17/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.17/github/committing-changes-to-your-project" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.13/user/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.13/articles/troubleshooting-commits", - "/de/enterprise/2.13/user/articles/troubleshooting-commits", - "/de/enterprise/2.13/github/committing-changes-to-your-project/troubleshooting-commits" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.14/user/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.14/articles/troubleshooting-commits", - "/de/enterprise/2.14/user/articles/troubleshooting-commits", - "/de/enterprise/2.14/github/committing-changes-to-your-project/troubleshooting-commits" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.15/user/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.15/articles/troubleshooting-commits", - "/de/enterprise/2.15/user/articles/troubleshooting-commits", - "/de/enterprise/2.15/github/committing-changes-to-your-project/troubleshooting-commits" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.16/articles/troubleshooting-commits", - "/de/enterprise/2.16/user/articles/troubleshooting-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/troubleshooting-commits" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.17/articles/troubleshooting-commits", - "/de/enterprise/2.17/user/articles/troubleshooting-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/troubleshooting-commits" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.13/user/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.13/articles/viewing-and-comparing-commits", - "/de/enterprise/2.13/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.13/github/committing-changes-to-your-project/viewing-and-comparing-commits" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.14/user/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.14/articles/viewing-and-comparing-commits", - "/de/enterprise/2.14/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.14/github/committing-changes-to-your-project/viewing-and-comparing-commits" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.15/user/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.15/articles/viewing-and-comparing-commits", - "/de/enterprise/2.15/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.15/github/committing-changes-to-your-project/viewing-and-comparing-commits" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.16/articles/viewing-and-comparing-commits", - "/de/enterprise/2.16/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/viewing-and-comparing-commits" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.17/articles/viewing-and-comparing-commits", - "/de/enterprise/2.17/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/viewing-and-comparing-commits" - ], - [ - "/de/enterprise/2.13/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.13/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.13/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.13/user/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.13/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.13/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.13/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user" - ], - [ - "/de/enterprise/2.14/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.14/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.14/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.14/user/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.14/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.14/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.14/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user" - ], - [ - "/de/enterprise/2.15/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.15/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.15/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.15/user/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.15/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.15/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.15/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user" - ], - [ - "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.16/user/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.16/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user" - ], - [ - "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.17/user/articles/how-do-i-get-my-commits-to-link-to-my-github-account", - "/de/enterprise/2.17/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.13/articles/about-archiving-repositories", - "/de/enterprise/2.13/user/articles/about-archiving-repositories", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-archiving-repositories" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.14/articles/about-archiving-repositories", - "/de/enterprise/2.14/user/articles/about-archiving-repositories", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-archiving-repositories" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.15/articles/about-archiving-repositories", - "/de/enterprise/2.15/user/articles/about-archiving-repositories", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-archiving-repositories" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.16/articles/about-archiving-repositories", - "/de/enterprise/2.16/user/articles/about-archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-archiving-repositories" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.17/articles/about-archiving-repositories", - "/de/enterprise/2.17/user/articles/about-archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-archiving-repositories" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.13/articles/about-codeowners", - "/de/enterprise/2.13/user/articles/about-codeowners", - "/de/enterprise/2.13/articles/about-code-owners", - "/de/enterprise/2.13/user/articles/about-code-owners", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-code-owners" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.14/articles/about-codeowners", - "/de/enterprise/2.14/user/articles/about-codeowners", - "/de/enterprise/2.14/articles/about-code-owners", - "/de/enterprise/2.14/user/articles/about-code-owners", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-code-owners" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.15/articles/about-codeowners", - "/de/enterprise/2.15/user/articles/about-codeowners", - "/de/enterprise/2.15/articles/about-code-owners", - "/de/enterprise/2.15/user/articles/about-code-owners", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-code-owners" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.16/articles/about-codeowners", - "/de/enterprise/2.16/user/articles/about-codeowners", - "/de/enterprise/2.16/articles/about-code-owners", - "/de/enterprise/2.16/user/articles/about-code-owners", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-code-owners" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.17/articles/about-codeowners", - "/de/enterprise/2.17/user/articles/about-codeowners", - "/de/enterprise/2.17/articles/about-code-owners", - "/de/enterprise/2.17/user/articles/about-code-owners", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-code-owners" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.13/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.13/user/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.13/articles/relative-links-in-readmes", - "/de/enterprise/2.13/user/articles/relative-links-in-readmes", - "/de/enterprise/2.13/articles/about-readmes", - "/de/enterprise/2.13/user/articles/about-readmes", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-readmes" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.14/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.14/user/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.14/articles/relative-links-in-readmes", - "/de/enterprise/2.14/user/articles/relative-links-in-readmes", - "/de/enterprise/2.14/articles/about-readmes", - "/de/enterprise/2.14/user/articles/about-readmes", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-readmes" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.15/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.15/user/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.15/articles/relative-links-in-readmes", - "/de/enterprise/2.15/user/articles/relative-links-in-readmes", - "/de/enterprise/2.15/articles/about-readmes", - "/de/enterprise/2.15/user/articles/about-readmes", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-readmes" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.16/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.16/user/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.16/articles/relative-links-in-readmes", - "/de/enterprise/2.16/user/articles/relative-links-in-readmes", - "/de/enterprise/2.16/articles/about-readmes", - "/de/enterprise/2.16/user/articles/about-readmes", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-readmes" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.17/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.17/user/articles/section-links-on-readmes-and-blob-pages", - "/de/enterprise/2.17/articles/relative-links-in-readmes", - "/de/enterprise/2.17/user/articles/relative-links-in-readmes", - "/de/enterprise/2.17/articles/about-readmes", - "/de/enterprise/2.17/user/articles/about-readmes", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-readmes" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.13/articles/about-repositories", - "/de/enterprise/2.13/user/articles/about-repositories", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-repositories" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.14/articles/about-repositories", - "/de/enterprise/2.14/user/articles/about-repositories", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-repositories" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.15/articles/about-repositories", - "/de/enterprise/2.15/user/articles/about-repositories", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-repositories" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.16/articles/about-repositories", - "/de/enterprise/2.16/user/articles/about-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-repositories" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.17/articles/about-repositories", - "/de/enterprise/2.17/user/articles/about-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repositories" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.13/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.13/user/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.13/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.13/user/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.13/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.13/user/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.13/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.13/user/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.13/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.13/user/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.13/articles/about-repository-languages", - "/de/enterprise/2.13/user/articles/about-repository-languages", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-repository-languages" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.14/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.14/user/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.14/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.14/user/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.14/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.14/user/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.14/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.14/user/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.14/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.14/user/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.14/articles/about-repository-languages", - "/de/enterprise/2.14/user/articles/about-repository-languages", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-repository-languages" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.15/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.15/user/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.15/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.15/user/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.15/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.15/user/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.15/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.15/user/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.15/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.15/user/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.15/articles/about-repository-languages", - "/de/enterprise/2.15/user/articles/about-repository-languages", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-repository-languages" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.16/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.16/user/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.16/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.16/user/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.16/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.16/user/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.16/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.16/user/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.16/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.16/user/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.16/articles/about-repository-languages", - "/de/enterprise/2.16/user/articles/about-repository-languages", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-repository-languages" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.17/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.17/user/articles/my-repository-is-marked-as-the-wrong-language", - "/de/enterprise/2.17/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.17/user/articles/why-isn-t-my-favorite-language-recognized", - "/de/enterprise/2.17/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.17/user/articles/my-repo-is-marked-as-the-wrong-language", - "/de/enterprise/2.17/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.17/user/articles/why-isn-t-sql-recognized-as-a-language", - "/de/enterprise/2.17/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.17/user/articles/why-isn-t-my-favorite-language-recognized-by-github", - "/de/enterprise/2.17/articles/about-repository-languages", - "/de/enterprise/2.17/user/articles/about-repository-languages", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repository-languages" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/about-repository-visibility" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/about-repository-visibility" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/about-repository-visibility" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-repository-visibility" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repository-visibility" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.13/articles/can-i-archive-a-repository", - "/de/enterprise/2.13/user/articles/can-i-archive-a-repository", - "/de/enterprise/2.13/articles/archiving-a-github-repository", - "/de/enterprise/2.13/user/articles/archiving-a-github-repository", - "/de/enterprise/2.13/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.13/admin/guides/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.14/articles/can-i-archive-a-repository", - "/de/enterprise/2.14/user/articles/can-i-archive-a-repository", - "/de/enterprise/2.14/articles/archiving-a-github-repository", - "/de/enterprise/2.14/user/articles/archiving-a-github-repository", - "/de/enterprise/2.14/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.14/admin/guides/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.15/articles/can-i-archive-a-repository", - "/de/enterprise/2.15/user/articles/can-i-archive-a-repository", - "/de/enterprise/2.15/articles/archiving-a-github-repository", - "/de/enterprise/2.15/user/articles/archiving-a-github-repository", - "/de/enterprise/2.15/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.15/admin/guides/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.16/articles/can-i-archive-a-repository", - "/de/enterprise/2.16/user/articles/can-i-archive-a-repository", - "/de/enterprise/2.16/articles/archiving-a-github-repository", - "/de/enterprise/2.16/user/articles/archiving-a-github-repository", - "/de/enterprise/2.16/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.16/admin/guides/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.17/articles/can-i-archive-a-repository", - "/de/enterprise/2.17/user/articles/can-i-archive-a-repository", - "/de/enterprise/2.17/articles/archiving-a-github-repository", - "/de/enterprise/2.17/user/articles/archiving-a-github-repository", - "/de/enterprise/2.17/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.17/admin/guides/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.13/articles/archiving-repositories", - "/de/enterprise/2.13/user/articles/archiving-repositories", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/archiving-repositories" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.14/articles/archiving-repositories", - "/de/enterprise/2.14/user/articles/archiving-repositories", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/archiving-repositories" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.15/articles/archiving-repositories", - "/de/enterprise/2.15/user/articles/archiving-repositories", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/archiving-repositories" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.16/articles/archiving-repositories", - "/de/enterprise/2.16/user/articles/archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/archiving-repositories" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.17/articles/archiving-repositories", - "/de/enterprise/2.17/user/articles/archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/archiving-repositories" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.13/articles/backing-up-a-repository", - "/de/enterprise/2.13/user/articles/backing-up-a-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/backing-up-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.14/articles/backing-up-a-repository", - "/de/enterprise/2.14/user/articles/backing-up-a-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/backing-up-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.15/articles/backing-up-a-repository", - "/de/enterprise/2.15/user/articles/backing-up-a-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/backing-up-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.16/articles/backing-up-a-repository", - "/de/enterprise/2.16/user/articles/backing-up-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/backing-up-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.17/articles/backing-up-a-repository", - "/de/enterprise/2.17/user/articles/backing-up-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/backing-up-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.13/articles/cloning-a-repository-from-github", - "/de/enterprise/2.13/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.14/articles/cloning-a-repository-from-github", - "/de/enterprise/2.14/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.15/articles/cloning-a-repository-from-github", - "/de/enterprise/2.15/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.16/articles/cloning-a-repository-from-github", - "/de/enterprise/2.16/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.17/articles/cloning-a-repository-from-github", - "/de/enterprise/2.17/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.13/articles/cloning-a-repository", - "/de/enterprise/2.13/user/articles/cloning-a-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/cloning-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.14/articles/cloning-a-repository", - "/de/enterprise/2.14/user/articles/cloning-a-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/cloning-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.15/articles/cloning-a-repository", - "/de/enterprise/2.15/user/articles/cloning-a-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/cloning-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.16/articles/cloning-a-repository", - "/de/enterprise/2.16/user/articles/cloning-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/cloning-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.17/articles/cloning-a-repository", - "/de/enterprise/2.17/user/articles/cloning-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/cloning-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.13/creating-a-repo", - "/de/enterprise/2.13/user/creating-a-repo", - "/de/enterprise/2.13/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.13/user/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.13/articles/creating-a-new-organization-repository", - "/de/enterprise/2.13/user/articles/creating-a-new-organization-repository", - "/de/enterprise/2.13/articles/creating-a-new-repository", - "/de/enterprise/2.13/user/articles/creating-a-new-repository", - "/de/enterprise/2.13/articles/creating-an-internal-repository", - "/de/enterprise/2.13/user/articles/creating-an-internal-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-a-new-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.14/creating-a-repo", - "/de/enterprise/2.14/user/creating-a-repo", - "/de/enterprise/2.14/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.14/user/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.14/articles/creating-a-new-organization-repository", - "/de/enterprise/2.14/user/articles/creating-a-new-organization-repository", - "/de/enterprise/2.14/articles/creating-a-new-repository", - "/de/enterprise/2.14/user/articles/creating-a-new-repository", - "/de/enterprise/2.14/articles/creating-an-internal-repository", - "/de/enterprise/2.14/user/articles/creating-an-internal-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-a-new-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.15/creating-a-repo", - "/de/enterprise/2.15/user/creating-a-repo", - "/de/enterprise/2.15/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.15/user/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.15/articles/creating-a-new-organization-repository", - "/de/enterprise/2.15/user/articles/creating-a-new-organization-repository", - "/de/enterprise/2.15/articles/creating-a-new-repository", - "/de/enterprise/2.15/user/articles/creating-a-new-repository", - "/de/enterprise/2.15/articles/creating-an-internal-repository", - "/de/enterprise/2.15/user/articles/creating-an-internal-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-a-new-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.16/creating-a-repo", - "/de/enterprise/2.16/user/creating-a-repo", - "/de/enterprise/2.16/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.16/user/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.16/articles/creating-a-new-organization-repository", - "/de/enterprise/2.16/user/articles/creating-a-new-organization-repository", - "/de/enterprise/2.16/articles/creating-a-new-repository", - "/de/enterprise/2.16/user/articles/creating-a-new-repository", - "/de/enterprise/2.16/articles/creating-an-internal-repository", - "/de/enterprise/2.16/user/articles/creating-an-internal-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-new-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.17/creating-a-repo", - "/de/enterprise/2.17/user/creating-a-repo", - "/de/enterprise/2.17/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.17/user/articles/creating-a-repository-in-an-organization", - "/de/enterprise/2.17/articles/creating-a-new-organization-repository", - "/de/enterprise/2.17/user/articles/creating-a-new-organization-repository", - "/de/enterprise/2.17/articles/creating-a-new-repository", - "/de/enterprise/2.17/user/articles/creating-a-new-repository", - "/de/enterprise/2.17/articles/creating-an-internal-repository", - "/de/enterprise/2.17/user/articles/creating-an-internal-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-an-internal-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-new-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.13/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.13/user/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.14/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.14/user/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.15/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.15/user/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.16/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.16/user/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template", - "/de/enterprise/2.17/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.17/user/articles/creating-a-repository-from-a-template", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.13/articles/creating-a-repository-on-github", - "/de/enterprise/2.13/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.14/articles/creating-a-repository-on-github", - "/de/enterprise/2.14/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.15/articles/creating-a-repository-on-github", - "/de/enterprise/2.15/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.16/articles/creating-a-repository-on-github", - "/de/enterprise/2.16/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.17/articles/creating-a-repository-on-github", - "/de/enterprise/2.17/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.13/articles/creating-a-template-repository", - "/de/enterprise/2.13/user/articles/creating-a-template-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-a-template-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.14/articles/creating-a-template-repository", - "/de/enterprise/2.14/user/articles/creating-a-template-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-a-template-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.15/articles/creating-a-template-repository", - "/de/enterprise/2.15/user/articles/creating-a-template-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-a-template-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.16/articles/creating-a-template-repository", - "/de/enterprise/2.16/user/articles/creating-a-template-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-template-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-template-repository", - "/de/enterprise/2.17/articles/creating-a-template-repository", - "/de/enterprise/2.17/user/articles/creating-a-template-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-template-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.13/articles/issues-only-access-permissions", - "/de/enterprise/2.13/user/articles/issues-only-access-permissions", - "/de/enterprise/2.13/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.13/user/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.13/articles/creating-an-issues-only-repository", - "/de/enterprise/2.13/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.14/articles/issues-only-access-permissions", - "/de/enterprise/2.14/user/articles/issues-only-access-permissions", - "/de/enterprise/2.14/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.14/user/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.14/articles/creating-an-issues-only-repository", - "/de/enterprise/2.14/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.15/articles/issues-only-access-permissions", - "/de/enterprise/2.15/user/articles/issues-only-access-permissions", - "/de/enterprise/2.15/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.15/user/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.15/articles/creating-an-issues-only-repository", - "/de/enterprise/2.15/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.16/articles/issues-only-access-permissions", - "/de/enterprise/2.16/user/articles/issues-only-access-permissions", - "/de/enterprise/2.16/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.16/user/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.16/articles/creating-an-issues-only-repository", - "/de/enterprise/2.16/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.17/articles/issues-only-access-permissions", - "/de/enterprise/2.17/user/articles/issues-only-access-permissions", - "/de/enterprise/2.17/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.17/user/articles/is-there-issues-only-access-to-organization-repositories", - "/de/enterprise/2.17/articles/creating-an-issues-only-repository", - "/de/enterprise/2.17/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.13/articles/duplicating-a-repo", - "/de/enterprise/2.13/user/articles/duplicating-a-repo", - "/de/enterprise/2.13/articles/duplicating-a-repository", - "/de/enterprise/2.13/user/articles/duplicating-a-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/duplicating-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.14/articles/duplicating-a-repo", - "/de/enterprise/2.14/user/articles/duplicating-a-repo", - "/de/enterprise/2.14/articles/duplicating-a-repository", - "/de/enterprise/2.14/user/articles/duplicating-a-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/duplicating-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.15/articles/duplicating-a-repo", - "/de/enterprise/2.15/user/articles/duplicating-a-repo", - "/de/enterprise/2.15/articles/duplicating-a-repository", - "/de/enterprise/2.15/user/articles/duplicating-a-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/duplicating-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.16/articles/duplicating-a-repo", - "/de/enterprise/2.16/user/articles/duplicating-a-repo", - "/de/enterprise/2.16/articles/duplicating-a-repository", - "/de/enterprise/2.16/user/articles/duplicating-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/duplicating-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.17/articles/duplicating-a-repo", - "/de/enterprise/2.17/user/articles/duplicating-a-repo", - "/de/enterprise/2.17/articles/duplicating-a-repository", - "/de/enterprise/2.17/user/articles/duplicating-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/duplicating-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.13/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.13/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.14/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.14/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.15/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.15/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.13/articles/error-repository-not-found", - "/de/enterprise/2.13/user/articles/error-repository-not-found", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/error-repository-not-found" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.14/articles/error-repository-not-found", - "/de/enterprise/2.14/user/articles/error-repository-not-found", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/error-repository-not-found" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.15/articles/error-repository-not-found", - "/de/enterprise/2.15/user/articles/error-repository-not-found", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/error-repository-not-found" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.16/articles/error-repository-not-found", - "/de/enterprise/2.16/user/articles/error-repository-not-found", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/error-repository-not-found" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.17/articles/error-repository-not-found", - "/de/enterprise/2.17/user/articles/error-repository-not-found", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/error-repository-not-found" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.13/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.13/user/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.13/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.13/user/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.13/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.13/user/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.13/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.13/user/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.13/articles/https-cloning-errors", - "/de/enterprise/2.13/user/articles/https-cloning-errors", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/https-cloning-errors" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.14/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.14/user/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.14/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.14/user/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.14/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.14/user/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.14/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.14/user/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.14/articles/https-cloning-errors", - "/de/enterprise/2.14/user/articles/https-cloning-errors", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/https-cloning-errors" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.15/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.15/user/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.15/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.15/user/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.15/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.15/user/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.15/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.15/user/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.15/articles/https-cloning-errors", - "/de/enterprise/2.15/user/articles/https-cloning-errors", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/https-cloning-errors" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.16/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.16/user/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.16/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.16/user/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.16/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.16/user/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.16/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.16/user/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.16/articles/https-cloning-errors", - "/de/enterprise/2.16/user/articles/https-cloning-errors", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/https-cloning-errors" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.17/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.17/user/articles/error-the-requested-url-returned-error-403", - "/de/enterprise/2.17/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.17/user/articles/error-the-requested-url-returned-error-401", - "/de/enterprise/2.17/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.17/user/articles/error-did-you-run-git-update-server-info-on-the-server", - "/de/enterprise/2.17/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.17/user/articles/error-the-requested-url-returned-error-403-while-accessing-https-github-com-user-repo-git-info-refs", - "/de/enterprise/2.17/articles/https-cloning-errors", - "/de/enterprise/2.17/user/articles/https-cloning-errors", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/https-cloning-errors" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.13/categories/repositories", - "/de/enterprise/2.13/user/categories/repositories", - "/de/enterprise/2.13/categories/24/articles", - "/de/enterprise/2.13/user/categories/24/articles", - "/de/enterprise/2.13/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.13/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.14/categories/repositories", - "/de/enterprise/2.14/user/categories/repositories", - "/de/enterprise/2.14/categories/24/articles", - "/de/enterprise/2.14/user/categories/24/articles", - "/de/enterprise/2.14/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.14/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.15/categories/repositories", - "/de/enterprise/2.15/user/categories/repositories", - "/de/enterprise/2.15/categories/24/articles", - "/de/enterprise/2.15/user/categories/24/articles", - "/de/enterprise/2.15/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.15/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/categories/repositories", - "/de/enterprise/2.16/user/categories/repositories", - "/de/enterprise/2.16/categories/24/articles", - "/de/enterprise/2.16/user/categories/24/articles", - "/de/enterprise/2.16/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/categories/repositories", - "/de/enterprise/2.17/user/categories/repositories", - "/de/enterprise/2.17/categories/24/articles", - "/de/enterprise/2.17/user/categories/24/articles", - "/de/enterprise/2.17/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.13/articles/open-source-licensing", - "/de/enterprise/2.13/user/articles/open-source-licensing", - "/de/enterprise/2.13/articles/licensing-a-repository", - "/de/enterprise/2.13/user/articles/licensing-a-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/licensing-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.14/articles/open-source-licensing", - "/de/enterprise/2.14/user/articles/open-source-licensing", - "/de/enterprise/2.14/articles/licensing-a-repository", - "/de/enterprise/2.14/user/articles/licensing-a-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/licensing-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.15/articles/open-source-licensing", - "/de/enterprise/2.15/user/articles/open-source-licensing", - "/de/enterprise/2.15/articles/licensing-a-repository", - "/de/enterprise/2.15/user/articles/licensing-a-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/licensing-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.16/articles/open-source-licensing", - "/de/enterprise/2.16/user/articles/open-source-licensing", - "/de/enterprise/2.16/articles/licensing-a-repository", - "/de/enterprise/2.16/user/articles/licensing-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/licensing-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.17/articles/open-source-licensing", - "/de/enterprise/2.17/user/articles/open-source-licensing", - "/de/enterprise/2.17/articles/licensing-a-repository", - "/de/enterprise/2.17/user/articles/licensing-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/licensing-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.13/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.13/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.13/user/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.13/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.13/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.13/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.14/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.14/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.14/user/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.14/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.14/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.14/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.15/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.15/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.15/user/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.15/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.15/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.15/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.16/user/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.16/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.17/user/articles/what-are-the-limits-for-viewing-content-and-diffs-in-my-repository", - "/de/enterprise/2.17/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/extending-github/about-webhooks", - "/de/enterprise/2.13/user/extending-github/about-webhooks", - "/de/enterprise/2.13/post-receive-hooks", - "/de/enterprise/2.13/user/post-receive-hooks", - "/de/enterprise/2.13/articles/post-receive-hooks", - "/de/enterprise/2.13/user/articles/post-receive-hooks", - "/de/enterprise/2.13/articles/creating-webhooks", - "/de/enterprise/2.13/user/articles/creating-webhooks", - "/de/enterprise/2.13/articles/about-webhooks", - "/de/enterprise/2.13/user/articles/about-webhooks", - "/de/enterprise/2.13/github/extending-github/about-webhooks" - ], - [ - "/de/enterprise/2.14/user/github/extending-github/about-webhooks", - "/de/enterprise/2.14/user/extending-github/about-webhooks", - "/de/enterprise/2.14/post-receive-hooks", - "/de/enterprise/2.14/user/post-receive-hooks", - "/de/enterprise/2.14/articles/post-receive-hooks", - "/de/enterprise/2.14/user/articles/post-receive-hooks", - "/de/enterprise/2.14/articles/creating-webhooks", - "/de/enterprise/2.14/user/articles/creating-webhooks", - "/de/enterprise/2.14/articles/about-webhooks", - "/de/enterprise/2.14/user/articles/about-webhooks", - "/de/enterprise/2.14/github/extending-github/about-webhooks" - ], - [ - "/de/enterprise/2.15/user/github/extending-github/about-webhooks", - "/de/enterprise/2.15/user/extending-github/about-webhooks", - "/de/enterprise/2.15/post-receive-hooks", - "/de/enterprise/2.15/user/post-receive-hooks", - "/de/enterprise/2.15/articles/post-receive-hooks", - "/de/enterprise/2.15/user/articles/post-receive-hooks", - "/de/enterprise/2.15/articles/creating-webhooks", - "/de/enterprise/2.15/user/articles/creating-webhooks", - "/de/enterprise/2.15/articles/about-webhooks", - "/de/enterprise/2.15/user/articles/about-webhooks", - "/de/enterprise/2.15/github/extending-github/about-webhooks" - ], - [ - "/de/enterprise/2.16/user/github/extending-github/about-webhooks", - "/de/enterprise/2.16/user/extending-github/about-webhooks", - "/de/enterprise/2.16/post-receive-hooks", - "/de/enterprise/2.16/user/post-receive-hooks", - "/de/enterprise/2.16/articles/post-receive-hooks", - "/de/enterprise/2.16/user/articles/post-receive-hooks", - "/de/enterprise/2.16/articles/creating-webhooks", - "/de/enterprise/2.16/user/articles/creating-webhooks", - "/de/enterprise/2.16/articles/about-webhooks", - "/de/enterprise/2.16/user/articles/about-webhooks", - "/de/enterprise/2.16/github/extending-github/about-webhooks" - ], - [ - "/de/enterprise/2.17/user/github/extending-github/about-webhooks", - "/de/enterprise/2.17/user/extending-github/about-webhooks", - "/de/enterprise/2.17/post-receive-hooks", - "/de/enterprise/2.17/user/post-receive-hooks", - "/de/enterprise/2.17/articles/post-receive-hooks", - "/de/enterprise/2.17/user/articles/post-receive-hooks", - "/de/enterprise/2.17/articles/creating-webhooks", - "/de/enterprise/2.17/user/articles/creating-webhooks", - "/de/enterprise/2.17/articles/about-webhooks", - "/de/enterprise/2.17/user/articles/about-webhooks", - "/de/enterprise/2.17/github/extending-github/about-webhooks" - ], - [ - "/de/enterprise/2.13/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.13/user/extending-github/getting-started-with-the-api", - "/de/enterprise/2.13/articles/getting-started-with-the-api", - "/de/enterprise/2.13/user/articles/getting-started-with-the-api", - "/de/enterprise/2.13/github/extending-github/getting-started-with-the-api" - ], - [ - "/de/enterprise/2.14/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.14/user/extending-github/getting-started-with-the-api", - "/de/enterprise/2.14/articles/getting-started-with-the-api", - "/de/enterprise/2.14/user/articles/getting-started-with-the-api", - "/de/enterprise/2.14/github/extending-github/getting-started-with-the-api" - ], - [ - "/de/enterprise/2.15/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.15/user/extending-github/getting-started-with-the-api", - "/de/enterprise/2.15/articles/getting-started-with-the-api", - "/de/enterprise/2.15/user/articles/getting-started-with-the-api", - "/de/enterprise/2.15/github/extending-github/getting-started-with-the-api" - ], - [ - "/de/enterprise/2.16/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.16/user/extending-github/getting-started-with-the-api", - "/de/enterprise/2.16/articles/getting-started-with-the-api", - "/de/enterprise/2.16/user/articles/getting-started-with-the-api", - "/de/enterprise/2.16/github/extending-github/getting-started-with-the-api" - ], - [ - "/de/enterprise/2.17/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.17/user/extending-github/getting-started-with-the-api", - "/de/enterprise/2.17/articles/getting-started-with-the-api", - "/de/enterprise/2.17/user/articles/getting-started-with-the-api", - "/de/enterprise/2.17/github/extending-github/getting-started-with-the-api" - ], - [ - "/de/enterprise/2.13/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.13/user/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.13/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.13/user/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.13/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.13/user/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.13/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.13/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.13/github/extending-github/git-automation-with-oauth-tokens" - ], - [ - "/de/enterprise/2.14/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.14/user/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.14/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.14/user/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.14/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.14/user/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.14/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.14/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.14/github/extending-github/git-automation-with-oauth-tokens" - ], - [ - "/de/enterprise/2.15/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.15/user/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.15/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.15/user/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.15/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.15/user/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.15/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.15/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.15/github/extending-github/git-automation-with-oauth-tokens" - ], - [ - "/de/enterprise/2.16/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/user/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.16/user/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.16/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.16/user/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.16/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/github/extending-github/git-automation-with-oauth-tokens" - ], - [ - "/de/enterprise/2.17/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/user/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.17/user/articles/git-over-https-using-oauth-token", - "/de/enterprise/2.17/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.17/user/articles/git-over-http-using-oauth-token", - "/de/enterprise/2.17/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/github/extending-github/git-automation-with-oauth-tokens" - ], - [ - "/de/enterprise/2.13/user/github/extending-github", - "/de/enterprise/2.13/user/extending-github", - "/de/enterprise/2.13/categories/86/articles", - "/de/enterprise/2.13/user/categories/86/articles", - "/de/enterprise/2.13/categories/automation", - "/de/enterprise/2.13/user/categories/automation", - "/de/enterprise/2.13/categories/extending-github", - "/de/enterprise/2.13/user/categories/extending-github", - "/de/enterprise/2.13/github/extending-github" - ], - [ - "/de/enterprise/2.14/user/github/extending-github", - "/de/enterprise/2.14/user/extending-github", - "/de/enterprise/2.14/categories/86/articles", - "/de/enterprise/2.14/user/categories/86/articles", - "/de/enterprise/2.14/categories/automation", - "/de/enterprise/2.14/user/categories/automation", - "/de/enterprise/2.14/categories/extending-github", - "/de/enterprise/2.14/user/categories/extending-github", - "/de/enterprise/2.14/github/extending-github" - ], - [ - "/de/enterprise/2.15/user/github/extending-github", - "/de/enterprise/2.15/user/extending-github", - "/de/enterprise/2.15/categories/86/articles", - "/de/enterprise/2.15/user/categories/86/articles", - "/de/enterprise/2.15/categories/automation", - "/de/enterprise/2.15/user/categories/automation", - "/de/enterprise/2.15/categories/extending-github", - "/de/enterprise/2.15/user/categories/extending-github", - "/de/enterprise/2.15/github/extending-github" - ], - [ - "/de/enterprise/2.16/user/github/extending-github", - "/de/enterprise/2.16/user/extending-github", - "/de/enterprise/2.16/categories/86/articles", - "/de/enterprise/2.16/user/categories/86/articles", - "/de/enterprise/2.16/categories/automation", - "/de/enterprise/2.16/user/categories/automation", - "/de/enterprise/2.16/categories/extending-github", - "/de/enterprise/2.16/user/categories/extending-github", - "/de/enterprise/2.16/github/extending-github" - ], - [ - "/de/enterprise/2.17/user/github/extending-github", - "/de/enterprise/2.17/user/extending-github", - "/de/enterprise/2.17/categories/86/articles", - "/de/enterprise/2.17/user/categories/86/articles", - "/de/enterprise/2.17/categories/automation", - "/de/enterprise/2.17/user/categories/automation", - "/de/enterprise/2.17/categories/extending-github", - "/de/enterprise/2.17/user/categories/extending-github", - "/de/enterprise/2.17/github/extending-github" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/about-automated-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/about-code-scanning" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/about-integration-with-code-scanning" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/automatically-scanning-your-code-for-vulnerabilities-and-errors" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning-for-compiled-languages", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-action-for-compiled-languages", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-the-codeql-workflow-for-compiled-languages" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/configuring-automated-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/enabling-code-scanning-for-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/finding-security-vulnerabilities-in-your-projects-code", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-results-from-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/integrating-with-code-scanning" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/managing-alerts-from-automated-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/managing-alerts-from-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/managing-code-scanning-alerts-for-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-a-container" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/running-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/running-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/about-sarif-support-for-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/sarif-support-for-code-scanning" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/triaging-code-scanning-alerts-in-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning-in-your-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-codeql-code-scanning-in-your-ci-system" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/uploading-a-code-scanning-analysis-to-github", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/uploading-a-sarif-file-to-github" - ], - [ - "/de/enterprise/2.13/user/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.13/user/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.13/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system" - ], - [ - "/de/enterprise/2.14/user/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.14/user/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.14/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system" - ], - [ - "/de/enterprise/2.15/user/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.15/user/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.15/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system" - ], - [ - "/de/enterprise/2.16/user/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.16/user/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.16/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system" - ], - [ - "/de/enterprise/2.17/user/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.17/user/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system", - "/de/enterprise/2.17/github/finding-security-vulnerabilities-and-errors-in-your-code/using-codeql-code-scanning-with-your-existing-ci-system" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.13/user/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.13/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.13/user/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.13/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.13/user/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.13/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.13/user/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.13/articles/access-permissions-on-github", - "/de/enterprise/2.13/user/articles/access-permissions-on-github", - "/de/enterprise/2.13/github/getting-started-with-github/access-permissions-on-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.14/user/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.14/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.14/user/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.14/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.14/user/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.14/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.14/user/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.14/articles/access-permissions-on-github", - "/de/enterprise/2.14/user/articles/access-permissions-on-github", - "/de/enterprise/2.14/github/getting-started-with-github/access-permissions-on-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.15/user/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.15/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.15/user/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.15/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.15/user/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.15/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.15/user/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.15/articles/access-permissions-on-github", - "/de/enterprise/2.15/user/articles/access-permissions-on-github", - "/de/enterprise/2.15/github/getting-started-with-github/access-permissions-on-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.16/user/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.16/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.16/user/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.16/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.16/user/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.16/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.16/user/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.16/articles/access-permissions-on-github", - "/de/enterprise/2.16/user/articles/access-permissions-on-github", - "/de/enterprise/2.16/github/getting-started-with-github/access-permissions-on-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.17/user/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.17/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.17/user/articles/needs-to-be-written-what-can-the-different-types-of-org-team-permissions-do", - "/de/enterprise/2.17/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.17/user/articles/what-are-the-different-types-of-team-permissions", - "/de/enterprise/2.17/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.17/user/articles/what-are-the-different-access-permissions", - "/de/enterprise/2.17/articles/access-permissions-on-github", - "/de/enterprise/2.17/user/articles/access-permissions-on-github", - "/de/enterprise/2.17/github/getting-started-with-github/access-permissions-on-github" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.13/user/getting-started-with-github/be-social", - "/de/enterprise/2.13/be-social", - "/de/enterprise/2.13/user/be-social", - "/de/enterprise/2.13/articles/be-social", - "/de/enterprise/2.13/user/articles/be-social", - "/de/enterprise/2.13/github/getting-started-with-github/be-social" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.14/user/getting-started-with-github/be-social", - "/de/enterprise/2.14/be-social", - "/de/enterprise/2.14/user/be-social", - "/de/enterprise/2.14/articles/be-social", - "/de/enterprise/2.14/user/articles/be-social", - "/de/enterprise/2.14/github/getting-started-with-github/be-social" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.15/user/getting-started-with-github/be-social", - "/de/enterprise/2.15/be-social", - "/de/enterprise/2.15/user/be-social", - "/de/enterprise/2.15/articles/be-social", - "/de/enterprise/2.15/user/articles/be-social", - "/de/enterprise/2.15/github/getting-started-with-github/be-social" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.16/user/getting-started-with-github/be-social", - "/de/enterprise/2.16/be-social", - "/de/enterprise/2.16/user/be-social", - "/de/enterprise/2.16/articles/be-social", - "/de/enterprise/2.16/user/articles/be-social", - "/de/enterprise/2.16/github/getting-started-with-github/be-social" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.17/user/getting-started-with-github/be-social", - "/de/enterprise/2.17/be-social", - "/de/enterprise/2.17/user/be-social", - "/de/enterprise/2.17/articles/be-social", - "/de/enterprise/2.17/user/articles/be-social", - "/de/enterprise/2.17/github/getting-started-with-github/be-social" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.13/user/getting-started-with-github/create-a-repo", - "/de/enterprise/2.13/create-a-repo", - "/de/enterprise/2.13/user/create-a-repo", - "/de/enterprise/2.13/articles/create-a-repo", - "/de/enterprise/2.13/user/articles/create-a-repo", - "/de/enterprise/2.13/github/getting-started-with-github/create-a-repo" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.14/user/getting-started-with-github/create-a-repo", - "/de/enterprise/2.14/create-a-repo", - "/de/enterprise/2.14/user/create-a-repo", - "/de/enterprise/2.14/articles/create-a-repo", - "/de/enterprise/2.14/user/articles/create-a-repo", - "/de/enterprise/2.14/github/getting-started-with-github/create-a-repo" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.15/user/getting-started-with-github/create-a-repo", - "/de/enterprise/2.15/create-a-repo", - "/de/enterprise/2.15/user/create-a-repo", - "/de/enterprise/2.15/articles/create-a-repo", - "/de/enterprise/2.15/user/articles/create-a-repo", - "/de/enterprise/2.15/github/getting-started-with-github/create-a-repo" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.16/user/getting-started-with-github/create-a-repo", - "/de/enterprise/2.16/create-a-repo", - "/de/enterprise/2.16/user/create-a-repo", - "/de/enterprise/2.16/articles/create-a-repo", - "/de/enterprise/2.16/user/articles/create-a-repo", - "/de/enterprise/2.16/github/getting-started-with-github/create-a-repo" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.17/user/getting-started-with-github/create-a-repo", - "/de/enterprise/2.17/create-a-repo", - "/de/enterprise/2.17/user/create-a-repo", - "/de/enterprise/2.17/articles/create-a-repo", - "/de/enterprise/2.17/user/articles/create-a-repo", - "/de/enterprise/2.17/github/getting-started-with-github/create-a-repo" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.13/user/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.13/categories/stars", - "/de/enterprise/2.13/user/categories/stars", - "/de/enterprise/2.13/categories/87/articles", - "/de/enterprise/2.13/user/categories/87/articles", - "/de/enterprise/2.13/categories/exploring-projects-on-github", - "/de/enterprise/2.13/user/categories/exploring-projects-on-github", - "/de/enterprise/2.13/articles/exploring-projects-on-github", - "/de/enterprise/2.13/user/articles/exploring-projects-on-github", - "/de/enterprise/2.13/github/getting-started-with-github/exploring-projects-on-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.14/user/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.14/categories/stars", - "/de/enterprise/2.14/user/categories/stars", - "/de/enterprise/2.14/categories/87/articles", - "/de/enterprise/2.14/user/categories/87/articles", - "/de/enterprise/2.14/categories/exploring-projects-on-github", - "/de/enterprise/2.14/user/categories/exploring-projects-on-github", - "/de/enterprise/2.14/articles/exploring-projects-on-github", - "/de/enterprise/2.14/user/articles/exploring-projects-on-github", - "/de/enterprise/2.14/github/getting-started-with-github/exploring-projects-on-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.15/user/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.15/categories/stars", - "/de/enterprise/2.15/user/categories/stars", - "/de/enterprise/2.15/categories/87/articles", - "/de/enterprise/2.15/user/categories/87/articles", - "/de/enterprise/2.15/categories/exploring-projects-on-github", - "/de/enterprise/2.15/user/categories/exploring-projects-on-github", - "/de/enterprise/2.15/articles/exploring-projects-on-github", - "/de/enterprise/2.15/user/articles/exploring-projects-on-github", - "/de/enterprise/2.15/github/getting-started-with-github/exploring-projects-on-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.16/user/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.16/categories/stars", - "/de/enterprise/2.16/user/categories/stars", - "/de/enterprise/2.16/categories/87/articles", - "/de/enterprise/2.16/user/categories/87/articles", - "/de/enterprise/2.16/categories/exploring-projects-on-github", - "/de/enterprise/2.16/user/categories/exploring-projects-on-github", - "/de/enterprise/2.16/articles/exploring-projects-on-github", - "/de/enterprise/2.16/user/articles/exploring-projects-on-github", - "/de/enterprise/2.16/github/getting-started-with-github/exploring-projects-on-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.17/user/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.17/categories/stars", - "/de/enterprise/2.17/user/categories/stars", - "/de/enterprise/2.17/categories/87/articles", - "/de/enterprise/2.17/user/categories/87/articles", - "/de/enterprise/2.17/categories/exploring-projects-on-github", - "/de/enterprise/2.17/user/categories/exploring-projects-on-github", - "/de/enterprise/2.17/articles/exploring-projects-on-github", - "/de/enterprise/2.17/user/articles/exploring-projects-on-github", - "/de/enterprise/2.17/github/getting-started-with-github/exploring-projects-on-github" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.13/user/getting-started-with-github/following-people", - "/de/enterprise/2.13/articles/following-people", - "/de/enterprise/2.13/user/articles/following-people", - "/de/enterprise/2.13/github/getting-started-with-github/following-people" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.14/user/getting-started-with-github/following-people", - "/de/enterprise/2.14/articles/following-people", - "/de/enterprise/2.14/user/articles/following-people", - "/de/enterprise/2.14/github/getting-started-with-github/following-people" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.15/user/getting-started-with-github/following-people", - "/de/enterprise/2.15/articles/following-people", - "/de/enterprise/2.15/user/articles/following-people", - "/de/enterprise/2.15/github/getting-started-with-github/following-people" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.16/user/getting-started-with-github/following-people", - "/de/enterprise/2.16/articles/following-people", - "/de/enterprise/2.16/user/articles/following-people", - "/de/enterprise/2.16/github/getting-started-with-github/following-people" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.17/user/getting-started-with-github/following-people", - "/de/enterprise/2.17/articles/following-people", - "/de/enterprise/2.17/user/articles/following-people", - "/de/enterprise/2.17/github/getting-started-with-github/following-people" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.13/user/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.13/fork-a-repo", - "/de/enterprise/2.13/user/fork-a-repo", - "/de/enterprise/2.13/forking", - "/de/enterprise/2.13/user/forking", - "/de/enterprise/2.13/articles/fork-a-repo", - "/de/enterprise/2.13/user/articles/fork-a-repo", - "/de/enterprise/2.13/github/getting-started-with-github/fork-a-repo" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.14/user/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.14/fork-a-repo", - "/de/enterprise/2.14/user/fork-a-repo", - "/de/enterprise/2.14/forking", - "/de/enterprise/2.14/user/forking", - "/de/enterprise/2.14/articles/fork-a-repo", - "/de/enterprise/2.14/user/articles/fork-a-repo", - "/de/enterprise/2.14/github/getting-started-with-github/fork-a-repo" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.15/user/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.15/fork-a-repo", - "/de/enterprise/2.15/user/fork-a-repo", - "/de/enterprise/2.15/forking", - "/de/enterprise/2.15/user/forking", - "/de/enterprise/2.15/articles/fork-a-repo", - "/de/enterprise/2.15/user/articles/fork-a-repo", - "/de/enterprise/2.15/github/getting-started-with-github/fork-a-repo" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.16/user/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.16/fork-a-repo", - "/de/enterprise/2.16/user/fork-a-repo", - "/de/enterprise/2.16/forking", - "/de/enterprise/2.16/user/forking", - "/de/enterprise/2.16/articles/fork-a-repo", - "/de/enterprise/2.16/user/articles/fork-a-repo", - "/de/enterprise/2.16/github/getting-started-with-github/fork-a-repo" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.17/user/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.17/fork-a-repo", - "/de/enterprise/2.17/user/fork-a-repo", - "/de/enterprise/2.17/forking", - "/de/enterprise/2.17/user/forking", - "/de/enterprise/2.17/articles/fork-a-repo", - "/de/enterprise/2.17/user/articles/fork-a-repo", - "/de/enterprise/2.17/github/getting-started-with-github/fork-a-repo" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.13/user/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.13/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.13/user/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.13/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.13/user/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.13/articles/git-and-github-learning-resources", - "/de/enterprise/2.13/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.13/github/getting-started-with-github/git-and-github-learning-resources" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.14/user/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.14/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.14/user/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.14/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.14/user/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.14/articles/git-and-github-learning-resources", - "/de/enterprise/2.14/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.14/github/getting-started-with-github/git-and-github-learning-resources" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.15/user/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.15/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.15/user/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.15/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.15/user/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.15/articles/git-and-github-learning-resources", - "/de/enterprise/2.15/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.15/github/getting-started-with-github/git-and-github-learning-resources" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.16/user/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.16/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.16/user/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.16/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.16/user/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.16/articles/git-and-github-learning-resources", - "/de/enterprise/2.16/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.16/github/getting-started-with-github/git-and-github-learning-resources" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.17/user/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.17/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.17/user/articles/good-resources-for-learning-git-and-github", - "/de/enterprise/2.17/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.17/user/articles/what-are-other-good-resources-for-learning-git-and-github", - "/de/enterprise/2.17/articles/git-and-github-learning-resources", - "/de/enterprise/2.17/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.17/github/getting-started-with-github/git-and-github-learning-resources" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.13/user/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.13/articles/git-cheatsheet", - "/de/enterprise/2.13/user/articles/git-cheatsheet", - "/de/enterprise/2.13/github/getting-started-with-github/git-cheatsheet" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.14/user/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.14/articles/git-cheatsheet", - "/de/enterprise/2.14/user/articles/git-cheatsheet", - "/de/enterprise/2.14/github/getting-started-with-github/git-cheatsheet" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.15/user/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.15/articles/git-cheatsheet", - "/de/enterprise/2.15/user/articles/git-cheatsheet", - "/de/enterprise/2.15/github/getting-started-with-github/git-cheatsheet" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.16/user/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.16/articles/git-cheatsheet", - "/de/enterprise/2.16/user/articles/git-cheatsheet", - "/de/enterprise/2.16/github/getting-started-with-github/git-cheatsheet" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.17/user/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.17/articles/git-cheatsheet", - "/de/enterprise/2.17/user/articles/git-cheatsheet", - "/de/enterprise/2.17/github/getting-started-with-github/git-cheatsheet" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/github-cli", - "/de/enterprise/2.13/user/getting-started-with-github/github-cli", - "/de/enterprise/2.13/github/getting-started-with-github/github-cli" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/github-cli", - "/de/enterprise/2.14/user/getting-started-with-github/github-cli", - "/de/enterprise/2.14/github/getting-started-with-github/github-cli" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/github-cli", - "/de/enterprise/2.15/user/getting-started-with-github/github-cli", - "/de/enterprise/2.15/github/getting-started-with-github/github-cli" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/github-cli", - "/de/enterprise/2.16/user/getting-started-with-github/github-cli", - "/de/enterprise/2.16/github/getting-started-with-github/github-cli" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/github-cli", - "/de/enterprise/2.17/user/getting-started-with-github/github-cli", - "/de/enterprise/2.17/github/getting-started-with-github/github-cli" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.13/user/getting-started-with-github/github-desktop", - "/de/enterprise/2.13/github/getting-started-with-github/github-desktop" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.14/user/getting-started-with-github/github-desktop", - "/de/enterprise/2.14/github/getting-started-with-github/github-desktop" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.15/user/getting-started-with-github/github-desktop", - "/de/enterprise/2.15/github/getting-started-with-github/github-desktop" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.16/user/getting-started-with-github/github-desktop", - "/de/enterprise/2.16/github/getting-started-with-github/github-desktop" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.17/user/getting-started-with-github/github-desktop", - "/de/enterprise/2.17/github/getting-started-with-github/github-desktop" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.13/user/getting-started-with-github/github-glossary", - "/de/enterprise/2.13/articles/github-glossary", - "/de/enterprise/2.13/user/articles/github-glossary", - "/de/enterprise/2.13/articles/user-glossary", - "/de/enterprise/2.13/github/getting-started-with-github/github-glossary" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.14/user/getting-started-with-github/github-glossary", - "/de/enterprise/2.14/articles/github-glossary", - "/de/enterprise/2.14/user/articles/github-glossary", - "/de/enterprise/2.14/articles/user-glossary", - "/de/enterprise/2.14/github/getting-started-with-github/github-glossary" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.15/user/getting-started-with-github/github-glossary", - "/de/enterprise/2.15/articles/github-glossary", - "/de/enterprise/2.15/user/articles/github-glossary", - "/de/enterprise/2.15/articles/user-glossary", - "/de/enterprise/2.15/github/getting-started-with-github/github-glossary" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.16/user/getting-started-with-github/github-glossary", - "/de/enterprise/2.16/articles/github-glossary", - "/de/enterprise/2.16/user/articles/github-glossary", - "/de/enterprise/2.16/articles/user-glossary", - "/de/enterprise/2.16/github/getting-started-with-github/github-glossary" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.17/user/getting-started-with-github/github-glossary", - "/de/enterprise/2.17/articles/github-glossary", - "/de/enterprise/2.17/user/articles/github-glossary", - "/de/enterprise/2.17/articles/user-glossary", - "/de/enterprise/2.17/github/getting-started-with-github/github-glossary" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.13/user/getting-started-with-github/githubs-products", - "/de/enterprise/2.13/articles/github-s-products", - "/de/enterprise/2.13/user/articles/github-s-products", - "/de/enterprise/2.13/articles/user-s-products", - "/de/enterprise/2.13/articles/githubs-products", - "/de/enterprise/2.13/user/articles/githubs-products", - "/de/enterprise/2.13/articles/users-products", - "/de/enterprise/2.13/github/getting-started-with-github/githubs-products" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.14/user/getting-started-with-github/githubs-products", - "/de/enterprise/2.14/articles/github-s-products", - "/de/enterprise/2.14/user/articles/github-s-products", - "/de/enterprise/2.14/articles/user-s-products", - "/de/enterprise/2.14/articles/githubs-products", - "/de/enterprise/2.14/user/articles/githubs-products", - "/de/enterprise/2.14/articles/users-products", - "/de/enterprise/2.14/github/getting-started-with-github/githubs-products" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.15/user/getting-started-with-github/githubs-products", - "/de/enterprise/2.15/articles/github-s-products", - "/de/enterprise/2.15/user/articles/github-s-products", - "/de/enterprise/2.15/articles/user-s-products", - "/de/enterprise/2.15/articles/githubs-products", - "/de/enterprise/2.15/user/articles/githubs-products", - "/de/enterprise/2.15/articles/users-products", - "/de/enterprise/2.15/github/getting-started-with-github/githubs-products" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.16/user/getting-started-with-github/githubs-products", - "/de/enterprise/2.16/articles/github-s-products", - "/de/enterprise/2.16/user/articles/github-s-products", - "/de/enterprise/2.16/articles/user-s-products", - "/de/enterprise/2.16/articles/githubs-products", - "/de/enterprise/2.16/user/articles/githubs-products", - "/de/enterprise/2.16/articles/users-products", - "/de/enterprise/2.16/github/getting-started-with-github/githubs-products" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.17/user/getting-started-with-github/githubs-products", - "/de/enterprise/2.17/articles/github-s-products", - "/de/enterprise/2.17/user/articles/github-s-products", - "/de/enterprise/2.17/articles/user-s-products", - "/de/enterprise/2.17/articles/githubs-products", - "/de/enterprise/2.17/user/articles/githubs-products", - "/de/enterprise/2.17/articles/users-products", - "/de/enterprise/2.17/github/getting-started-with-github/githubs-products" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github", - "/de/enterprise/2.13/user/getting-started-with-github", - "/de/enterprise/2.13/categories/54/articles", - "/de/enterprise/2.13/user/categories/54/articles", - "/de/enterprise/2.13/categories/bootcamp", - "/de/enterprise/2.13/user/categories/bootcamp", - "/de/enterprise/2.13/categories/32/articles", - "/de/enterprise/2.13/user/categories/32/articles", - "/de/enterprise/2.13/categories/2/articles", - "/de/enterprise/2.13/user/categories/2/articles", - "/de/enterprise/2.13/categories/organizations", - "/de/enterprise/2.13/user/categories/organizations", - "/de/enterprise/2.13/categories/about-github", - "/de/enterprise/2.13/user/categories/about-github", - "/de/enterprise/2.13/categories/53/articles", - "/de/enterprise/2.13/user/categories/53/articles", - "/de/enterprise/2.13/categories/setup", - "/de/enterprise/2.13/user/categories/setup", - "/de/enterprise/2.13/categories/getting-started-with-github", - "/de/enterprise/2.13/user/categories/getting-started-with-github", - "/de/enterprise/2.13/github/getting-started-with-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github", - "/de/enterprise/2.14/user/getting-started-with-github", - "/de/enterprise/2.14/categories/54/articles", - "/de/enterprise/2.14/user/categories/54/articles", - "/de/enterprise/2.14/categories/bootcamp", - "/de/enterprise/2.14/user/categories/bootcamp", - "/de/enterprise/2.14/categories/32/articles", - "/de/enterprise/2.14/user/categories/32/articles", - "/de/enterprise/2.14/categories/2/articles", - "/de/enterprise/2.14/user/categories/2/articles", - "/de/enterprise/2.14/categories/organizations", - "/de/enterprise/2.14/user/categories/organizations", - "/de/enterprise/2.14/categories/about-github", - "/de/enterprise/2.14/user/categories/about-github", - "/de/enterprise/2.14/categories/53/articles", - "/de/enterprise/2.14/user/categories/53/articles", - "/de/enterprise/2.14/categories/setup", - "/de/enterprise/2.14/user/categories/setup", - "/de/enterprise/2.14/categories/getting-started-with-github", - "/de/enterprise/2.14/user/categories/getting-started-with-github", - "/de/enterprise/2.14/github/getting-started-with-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github", - "/de/enterprise/2.15/user/getting-started-with-github", - "/de/enterprise/2.15/categories/54/articles", - "/de/enterprise/2.15/user/categories/54/articles", - "/de/enterprise/2.15/categories/bootcamp", - "/de/enterprise/2.15/user/categories/bootcamp", - "/de/enterprise/2.15/categories/32/articles", - "/de/enterprise/2.15/user/categories/32/articles", - "/de/enterprise/2.15/categories/2/articles", - "/de/enterprise/2.15/user/categories/2/articles", - "/de/enterprise/2.15/categories/organizations", - "/de/enterprise/2.15/user/categories/organizations", - "/de/enterprise/2.15/categories/about-github", - "/de/enterprise/2.15/user/categories/about-github", - "/de/enterprise/2.15/categories/53/articles", - "/de/enterprise/2.15/user/categories/53/articles", - "/de/enterprise/2.15/categories/setup", - "/de/enterprise/2.15/user/categories/setup", - "/de/enterprise/2.15/categories/getting-started-with-github", - "/de/enterprise/2.15/user/categories/getting-started-with-github", - "/de/enterprise/2.15/github/getting-started-with-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github", - "/de/enterprise/2.16/user/getting-started-with-github", - "/de/enterprise/2.16/categories/54/articles", - "/de/enterprise/2.16/user/categories/54/articles", - "/de/enterprise/2.16/categories/bootcamp", - "/de/enterprise/2.16/user/categories/bootcamp", - "/de/enterprise/2.16/categories/32/articles", - "/de/enterprise/2.16/user/categories/32/articles", - "/de/enterprise/2.16/categories/2/articles", - "/de/enterprise/2.16/user/categories/2/articles", - "/de/enterprise/2.16/categories/organizations", - "/de/enterprise/2.16/user/categories/organizations", - "/de/enterprise/2.16/categories/about-github", - "/de/enterprise/2.16/user/categories/about-github", - "/de/enterprise/2.16/categories/53/articles", - "/de/enterprise/2.16/user/categories/53/articles", - "/de/enterprise/2.16/categories/setup", - "/de/enterprise/2.16/user/categories/setup", - "/de/enterprise/2.16/categories/getting-started-with-github", - "/de/enterprise/2.16/user/categories/getting-started-with-github", - "/de/enterprise/2.16/github/getting-started-with-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github", - "/de/enterprise/2.17/user/getting-started-with-github", - "/de/enterprise/2.17/categories/54/articles", - "/de/enterprise/2.17/user/categories/54/articles", - "/de/enterprise/2.17/categories/bootcamp", - "/de/enterprise/2.17/user/categories/bootcamp", - "/de/enterprise/2.17/categories/32/articles", - "/de/enterprise/2.17/user/categories/32/articles", - "/de/enterprise/2.17/categories/2/articles", - "/de/enterprise/2.17/user/categories/2/articles", - "/de/enterprise/2.17/categories/organizations", - "/de/enterprise/2.17/user/categories/organizations", - "/de/enterprise/2.17/categories/about-github", - "/de/enterprise/2.17/user/categories/about-github", - "/de/enterprise/2.17/categories/53/articles", - "/de/enterprise/2.17/user/categories/53/articles", - "/de/enterprise/2.17/categories/setup", - "/de/enterprise/2.17/user/categories/setup", - "/de/enterprise/2.17/categories/getting-started-with-github", - "/de/enterprise/2.17/user/categories/getting-started-with-github", - "/de/enterprise/2.17/github/getting-started-with-github" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.13/user/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.13/articles/using-keyboard-shortcuts", - "/de/enterprise/2.13/user/articles/using-keyboard-shortcuts", - "/de/enterprise/2.13/categories/75/articles", - "/de/enterprise/2.13/user/categories/75/articles", - "/de/enterprise/2.13/categories/keyboard-shortcuts", - "/de/enterprise/2.13/user/categories/keyboard-shortcuts", - "/de/enterprise/2.13/articles/keyboard-shortcuts", - "/de/enterprise/2.13/user/articles/keyboard-shortcuts", - "/de/enterprise/2.13/github/getting-started-with-github/keyboard-shortcuts" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.14/user/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.14/articles/using-keyboard-shortcuts", - "/de/enterprise/2.14/user/articles/using-keyboard-shortcuts", - "/de/enterprise/2.14/categories/75/articles", - "/de/enterprise/2.14/user/categories/75/articles", - "/de/enterprise/2.14/categories/keyboard-shortcuts", - "/de/enterprise/2.14/user/categories/keyboard-shortcuts", - "/de/enterprise/2.14/articles/keyboard-shortcuts", - "/de/enterprise/2.14/user/articles/keyboard-shortcuts", - "/de/enterprise/2.14/github/getting-started-with-github/keyboard-shortcuts" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.15/user/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.15/articles/using-keyboard-shortcuts", - "/de/enterprise/2.15/user/articles/using-keyboard-shortcuts", - "/de/enterprise/2.15/categories/75/articles", - "/de/enterprise/2.15/user/categories/75/articles", - "/de/enterprise/2.15/categories/keyboard-shortcuts", - "/de/enterprise/2.15/user/categories/keyboard-shortcuts", - "/de/enterprise/2.15/articles/keyboard-shortcuts", - "/de/enterprise/2.15/user/articles/keyboard-shortcuts", - "/de/enterprise/2.15/github/getting-started-with-github/keyboard-shortcuts" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.16/user/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.16/articles/using-keyboard-shortcuts", - "/de/enterprise/2.16/user/articles/using-keyboard-shortcuts", - "/de/enterprise/2.16/categories/75/articles", - "/de/enterprise/2.16/user/categories/75/articles", - "/de/enterprise/2.16/categories/keyboard-shortcuts", - "/de/enterprise/2.16/user/categories/keyboard-shortcuts", - "/de/enterprise/2.16/articles/keyboard-shortcuts", - "/de/enterprise/2.16/user/articles/keyboard-shortcuts", - "/de/enterprise/2.16/github/getting-started-with-github/keyboard-shortcuts" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.17/user/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.17/articles/using-keyboard-shortcuts", - "/de/enterprise/2.17/user/articles/using-keyboard-shortcuts", - "/de/enterprise/2.17/categories/75/articles", - "/de/enterprise/2.17/user/categories/75/articles", - "/de/enterprise/2.17/categories/keyboard-shortcuts", - "/de/enterprise/2.17/user/categories/keyboard-shortcuts", - "/de/enterprise/2.17/articles/keyboard-shortcuts", - "/de/enterprise/2.17/user/articles/keyboard-shortcuts", - "/de/enterprise/2.17/github/getting-started-with-github/keyboard-shortcuts" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.13/user/getting-started-with-github/learning-about-github", - "/de/enterprise/2.13/articles/learning-about-github", - "/de/enterprise/2.13/user/articles/learning-about-github", - "/de/enterprise/2.13/github/getting-started-with-github/learning-about-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.14/user/getting-started-with-github/learning-about-github", - "/de/enterprise/2.14/articles/learning-about-github", - "/de/enterprise/2.14/user/articles/learning-about-github", - "/de/enterprise/2.14/github/getting-started-with-github/learning-about-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.15/user/getting-started-with-github/learning-about-github", - "/de/enterprise/2.15/articles/learning-about-github", - "/de/enterprise/2.15/user/articles/learning-about-github", - "/de/enterprise/2.15/github/getting-started-with-github/learning-about-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.16/user/getting-started-with-github/learning-about-github", - "/de/enterprise/2.16/articles/learning-about-github", - "/de/enterprise/2.16/user/articles/learning-about-github", - "/de/enterprise/2.16/github/getting-started-with-github/learning-about-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.17/user/getting-started-with-github/learning-about-github", - "/de/enterprise/2.17/articles/learning-about-github", - "/de/enterprise/2.17/user/articles/learning-about-github", - "/de/enterprise/2.17/github/getting-started-with-github/learning-about-github" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.13/user/getting-started-with-github/quickstart", - "/de/enterprise/2.13/github/getting-started-with-github/quickstart" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.14/user/getting-started-with-github/quickstart", - "/de/enterprise/2.14/github/getting-started-with-github/quickstart" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.15/user/getting-started-with-github/quickstart", - "/de/enterprise/2.15/github/getting-started-with-github/quickstart" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.16/user/getting-started-with-github/quickstart", - "/de/enterprise/2.16/github/getting-started-with-github/quickstart" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.17/user/getting-started-with-github/quickstart", - "/de/enterprise/2.17/github/getting-started-with-github/quickstart" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.13/user/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.13/articles/stars", - "/de/enterprise/2.13/user/articles/stars", - "/de/enterprise/2.13/articles/about-stars", - "/de/enterprise/2.13/user/articles/about-stars", - "/de/enterprise/2.13/articles/browsing-friends-stars", - "/de/enterprise/2.13/user/articles/browsing-friends-stars", - "/de/enterprise/2.13/articles/managing-your-stars", - "/de/enterprise/2.13/user/articles/managing-your-stars", - "/de/enterprise/2.13/articles/saving-repositories-with-stars", - "/de/enterprise/2.13/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.13/github/getting-started-with-github/saving-repositories-with-stars" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.14/user/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.14/articles/stars", - "/de/enterprise/2.14/user/articles/stars", - "/de/enterprise/2.14/articles/about-stars", - "/de/enterprise/2.14/user/articles/about-stars", - "/de/enterprise/2.14/articles/browsing-friends-stars", - "/de/enterprise/2.14/user/articles/browsing-friends-stars", - "/de/enterprise/2.14/articles/managing-your-stars", - "/de/enterprise/2.14/user/articles/managing-your-stars", - "/de/enterprise/2.14/articles/saving-repositories-with-stars", - "/de/enterprise/2.14/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.14/github/getting-started-with-github/saving-repositories-with-stars" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.15/user/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.15/articles/stars", - "/de/enterprise/2.15/user/articles/stars", - "/de/enterprise/2.15/articles/about-stars", - "/de/enterprise/2.15/user/articles/about-stars", - "/de/enterprise/2.15/articles/browsing-friends-stars", - "/de/enterprise/2.15/user/articles/browsing-friends-stars", - "/de/enterprise/2.15/articles/managing-your-stars", - "/de/enterprise/2.15/user/articles/managing-your-stars", - "/de/enterprise/2.15/articles/saving-repositories-with-stars", - "/de/enterprise/2.15/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.15/github/getting-started-with-github/saving-repositories-with-stars" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.16/user/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.16/articles/stars", - "/de/enterprise/2.16/user/articles/stars", - "/de/enterprise/2.16/articles/about-stars", - "/de/enterprise/2.16/user/articles/about-stars", - "/de/enterprise/2.16/articles/browsing-friends-stars", - "/de/enterprise/2.16/user/articles/browsing-friends-stars", - "/de/enterprise/2.16/articles/managing-your-stars", - "/de/enterprise/2.16/user/articles/managing-your-stars", - "/de/enterprise/2.16/articles/saving-repositories-with-stars", - "/de/enterprise/2.16/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.16/github/getting-started-with-github/saving-repositories-with-stars" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.17/user/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.17/articles/stars", - "/de/enterprise/2.17/user/articles/stars", - "/de/enterprise/2.17/articles/about-stars", - "/de/enterprise/2.17/user/articles/about-stars", - "/de/enterprise/2.17/articles/browsing-friends-stars", - "/de/enterprise/2.17/user/articles/browsing-friends-stars", - "/de/enterprise/2.17/articles/managing-your-stars", - "/de/enterprise/2.17/user/articles/managing-your-stars", - "/de/enterprise/2.17/articles/saving-repositories-with-stars", - "/de/enterprise/2.17/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.17/github/getting-started-with-github/saving-repositories-with-stars" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.13/user/getting-started-with-github/set-up-git", - "/de/enterprise/2.13/git-installation-redirect", - "/de/enterprise/2.13/user/git-installation-redirect", - "/de/enterprise/2.13/linux-git-installation", - "/de/enterprise/2.13/user/linux-git-installation", - "/de/enterprise/2.13/linux-set-up-git", - "/de/enterprise/2.13/user/linux-set-up-git", - "/de/enterprise/2.13/mac-git-installation", - "/de/enterprise/2.13/user/mac-git-installation", - "/de/enterprise/2.13/mac-set-up-git", - "/de/enterprise/2.13/user/mac-set-up-git", - "/de/enterprise/2.13/set-up-git-redirect", - "/de/enterprise/2.13/user/set-up-git-redirect", - "/de/enterprise/2.13/win-git-installation", - "/de/enterprise/2.13/user/win-git-installation", - "/de/enterprise/2.13/win-set-up-git", - "/de/enterprise/2.13/user/win-set-up-git", - "/de/enterprise/2.13/articles/set-up-git", - "/de/enterprise/2.13/user/articles/set-up-git", - "/de/enterprise/2.13/github/getting-started-with-github/set-up-git" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.14/user/getting-started-with-github/set-up-git", - "/de/enterprise/2.14/git-installation-redirect", - "/de/enterprise/2.14/user/git-installation-redirect", - "/de/enterprise/2.14/linux-git-installation", - "/de/enterprise/2.14/user/linux-git-installation", - "/de/enterprise/2.14/linux-set-up-git", - "/de/enterprise/2.14/user/linux-set-up-git", - "/de/enterprise/2.14/mac-git-installation", - "/de/enterprise/2.14/user/mac-git-installation", - "/de/enterprise/2.14/mac-set-up-git", - "/de/enterprise/2.14/user/mac-set-up-git", - "/de/enterprise/2.14/set-up-git-redirect", - "/de/enterprise/2.14/user/set-up-git-redirect", - "/de/enterprise/2.14/win-git-installation", - "/de/enterprise/2.14/user/win-git-installation", - "/de/enterprise/2.14/win-set-up-git", - "/de/enterprise/2.14/user/win-set-up-git", - "/de/enterprise/2.14/articles/set-up-git", - "/de/enterprise/2.14/user/articles/set-up-git", - "/de/enterprise/2.14/github/getting-started-with-github/set-up-git" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.15/user/getting-started-with-github/set-up-git", - "/de/enterprise/2.15/git-installation-redirect", - "/de/enterprise/2.15/user/git-installation-redirect", - "/de/enterprise/2.15/linux-git-installation", - "/de/enterprise/2.15/user/linux-git-installation", - "/de/enterprise/2.15/linux-set-up-git", - "/de/enterprise/2.15/user/linux-set-up-git", - "/de/enterprise/2.15/mac-git-installation", - "/de/enterprise/2.15/user/mac-git-installation", - "/de/enterprise/2.15/mac-set-up-git", - "/de/enterprise/2.15/user/mac-set-up-git", - "/de/enterprise/2.15/set-up-git-redirect", - "/de/enterprise/2.15/user/set-up-git-redirect", - "/de/enterprise/2.15/win-git-installation", - "/de/enterprise/2.15/user/win-git-installation", - "/de/enterprise/2.15/win-set-up-git", - "/de/enterprise/2.15/user/win-set-up-git", - "/de/enterprise/2.15/articles/set-up-git", - "/de/enterprise/2.15/user/articles/set-up-git", - "/de/enterprise/2.15/github/getting-started-with-github/set-up-git" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.16/user/getting-started-with-github/set-up-git", - "/de/enterprise/2.16/git-installation-redirect", - "/de/enterprise/2.16/user/git-installation-redirect", - "/de/enterprise/2.16/linux-git-installation", - "/de/enterprise/2.16/user/linux-git-installation", - "/de/enterprise/2.16/linux-set-up-git", - "/de/enterprise/2.16/user/linux-set-up-git", - "/de/enterprise/2.16/mac-git-installation", - "/de/enterprise/2.16/user/mac-git-installation", - "/de/enterprise/2.16/mac-set-up-git", - "/de/enterprise/2.16/user/mac-set-up-git", - "/de/enterprise/2.16/set-up-git-redirect", - "/de/enterprise/2.16/user/set-up-git-redirect", - "/de/enterprise/2.16/win-git-installation", - "/de/enterprise/2.16/user/win-git-installation", - "/de/enterprise/2.16/win-set-up-git", - "/de/enterprise/2.16/user/win-set-up-git", - "/de/enterprise/2.16/articles/set-up-git", - "/de/enterprise/2.16/user/articles/set-up-git", - "/de/enterprise/2.16/github/getting-started-with-github/set-up-git" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.17/user/getting-started-with-github/set-up-git", - "/de/enterprise/2.17/git-installation-redirect", - "/de/enterprise/2.17/user/git-installation-redirect", - "/de/enterprise/2.17/linux-git-installation", - "/de/enterprise/2.17/user/linux-git-installation", - "/de/enterprise/2.17/linux-set-up-git", - "/de/enterprise/2.17/user/linux-set-up-git", - "/de/enterprise/2.17/mac-git-installation", - "/de/enterprise/2.17/user/mac-git-installation", - "/de/enterprise/2.17/mac-set-up-git", - "/de/enterprise/2.17/user/mac-set-up-git", - "/de/enterprise/2.17/set-up-git-redirect", - "/de/enterprise/2.17/user/set-up-git-redirect", - "/de/enterprise/2.17/win-git-installation", - "/de/enterprise/2.17/user/win-git-installation", - "/de/enterprise/2.17/win-set-up-git", - "/de/enterprise/2.17/user/win-set-up-git", - "/de/enterprise/2.17/articles/set-up-git", - "/de/enterprise/2.17/user/articles/set-up-git", - "/de/enterprise/2.17/github/getting-started-with-github/set-up-git" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.13/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.13/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.13/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.13/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.14/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.14/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.14/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.14/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.15/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.15/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.15/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.15/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.13/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.13/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.13/user/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.13/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.13/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.13/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.14/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.14/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.14/user/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.14/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.14/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.14/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.15/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.15/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.15/user/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.15/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.15/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.15/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.16/user/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.16/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.17/user/articles/requesting-a-trial-of-github-enterprise", - "/de/enterprise/2.17/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.13/user/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.13/articles/signing-up-for-github", - "/de/enterprise/2.13/user/articles/signing-up-for-github", - "/de/enterprise/2.13/github/getting-started-with-github/signing-up-for-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.14/user/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.14/articles/signing-up-for-github", - "/de/enterprise/2.14/user/articles/signing-up-for-github", - "/de/enterprise/2.14/github/getting-started-with-github/signing-up-for-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.15/user/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.15/articles/signing-up-for-github", - "/de/enterprise/2.15/user/articles/signing-up-for-github", - "/de/enterprise/2.15/github/getting-started-with-github/signing-up-for-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.16/user/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.16/articles/signing-up-for-github", - "/de/enterprise/2.16/user/articles/signing-up-for-github", - "/de/enterprise/2.16/github/getting-started-with-github/signing-up-for-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.17/user/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.17/articles/signing-up-for-github", - "/de/enterprise/2.17/user/articles/signing-up-for-github", - "/de/enterprise/2.17/github/getting-started-with-github/signing-up-for-github" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.13/user/getting-started-with-github/supported-browsers", - "/de/enterprise/2.13/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.13/user/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.13/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.13/user/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.13/articles/supported-browsers", - "/de/enterprise/2.13/user/articles/supported-browsers", - "/de/enterprise/2.13/github/getting-started-with-github/supported-browsers" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.14/user/getting-started-with-github/supported-browsers", - "/de/enterprise/2.14/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.14/user/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.14/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.14/user/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.14/articles/supported-browsers", - "/de/enterprise/2.14/user/articles/supported-browsers", - "/de/enterprise/2.14/github/getting-started-with-github/supported-browsers" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.15/user/getting-started-with-github/supported-browsers", - "/de/enterprise/2.15/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.15/user/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.15/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.15/user/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.15/articles/supported-browsers", - "/de/enterprise/2.15/user/articles/supported-browsers", - "/de/enterprise/2.15/github/getting-started-with-github/supported-browsers" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.16/user/getting-started-with-github/supported-browsers", - "/de/enterprise/2.16/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.16/user/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.16/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.16/user/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.16/articles/supported-browsers", - "/de/enterprise/2.16/user/articles/supported-browsers", - "/de/enterprise/2.16/github/getting-started-with-github/supported-browsers" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.17/user/getting-started-with-github/supported-browsers", - "/de/enterprise/2.17/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.17/user/articles/why-doesn-t-graphs-work-with-ie-8", - "/de/enterprise/2.17/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.17/user/articles/why-don-t-graphs-work-with-ie8", - "/de/enterprise/2.17/articles/supported-browsers", - "/de/enterprise/2.17/user/articles/supported-browsers", - "/de/enterprise/2.17/github/getting-started-with-github/supported-browsers" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.13/user/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.13/manage-multiple-clients", - "/de/enterprise/2.13/user/manage-multiple-clients", - "/de/enterprise/2.13/managing-clients", - "/de/enterprise/2.13/user/managing-clients", - "/de/enterprise/2.13/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.13/user/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.13/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.13/user/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.13/articles/types-of-github-accounts", - "/de/enterprise/2.13/user/articles/types-of-github-accounts", - "/de/enterprise/2.13/github/getting-started-with-github/types-of-github-accounts" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.14/user/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.14/manage-multiple-clients", - "/de/enterprise/2.14/user/manage-multiple-clients", - "/de/enterprise/2.14/managing-clients", - "/de/enterprise/2.14/user/managing-clients", - "/de/enterprise/2.14/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.14/user/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.14/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.14/user/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.14/articles/types-of-github-accounts", - "/de/enterprise/2.14/user/articles/types-of-github-accounts", - "/de/enterprise/2.14/github/getting-started-with-github/types-of-github-accounts" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.15/user/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.15/manage-multiple-clients", - "/de/enterprise/2.15/user/manage-multiple-clients", - "/de/enterprise/2.15/managing-clients", - "/de/enterprise/2.15/user/managing-clients", - "/de/enterprise/2.15/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.15/user/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.15/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.15/user/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.15/articles/types-of-github-accounts", - "/de/enterprise/2.15/user/articles/types-of-github-accounts", - "/de/enterprise/2.15/github/getting-started-with-github/types-of-github-accounts" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.16/user/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.16/manage-multiple-clients", - "/de/enterprise/2.16/user/manage-multiple-clients", - "/de/enterprise/2.16/managing-clients", - "/de/enterprise/2.16/user/managing-clients", - "/de/enterprise/2.16/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.16/user/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.16/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.16/user/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.16/articles/types-of-github-accounts", - "/de/enterprise/2.16/user/articles/types-of-github-accounts", - "/de/enterprise/2.16/github/getting-started-with-github/types-of-github-accounts" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.17/user/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.17/manage-multiple-clients", - "/de/enterprise/2.17/user/manage-multiple-clients", - "/de/enterprise/2.17/managing-clients", - "/de/enterprise/2.17/user/managing-clients", - "/de/enterprise/2.17/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.17/user/articles/what-s-the-difference-between-user-and-organization-accounts", - "/de/enterprise/2.17/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.17/user/articles/differences-between-user-and-organization-accounts", - "/de/enterprise/2.17/articles/types-of-github-accounts", - "/de/enterprise/2.17/user/articles/types-of-github-accounts", - "/de/enterprise/2.17/github/getting-started-with-github/types-of-github-accounts" - ], - [ - "/de/enterprise/2.13/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.13/user/getting-started-with-github/using-github", - "/de/enterprise/2.13/articles/using-github", - "/de/enterprise/2.13/user/articles/using-github", - "/de/enterprise/2.13/github/getting-started-with-github/using-github" - ], - [ - "/de/enterprise/2.14/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.14/user/getting-started-with-github/using-github", - "/de/enterprise/2.14/articles/using-github", - "/de/enterprise/2.14/user/articles/using-github", - "/de/enterprise/2.14/github/getting-started-with-github/using-github" - ], - [ - "/de/enterprise/2.15/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.15/user/getting-started-with-github/using-github", - "/de/enterprise/2.15/articles/using-github", - "/de/enterprise/2.15/user/articles/using-github", - "/de/enterprise/2.15/github/getting-started-with-github/using-github" - ], - [ - "/de/enterprise/2.16/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.16/user/getting-started-with-github/using-github", - "/de/enterprise/2.16/articles/using-github", - "/de/enterprise/2.16/user/articles/using-github", - "/de/enterprise/2.16/github/getting-started-with-github/using-github" - ], - [ - "/de/enterprise/2.17/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.17/user/getting-started-with-github/using-github", - "/de/enterprise/2.17/articles/using-github", - "/de/enterprise/2.17/user/articles/using-github", - "/de/enterprise/2.17/github/getting-started-with-github/using-github" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.13/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.13/articles/add-an-existing-project-to-github", - "/de/enterprise/2.13/user/articles/add-an-existing-project-to-github", - "/de/enterprise/2.13/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.13/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.13/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.14/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.14/articles/add-an-existing-project-to-github", - "/de/enterprise/2.14/user/articles/add-an-existing-project-to-github", - "/de/enterprise/2.14/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.14/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.14/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.15/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.15/articles/add-an-existing-project-to-github", - "/de/enterprise/2.15/user/articles/add-an-existing-project-to-github", - "/de/enterprise/2.15/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.15/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.15/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/articles/add-an-existing-project-to-github", - "/de/enterprise/2.16/user/articles/add-an-existing-project-to-github", - "/de/enterprise/2.16/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/articles/add-an-existing-project-to-github", - "/de/enterprise/2.17/user/articles/add-an-existing-project-to-github", - "/de/enterprise/2.17/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.13/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.13/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.13/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.13/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.14/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.14/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.14/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.14/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.15/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.15/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.15/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.15/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.13/user/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.13/articles/importing-an-external-git-repository", - "/de/enterprise/2.13/user/articles/importing-an-external-git-repository", - "/de/enterprise/2.13/articles/importing-from-bitbucket", - "/de/enterprise/2.13/user/articles/importing-from-bitbucket", - "/de/enterprise/2.13/articles/importing-an-external-git-repo", - "/de/enterprise/2.13/user/articles/importing-an-external-git-repo", - "/de/enterprise/2.13/articles/importing-your-project-to-github", - "/de/enterprise/2.13/user/articles/importing-your-project-to-github", - "/de/enterprise/2.13/articles/importing-source-code-to-github", - "/de/enterprise/2.13/user/articles/importing-source-code-to-github", - "/de/enterprise/2.13/github/importing-your-projects-to-github/importing-source-code-to-github" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.14/user/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.14/articles/importing-an-external-git-repository", - "/de/enterprise/2.14/user/articles/importing-an-external-git-repository", - "/de/enterprise/2.14/articles/importing-from-bitbucket", - "/de/enterprise/2.14/user/articles/importing-from-bitbucket", - "/de/enterprise/2.14/articles/importing-an-external-git-repo", - "/de/enterprise/2.14/user/articles/importing-an-external-git-repo", - "/de/enterprise/2.14/articles/importing-your-project-to-github", - "/de/enterprise/2.14/user/articles/importing-your-project-to-github", - "/de/enterprise/2.14/articles/importing-source-code-to-github", - "/de/enterprise/2.14/user/articles/importing-source-code-to-github", - "/de/enterprise/2.14/github/importing-your-projects-to-github/importing-source-code-to-github" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.15/user/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.15/articles/importing-an-external-git-repository", - "/de/enterprise/2.15/user/articles/importing-an-external-git-repository", - "/de/enterprise/2.15/articles/importing-from-bitbucket", - "/de/enterprise/2.15/user/articles/importing-from-bitbucket", - "/de/enterprise/2.15/articles/importing-an-external-git-repo", - "/de/enterprise/2.15/user/articles/importing-an-external-git-repo", - "/de/enterprise/2.15/articles/importing-your-project-to-github", - "/de/enterprise/2.15/user/articles/importing-your-project-to-github", - "/de/enterprise/2.15/articles/importing-source-code-to-github", - "/de/enterprise/2.15/user/articles/importing-source-code-to-github", - "/de/enterprise/2.15/github/importing-your-projects-to-github/importing-source-code-to-github" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.16/articles/importing-an-external-git-repository", - "/de/enterprise/2.16/user/articles/importing-an-external-git-repository", - "/de/enterprise/2.16/articles/importing-from-bitbucket", - "/de/enterprise/2.16/user/articles/importing-from-bitbucket", - "/de/enterprise/2.16/articles/importing-an-external-git-repo", - "/de/enterprise/2.16/user/articles/importing-an-external-git-repo", - "/de/enterprise/2.16/articles/importing-your-project-to-github", - "/de/enterprise/2.16/user/articles/importing-your-project-to-github", - "/de/enterprise/2.16/articles/importing-source-code-to-github", - "/de/enterprise/2.16/user/articles/importing-source-code-to-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/importing-source-code-to-github" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.17/articles/importing-an-external-git-repository", - "/de/enterprise/2.17/user/articles/importing-an-external-git-repository", - "/de/enterprise/2.17/articles/importing-from-bitbucket", - "/de/enterprise/2.17/user/articles/importing-from-bitbucket", - "/de/enterprise/2.17/articles/importing-an-external-git-repo", - "/de/enterprise/2.17/user/articles/importing-an-external-git-repo", - "/de/enterprise/2.17/articles/importing-your-project-to-github", - "/de/enterprise/2.17/user/articles/importing-your-project-to-github", - "/de/enterprise/2.17/articles/importing-source-code-to-github", - "/de/enterprise/2.17/user/articles/importing-source-code-to-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/importing-source-code-to-github" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github", - "/de/enterprise/2.13/user/importing-your-projects-to-github", - "/de/enterprise/2.13/categories/67/articles", - "/de/enterprise/2.13/user/categories/67/articles", - "/de/enterprise/2.13/categories/importing", - "/de/enterprise/2.13/user/categories/importing", - "/de/enterprise/2.13/categories/importing-your-projects-to-github", - "/de/enterprise/2.13/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.13/github/importing-your-projects-to-github" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github", - "/de/enterprise/2.14/user/importing-your-projects-to-github", - "/de/enterprise/2.14/categories/67/articles", - "/de/enterprise/2.14/user/categories/67/articles", - "/de/enterprise/2.14/categories/importing", - "/de/enterprise/2.14/user/categories/importing", - "/de/enterprise/2.14/categories/importing-your-projects-to-github", - "/de/enterprise/2.14/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.14/github/importing-your-projects-to-github" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github", - "/de/enterprise/2.15/user/importing-your-projects-to-github", - "/de/enterprise/2.15/categories/67/articles", - "/de/enterprise/2.15/user/categories/67/articles", - "/de/enterprise/2.15/categories/importing", - "/de/enterprise/2.15/user/categories/importing", - "/de/enterprise/2.15/categories/importing-your-projects-to-github", - "/de/enterprise/2.15/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.15/github/importing-your-projects-to-github" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github", - "/de/enterprise/2.16/categories/67/articles", - "/de/enterprise/2.16/user/categories/67/articles", - "/de/enterprise/2.16/categories/importing", - "/de/enterprise/2.16/user/categories/importing", - "/de/enterprise/2.16/categories/importing-your-projects-to-github", - "/de/enterprise/2.16/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github", - "/de/enterprise/2.17/categories/67/articles", - "/de/enterprise/2.17/user/categories/67/articles", - "/de/enterprise/2.17/categories/importing", - "/de/enterprise/2.17/user/categories/importing", - "/de/enterprise/2.17/categories/importing-your-projects-to-github", - "/de/enterprise/2.17/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.13/user/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.13/articles/importing-from-subversion", - "/de/enterprise/2.13/user/articles/importing-from-subversion", - "/de/enterprise/2.13/articles/source-code-migration-tools", - "/de/enterprise/2.13/user/articles/source-code-migration-tools", - "/de/enterprise/2.13/github/importing-your-projects-to-github/source-code-migration-tools" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.14/user/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.14/articles/importing-from-subversion", - "/de/enterprise/2.14/user/articles/importing-from-subversion", - "/de/enterprise/2.14/articles/source-code-migration-tools", - "/de/enterprise/2.14/user/articles/source-code-migration-tools", - "/de/enterprise/2.14/github/importing-your-projects-to-github/source-code-migration-tools" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.15/user/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.15/articles/importing-from-subversion", - "/de/enterprise/2.15/user/articles/importing-from-subversion", - "/de/enterprise/2.15/articles/source-code-migration-tools", - "/de/enterprise/2.15/user/articles/source-code-migration-tools", - "/de/enterprise/2.15/github/importing-your-projects-to-github/source-code-migration-tools" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.16/user/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.16/articles/importing-from-subversion", - "/de/enterprise/2.16/user/articles/importing-from-subversion", - "/de/enterprise/2.16/articles/source-code-migration-tools", - "/de/enterprise/2.16/user/articles/source-code-migration-tools", - "/de/enterprise/2.16/github/importing-your-projects-to-github/source-code-migration-tools" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.17/user/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.17/articles/importing-from-subversion", - "/de/enterprise/2.17/user/articles/importing-from-subversion", - "/de/enterprise/2.17/articles/source-code-migration-tools", - "/de/enterprise/2.17/user/articles/source-code-migration-tools", - "/de/enterprise/2.17/github/importing-your-projects-to-github/source-code-migration-tools" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.13/user/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.13/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.13/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.13/github/importing-your-projects-to-github/subversion-properties-supported-by-github" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.14/user/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.14/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.14/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.14/github/importing-your-projects-to-github/subversion-properties-supported-by-github" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.15/user/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.15/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.15/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.15/github/importing-your-projects-to-github/subversion-properties-supported-by-github" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.16/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.16/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/subversion-properties-supported-by-github" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.17/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.17/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/subversion-properties-supported-by-github" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.13/user/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.13/articles/support-for-subversion-clients", - "/de/enterprise/2.13/user/articles/support-for-subversion-clients", - "/de/enterprise/2.13/github/importing-your-projects-to-github/support-for-subversion-clients" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.14/user/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.14/articles/support-for-subversion-clients", - "/de/enterprise/2.14/user/articles/support-for-subversion-clients", - "/de/enterprise/2.14/github/importing-your-projects-to-github/support-for-subversion-clients" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.15/user/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.15/articles/support-for-subversion-clients", - "/de/enterprise/2.15/user/articles/support-for-subversion-clients", - "/de/enterprise/2.15/github/importing-your-projects-to-github/support-for-subversion-clients" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.16/user/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.16/articles/support-for-subversion-clients", - "/de/enterprise/2.16/user/articles/support-for-subversion-clients", - "/de/enterprise/2.16/github/importing-your-projects-to-github/support-for-subversion-clients" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.17/user/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.17/articles/support-for-subversion-clients", - "/de/enterprise/2.17/user/articles/support-for-subversion-clients", - "/de/enterprise/2.17/github/importing-your-projects-to-github/support-for-subversion-clients" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.13/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.13/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.13/user/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.13/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.13/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.13/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.14/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.14/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.14/user/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.14/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.14/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.14/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.15/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.15/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.15/user/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.15/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.15/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.15/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.16/user/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.16/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.17/user/articles/what-are-the-differences-between-svn-and-git", - "/de/enterprise/2.17/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git" - ], - [ - "/de/enterprise/2.13/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.13/user/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.13/articles/working-with-subversion-on-github", - "/de/enterprise/2.13/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.13/github/importing-your-projects-to-github/working-with-subversion-on-github" - ], - [ - "/de/enterprise/2.14/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.14/user/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.14/articles/working-with-subversion-on-github", - "/de/enterprise/2.14/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.14/github/importing-your-projects-to-github/working-with-subversion-on-github" - ], - [ - "/de/enterprise/2.15/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.15/user/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.15/articles/working-with-subversion-on-github", - "/de/enterprise/2.15/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.15/github/importing-your-projects-to-github/working-with-subversion-on-github" - ], - [ - "/de/enterprise/2.16/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.16/articles/working-with-subversion-on-github", - "/de/enterprise/2.16/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/working-with-subversion-on-github" - ], - [ - "/de/enterprise/2.17/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.17/articles/working-with-subversion-on-github", - "/de/enterprise/2.17/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/working-with-subversion-on-github" - ], - [ - "/de/enterprise/2.13/user/github", - "/de/enterprise/2.13/user", - "/de/enterprise/2.13/articles", - "/de/enterprise/2.13/user/articles", - "/de/enterprise/2.13/common-issues-and-questions", - "/de/enterprise/2.13/user/common-issues-and-questions", - "/de/enterprise/2.13/troubleshooting-common-issues", - "/de/enterprise/2.13/user/troubleshooting-common-issues", - "/de/enterprise/2.13/github" - ], - [ - "/de/enterprise/2.14/user/github", - "/de/enterprise/2.14/user", - "/de/enterprise/2.14/articles", - "/de/enterprise/2.14/user/articles", - "/de/enterprise/2.14/common-issues-and-questions", - "/de/enterprise/2.14/user/common-issues-and-questions", - "/de/enterprise/2.14/troubleshooting-common-issues", - "/de/enterprise/2.14/user/troubleshooting-common-issues", - "/de/enterprise/2.14/github" - ], - [ - "/de/enterprise/2.15/user/github", - "/de/enterprise/2.15/user", - "/de/enterprise/2.15/articles", - "/de/enterprise/2.15/user/articles", - "/de/enterprise/2.15/common-issues-and-questions", - "/de/enterprise/2.15/user/common-issues-and-questions", - "/de/enterprise/2.15/troubleshooting-common-issues", - "/de/enterprise/2.15/user/troubleshooting-common-issues", - "/de/enterprise/2.15/github" - ], - [ - "/de/enterprise/2.16/user/github", - "/de/enterprise/2.16/user", - "/de/enterprise/2.16/articles", - "/de/enterprise/2.16/user/articles", - "/de/enterprise/2.16/common-issues-and-questions", - "/de/enterprise/2.16/user/common-issues-and-questions", - "/de/enterprise/2.16/troubleshooting-common-issues", - "/de/enterprise/2.16/user/troubleshooting-common-issues", - "/de/enterprise/2.16/github" - ], - [ - "/de/enterprise/2.17/user/github", - "/de/enterprise/2.17/user", - "/de/enterprise/2.17/articles", - "/de/enterprise/2.17/user/articles", - "/de/enterprise/2.17/common-issues-and-questions", - "/de/enterprise/2.17/user/common-issues-and-questions", - "/de/enterprise/2.17/troubleshooting-common-issues", - "/de/enterprise/2.17/user/troubleshooting-common-issues", - "/de/enterprise/2.17/github" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.13/user/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.13/articles/stl-file-viewer", - "/de/enterprise/2.13/user/articles/stl-file-viewer", - "/de/enterprise/2.13/articles/3d-file-viewer", - "/de/enterprise/2.13/user/articles/3d-file-viewer", - "/de/enterprise/2.13/github/managing-files-in-a-repository/3d-file-viewer" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.14/user/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.14/articles/stl-file-viewer", - "/de/enterprise/2.14/user/articles/stl-file-viewer", - "/de/enterprise/2.14/articles/3d-file-viewer", - "/de/enterprise/2.14/user/articles/3d-file-viewer", - "/de/enterprise/2.14/github/managing-files-in-a-repository/3d-file-viewer" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.15/user/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.15/articles/stl-file-viewer", - "/de/enterprise/2.15/user/articles/stl-file-viewer", - "/de/enterprise/2.15/articles/3d-file-viewer", - "/de/enterprise/2.15/user/articles/3d-file-viewer", - "/de/enterprise/2.15/github/managing-files-in-a-repository/3d-file-viewer" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.16/user/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.16/articles/stl-file-viewer", - "/de/enterprise/2.16/user/articles/stl-file-viewer", - "/de/enterprise/2.16/articles/3d-file-viewer", - "/de/enterprise/2.16/user/articles/3d-file-viewer", - "/de/enterprise/2.16/github/managing-files-in-a-repository/3d-file-viewer" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.17/user/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.17/articles/stl-file-viewer", - "/de/enterprise/2.17/user/articles/stl-file-viewer", - "/de/enterprise/2.17/articles/3d-file-viewer", - "/de/enterprise/2.17/user/articles/3d-file-viewer", - "/de/enterprise/2.17/github/managing-files-in-a-repository/3d-file-viewer" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.13/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.13/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.13/user/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.13/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.13/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.13/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.14/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.14/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.14/user/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.14/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.14/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.14/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.15/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.15/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.15/user/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.15/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.15/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.15/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.16/user/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.16/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.17/user/articles/adding-a-file-to-a-repository-from-the-command-line", - "/de/enterprise/2.17/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.13/user/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.13/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.13/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.13/github/managing-files-in-a-repository/adding-a-file-to-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.14/user/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.14/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.14/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.14/github/managing-files-in-a-repository/adding-a-file-to-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.15/user/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.15/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.15/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.15/github/managing-files-in-a-repository/adding-a-file-to-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.16/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.16/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/adding-a-file-to-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.17/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.17/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/adding-a-file-to-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.13/user/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.13/articles/creating-new-files", - "/de/enterprise/2.13/user/articles/creating-new-files", - "/de/enterprise/2.13/github/managing-files-in-a-repository/creating-new-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.14/user/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.14/articles/creating-new-files", - "/de/enterprise/2.14/user/articles/creating-new-files", - "/de/enterprise/2.14/github/managing-files-in-a-repository/creating-new-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.15/user/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.15/articles/creating-new-files", - "/de/enterprise/2.15/user/articles/creating-new-files", - "/de/enterprise/2.15/github/managing-files-in-a-repository/creating-new-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.16/articles/creating-new-files", - "/de/enterprise/2.16/user/articles/creating-new-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/creating-new-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.17/articles/creating-new-files", - "/de/enterprise/2.17/user/articles/creating-new-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/creating-new-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.13/user/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.13/articles/deleting-files", - "/de/enterprise/2.13/user/articles/deleting-files", - "/de/enterprise/2.13/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.13/user/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.13/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.13/user/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.13/github/managing-files-in-a-repository/deleting-files-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.14/user/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.14/articles/deleting-files", - "/de/enterprise/2.14/user/articles/deleting-files", - "/de/enterprise/2.14/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.14/user/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.14/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.14/user/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.14/github/managing-files-in-a-repository/deleting-files-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.15/user/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.15/articles/deleting-files", - "/de/enterprise/2.15/user/articles/deleting-files", - "/de/enterprise/2.15/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.15/user/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.15/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.15/user/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.15/github/managing-files-in-a-repository/deleting-files-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.16/articles/deleting-files", - "/de/enterprise/2.16/user/articles/deleting-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.16/user/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.16/github/managing-files-in-a-repository/deleting-files-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/deleting-files-in-a-repository", - "/de/enterprise/2.17/articles/deleting-files", - "/de/enterprise/2.17/user/articles/deleting-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.17/user/managing-files-in-a-repository/deleting-a-file-or-directory", - "/de/enterprise/2.17/github/managing-files-in-a-repository/deleting-files-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.13/user/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.13/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.13/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.13/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.13/user/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.13/github/managing-files-in-a-repository/editing-files-in-another-users-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.14/user/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.14/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.14/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.14/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.14/user/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.14/github/managing-files-in-a-repository/editing-files-in-another-users-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.15/user/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.15/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.15/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.15/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.15/user/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.15/github/managing-files-in-a-repository/editing-files-in-another-users-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.16/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.16/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.16/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.16/user/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/editing-files-in-another-users-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.17/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.17/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.17/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.17/user/articles/editing-files-in-another-user-s-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/editing-files-in-another-users-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.13/user/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.13/articles/editing-files", - "/de/enterprise/2.13/user/articles/editing-files", - "/de/enterprise/2.13/articles/editing-files-in-your-repository", - "/de/enterprise/2.13/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.13/github/managing-files-in-a-repository/editing-files-in-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.14/user/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.14/articles/editing-files", - "/de/enterprise/2.14/user/articles/editing-files", - "/de/enterprise/2.14/articles/editing-files-in-your-repository", - "/de/enterprise/2.14/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.14/github/managing-files-in-a-repository/editing-files-in-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.15/user/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.15/articles/editing-files", - "/de/enterprise/2.15/user/articles/editing-files", - "/de/enterprise/2.15/articles/editing-files-in-your-repository", - "/de/enterprise/2.15/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.15/github/managing-files-in-a-repository/editing-files-in-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.16/articles/editing-files", - "/de/enterprise/2.16/user/articles/editing-files", - "/de/enterprise/2.16/articles/editing-files-in-your-repository", - "/de/enterprise/2.16/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/editing-files-in-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.17/articles/editing-files", - "/de/enterprise/2.17/user/articles/editing-files", - "/de/enterprise/2.17/articles/editing-files-in-your-repository", - "/de/enterprise/2.17/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/editing-files-in-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.13/user/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.13/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.13/user/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.13/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.13/user/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.13/articles/getting-permanent-links-to-files", - "/de/enterprise/2.13/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.13/github/managing-files-in-a-repository/getting-permanent-links-to-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.14/user/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.14/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.14/user/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.14/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.14/user/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.14/articles/getting-permanent-links-to-files", - "/de/enterprise/2.14/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.14/github/managing-files-in-a-repository/getting-permanent-links-to-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.15/user/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.15/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.15/user/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.15/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.15/user/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.15/articles/getting-permanent-links-to-files", - "/de/enterprise/2.15/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.15/github/managing-files-in-a-repository/getting-permanent-links-to-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.16/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.16/user/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.16/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.16/user/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.16/articles/getting-permanent-links-to-files", - "/de/enterprise/2.16/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/getting-permanent-links-to-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.17/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.17/user/articles/getting-a-permanent-link-to-a-file", - "/de/enterprise/2.17/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.17/user/articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url", - "/de/enterprise/2.17/articles/getting-permanent-links-to-files", - "/de/enterprise/2.17/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/getting-permanent-links-to-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository", - "/de/enterprise/2.13/user/managing-files-in-a-repository", - "/de/enterprise/2.13/categories/81/articles", - "/de/enterprise/2.13/user/categories/81/articles", - "/de/enterprise/2.13/categories/manipulating-files", - "/de/enterprise/2.13/user/categories/manipulating-files", - "/de/enterprise/2.13/categories/managing-files-in-a-repository", - "/de/enterprise/2.13/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.13/github/managing-files-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository", - "/de/enterprise/2.14/user/managing-files-in-a-repository", - "/de/enterprise/2.14/categories/81/articles", - "/de/enterprise/2.14/user/categories/81/articles", - "/de/enterprise/2.14/categories/manipulating-files", - "/de/enterprise/2.14/user/categories/manipulating-files", - "/de/enterprise/2.14/categories/managing-files-in-a-repository", - "/de/enterprise/2.14/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.14/github/managing-files-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository", - "/de/enterprise/2.15/user/managing-files-in-a-repository", - "/de/enterprise/2.15/categories/81/articles", - "/de/enterprise/2.15/user/categories/81/articles", - "/de/enterprise/2.15/categories/manipulating-files", - "/de/enterprise/2.15/user/categories/manipulating-files", - "/de/enterprise/2.15/categories/managing-files-in-a-repository", - "/de/enterprise/2.15/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.15/github/managing-files-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository", - "/de/enterprise/2.16/categories/81/articles", - "/de/enterprise/2.16/user/categories/81/articles", - "/de/enterprise/2.16/categories/manipulating-files", - "/de/enterprise/2.16/user/categories/manipulating-files", - "/de/enterprise/2.16/categories/managing-files-in-a-repository", - "/de/enterprise/2.16/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository", - "/de/enterprise/2.17/categories/81/articles", - "/de/enterprise/2.17/user/categories/81/articles", - "/de/enterprise/2.17/categories/manipulating-files", - "/de/enterprise/2.17/user/categories/manipulating-files", - "/de/enterprise/2.17/categories/managing-files-in-a-repository", - "/de/enterprise/2.17/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.13/user/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.13/articles/managing-files-on-github", - "/de/enterprise/2.13/user/articles/managing-files-on-github", - "/de/enterprise/2.13/github/managing-files-in-a-repository/managing-files-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.14/user/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.14/articles/managing-files-on-github", - "/de/enterprise/2.14/user/articles/managing-files-on-github", - "/de/enterprise/2.14/github/managing-files-in-a-repository/managing-files-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.15/user/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.15/articles/managing-files-on-github", - "/de/enterprise/2.15/user/articles/managing-files-on-github", - "/de/enterprise/2.15/github/managing-files-in-a-repository/managing-files-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.16/articles/managing-files-on-github", - "/de/enterprise/2.16/user/articles/managing-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/managing-files-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.17/articles/managing-files-on-github", - "/de/enterprise/2.17/user/articles/managing-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/managing-files-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.13/user/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.13/articles/managing-files-using-the-command-line", - "/de/enterprise/2.13/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.13/github/managing-files-in-a-repository/managing-files-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.14/user/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.14/articles/managing-files-using-the-command-line", - "/de/enterprise/2.14/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.14/github/managing-files-in-a-repository/managing-files-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.15/user/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.15/articles/managing-files-using-the-command-line", - "/de/enterprise/2.15/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.15/github/managing-files-in-a-repository/managing-files-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.16/articles/managing-files-using-the-command-line", - "/de/enterprise/2.16/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/managing-files-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.17/articles/managing-files-using-the-command-line", - "/de/enterprise/2.17/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/managing-files-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.13/user/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.13/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.13/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.13/github/managing-files-in-a-repository/mapping-geojson-files-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.14/user/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.14/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.14/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.14/github/managing-files-in-a-repository/mapping-geojson-files-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.15/user/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.15/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.15/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.15/github/managing-files-in-a-repository/mapping-geojson-files-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.16/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.16/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/mapping-geojson-files-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.17/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.17/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/mapping-geojson-files-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.13/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.13/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.13/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.13/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.14/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.14/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.14/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.14/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.15/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.15/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.15/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.15/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.13/user/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.13/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.13/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.13/github/managing-files-in-a-repository/moving-a-file-to-a-new-location" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.14/user/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.14/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.14/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.14/github/managing-files-in-a-repository/moving-a-file-to-a-new-location" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.15/user/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.15/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.15/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.15/github/managing-files-in-a-repository/moving-a-file-to-a-new-location" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/user/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/github/managing-files-in-a-repository/moving-a-file-to-a-new-location" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/user/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/github/managing-files-in-a-repository/moving-a-file-to-a-new-location" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.13/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.13/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.13/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.13/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.14/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.14/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.14/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.14/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.15/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.15/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.15/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.15/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.13/user/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.13/articles/renaming-a-file", - "/de/enterprise/2.13/user/articles/renaming-a-file", - "/de/enterprise/2.13/github/managing-files-in-a-repository/renaming-a-file" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.14/user/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.14/articles/renaming-a-file", - "/de/enterprise/2.14/user/articles/renaming-a-file", - "/de/enterprise/2.14/github/managing-files-in-a-repository/renaming-a-file" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.15/user/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.15/articles/renaming-a-file", - "/de/enterprise/2.15/user/articles/renaming-a-file", - "/de/enterprise/2.15/github/managing-files-in-a-repository/renaming-a-file" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.16/user/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.16/articles/renaming-a-file", - "/de/enterprise/2.16/user/articles/renaming-a-file", - "/de/enterprise/2.16/github/managing-files-in-a-repository/renaming-a-file" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.17/user/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.17/articles/renaming-a-file", - "/de/enterprise/2.17/user/articles/renaming-a-file", - "/de/enterprise/2.17/github/managing-files-in-a-repository/renaming-a-file" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.13/user/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.13/articles/rendering-and-diffing-images", - "/de/enterprise/2.13/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.13/github/managing-files-in-a-repository/rendering-and-diffing-images" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.14/user/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.14/articles/rendering-and-diffing-images", - "/de/enterprise/2.14/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.14/github/managing-files-in-a-repository/rendering-and-diffing-images" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.15/user/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.15/articles/rendering-and-diffing-images", - "/de/enterprise/2.15/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.15/github/managing-files-in-a-repository/rendering-and-diffing-images" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.16/articles/rendering-and-diffing-images", - "/de/enterprise/2.16/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-and-diffing-images" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.17/articles/rendering-and-diffing-images", - "/de/enterprise/2.17/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-and-diffing-images" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.13/user/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.13/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.13/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.13/github/managing-files-in-a-repository/rendering-csv-and-tsv-data" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.14/user/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.14/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.14/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.14/github/managing-files-in-a-repository/rendering-csv-and-tsv-data" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.15/user/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.15/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.15/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.15/github/managing-files-in-a-repository/rendering-csv-and-tsv-data" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-csv-and-tsv-data" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-csv-and-tsv-data" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.13/user/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.13/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.13/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.13/github/managing-files-in-a-repository/rendering-differences-in-prose-documents" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.14/user/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.14/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.14/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.14/github/managing-files-in-a-repository/rendering-differences-in-prose-documents" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.15/user/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.15/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.15/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.15/github/managing-files-in-a-repository/rendering-differences-in-prose-documents" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-differences-in-prose-documents" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-differences-in-prose-documents" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.13/user/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.13/articles/rendering-pdf-documents", - "/de/enterprise/2.13/user/articles/rendering-pdf-documents", - "/de/enterprise/2.13/github/managing-files-in-a-repository/rendering-pdf-documents" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.14/user/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.14/articles/rendering-pdf-documents", - "/de/enterprise/2.14/user/articles/rendering-pdf-documents", - "/de/enterprise/2.14/github/managing-files-in-a-repository/rendering-pdf-documents" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.15/user/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.15/articles/rendering-pdf-documents", - "/de/enterprise/2.15/user/articles/rendering-pdf-documents", - "/de/enterprise/2.15/github/managing-files-in-a-repository/rendering-pdf-documents" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.16/articles/rendering-pdf-documents", - "/de/enterprise/2.16/user/articles/rendering-pdf-documents", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-pdf-documents" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.17/articles/rendering-pdf-documents", - "/de/enterprise/2.17/user/articles/rendering-pdf-documents", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-pdf-documents" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.13/user/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.13/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.13/user/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.13/articles/tracing-changes-in-a-file", - "/de/enterprise/2.13/user/articles/tracing-changes-in-a-file", - "/de/enterprise/2.13/articles/tracking-changes-in-a-file", - "/de/enterprise/2.13/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.13/github/managing-files-in-a-repository/tracking-changes-in-a-file" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.14/user/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.14/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.14/user/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.14/articles/tracing-changes-in-a-file", - "/de/enterprise/2.14/user/articles/tracing-changes-in-a-file", - "/de/enterprise/2.14/articles/tracking-changes-in-a-file", - "/de/enterprise/2.14/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.14/github/managing-files-in-a-repository/tracking-changes-in-a-file" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.15/user/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.15/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.15/user/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.15/articles/tracing-changes-in-a-file", - "/de/enterprise/2.15/user/articles/tracing-changes-in-a-file", - "/de/enterprise/2.15/articles/tracking-changes-in-a-file", - "/de/enterprise/2.15/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.15/github/managing-files-in-a-repository/tracking-changes-in-a-file" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.16/user/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.16/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.16/user/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.16/articles/tracing-changes-in-a-file", - "/de/enterprise/2.16/user/articles/tracing-changes-in-a-file", - "/de/enterprise/2.16/articles/tracking-changes-in-a-file", - "/de/enterprise/2.16/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.16/github/managing-files-in-a-repository/tracking-changes-in-a-file" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.17/user/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.17/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.17/user/articles/using-git-blame-to-trace-changes-in-a-file", - "/de/enterprise/2.17/articles/tracing-changes-in-a-file", - "/de/enterprise/2.17/user/articles/tracing-changes-in-a-file", - "/de/enterprise/2.17/articles/tracking-changes-in-a-file", - "/de/enterprise/2.17/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.17/github/managing-files-in-a-repository/tracking-changes-in-a-file" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.13/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.13/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.13/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.13/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.14/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.14/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.14/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.14/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.15/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.15/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.15/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.15/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.13/user/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.13/categories/89/articles", - "/de/enterprise/2.13/user/categories/89/articles", - "/de/enterprise/2.13/articles/working-with-non-code-files", - "/de/enterprise/2.13/user/articles/working-with-non-code-files", - "/de/enterprise/2.13/github/managing-files-in-a-repository/working-with-non-code-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.14/user/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.14/categories/89/articles", - "/de/enterprise/2.14/user/categories/89/articles", - "/de/enterprise/2.14/articles/working-with-non-code-files", - "/de/enterprise/2.14/user/articles/working-with-non-code-files", - "/de/enterprise/2.14/github/managing-files-in-a-repository/working-with-non-code-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.15/user/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.15/categories/89/articles", - "/de/enterprise/2.15/user/categories/89/articles", - "/de/enterprise/2.15/articles/working-with-non-code-files", - "/de/enterprise/2.15/user/articles/working-with-non-code-files", - "/de/enterprise/2.15/github/managing-files-in-a-repository/working-with-non-code-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.16/categories/89/articles", - "/de/enterprise/2.16/user/categories/89/articles", - "/de/enterprise/2.16/articles/working-with-non-code-files", - "/de/enterprise/2.16/user/articles/working-with-non-code-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/working-with-non-code-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.17/categories/89/articles", - "/de/enterprise/2.17/user/categories/89/articles", - "/de/enterprise/2.17/articles/working-with-non-code-files", - "/de/enterprise/2.17/user/articles/working-with-non-code-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/working-with-non-code-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.13/articles/about-large-file-storage", - "/de/enterprise/2.13/user/articles/about-large-file-storage", - "/de/enterprise/2.13/articles/about-git-large-file-storage", - "/de/enterprise/2.13/user/articles/about-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/about-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.14/articles/about-large-file-storage", - "/de/enterprise/2.14/user/articles/about-large-file-storage", - "/de/enterprise/2.14/articles/about-git-large-file-storage", - "/de/enterprise/2.14/user/articles/about-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/about-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.15/articles/about-large-file-storage", - "/de/enterprise/2.15/user/articles/about-large-file-storage", - "/de/enterprise/2.15/articles/about-git-large-file-storage", - "/de/enterprise/2.15/user/articles/about-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/about-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.16/articles/about-large-file-storage", - "/de/enterprise/2.16/user/articles/about-large-file-storage", - "/de/enterprise/2.16/articles/about-git-large-file-storage", - "/de/enterprise/2.16/user/articles/about-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/about-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.17/articles/about-large-file-storage", - "/de/enterprise/2.17/user/articles/about-large-file-storage", - "/de/enterprise/2.17/articles/about-git-large-file-storage", - "/de/enterprise/2.17/user/articles/about-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/about-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.13/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.13/user/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.13/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.13/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/collaboration-with-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.14/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.14/user/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.14/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.14/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/collaboration-with-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.15/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.15/user/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.15/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.15/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/collaboration-with-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.16/user/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.16/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/collaboration-with-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.17/user/articles/collaboration-with-large-file-storage", - "/de/enterprise/2.17/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/collaboration-with-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.13/user/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.13/articles/conditions-for-large-files", - "/de/enterprise/2.13/user/articles/conditions-for-large-files", - "/de/enterprise/2.13/github/managing-large-files/conditions-for-large-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.14/user/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.14/articles/conditions-for-large-files", - "/de/enterprise/2.14/user/articles/conditions-for-large-files", - "/de/enterprise/2.14/github/managing-large-files/conditions-for-large-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.15/user/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.15/articles/conditions-for-large-files", - "/de/enterprise/2.15/user/articles/conditions-for-large-files", - "/de/enterprise/2.15/github/managing-large-files/conditions-for-large-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.16/user/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.16/articles/conditions-for-large-files", - "/de/enterprise/2.16/user/articles/conditions-for-large-files", - "/de/enterprise/2.16/github/managing-large-files/conditions-for-large-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.17/user/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.17/articles/conditions-for-large-files", - "/de/enterprise/2.17/user/articles/conditions-for-large-files", - "/de/enterprise/2.17/github/managing-large-files/conditions-for-large-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.13/articles/configuring-large-file-storage", - "/de/enterprise/2.13/user/articles/configuring-large-file-storage", - "/de/enterprise/2.13/articles/configuring-git-large-file-storage", - "/de/enterprise/2.13/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/configuring-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.14/articles/configuring-large-file-storage", - "/de/enterprise/2.14/user/articles/configuring-large-file-storage", - "/de/enterprise/2.14/articles/configuring-git-large-file-storage", - "/de/enterprise/2.14/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/configuring-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.15/articles/configuring-large-file-storage", - "/de/enterprise/2.15/user/articles/configuring-large-file-storage", - "/de/enterprise/2.15/articles/configuring-git-large-file-storage", - "/de/enterprise/2.15/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/configuring-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.16/articles/configuring-large-file-storage", - "/de/enterprise/2.16/user/articles/configuring-large-file-storage", - "/de/enterprise/2.16/articles/configuring-git-large-file-storage", - "/de/enterprise/2.16/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/configuring-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.17/articles/configuring-large-file-storage", - "/de/enterprise/2.17/user/articles/configuring-large-file-storage", - "/de/enterprise/2.17/articles/configuring-git-large-file-storage", - "/de/enterprise/2.17/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/configuring-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.13/user/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.13/articles/distributing-large-binaries", - "/de/enterprise/2.13/user/articles/distributing-large-binaries", - "/de/enterprise/2.13/github/managing-large-files/distributing-large-binaries" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.14/user/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.14/articles/distributing-large-binaries", - "/de/enterprise/2.14/user/articles/distributing-large-binaries", - "/de/enterprise/2.14/github/managing-large-files/distributing-large-binaries" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.15/user/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.15/articles/distributing-large-binaries", - "/de/enterprise/2.15/user/articles/distributing-large-binaries", - "/de/enterprise/2.15/github/managing-large-files/distributing-large-binaries" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.16/user/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.16/articles/distributing-large-binaries", - "/de/enterprise/2.16/user/articles/distributing-large-binaries", - "/de/enterprise/2.16/github/managing-large-files/distributing-large-binaries" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.17/user/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.17/articles/distributing-large-binaries", - "/de/enterprise/2.17/user/articles/distributing-large-binaries", - "/de/enterprise/2.17/github/managing-large-files/distributing-large-binaries" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files", - "/de/enterprise/2.13/user/managing-large-files", - "/de/enterprise/2.13/categories/managing-large-files", - "/de/enterprise/2.13/user/categories/managing-large-files", - "/de/enterprise/2.13/github/managing-large-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files", - "/de/enterprise/2.14/user/managing-large-files", - "/de/enterprise/2.14/categories/managing-large-files", - "/de/enterprise/2.14/user/categories/managing-large-files", - "/de/enterprise/2.14/github/managing-large-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files", - "/de/enterprise/2.15/user/managing-large-files", - "/de/enterprise/2.15/categories/managing-large-files", - "/de/enterprise/2.15/user/categories/managing-large-files", - "/de/enterprise/2.15/github/managing-large-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files", - "/de/enterprise/2.16/user/managing-large-files", - "/de/enterprise/2.16/categories/managing-large-files", - "/de/enterprise/2.16/user/categories/managing-large-files", - "/de/enterprise/2.16/github/managing-large-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files", - "/de/enterprise/2.17/user/managing-large-files", - "/de/enterprise/2.17/categories/managing-large-files", - "/de/enterprise/2.17/user/categories/managing-large-files", - "/de/enterprise/2.17/github/managing-large-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.13/articles/installing-large-file-storage", - "/de/enterprise/2.13/user/articles/installing-large-file-storage", - "/de/enterprise/2.13/articles/installing-git-large-file-storage", - "/de/enterprise/2.13/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/installing-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.14/articles/installing-large-file-storage", - "/de/enterprise/2.14/user/articles/installing-large-file-storage", - "/de/enterprise/2.14/articles/installing-git-large-file-storage", - "/de/enterprise/2.14/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/installing-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.15/articles/installing-large-file-storage", - "/de/enterprise/2.15/user/articles/installing-large-file-storage", - "/de/enterprise/2.15/articles/installing-git-large-file-storage", - "/de/enterprise/2.15/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/installing-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.16/articles/installing-large-file-storage", - "/de/enterprise/2.16/user/articles/installing-large-file-storage", - "/de/enterprise/2.16/articles/installing-git-large-file-storage", - "/de/enterprise/2.16/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/installing-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.17/articles/installing-large-file-storage", - "/de/enterprise/2.17/user/articles/installing-large-file-storage", - "/de/enterprise/2.17/articles/installing-git-large-file-storage", - "/de/enterprise/2.17/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/installing-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.13/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.13/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.14/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.14/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.15/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.15/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.13/user/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.13/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.13/user/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.13/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.13/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.13/github/managing-large-files/removing-files-from-a-repositorys-history" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.14/user/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.14/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.14/user/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.14/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.14/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.14/github/managing-large-files/removing-files-from-a-repositorys-history" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.15/user/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.15/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.15/user/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.15/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.15/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.15/github/managing-large-files/removing-files-from-a-repositorys-history" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/user/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.16/user/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.16/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/github/managing-large-files/removing-files-from-a-repositorys-history" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/user/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.17/user/articles/removing-files-from-a-repository-s-history", - "/de/enterprise/2.17/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/github/managing-large-files/removing-files-from-a-repositorys-history" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.13/user/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.13/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.13/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.13/github/managing-large-files/removing-files-from-git-large-file-storage" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.14/user/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.14/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.14/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.14/github/managing-large-files/removing-files-from-git-large-file-storage" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.15/user/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.15/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.15/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.15/github/managing-large-files/removing-files-from-git-large-file-storage" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/removing-files-from-git-large-file-storage" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/removing-files-from-git-large-file-storage" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.13/user/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.13/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.13/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.13/github/managing-large-files/resolving-git-large-file-storage-upload-failures" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.14/user/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.14/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.14/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.14/github/managing-large-files/resolving-git-large-file-storage-upload-failures" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.15/user/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.15/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.15/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.15/github/managing-large-files/resolving-git-large-file-storage-upload-failures" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/user/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/github/managing-large-files/resolving-git-large-file-storage-upload-failures" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/user/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/github/managing-large-files/resolving-git-large-file-storage-upload-failures" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.13/user/managing-large-files/versioning-large-files", - "/de/enterprise/2.13/articles/versioning-large-files", - "/de/enterprise/2.13/user/articles/versioning-large-files", - "/de/enterprise/2.13/github/managing-large-files/versioning-large-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.14/user/managing-large-files/versioning-large-files", - "/de/enterprise/2.14/articles/versioning-large-files", - "/de/enterprise/2.14/user/articles/versioning-large-files", - "/de/enterprise/2.14/github/managing-large-files/versioning-large-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.15/user/managing-large-files/versioning-large-files", - "/de/enterprise/2.15/articles/versioning-large-files", - "/de/enterprise/2.15/user/articles/versioning-large-files", - "/de/enterprise/2.15/github/managing-large-files/versioning-large-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.16/user/managing-large-files/versioning-large-files", - "/de/enterprise/2.16/articles/versioning-large-files", - "/de/enterprise/2.16/user/articles/versioning-large-files", - "/de/enterprise/2.16/github/managing-large-files/versioning-large-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.17/user/managing-large-files/versioning-large-files", - "/de/enterprise/2.17/articles/versioning-large-files", - "/de/enterprise/2.17/user/articles/versioning-large-files", - "/de/enterprise/2.17/github/managing-large-files/versioning-large-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.13/user/managing-large-files/working-with-large-files", - "/de/enterprise/2.13/articles/working-with-large-files", - "/de/enterprise/2.13/user/articles/working-with-large-files", - "/de/enterprise/2.13/github/managing-large-files/working-with-large-files" - ], - [ - "/de/enterprise/2.14/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.14/user/managing-large-files/working-with-large-files", - "/de/enterprise/2.14/articles/working-with-large-files", - "/de/enterprise/2.14/user/articles/working-with-large-files", - "/de/enterprise/2.14/github/managing-large-files/working-with-large-files" - ], - [ - "/de/enterprise/2.15/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.15/user/managing-large-files/working-with-large-files", - "/de/enterprise/2.15/articles/working-with-large-files", - "/de/enterprise/2.15/user/articles/working-with-large-files", - "/de/enterprise/2.15/github/managing-large-files/working-with-large-files" - ], - [ - "/de/enterprise/2.16/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.16/user/managing-large-files/working-with-large-files", - "/de/enterprise/2.16/articles/working-with-large-files", - "/de/enterprise/2.16/user/articles/working-with-large-files", - "/de/enterprise/2.16/github/managing-large-files/working-with-large-files" - ], - [ - "/de/enterprise/2.17/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.17/user/managing-large-files/working-with-large-files", - "/de/enterprise/2.17/articles/working-with-large-files", - "/de/enterprise/2.17/user/articles/working-with-large-files", - "/de/enterprise/2.17/github/managing-large-files/working-with-large-files" - ], - [ - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/user/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/user/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/user/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/user/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/articles/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/configuring-notifications-for-vulnerable-dependencies" - ], - [ - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.13/user/managing-security-vulnerabilities", - "/de/enterprise/2.13/categories/managing-security-vulnerabilities", - "/de/enterprise/2.13/user/categories/managing-security-vulnerabilities", - "/de/enterprise/2.13/github/managing-security-vulnerabilities" - ], - [ - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.14/user/managing-security-vulnerabilities", - "/de/enterprise/2.14/categories/managing-security-vulnerabilities", - "/de/enterprise/2.14/user/categories/managing-security-vulnerabilities", - "/de/enterprise/2.14/github/managing-security-vulnerabilities" - ], - [ - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.15/user/managing-security-vulnerabilities", - "/de/enterprise/2.15/categories/managing-security-vulnerabilities", - "/de/enterprise/2.15/user/categories/managing-security-vulnerabilities", - "/de/enterprise/2.15/github/managing-security-vulnerabilities" - ], - [ - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.16/user/managing-security-vulnerabilities", - "/de/enterprise/2.16/categories/managing-security-vulnerabilities", - "/de/enterprise/2.16/user/categories/managing-security-vulnerabilities", - "/de/enterprise/2.16/github/managing-security-vulnerabilities" - ], - [ - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.17/user/managing-security-vulnerabilities", - "/de/enterprise/2.17/categories/managing-security-vulnerabilities", - "/de/enterprise/2.17/user/categories/managing-security-vulnerabilities", - "/de/enterprise/2.17/github/managing-security-vulnerabilities" - ], - [ - "/de/enterprise/2.13/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.13/user/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.13/articles/updating-your-projects-dependencies", - "/de/enterprise/2.13/user/articles/updating-your-projects-dependencies", - "/de/enterprise/2.13/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/user/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/user/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.13/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies" - ], - [ - "/de/enterprise/2.14/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.14/user/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.14/articles/updating-your-projects-dependencies", - "/de/enterprise/2.14/user/articles/updating-your-projects-dependencies", - "/de/enterprise/2.14/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/user/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/user/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.14/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies" - ], - [ - "/de/enterprise/2.15/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.15/user/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.15/articles/updating-your-projects-dependencies", - "/de/enterprise/2.15/user/articles/updating-your-projects-dependencies", - "/de/enterprise/2.15/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/user/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/user/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.15/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies" - ], - [ - "/de/enterprise/2.16/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.16/user/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.16/articles/updating-your-projects-dependencies", - "/de/enterprise/2.16/user/articles/updating-your-projects-dependencies", - "/de/enterprise/2.16/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/user/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/user/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.16/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies" - ], - [ - "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.17/user/articles/updating-your-project-s-dependencies", - "/de/enterprise/2.17/articles/updating-your-projects-dependencies", - "/de/enterprise/2.17/user/articles/updating-your-projects-dependencies", - "/de/enterprise/2.17/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/user/articles/managing-security-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/user/articles/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.13/articles/notifications", - "/de/enterprise/2.13/user/articles/notifications", - "/de/enterprise/2.13/articles/about-notifications", - "/de/enterprise/2.13/user/articles/about-notifications", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/about-notifications" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.14/articles/notifications", - "/de/enterprise/2.14/user/articles/notifications", - "/de/enterprise/2.14/articles/about-notifications", - "/de/enterprise/2.14/user/articles/about-notifications", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/about-notifications" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.15/articles/notifications", - "/de/enterprise/2.15/user/articles/notifications", - "/de/enterprise/2.15/articles/about-notifications", - "/de/enterprise/2.15/user/articles/about-notifications", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/about-notifications" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.16/articles/notifications", - "/de/enterprise/2.16/user/articles/notifications", - "/de/enterprise/2.16/articles/about-notifications", - "/de/enterprise/2.16/user/articles/about-notifications", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/about-notifications" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/about-notifications", - "/de/enterprise/2.17/articles/notifications", - "/de/enterprise/2.17/user/articles/notifications", - "/de/enterprise/2.17/articles/about-notifications", - "/de/enterprise/2.17/user/articles/about-notifications", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/about-notifications-beta", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/about-notifications" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.13/articles/about-web-notifications", - "/de/enterprise/2.13/user/articles/about-web-notifications", - "/de/enterprise/2.13/format-of-notification-emails", - "/de/enterprise/2.13/user/format-of-notification-emails", - "/de/enterprise/2.13/articles/configuring-notification-emails", - "/de/enterprise/2.13/user/articles/configuring-notification-emails", - "/de/enterprise/2.13/articles/about-notification-emails", - "/de/enterprise/2.13/user/articles/about-notification-emails", - "/de/enterprise/2.13/articles/about-email-notifications", - "/de/enterprise/2.13/user/articles/about-email-notifications", - "/de/enterprise/2.13/articles/accessing-your-notifications", - "/de/enterprise/2.13/user/articles/accessing-your-notifications", - "/de/enterprise/2.13/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.13/user/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.13/articles/managing-notification-delivery-methods", - "/de/enterprise/2.13/user/articles/managing-notification-delivery-methods", - "/de/enterprise/2.13/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.13/user/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.13/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.13/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.13/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.13/user/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/configuring-notifications" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.14/articles/about-web-notifications", - "/de/enterprise/2.14/user/articles/about-web-notifications", - "/de/enterprise/2.14/format-of-notification-emails", - "/de/enterprise/2.14/user/format-of-notification-emails", - "/de/enterprise/2.14/articles/configuring-notification-emails", - "/de/enterprise/2.14/user/articles/configuring-notification-emails", - "/de/enterprise/2.14/articles/about-notification-emails", - "/de/enterprise/2.14/user/articles/about-notification-emails", - "/de/enterprise/2.14/articles/about-email-notifications", - "/de/enterprise/2.14/user/articles/about-email-notifications", - "/de/enterprise/2.14/articles/accessing-your-notifications", - "/de/enterprise/2.14/user/articles/accessing-your-notifications", - "/de/enterprise/2.14/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.14/user/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.14/articles/managing-notification-delivery-methods", - "/de/enterprise/2.14/user/articles/managing-notification-delivery-methods", - "/de/enterprise/2.14/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.14/user/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.14/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.14/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.14/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.14/user/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/configuring-notifications" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.15/articles/about-web-notifications", - "/de/enterprise/2.15/user/articles/about-web-notifications", - "/de/enterprise/2.15/format-of-notification-emails", - "/de/enterprise/2.15/user/format-of-notification-emails", - "/de/enterprise/2.15/articles/configuring-notification-emails", - "/de/enterprise/2.15/user/articles/configuring-notification-emails", - "/de/enterprise/2.15/articles/about-notification-emails", - "/de/enterprise/2.15/user/articles/about-notification-emails", - "/de/enterprise/2.15/articles/about-email-notifications", - "/de/enterprise/2.15/user/articles/about-email-notifications", - "/de/enterprise/2.15/articles/accessing-your-notifications", - "/de/enterprise/2.15/user/articles/accessing-your-notifications", - "/de/enterprise/2.15/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.15/user/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.15/articles/managing-notification-delivery-methods", - "/de/enterprise/2.15/user/articles/managing-notification-delivery-methods", - "/de/enterprise/2.15/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.15/user/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.15/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.15/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.15/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.15/user/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/configuring-notifications" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.16/articles/about-web-notifications", - "/de/enterprise/2.16/user/articles/about-web-notifications", - "/de/enterprise/2.16/format-of-notification-emails", - "/de/enterprise/2.16/user/format-of-notification-emails", - "/de/enterprise/2.16/articles/configuring-notification-emails", - "/de/enterprise/2.16/user/articles/configuring-notification-emails", - "/de/enterprise/2.16/articles/about-notification-emails", - "/de/enterprise/2.16/user/articles/about-notification-emails", - "/de/enterprise/2.16/articles/about-email-notifications", - "/de/enterprise/2.16/user/articles/about-email-notifications", - "/de/enterprise/2.16/articles/accessing-your-notifications", - "/de/enterprise/2.16/user/articles/accessing-your-notifications", - "/de/enterprise/2.16/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.16/user/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.16/articles/managing-notification-delivery-methods", - "/de/enterprise/2.16/user/articles/managing-notification-delivery-methods", - "/de/enterprise/2.16/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.16/user/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.16/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.16/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.16/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.16/user/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/configuring-notifications" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/configuring-notifications", - "/de/enterprise/2.17/articles/about-web-notifications", - "/de/enterprise/2.17/user/articles/about-web-notifications", - "/de/enterprise/2.17/format-of-notification-emails", - "/de/enterprise/2.17/user/format-of-notification-emails", - "/de/enterprise/2.17/articles/configuring-notification-emails", - "/de/enterprise/2.17/user/articles/configuring-notification-emails", - "/de/enterprise/2.17/articles/about-notification-emails", - "/de/enterprise/2.17/user/articles/about-notification-emails", - "/de/enterprise/2.17/articles/about-email-notifications", - "/de/enterprise/2.17/user/articles/about-email-notifications", - "/de/enterprise/2.17/articles/accessing-your-notifications", - "/de/enterprise/2.17/user/articles/accessing-your-notifications", - "/de/enterprise/2.17/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.17/user/articles/configuring-notification-delivery-methods", - "/de/enterprise/2.17/articles/managing-notification-delivery-methods", - "/de/enterprise/2.17/user/articles/managing-notification-delivery-methods", - "/de/enterprise/2.17/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.17/user/articles/managing-notification-emails-for-organizations", - "/de/enterprise/2.17/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.17/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.17/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.17/user/articles/choosing-the-types-of-notifications-you-receive", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/configuring-notifications" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/customizing-a-workflow-for-triaging-your-notifications" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.13/categories/76/articles", - "/de/enterprise/2.13/user/categories/76/articles", - "/de/enterprise/2.13/categories/notifications", - "/de/enterprise/2.13/user/categories/notifications", - "/de/enterprise/2.13/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.13/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.14/categories/76/articles", - "/de/enterprise/2.14/user/categories/76/articles", - "/de/enterprise/2.14/categories/notifications", - "/de/enterprise/2.14/user/categories/notifications", - "/de/enterprise/2.14/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.14/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.15/categories/76/articles", - "/de/enterprise/2.15/user/categories/76/articles", - "/de/enterprise/2.15/categories/notifications", - "/de/enterprise/2.15/user/categories/notifications", - "/de/enterprise/2.15/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.15/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.16/categories/76/articles", - "/de/enterprise/2.16/user/categories/76/articles", - "/de/enterprise/2.16/categories/notifications", - "/de/enterprise/2.16/user/categories/notifications", - "/de/enterprise/2.16/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.16/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github", - "/de/enterprise/2.17/categories/76/articles", - "/de/enterprise/2.17/user/categories/76/articles", - "/de/enterprise/2.17/categories/notifications", - "/de/enterprise/2.17/user/categories/notifications", - "/de/enterprise/2.17/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.17/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.13/articles/marking-notifications-as-read", - "/de/enterprise/2.13/user/articles/marking-notifications-as-read", - "/de/enterprise/2.13/articles/saving-notifications-for-later", - "/de/enterprise/2.13/user/articles/saving-notifications-for-later", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.14/articles/marking-notifications-as-read", - "/de/enterprise/2.14/user/articles/marking-notifications-as-read", - "/de/enterprise/2.14/articles/saving-notifications-for-later", - "/de/enterprise/2.14/user/articles/saving-notifications-for-later", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.15/articles/marking-notifications-as-read", - "/de/enterprise/2.15/user/articles/marking-notifications-as-read", - "/de/enterprise/2.15/articles/saving-notifications-for-later", - "/de/enterprise/2.15/user/articles/saving-notifications-for-later", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.16/articles/marking-notifications-as-read", - "/de/enterprise/2.16/user/articles/marking-notifications-as-read", - "/de/enterprise/2.16/articles/saving-notifications-for-later", - "/de/enterprise/2.16/user/articles/saving-notifications-for-later", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox", - "/de/enterprise/2.17/articles/marking-notifications-as-read", - "/de/enterprise/2.17/user/articles/marking-notifications-as-read", - "/de/enterprise/2.17/articles/saving-notifications-for-later", - "/de/enterprise/2.17/user/articles/saving-notifications-for-later", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/managing-notifications-from-your-inbox" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/managing-your-subscriptions" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.13/articles/getting-started-with-notifications", - "/de/enterprise/2.13/user/articles/getting-started-with-notifications", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.14/articles/getting-started-with-notifications", - "/de/enterprise/2.14/user/articles/getting-started-with-notifications", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.15/articles/getting-started-with-notifications", - "/de/enterprise/2.15/user/articles/getting-started-with-notifications", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.16/articles/getting-started-with-notifications", - "/de/enterprise/2.16/user/articles/getting-started-with-notifications", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/setting-up-notifications", - "/de/enterprise/2.17/articles/getting-started-with-notifications", - "/de/enterprise/2.17/user/articles/getting-started-with-notifications", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/setting-up-notifications" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/triaging-a-single-notification" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.13/articles/managing-notifications", - "/de/enterprise/2.13/user/articles/managing-notifications", - "/de/enterprise/2.13/articles/managing-your-notifications", - "/de/enterprise/2.13/user/articles/managing-your-notifications", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.14/articles/managing-notifications", - "/de/enterprise/2.14/user/articles/managing-notifications", - "/de/enterprise/2.14/articles/managing-your-notifications", - "/de/enterprise/2.14/user/articles/managing-your-notifications", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.15/articles/managing-notifications", - "/de/enterprise/2.15/user/articles/managing-notifications", - "/de/enterprise/2.15/articles/managing-your-notifications", - "/de/enterprise/2.15/user/articles/managing-your-notifications", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.16/articles/managing-notifications", - "/de/enterprise/2.16/user/articles/managing-notifications", - "/de/enterprise/2.16/articles/managing-your-notifications", - "/de/enterprise/2.16/user/articles/managing-your-notifications", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications", - "/de/enterprise/2.17/articles/managing-notifications", - "/de/enterprise/2.17/user/articles/managing-notifications", - "/de/enterprise/2.17/articles/managing-your-notifications", - "/de/enterprise/2.17/user/articles/managing-your-notifications", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications" - ], - [ - "/de/enterprise/2.13/user/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.13/user/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.13/articles/subscribing-to-conversations", - "/de/enterprise/2.13/user/articles/subscribing-to-conversations", - "/de/enterprise/2.13/articles/unsubscribing-from-conversations", - "/de/enterprise/2.13/user/articles/unsubscribing-from-conversations", - "/de/enterprise/2.13/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.13/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.13/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.13/user/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.13/articles/watching-repositories", - "/de/enterprise/2.13/user/articles/watching-repositories", - "/de/enterprise/2.13/articles/unwatching-repositories", - "/de/enterprise/2.13/user/articles/unwatching-repositories", - "/de/enterprise/2.13/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.13/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.13/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.13/user/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.13/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.13/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.13/articles/listing-watched-repositories", - "/de/enterprise/2.13/user/articles/listing-watched-repositories", - "/de/enterprise/2.13/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.13/user/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.13/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.13/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.13/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions" - ], - [ - "/de/enterprise/2.14/user/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.14/user/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.14/articles/subscribing-to-conversations", - "/de/enterprise/2.14/user/articles/subscribing-to-conversations", - "/de/enterprise/2.14/articles/unsubscribing-from-conversations", - "/de/enterprise/2.14/user/articles/unsubscribing-from-conversations", - "/de/enterprise/2.14/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.14/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.14/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.14/user/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.14/articles/watching-repositories", - "/de/enterprise/2.14/user/articles/watching-repositories", - "/de/enterprise/2.14/articles/unwatching-repositories", - "/de/enterprise/2.14/user/articles/unwatching-repositories", - "/de/enterprise/2.14/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.14/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.14/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.14/user/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.14/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.14/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.14/articles/listing-watched-repositories", - "/de/enterprise/2.14/user/articles/listing-watched-repositories", - "/de/enterprise/2.14/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.14/user/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.14/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.14/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.14/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions" - ], - [ - "/de/enterprise/2.15/user/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.15/user/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.15/articles/subscribing-to-conversations", - "/de/enterprise/2.15/user/articles/subscribing-to-conversations", - "/de/enterprise/2.15/articles/unsubscribing-from-conversations", - "/de/enterprise/2.15/user/articles/unsubscribing-from-conversations", - "/de/enterprise/2.15/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.15/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.15/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.15/user/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.15/articles/watching-repositories", - "/de/enterprise/2.15/user/articles/watching-repositories", - "/de/enterprise/2.15/articles/unwatching-repositories", - "/de/enterprise/2.15/user/articles/unwatching-repositories", - "/de/enterprise/2.15/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.15/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.15/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.15/user/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.15/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.15/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.15/articles/listing-watched-repositories", - "/de/enterprise/2.15/user/articles/listing-watched-repositories", - "/de/enterprise/2.15/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.15/user/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.15/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.15/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.15/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions" - ], - [ - "/de/enterprise/2.16/user/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.16/user/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.16/articles/subscribing-to-conversations", - "/de/enterprise/2.16/user/articles/subscribing-to-conversations", - "/de/enterprise/2.16/articles/unsubscribing-from-conversations", - "/de/enterprise/2.16/user/articles/unsubscribing-from-conversations", - "/de/enterprise/2.16/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.16/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.16/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.16/user/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.16/articles/watching-repositories", - "/de/enterprise/2.16/user/articles/watching-repositories", - "/de/enterprise/2.16/articles/unwatching-repositories", - "/de/enterprise/2.16/user/articles/unwatching-repositories", - "/de/enterprise/2.16/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.16/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.16/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.16/user/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.16/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.16/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.16/articles/listing-watched-repositories", - "/de/enterprise/2.16/user/articles/listing-watched-repositories", - "/de/enterprise/2.16/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.16/user/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.16/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.16/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.16/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions" - ], - [ - "/de/enterprise/2.17/user/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.17/user/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions", - "/de/enterprise/2.17/articles/subscribing-to-conversations", - "/de/enterprise/2.17/user/articles/subscribing-to-conversations", - "/de/enterprise/2.17/articles/unsubscribing-from-conversations", - "/de/enterprise/2.17/user/articles/unsubscribing-from-conversations", - "/de/enterprise/2.17/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.17/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.17/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.17/user/articles/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.17/articles/watching-repositories", - "/de/enterprise/2.17/user/articles/watching-repositories", - "/de/enterprise/2.17/articles/unwatching-repositories", - "/de/enterprise/2.17/user/articles/unwatching-repositories", - "/de/enterprise/2.17/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.17/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.17/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.17/user/articles/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.17/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.17/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.17/articles/listing-watched-repositories", - "/de/enterprise/2.17/user/articles/listing-watched-repositories", - "/de/enterprise/2.17/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.17/user/articles/listing-the-repositories-you-re-watching", - "/de/enterprise/2.17/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.17/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.17/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.13/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.13/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.14/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.14/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.15/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.15/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.13/articles/about-automation-for-project-boards", - "/de/enterprise/2.13/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-automation-for-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.14/articles/about-automation-for-project-boards", - "/de/enterprise/2.14/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-automation-for-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.15/articles/about-automation-for-project-boards", - "/de/enterprise/2.15/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-automation-for-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.16/articles/about-automation-for-project-boards", - "/de/enterprise/2.16/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-automation-for-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.17/articles/about-automation-for-project-boards", - "/de/enterprise/2.17/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-automation-for-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.13/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.14/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.15/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-issues", - "/de/enterprise/2.13/articles/creating-issues", - "/de/enterprise/2.13/user/articles/creating-issues", - "/de/enterprise/2.13/articles/about-issues", - "/de/enterprise/2.13/user/articles/about-issues", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-issues" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-issues", - "/de/enterprise/2.14/articles/creating-issues", - "/de/enterprise/2.14/user/articles/creating-issues", - "/de/enterprise/2.14/articles/about-issues", - "/de/enterprise/2.14/user/articles/about-issues", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-issues" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-issues", - "/de/enterprise/2.15/articles/creating-issues", - "/de/enterprise/2.15/user/articles/creating-issues", - "/de/enterprise/2.15/articles/about-issues", - "/de/enterprise/2.15/user/articles/about-issues", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-issues" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-issues", - "/de/enterprise/2.16/articles/creating-issues", - "/de/enterprise/2.16/user/articles/creating-issues", - "/de/enterprise/2.16/articles/about-issues", - "/de/enterprise/2.16/user/articles/about-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-issues" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-issues", - "/de/enterprise/2.17/articles/creating-issues", - "/de/enterprise/2.17/user/articles/creating-issues", - "/de/enterprise/2.17/articles/about-issues", - "/de/enterprise/2.17/user/articles/about-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-issues" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.13/articles/about-milestones", - "/de/enterprise/2.13/user/articles/about-milestones", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-milestones" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.14/articles/about-milestones", - "/de/enterprise/2.14/user/articles/about-milestones", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-milestones" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.15/articles/about-milestones", - "/de/enterprise/2.15/user/articles/about-milestones", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-milestones" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.16/articles/about-milestones", - "/de/enterprise/2.16/user/articles/about-milestones", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-milestones" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.17/articles/about-milestones", - "/de/enterprise/2.17/user/articles/about-milestones", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-milestones" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.13/articles/about-projects", - "/de/enterprise/2.13/user/articles/about-projects", - "/de/enterprise/2.13/articles/about-project-boards", - "/de/enterprise/2.13/user/articles/about-project-boards", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.14/articles/about-projects", - "/de/enterprise/2.14/user/articles/about-projects", - "/de/enterprise/2.14/articles/about-project-boards", - "/de/enterprise/2.14/user/articles/about-project-boards", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.15/articles/about-projects", - "/de/enterprise/2.15/user/articles/about-projects", - "/de/enterprise/2.15/articles/about-project-boards", - "/de/enterprise/2.15/user/articles/about-project-boards", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.16/articles/about-projects", - "/de/enterprise/2.16/user/articles/about-projects", - "/de/enterprise/2.16/articles/about-project-boards", - "/de/enterprise/2.16/user/articles/about-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.17/articles/about-projects", - "/de/enterprise/2.17/user/articles/about-projects", - "/de/enterprise/2.17/articles/about-project-boards", - "/de/enterprise/2.17/user/articles/about-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.13/articles/about-task-lists", - "/de/enterprise/2.13/user/articles/about-task-lists", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-task-lists" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.14/articles/about-task-lists", - "/de/enterprise/2.14/user/articles/about-task-lists", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-task-lists" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.15/articles/about-task-lists", - "/de/enterprise/2.15/user/articles/about-task-lists", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-task-lists" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.16/articles/about-task-lists", - "/de/enterprise/2.16/user/articles/about-task-lists", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-task-lists" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.17/articles/about-task-lists", - "/de/enterprise/2.17/user/articles/about-task-lists", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-task-lists" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.13/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.13/user/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.13/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.13/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.14/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.14/user/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.14/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.14/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.15/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.15/user/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.15/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.15/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.16/user/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.16/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.17/user/articles/adding-issues-and-pull-requests-to-a-project", - "/de/enterprise/2.17/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.13/articles/adding-notes-to-a-project", - "/de/enterprise/2.13/user/articles/adding-notes-to-a-project", - "/de/enterprise/2.13/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.13/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/adding-notes-to-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.14/articles/adding-notes-to-a-project", - "/de/enterprise/2.14/user/articles/adding-notes-to-a-project", - "/de/enterprise/2.14/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.14/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/adding-notes-to-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.15/articles/adding-notes-to-a-project", - "/de/enterprise/2.15/user/articles/adding-notes-to-a-project", - "/de/enterprise/2.15/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.15/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/adding-notes-to-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.16/articles/adding-notes-to-a-project", - "/de/enterprise/2.16/user/articles/adding-notes-to-a-project", - "/de/enterprise/2.16/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.16/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/adding-notes-to-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.17/articles/adding-notes-to-a-project", - "/de/enterprise/2.17/user/articles/adding-notes-to-a-project", - "/de/enterprise/2.17/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.17/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/adding-notes-to-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.13/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.13/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/archiving-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.14/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.14/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/archiving-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.15/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.15/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/archiving-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/archiving-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/archiving-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.13/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.13/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.13/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.13/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.14/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.14/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.14/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.14/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.15/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.15/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.15/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.15/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.13/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.14/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.15/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.13/user/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.13/articles/changing-project-board-visibility", - "/de/enterprise/2.13/user/articles/changing-project-board-visibility", - "/de/enterprise/2.13/github/managing-your-work-on-github/changing-project-board-visibility" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.14/user/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.14/articles/changing-project-board-visibility", - "/de/enterprise/2.14/user/articles/changing-project-board-visibility", - "/de/enterprise/2.14/github/managing-your-work-on-github/changing-project-board-visibility" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.15/user/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.15/articles/changing-project-board-visibility", - "/de/enterprise/2.15/user/articles/changing-project-board-visibility", - "/de/enterprise/2.15/github/managing-your-work-on-github/changing-project-board-visibility" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.16/user/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.16/articles/changing-project-board-visibility", - "/de/enterprise/2.16/user/articles/changing-project-board-visibility", - "/de/enterprise/2.16/github/managing-your-work-on-github/changing-project-board-visibility" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.17/user/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.17/articles/changing-project-board-visibility", - "/de/enterprise/2.17/user/articles/changing-project-board-visibility", - "/de/enterprise/2.17/github/managing-your-work-on-github/changing-project-board-visibility" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.13/articles/closing-a-project", - "/de/enterprise/2.13/user/articles/closing-a-project", - "/de/enterprise/2.13/articles/closing-a-project-board", - "/de/enterprise/2.13/user/articles/closing-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/closing-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.14/articles/closing-a-project", - "/de/enterprise/2.14/user/articles/closing-a-project", - "/de/enterprise/2.14/articles/closing-a-project-board", - "/de/enterprise/2.14/user/articles/closing-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/closing-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.15/articles/closing-a-project", - "/de/enterprise/2.15/user/articles/closing-a-project", - "/de/enterprise/2.15/articles/closing-a-project-board", - "/de/enterprise/2.15/user/articles/closing-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/closing-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.16/articles/closing-a-project", - "/de/enterprise/2.16/user/articles/closing-a-project", - "/de/enterprise/2.16/articles/closing-a-project-board", - "/de/enterprise/2.16/user/articles/closing-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/closing-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.17/articles/closing-a-project", - "/de/enterprise/2.17/user/articles/closing-a-project", - "/de/enterprise/2.17/articles/closing-a-project-board", - "/de/enterprise/2.17/user/articles/closing-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/closing-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.13/user/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.13/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.13/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.13/github/managing-your-work-on-github/configuring-automation-for-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.14/user/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.14/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.14/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.14/github/managing-your-work-on-github/configuring-automation-for-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.15/user/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.15/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.15/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.15/github/managing-your-work-on-github/configuring-automation-for-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.16/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.16/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/configuring-automation-for-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.17/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.17/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/configuring-automation-for-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.13/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.13/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.13/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.13/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.14/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.14/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.14/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.14/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.15/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.15/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.15/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.15/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.13/articles/creating-a-project", - "/de/enterprise/2.13/user/articles/creating-a-project", - "/de/enterprise/2.13/articles/creating-a-project-board", - "/de/enterprise/2.13/user/articles/creating-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/creating-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.14/articles/creating-a-project", - "/de/enterprise/2.14/user/articles/creating-a-project", - "/de/enterprise/2.14/articles/creating-a-project-board", - "/de/enterprise/2.14/user/articles/creating-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/creating-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.15/articles/creating-a-project", - "/de/enterprise/2.15/user/articles/creating-a-project", - "/de/enterprise/2.15/articles/creating-a-project-board", - "/de/enterprise/2.15/user/articles/creating-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/creating-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.16/articles/creating-a-project", - "/de/enterprise/2.16/user/articles/creating-a-project", - "/de/enterprise/2.16/articles/creating-a-project-board", - "/de/enterprise/2.16/user/articles/creating-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.17/articles/creating-a-project", - "/de/enterprise/2.17/user/articles/creating-a-project", - "/de/enterprise/2.17/articles/creating-a-project-board", - "/de/enterprise/2.17/user/articles/creating-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.13/user/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.13/articles/creating-an-issue", - "/de/enterprise/2.13/user/articles/creating-an-issue", - "/de/enterprise/2.13/github/managing-your-work-on-github/creating-an-issue" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.14/user/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.14/articles/creating-an-issue", - "/de/enterprise/2.14/user/articles/creating-an-issue", - "/de/enterprise/2.14/github/managing-your-work-on-github/creating-an-issue" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.15/user/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.15/articles/creating-an-issue", - "/de/enterprise/2.15/user/articles/creating-an-issue", - "/de/enterprise/2.15/github/managing-your-work-on-github/creating-an-issue" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.16/articles/creating-an-issue", - "/de/enterprise/2.16/user/articles/creating-an-issue", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-an-issue" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.17/articles/creating-an-issue", - "/de/enterprise/2.17/user/articles/creating-an-issue", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-an-issue" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/creating-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.13/articles/deleting-a-project", - "/de/enterprise/2.13/user/articles/deleting-a-project", - "/de/enterprise/2.13/articles/deleting-a-project-board", - "/de/enterprise/2.13/user/articles/deleting-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/deleting-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.14/articles/deleting-a-project", - "/de/enterprise/2.14/user/articles/deleting-a-project", - "/de/enterprise/2.14/articles/deleting-a-project-board", - "/de/enterprise/2.14/user/articles/deleting-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/deleting-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.15/articles/deleting-a-project", - "/de/enterprise/2.15/user/articles/deleting-a-project", - "/de/enterprise/2.15/articles/deleting-a-project-board", - "/de/enterprise/2.15/user/articles/deleting-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/deleting-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.16/articles/deleting-a-project", - "/de/enterprise/2.16/user/articles/deleting-a-project", - "/de/enterprise/2.16/articles/deleting-a-project-board", - "/de/enterprise/2.16/user/articles/deleting-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.17/articles/deleting-a-project", - "/de/enterprise/2.17/user/articles/deleting-a-project", - "/de/enterprise/2.17/articles/deleting-a-project-board", - "/de/enterprise/2.17/user/articles/deleting-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.13/user/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.13/articles/deleting-an-issue", - "/de/enterprise/2.13/user/articles/deleting-an-issue", - "/de/enterprise/2.13/github/managing-your-work-on-github/deleting-an-issue" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.14/user/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.14/articles/deleting-an-issue", - "/de/enterprise/2.14/user/articles/deleting-an-issue", - "/de/enterprise/2.14/github/managing-your-work-on-github/deleting-an-issue" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.15/user/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.15/articles/deleting-an-issue", - "/de/enterprise/2.15/user/articles/deleting-an-issue", - "/de/enterprise/2.15/github/managing-your-work-on-github/deleting-an-issue" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.16/articles/deleting-an-issue", - "/de/enterprise/2.16/user/articles/deleting-an-issue", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-an-issue" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.17/articles/deleting-an-issue", - "/de/enterprise/2.17/user/articles/deleting-an-issue", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-an-issue" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.13/user/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.13/articles/disabling-issues", - "/de/enterprise/2.13/user/articles/disabling-issues", - "/de/enterprise/2.13/github/managing-your-work-on-github/disabling-issues" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.14/user/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.14/articles/disabling-issues", - "/de/enterprise/2.14/user/articles/disabling-issues", - "/de/enterprise/2.14/github/managing-your-work-on-github/disabling-issues" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.15/user/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.15/articles/disabling-issues", - "/de/enterprise/2.15/user/articles/disabling-issues", - "/de/enterprise/2.15/github/managing-your-work-on-github/disabling-issues" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.16/articles/disabling-issues", - "/de/enterprise/2.16/user/articles/disabling-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-issues" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.17/articles/disabling-issues", - "/de/enterprise/2.17/user/articles/disabling-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-issues" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.13/user/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.13/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.13/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.13/github/managing-your-work-on-github/disabling-project-boards-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.14/user/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.14/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.14/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.14/github/managing-your-work-on-github/disabling-project-boards-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.15/user/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.15/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.15/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.15/github/managing-your-work-on-github/disabling-project-boards-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-project-boards-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-project-boards-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.13/user/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.13/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.13/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.13/github/managing-your-work-on-github/disabling-project-boards-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.14/user/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.14/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.14/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.14/github/managing-your-work-on-github/disabling-project-boards-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.15/user/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.15/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.15/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.15/github/managing-your-work-on-github/disabling-project-boards-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-project-boards-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-project-boards-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.13/articles/editing-a-project", - "/de/enterprise/2.13/user/articles/editing-a-project", - "/de/enterprise/2.13/articles/editing-and-deleting-a-project", - "/de/enterprise/2.13/user/articles/editing-and-deleting-a-project", - "/de/enterprise/2.13/articles/editing-a-project-board", - "/de/enterprise/2.13/user/articles/editing-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/editing-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.14/articles/editing-a-project", - "/de/enterprise/2.14/user/articles/editing-a-project", - "/de/enterprise/2.14/articles/editing-and-deleting-a-project", - "/de/enterprise/2.14/user/articles/editing-and-deleting-a-project", - "/de/enterprise/2.14/articles/editing-a-project-board", - "/de/enterprise/2.14/user/articles/editing-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/editing-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.15/articles/editing-a-project", - "/de/enterprise/2.15/user/articles/editing-a-project", - "/de/enterprise/2.15/articles/editing-and-deleting-a-project", - "/de/enterprise/2.15/user/articles/editing-and-deleting-a-project", - "/de/enterprise/2.15/articles/editing-a-project-board", - "/de/enterprise/2.15/user/articles/editing-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/editing-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.16/articles/editing-a-project", - "/de/enterprise/2.16/user/articles/editing-a-project", - "/de/enterprise/2.16/articles/editing-and-deleting-a-project", - "/de/enterprise/2.16/user/articles/editing-and-deleting-a-project", - "/de/enterprise/2.16/articles/editing-a-project-board", - "/de/enterprise/2.16/user/articles/editing-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/editing-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.17/articles/editing-a-project", - "/de/enterprise/2.17/user/articles/editing-a-project", - "/de/enterprise/2.17/articles/editing-and-deleting-a-project", - "/de/enterprise/2.17/user/articles/editing-and-deleting-a-project", - "/de/enterprise/2.17/articles/editing-a-project-board", - "/de/enterprise/2.17/user/articles/editing-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/editing-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.13/articles/issue-attachments", - "/de/enterprise/2.13/user/articles/issue-attachments", - "/de/enterprise/2.13/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.14/articles/issue-attachments", - "/de/enterprise/2.14/user/articles/issue-attachments", - "/de/enterprise/2.14/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.15/articles/issue-attachments", - "/de/enterprise/2.15/user/articles/issue-attachments", - "/de/enterprise/2.15/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/articles/issue-attachments", - "/de/enterprise/2.16/user/articles/issue-attachments", - "/de/enterprise/2.16/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/articles/issue-attachments", - "/de/enterprise/2.17/user/articles/issue-attachments", - "/de/enterprise/2.17/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.13/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.13/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.14/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.14/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.15/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.15/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-cards-on-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.13/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.13/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.14/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.14/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.13/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.13/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.14/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.14/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.13/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.13/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.14/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.14/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.13/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.14/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.13/user/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.13/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.13/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.13/github/managing-your-work-on-github/filtering-pull-requests-by-review-status" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.14/user/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.14/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.14/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.14/github/managing-your-work-on-github/filtering-pull-requests-by-review-status" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.15/user/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.15/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.15/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.15/github/managing-your-work-on-github/filtering-pull-requests-by-review-status" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-pull-requests-by-review-status" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-pull-requests-by-review-status" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.13/user/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.13/articles/finding-information-in-a-repository", - "/de/enterprise/2.13/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.13/github/managing-your-work-on-github/finding-information-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.14/user/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.14/articles/finding-information-in-a-repository", - "/de/enterprise/2.14/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.14/github/managing-your-work-on-github/finding-information-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.15/user/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.15/articles/finding-information-in-a-repository", - "/de/enterprise/2.15/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.15/github/managing-your-work-on-github/finding-information-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.16/articles/finding-information-in-a-repository", - "/de/enterprise/2.16/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/finding-information-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.17/articles/finding-information-in-a-repository", - "/de/enterprise/2.17/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/finding-information-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github", - "/de/enterprise/2.13/user/managing-your-work-on-github", - "/de/enterprise/2.13/categories/100/articles", - "/de/enterprise/2.13/user/categories/100/articles", - "/de/enterprise/2.13/categories/managing-projects", - "/de/enterprise/2.13/user/categories/managing-projects", - "/de/enterprise/2.13/categories/managing-projects-on-github", - "/de/enterprise/2.13/user/categories/managing-projects-on-github", - "/de/enterprise/2.13/categories/managing-your-work-on-github", - "/de/enterprise/2.13/user/categories/managing-your-work-on-github", - "/de/enterprise/2.13/github/managing-your-work-on-github" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github", - "/de/enterprise/2.14/user/managing-your-work-on-github", - "/de/enterprise/2.14/categories/100/articles", - "/de/enterprise/2.14/user/categories/100/articles", - "/de/enterprise/2.14/categories/managing-projects", - "/de/enterprise/2.14/user/categories/managing-projects", - "/de/enterprise/2.14/categories/managing-projects-on-github", - "/de/enterprise/2.14/user/categories/managing-projects-on-github", - "/de/enterprise/2.14/categories/managing-your-work-on-github", - "/de/enterprise/2.14/user/categories/managing-your-work-on-github", - "/de/enterprise/2.14/github/managing-your-work-on-github" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github", - "/de/enterprise/2.15/user/managing-your-work-on-github", - "/de/enterprise/2.15/categories/100/articles", - "/de/enterprise/2.15/user/categories/100/articles", - "/de/enterprise/2.15/categories/managing-projects", - "/de/enterprise/2.15/user/categories/managing-projects", - "/de/enterprise/2.15/categories/managing-projects-on-github", - "/de/enterprise/2.15/user/categories/managing-projects-on-github", - "/de/enterprise/2.15/categories/managing-your-work-on-github", - "/de/enterprise/2.15/user/categories/managing-your-work-on-github", - "/de/enterprise/2.15/github/managing-your-work-on-github" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github", - "/de/enterprise/2.16/user/managing-your-work-on-github", - "/de/enterprise/2.16/categories/100/articles", - "/de/enterprise/2.16/user/categories/100/articles", - "/de/enterprise/2.16/categories/managing-projects", - "/de/enterprise/2.16/user/categories/managing-projects", - "/de/enterprise/2.16/categories/managing-projects-on-github", - "/de/enterprise/2.16/user/categories/managing-projects-on-github", - "/de/enterprise/2.16/categories/managing-your-work-on-github", - "/de/enterprise/2.16/user/categories/managing-your-work-on-github", - "/de/enterprise/2.16/github/managing-your-work-on-github" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github", - "/de/enterprise/2.17/user/managing-your-work-on-github", - "/de/enterprise/2.17/categories/100/articles", - "/de/enterprise/2.17/user/categories/100/articles", - "/de/enterprise/2.17/categories/managing-projects", - "/de/enterprise/2.17/user/categories/managing-projects", - "/de/enterprise/2.17/categories/managing-projects-on-github", - "/de/enterprise/2.17/user/categories/managing-projects-on-github", - "/de/enterprise/2.17/categories/managing-your-work-on-github", - "/de/enterprise/2.17/user/categories/managing-your-work-on-github", - "/de/enterprise/2.17/github/managing-your-work-on-github" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.13/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.13/articles/closing-issues-via-commit-message", - "/de/enterprise/2.13/user/articles/closing-issues-via-commit-message", - "/de/enterprise/2.13/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.13/user/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.13/articles/closing-issues-using-keywords", - "/de/enterprise/2.13/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.13/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.13/user/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.13/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.14/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.14/articles/closing-issues-via-commit-message", - "/de/enterprise/2.14/user/articles/closing-issues-via-commit-message", - "/de/enterprise/2.14/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.14/user/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.14/articles/closing-issues-using-keywords", - "/de/enterprise/2.14/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.14/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.14/user/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.14/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.15/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.15/articles/closing-issues-via-commit-message", - "/de/enterprise/2.15/user/articles/closing-issues-via-commit-message", - "/de/enterprise/2.15/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.15/user/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.15/articles/closing-issues-using-keywords", - "/de/enterprise/2.15/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.15/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.15/user/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.15/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.16/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.16/articles/closing-issues-via-commit-message", - "/de/enterprise/2.16/user/articles/closing-issues-via-commit-message", - "/de/enterprise/2.16/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.16/user/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.16/articles/closing-issues-using-keywords", - "/de/enterprise/2.16/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.16/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.16/user/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.16/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.17/articles/closing-issues-via-commit-message", - "/de/enterprise/2.17/user/articles/closing-issues-via-commit-message", - "/de/enterprise/2.17/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.17/user/articles/closing-issues-via-commit-messages", - "/de/enterprise/2.17/articles/closing-issues-using-keywords", - "/de/enterprise/2.17/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.17/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.17/user/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.17/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.13/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.13/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/linking-a-repository-to-a-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.14/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.14/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/linking-a-repository-to-a-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.15/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.15/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/linking-a-repository-to-a-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/linking-a-repository-to-a-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/linking-a-repository-to-a-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.13/user/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.13/articles/managing-Labels", - "/de/enterprise/2.13/user/articles/managing-Labels", - "/de/enterprise/2.13/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.13/articles/about-labels", - "/de/enterprise/2.13/user/articles/about-labels", - "/de/enterprise/2.13/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.13/user/managing-your-work-on-github/about-labels", - "/de/enterprise/2.13/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.13/articles/creating-a-label", - "/de/enterprise/2.13/user/articles/creating-a-label", - "/de/enterprise/2.13/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.13/user/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.13/articles/customizing-issue-labels", - "/de/enterprise/2.13/user/articles/customizing-issue-labels", - "/de/enterprise/2.13/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.13/articles/editing-a-label", - "/de/enterprise/2.13/user/articles/editing-a-label", - "/de/enterprise/2.13/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.13/user/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.13/articles/deleting-a-label", - "/de/enterprise/2.13/user/articles/deleting-a-label", - "/de/enterprise/2.13/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.13/user/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.13/github/managing-your-work-on-github/managing-labels" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.14/user/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.14/articles/managing-Labels", - "/de/enterprise/2.14/user/articles/managing-Labels", - "/de/enterprise/2.14/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.14/articles/about-labels", - "/de/enterprise/2.14/user/articles/about-labels", - "/de/enterprise/2.14/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.14/user/managing-your-work-on-github/about-labels", - "/de/enterprise/2.14/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.14/articles/creating-a-label", - "/de/enterprise/2.14/user/articles/creating-a-label", - "/de/enterprise/2.14/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.14/user/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.14/articles/customizing-issue-labels", - "/de/enterprise/2.14/user/articles/customizing-issue-labels", - "/de/enterprise/2.14/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.14/articles/editing-a-label", - "/de/enterprise/2.14/user/articles/editing-a-label", - "/de/enterprise/2.14/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.14/user/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.14/articles/deleting-a-label", - "/de/enterprise/2.14/user/articles/deleting-a-label", - "/de/enterprise/2.14/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.14/user/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.14/github/managing-your-work-on-github/managing-labels" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.15/user/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.15/articles/managing-Labels", - "/de/enterprise/2.15/user/articles/managing-Labels", - "/de/enterprise/2.15/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/articles/about-labels", - "/de/enterprise/2.15/user/articles/about-labels", - "/de/enterprise/2.15/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.15/user/managing-your-work-on-github/about-labels", - "/de/enterprise/2.15/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.15/articles/creating-a-label", - "/de/enterprise/2.15/user/articles/creating-a-label", - "/de/enterprise/2.15/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.15/user/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.15/articles/customizing-issue-labels", - "/de/enterprise/2.15/user/articles/customizing-issue-labels", - "/de/enterprise/2.15/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/articles/editing-a-label", - "/de/enterprise/2.15/user/articles/editing-a-label", - "/de/enterprise/2.15/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.15/user/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.15/articles/deleting-a-label", - "/de/enterprise/2.15/user/articles/deleting-a-label", - "/de/enterprise/2.15/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.15/user/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.15/github/managing-your-work-on-github/managing-labels" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.16/articles/managing-Labels", - "/de/enterprise/2.16/user/articles/managing-Labels", - "/de/enterprise/2.16/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/articles/about-labels", - "/de/enterprise/2.16/user/articles/about-labels", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-labels", - "/de/enterprise/2.16/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.16/articles/creating-a-label", - "/de/enterprise/2.16/user/articles/creating-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.16/articles/customizing-issue-labels", - "/de/enterprise/2.16/user/articles/customizing-issue-labels", - "/de/enterprise/2.16/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/articles/editing-a-label", - "/de/enterprise/2.16/user/articles/editing-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.16/articles/deleting-a-label", - "/de/enterprise/2.16/user/articles/deleting-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-labels" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-labels", - "/de/enterprise/2.17/articles/managing-Labels", - "/de/enterprise/2.17/user/articles/managing-Labels", - "/de/enterprise/2.17/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/articles/about-labels", - "/de/enterprise/2.17/user/articles/about-labels", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-labels", - "/de/enterprise/2.17/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/creating-and-editing-labels-for-issues-and-pull-requests", - "/de/enterprise/2.17/articles/creating-a-label", - "/de/enterprise/2.17/user/articles/creating-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.17/articles/customizing-issue-labels", - "/de/enterprise/2.17/user/articles/customizing-issue-labels", - "/de/enterprise/2.17/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/articles/editing-a-label", - "/de/enterprise/2.17/user/articles/editing-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.17/articles/deleting-a-label", - "/de/enterprise/2.17/user/articles/deleting-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-labels" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.13/user/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.13/articles/managing-project-boards", - "/de/enterprise/2.13/user/articles/managing-project-boards", - "/de/enterprise/2.13/github/managing-your-work-on-github/managing-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.14/user/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.14/articles/managing-project-boards", - "/de/enterprise/2.14/user/articles/managing-project-boards", - "/de/enterprise/2.14/github/managing-your-work-on-github/managing-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.15/user/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.15/articles/managing-project-boards", - "/de/enterprise/2.15/user/articles/managing-project-boards", - "/de/enterprise/2.15/github/managing-your-work-on-github/managing-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.16/articles/managing-project-boards", - "/de/enterprise/2.16/user/articles/managing-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.17/articles/managing-project-boards", - "/de/enterprise/2.17/user/articles/managing-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.13/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.13/user/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.13/articles/managing-your-work-with-issues", - "/de/enterprise/2.13/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.13/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.14/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.14/user/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.14/articles/managing-your-work-with-issues", - "/de/enterprise/2.14/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.14/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.15/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.15/user/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.15/articles/managing-your-work-with-issues", - "/de/enterprise/2.15/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.15/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.16/articles/managing-your-work-with-issues", - "/de/enterprise/2.16/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.17/articles/managing-your-work-with-issues", - "/de/enterprise/2.17/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.13/user/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.13/github/managing-your-work-on-github/opening-an-issue-from-a-comment" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.14/user/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.14/github/managing-your-work-on-github/opening-an-issue-from-a-comment" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.15/user/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.15/github/managing-your-work-on-github/opening-an-issue-from-a-comment" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.16/user/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.16/github/managing-your-work-on-github/opening-an-issue-from-a-comment" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.17/user/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.17/github/managing-your-work-on-github/opening-an-issue-from-a-comment" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.13/user/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.13/articles/opening-an-issue-from-code", - "/de/enterprise/2.13/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.13/github/managing-your-work-on-github/opening-an-issue-from-code" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.14/user/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.14/articles/opening-an-issue-from-code", - "/de/enterprise/2.14/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.14/github/managing-your-work-on-github/opening-an-issue-from-code" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.15/user/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.15/articles/opening-an-issue-from-code", - "/de/enterprise/2.15/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.15/github/managing-your-work-on-github/opening-an-issue-from-code" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.16/user/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.16/articles/opening-an-issue-from-code", - "/de/enterprise/2.16/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.16/github/managing-your-work-on-github/opening-an-issue-from-code" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.17/user/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.17/articles/opening-an-issue-from-code", - "/de/enterprise/2.17/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.17/github/managing-your-work-on-github/opening-an-issue-from-code" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.13/user/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.13/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.13/user/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.13/github/managing-your-work-on-github/pinning-an-issue-to-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.14/user/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.14/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.14/user/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.14/github/managing-your-work-on-github/pinning-an-issue-to-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.15/user/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.15/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.15/user/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.15/github/managing-your-work-on-github/pinning-an-issue-to-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.16/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.16/user/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/pinning-an-issue-to-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/user/articles/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/pinning-an-issue-to-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.13/articles/reopening-a-closed-project-board", - "/de/enterprise/2.13/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/reopening-a-closed-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.14/articles/reopening-a-closed-project-board", - "/de/enterprise/2.14/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/reopening-a-closed-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.15/articles/reopening-a-closed-project-board", - "/de/enterprise/2.15/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/reopening-a-closed-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.16/articles/reopening-a-closed-project-board", - "/de/enterprise/2.16/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/reopening-a-closed-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.17/articles/reopening-a-closed-project-board", - "/de/enterprise/2.17/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/reopening-a-closed-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.13/user/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.13/articles/sharing-filters", - "/de/enterprise/2.13/user/articles/sharing-filters", - "/de/enterprise/2.13/github/managing-your-work-on-github/sharing-filters" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.14/user/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.14/articles/sharing-filters", - "/de/enterprise/2.14/user/articles/sharing-filters", - "/de/enterprise/2.14/github/managing-your-work-on-github/sharing-filters" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.15/user/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.15/articles/sharing-filters", - "/de/enterprise/2.15/user/articles/sharing-filters", - "/de/enterprise/2.15/github/managing-your-work-on-github/sharing-filters" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.16/user/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.16/articles/sharing-filters", - "/de/enterprise/2.16/user/articles/sharing-filters", - "/de/enterprise/2.16/github/managing-your-work-on-github/sharing-filters" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.17/user/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.17/articles/sharing-filters", - "/de/enterprise/2.17/user/articles/sharing-filters", - "/de/enterprise/2.17/github/managing-your-work-on-github/sharing-filters" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.13/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/sorting-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.14/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/sorting-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.15/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/sorting-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/sorting-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/sorting-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.13/user/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.13/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.13/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.13/github/managing-your-work-on-github/tracking-progress-on-your-project-board" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.14/user/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.14/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.14/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.14/github/managing-your-work-on-github/tracking-progress-on-your-project-board" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.15/user/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.15/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.15/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.15/github/managing-your-work-on-github/tracking-progress-on-your-project-board" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-progress-on-your-project-board" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-progress-on-your-project-board" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.13/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.13/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.13/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.13/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.14/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.14/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.14/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.14/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.15/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.15/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.15/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.15/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.13/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.13/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.13/user/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.13/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.13/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.13/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.14/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.14/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.14/user/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.14/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.14/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.14/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.15/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.15/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.15/user/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.15/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.15/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.15/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.16/user/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.16/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.17/user/articles/tracking-the-progress-of-your-work-with-projects", - "/de/enterprise/2.17/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.13/user/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.13/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.13/user/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.13/github/managing-your-work-on-github/transferring-an-issue-to-another-repository" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.14/user/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.14/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.14/user/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.14/github/managing-your-work-on-github/transferring-an-issue-to-another-repository" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.15/user/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.15/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.15/user/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.15/github/managing-your-work-on-github/transferring-an-issue-to-another-repository" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.16/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.16/user/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/transferring-an-issue-to-another-repository" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/transferring-an-issue-to-another-repository", - "/de/enterprise/2.17/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.17/user/articles/transferring-an-issue-to-another-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/transferring-an-issue-to-another-repository" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.13/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.14/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.15/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.13/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.13/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.13/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.14/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.14/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.14/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.15/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.15/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.15/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.13/user/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.13/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.13/user/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.13/articles/viewing-your-milestones-progress", - "/de/enterprise/2.13/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.13/github/managing-your-work-on-github/viewing-your-milestones-progress" - ], - [ - "/de/enterprise/2.14/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.14/user/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.14/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.14/user/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.14/articles/viewing-your-milestones-progress", - "/de/enterprise/2.14/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.14/github/managing-your-work-on-github/viewing-your-milestones-progress" - ], - [ - "/de/enterprise/2.15/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.15/user/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.15/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.15/user/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.15/articles/viewing-your-milestones-progress", - "/de/enterprise/2.15/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.15/github/managing-your-work-on-github/viewing-your-milestones-progress" - ], - [ - "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.16/user/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.16/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.16/user/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.16/articles/viewing-your-milestones-progress", - "/de/enterprise/2.16/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.16/github/managing-your-work-on-github/viewing-your-milestones-progress" - ], - [ - "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.17/user/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.17/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.17/user/articles/viewing-your-milestone-s-progress", - "/de/enterprise/2.17/articles/viewing-your-milestones-progress", - "/de/enterprise/2.17/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.17/github/managing-your-work-on-github/viewing-your-milestones-progress" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.13/user/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.13/articles/using-the-command-bar", - "/de/enterprise/2.13/user/articles/using-the-command-bar", - "/de/enterprise/2.13/articles/github-search-basics", - "/de/enterprise/2.13/user/articles/github-search-basics", - "/de/enterprise/2.13/articles/user-search-basics", - "/de/enterprise/2.13/articles/search-basics", - "/de/enterprise/2.13/user/articles/search-basics", - "/de/enterprise/2.13/articles/searching-github", - "/de/enterprise/2.13/user/articles/searching-github", - "/de/enterprise/2.13/articles/advanced-search", - "/de/enterprise/2.13/user/articles/advanced-search", - "/de/enterprise/2.13/articles/about-searching-on-github", - "/de/enterprise/2.13/user/articles/about-searching-on-github", - "/de/enterprise/2.13/github/searching-for-information-on-github/about-searching-on-github" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.14/user/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.14/articles/using-the-command-bar", - "/de/enterprise/2.14/user/articles/using-the-command-bar", - "/de/enterprise/2.14/articles/github-search-basics", - "/de/enterprise/2.14/user/articles/github-search-basics", - "/de/enterprise/2.14/articles/user-search-basics", - "/de/enterprise/2.14/articles/search-basics", - "/de/enterprise/2.14/user/articles/search-basics", - "/de/enterprise/2.14/articles/searching-github", - "/de/enterprise/2.14/user/articles/searching-github", - "/de/enterprise/2.14/articles/advanced-search", - "/de/enterprise/2.14/user/articles/advanced-search", - "/de/enterprise/2.14/articles/about-searching-on-github", - "/de/enterprise/2.14/user/articles/about-searching-on-github", - "/de/enterprise/2.14/github/searching-for-information-on-github/about-searching-on-github" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.15/user/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.15/articles/using-the-command-bar", - "/de/enterprise/2.15/user/articles/using-the-command-bar", - "/de/enterprise/2.15/articles/github-search-basics", - "/de/enterprise/2.15/user/articles/github-search-basics", - "/de/enterprise/2.15/articles/user-search-basics", - "/de/enterprise/2.15/articles/search-basics", - "/de/enterprise/2.15/user/articles/search-basics", - "/de/enterprise/2.15/articles/searching-github", - "/de/enterprise/2.15/user/articles/searching-github", - "/de/enterprise/2.15/articles/advanced-search", - "/de/enterprise/2.15/user/articles/advanced-search", - "/de/enterprise/2.15/articles/about-searching-on-github", - "/de/enterprise/2.15/user/articles/about-searching-on-github", - "/de/enterprise/2.15/github/searching-for-information-on-github/about-searching-on-github" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.16/articles/using-the-command-bar", - "/de/enterprise/2.16/user/articles/using-the-command-bar", - "/de/enterprise/2.16/articles/github-search-basics", - "/de/enterprise/2.16/user/articles/github-search-basics", - "/de/enterprise/2.16/articles/user-search-basics", - "/de/enterprise/2.16/articles/search-basics", - "/de/enterprise/2.16/user/articles/search-basics", - "/de/enterprise/2.16/articles/searching-github", - "/de/enterprise/2.16/user/articles/searching-github", - "/de/enterprise/2.16/articles/advanced-search", - "/de/enterprise/2.16/user/articles/advanced-search", - "/de/enterprise/2.16/articles/about-searching-on-github", - "/de/enterprise/2.16/user/articles/about-searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/about-searching-on-github" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.17/articles/using-the-command-bar", - "/de/enterprise/2.17/user/articles/using-the-command-bar", - "/de/enterprise/2.17/articles/github-search-basics", - "/de/enterprise/2.17/user/articles/github-search-basics", - "/de/enterprise/2.17/articles/user-search-basics", - "/de/enterprise/2.17/articles/search-basics", - "/de/enterprise/2.17/user/articles/search-basics", - "/de/enterprise/2.17/articles/searching-github", - "/de/enterprise/2.17/user/articles/searching-github", - "/de/enterprise/2.17/articles/advanced-search", - "/de/enterprise/2.17/user/articles/advanced-search", - "/de/enterprise/2.17/articles/about-searching-on-github", - "/de/enterprise/2.17/user/articles/about-searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/about-searching-on-github" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.13/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.13/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.13/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.13/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.13/user/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.13/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.13/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.13/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.13/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.13/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.14/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.14/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.14/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.14/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.14/user/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.14/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.14/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.14/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.14/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.14/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.15/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.15/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.15/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.15/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.15/user/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.15/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.15/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.15/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.15/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.15/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.16/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.16/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.16/user/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.16/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.16/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.16/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.17/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-account", - "/de/enterprise/2.17/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.17/user/articles/enabling-private-github-com-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.17/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.17/user/articles/enabling-private-githubcom-repository-search-in-your-github-enterprise-server-account", - "/de/enterprise/2.17/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.13/user/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.13/articles/finding-files-on-github", - "/de/enterprise/2.13/user/articles/finding-files-on-github", - "/de/enterprise/2.13/github/searching-for-information-on-github/finding-files-on-github" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.14/user/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.14/articles/finding-files-on-github", - "/de/enterprise/2.14/user/articles/finding-files-on-github", - "/de/enterprise/2.14/github/searching-for-information-on-github/finding-files-on-github" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.15/user/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.15/articles/finding-files-on-github", - "/de/enterprise/2.15/user/articles/finding-files-on-github", - "/de/enterprise/2.15/github/searching-for-information-on-github/finding-files-on-github" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.16/articles/finding-files-on-github", - "/de/enterprise/2.16/user/articles/finding-files-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/finding-files-on-github" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.17/articles/finding-files-on-github", - "/de/enterprise/2.17/user/articles/finding-files-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/finding-files-on-github" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.13/user/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.13/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.13/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.13/github/searching-for-information-on-github/getting-started-with-searching-on-github" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.14/user/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.14/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.14/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.14/github/searching-for-information-on-github/getting-started-with-searching-on-github" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.15/user/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.15/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.15/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.15/github/searching-for-information-on-github/getting-started-with-searching-on-github" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.16/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.16/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/getting-started-with-searching-on-github" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.17/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.17/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/getting-started-with-searching-on-github" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github", - "/de/enterprise/2.13/user/searching-for-information-on-github", - "/de/enterprise/2.13/categories/78/articles", - "/de/enterprise/2.13/user/categories/78/articles", - "/de/enterprise/2.13/categories/search", - "/de/enterprise/2.13/user/categories/search", - "/de/enterprise/2.13/categories/searching-for-information-on-github", - "/de/enterprise/2.13/user/categories/searching-for-information-on-github", - "/de/enterprise/2.13/github/searching-for-information-on-github" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github", - "/de/enterprise/2.14/user/searching-for-information-on-github", - "/de/enterprise/2.14/categories/78/articles", - "/de/enterprise/2.14/user/categories/78/articles", - "/de/enterprise/2.14/categories/search", - "/de/enterprise/2.14/user/categories/search", - "/de/enterprise/2.14/categories/searching-for-information-on-github", - "/de/enterprise/2.14/user/categories/searching-for-information-on-github", - "/de/enterprise/2.14/github/searching-for-information-on-github" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github", - "/de/enterprise/2.15/user/searching-for-information-on-github", - "/de/enterprise/2.15/categories/78/articles", - "/de/enterprise/2.15/user/categories/78/articles", - "/de/enterprise/2.15/categories/search", - "/de/enterprise/2.15/user/categories/search", - "/de/enterprise/2.15/categories/searching-for-information-on-github", - "/de/enterprise/2.15/user/categories/searching-for-information-on-github", - "/de/enterprise/2.15/github/searching-for-information-on-github" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github", - "/de/enterprise/2.16/categories/78/articles", - "/de/enterprise/2.16/user/categories/78/articles", - "/de/enterprise/2.16/categories/search", - "/de/enterprise/2.16/user/categories/search", - "/de/enterprise/2.16/categories/searching-for-information-on-github", - "/de/enterprise/2.16/user/categories/searching-for-information-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github", - "/de/enterprise/2.17/categories/78/articles", - "/de/enterprise/2.17/user/categories/78/articles", - "/de/enterprise/2.17/categories/search", - "/de/enterprise/2.17/user/categories/search", - "/de/enterprise/2.17/categories/searching-for-information-on-github", - "/de/enterprise/2.17/user/categories/searching-for-information-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-code", - "/de/enterprise/2.13/articles/searching-code", - "/de/enterprise/2.13/user/articles/searching-code", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-code" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-code", - "/de/enterprise/2.14/articles/searching-code", - "/de/enterprise/2.14/user/articles/searching-code", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-code" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-code", - "/de/enterprise/2.15/articles/searching-code", - "/de/enterprise/2.15/user/articles/searching-code", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-code" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-code", - "/de/enterprise/2.16/articles/searching-code", - "/de/enterprise/2.16/user/articles/searching-code", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-code" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-code", - "/de/enterprise/2.17/articles/searching-code", - "/de/enterprise/2.17/user/articles/searching-code", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-files-in-a-repository-for-exact-matches", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-code-for-exact-matches", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-code" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.13/articles/searching-commits", - "/de/enterprise/2.13/user/articles/searching-commits", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-commits" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.14/articles/searching-commits", - "/de/enterprise/2.14/user/articles/searching-commits", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-commits" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.15/articles/searching-commits", - "/de/enterprise/2.15/user/articles/searching-commits", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-commits" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.16/articles/searching-commits", - "/de/enterprise/2.16/user/articles/searching-commits", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-commits" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.17/articles/searching-commits", - "/de/enterprise/2.17/user/articles/searching-commits", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-commits" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-for-packages" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-for-packages" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-for-packages" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-for-packages" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-for-packages", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-for-packages" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.13/articles/searching-repositories", - "/de/enterprise/2.13/user/articles/searching-repositories", - "/de/enterprise/2.13/articles/searching-for-repositories", - "/de/enterprise/2.13/user/articles/searching-for-repositories", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-for-repositories" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.14/articles/searching-repositories", - "/de/enterprise/2.14/user/articles/searching-repositories", - "/de/enterprise/2.14/articles/searching-for-repositories", - "/de/enterprise/2.14/user/articles/searching-for-repositories", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-for-repositories" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.15/articles/searching-repositories", - "/de/enterprise/2.15/user/articles/searching-repositories", - "/de/enterprise/2.15/articles/searching-for-repositories", - "/de/enterprise/2.15/user/articles/searching-for-repositories", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-for-repositories" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.16/articles/searching-repositories", - "/de/enterprise/2.16/user/articles/searching-repositories", - "/de/enterprise/2.16/articles/searching-for-repositories", - "/de/enterprise/2.16/user/articles/searching-for-repositories", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-for-repositories" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.17/articles/searching-repositories", - "/de/enterprise/2.17/user/articles/searching-repositories", - "/de/enterprise/2.17/articles/searching-for-repositories", - "/de/enterprise/2.17/user/articles/searching-for-repositories", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-for-repositories" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.13/articles/searching-in-forks", - "/de/enterprise/2.13/user/articles/searching-in-forks", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-in-forks" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.14/articles/searching-in-forks", - "/de/enterprise/2.14/user/articles/searching-in-forks", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-in-forks" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.15/articles/searching-in-forks", - "/de/enterprise/2.15/user/articles/searching-in-forks", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-in-forks" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.16/articles/searching-in-forks", - "/de/enterprise/2.16/user/articles/searching-in-forks", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-in-forks" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.17/articles/searching-in-forks", - "/de/enterprise/2.17/user/articles/searching-in-forks", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-in-forks" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.13/articles/searching-issues", - "/de/enterprise/2.13/user/articles/searching-issues", - "/de/enterprise/2.13/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.13/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.14/articles/searching-issues", - "/de/enterprise/2.14/user/articles/searching-issues", - "/de/enterprise/2.14/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.14/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.15/articles/searching-issues", - "/de/enterprise/2.15/user/articles/searching-issues", - "/de/enterprise/2.15/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.15/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.16/articles/searching-issues", - "/de/enterprise/2.16/user/articles/searching-issues", - "/de/enterprise/2.16/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.16/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.17/articles/searching-issues", - "/de/enterprise/2.17/user/articles/searching-issues", - "/de/enterprise/2.17/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.17/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-issues-and-pull-requests" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.13/articles/searching-on-github", - "/de/enterprise/2.13/user/articles/searching-on-github", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-on-github" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.14/articles/searching-on-github", - "/de/enterprise/2.14/user/articles/searching-on-github", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-on-github" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.15/articles/searching-on-github", - "/de/enterprise/2.15/user/articles/searching-on-github", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-on-github" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.16/articles/searching-on-github", - "/de/enterprise/2.16/user/articles/searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-on-github" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.17/articles/searching-on-github", - "/de/enterprise/2.17/user/articles/searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-on-github" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.13/articles/searching-topics", - "/de/enterprise/2.13/user/articles/searching-topics", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-topics" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.14/articles/searching-topics", - "/de/enterprise/2.14/user/articles/searching-topics", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-topics" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.15/articles/searching-topics", - "/de/enterprise/2.15/user/articles/searching-topics", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-topics" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.16/articles/searching-topics", - "/de/enterprise/2.16/user/articles/searching-topics", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-topics" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.17/articles/searching-topics", - "/de/enterprise/2.17/user/articles/searching-topics", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-topics" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-users", - "/de/enterprise/2.13/articles/searching-users", - "/de/enterprise/2.13/user/articles/searching-users", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-users" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-users", - "/de/enterprise/2.14/articles/searching-users", - "/de/enterprise/2.14/user/articles/searching-users", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-users" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-users", - "/de/enterprise/2.15/articles/searching-users", - "/de/enterprise/2.15/user/articles/searching-users", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-users" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-users", - "/de/enterprise/2.16/articles/searching-users", - "/de/enterprise/2.16/user/articles/searching-users", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-users" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-users", - "/de/enterprise/2.17/articles/searching-users", - "/de/enterprise/2.17/user/articles/searching-users", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-users" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.13/user/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.13/articles/searching-wikis", - "/de/enterprise/2.13/user/articles/searching-wikis", - "/de/enterprise/2.13/github/searching-for-information-on-github/searching-wikis" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.14/user/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.14/articles/searching-wikis", - "/de/enterprise/2.14/user/articles/searching-wikis", - "/de/enterprise/2.14/github/searching-for-information-on-github/searching-wikis" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.15/user/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.15/articles/searching-wikis", - "/de/enterprise/2.15/user/articles/searching-wikis", - "/de/enterprise/2.15/github/searching-for-information-on-github/searching-wikis" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.16/articles/searching-wikis", - "/de/enterprise/2.16/user/articles/searching-wikis", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-wikis" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.17/articles/searching-wikis", - "/de/enterprise/2.17/user/articles/searching-wikis", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-wikis" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.13/user/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.13/articles/sorting-search-results", - "/de/enterprise/2.13/user/articles/sorting-search-results", - "/de/enterprise/2.13/github/searching-for-information-on-github/sorting-search-results" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.14/user/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.14/articles/sorting-search-results", - "/de/enterprise/2.14/user/articles/sorting-search-results", - "/de/enterprise/2.14/github/searching-for-information-on-github/sorting-search-results" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.15/user/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.15/articles/sorting-search-results", - "/de/enterprise/2.15/user/articles/sorting-search-results", - "/de/enterprise/2.15/github/searching-for-information-on-github/sorting-search-results" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.16/user/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.16/articles/sorting-search-results", - "/de/enterprise/2.16/user/articles/sorting-search-results", - "/de/enterprise/2.16/github/searching-for-information-on-github/sorting-search-results" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.17/user/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.17/articles/sorting-search-results", - "/de/enterprise/2.17/user/articles/sorting-search-results", - "/de/enterprise/2.17/github/searching-for-information-on-github/sorting-search-results" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.13/user/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.13/articles/troubleshooting-search-queries", - "/de/enterprise/2.13/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.13/github/searching-for-information-on-github/troubleshooting-search-queries" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.14/user/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.14/articles/troubleshooting-search-queries", - "/de/enterprise/2.14/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.14/github/searching-for-information-on-github/troubleshooting-search-queries" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.15/user/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.15/articles/troubleshooting-search-queries", - "/de/enterprise/2.15/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.15/github/searching-for-information-on-github/troubleshooting-search-queries" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.16/user/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.16/articles/troubleshooting-search-queries", - "/de/enterprise/2.16/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.16/github/searching-for-information-on-github/troubleshooting-search-queries" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.17/user/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.17/articles/troubleshooting-search-queries", - "/de/enterprise/2.17/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.17/github/searching-for-information-on-github/troubleshooting-search-queries" - ], - [ - "/de/enterprise/2.13/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.13/user/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.13/articles/search-syntax", - "/de/enterprise/2.13/user/articles/search-syntax", - "/de/enterprise/2.13/articles/understanding-the-search-syntax", - "/de/enterprise/2.13/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.13/github/searching-for-information-on-github/understanding-the-search-syntax" - ], - [ - "/de/enterprise/2.14/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.14/user/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.14/articles/search-syntax", - "/de/enterprise/2.14/user/articles/search-syntax", - "/de/enterprise/2.14/articles/understanding-the-search-syntax", - "/de/enterprise/2.14/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.14/github/searching-for-information-on-github/understanding-the-search-syntax" - ], - [ - "/de/enterprise/2.15/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.15/user/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.15/articles/search-syntax", - "/de/enterprise/2.15/user/articles/search-syntax", - "/de/enterprise/2.15/articles/understanding-the-search-syntax", - "/de/enterprise/2.15/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.15/github/searching-for-information-on-github/understanding-the-search-syntax" - ], - [ - "/de/enterprise/2.16/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.16/user/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.16/articles/search-syntax", - "/de/enterprise/2.16/user/articles/search-syntax", - "/de/enterprise/2.16/articles/understanding-the-search-syntax", - "/de/enterprise/2.16/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.16/github/searching-for-information-on-github/understanding-the-search-syntax" - ], - [ - "/de/enterprise/2.17/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.17/user/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.17/articles/search-syntax", - "/de/enterprise/2.17/user/articles/search-syntax", - "/de/enterprise/2.17/articles/understanding-the-search-syntax", - "/de/enterprise/2.17/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.17/github/searching-for-information-on-github/understanding-the-search-syntax" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.13/articles/about-organizations", - "/de/enterprise/2.13/user/articles/about-organizations", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/about-organizations" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.14/articles/about-organizations", - "/de/enterprise/2.14/user/articles/about-organizations", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/about-organizations" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.15/articles/about-organizations", - "/de/enterprise/2.15/user/articles/about-organizations", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/about-organizations" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.16/articles/about-organizations", - "/de/enterprise/2.16/user/articles/about-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-organizations" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.17/articles/about-organizations", - "/de/enterprise/2.17/user/articles/about-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-organizations" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.13/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.13/user/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.14/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.14/user/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.15/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.15/user/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.16/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.16/user/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities", - "/de/enterprise/2.17/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.17/user/articles/about-ssh-certificate-authorities", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.13/articles/about-teams", - "/de/enterprise/2.13/user/articles/about-teams", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/about-teams" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.14/articles/about-teams", - "/de/enterprise/2.14/user/articles/about-teams", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/about-teams" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.15/articles/about-teams", - "/de/enterprise/2.15/user/articles/about-teams", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/about-teams" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.16/articles/about-teams", - "/de/enterprise/2.16/user/articles/about-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-teams" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.17/articles/about-teams", - "/de/enterprise/2.17/user/articles/about-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-teams" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.13/articles/about-your-organization-dashboard", - "/de/enterprise/2.13/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.14/articles/about-your-organization-dashboard", - "/de/enterprise/2.14/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.15/articles/about-your-organization-dashboard", - "/de/enterprise/2.15/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.16/articles/about-your-organization-dashboard", - "/de/enterprise/2.16/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.17/articles/about-your-organization-dashboard", - "/de/enterprise/2.17/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.13/articles/news-feed", - "/de/enterprise/2.13/user/articles/news-feed", - "/de/enterprise/2.13/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.13/user/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.13/articles/about-your-organizations-news-feed", - "/de/enterprise/2.13/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.14/articles/news-feed", - "/de/enterprise/2.14/user/articles/news-feed", - "/de/enterprise/2.14/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.14/user/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.14/articles/about-your-organizations-news-feed", - "/de/enterprise/2.14/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.15/articles/news-feed", - "/de/enterprise/2.15/user/articles/news-feed", - "/de/enterprise/2.15/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.15/user/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.15/articles/about-your-organizations-news-feed", - "/de/enterprise/2.15/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.16/articles/news-feed", - "/de/enterprise/2.16/user/articles/news-feed", - "/de/enterprise/2.16/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.16/user/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.16/articles/about-your-organizations-news-feed", - "/de/enterprise/2.16/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.17/articles/news-feed", - "/de/enterprise/2.17/user/articles/news-feed", - "/de/enterprise/2.17/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.17/user/articles/about-your-organization-s-news-feed", - "/de/enterprise/2.17/articles/about-your-organizations-news-feed", - "/de/enterprise/2.17/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.13/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.13/user/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.13/articles/managing-the-organization-s-settings", - "/de/enterprise/2.13/user/articles/managing-the-organization-s-settings", - "/de/enterprise/2.13/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.13/user/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.13/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.13/user/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.13/articles/managing-an-organization-s-settings", - "/de/enterprise/2.13/user/articles/managing-an-organization-s-settings", - "/de/enterprise/2.13/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.13/user/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.13/articles/accessing-your-organizations-settings", - "/de/enterprise/2.13/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.14/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.14/user/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.14/articles/managing-the-organization-s-settings", - "/de/enterprise/2.14/user/articles/managing-the-organization-s-settings", - "/de/enterprise/2.14/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.14/user/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.14/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.14/user/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.14/articles/managing-an-organization-s-settings", - "/de/enterprise/2.14/user/articles/managing-an-organization-s-settings", - "/de/enterprise/2.14/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.14/user/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.14/articles/accessing-your-organizations-settings", - "/de/enterprise/2.14/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.15/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.15/user/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.15/articles/managing-the-organization-s-settings", - "/de/enterprise/2.15/user/articles/managing-the-organization-s-settings", - "/de/enterprise/2.15/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.15/user/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.15/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.15/user/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.15/articles/managing-an-organization-s-settings", - "/de/enterprise/2.15/user/articles/managing-an-organization-s-settings", - "/de/enterprise/2.15/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.15/user/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.15/articles/accessing-your-organizations-settings", - "/de/enterprise/2.15/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.16/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.16/user/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.16/articles/managing-the-organization-s-settings", - "/de/enterprise/2.16/user/articles/managing-the-organization-s-settings", - "/de/enterprise/2.16/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.16/user/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.16/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.16/user/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.16/articles/managing-an-organization-s-settings", - "/de/enterprise/2.16/user/articles/managing-an-organization-s-settings", - "/de/enterprise/2.16/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.16/user/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.16/articles/accessing-your-organizations-settings", - "/de/enterprise/2.16/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.17/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.17/user/articles/who-can-access-organization-billing-information-and-account-settings", - "/de/enterprise/2.17/articles/managing-the-organization-s-settings", - "/de/enterprise/2.17/user/articles/managing-the-organization-s-settings", - "/de/enterprise/2.17/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.17/user/articles/who-can-see-billing-information-account-settings", - "/de/enterprise/2.17/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.17/user/articles/who-can-see-billing-information-and-access-account-settings", - "/de/enterprise/2.17/articles/managing-an-organization-s-settings", - "/de/enterprise/2.17/user/articles/managing-an-organization-s-settings", - "/de/enterprise/2.17/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.17/user/articles/accessing-your-organization-s-settings", - "/de/enterprise/2.17/articles/accessing-your-organizations-settings", - "/de/enterprise/2.17/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.13/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.13/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.14/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.14/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.15/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.15/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.13/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.13/user/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.14/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.14/user/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.15/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.15/user/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.16/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.16/user/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/user/articles/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.13/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.13/user/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.13/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.13/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.14/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.14/user/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.14/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.14/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.15/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.15/user/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.15/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.15/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.16/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.16/user/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.16/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.16/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.17/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.17/user/articles/adding-organization-members-to-a-team-early-access-program", - "/de/enterprise/2.17/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.17/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.13/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.13/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.14/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.14/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.15/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.15/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.13/articles/adding-people-to-your-organization", - "/de/enterprise/2.13/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.14/articles/adding-people-to-your-organization", - "/de/enterprise/2.14/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.15/articles/adding-people-to-your-organization", - "/de/enterprise/2.15/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.16/articles/adding-people-to-your-organization", - "/de/enterprise/2.16/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.17/articles/adding-people-to-your-organization", - "/de/enterprise/2.17/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.13/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.13/user/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.14/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.14/user/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.15/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.15/user/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/user/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/user/articles/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.13/articles/changing-team-visibility", - "/de/enterprise/2.13/user/articles/changing-team-visibility", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.14/articles/changing-team-visibility", - "/de/enterprise/2.14/user/articles/changing-team-visibility", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.15/articles/changing-team-visibility", - "/de/enterprise/2.15/user/articles/changing-team-visibility", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.16/articles/changing-team-visibility", - "/de/enterprise/2.16/user/articles/changing-team-visibility", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.17/articles/changing-team-visibility", - "/de/enterprise/2.17/user/articles/changing-team-visibility", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.13/articles/creating-a-new-organization-account", - "/de/enterprise/2.13/user/articles/creating-a-new-organization-account", - "/de/enterprise/2.13/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.13/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.14/articles/creating-a-new-organization-account", - "/de/enterprise/2.14/user/articles/creating-a-new-organization-account", - "/de/enterprise/2.14/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.14/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.15/articles/creating-a-new-organization-account", - "/de/enterprise/2.15/user/articles/creating-a-new-organization-account", - "/de/enterprise/2.15/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.15/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/articles/creating-a-new-organization-account", - "/de/enterprise/2.16/user/articles/creating-a-new-organization-account", - "/de/enterprise/2.16/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/articles/creating-a-new-organization-account", - "/de/enterprise/2.17/user/articles/creating-a-new-organization-account", - "/de/enterprise/2.17/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.13/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.13/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.14/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.14/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.15/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.16/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/converting-your-previous-admin-team-to-the-improved-organization-permissions", - "/de/enterprise/2.17/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.13/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.13/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.14/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.14/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.15/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.15/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.16/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.16/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.17/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.17/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.13/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.13/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.14/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.14/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.15/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.15/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.13/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.13/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.14/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.14/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.15/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.15/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.13/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.13/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.13/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.13/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.14/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.14/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.14/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.14/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.15/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.15/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.15/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.16/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.16/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.16/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.17/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program", - "/de/enterprise/2.17/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/converting-your-previous-owners-team-to-the-improved-organization-permissions", - "/de/enterprise/2.17/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.13/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.13/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.13/admin/user-management/creating-organizations", - "/de/enterprise/2.13/admin/guides/user-management/creating-organizations", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.14/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.14/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.14/admin/user-management/creating-organizations", - "/de/enterprise/2.14/admin/guides/user-management/creating-organizations", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.15/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.15/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.15/admin/user-management/creating-organizations", - "/de/enterprise/2.15/admin/guides/user-management/creating-organizations", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/admin/user-management/creating-organizations", - "/de/enterprise/2.16/admin/guides/user-management/creating-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/admin/user-management/creating-organizations", - "/de/enterprise/2.17/admin/guides/user-management/creating-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.13/articles/creating-a-team-early-access-program", - "/de/enterprise/2.13/user/articles/creating-a-team-early-access-program", - "/de/enterprise/2.13/articles/creating-a-team", - "/de/enterprise/2.13/user/articles/creating-a-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/creating-a-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.14/articles/creating-a-team-early-access-program", - "/de/enterprise/2.14/user/articles/creating-a-team-early-access-program", - "/de/enterprise/2.14/articles/creating-a-team", - "/de/enterprise/2.14/user/articles/creating-a-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/creating-a-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.15/articles/creating-a-team-early-access-program", - "/de/enterprise/2.15/user/articles/creating-a-team-early-access-program", - "/de/enterprise/2.15/articles/creating-a-team", - "/de/enterprise/2.15/user/articles/creating-a-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/creating-a-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.16/articles/creating-a-team-early-access-program", - "/de/enterprise/2.16/user/articles/creating-a-team-early-access-program", - "/de/enterprise/2.16/articles/creating-a-team", - "/de/enterprise/2.16/user/articles/creating-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/creating-a-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.17/articles/creating-a-team-early-access-program", - "/de/enterprise/2.17/user/articles/creating-a-team-early-access-program", - "/de/enterprise/2.17/articles/creating-a-team", - "/de/enterprise/2.17/user/articles/creating-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/creating-a-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.13/articles/deleting-a-team", - "/de/enterprise/2.13/user/articles/deleting-a-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/deleting-a-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.14/articles/deleting-a-team", - "/de/enterprise/2.14/user/articles/deleting-a-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/deleting-a-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.15/articles/deleting-a-team", - "/de/enterprise/2.15/user/articles/deleting-a-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/deleting-a-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.16/articles/deleting-a-team", - "/de/enterprise/2.16/user/articles/deleting-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/deleting-a-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.17/articles/deleting-a-team", - "/de/enterprise/2.17/user/articles/deleting-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/deleting-a-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.13/articles/deleting-an-organization-account", - "/de/enterprise/2.13/user/articles/deleting-an-organization-account", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.14/articles/deleting-an-organization-account", - "/de/enterprise/2.14/user/articles/deleting-an-organization-account", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.15/articles/deleting-an-organization-account", - "/de/enterprise/2.15/user/articles/deleting-an-organization-account", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.16/articles/deleting-an-organization-account", - "/de/enterprise/2.16/user/articles/deleting-an-organization-account", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.17/articles/deleting-an-organization-account", - "/de/enterprise/2.17/user/articles/deleting-an-organization-account", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/disabling-or-limiting-github-actions-for-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.13/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.13/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.14/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.14/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.15/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.15/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.13/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.13/user/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.13/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.13/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.14/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.14/user/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.14/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.14/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.15/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.15/user/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.15/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.15/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.16/user/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.16/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.17/user/articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program", - "/de/enterprise/2.17/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.13/articles/about-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/about-improved-organization-permissions", - "/de/enterprise/2.13/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.13/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.14/articles/about-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/about-improved-organization-permissions", - "/de/enterprise/2.14/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.14/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.15/articles/about-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/about-improved-organization-permissions", - "/de/enterprise/2.15/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.15/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/articles/about-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/about-improved-organization-permissions", - "/de/enterprise/2.16/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/articles/about-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/about-improved-organization-permissions", - "/de/enterprise/2.17/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.13/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.13/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.14/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.14/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.15/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.15/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.13/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.13/user/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.13/articles/keeping-your-organization-secure", - "/de/enterprise/2.13/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.14/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.14/user/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.14/articles/keeping-your-organization-secure", - "/de/enterprise/2.14/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.15/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.15/user/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.15/articles/keeping-your-organization-secure", - "/de/enterprise/2.15/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.16/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.16/user/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.16/articles/keeping-your-organization-secure", - "/de/enterprise/2.16/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.17/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.17/user/articles/preventing-unauthorized-access-to-organization-information", - "/de/enterprise/2.17/articles/keeping-your-organization-secure", - "/de/enterprise/2.17/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.13/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.13/user/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.13/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.13/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.14/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.14/user/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.14/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.14/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.15/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.15/user/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.15/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.16/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.16/user/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.16/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.17/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.17/user/articles/changing-a-person-s-role-to-owner", - "/de/enterprise/2.17/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.17/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.13/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.13/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.14/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.14/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.15/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.15/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.13/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.13/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.14/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.14/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.15/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.15/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.16/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.16/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organization-s-apps", - "/de/enterprise/2.17/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.13/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.13/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.14/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.14/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.15/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.15/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.16/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organization-s-project-boards", - "/de/enterprise/2.17/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.13/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.13/user/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.13/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.13/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.13/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.14/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.14/user/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.14/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.14/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.14/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.15/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.15/user/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.15/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.15/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.15/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.16/user/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.16/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.16/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.17/user/articles/permission-levels-for-an-organization-repository", - "/de/enterprise/2.17/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organization-s-repositories", - "/de/enterprise/2.17/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.13/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.13/user/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.13/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.13/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.14/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.14/user/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.14/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.14/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.15/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.15/user/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.15/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.15/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.16/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/articles/managing-an-individual-s-access-to-an-organization-project-board", - "/de/enterprise/2.17/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.13/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.13/user/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.13/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.13/user/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.13/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.13/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.14/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.14/user/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.14/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.14/user/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.14/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.14/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.15/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.15/user/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.15/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.15/user/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.15/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.15/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.16/user/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.16/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.16/user/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.16/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.17/user/articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.17/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.17/user/articles/managing-an-individual-s-access-to-an-organization-repository", - "/de/enterprise/2.17/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.13/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.13/user/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.14/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.14/user/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.15/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.15/user/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.16/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.16/user/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.17/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.17/user/articles/managing-default-labels-for-repositories-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-default-labels-for-repositories-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.13/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.13/user/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.13/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.13/user/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.14/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.14/user/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.14/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.14/user/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.15/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.15/user/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.15/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.15/user/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.16/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.16/user/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.16/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.16/user/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.17/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.17/user/articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities", - "/de/enterprise/2.17/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.17/user/articles/managing-git-access-to-your-organizations-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.13/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.13/user/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.13/articles/managing-membership-in-your-organization", - "/de/enterprise/2.13/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.14/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.14/user/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.14/articles/managing-membership-in-your-organization", - "/de/enterprise/2.14/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.15/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.15/user/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.15/articles/managing-membership-in-your-organization", - "/de/enterprise/2.15/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.16/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.16/user/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.16/articles/managing-membership-in-your-organization", - "/de/enterprise/2.16/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.17/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.17/user/articles/removing-a-user-from-your-organization", - "/de/enterprise/2.17/articles/managing-membership-in-your-organization", - "/de/enterprise/2.17/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.13/articles/managing-organization-settings", - "/de/enterprise/2.13/user/articles/managing-organization-settings", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.14/articles/managing-organization-settings", - "/de/enterprise/2.14/user/articles/managing-organization-settings", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.15/articles/managing-organization-settings", - "/de/enterprise/2.15/user/articles/managing-organization-settings", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.16/articles/managing-organization-settings", - "/de/enterprise/2.16/user/articles/managing-organization-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.17/articles/managing-organization-settings", - "/de/enterprise/2.17/user/articles/managing-organization-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.13/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.13/user/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.13/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.13/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.14/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.14/user/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.14/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.14/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.15/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.15/user/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.15/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.15/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.16/user/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.16/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.17/user/articles/managing-people-s-access-to-your-organization-with-roles", - "/de/enterprise/2.17/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.13/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.13/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.14/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.14/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.15/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.15/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.13/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.13/user/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.13/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.13/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.14/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.14/user/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.14/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.14/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.15/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.15/user/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.15/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.15/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.16/user/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.16/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.17/user/articles/managing-team-access-to-an-organization-repository-early-access-program", - "/de/enterprise/2.17/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.13/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.13/user/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.14/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.14/user/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.15/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.15/user/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.16/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.16/user/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.17/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.17/user/articles/managing-the-display-of-member-names-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-the-display-of-member-names-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.13/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.13/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.14/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.14/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.15/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.16/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.17/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.17/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.13/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.13/user/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.14/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.14/user/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.15/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.15/user/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.16/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.16/user/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.17/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.17/user/articles/managing-your-organizations-ssh-certificate-authorities", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-your-organizations-ssh-certificate-authorities" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.13/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.13/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.14/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.14/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.15/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.16/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions", - "/de/enterprise/2.17/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.13/articles/improved-organization-permissions", - "/de/enterprise/2.13/user/articles/improved-organization-permissions", - "/de/enterprise/2.13/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.13/user/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.13/articles/user-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.13/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.13/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.14/articles/improved-organization-permissions", - "/de/enterprise/2.14/user/articles/improved-organization-permissions", - "/de/enterprise/2.14/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.14/user/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.14/articles/user-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.14/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.14/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/improved-organization-permissions", - "/de/enterprise/2.15/user/articles/improved-organization-permissions", - "/de/enterprise/2.15/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.15/user/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.15/articles/user-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.15/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/articles/improved-organization-permissions", - "/de/enterprise/2.16/user/articles/improved-organization-permissions", - "/de/enterprise/2.16/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.16/user/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.16/articles/user-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.16/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.16/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/articles/improved-organization-permissions", - "/de/enterprise/2.17/user/articles/improved-organization-permissions", - "/de/enterprise/2.17/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.17/user/articles/github-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.17/articles/user-direct-organization-membership-pre-release-guide", - "/de/enterprise/2.17/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/migrating-your-organization-to-improved-organization-permissions", - "/de/enterprise/2.17/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.13/articles/changing-a-team-s-parent", - "/de/enterprise/2.13/user/articles/changing-a-team-s-parent", - "/de/enterprise/2.13/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.13/user/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.13/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.13/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.14/articles/changing-a-team-s-parent", - "/de/enterprise/2.14/user/articles/changing-a-team-s-parent", - "/de/enterprise/2.14/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.14/user/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.14/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.14/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.15/articles/changing-a-team-s-parent", - "/de/enterprise/2.15/user/articles/changing-a-team-s-parent", - "/de/enterprise/2.15/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.15/user/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.15/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.15/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/articles/changing-a-team-s-parent", - "/de/enterprise/2.16/user/articles/changing-a-team-s-parent", - "/de/enterprise/2.16/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.16/user/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.16/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/articles/changing-a-team-s-parent", - "/de/enterprise/2.17/user/articles/changing-a-team-s-parent", - "/de/enterprise/2.17/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.17/user/articles/moving-a-team-in-your-organization-s-hierarchy", - "/de/enterprise/2.17/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.13/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.13/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.13/user/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.13/articles/creating-teams", - "/de/enterprise/2.13/user/articles/creating-teams", - "/de/enterprise/2.13/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.13/user/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.13/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.13/user/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.13/articles/setting-up-teams", - "/de/enterprise/2.13/user/articles/setting-up-teams", - "/de/enterprise/2.13/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.13/user/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.13/articles/maintaining-teams", - "/de/enterprise/2.13/user/articles/maintaining-teams", - "/de/enterprise/2.13/articles/organizing-members-into-teams", - "/de/enterprise/2.13/user/articles/organizing-members-into-teams", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.14/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.14/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.14/user/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.14/articles/creating-teams", - "/de/enterprise/2.14/user/articles/creating-teams", - "/de/enterprise/2.14/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.14/user/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.14/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.14/user/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.14/articles/setting-up-teams", - "/de/enterprise/2.14/user/articles/setting-up-teams", - "/de/enterprise/2.14/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.14/user/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.14/articles/maintaining-teams", - "/de/enterprise/2.14/user/articles/maintaining-teams", - "/de/enterprise/2.14/articles/organizing-members-into-teams", - "/de/enterprise/2.14/user/articles/organizing-members-into-teams", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.15/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.15/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.15/user/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.15/articles/creating-teams", - "/de/enterprise/2.15/user/articles/creating-teams", - "/de/enterprise/2.15/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.15/user/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.15/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.15/user/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.15/articles/setting-up-teams", - "/de/enterprise/2.15/user/articles/setting-up-teams", - "/de/enterprise/2.15/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.15/user/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.15/articles/maintaining-teams", - "/de/enterprise/2.15/user/articles/maintaining-teams", - "/de/enterprise/2.15/articles/organizing-members-into-teams", - "/de/enterprise/2.15/user/articles/organizing-members-into-teams", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.16/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.16/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.16/user/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.16/articles/creating-teams", - "/de/enterprise/2.16/user/articles/creating-teams", - "/de/enterprise/2.16/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.16/user/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.16/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.16/user/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.16/articles/setting-up-teams", - "/de/enterprise/2.16/user/articles/setting-up-teams", - "/de/enterprise/2.16/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.16/user/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.16/articles/maintaining-teams", - "/de/enterprise/2.16/user/articles/maintaining-teams", - "/de/enterprise/2.16/articles/organizing-members-into-teams", - "/de/enterprise/2.16/user/articles/organizing-members-into-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.17/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/setting-up-teams-improved-organization-permissions", - "/de/enterprise/2.17/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.17/user/articles/setting-up-teams-for-accessing-organization-repositories", - "/de/enterprise/2.17/articles/creating-teams", - "/de/enterprise/2.17/user/articles/creating-teams", - "/de/enterprise/2.17/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.17/user/articles/adding-people-to-teams-in-an-organization", - "/de/enterprise/2.17/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.17/user/articles/removing-a-member-from-a-team-in-your-organization", - "/de/enterprise/2.17/articles/setting-up-teams", - "/de/enterprise/2.17/user/articles/setting-up-teams", - "/de/enterprise/2.17/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.17/user/articles/maintaining-teams-improved-organization-permissions", - "/de/enterprise/2.17/articles/maintaining-teams", - "/de/enterprise/2.17/user/articles/maintaining-teams", - "/de/enterprise/2.17/articles/organizing-members-into-teams", - "/de/enterprise/2.17/user/articles/organizing-members-into-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.13/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.13/user/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.13/articles/permission-levels-for-an-organization", - "/de/enterprise/2.13/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.14/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.14/user/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.14/articles/permission-levels-for-an-organization", - "/de/enterprise/2.14/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.15/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.15/user/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.15/articles/permission-levels-for-an-organization", - "/de/enterprise/2.15/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.16/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.16/user/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.16/articles/permission-levels-for-an-organization", - "/de/enterprise/2.16/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.17/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.17/user/articles/permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.17/articles/permission-levels-for-an-organization", - "/de/enterprise/2.17/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.13/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.13/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.14/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.14/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.15/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.15/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.13/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.13/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.14/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.14/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.15/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.15/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.13/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.13/user/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.13/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.13/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.14/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.14/user/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.14/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.14/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.15/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.15/user/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.15/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.15/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.16/user/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.16/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.17/user/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization", - "/de/enterprise/2.17/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.13/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.13/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.14/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.14/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.15/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.15/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.16/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.16/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.17/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.17/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.13/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.13/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.14/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.14/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.15/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.15/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.13/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.13/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.14/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.14/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.15/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.15/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.13/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.13/user/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.14/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.14/user/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.15/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.15/user/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.16/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.16/user/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/user/articles/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.13/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.13/user/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.13/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.13/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.14/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.14/user/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.14/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.14/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.15/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.15/user/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.15/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.15/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.16/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.16/user/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.16/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.16/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.17/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.17/user/articles/removing-organization-members-from-a-team-early-access-program", - "/de/enterprise/2.17/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.17/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.13/articles/renaming-a-team", - "/de/enterprise/2.13/user/articles/renaming-a-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/renaming-a-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.14/articles/renaming-a-team", - "/de/enterprise/2.14/user/articles/renaming-a-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/renaming-a-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.15/articles/renaming-a-team", - "/de/enterprise/2.15/user/articles/renaming-a-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/renaming-a-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.16/articles/renaming-a-team", - "/de/enterprise/2.16/user/articles/renaming-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/renaming-a-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.17/articles/renaming-a-team", - "/de/enterprise/2.17/user/articles/renaming-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/renaming-a-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.13/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.13/user/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.13/articles/renaming-an-organization", - "/de/enterprise/2.13/user/articles/renaming-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.14/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.14/user/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.14/articles/renaming-an-organization", - "/de/enterprise/2.14/user/articles/renaming-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.15/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.15/user/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.15/articles/renaming-an-organization", - "/de/enterprise/2.15/user/articles/renaming-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.16/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.16/user/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.16/articles/renaming-an-organization", - "/de/enterprise/2.16/user/articles/renaming-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.17/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.17/user/articles/what-happens-when-i-change-my-organization-s-name", - "/de/enterprise/2.17/articles/renaming-an-organization", - "/de/enterprise/2.17/user/articles/renaming-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.13/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.13/user/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.13/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.13/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.14/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.14/user/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.14/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.14/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.15/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.15/user/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.15/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.15/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.16/user/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.16/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.17/user/articles/repository-permission-levels-for-an-organization-early-access-program", - "/de/enterprise/2.17/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.13/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.13/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.14/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.14/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.15/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.15/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.16/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.16/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.17/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.17/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.13/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.13/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.14/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.14/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.15/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.15/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.13/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.13/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.14/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.14/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.15/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.15/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.13/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.13/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.14/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.14/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.15/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.15/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.13/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.13/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.14/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.14/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.15/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.15/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.13/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.13/user/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.13/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.13/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.14/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.14/user/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.14/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.14/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.15/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.15/user/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.15/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.15/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.16/user/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.16/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.17/user/articles/reviewing-your-organization-s-installed-integrations", - "/de/enterprise/2.17/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.13/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.13/user/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.13/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.13/user/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.14/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.14/user/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.14/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.14/user/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.15/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.15/user/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.15/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.15/user/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.16/user/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.16/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/user/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.17/user/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories", - "/de/enterprise/2.17/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/user/articles/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.13/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.13/user/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.13/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.13/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.14/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.14/user/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.14/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.14/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.15/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.15/user/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.15/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.15/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.16/user/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.16/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.17/user/articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization", - "/de/enterprise/2.17/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.13/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.13/user/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.14/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.14/user/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.15/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.15/user/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.16/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.16/user/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/user/articles/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.13/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.13/user/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.13/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.13/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.14/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.14/user/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.14/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.14/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.15/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.15/user/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.15/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.15/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.16/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.16/user/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.16/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.16/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.17/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.17/user/articles/setting-your-team-s-profile-picture", - "/de/enterprise/2.17/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.17/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.13/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.13/user/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.13/articles/transferring-organization-ownership", - "/de/enterprise/2.13/user/articles/transferring-organization-ownership", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.14/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.14/user/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.14/articles/transferring-organization-ownership", - "/de/enterprise/2.14/user/articles/transferring-organization-ownership", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.15/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.15/user/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.15/articles/transferring-organization-ownership", - "/de/enterprise/2.15/user/articles/transferring-organization-ownership", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.16/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.16/user/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.16/articles/transferring-organization-ownership", - "/de/enterprise/2.16/user/articles/transferring-organization-ownership", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.17/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.17/user/articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else", - "/de/enterprise/2.17/articles/transferring-organization-ownership", - "/de/enterprise/2.17/user/articles/transferring-organization-ownership", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.13/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.13/user/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.14/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.14/user/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.15/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.15/user/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.16/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.16/user/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/user/articles/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.13/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.13/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.13/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.13/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.14/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.14/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.14/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.14/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.15/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.15/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.15/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.15/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.13/articles/about-github-business-accounts", - "/de/enterprise/2.13/user/articles/about-github-business-accounts", - "/de/enterprise/2.13/articles/about-enterprise-accounts", - "/de/enterprise/2.13/user/articles/about-enterprise-accounts", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.14/articles/about-github-business-accounts", - "/de/enterprise/2.14/user/articles/about-github-business-accounts", - "/de/enterprise/2.14/articles/about-enterprise-accounts", - "/de/enterprise/2.14/user/articles/about-enterprise-accounts", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.15/articles/about-github-business-accounts", - "/de/enterprise/2.15/user/articles/about-github-business-accounts", - "/de/enterprise/2.15/articles/about-enterprise-accounts", - "/de/enterprise/2.15/user/articles/about-enterprise-accounts", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.16/articles/about-github-business-accounts", - "/de/enterprise/2.16/user/articles/about-github-business-accounts", - "/de/enterprise/2.16/articles/about-enterprise-accounts", - "/de/enterprise/2.16/user/articles/about-enterprise-accounts", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/about-enterprise-accounts", - "/de/enterprise/2.17/articles/about-github-business-accounts", - "/de/enterprise/2.17/user/articles/about-github-business-accounts", - "/de/enterprise/2.17/articles/about-enterprise-accounts", - "/de/enterprise/2.17/user/articles/about-enterprise-accounts", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/about-enterprise-accounts", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/about-enterprise-accounts" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.13/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.13/user/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.14/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.14/user/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.15/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.15/user/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.16/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.16/user/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.17/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.17/user/categories/setting-up-and-managing-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.13/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.13/user/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.13/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.13/user/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.14/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.14/user/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.14/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.14/user/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.15/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.15/user/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.15/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.15/user/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.16/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.16/user/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.16/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.16/user/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.17/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.17/user/articles/inviting-people-to-collaborate-in-your-business-account", - "/de/enterprise/2.17/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.17/user/articles/inviting-people-to-manage-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/user/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.13/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.13/user/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/user/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.14/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.14/user/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/user/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.15/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.15/user/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/user/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.16/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.16/user/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/user/articles/managing-users-in-your-enterprise-account", - "/de/enterprise/2.17/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.17/user/articles/managing-users-in-your-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.13/articles/managing-your-enterprise-account", - "/de/enterprise/2.13/user/articles/managing-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.14/articles/managing-your-enterprise-account", - "/de/enterprise/2.14/user/articles/managing-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.15/articles/managing-your-enterprise-account", - "/de/enterprise/2.15/user/articles/managing-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.16/articles/managing-your-enterprise-account", - "/de/enterprise/2.16/user/articles/managing-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/managing-your-enterprise-account", - "/de/enterprise/2.17/articles/managing-your-enterprise-account", - "/de/enterprise/2.17/user/articles/managing-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.13/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.13/user/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.13/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.13/user/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.14/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.14/user/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.14/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.14/user/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.15/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.15/user/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.15/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.15/user/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.16/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.16/user/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.16/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.16/user/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/roles-in-an-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account", - "/de/enterprise/2.17/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.17/user/articles/permission-levels-for-a-business-account", - "/de/enterprise/2.17/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.17/user/articles/roles-for-an-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.13/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.13/user/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.14/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.14/user/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.15/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.15/user/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.16/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.16/user/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.17/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.17/user/articles/viewing-people-in-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/viewing-people-in-your-enterprise" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/user/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/user/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/user/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/user/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-enterprise-account/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/user/articles/viewing-the-subscription-and-usage-for-your-enterprise-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-enterprise/viewing-the-subscription-and-usage-for-your-enterprise-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.13/articles/about-your-organization-s-profile", - "/de/enterprise/2.13/user/articles/about-your-organization-s-profile", - "/de/enterprise/2.13/articles/about-your-organizations-profile", - "/de/enterprise/2.13/user/articles/about-your-organizations-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.14/articles/about-your-organization-s-profile", - "/de/enterprise/2.14/user/articles/about-your-organization-s-profile", - "/de/enterprise/2.14/articles/about-your-organizations-profile", - "/de/enterprise/2.14/user/articles/about-your-organizations-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.15/articles/about-your-organization-s-profile", - "/de/enterprise/2.15/user/articles/about-your-organization-s-profile", - "/de/enterprise/2.15/articles/about-your-organizations-profile", - "/de/enterprise/2.15/user/articles/about-your-organizations-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.16/articles/about-your-organization-s-profile", - "/de/enterprise/2.16/user/articles/about-your-organization-s-profile", - "/de/enterprise/2.16/articles/about-your-organizations-profile", - "/de/enterprise/2.16/user/articles/about-your-organizations-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.17/articles/about-your-organization-s-profile", - "/de/enterprise/2.17/user/articles/about-your-organization-s-profile", - "/de/enterprise/2.17/articles/about-your-organizations-profile", - "/de/enterprise/2.17/user/articles/about-your-organizations-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.13/articles/viewing-your-feeds", - "/de/enterprise/2.13/user/articles/viewing-your-feeds", - "/de/enterprise/2.13/articles/profile-pages", - "/de/enterprise/2.13/user/articles/profile-pages", - "/de/enterprise/2.13/articles/about-your-profile", - "/de/enterprise/2.13/user/articles/about-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/about-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.14/articles/viewing-your-feeds", - "/de/enterprise/2.14/user/articles/viewing-your-feeds", - "/de/enterprise/2.14/articles/profile-pages", - "/de/enterprise/2.14/user/articles/profile-pages", - "/de/enterprise/2.14/articles/about-your-profile", - "/de/enterprise/2.14/user/articles/about-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/about-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.15/articles/viewing-your-feeds", - "/de/enterprise/2.15/user/articles/viewing-your-feeds", - "/de/enterprise/2.15/articles/profile-pages", - "/de/enterprise/2.15/user/articles/profile-pages", - "/de/enterprise/2.15/articles/about-your-profile", - "/de/enterprise/2.15/user/articles/about-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/about-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.16/articles/viewing-your-feeds", - "/de/enterprise/2.16/user/articles/viewing-your-feeds", - "/de/enterprise/2.16/articles/profile-pages", - "/de/enterprise/2.16/user/articles/profile-pages", - "/de/enterprise/2.16/articles/about-your-profile", - "/de/enterprise/2.16/user/articles/about-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/about-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.17/articles/viewing-your-feeds", - "/de/enterprise/2.17/user/articles/viewing-your-feeds", - "/de/enterprise/2.17/articles/profile-pages", - "/de/enterprise/2.17/user/articles/profile-pages", - "/de/enterprise/2.17/articles/about-your-profile", - "/de/enterprise/2.17/user/articles/about-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/about-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.13/articles/customizing-your-profile", - "/de/enterprise/2.13/user/articles/customizing-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/customizing-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.14/articles/customizing-your-profile", - "/de/enterprise/2.14/user/articles/customizing-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/customizing-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.15/articles/customizing-your-profile", - "/de/enterprise/2.15/user/articles/customizing-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/customizing-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.16/articles/customizing-your-profile", - "/de/enterprise/2.16/user/articles/customizing-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/customizing-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.17/articles/customizing-your-profile", - "/de/enterprise/2.17/user/articles/customizing-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/customizing-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.13/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.13/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.14/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.14/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.15/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.15/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.13/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.13/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.14/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.14/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.15/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.15/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/managing-your-profile-readme", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/managing-your-profile-readme" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.13/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.13/user/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.13/articles/setting-your-profile-picture", - "/de/enterprise/2.13/user/articles/setting-your-profile-picture", - "/de/enterprise/2.13/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.13/user/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.13/articles/gravatar-problems", - "/de/enterprise/2.13/user/articles/gravatar-problems", - "/de/enterprise/2.13/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.13/user/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.13/articles/personalizing-your-profile", - "/de/enterprise/2.13/user/articles/personalizing-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/personalizing-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.14/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.14/user/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.14/articles/setting-your-profile-picture", - "/de/enterprise/2.14/user/articles/setting-your-profile-picture", - "/de/enterprise/2.14/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.14/user/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.14/articles/gravatar-problems", - "/de/enterprise/2.14/user/articles/gravatar-problems", - "/de/enterprise/2.14/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.14/user/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.14/articles/personalizing-your-profile", - "/de/enterprise/2.14/user/articles/personalizing-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/personalizing-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.15/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.15/user/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.15/articles/setting-your-profile-picture", - "/de/enterprise/2.15/user/articles/setting-your-profile-picture", - "/de/enterprise/2.15/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.15/user/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.15/articles/gravatar-problems", - "/de/enterprise/2.15/user/articles/gravatar-problems", - "/de/enterprise/2.15/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.15/user/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.15/articles/personalizing-your-profile", - "/de/enterprise/2.15/user/articles/personalizing-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/personalizing-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.16/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.16/user/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.16/articles/setting-your-profile-picture", - "/de/enterprise/2.16/user/articles/setting-your-profile-picture", - "/de/enterprise/2.16/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.16/user/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.16/articles/gravatar-problems", - "/de/enterprise/2.16/user/articles/gravatar-problems", - "/de/enterprise/2.16/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.16/user/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.16/articles/personalizing-your-profile", - "/de/enterprise/2.16/user/articles/personalizing-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/personalizing-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.17/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.17/user/articles/adding-a-bio-to-your-profile", - "/de/enterprise/2.17/articles/setting-your-profile-picture", - "/de/enterprise/2.17/user/articles/setting-your-profile-picture", - "/de/enterprise/2.17/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.17/user/articles/how-do-i-set-up-my-profile-picture", - "/de/enterprise/2.17/articles/gravatar-problems", - "/de/enterprise/2.17/user/articles/gravatar-problems", - "/de/enterprise/2.17/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.17/user/articles/how-do-i-set-up-my-avatar", - "/de/enterprise/2.17/articles/personalizing-your-profile", - "/de/enterprise/2.17/user/articles/personalizing-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/personalizing-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.13/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.13/user/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.13/articles/pinning-items-to-your-profile", - "/de/enterprise/2.13/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.14/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.14/user/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.14/articles/pinning-items-to-your-profile", - "/de/enterprise/2.14/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.15/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.15/user/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.15/articles/pinning-items-to-your-profile", - "/de/enterprise/2.15/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.16/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.16/user/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.16/articles/pinning-items-to-your-profile", - "/de/enterprise/2.16/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.17/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.17/user/articles/pinning-repositories-to-your-profile", - "/de/enterprise/2.17/articles/pinning-items-to-your-profile", - "/de/enterprise/2.17/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.13/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.13/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.14/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.14/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.15/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.15/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.13/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.13/user/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.13/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.13/user/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.13/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.13/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.14/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.14/user/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.14/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.14/user/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.14/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.14/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.15/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.15/user/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.15/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.15/user/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.15/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.15/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.16/user/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.16/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.16/user/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.16/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.17/user/articles/sending-your-github-enterprise-contributions-to-your-github-com-profile", - "/de/enterprise/2.17/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.17/user/articles/sending-your-github-enterprise-server-contributions-to-your-github-com-profile", - "/de/enterprise/2.17/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.13/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.13/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.14/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.14/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.15/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.15/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.13/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.13/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.14/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.14/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.15/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.15/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.13/articles/viewing-contributions", - "/de/enterprise/2.13/user/articles/viewing-contributions", - "/de/enterprise/2.13/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.13/user/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.13/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.13/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.14/articles/viewing-contributions", - "/de/enterprise/2.14/user/articles/viewing-contributions", - "/de/enterprise/2.14/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.14/user/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.14/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.14/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.15/articles/viewing-contributions", - "/de/enterprise/2.15/user/articles/viewing-contributions", - "/de/enterprise/2.15/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.15/user/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.15/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.15/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/articles/viewing-contributions", - "/de/enterprise/2.16/user/articles/viewing-contributions", - "/de/enterprise/2.16/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.16/user/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.16/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/articles/viewing-contributions", - "/de/enterprise/2.17/user/articles/viewing-contributions", - "/de/enterprise/2.17/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.17/user/articles/viewing-contributions-on-your-profile-page", - "/de/enterprise/2.17/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.13/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.13/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.14/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.14/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.15/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.15/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.13/articles/about-organization-membership", - "/de/enterprise/2.13/user/articles/about-organization-membership", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/about-organization-membership" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.14/articles/about-organization-membership", - "/de/enterprise/2.14/user/articles/about-organization-membership", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/about-organization-membership" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.15/articles/about-organization-membership", - "/de/enterprise/2.15/user/articles/about-organization-membership", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/about-organization-membership" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.16/articles/about-organization-membership", - "/de/enterprise/2.16/user/articles/about-organization-membership", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/about-organization-membership" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.17/articles/about-organization-membership", - "/de/enterprise/2.17/user/articles/about-organization-membership", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/about-organization-membership" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.13/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.13/user/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.13/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.13/user/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.13/articles/about-your-personal-dashboard", - "/de/enterprise/2.13/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.14/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.14/user/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.14/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.14/user/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.14/articles/about-your-personal-dashboard", - "/de/enterprise/2.14/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.15/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.15/user/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.15/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.15/user/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.15/articles/about-your-personal-dashboard", - "/de/enterprise/2.15/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.16/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.16/user/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.16/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.16/user/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.16/articles/about-your-personal-dashboard", - "/de/enterprise/2.16/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.17/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.17/user/hidden/about-improved-navigation-to-commonly-accessed-pages-on-github", - "/de/enterprise/2.17/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.17/user/articles/opting-into-the-public-beta-for-a-new-dashboard", - "/de/enterprise/2.17/articles/about-your-personal-dashboard", - "/de/enterprise/2.17/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.13/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.13/user/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.13/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.13/user/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.13/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.13/user/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.13/articles/accessing-an-organization", - "/de/enterprise/2.13/user/articles/accessing-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/accessing-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.14/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.14/user/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.14/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.14/user/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.14/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.14/user/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.14/articles/accessing-an-organization", - "/de/enterprise/2.14/user/articles/accessing-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/accessing-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.15/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.15/user/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.15/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.15/user/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.15/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.15/user/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.15/articles/accessing-an-organization", - "/de/enterprise/2.15/user/articles/accessing-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/accessing-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.16/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.16/user/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.16/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.16/user/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.16/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.16/user/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.16/articles/accessing-an-organization", - "/de/enterprise/2.16/user/articles/accessing-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/accessing-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.17/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.17/user/articles/error-cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.17/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.17/user/articles/cannot-log-in-that-account-is-an-organization", - "/de/enterprise/2.17/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.17/user/articles/how-do-i-access-my-organization-account", - "/de/enterprise/2.17/articles/accessing-an-organization", - "/de/enterprise/2.17/user/articles/accessing-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/accessing-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.13/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.13/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.14/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.14/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.15/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.15/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.13/articles/how-to-change-your-username", - "/de/enterprise/2.13/user/articles/how-to-change-your-username", - "/de/enterprise/2.13/articles/changing-your-github-user-name", - "/de/enterprise/2.13/user/articles/changing-your-github-user-name", - "/de/enterprise/2.13/articles/renaming-a-user", - "/de/enterprise/2.13/user/articles/renaming-a-user", - "/de/enterprise/2.13/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.13/user/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.13/articles/changing-your-github-username", - "/de/enterprise/2.13/user/articles/changing-your-github-username", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/changing-your-github-username" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.14/articles/how-to-change-your-username", - "/de/enterprise/2.14/user/articles/how-to-change-your-username", - "/de/enterprise/2.14/articles/changing-your-github-user-name", - "/de/enterprise/2.14/user/articles/changing-your-github-user-name", - "/de/enterprise/2.14/articles/renaming-a-user", - "/de/enterprise/2.14/user/articles/renaming-a-user", - "/de/enterprise/2.14/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.14/user/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.14/articles/changing-your-github-username", - "/de/enterprise/2.14/user/articles/changing-your-github-username", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/changing-your-github-username" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.15/articles/how-to-change-your-username", - "/de/enterprise/2.15/user/articles/how-to-change-your-username", - "/de/enterprise/2.15/articles/changing-your-github-user-name", - "/de/enterprise/2.15/user/articles/changing-your-github-user-name", - "/de/enterprise/2.15/articles/renaming-a-user", - "/de/enterprise/2.15/user/articles/renaming-a-user", - "/de/enterprise/2.15/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.15/user/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.15/articles/changing-your-github-username", - "/de/enterprise/2.15/user/articles/changing-your-github-username", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/changing-your-github-username" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.16/articles/how-to-change-your-username", - "/de/enterprise/2.16/user/articles/how-to-change-your-username", - "/de/enterprise/2.16/articles/changing-your-github-user-name", - "/de/enterprise/2.16/user/articles/changing-your-github-user-name", - "/de/enterprise/2.16/articles/renaming-a-user", - "/de/enterprise/2.16/user/articles/renaming-a-user", - "/de/enterprise/2.16/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.16/user/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.16/articles/changing-your-github-username", - "/de/enterprise/2.16/user/articles/changing-your-github-username", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/changing-your-github-username" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.17/articles/how-to-change-your-username", - "/de/enterprise/2.17/user/articles/how-to-change-your-username", - "/de/enterprise/2.17/articles/changing-your-github-user-name", - "/de/enterprise/2.17/user/articles/changing-your-github-user-name", - "/de/enterprise/2.17/articles/renaming-a-user", - "/de/enterprise/2.17/user/articles/renaming-a-user", - "/de/enterprise/2.17/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.17/user/articles/what-happens-when-i-change-my-username", - "/de/enterprise/2.17/articles/changing-your-github-username", - "/de/enterprise/2.17/user/articles/changing-your-github-username", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/changing-your-github-username" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.13/articles/changing-your-primary-email-address", - "/de/enterprise/2.13/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.14/articles/changing-your-primary-email-address", - "/de/enterprise/2.14/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.15/articles/changing-your-primary-email-address", - "/de/enterprise/2.15/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.16/articles/changing-your-primary-email-address", - "/de/enterprise/2.16/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.17/articles/changing-your-primary-email-address", - "/de/enterprise/2.17/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.13/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.13/user/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.13/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.13/user/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.13/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.13/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.14/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.14/user/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.14/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.14/user/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.14/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.14/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.15/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.15/user/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.15/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.15/user/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.15/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.15/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.16/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.16/user/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.16/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.16/user/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.16/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.16/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.17/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.17/user/articles/what-is-the-difference-between-create-new-organization-and-turn-account-into-an-organization", - "/de/enterprise/2.17/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.17/user/articles/explaining-the-account-transformation-warning", - "/de/enterprise/2.17/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.17/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.13/articles/deleting-a-user-account", - "/de/enterprise/2.13/user/articles/deleting-a-user-account", - "/de/enterprise/2.13/articles/deleting-your-user-account", - "/de/enterprise/2.13/user/articles/deleting-your-user-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.14/articles/deleting-a-user-account", - "/de/enterprise/2.14/user/articles/deleting-a-user-account", - "/de/enterprise/2.14/articles/deleting-your-user-account", - "/de/enterprise/2.14/user/articles/deleting-your-user-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.15/articles/deleting-a-user-account", - "/de/enterprise/2.15/user/articles/deleting-a-user-account", - "/de/enterprise/2.15/articles/deleting-your-user-account", - "/de/enterprise/2.15/user/articles/deleting-your-user-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.16/articles/deleting-a-user-account", - "/de/enterprise/2.16/user/articles/deleting-a-user-account", - "/de/enterprise/2.16/articles/deleting-your-user-account", - "/de/enterprise/2.16/user/articles/deleting-your-user-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.17/articles/deleting-a-user-account", - "/de/enterprise/2.17/user/articles/deleting-a-user-account", - "/de/enterprise/2.17/articles/deleting-your-user-account", - "/de/enterprise/2.17/user/articles/deleting-your-user-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.13/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.13/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.14/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.14/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.15/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.15/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.13/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.13/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.14/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.14/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.15/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.15/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.13/user/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.13/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/user/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.14/user/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.14/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/user/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.15/user/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.15/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/user/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.16/user/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.16/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/user/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.17/user/articles/how-do-i-add-a-collaborator", - "/de/enterprise/2.17/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/user/articles/adding-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.13/categories/101/articles", - "/de/enterprise/2.13/user/categories/101/articles", - "/de/enterprise/2.13/categories/managing-repository-collaborators", - "/de/enterprise/2.13/user/categories/managing-repository-collaborators", - "/de/enterprise/2.13/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.13/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.14/categories/101/articles", - "/de/enterprise/2.14/user/categories/101/articles", - "/de/enterprise/2.14/categories/managing-repository-collaborators", - "/de/enterprise/2.14/user/categories/managing-repository-collaborators", - "/de/enterprise/2.14/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.14/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.15/categories/101/articles", - "/de/enterprise/2.15/user/categories/101/articles", - "/de/enterprise/2.15/categories/managing-repository-collaborators", - "/de/enterprise/2.15/user/categories/managing-repository-collaborators", - "/de/enterprise/2.15/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.15/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/categories/101/articles", - "/de/enterprise/2.16/user/categories/101/articles", - "/de/enterprise/2.16/categories/managing-repository-collaborators", - "/de/enterprise/2.16/user/categories/managing-repository-collaborators", - "/de/enterprise/2.16/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/categories/101/articles", - "/de/enterprise/2.17/user/categories/101/articles", - "/de/enterprise/2.17/categories/managing-repository-collaborators", - "/de/enterprise/2.17/user/categories/managing-repository-collaborators", - "/de/enterprise/2.17/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.13/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.13/user/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.13/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.13/user/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.13/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.13/user/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.14/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.14/user/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.14/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.14/user/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.14/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.14/user/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.15/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.15/user/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.15/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.15/user/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.15/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.15/user/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.16/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.16/user/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.16/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.16/user/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.16/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.16/user/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.17/user/articles/managing-project-boards-in-your-repository-or-organization", - "/de/enterprise/2.17/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.17/user/articles/managing-access-to-your-user-account-s-project-boards", - "/de/enterprise/2.17/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/user/articles/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.13/categories/managing-email-preferences", - "/de/enterprise/2.13/user/categories/managing-email-preferences", - "/de/enterprise/2.13/articles/managing-email-preferences", - "/de/enterprise/2.13/user/articles/managing-email-preferences", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/managing-email-preferences" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.14/categories/managing-email-preferences", - "/de/enterprise/2.14/user/categories/managing-email-preferences", - "/de/enterprise/2.14/articles/managing-email-preferences", - "/de/enterprise/2.14/user/articles/managing-email-preferences", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/managing-email-preferences" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.15/categories/managing-email-preferences", - "/de/enterprise/2.15/user/categories/managing-email-preferences", - "/de/enterprise/2.15/articles/managing-email-preferences", - "/de/enterprise/2.15/user/articles/managing-email-preferences", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/managing-email-preferences" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.16/categories/managing-email-preferences", - "/de/enterprise/2.16/user/categories/managing-email-preferences", - "/de/enterprise/2.16/articles/managing-email-preferences", - "/de/enterprise/2.16/user/articles/managing-email-preferences", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-email-preferences" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.17/categories/managing-email-preferences", - "/de/enterprise/2.17/user/categories/managing-email-preferences", - "/de/enterprise/2.17/articles/managing-email-preferences", - "/de/enterprise/2.17/user/articles/managing-email-preferences", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-email-preferences" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.13/categories/29/articles", - "/de/enterprise/2.13/user/categories/29/articles", - "/de/enterprise/2.13/categories/user-accounts", - "/de/enterprise/2.13/user/categories/user-accounts", - "/de/enterprise/2.13/articles/managing-user-account-settings", - "/de/enterprise/2.13/user/articles/managing-user-account-settings", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.14/categories/29/articles", - "/de/enterprise/2.14/user/categories/29/articles", - "/de/enterprise/2.14/categories/user-accounts", - "/de/enterprise/2.14/user/categories/user-accounts", - "/de/enterprise/2.14/articles/managing-user-account-settings", - "/de/enterprise/2.14/user/articles/managing-user-account-settings", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.15/categories/29/articles", - "/de/enterprise/2.15/user/categories/29/articles", - "/de/enterprise/2.15/categories/user-accounts", - "/de/enterprise/2.15/user/categories/user-accounts", - "/de/enterprise/2.15/articles/managing-user-account-settings", - "/de/enterprise/2.15/user/articles/managing-user-account-settings", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.16/categories/29/articles", - "/de/enterprise/2.16/user/categories/29/articles", - "/de/enterprise/2.16/categories/user-accounts", - "/de/enterprise/2.16/user/categories/user-accounts", - "/de/enterprise/2.16/articles/managing-user-account-settings", - "/de/enterprise/2.16/user/articles/managing-user-account-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.17/categories/29/articles", - "/de/enterprise/2.17/user/categories/29/articles", - "/de/enterprise/2.17/categories/user-accounts", - "/de/enterprise/2.17/user/categories/user-accounts", - "/de/enterprise/2.17/articles/managing-user-account-settings", - "/de/enterprise/2.17/user/articles/managing-user-account-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.13/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.13/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.14/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.14/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.15/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.15/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.16/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.16/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.17/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.17/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.13/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.13/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.14/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.14/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.15/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.15/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.13/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.13/user/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.14/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.14/user/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.15/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.15/user/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.16/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.16/user/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/user/articles/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.13/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.13/user/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.13/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.13/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.14/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.14/user/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.14/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.14/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.15/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.15/user/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.15/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.15/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.16/user/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.16/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.17/user/articles/publicizing-or-concealing-organization-membership", - "/de/enterprise/2.17/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.13/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.13/user/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.13/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.13/user/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.13/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.13/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.14/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.14/user/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.14/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.14/user/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.14/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.14/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.15/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.15/user/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.15/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.15/user/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.15/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.15/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.16/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.16/user/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.16/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.16/user/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.16/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.16/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.17/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.17/user/articles/oh-noes-i-ve-forgotten-my-username-email", - "/de/enterprise/2.17/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.17/user/articles/oh-noes-i-ve-forgotten-my-username-or-email", - "/de/enterprise/2.17/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.17/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.13/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.13/user/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.13/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.13/user/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.13/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.13/user/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.13/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.13/user/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.13/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.13/user/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.13/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.13/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.14/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.14/user/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.14/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.14/user/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.14/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.14/user/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.14/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.14/user/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.14/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.14/user/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.14/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.14/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.15/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.15/user/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.15/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.15/user/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.15/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.15/user/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.15/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.15/user/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.15/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.15/user/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.15/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.15/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.16/user/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.16/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.16/user/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.16/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.16/user/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.16/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.16/user/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.16/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.16/user/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.16/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.17/user/articles/how-do-i-remove-a-collaborator", - "/de/enterprise/2.17/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.17/user/articles/what-happens-when-i-remove-a-collaborator-from-my-private-repository", - "/de/enterprise/2.17/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.17/user/articles/removing-a-collaborator-from-a-private-repository", - "/de/enterprise/2.17/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.17/user/articles/deleting-a-private-fork-of-a-private-user-repository", - "/de/enterprise/2.17/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.17/user/articles/how-do-i-delete-a-fork-of-my-private-repository", - "/de/enterprise/2.17/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.13/leave-a-collaborative-repo", - "/de/enterprise/2.13/user/leave-a-collaborative-repo", - "/de/enterprise/2.13/leave-a-repo", - "/de/enterprise/2.13/user/leave-a-repo", - "/de/enterprise/2.13/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.13/user/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.13/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.13/user/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.13/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.13/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.14/leave-a-collaborative-repo", - "/de/enterprise/2.14/user/leave-a-collaborative-repo", - "/de/enterprise/2.14/leave-a-repo", - "/de/enterprise/2.14/user/leave-a-repo", - "/de/enterprise/2.14/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.14/user/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.14/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.14/user/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.14/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.14/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.15/leave-a-collaborative-repo", - "/de/enterprise/2.15/user/leave-a-collaborative-repo", - "/de/enterprise/2.15/leave-a-repo", - "/de/enterprise/2.15/user/leave-a-repo", - "/de/enterprise/2.15/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.15/user/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.15/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.15/user/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.15/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.15/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/leave-a-collaborative-repo", - "/de/enterprise/2.16/user/leave-a-collaborative-repo", - "/de/enterprise/2.16/leave-a-repo", - "/de/enterprise/2.16/user/leave-a-repo", - "/de/enterprise/2.16/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.16/user/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.16/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.16/user/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.16/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/leave-a-collaborative-repo", - "/de/enterprise/2.17/user/leave-a-collaborative-repo", - "/de/enterprise/2.17/leave-a-repo", - "/de/enterprise/2.17/user/leave-a-repo", - "/de/enterprise/2.17/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.17/user/articles/removing-yourself-from-a-collaborator-s-repo", - "/de/enterprise/2.17/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.17/user/articles/removing-yourself-from-a-collaborator-s-repository", - "/de/enterprise/2.17/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.13/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.13/user/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.13/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.13/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.14/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.14/user/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.14/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.14/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.15/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.15/user/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.15/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.15/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.16/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.16/user/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.16/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.16/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.17/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.17/user/articles/how-do-i-remove-myself-from-an-organization", - "/de/enterprise/2.17/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.17/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.13/articles/setting-a-backup-email-address", - "/de/enterprise/2.13/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.14/articles/setting-a-backup-email-address", - "/de/enterprise/2.14/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.15/articles/setting-a-backup-email-address", - "/de/enterprise/2.15/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.16/articles/setting-a-backup-email-address", - "/de/enterprise/2.16/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.17/articles/setting-a-backup-email-address", - "/de/enterprise/2.17/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.13/articles/keeping-your-email-address-private", - "/de/enterprise/2.13/user/articles/keeping-your-email-address-private", - "/de/enterprise/2.13/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.13/user/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.13/article/about-commit-email-addresses", - "/de/enterprise/2.13/user/article/about-commit-email-addresses", - "/de/enterprise/2.13/articles/git-email-settings", - "/de/enterprise/2.13/user/articles/git-email-settings", - "/de/enterprise/2.13/articles/setting-your-email-in-git", - "/de/enterprise/2.13/user/articles/setting-your-email-in-git", - "/de/enterprise/2.13/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.13/user/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.13/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.13/user/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.13/articles/setting-your-commit-email-address", - "/de/enterprise/2.13/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.14/articles/keeping-your-email-address-private", - "/de/enterprise/2.14/user/articles/keeping-your-email-address-private", - "/de/enterprise/2.14/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.14/user/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.14/article/about-commit-email-addresses", - "/de/enterprise/2.14/user/article/about-commit-email-addresses", - "/de/enterprise/2.14/articles/git-email-settings", - "/de/enterprise/2.14/user/articles/git-email-settings", - "/de/enterprise/2.14/articles/setting-your-email-in-git", - "/de/enterprise/2.14/user/articles/setting-your-email-in-git", - "/de/enterprise/2.14/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.14/user/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.14/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.14/user/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.14/articles/setting-your-commit-email-address", - "/de/enterprise/2.14/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.15/articles/keeping-your-email-address-private", - "/de/enterprise/2.15/user/articles/keeping-your-email-address-private", - "/de/enterprise/2.15/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.15/user/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.15/article/about-commit-email-addresses", - "/de/enterprise/2.15/user/article/about-commit-email-addresses", - "/de/enterprise/2.15/articles/git-email-settings", - "/de/enterprise/2.15/user/articles/git-email-settings", - "/de/enterprise/2.15/articles/setting-your-email-in-git", - "/de/enterprise/2.15/user/articles/setting-your-email-in-git", - "/de/enterprise/2.15/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.15/user/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.15/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.15/user/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.15/articles/setting-your-commit-email-address", - "/de/enterprise/2.15/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.16/articles/keeping-your-email-address-private", - "/de/enterprise/2.16/user/articles/keeping-your-email-address-private", - "/de/enterprise/2.16/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.16/user/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.16/article/about-commit-email-addresses", - "/de/enterprise/2.16/user/article/about-commit-email-addresses", - "/de/enterprise/2.16/articles/git-email-settings", - "/de/enterprise/2.16/user/articles/git-email-settings", - "/de/enterprise/2.16/articles/setting-your-email-in-git", - "/de/enterprise/2.16/user/articles/setting-your-email-in-git", - "/de/enterprise/2.16/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.16/user/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.16/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.16/user/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.16/articles/setting-your-commit-email-address", - "/de/enterprise/2.16/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.17/articles/keeping-your-email-address-private", - "/de/enterprise/2.17/user/articles/keeping-your-email-address-private", - "/de/enterprise/2.17/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.17/user/articles/setting-your-commit-email-address-on-github", - "/de/enterprise/2.17/article/about-commit-email-addresses", - "/de/enterprise/2.17/user/article/about-commit-email-addresses", - "/de/enterprise/2.17/articles/git-email-settings", - "/de/enterprise/2.17/user/articles/git-email-settings", - "/de/enterprise/2.17/articles/setting-your-email-in-git", - "/de/enterprise/2.17/user/articles/setting-your-email-in-git", - "/de/enterprise/2.17/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.17/user/articles/set-your-user-name-email-and-github-token", - "/de/enterprise/2.17/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.17/user/articles/setting-your-commit-email-address-in-git", - "/de/enterprise/2.17/articles/setting-your-commit-email-address", - "/de/enterprise/2.17/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address" - ], - [ - "/de/enterprise/2.13/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.13/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.13/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.13/user/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.13/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.13/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.13/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization" - ], - [ - "/de/enterprise/2.14/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.14/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.14/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.14/user/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.14/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.14/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.14/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization" - ], - [ - "/de/enterprise/2.15/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.15/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.15/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.15/user/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.15/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.15/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.15/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization" - ], - [ - "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.16/user/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.16/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization" - ], - [ - "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.17/user/articles/viewing-people-s-roles-in-an-organization", - "/de/enterprise/2.17/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization" - ], - [ - "/de/enterprise/2.13/user/github/using-git/about-git-rebase", - "/de/enterprise/2.13/user/using-git/about-git-rebase", - "/de/enterprise/2.13/rebase", - "/de/enterprise/2.13/user/rebase", - "/de/enterprise/2.13/articlesinteractive-rebase", - "/de/enterprise/2.13/user/articlesinteractive-rebase", - "/de/enterprise/2.13/articles/about-git-rebase", - "/de/enterprise/2.13/user/articles/about-git-rebase", - "/de/enterprise/2.13/github/using-git/about-git-rebase" - ], - [ - "/de/enterprise/2.14/user/github/using-git/about-git-rebase", - "/de/enterprise/2.14/user/using-git/about-git-rebase", - "/de/enterprise/2.14/rebase", - "/de/enterprise/2.14/user/rebase", - "/de/enterprise/2.14/articlesinteractive-rebase", - "/de/enterprise/2.14/user/articlesinteractive-rebase", - "/de/enterprise/2.14/articles/about-git-rebase", - "/de/enterprise/2.14/user/articles/about-git-rebase", - "/de/enterprise/2.14/github/using-git/about-git-rebase" - ], - [ - "/de/enterprise/2.15/user/github/using-git/about-git-rebase", - "/de/enterprise/2.15/user/using-git/about-git-rebase", - "/de/enterprise/2.15/rebase", - "/de/enterprise/2.15/user/rebase", - "/de/enterprise/2.15/articlesinteractive-rebase", - "/de/enterprise/2.15/user/articlesinteractive-rebase", - "/de/enterprise/2.15/articles/about-git-rebase", - "/de/enterprise/2.15/user/articles/about-git-rebase", - "/de/enterprise/2.15/github/using-git/about-git-rebase" - ], - [ - "/de/enterprise/2.16/user/github/using-git/about-git-rebase", - "/de/enterprise/2.16/user/using-git/about-git-rebase", - "/de/enterprise/2.16/rebase", - "/de/enterprise/2.16/user/rebase", - "/de/enterprise/2.16/articlesinteractive-rebase", - "/de/enterprise/2.16/user/articlesinteractive-rebase", - "/de/enterprise/2.16/articles/about-git-rebase", - "/de/enterprise/2.16/user/articles/about-git-rebase", - "/de/enterprise/2.16/github/using-git/about-git-rebase" - ], - [ - "/de/enterprise/2.17/user/github/using-git/about-git-rebase", - "/de/enterprise/2.17/user/using-git/about-git-rebase", - "/de/enterprise/2.17/rebase", - "/de/enterprise/2.17/user/rebase", - "/de/enterprise/2.17/articlesinteractive-rebase", - "/de/enterprise/2.17/user/articlesinteractive-rebase", - "/de/enterprise/2.17/articles/about-git-rebase", - "/de/enterprise/2.17/user/articles/about-git-rebase", - "/de/enterprise/2.17/github/using-git/about-git-rebase" - ], - [ - "/de/enterprise/2.13/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.13/user/using-git/about-git-subtree-merges", - "/de/enterprise/2.13/articles/working-with-subtree-merge", - "/de/enterprise/2.13/user/articles/working-with-subtree-merge", - "/de/enterprise/2.13/subtree-merge", - "/de/enterprise/2.13/user/subtree-merge", - "/de/enterprise/2.13/articles/about-git-subtree-merges", - "/de/enterprise/2.13/user/articles/about-git-subtree-merges", - "/de/enterprise/2.13/github/using-git/about-git-subtree-merges" - ], - [ - "/de/enterprise/2.14/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.14/user/using-git/about-git-subtree-merges", - "/de/enterprise/2.14/articles/working-with-subtree-merge", - "/de/enterprise/2.14/user/articles/working-with-subtree-merge", - "/de/enterprise/2.14/subtree-merge", - "/de/enterprise/2.14/user/subtree-merge", - "/de/enterprise/2.14/articles/about-git-subtree-merges", - "/de/enterprise/2.14/user/articles/about-git-subtree-merges", - "/de/enterprise/2.14/github/using-git/about-git-subtree-merges" - ], - [ - "/de/enterprise/2.15/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.15/user/using-git/about-git-subtree-merges", - "/de/enterprise/2.15/articles/working-with-subtree-merge", - "/de/enterprise/2.15/user/articles/working-with-subtree-merge", - "/de/enterprise/2.15/subtree-merge", - "/de/enterprise/2.15/user/subtree-merge", - "/de/enterprise/2.15/articles/about-git-subtree-merges", - "/de/enterprise/2.15/user/articles/about-git-subtree-merges", - "/de/enterprise/2.15/github/using-git/about-git-subtree-merges" - ], - [ - "/de/enterprise/2.16/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.16/user/using-git/about-git-subtree-merges", - "/de/enterprise/2.16/articles/working-with-subtree-merge", - "/de/enterprise/2.16/user/articles/working-with-subtree-merge", - "/de/enterprise/2.16/subtree-merge", - "/de/enterprise/2.16/user/subtree-merge", - "/de/enterprise/2.16/articles/about-git-subtree-merges", - "/de/enterprise/2.16/user/articles/about-git-subtree-merges", - "/de/enterprise/2.16/github/using-git/about-git-subtree-merges" - ], - [ - "/de/enterprise/2.17/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.17/user/using-git/about-git-subtree-merges", - "/de/enterprise/2.17/articles/working-with-subtree-merge", - "/de/enterprise/2.17/user/articles/working-with-subtree-merge", - "/de/enterprise/2.17/subtree-merge", - "/de/enterprise/2.17/user/subtree-merge", - "/de/enterprise/2.17/articles/about-git-subtree-merges", - "/de/enterprise/2.17/user/articles/about-git-subtree-merges", - "/de/enterprise/2.17/github/using-git/about-git-subtree-merges" - ], - [ - "/de/enterprise/2.13/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.13/user/using-git/about-remote-repositories", - "/de/enterprise/2.13/articles/working-when-github-goes-down", - "/de/enterprise/2.13/user/articles/working-when-github-goes-down", - "/de/enterprise/2.13/articles/sharing-repositories-without-github", - "/de/enterprise/2.13/user/articles/sharing-repositories-without-github", - "/de/enterprise/2.13/articles/about-remote-repositories", - "/de/enterprise/2.13/user/articles/about-remote-repositories", - "/de/enterprise/2.13/github/using-git/about-remote-repositories" - ], - [ - "/de/enterprise/2.14/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.14/user/using-git/about-remote-repositories", - "/de/enterprise/2.14/articles/working-when-github-goes-down", - "/de/enterprise/2.14/user/articles/working-when-github-goes-down", - "/de/enterprise/2.14/articles/sharing-repositories-without-github", - "/de/enterprise/2.14/user/articles/sharing-repositories-without-github", - "/de/enterprise/2.14/articles/about-remote-repositories", - "/de/enterprise/2.14/user/articles/about-remote-repositories", - "/de/enterprise/2.14/github/using-git/about-remote-repositories" - ], - [ - "/de/enterprise/2.15/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.15/user/using-git/about-remote-repositories", - "/de/enterprise/2.15/articles/working-when-github-goes-down", - "/de/enterprise/2.15/user/articles/working-when-github-goes-down", - "/de/enterprise/2.15/articles/sharing-repositories-without-github", - "/de/enterprise/2.15/user/articles/sharing-repositories-without-github", - "/de/enterprise/2.15/articles/about-remote-repositories", - "/de/enterprise/2.15/user/articles/about-remote-repositories", - "/de/enterprise/2.15/github/using-git/about-remote-repositories" - ], - [ - "/de/enterprise/2.16/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.16/user/using-git/about-remote-repositories", - "/de/enterprise/2.16/articles/working-when-github-goes-down", - "/de/enterprise/2.16/user/articles/working-when-github-goes-down", - "/de/enterprise/2.16/articles/sharing-repositories-without-github", - "/de/enterprise/2.16/user/articles/sharing-repositories-without-github", - "/de/enterprise/2.16/articles/about-remote-repositories", - "/de/enterprise/2.16/user/articles/about-remote-repositories", - "/de/enterprise/2.16/github/using-git/about-remote-repositories" - ], - [ - "/de/enterprise/2.17/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.17/user/using-git/about-remote-repositories", - "/de/enterprise/2.17/articles/working-when-github-goes-down", - "/de/enterprise/2.17/user/articles/working-when-github-goes-down", - "/de/enterprise/2.17/articles/sharing-repositories-without-github", - "/de/enterprise/2.17/user/articles/sharing-repositories-without-github", - "/de/enterprise/2.17/articles/about-remote-repositories", - "/de/enterprise/2.17/user/articles/about-remote-repositories", - "/de/enterprise/2.17/github/using-git/about-remote-repositories" - ], - [ - "/de/enterprise/2.13/user/github/using-git/adding-a-remote", - "/de/enterprise/2.13/user/using-git/adding-a-remote", - "/de/enterprise/2.13/articles/adding-a-remote", - "/de/enterprise/2.13/user/articles/adding-a-remote", - "/de/enterprise/2.13/github/using-git/adding-a-remote" - ], - [ - "/de/enterprise/2.14/user/github/using-git/adding-a-remote", - "/de/enterprise/2.14/user/using-git/adding-a-remote", - "/de/enterprise/2.14/articles/adding-a-remote", - "/de/enterprise/2.14/user/articles/adding-a-remote", - "/de/enterprise/2.14/github/using-git/adding-a-remote" - ], - [ - "/de/enterprise/2.15/user/github/using-git/adding-a-remote", - "/de/enterprise/2.15/user/using-git/adding-a-remote", - "/de/enterprise/2.15/articles/adding-a-remote", - "/de/enterprise/2.15/user/articles/adding-a-remote", - "/de/enterprise/2.15/github/using-git/adding-a-remote" - ], - [ - "/de/enterprise/2.16/user/github/using-git/adding-a-remote", - "/de/enterprise/2.16/user/using-git/adding-a-remote", - "/de/enterprise/2.16/articles/adding-a-remote", - "/de/enterprise/2.16/user/articles/adding-a-remote", - "/de/enterprise/2.16/github/using-git/adding-a-remote" - ], - [ - "/de/enterprise/2.17/user/github/using-git/adding-a-remote", - "/de/enterprise/2.17/user/using-git/adding-a-remote", - "/de/enterprise/2.17/articles/adding-a-remote", - "/de/enterprise/2.17/user/articles/adding-a-remote", - "/de/enterprise/2.17/github/using-git/adding-a-remote" - ], - [ - "/de/enterprise/2.13/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.13/user/using-git/associating-text-editors-with-git", - "/de/enterprise/2.13/textmate", - "/de/enterprise/2.13/user/textmate", - "/de/enterprise/2.13/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.13/user/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.13/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.13/user/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.13/articles/associating-text-editors-with-git", - "/de/enterprise/2.13/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.13/github/using-git/associating-text-editors-with-git" - ], - [ - "/de/enterprise/2.14/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.14/user/using-git/associating-text-editors-with-git", - "/de/enterprise/2.14/textmate", - "/de/enterprise/2.14/user/textmate", - "/de/enterprise/2.14/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.14/user/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.14/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.14/user/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.14/articles/associating-text-editors-with-git", - "/de/enterprise/2.14/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.14/github/using-git/associating-text-editors-with-git" - ], - [ - "/de/enterprise/2.15/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.15/user/using-git/associating-text-editors-with-git", - "/de/enterprise/2.15/textmate", - "/de/enterprise/2.15/user/textmate", - "/de/enterprise/2.15/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.15/user/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.15/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.15/user/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.15/articles/associating-text-editors-with-git", - "/de/enterprise/2.15/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.15/github/using-git/associating-text-editors-with-git" - ], - [ - "/de/enterprise/2.16/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.16/user/using-git/associating-text-editors-with-git", - "/de/enterprise/2.16/textmate", - "/de/enterprise/2.16/user/textmate", - "/de/enterprise/2.16/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.16/user/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.16/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.16/user/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.16/articles/associating-text-editors-with-git", - "/de/enterprise/2.16/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.16/github/using-git/associating-text-editors-with-git" - ], - [ - "/de/enterprise/2.17/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.17/user/using-git/associating-text-editors-with-git", - "/de/enterprise/2.17/textmate", - "/de/enterprise/2.17/user/textmate", - "/de/enterprise/2.17/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.17/user/articles/using-textmate-as-your-default-editor", - "/de/enterprise/2.17/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.17/user/articles/using-sublime-text-2-as-your-default-editor", - "/de/enterprise/2.17/articles/associating-text-editors-with-git", - "/de/enterprise/2.17/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.17/github/using-git/associating-text-editors-with-git" - ], - [ - "/de/enterprise/2.13/user/github/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.13/user/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.13/firewalls-and-proxies", - "/de/enterprise/2.13/user/firewalls-and-proxies", - "/de/enterprise/2.13/articles/caching-your-github-password-in-git", - "/de/enterprise/2.13/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.13/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.13/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.13/user/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.13/github/using-git/caching-your-github-credentials-in-git" - ], - [ - "/de/enterprise/2.14/user/github/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.14/user/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.14/firewalls-and-proxies", - "/de/enterprise/2.14/user/firewalls-and-proxies", - "/de/enterprise/2.14/articles/caching-your-github-password-in-git", - "/de/enterprise/2.14/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.14/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.14/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.14/user/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.14/github/using-git/caching-your-github-credentials-in-git" - ], - [ - "/de/enterprise/2.15/user/github/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.15/user/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.15/firewalls-and-proxies", - "/de/enterprise/2.15/user/firewalls-and-proxies", - "/de/enterprise/2.15/articles/caching-your-github-password-in-git", - "/de/enterprise/2.15/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.15/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.15/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.15/user/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.15/github/using-git/caching-your-github-credentials-in-git" - ], - [ - "/de/enterprise/2.16/user/github/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.16/user/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.16/firewalls-and-proxies", - "/de/enterprise/2.16/user/firewalls-and-proxies", - "/de/enterprise/2.16/articles/caching-your-github-password-in-git", - "/de/enterprise/2.16/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.16/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.16/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.16/user/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.16/github/using-git/caching-your-github-credentials-in-git" - ], - [ - "/de/enterprise/2.17/user/github/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.17/user/using-git/caching-your-github-credentials-in-git", - "/de/enterprise/2.17/firewalls-and-proxies", - "/de/enterprise/2.17/user/firewalls-and-proxies", - "/de/enterprise/2.17/articles/caching-your-github-password-in-git", - "/de/enterprise/2.17/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.17/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.17/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.17/user/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.17/github/using-git/caching-your-github-credentials-in-git" - ], - [ - "/de/enterprise/2.13/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.13/user/using-git/changing-a-remotes-url", - "/de/enterprise/2.13/articles/changing-a-remote-s-url", - "/de/enterprise/2.13/user/articles/changing-a-remote-s-url", - "/de/enterprise/2.13/articles/changing-a-remotes-url", - "/de/enterprise/2.13/user/articles/changing-a-remotes-url", - "/de/enterprise/2.13/github/using-git/changing-a-remotes-url" - ], - [ - "/de/enterprise/2.14/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.14/user/using-git/changing-a-remotes-url", - "/de/enterprise/2.14/articles/changing-a-remote-s-url", - "/de/enterprise/2.14/user/articles/changing-a-remote-s-url", - "/de/enterprise/2.14/articles/changing-a-remotes-url", - "/de/enterprise/2.14/user/articles/changing-a-remotes-url", - "/de/enterprise/2.14/github/using-git/changing-a-remotes-url" - ], - [ - "/de/enterprise/2.15/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.15/user/using-git/changing-a-remotes-url", - "/de/enterprise/2.15/articles/changing-a-remote-s-url", - "/de/enterprise/2.15/user/articles/changing-a-remote-s-url", - "/de/enterprise/2.15/articles/changing-a-remotes-url", - "/de/enterprise/2.15/user/articles/changing-a-remotes-url", - "/de/enterprise/2.15/github/using-git/changing-a-remotes-url" - ], - [ - "/de/enterprise/2.16/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.16/user/using-git/changing-a-remotes-url", - "/de/enterprise/2.16/articles/changing-a-remote-s-url", - "/de/enterprise/2.16/user/articles/changing-a-remote-s-url", - "/de/enterprise/2.16/articles/changing-a-remotes-url", - "/de/enterprise/2.16/user/articles/changing-a-remotes-url", - "/de/enterprise/2.16/github/using-git/changing-a-remotes-url" - ], - [ - "/de/enterprise/2.17/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.17/user/using-git/changing-a-remotes-url", - "/de/enterprise/2.17/articles/changing-a-remote-s-url", - "/de/enterprise/2.17/user/articles/changing-a-remote-s-url", - "/de/enterprise/2.17/articles/changing-a-remotes-url", - "/de/enterprise/2.17/user/articles/changing-a-remotes-url", - "/de/enterprise/2.17/github/using-git/changing-a-remotes-url" - ], - [ - "/de/enterprise/2.13/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.13/user/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.13/dealing-with-lineendings", - "/de/enterprise/2.13/user/dealing-with-lineendings", - "/de/enterprise/2.13/line-endings", - "/de/enterprise/2.13/user/line-endings", - "/de/enterprise/2.13/articles/dealing-with-line-endings", - "/de/enterprise/2.13/user/articles/dealing-with-line-endings", - "/de/enterprise/2.13/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.13/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.13/github/using-git/configuring-git-to-handle-line-endings" - ], - [ - "/de/enterprise/2.14/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.14/user/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.14/dealing-with-lineendings", - "/de/enterprise/2.14/user/dealing-with-lineendings", - "/de/enterprise/2.14/line-endings", - "/de/enterprise/2.14/user/line-endings", - "/de/enterprise/2.14/articles/dealing-with-line-endings", - "/de/enterprise/2.14/user/articles/dealing-with-line-endings", - "/de/enterprise/2.14/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.14/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.14/github/using-git/configuring-git-to-handle-line-endings" - ], - [ - "/de/enterprise/2.15/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.15/user/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.15/dealing-with-lineendings", - "/de/enterprise/2.15/user/dealing-with-lineendings", - "/de/enterprise/2.15/line-endings", - "/de/enterprise/2.15/user/line-endings", - "/de/enterprise/2.15/articles/dealing-with-line-endings", - "/de/enterprise/2.15/user/articles/dealing-with-line-endings", - "/de/enterprise/2.15/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.15/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.15/github/using-git/configuring-git-to-handle-line-endings" - ], - [ - "/de/enterprise/2.16/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/user/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/dealing-with-lineendings", - "/de/enterprise/2.16/user/dealing-with-lineendings", - "/de/enterprise/2.16/line-endings", - "/de/enterprise/2.16/user/line-endings", - "/de/enterprise/2.16/articles/dealing-with-line-endings", - "/de/enterprise/2.16/user/articles/dealing-with-line-endings", - "/de/enterprise/2.16/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/github/using-git/configuring-git-to-handle-line-endings" - ], - [ - "/de/enterprise/2.17/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/user/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/dealing-with-lineendings", - "/de/enterprise/2.17/user/dealing-with-lineendings", - "/de/enterprise/2.17/line-endings", - "/de/enterprise/2.17/user/line-endings", - "/de/enterprise/2.17/articles/dealing-with-line-endings", - "/de/enterprise/2.17/user/articles/dealing-with-line-endings", - "/de/enterprise/2.17/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/github/using-git/configuring-git-to-handle-line-endings" - ], - [ - "/de/enterprise/2.13/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.13/user/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.13/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.13/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.13/github/using-git/dealing-with-non-fast-forward-errors" - ], - [ - "/de/enterprise/2.14/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.14/user/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.14/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.14/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.14/github/using-git/dealing-with-non-fast-forward-errors" - ], - [ - "/de/enterprise/2.15/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.15/user/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.15/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.15/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.15/github/using-git/dealing-with-non-fast-forward-errors" - ], - [ - "/de/enterprise/2.16/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/user/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/github/using-git/dealing-with-non-fast-forward-errors" - ], - [ - "/de/enterprise/2.17/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/user/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/github/using-git/dealing-with-non-fast-forward-errors" - ], - [ - "/de/enterprise/2.13/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.13/user/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.13/articles/fetching-a-remote", - "/de/enterprise/2.13/user/articles/fetching-a-remote", - "/de/enterprise/2.13/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.13/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.13/github/using-git/getting-changes-from-a-remote-repository" - ], - [ - "/de/enterprise/2.14/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.14/user/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.14/articles/fetching-a-remote", - "/de/enterprise/2.14/user/articles/fetching-a-remote", - "/de/enterprise/2.14/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.14/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.14/github/using-git/getting-changes-from-a-remote-repository" - ], - [ - "/de/enterprise/2.15/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.15/user/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.15/articles/fetching-a-remote", - "/de/enterprise/2.15/user/articles/fetching-a-remote", - "/de/enterprise/2.15/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.15/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.15/github/using-git/getting-changes-from-a-remote-repository" - ], - [ - "/de/enterprise/2.16/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/user/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/articles/fetching-a-remote", - "/de/enterprise/2.16/user/articles/fetching-a-remote", - "/de/enterprise/2.16/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/github/using-git/getting-changes-from-a-remote-repository" - ], - [ - "/de/enterprise/2.17/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/user/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/articles/fetching-a-remote", - "/de/enterprise/2.17/user/articles/fetching-a-remote", - "/de/enterprise/2.17/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/github/using-git/getting-changes-from-a-remote-repository" - ], - [ - "/de/enterprise/2.13/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.13/user/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.13/articles/getting-started-with-git-and-github", - "/de/enterprise/2.13/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.13/github/using-git/getting-started-with-git-and-github" - ], - [ - "/de/enterprise/2.14/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.14/user/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.14/articles/getting-started-with-git-and-github", - "/de/enterprise/2.14/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.14/github/using-git/getting-started-with-git-and-github" - ], - [ - "/de/enterprise/2.15/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.15/user/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.15/articles/getting-started-with-git-and-github", - "/de/enterprise/2.15/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.15/github/using-git/getting-started-with-git-and-github" - ], - [ - "/de/enterprise/2.16/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.16/user/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.16/articles/getting-started-with-git-and-github", - "/de/enterprise/2.16/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.16/github/using-git/getting-started-with-git-and-github" - ], - [ - "/de/enterprise/2.17/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.17/user/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.17/articles/getting-started-with-git-and-github", - "/de/enterprise/2.17/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.17/github/using-git/getting-started-with-git-and-github" - ], - [ - "/de/enterprise/2.13/user/github/using-git/git-workflows", - "/de/enterprise/2.13/user/using-git/git-workflows", - "/de/enterprise/2.13/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.13/user/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.13/articles/git-workflows", - "/de/enterprise/2.13/user/articles/git-workflows", - "/de/enterprise/2.13/github/using-git/git-workflows" - ], - [ - "/de/enterprise/2.14/user/github/using-git/git-workflows", - "/de/enterprise/2.14/user/using-git/git-workflows", - "/de/enterprise/2.14/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.14/user/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.14/articles/git-workflows", - "/de/enterprise/2.14/user/articles/git-workflows", - "/de/enterprise/2.14/github/using-git/git-workflows" - ], - [ - "/de/enterprise/2.15/user/github/using-git/git-workflows", - "/de/enterprise/2.15/user/using-git/git-workflows", - "/de/enterprise/2.15/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.15/user/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.15/articles/git-workflows", - "/de/enterprise/2.15/user/articles/git-workflows", - "/de/enterprise/2.15/github/using-git/git-workflows" - ], - [ - "/de/enterprise/2.16/user/github/using-git/git-workflows", - "/de/enterprise/2.16/user/using-git/git-workflows", - "/de/enterprise/2.16/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.16/user/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.16/articles/git-workflows", - "/de/enterprise/2.16/user/articles/git-workflows", - "/de/enterprise/2.16/github/using-git/git-workflows" - ], - [ - "/de/enterprise/2.17/user/github/using-git/git-workflows", - "/de/enterprise/2.17/user/using-git/git-workflows", - "/de/enterprise/2.17/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.17/user/articles/what-is-a-good-git-workflow", - "/de/enterprise/2.17/articles/git-workflows", - "/de/enterprise/2.17/user/articles/git-workflows", - "/de/enterprise/2.17/github/using-git/git-workflows" - ], - [ - "/de/enterprise/2.13/user/github/using-git/ignoring-files", - "/de/enterprise/2.13/user/using-git/ignoring-files", - "/de/enterprise/2.13/git-ignore", - "/de/enterprise/2.13/user/git-ignore", - "/de/enterprise/2.13/ignore-files", - "/de/enterprise/2.13/user/ignore-files", - "/de/enterprise/2.13/articles/ignoring-files", - "/de/enterprise/2.13/user/articles/ignoring-files", - "/de/enterprise/2.13/github/using-git/ignoring-files" - ], - [ - "/de/enterprise/2.14/user/github/using-git/ignoring-files", - "/de/enterprise/2.14/user/using-git/ignoring-files", - "/de/enterprise/2.14/git-ignore", - "/de/enterprise/2.14/user/git-ignore", - "/de/enterprise/2.14/ignore-files", - "/de/enterprise/2.14/user/ignore-files", - "/de/enterprise/2.14/articles/ignoring-files", - "/de/enterprise/2.14/user/articles/ignoring-files", - "/de/enterprise/2.14/github/using-git/ignoring-files" - ], - [ - "/de/enterprise/2.15/user/github/using-git/ignoring-files", - "/de/enterprise/2.15/user/using-git/ignoring-files", - "/de/enterprise/2.15/git-ignore", - "/de/enterprise/2.15/user/git-ignore", - "/de/enterprise/2.15/ignore-files", - "/de/enterprise/2.15/user/ignore-files", - "/de/enterprise/2.15/articles/ignoring-files", - "/de/enterprise/2.15/user/articles/ignoring-files", - "/de/enterprise/2.15/github/using-git/ignoring-files" - ], - [ - "/de/enterprise/2.16/user/github/using-git/ignoring-files", - "/de/enterprise/2.16/user/using-git/ignoring-files", - "/de/enterprise/2.16/git-ignore", - "/de/enterprise/2.16/user/git-ignore", - "/de/enterprise/2.16/ignore-files", - "/de/enterprise/2.16/user/ignore-files", - "/de/enterprise/2.16/articles/ignoring-files", - "/de/enterprise/2.16/user/articles/ignoring-files", - "/de/enterprise/2.16/github/using-git/ignoring-files" - ], - [ - "/de/enterprise/2.17/user/github/using-git/ignoring-files", - "/de/enterprise/2.17/user/using-git/ignoring-files", - "/de/enterprise/2.17/git-ignore", - "/de/enterprise/2.17/user/git-ignore", - "/de/enterprise/2.17/ignore-files", - "/de/enterprise/2.17/user/ignore-files", - "/de/enterprise/2.17/articles/ignoring-files", - "/de/enterprise/2.17/user/articles/ignoring-files", - "/de/enterprise/2.17/github/using-git/ignoring-files" - ], - [ - "/de/enterprise/2.13/user/github/using-git", - "/de/enterprise/2.13/user/using-git", - "/de/enterprise/2.13/categories/19/articles", - "/de/enterprise/2.13/user/categories/19/articles", - "/de/enterprise/2.13/categories/using-git", - "/de/enterprise/2.13/user/categories/using-git", - "/de/enterprise/2.13/github/using-git" - ], - [ - "/de/enterprise/2.14/user/github/using-git", - "/de/enterprise/2.14/user/using-git", - "/de/enterprise/2.14/categories/19/articles", - "/de/enterprise/2.14/user/categories/19/articles", - "/de/enterprise/2.14/categories/using-git", - "/de/enterprise/2.14/user/categories/using-git", - "/de/enterprise/2.14/github/using-git" - ], - [ - "/de/enterprise/2.15/user/github/using-git", - "/de/enterprise/2.15/user/using-git", - "/de/enterprise/2.15/categories/19/articles", - "/de/enterprise/2.15/user/categories/19/articles", - "/de/enterprise/2.15/categories/using-git", - "/de/enterprise/2.15/user/categories/using-git", - "/de/enterprise/2.15/github/using-git" - ], - [ - "/de/enterprise/2.16/user/github/using-git", - "/de/enterprise/2.16/user/using-git", - "/de/enterprise/2.16/categories/19/articles", - "/de/enterprise/2.16/user/categories/19/articles", - "/de/enterprise/2.16/categories/using-git", - "/de/enterprise/2.16/user/categories/using-git", - "/de/enterprise/2.16/github/using-git" - ], - [ - "/de/enterprise/2.17/user/github/using-git", - "/de/enterprise/2.17/user/using-git", - "/de/enterprise/2.17/categories/19/articles", - "/de/enterprise/2.17/user/categories/19/articles", - "/de/enterprise/2.17/categories/using-git", - "/de/enterprise/2.17/user/categories/using-git", - "/de/enterprise/2.17/github/using-git" - ], - [ - "/de/enterprise/2.13/user/github/using-git/learning-about-git", - "/de/enterprise/2.13/user/using-git/learning-about-git", - "/de/enterprise/2.13/articles/learning-about-git", - "/de/enterprise/2.13/user/articles/learning-about-git", - "/de/enterprise/2.13/github/using-git/learning-about-git" - ], - [ - "/de/enterprise/2.14/user/github/using-git/learning-about-git", - "/de/enterprise/2.14/user/using-git/learning-about-git", - "/de/enterprise/2.14/articles/learning-about-git", - "/de/enterprise/2.14/user/articles/learning-about-git", - "/de/enterprise/2.14/github/using-git/learning-about-git" - ], - [ - "/de/enterprise/2.15/user/github/using-git/learning-about-git", - "/de/enterprise/2.15/user/using-git/learning-about-git", - "/de/enterprise/2.15/articles/learning-about-git", - "/de/enterprise/2.15/user/articles/learning-about-git", - "/de/enterprise/2.15/github/using-git/learning-about-git" - ], - [ - "/de/enterprise/2.16/user/github/using-git/learning-about-git", - "/de/enterprise/2.16/user/using-git/learning-about-git", - "/de/enterprise/2.16/articles/learning-about-git", - "/de/enterprise/2.16/user/articles/learning-about-git", - "/de/enterprise/2.16/github/using-git/learning-about-git" - ], - [ - "/de/enterprise/2.17/user/github/using-git/learning-about-git", - "/de/enterprise/2.17/user/using-git/learning-about-git", - "/de/enterprise/2.17/articles/learning-about-git", - "/de/enterprise/2.17/user/articles/learning-about-git", - "/de/enterprise/2.17/github/using-git/learning-about-git" - ], - [ - "/de/enterprise/2.13/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.13/user/using-git/managing-remote-repositories", - "/de/enterprise/2.13/categories/18/articles", - "/de/enterprise/2.13/user/categories/18/articles", - "/de/enterprise/2.13/remotes", - "/de/enterprise/2.13/user/remotes", - "/de/enterprise/2.13/categories/managing-remotes", - "/de/enterprise/2.13/user/categories/managing-remotes", - "/de/enterprise/2.13/articles/managing-remote-repositories", - "/de/enterprise/2.13/user/articles/managing-remote-repositories", - "/de/enterprise/2.13/github/using-git/managing-remote-repositories" - ], - [ - "/de/enterprise/2.14/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.14/user/using-git/managing-remote-repositories", - "/de/enterprise/2.14/categories/18/articles", - "/de/enterprise/2.14/user/categories/18/articles", - "/de/enterprise/2.14/remotes", - "/de/enterprise/2.14/user/remotes", - "/de/enterprise/2.14/categories/managing-remotes", - "/de/enterprise/2.14/user/categories/managing-remotes", - "/de/enterprise/2.14/articles/managing-remote-repositories", - "/de/enterprise/2.14/user/articles/managing-remote-repositories", - "/de/enterprise/2.14/github/using-git/managing-remote-repositories" - ], - [ - "/de/enterprise/2.15/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.15/user/using-git/managing-remote-repositories", - "/de/enterprise/2.15/categories/18/articles", - "/de/enterprise/2.15/user/categories/18/articles", - "/de/enterprise/2.15/remotes", - "/de/enterprise/2.15/user/remotes", - "/de/enterprise/2.15/categories/managing-remotes", - "/de/enterprise/2.15/user/categories/managing-remotes", - "/de/enterprise/2.15/articles/managing-remote-repositories", - "/de/enterprise/2.15/user/articles/managing-remote-repositories", - "/de/enterprise/2.15/github/using-git/managing-remote-repositories" - ], - [ - "/de/enterprise/2.16/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.16/user/using-git/managing-remote-repositories", - "/de/enterprise/2.16/categories/18/articles", - "/de/enterprise/2.16/user/categories/18/articles", - "/de/enterprise/2.16/remotes", - "/de/enterprise/2.16/user/remotes", - "/de/enterprise/2.16/categories/managing-remotes", - "/de/enterprise/2.16/user/categories/managing-remotes", - "/de/enterprise/2.16/articles/managing-remote-repositories", - "/de/enterprise/2.16/user/articles/managing-remote-repositories", - "/de/enterprise/2.16/github/using-git/managing-remote-repositories" - ], - [ - "/de/enterprise/2.17/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.17/user/using-git/managing-remote-repositories", - "/de/enterprise/2.17/categories/18/articles", - "/de/enterprise/2.17/user/categories/18/articles", - "/de/enterprise/2.17/remotes", - "/de/enterprise/2.17/user/remotes", - "/de/enterprise/2.17/categories/managing-remotes", - "/de/enterprise/2.17/user/categories/managing-remotes", - "/de/enterprise/2.17/articles/managing-remote-repositories", - "/de/enterprise/2.17/user/articles/managing-remote-repositories", - "/de/enterprise/2.17/github/using-git/managing-remote-repositories" - ], - [ - "/de/enterprise/2.13/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.13/user/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.13/articles/pushing-to-a-remote", - "/de/enterprise/2.13/user/articles/pushing-to-a-remote", - "/de/enterprise/2.13/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.13/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.13/github/using-git/pushing-commits-to-a-remote-repository" - ], - [ - "/de/enterprise/2.14/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.14/user/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.14/articles/pushing-to-a-remote", - "/de/enterprise/2.14/user/articles/pushing-to-a-remote", - "/de/enterprise/2.14/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.14/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.14/github/using-git/pushing-commits-to-a-remote-repository" - ], - [ - "/de/enterprise/2.15/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.15/user/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.15/articles/pushing-to-a-remote", - "/de/enterprise/2.15/user/articles/pushing-to-a-remote", - "/de/enterprise/2.15/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.15/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.15/github/using-git/pushing-commits-to-a-remote-repository" - ], - [ - "/de/enterprise/2.16/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/user/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/articles/pushing-to-a-remote", - "/de/enterprise/2.16/user/articles/pushing-to-a-remote", - "/de/enterprise/2.16/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/github/using-git/pushing-commits-to-a-remote-repository" - ], - [ - "/de/enterprise/2.17/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/user/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/articles/pushing-to-a-remote", - "/de/enterprise/2.17/user/articles/pushing-to-a-remote", - "/de/enterprise/2.17/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/github/using-git/pushing-commits-to-a-remote-repository" - ], - [ - "/de/enterprise/2.13/user/github/using-git/removing-a-remote", - "/de/enterprise/2.13/user/using-git/removing-a-remote", - "/de/enterprise/2.13/articles/removing-a-remote", - "/de/enterprise/2.13/user/articles/removing-a-remote", - "/de/enterprise/2.13/github/using-git/removing-a-remote" - ], - [ - "/de/enterprise/2.14/user/github/using-git/removing-a-remote", - "/de/enterprise/2.14/user/using-git/removing-a-remote", - "/de/enterprise/2.14/articles/removing-a-remote", - "/de/enterprise/2.14/user/articles/removing-a-remote", - "/de/enterprise/2.14/github/using-git/removing-a-remote" - ], - [ - "/de/enterprise/2.15/user/github/using-git/removing-a-remote", - "/de/enterprise/2.15/user/using-git/removing-a-remote", - "/de/enterprise/2.15/articles/removing-a-remote", - "/de/enterprise/2.15/user/articles/removing-a-remote", - "/de/enterprise/2.15/github/using-git/removing-a-remote" - ], - [ - "/de/enterprise/2.16/user/github/using-git/removing-a-remote", - "/de/enterprise/2.16/user/using-git/removing-a-remote", - "/de/enterprise/2.16/articles/removing-a-remote", - "/de/enterprise/2.16/user/articles/removing-a-remote", - "/de/enterprise/2.16/github/using-git/removing-a-remote" - ], - [ - "/de/enterprise/2.17/user/github/using-git/removing-a-remote", - "/de/enterprise/2.17/user/using-git/removing-a-remote", - "/de/enterprise/2.17/articles/removing-a-remote", - "/de/enterprise/2.17/user/articles/removing-a-remote", - "/de/enterprise/2.17/github/using-git/removing-a-remote" - ], - [ - "/de/enterprise/2.13/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.13/user/using-git/renaming-a-remote", - "/de/enterprise/2.13/articles/renaming-a-remote", - "/de/enterprise/2.13/user/articles/renaming-a-remote", - "/de/enterprise/2.13/github/using-git/renaming-a-remote" - ], - [ - "/de/enterprise/2.14/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.14/user/using-git/renaming-a-remote", - "/de/enterprise/2.14/articles/renaming-a-remote", - "/de/enterprise/2.14/user/articles/renaming-a-remote", - "/de/enterprise/2.14/github/using-git/renaming-a-remote" - ], - [ - "/de/enterprise/2.15/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.15/user/using-git/renaming-a-remote", - "/de/enterprise/2.15/articles/renaming-a-remote", - "/de/enterprise/2.15/user/articles/renaming-a-remote", - "/de/enterprise/2.15/github/using-git/renaming-a-remote" - ], - [ - "/de/enterprise/2.16/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.16/user/using-git/renaming-a-remote", - "/de/enterprise/2.16/articles/renaming-a-remote", - "/de/enterprise/2.16/user/articles/renaming-a-remote", - "/de/enterprise/2.16/github/using-git/renaming-a-remote" - ], - [ - "/de/enterprise/2.17/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.17/user/using-git/renaming-a-remote", - "/de/enterprise/2.17/articles/renaming-a-remote", - "/de/enterprise/2.17/user/articles/renaming-a-remote", - "/de/enterprise/2.17/github/using-git/renaming-a-remote" - ], - [ - "/de/enterprise/2.13/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.13/user/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.13/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.13/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.13/github/using-git/resolving-merge-conflicts-after-a-git-rebase" - ], - [ - "/de/enterprise/2.14/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.14/user/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.14/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.14/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.14/github/using-git/resolving-merge-conflicts-after-a-git-rebase" - ], - [ - "/de/enterprise/2.15/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.15/user/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.15/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.15/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.15/github/using-git/resolving-merge-conflicts-after-a-git-rebase" - ], - [ - "/de/enterprise/2.16/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/user/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/github/using-git/resolving-merge-conflicts-after-a-git-rebase" - ], - [ - "/de/enterprise/2.17/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/user/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/github/using-git/resolving-merge-conflicts-after-a-git-rebase" - ], - [ - "/de/enterprise/2.13/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.13/user/using-git/setting-your-username-in-git", - "/de/enterprise/2.13/articles/setting-your-username-in-git", - "/de/enterprise/2.13/user/articles/setting-your-username-in-git", - "/de/enterprise/2.13/github/using-git/setting-your-username-in-git" - ], - [ - "/de/enterprise/2.14/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.14/user/using-git/setting-your-username-in-git", - "/de/enterprise/2.14/articles/setting-your-username-in-git", - "/de/enterprise/2.14/user/articles/setting-your-username-in-git", - "/de/enterprise/2.14/github/using-git/setting-your-username-in-git" - ], - [ - "/de/enterprise/2.15/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.15/user/using-git/setting-your-username-in-git", - "/de/enterprise/2.15/articles/setting-your-username-in-git", - "/de/enterprise/2.15/user/articles/setting-your-username-in-git", - "/de/enterprise/2.15/github/using-git/setting-your-username-in-git" - ], - [ - "/de/enterprise/2.16/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.16/user/using-git/setting-your-username-in-git", - "/de/enterprise/2.16/articles/setting-your-username-in-git", - "/de/enterprise/2.16/user/articles/setting-your-username-in-git", - "/de/enterprise/2.16/github/using-git/setting-your-username-in-git" - ], - [ - "/de/enterprise/2.17/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.17/user/using-git/setting-your-username-in-git", - "/de/enterprise/2.17/articles/setting-your-username-in-git", - "/de/enterprise/2.17/user/articles/setting-your-username-in-git", - "/de/enterprise/2.17/github/using-git/setting-your-username-in-git" - ], - [ - "/de/enterprise/2.13/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.13/user/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.13/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.13/user/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.13/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.13/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.13/github/using-git/splitting-a-subfolder-out-into-a-new-repository" - ], - [ - "/de/enterprise/2.14/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.14/user/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.14/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.14/user/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.14/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.14/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.14/github/using-git/splitting-a-subfolder-out-into-a-new-repository" - ], - [ - "/de/enterprise/2.15/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.15/user/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.15/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.15/user/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.15/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.15/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.15/github/using-git/splitting-a-subfolder-out-into-a-new-repository" - ], - [ - "/de/enterprise/2.16/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/user/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.16/user/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.16/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/github/using-git/splitting-a-subfolder-out-into-a-new-repository" - ], - [ - "/de/enterprise/2.17/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/user/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.17/user/articles/splitting-a-subpath-out-into-a-new-repository", - "/de/enterprise/2.17/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/github/using-git/splitting-a-subfolder-out-into-a-new-repository" - ], - [ - "/de/enterprise/2.13/user/github/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.13/user/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.13/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.13/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.13/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.13/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.13/user/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.13/github/using-git/updating-credentials-from-the-macos-keychain" - ], - [ - "/de/enterprise/2.14/user/github/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.14/user/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.14/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.14/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.14/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.14/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.14/user/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.14/github/using-git/updating-credentials-from-the-macos-keychain" - ], - [ - "/de/enterprise/2.15/user/github/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.15/user/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.15/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/user/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/github/using-git/updating-credentials-from-the-macos-keychain" - ], - [ - "/de/enterprise/2.16/user/github/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.16/user/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.16/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/user/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/github/using-git/updating-credentials-from-the-macos-keychain" - ], - [ - "/de/enterprise/2.17/user/github/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.17/user/using-git/updating-credentials-from-the-macos-keychain", - "/de/enterprise/2.17/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/user/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/github/using-git/updating-credentials-from-the-macos-keychain" - ], - [ - "/de/enterprise/2.13/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.13/user/using-git/using-advanced-git-commands", - "/de/enterprise/2.13/categories/52/articles", - "/de/enterprise/2.13/user/categories/52/articles", - "/de/enterprise/2.13/categories/advanced-git", - "/de/enterprise/2.13/user/categories/advanced-git", - "/de/enterprise/2.13/articles/using-advanced-git-commands", - "/de/enterprise/2.13/user/articles/using-advanced-git-commands", - "/de/enterprise/2.13/github/using-git/changing-author-info", - "/de/enterprise/2.13/user/github/using-git/changing-author-info", - "/de/enterprise/2.13/user/using-git/changing-author-info", - "/de/enterprise/2.13/github/using-git/using-advanced-git-commands" - ], - [ - "/de/enterprise/2.14/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.14/user/using-git/using-advanced-git-commands", - "/de/enterprise/2.14/categories/52/articles", - "/de/enterprise/2.14/user/categories/52/articles", - "/de/enterprise/2.14/categories/advanced-git", - "/de/enterprise/2.14/user/categories/advanced-git", - "/de/enterprise/2.14/articles/using-advanced-git-commands", - "/de/enterprise/2.14/user/articles/using-advanced-git-commands", - "/de/enterprise/2.14/github/using-git/changing-author-info", - "/de/enterprise/2.14/user/github/using-git/changing-author-info", - "/de/enterprise/2.14/user/using-git/changing-author-info", - "/de/enterprise/2.14/github/using-git/using-advanced-git-commands" - ], - [ - "/de/enterprise/2.15/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.15/user/using-git/using-advanced-git-commands", - "/de/enterprise/2.15/categories/52/articles", - "/de/enterprise/2.15/user/categories/52/articles", - "/de/enterprise/2.15/categories/advanced-git", - "/de/enterprise/2.15/user/categories/advanced-git", - "/de/enterprise/2.15/articles/using-advanced-git-commands", - "/de/enterprise/2.15/user/articles/using-advanced-git-commands", - "/de/enterprise/2.15/github/using-git/changing-author-info", - "/de/enterprise/2.15/user/github/using-git/changing-author-info", - "/de/enterprise/2.15/user/using-git/changing-author-info", - "/de/enterprise/2.15/github/using-git/using-advanced-git-commands" - ], - [ - "/de/enterprise/2.16/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.16/user/using-git/using-advanced-git-commands", - "/de/enterprise/2.16/categories/52/articles", - "/de/enterprise/2.16/user/categories/52/articles", - "/de/enterprise/2.16/categories/advanced-git", - "/de/enterprise/2.16/user/categories/advanced-git", - "/de/enterprise/2.16/articles/using-advanced-git-commands", - "/de/enterprise/2.16/user/articles/using-advanced-git-commands", - "/de/enterprise/2.16/github/using-git/changing-author-info", - "/de/enterprise/2.16/user/github/using-git/changing-author-info", - "/de/enterprise/2.16/user/using-git/changing-author-info", - "/de/enterprise/2.16/github/using-git/using-advanced-git-commands" - ], - [ - "/de/enterprise/2.17/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.17/user/using-git/using-advanced-git-commands", - "/de/enterprise/2.17/categories/52/articles", - "/de/enterprise/2.17/user/categories/52/articles", - "/de/enterprise/2.17/categories/advanced-git", - "/de/enterprise/2.17/user/categories/advanced-git", - "/de/enterprise/2.17/articles/using-advanced-git-commands", - "/de/enterprise/2.17/user/articles/using-advanced-git-commands", - "/de/enterprise/2.17/github/using-git/changing-author-info", - "/de/enterprise/2.17/user/github/using-git/changing-author-info", - "/de/enterprise/2.17/user/using-git/changing-author-info", - "/de/enterprise/2.17/github/using-git/using-advanced-git-commands" - ], - [ - "/de/enterprise/2.13/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.13/user/using-git/using-common-git-commands", - "/de/enterprise/2.13/articles/using-common-git-commands", - "/de/enterprise/2.13/user/articles/using-common-git-commands", - "/de/enterprise/2.13/github/using-git/using-common-git-commands" - ], - [ - "/de/enterprise/2.14/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.14/user/using-git/using-common-git-commands", - "/de/enterprise/2.14/articles/using-common-git-commands", - "/de/enterprise/2.14/user/articles/using-common-git-commands", - "/de/enterprise/2.14/github/using-git/using-common-git-commands" - ], - [ - "/de/enterprise/2.15/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.15/user/using-git/using-common-git-commands", - "/de/enterprise/2.15/articles/using-common-git-commands", - "/de/enterprise/2.15/user/articles/using-common-git-commands", - "/de/enterprise/2.15/github/using-git/using-common-git-commands" - ], - [ - "/de/enterprise/2.16/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.16/user/using-git/using-common-git-commands", - "/de/enterprise/2.16/articles/using-common-git-commands", - "/de/enterprise/2.16/user/articles/using-common-git-commands", - "/de/enterprise/2.16/github/using-git/using-common-git-commands" - ], - [ - "/de/enterprise/2.17/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.17/user/using-git/using-common-git-commands", - "/de/enterprise/2.17/articles/using-common-git-commands", - "/de/enterprise/2.17/user/articles/using-common-git-commands", - "/de/enterprise/2.17/github/using-git/using-common-git-commands" - ], - [ - "/de/enterprise/2.13/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.13/user/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.13/articles/using-git-rebase", - "/de/enterprise/2.13/user/articles/using-git-rebase", - "/de/enterprise/2.13/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.13/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.13/github/using-git/using-git-rebase-on-the-command-line" - ], - [ - "/de/enterprise/2.14/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.14/user/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.14/articles/using-git-rebase", - "/de/enterprise/2.14/user/articles/using-git-rebase", - "/de/enterprise/2.14/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.14/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.14/github/using-git/using-git-rebase-on-the-command-line" - ], - [ - "/de/enterprise/2.15/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.15/user/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.15/articles/using-git-rebase", - "/de/enterprise/2.15/user/articles/using-git-rebase", - "/de/enterprise/2.15/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.15/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.15/github/using-git/using-git-rebase-on-the-command-line" - ], - [ - "/de/enterprise/2.16/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/user/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/articles/using-git-rebase", - "/de/enterprise/2.16/user/articles/using-git-rebase", - "/de/enterprise/2.16/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/github/using-git/using-git-rebase-on-the-command-line" - ], - [ - "/de/enterprise/2.17/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/user/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/articles/using-git-rebase", - "/de/enterprise/2.17/user/articles/using-git-rebase", - "/de/enterprise/2.17/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/github/using-git/using-git-rebase-on-the-command-line" - ], - [ - "/de/enterprise/2.13/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.13/user/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.13/articles/which-url-should-i-use", - "/de/enterprise/2.13/user/articles/which-url-should-i-use", - "/de/enterprise/2.13/articles/which-remote-url-should-i-use", - "/de/enterprise/2.13/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.13/github/using-git/which-remote-url-should-i-use" - ], - [ - "/de/enterprise/2.14/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.14/user/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.14/articles/which-url-should-i-use", - "/de/enterprise/2.14/user/articles/which-url-should-i-use", - "/de/enterprise/2.14/articles/which-remote-url-should-i-use", - "/de/enterprise/2.14/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.14/github/using-git/which-remote-url-should-i-use" - ], - [ - "/de/enterprise/2.15/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.15/user/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.15/articles/which-url-should-i-use", - "/de/enterprise/2.15/user/articles/which-url-should-i-use", - "/de/enterprise/2.15/articles/which-remote-url-should-i-use", - "/de/enterprise/2.15/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.15/github/using-git/which-remote-url-should-i-use" - ], - [ - "/de/enterprise/2.16/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.16/user/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.16/articles/which-url-should-i-use", - "/de/enterprise/2.16/user/articles/which-url-should-i-use", - "/de/enterprise/2.16/articles/which-remote-url-should-i-use", - "/de/enterprise/2.16/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.16/github/using-git/which-remote-url-should-i-use" - ], - [ - "/de/enterprise/2.17/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.17/user/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.17/articles/which-url-should-i-use", - "/de/enterprise/2.17/user/articles/which-url-should-i-use", - "/de/enterprise/2.17/articles/which-remote-url-should-i-use", - "/de/enterprise/2.17/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.17/github/using-git/which-remote-url-should-i-use" - ], - [ - "/de/enterprise/2.13/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.13/user/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.13/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.13/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.13/github/using-git/why-is-git-always-asking-for-my-password" - ], - [ - "/de/enterprise/2.14/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.14/user/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.14/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.14/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.14/github/using-git/why-is-git-always-asking-for-my-password" - ], - [ - "/de/enterprise/2.15/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.15/user/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.15/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.15/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.15/github/using-git/why-is-git-always-asking-for-my-password" - ], - [ - "/de/enterprise/2.16/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/user/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/github/using-git/why-is-git-always-asking-for-my-password" - ], - [ - "/de/enterprise/2.17/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/user/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/github/using-git/why-is-git-always-asking-for-my-password" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.13/articles/using-graphs", - "/de/enterprise/2.13/user/articles/using-graphs", - "/de/enterprise/2.13/articles/about-repository-graphs", - "/de/enterprise/2.13/user/articles/about-repository-graphs", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/about-repository-graphs" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.14/articles/using-graphs", - "/de/enterprise/2.14/user/articles/using-graphs", - "/de/enterprise/2.14/articles/about-repository-graphs", - "/de/enterprise/2.14/user/articles/about-repository-graphs", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/about-repository-graphs" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.15/articles/using-graphs", - "/de/enterprise/2.15/user/articles/using-graphs", - "/de/enterprise/2.15/articles/about-repository-graphs", - "/de/enterprise/2.15/user/articles/about-repository-graphs", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/about-repository-graphs" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.16/articles/using-graphs", - "/de/enterprise/2.16/user/articles/using-graphs", - "/de/enterprise/2.16/articles/about-repository-graphs", - "/de/enterprise/2.16/user/articles/about-repository-graphs", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/about-repository-graphs" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.17/articles/using-graphs", - "/de/enterprise/2.17/user/articles/using-graphs", - "/de/enterprise/2.17/articles/about-repository-graphs", - "/de/enterprise/2.17/user/articles/about-repository-graphs", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/about-repository-graphs" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/about-the-dependency-graph" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/about-the-dependency-graph" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/about-the-dependency-graph" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/about-the-dependency-graph" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/about-the-dependency-graph", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/about-the-dependency-graph" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.13/articles/accessing-basic-repository-data", - "/de/enterprise/2.13/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.14/articles/accessing-basic-repository-data", - "/de/enterprise/2.14/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.15/articles/accessing-basic-repository-data", - "/de/enterprise/2.15/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.16/articles/accessing-basic-repository-data", - "/de/enterprise/2.16/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.17/articles/accessing-basic-repository-data", - "/de/enterprise/2.17/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.13/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.13/user/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.13/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.13/user/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.13/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.13/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.14/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.14/user/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.14/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.14/user/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.14/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.14/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.15/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.15/user/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.15/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.15/user/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.15/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.15/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.16/user/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.16/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.16/user/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.16/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.17/user/articles/viewing-commit-frequency-in-a-repository", - "/de/enterprise/2.17/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.17/user/articles/analyzing-changes-to-a-repository-s-content", - "/de/enterprise/2.17/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.13/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.13/user/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.13/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.13/user/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.14/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.14/user/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.14/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.14/user/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.15/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.15/user/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.15/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.15/user/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.16/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.16/user/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.16/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.16/user/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository", - "/de/enterprise/2.17/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/user/articles/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/user/articles/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/exploring-the-dependencies-and-dependents-of-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs", - "/de/enterprise/2.13/categories/44/articles", - "/de/enterprise/2.13/user/categories/44/articles", - "/de/enterprise/2.13/categories/graphs-and-contributions", - "/de/enterprise/2.13/user/categories/graphs-and-contributions", - "/de/enterprise/2.13/categories/graphs", - "/de/enterprise/2.13/user/categories/graphs", - "/de/enterprise/2.13/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.13/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs", - "/de/enterprise/2.14/categories/44/articles", - "/de/enterprise/2.14/user/categories/44/articles", - "/de/enterprise/2.14/categories/graphs-and-contributions", - "/de/enterprise/2.14/user/categories/graphs-and-contributions", - "/de/enterprise/2.14/categories/graphs", - "/de/enterprise/2.14/user/categories/graphs", - "/de/enterprise/2.14/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.14/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs", - "/de/enterprise/2.15/categories/44/articles", - "/de/enterprise/2.15/user/categories/44/articles", - "/de/enterprise/2.15/categories/graphs-and-contributions", - "/de/enterprise/2.15/user/categories/graphs-and-contributions", - "/de/enterprise/2.15/categories/graphs", - "/de/enterprise/2.15/user/categories/graphs", - "/de/enterprise/2.15/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.15/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/categories/44/articles", - "/de/enterprise/2.16/user/categories/44/articles", - "/de/enterprise/2.16/categories/graphs-and-contributions", - "/de/enterprise/2.16/user/categories/graphs-and-contributions", - "/de/enterprise/2.16/categories/graphs", - "/de/enterprise/2.16/user/categories/graphs", - "/de/enterprise/2.16/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/categories/44/articles", - "/de/enterprise/2.17/user/categories/44/articles", - "/de/enterprise/2.17/categories/graphs-and-contributions", - "/de/enterprise/2.17/user/categories/graphs-and-contributions", - "/de/enterprise/2.17/categories/graphs", - "/de/enterprise/2.17/user/categories/graphs", - "/de/enterprise/2.17/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.13/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.13/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.14/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.14/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.15/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.15/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.13/articles/understanding-connections-between-repositories", - "/de/enterprise/2.13/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.14/articles/understanding-connections-between-repositories", - "/de/enterprise/2.14/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.15/articles/understanding-connections-between-repositories", - "/de/enterprise/2.15/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.16/articles/understanding-connections-between-repositories", - "/de/enterprise/2.16/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.17/articles/understanding-connections-between-repositories", - "/de/enterprise/2.17/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.13/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.13/user/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.13/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.13/user/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.13/articles/viewing-a-projects-contributors", - "/de/enterprise/2.13/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.14/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.14/user/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.14/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.14/user/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.14/articles/viewing-a-projects-contributors", - "/de/enterprise/2.14/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.15/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.15/user/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.15/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.15/user/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.15/articles/viewing-a-projects-contributors", - "/de/enterprise/2.15/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.16/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.16/user/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.16/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.16/user/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.16/articles/viewing-a-projects-contributors", - "/de/enterprise/2.16/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.17/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.17/user/articles/i-don-t-see-myself-in-the-contributions-graph", - "/de/enterprise/2.17/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.17/user/articles/viewing-contribution-activity-in-a-repository", - "/de/enterprise/2.17/articles/viewing-a-projects-contributors", - "/de/enterprise/2.17/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.13/articles/viewing-a-repository-s-network", - "/de/enterprise/2.13/user/articles/viewing-a-repository-s-network", - "/de/enterprise/2.13/articles/viewing-a-repositorys-network", - "/de/enterprise/2.13/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.14/articles/viewing-a-repository-s-network", - "/de/enterprise/2.14/user/articles/viewing-a-repository-s-network", - "/de/enterprise/2.14/articles/viewing-a-repositorys-network", - "/de/enterprise/2.14/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.15/articles/viewing-a-repository-s-network", - "/de/enterprise/2.15/user/articles/viewing-a-repository-s-network", - "/de/enterprise/2.15/articles/viewing-a-repositorys-network", - "/de/enterprise/2.15/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.16/articles/viewing-a-repository-s-network", - "/de/enterprise/2.16/user/articles/viewing-a-repository-s-network", - "/de/enterprise/2.16/articles/viewing-a-repositorys-network", - "/de/enterprise/2.16/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.17/articles/viewing-a-repository-s-network", - "/de/enterprise/2.17/user/articles/viewing-a-repository-s-network", - "/de/enterprise/2.17/articles/viewing-a-repositorys-network", - "/de/enterprise/2.17/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.13/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.13/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.14/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.14/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.15/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.15/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.13/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.13/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.14/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.14/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.15/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.15/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.13/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.13/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.13/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.13/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository" - ], - [ - "/de/enterprise/2.14/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.14/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.14/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.14/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.14/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository" - ], - [ - "/de/enterprise/2.15/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.15/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.15/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.15/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.15/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository" - ], - [ - "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository" - ], - [ - "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.13/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.13/user/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.13/articles/configuring-jekyll", - "/de/enterprise/2.13/user/articles/configuring-jekyll", - "/de/enterprise/2.13/articles/configuring-jekyll-plugins", - "/de/enterprise/2.13/user/articles/configuring-jekyll-plugins", - "/de/enterprise/2.13/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.13/user/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.13/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.13/user/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.13/articles/sitemaps-for-github-pages", - "/de/enterprise/2.13/user/articles/sitemaps-for-github-pages", - "/de/enterprise/2.13/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.13/user/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.13/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.13/user/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.13/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.13/user/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.13/articles/redirects-on-github-pages", - "/de/enterprise/2.13/user/articles/redirects-on-github-pages", - "/de/enterprise/2.13/articles/emoji-on-github-pages", - "/de/enterprise/2.13/user/articles/emoji-on-github-pages", - "/de/enterprise/2.13/articles/mentions-on-github-pages", - "/de/enterprise/2.13/user/articles/mentions-on-github-pages", - "/de/enterprise/2.13/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.13/user/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.13/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.13/user/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.13/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.13/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/about-github-pages-and-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.14/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.14/user/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.14/articles/configuring-jekyll", - "/de/enterprise/2.14/user/articles/configuring-jekyll", - "/de/enterprise/2.14/articles/configuring-jekyll-plugins", - "/de/enterprise/2.14/user/articles/configuring-jekyll-plugins", - "/de/enterprise/2.14/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.14/user/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.14/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.14/user/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.14/articles/sitemaps-for-github-pages", - "/de/enterprise/2.14/user/articles/sitemaps-for-github-pages", - "/de/enterprise/2.14/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.14/user/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.14/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.14/user/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.14/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.14/user/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.14/articles/redirects-on-github-pages", - "/de/enterprise/2.14/user/articles/redirects-on-github-pages", - "/de/enterprise/2.14/articles/emoji-on-github-pages", - "/de/enterprise/2.14/user/articles/emoji-on-github-pages", - "/de/enterprise/2.14/articles/mentions-on-github-pages", - "/de/enterprise/2.14/user/articles/mentions-on-github-pages", - "/de/enterprise/2.14/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.14/user/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.14/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.14/user/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.14/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.14/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/about-github-pages-and-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.15/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.15/user/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.15/articles/configuring-jekyll", - "/de/enterprise/2.15/user/articles/configuring-jekyll", - "/de/enterprise/2.15/articles/configuring-jekyll-plugins", - "/de/enterprise/2.15/user/articles/configuring-jekyll-plugins", - "/de/enterprise/2.15/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.15/user/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.15/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.15/user/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.15/articles/sitemaps-for-github-pages", - "/de/enterprise/2.15/user/articles/sitemaps-for-github-pages", - "/de/enterprise/2.15/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.15/user/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.15/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.15/user/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.15/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.15/user/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.15/articles/redirects-on-github-pages", - "/de/enterprise/2.15/user/articles/redirects-on-github-pages", - "/de/enterprise/2.15/articles/emoji-on-github-pages", - "/de/enterprise/2.15/user/articles/emoji-on-github-pages", - "/de/enterprise/2.15/articles/mentions-on-github-pages", - "/de/enterprise/2.15/user/articles/mentions-on-github-pages", - "/de/enterprise/2.15/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.15/user/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.15/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.15/user/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.15/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.15/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/about-github-pages-and-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.16/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.16/user/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.16/articles/configuring-jekyll", - "/de/enterprise/2.16/user/articles/configuring-jekyll", - "/de/enterprise/2.16/articles/configuring-jekyll-plugins", - "/de/enterprise/2.16/user/articles/configuring-jekyll-plugins", - "/de/enterprise/2.16/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.16/user/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.16/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.16/user/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.16/articles/sitemaps-for-github-pages", - "/de/enterprise/2.16/user/articles/sitemaps-for-github-pages", - "/de/enterprise/2.16/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.16/user/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.16/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.16/user/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.16/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.16/user/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.16/articles/redirects-on-github-pages", - "/de/enterprise/2.16/user/articles/redirects-on-github-pages", - "/de/enterprise/2.16/articles/emoji-on-github-pages", - "/de/enterprise/2.16/user/articles/emoji-on-github-pages", - "/de/enterprise/2.16/articles/mentions-on-github-pages", - "/de/enterprise/2.16/user/articles/mentions-on-github-pages", - "/de/enterprise/2.16/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.16/user/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.16/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.16/user/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.16/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.16/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/about-github-pages-and-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.17/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.17/user/articles/about-jekyll-themes-on-github", - "/de/enterprise/2.17/articles/configuring-jekyll", - "/de/enterprise/2.17/user/articles/configuring-jekyll", - "/de/enterprise/2.17/articles/configuring-jekyll-plugins", - "/de/enterprise/2.17/user/articles/configuring-jekyll-plugins", - "/de/enterprise/2.17/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.17/user/articles/using-syntax-highlighting-on-github-pages", - "/de/enterprise/2.17/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.17/user/articles/files-that-start-with-an-underscore-are-missing", - "/de/enterprise/2.17/articles/sitemaps-for-github-pages", - "/de/enterprise/2.17/user/articles/sitemaps-for-github-pages", - "/de/enterprise/2.17/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.17/user/articles/search-engine-optimization-for-github-pages", - "/de/enterprise/2.17/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.17/user/articles/repository-metadata-on-github-pages", - "/de/enterprise/2.17/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.17/user/articles/atom-rss-feeds-for-github-pages", - "/de/enterprise/2.17/articles/redirects-on-github-pages", - "/de/enterprise/2.17/user/articles/redirects-on-github-pages", - "/de/enterprise/2.17/articles/emoji-on-github-pages", - "/de/enterprise/2.17/user/articles/emoji-on-github-pages", - "/de/enterprise/2.17/articles/mentions-on-github-pages", - "/de/enterprise/2.17/user/articles/mentions-on-github-pages", - "/de/enterprise/2.17/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.17/user/articles/using-jekyll-plugins-with-github-pages", - "/de/enterprise/2.17/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.17/user/articles/adding-jekyll-plugins-to-a-github-pages-site", - "/de/enterprise/2.17/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.17/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/about-github-pages-and-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.13/user/working-with-github-pages/about-github-pages", - "/de/enterprise/2.13/articles/what-are-github-pages", - "/de/enterprise/2.13/user/articles/what-are-github-pages", - "/de/enterprise/2.13/articles/what-is-github-pages", - "/de/enterprise/2.13/user/articles/what-is-github-pages", - "/de/enterprise/2.13/articles/user-organization-and-project-pages", - "/de/enterprise/2.13/user/articles/user-organization-and-project-pages", - "/de/enterprise/2.13/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.13/user/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.13/articles/mime-types-on-github-pages", - "/de/enterprise/2.13/user/articles/mime-types-on-github-pages", - "/de/enterprise/2.13/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.13/user/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.13/articles/about-github-pages", - "/de/enterprise/2.13/user/articles/about-github-pages", - "/de/enterprise/2.13/github/working-with-github-pages/about-github-pages" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.14/user/working-with-github-pages/about-github-pages", - "/de/enterprise/2.14/articles/what-are-github-pages", - "/de/enterprise/2.14/user/articles/what-are-github-pages", - "/de/enterprise/2.14/articles/what-is-github-pages", - "/de/enterprise/2.14/user/articles/what-is-github-pages", - "/de/enterprise/2.14/articles/user-organization-and-project-pages", - "/de/enterprise/2.14/user/articles/user-organization-and-project-pages", - "/de/enterprise/2.14/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.14/user/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.14/articles/mime-types-on-github-pages", - "/de/enterprise/2.14/user/articles/mime-types-on-github-pages", - "/de/enterprise/2.14/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.14/user/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.14/articles/about-github-pages", - "/de/enterprise/2.14/user/articles/about-github-pages", - "/de/enterprise/2.14/github/working-with-github-pages/about-github-pages" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.15/user/working-with-github-pages/about-github-pages", - "/de/enterprise/2.15/articles/what-are-github-pages", - "/de/enterprise/2.15/user/articles/what-are-github-pages", - "/de/enterprise/2.15/articles/what-is-github-pages", - "/de/enterprise/2.15/user/articles/what-is-github-pages", - "/de/enterprise/2.15/articles/user-organization-and-project-pages", - "/de/enterprise/2.15/user/articles/user-organization-and-project-pages", - "/de/enterprise/2.15/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.15/user/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.15/articles/mime-types-on-github-pages", - "/de/enterprise/2.15/user/articles/mime-types-on-github-pages", - "/de/enterprise/2.15/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.15/user/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.15/articles/about-github-pages", - "/de/enterprise/2.15/user/articles/about-github-pages", - "/de/enterprise/2.15/github/working-with-github-pages/about-github-pages" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages/about-github-pages", - "/de/enterprise/2.16/articles/what-are-github-pages", - "/de/enterprise/2.16/user/articles/what-are-github-pages", - "/de/enterprise/2.16/articles/what-is-github-pages", - "/de/enterprise/2.16/user/articles/what-is-github-pages", - "/de/enterprise/2.16/articles/user-organization-and-project-pages", - "/de/enterprise/2.16/user/articles/user-organization-and-project-pages", - "/de/enterprise/2.16/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.16/user/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.16/articles/mime-types-on-github-pages", - "/de/enterprise/2.16/user/articles/mime-types-on-github-pages", - "/de/enterprise/2.16/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.16/user/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.16/articles/about-github-pages", - "/de/enterprise/2.16/user/articles/about-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages/about-github-pages" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages/about-github-pages", - "/de/enterprise/2.17/articles/what-are-github-pages", - "/de/enterprise/2.17/user/articles/what-are-github-pages", - "/de/enterprise/2.17/articles/what-is-github-pages", - "/de/enterprise/2.17/user/articles/what-is-github-pages", - "/de/enterprise/2.17/articles/user-organization-and-project-pages", - "/de/enterprise/2.17/user/articles/user-organization-and-project-pages", - "/de/enterprise/2.17/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.17/user/articles/using-a-static-site-generator-other-than-jekyll", - "/de/enterprise/2.17/articles/mime-types-on-github-pages", - "/de/enterprise/2.17/user/articles/mime-types-on-github-pages", - "/de/enterprise/2.17/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.17/user/articles/should-i-rename-usernamegithubcom-repositories-to-usernamegithubio", - "/de/enterprise/2.17/articles/about-github-pages", - "/de/enterprise/2.17/user/articles/about-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages/about-github-pages" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.13/user/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.13/articles/generic-jekyll-build-failures", - "/de/enterprise/2.13/user/articles/generic-jekyll-build-failures", - "/de/enterprise/2.13/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.14/user/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.14/articles/generic-jekyll-build-failures", - "/de/enterprise/2.14/user/articles/generic-jekyll-build-failures", - "/de/enterprise/2.14/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.15/user/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.15/articles/generic-jekyll-build-failures", - "/de/enterprise/2.15/user/articles/generic-jekyll-build-failures", - "/de/enterprise/2.15/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.16/user/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.16/articles/generic-jekyll-build-failures", - "/de/enterprise/2.16/user/articles/generic-jekyll-build-failures", - "/de/enterprise/2.16/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.17/user/articles/viewing-jekyll-build-error-messages", - "/de/enterprise/2.17/articles/generic-jekyll-build-failures", - "/de/enterprise/2.17/user/articles/generic-jekyll-build-failures", - "/de/enterprise/2.17/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.13/user/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.13/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.13/user/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.13/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.14/user/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.14/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.14/user/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.14/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.15/user/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.15/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.15/user/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.15/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.16/user/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.16/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.16/user/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.16/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.17/user/articles/customizing-css-and-html-in-your-jekyll-theme", - "/de/enterprise/2.17/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.17/user/articles/adding-a-jekyll-theme-to-your-github-pages-site", - "/de/enterprise/2.17/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.13/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.13/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.13/user/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.13/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.13/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.13/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.14/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.14/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.14/user/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.14/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.14/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.14/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.15/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.15/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.15/user/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.15/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.15/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.15/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.16/user/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.16/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.17/user/articles/configuring-a-publishing-source-for-github-pages", - "/de/enterprise/2.17/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.13/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.13/articles/custom-404-pages", - "/de/enterprise/2.13/user/articles/custom-404-pages", - "/de/enterprise/2.13/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.13/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.13/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.14/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.14/articles/custom-404-pages", - "/de/enterprise/2.14/user/articles/custom-404-pages", - "/de/enterprise/2.14/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.14/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.14/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.15/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.15/articles/custom-404-pages", - "/de/enterprise/2.15/user/articles/custom-404-pages", - "/de/enterprise/2.15/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.15/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.15/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/articles/custom-404-pages", - "/de/enterprise/2.16/user/articles/custom-404-pages", - "/de/enterprise/2.16/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/articles/custom-404-pages", - "/de/enterprise/2.17/user/articles/custom-404-pages", - "/de/enterprise/2.17/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.13/user/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.13/articles/creating-pages-manually", - "/de/enterprise/2.13/user/articles/creating-pages-manually", - "/de/enterprise/2.13/articles/creating-project-pages-manually", - "/de/enterprise/2.13/user/articles/creating-project-pages-manually", - "/de/enterprise/2.13/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.13/user/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.13/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.13/user/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.13/articles/creating-a-github-pages-site", - "/de/enterprise/2.13/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.13/github/working-with-github-pages/creating-a-github-pages-site" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.14/user/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.14/articles/creating-pages-manually", - "/de/enterprise/2.14/user/articles/creating-pages-manually", - "/de/enterprise/2.14/articles/creating-project-pages-manually", - "/de/enterprise/2.14/user/articles/creating-project-pages-manually", - "/de/enterprise/2.14/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.14/user/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.14/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.14/user/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.14/articles/creating-a-github-pages-site", - "/de/enterprise/2.14/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.14/github/working-with-github-pages/creating-a-github-pages-site" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.15/user/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.15/articles/creating-pages-manually", - "/de/enterprise/2.15/user/articles/creating-pages-manually", - "/de/enterprise/2.15/articles/creating-project-pages-manually", - "/de/enterprise/2.15/user/articles/creating-project-pages-manually", - "/de/enterprise/2.15/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.15/user/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.15/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.15/user/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.15/articles/creating-a-github-pages-site", - "/de/enterprise/2.15/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.15/github/working-with-github-pages/creating-a-github-pages-site" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.16/articles/creating-pages-manually", - "/de/enterprise/2.16/user/articles/creating-pages-manually", - "/de/enterprise/2.16/articles/creating-project-pages-manually", - "/de/enterprise/2.16/user/articles/creating-project-pages-manually", - "/de/enterprise/2.16/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.16/user/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.16/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.16/user/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.16/articles/creating-a-github-pages-site", - "/de/enterprise/2.16/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-github-pages-site" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.17/articles/creating-pages-manually", - "/de/enterprise/2.17/user/articles/creating-pages-manually", - "/de/enterprise/2.17/articles/creating-project-pages-manually", - "/de/enterprise/2.17/user/articles/creating-project-pages-manually", - "/de/enterprise/2.17/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.17/user/articles/creating-project-pages-from-the-command-line", - "/de/enterprise/2.17/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.17/user/articles/creating-project-pages-using-the-command-line", - "/de/enterprise/2.17/articles/creating-a-github-pages-site", - "/de/enterprise/2.17/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-github-pages-site" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.13/user/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.13/categories/github-pages-basics", - "/de/enterprise/2.13/user/categories/github-pages-basics", - "/de/enterprise/2.13/categories/user-pages-basics", - "/de/enterprise/2.13/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.13/user/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.13/articles/getting-started-with-github-pages", - "/de/enterprise/2.13/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.13/github/working-with-github-pages/getting-started-with-github-pages" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.14/user/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.14/categories/github-pages-basics", - "/de/enterprise/2.14/user/categories/github-pages-basics", - "/de/enterprise/2.14/categories/user-pages-basics", - "/de/enterprise/2.14/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.14/user/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.14/articles/getting-started-with-github-pages", - "/de/enterprise/2.14/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.14/github/working-with-github-pages/getting-started-with-github-pages" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.15/user/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.15/categories/github-pages-basics", - "/de/enterprise/2.15/user/categories/github-pages-basics", - "/de/enterprise/2.15/categories/user-pages-basics", - "/de/enterprise/2.15/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.15/user/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.15/articles/getting-started-with-github-pages", - "/de/enterprise/2.15/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.15/github/working-with-github-pages/getting-started-with-github-pages" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.16/categories/github-pages-basics", - "/de/enterprise/2.16/user/categories/github-pages-basics", - "/de/enterprise/2.16/categories/user-pages-basics", - "/de/enterprise/2.16/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.16/user/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.16/articles/getting-started-with-github-pages", - "/de/enterprise/2.16/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages/getting-started-with-github-pages" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.17/categories/github-pages-basics", - "/de/enterprise/2.17/user/categories/github-pages-basics", - "/de/enterprise/2.17/categories/user-pages-basics", - "/de/enterprise/2.17/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.17/user/articles/additional-customizations-for-github-pages", - "/de/enterprise/2.17/articles/getting-started-with-github-pages", - "/de/enterprise/2.17/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages/getting-started-with-github-pages" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages", - "/de/enterprise/2.13/user/working-with-github-pages", - "/de/enterprise/2.13/categories/20/articles", - "/de/enterprise/2.13/user/categories/20/articles", - "/de/enterprise/2.13/categories/95/articles", - "/de/enterprise/2.13/user/categories/95/articles", - "/de/enterprise/2.13/categories/github-pages-features", - "/de/enterprise/2.13/user/categories/github-pages-features", - "/de/enterprise/2.13/categories/user-pages-features", - "/de/enterprise/2.13/pages", - "/de/enterprise/2.13/user/pages", - "/de/enterprise/2.13/categories/96/articles", - "/de/enterprise/2.13/user/categories/96/articles", - "/de/enterprise/2.13/categories/github-pages-troubleshooting", - "/de/enterprise/2.13/user/categories/github-pages-troubleshooting", - "/de/enterprise/2.13/categories/user-pages-troubleshooting", - "/de/enterprise/2.13/categories/working-with-github-pages", - "/de/enterprise/2.13/user/categories/working-with-github-pages", - "/de/enterprise/2.13/github/working-with-github-pages" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages", - "/de/enterprise/2.14/user/working-with-github-pages", - "/de/enterprise/2.14/categories/20/articles", - "/de/enterprise/2.14/user/categories/20/articles", - "/de/enterprise/2.14/categories/95/articles", - "/de/enterprise/2.14/user/categories/95/articles", - "/de/enterprise/2.14/categories/github-pages-features", - "/de/enterprise/2.14/user/categories/github-pages-features", - "/de/enterprise/2.14/categories/user-pages-features", - "/de/enterprise/2.14/pages", - "/de/enterprise/2.14/user/pages", - "/de/enterprise/2.14/categories/96/articles", - "/de/enterprise/2.14/user/categories/96/articles", - "/de/enterprise/2.14/categories/github-pages-troubleshooting", - "/de/enterprise/2.14/user/categories/github-pages-troubleshooting", - "/de/enterprise/2.14/categories/user-pages-troubleshooting", - "/de/enterprise/2.14/categories/working-with-github-pages", - "/de/enterprise/2.14/user/categories/working-with-github-pages", - "/de/enterprise/2.14/github/working-with-github-pages" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages", - "/de/enterprise/2.15/user/working-with-github-pages", - "/de/enterprise/2.15/categories/20/articles", - "/de/enterprise/2.15/user/categories/20/articles", - "/de/enterprise/2.15/categories/95/articles", - "/de/enterprise/2.15/user/categories/95/articles", - "/de/enterprise/2.15/categories/github-pages-features", - "/de/enterprise/2.15/user/categories/github-pages-features", - "/de/enterprise/2.15/categories/user-pages-features", - "/de/enterprise/2.15/pages", - "/de/enterprise/2.15/user/pages", - "/de/enterprise/2.15/categories/96/articles", - "/de/enterprise/2.15/user/categories/96/articles", - "/de/enterprise/2.15/categories/github-pages-troubleshooting", - "/de/enterprise/2.15/user/categories/github-pages-troubleshooting", - "/de/enterprise/2.15/categories/user-pages-troubleshooting", - "/de/enterprise/2.15/categories/working-with-github-pages", - "/de/enterprise/2.15/user/categories/working-with-github-pages", - "/de/enterprise/2.15/github/working-with-github-pages" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages", - "/de/enterprise/2.16/categories/20/articles", - "/de/enterprise/2.16/user/categories/20/articles", - "/de/enterprise/2.16/categories/95/articles", - "/de/enterprise/2.16/user/categories/95/articles", - "/de/enterprise/2.16/categories/github-pages-features", - "/de/enterprise/2.16/user/categories/github-pages-features", - "/de/enterprise/2.16/categories/user-pages-features", - "/de/enterprise/2.16/pages", - "/de/enterprise/2.16/user/pages", - "/de/enterprise/2.16/categories/96/articles", - "/de/enterprise/2.16/user/categories/96/articles", - "/de/enterprise/2.16/categories/github-pages-troubleshooting", - "/de/enterprise/2.16/user/categories/github-pages-troubleshooting", - "/de/enterprise/2.16/categories/user-pages-troubleshooting", - "/de/enterprise/2.16/categories/working-with-github-pages", - "/de/enterprise/2.16/user/categories/working-with-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages", - "/de/enterprise/2.17/categories/20/articles", - "/de/enterprise/2.17/user/categories/20/articles", - "/de/enterprise/2.17/categories/95/articles", - "/de/enterprise/2.17/user/categories/95/articles", - "/de/enterprise/2.17/categories/github-pages-features", - "/de/enterprise/2.17/user/categories/github-pages-features", - "/de/enterprise/2.17/categories/user-pages-features", - "/de/enterprise/2.17/pages", - "/de/enterprise/2.17/user/pages", - "/de/enterprise/2.17/categories/96/articles", - "/de/enterprise/2.17/user/categories/96/articles", - "/de/enterprise/2.17/categories/github-pages-troubleshooting", - "/de/enterprise/2.17/user/categories/github-pages-troubleshooting", - "/de/enterprise/2.17/categories/user-pages-troubleshooting", - "/de/enterprise/2.17/categories/working-with-github-pages", - "/de/enterprise/2.17/user/categories/working-with-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.13/user/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.13/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.13/user/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.13/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.14/user/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.14/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.14/user/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.14/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.15/user/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.15/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.15/user/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.15/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.16/user/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.16/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.16/user/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.16/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.17/user/articles/migrating-your-pages-site-from-maruku", - "/de/enterprise/2.17/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.17/user/articles/updating-your-markdown-processor-to-kramdown", - "/de/enterprise/2.17/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/articles/using-jekyll-with-pages", - "/de/enterprise/2.13/user/articles/using-jekyll-with-pages", - "/de/enterprise/2.13/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.13/user/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.13/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/articles/using-jekyll-with-pages", - "/de/enterprise/2.14/user/articles/using-jekyll-with-pages", - "/de/enterprise/2.14/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.14/user/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.14/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/articles/using-jekyll-with-pages", - "/de/enterprise/2.15/user/articles/using-jekyll-with-pages", - "/de/enterprise/2.15/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.15/user/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.15/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/articles/using-jekyll-with-pages", - "/de/enterprise/2.16/user/articles/using-jekyll-with-pages", - "/de/enterprise/2.16/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.16/user/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.16/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/articles/using-jekyll-with-pages", - "/de/enterprise/2.17/user/articles/using-jekyll-with-pages", - "/de/enterprise/2.17/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.17/user/articles/using-jekyll-as-a-static-site-generator-with-github-pages", - "/de/enterprise/2.17/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/user/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/user/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.13/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/user/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/user/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.14/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/user/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/user/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/user/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/user/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/user/articles/setting-up-your-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/user/articles/setting-up-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.13/user/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.13/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.13/user/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.13/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.13/user/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.13/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.13/user/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.13/articles/page-build-failed-config-file-error", - "/de/enterprise/2.13/user/articles/page-build-failed-config-file-error", - "/de/enterprise/2.13/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.13/user/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.13/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.13/user/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.13/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.13/user/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.13/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.13/user/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.13/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.13/user/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.13/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.13/user/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.13/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.13/user/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.13/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.13/user/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.13/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.13/user/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.13/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.13/user/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.13/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.13/user/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.13/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.13/user/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.13/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.13/user/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.13/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.13/user/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.13/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.13/user/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.13/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.13/user/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.13/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.13/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.14/user/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.14/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.14/user/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.14/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.14/user/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.14/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.14/user/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.14/articles/page-build-failed-config-file-error", - "/de/enterprise/2.14/user/articles/page-build-failed-config-file-error", - "/de/enterprise/2.14/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.14/user/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.14/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.14/user/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.14/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.14/user/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.14/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.14/user/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.14/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.14/user/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.14/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.14/user/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.14/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.14/user/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.14/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.14/user/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.14/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.14/user/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.14/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.14/user/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.14/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.14/user/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.14/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.14/user/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.14/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.14/user/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.14/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.14/user/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.14/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.14/user/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.14/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.14/user/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.14/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.14/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.15/user/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.15/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.15/user/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.15/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.15/user/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.15/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.15/user/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.15/articles/page-build-failed-config-file-error", - "/de/enterprise/2.15/user/articles/page-build-failed-config-file-error", - "/de/enterprise/2.15/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.15/user/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.15/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.15/user/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.15/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.15/user/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.15/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.15/user/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.15/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.15/user/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.15/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.15/user/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.15/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.15/user/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.15/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.15/user/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.15/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.15/user/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.15/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.15/user/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.15/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.15/user/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.15/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.15/user/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.15/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.15/user/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.15/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.15/user/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.15/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.15/user/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.15/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.15/user/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.15/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.16/user/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.16/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.16/user/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.16/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.16/user/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.16/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.16/user/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.16/articles/page-build-failed-config-file-error", - "/de/enterprise/2.16/user/articles/page-build-failed-config-file-error", - "/de/enterprise/2.16/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.16/user/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.16/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.16/user/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.16/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.16/user/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.16/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.16/user/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.16/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.16/user/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.16/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.16/user/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.16/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.16/user/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.16/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.16/user/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.16/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.16/user/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.16/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.16/user/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.16/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.16/user/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.16/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.16/user/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.16/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.16/user/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.16/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.16/user/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.16/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.16/user/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.16/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.16/user/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.16/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.17/user/articles/page-build-failed-missing-docs-folder", - "/de/enterprise/2.17/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.17/user/articles/page-build-failed-invalid-submodule", - "/de/enterprise/2.17/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.17/user/articles/page-build-failed-missing-submodule", - "/de/enterprise/2.17/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.17/user/articles/page-build-failed-markdown-errors", - "/de/enterprise/2.17/articles/page-build-failed-config-file-error", - "/de/enterprise/2.17/user/articles/page-build-failed-config-file-error", - "/de/enterprise/2.17/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.17/user/articles/page-build-failed-unknown-tag-error", - "/de/enterprise/2.17/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.17/user/articles/page-build-failed-tag-not-properly-terminated", - "/de/enterprise/2.17/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.17/user/articles/page-build-failed-tag-not-properly-closed", - "/de/enterprise/2.17/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.17/user/articles/page-build-failed-file-does-not-exist-in-includes-directory", - "/de/enterprise/2.17/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.17/user/articles/page-build-failed-file-is-a-symlink", - "/de/enterprise/2.17/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.17/user/articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository", - "/de/enterprise/2.17/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.17/user/articles/page-build-failed-file-is-not-properly-utf-8-encoded", - "/de/enterprise/2.17/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.17/user/articles/page-build-failed-invalid-post-date", - "/de/enterprise/2.17/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.17/user/articles/page-build-failed-invalid-sass-or-scss", - "/de/enterprise/2.17/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.17/user/articles/page-build-failed-invalid-highlighter-language", - "/de/enterprise/2.17/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.17/user/articles/page-build-failed-relative-permalinks-configured", - "/de/enterprise/2.17/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.17/user/articles/page-build-failed-syntax-error-in-for-loop", - "/de/enterprise/2.17/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.17/user/articles/page-build-failed-invalid-yaml-in-data-file", - "/de/enterprise/2.17/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.17/user/articles/page-build-failed-date-is-not-a-valid-datetime", - "/de/enterprise/2.17/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.17/user/articles/troubleshooting-github-pages-builds", - "/de/enterprise/2.17/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.17/user/articles/troubleshooting-jekyll-builds", - "/de/enterprise/2.17/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites" - ], - [ - "/de/enterprise/2.13/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.13/user/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.13/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.13/user/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.13/articles/unpublishing-a-project-page", - "/de/enterprise/2.13/user/articles/unpublishing-a-project-page", - "/de/enterprise/2.13/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.13/user/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.13/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.13/user/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.13/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.13/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.13/github/working-with-github-pages/unpublishing-a-github-pages-site" - ], - [ - "/de/enterprise/2.14/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.14/user/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.14/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.14/user/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.14/articles/unpublishing-a-project-page", - "/de/enterprise/2.14/user/articles/unpublishing-a-project-page", - "/de/enterprise/2.14/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.14/user/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.14/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.14/user/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.14/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.14/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.14/github/working-with-github-pages/unpublishing-a-github-pages-site" - ], - [ - "/de/enterprise/2.15/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.15/user/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.15/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.15/user/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.15/articles/unpublishing-a-project-page", - "/de/enterprise/2.15/user/articles/unpublishing-a-project-page", - "/de/enterprise/2.15/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.15/user/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.15/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.15/user/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.15/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.15/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.15/github/working-with-github-pages/unpublishing-a-github-pages-site" - ], - [ - "/de/enterprise/2.16/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.16/user/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.16/articles/unpublishing-a-project-page", - "/de/enterprise/2.16/user/articles/unpublishing-a-project-page", - "/de/enterprise/2.16/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.16/user/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.16/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.16/user/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.16/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/unpublishing-a-github-pages-site" - ], - [ - "/de/enterprise/2.17/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.17/user/articles/how-do-i-unpublish-a-project-page", - "/de/enterprise/2.17/articles/unpublishing-a-project-page", - "/de/enterprise/2.17/user/articles/unpublishing-a-project-page", - "/de/enterprise/2.17/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.17/user/articles/unpublishing-a-project-pages-site", - "/de/enterprise/2.17/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.17/user/articles/unpublishing-a-user-pages-site", - "/de/enterprise/2.17/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/unpublishing-a-github-pages-site" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.13/user/writing-on-github/about-saved-replies", - "/de/enterprise/2.13/articles/about-saved-replies", - "/de/enterprise/2.13/user/articles/about-saved-replies", - "/de/enterprise/2.13/github/writing-on-github/about-saved-replies" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.14/user/writing-on-github/about-saved-replies", - "/de/enterprise/2.14/articles/about-saved-replies", - "/de/enterprise/2.14/user/articles/about-saved-replies", - "/de/enterprise/2.14/github/writing-on-github/about-saved-replies" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.15/user/writing-on-github/about-saved-replies", - "/de/enterprise/2.15/articles/about-saved-replies", - "/de/enterprise/2.15/user/articles/about-saved-replies", - "/de/enterprise/2.15/github/writing-on-github/about-saved-replies" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.16/user/writing-on-github/about-saved-replies", - "/de/enterprise/2.16/articles/about-saved-replies", - "/de/enterprise/2.16/user/articles/about-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/about-saved-replies" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.17/user/writing-on-github/about-saved-replies", - "/de/enterprise/2.17/articles/about-saved-replies", - "/de/enterprise/2.17/user/articles/about-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/about-saved-replies" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.13/user/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.13/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.13/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.13/github/writing-on-github/about-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.14/user/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.14/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.14/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.14/github/writing-on-github/about-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.15/user/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.15/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.15/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.15/github/writing-on-github/about-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/github/writing-on-github/about-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/github/writing-on-github/about-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.13/user/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.13/articles/autolinked-references-and-urls", - "/de/enterprise/2.13/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.13/github/writing-on-github/autolinked-references-and-urls" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.14/user/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.14/articles/autolinked-references-and-urls", - "/de/enterprise/2.14/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.14/github/writing-on-github/autolinked-references-and-urls" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.15/user/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.15/articles/autolinked-references-and-urls", - "/de/enterprise/2.15/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.15/github/writing-on-github/autolinked-references-and-urls" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.16/user/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.16/articles/autolinked-references-and-urls", - "/de/enterprise/2.16/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.16/github/writing-on-github/autolinked-references-and-urls" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.17/user/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.17/articles/autolinked-references-and-urls", - "/de/enterprise/2.17/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.17/github/writing-on-github/autolinked-references-and-urls" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.13/user/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.13/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.13/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.13/github/writing-on-github/basic-writing-and-formatting-syntax" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.14/user/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.14/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.14/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.14/github/writing-on-github/basic-writing-and-formatting-syntax" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.15/user/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.15/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.15/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.15/github/writing-on-github/basic-writing-and-formatting-syntax" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/user/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/github/writing-on-github/basic-writing-and-formatting-syntax" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/user/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/github/writing-on-github/basic-writing-and-formatting-syntax" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.13/user/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.13/articles/creating-a-saved-reply", - "/de/enterprise/2.13/user/articles/creating-a-saved-reply", - "/de/enterprise/2.13/github/writing-on-github/creating-a-saved-reply" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.14/user/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.14/articles/creating-a-saved-reply", - "/de/enterprise/2.14/user/articles/creating-a-saved-reply", - "/de/enterprise/2.14/github/writing-on-github/creating-a-saved-reply" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.15/user/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.15/articles/creating-a-saved-reply", - "/de/enterprise/2.15/user/articles/creating-a-saved-reply", - "/de/enterprise/2.15/github/writing-on-github/creating-a-saved-reply" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.16/articles/creating-a-saved-reply", - "/de/enterprise/2.16/user/articles/creating-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/creating-a-saved-reply" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.17/articles/creating-a-saved-reply", - "/de/enterprise/2.17/user/articles/creating-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/creating-a-saved-reply" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.13/user/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.13/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.13/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.13/github/writing-on-github/creating-and-highlighting-code-blocks" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.14/user/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.14/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.14/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.14/github/writing-on-github/creating-and-highlighting-code-blocks" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.15/user/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.15/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.15/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.15/github/writing-on-github/creating-and-highlighting-code-blocks" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/user/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/github/writing-on-github/creating-and-highlighting-code-blocks" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/user/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/github/writing-on-github/creating-and-highlighting-code-blocks" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.13/user/writing-on-github/creating-gists", - "/de/enterprise/2.13/articles/about-gists", - "/de/enterprise/2.13/user/articles/about-gists", - "/de/enterprise/2.13/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.13/user/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.13/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.13/user/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.13/articles/creating-gists", - "/de/enterprise/2.13/user/articles/creating-gists", - "/de/enterprise/2.13/github/writing-on-github/creating-gists" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.14/user/writing-on-github/creating-gists", - "/de/enterprise/2.14/articles/about-gists", - "/de/enterprise/2.14/user/articles/about-gists", - "/de/enterprise/2.14/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.14/user/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.14/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.14/user/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.14/articles/creating-gists", - "/de/enterprise/2.14/user/articles/creating-gists", - "/de/enterprise/2.14/github/writing-on-github/creating-gists" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.15/user/writing-on-github/creating-gists", - "/de/enterprise/2.15/articles/about-gists", - "/de/enterprise/2.15/user/articles/about-gists", - "/de/enterprise/2.15/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.15/user/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.15/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.15/user/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.15/articles/creating-gists", - "/de/enterprise/2.15/user/articles/creating-gists", - "/de/enterprise/2.15/github/writing-on-github/creating-gists" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.16/user/writing-on-github/creating-gists", - "/de/enterprise/2.16/articles/about-gists", - "/de/enterprise/2.16/user/articles/about-gists", - "/de/enterprise/2.16/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.16/user/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.16/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.16/user/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.16/articles/creating-gists", - "/de/enterprise/2.16/user/articles/creating-gists", - "/de/enterprise/2.16/github/writing-on-github/creating-gists" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.17/user/writing-on-github/creating-gists", - "/de/enterprise/2.17/articles/about-gists", - "/de/enterprise/2.17/user/articles/about-gists", - "/de/enterprise/2.17/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.17/user/articles/cannot-delete-an-anonymous-gist", - "/de/enterprise/2.17/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.17/user/articles/deleting-an-anonymous-gist", - "/de/enterprise/2.17/articles/creating-gists", - "/de/enterprise/2.17/user/articles/creating-gists", - "/de/enterprise/2.17/github/writing-on-github/creating-gists" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.13/user/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.13/articles/deleting-a-saved-reply", - "/de/enterprise/2.13/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.13/github/writing-on-github/deleting-a-saved-reply" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.14/user/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.14/articles/deleting-a-saved-reply", - "/de/enterprise/2.14/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.14/github/writing-on-github/deleting-a-saved-reply" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.15/user/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.15/articles/deleting-a-saved-reply", - "/de/enterprise/2.15/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.15/github/writing-on-github/deleting-a-saved-reply" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.16/articles/deleting-a-saved-reply", - "/de/enterprise/2.16/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/deleting-a-saved-reply" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.17/articles/deleting-a-saved-reply", - "/de/enterprise/2.17/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/deleting-a-saved-reply" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.13/user/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.13/articles/changing-a-saved-reply", - "/de/enterprise/2.13/user/articles/changing-a-saved-reply", - "/de/enterprise/2.13/articles/editing-a-saved-reply", - "/de/enterprise/2.13/user/articles/editing-a-saved-reply", - "/de/enterprise/2.13/github/writing-on-github/editing-a-saved-reply" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.14/user/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.14/articles/changing-a-saved-reply", - "/de/enterprise/2.14/user/articles/changing-a-saved-reply", - "/de/enterprise/2.14/articles/editing-a-saved-reply", - "/de/enterprise/2.14/user/articles/editing-a-saved-reply", - "/de/enterprise/2.14/github/writing-on-github/editing-a-saved-reply" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.15/user/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.15/articles/changing-a-saved-reply", - "/de/enterprise/2.15/user/articles/changing-a-saved-reply", - "/de/enterprise/2.15/articles/editing-a-saved-reply", - "/de/enterprise/2.15/user/articles/editing-a-saved-reply", - "/de/enterprise/2.15/github/writing-on-github/editing-a-saved-reply" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.16/articles/changing-a-saved-reply", - "/de/enterprise/2.16/user/articles/changing-a-saved-reply", - "/de/enterprise/2.16/articles/editing-a-saved-reply", - "/de/enterprise/2.16/user/articles/editing-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/editing-a-saved-reply" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.17/articles/changing-a-saved-reply", - "/de/enterprise/2.17/user/articles/changing-a-saved-reply", - "/de/enterprise/2.17/articles/editing-a-saved-reply", - "/de/enterprise/2.17/user/articles/editing-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/editing-a-saved-reply" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.13/user/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.13/categories/23/articles", - "/de/enterprise/2.13/user/categories/23/articles", - "/de/enterprise/2.13/categories/gists", - "/de/enterprise/2.13/user/categories/gists", - "/de/enterprise/2.13/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.13/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.13/github/writing-on-github/editing-and-sharing-content-with-gists" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.14/user/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.14/categories/23/articles", - "/de/enterprise/2.14/user/categories/23/articles", - "/de/enterprise/2.14/categories/gists", - "/de/enterprise/2.14/user/categories/gists", - "/de/enterprise/2.14/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.14/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.14/github/writing-on-github/editing-and-sharing-content-with-gists" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.15/user/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.15/categories/23/articles", - "/de/enterprise/2.15/user/categories/23/articles", - "/de/enterprise/2.15/categories/gists", - "/de/enterprise/2.15/user/categories/gists", - "/de/enterprise/2.15/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.15/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.15/github/writing-on-github/editing-and-sharing-content-with-gists" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/user/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/categories/23/articles", - "/de/enterprise/2.16/user/categories/23/articles", - "/de/enterprise/2.16/categories/gists", - "/de/enterprise/2.16/user/categories/gists", - "/de/enterprise/2.16/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/github/writing-on-github/editing-and-sharing-content-with-gists" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/user/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/categories/23/articles", - "/de/enterprise/2.17/user/categories/23/articles", - "/de/enterprise/2.17/categories/gists", - "/de/enterprise/2.17/user/categories/gists", - "/de/enterprise/2.17/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/github/writing-on-github/editing-and-sharing-content-with-gists" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.13/user/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.13/articles/forking-and-cloning-gists", - "/de/enterprise/2.13/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.13/github/writing-on-github/forking-and-cloning-gists" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.14/user/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.14/articles/forking-and-cloning-gists", - "/de/enterprise/2.14/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.14/github/writing-on-github/forking-and-cloning-gists" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.15/user/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.15/articles/forking-and-cloning-gists", - "/de/enterprise/2.15/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.15/github/writing-on-github/forking-and-cloning-gists" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.16/user/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.16/articles/forking-and-cloning-gists", - "/de/enterprise/2.16/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.16/github/writing-on-github/forking-and-cloning-gists" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.17/user/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.17/articles/forking-and-cloning-gists", - "/de/enterprise/2.17/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.17/github/writing-on-github/forking-and-cloning-gists" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.13/user/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.13/articles/markdown-basics", - "/de/enterprise/2.13/user/articles/markdown-basics", - "/de/enterprise/2.13/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.13/user/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.13/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.13/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.13/github/writing-on-github/getting-started-with-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.14/user/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.14/articles/markdown-basics", - "/de/enterprise/2.14/user/articles/markdown-basics", - "/de/enterprise/2.14/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.14/user/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.14/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.14/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.14/github/writing-on-github/getting-started-with-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.15/user/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.15/articles/markdown-basics", - "/de/enterprise/2.15/user/articles/markdown-basics", - "/de/enterprise/2.15/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.15/user/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.15/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.15/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.15/github/writing-on-github/getting-started-with-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/articles/markdown-basics", - "/de/enterprise/2.16/user/articles/markdown-basics", - "/de/enterprise/2.16/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.16/user/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.16/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/github/writing-on-github/getting-started-with-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/articles/markdown-basics", - "/de/enterprise/2.17/user/articles/markdown-basics", - "/de/enterprise/2.17/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.17/user/articles/things-you-can-do-in-a-text-area-on-github", - "/de/enterprise/2.17/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/github/writing-on-github/getting-started-with-writing-and-formatting-on-github" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github", - "/de/enterprise/2.13/user/writing-on-github", - "/de/enterprise/2.13/categories/88/articles", - "/de/enterprise/2.13/user/categories/88/articles", - "/de/enterprise/2.13/articles/github-flavored-markdown", - "/de/enterprise/2.13/user/articles/github-flavored-markdown", - "/de/enterprise/2.13/articles/user-flavored-markdown", - "/de/enterprise/2.13/articles/writing-on-github", - "/de/enterprise/2.13/user/articles/writing-on-github", - "/de/enterprise/2.13/categories/writing-on-github", - "/de/enterprise/2.13/user/categories/writing-on-github", - "/de/enterprise/2.13/github/writing-on-github" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github", - "/de/enterprise/2.14/user/writing-on-github", - "/de/enterprise/2.14/categories/88/articles", - "/de/enterprise/2.14/user/categories/88/articles", - "/de/enterprise/2.14/articles/github-flavored-markdown", - "/de/enterprise/2.14/user/articles/github-flavored-markdown", - "/de/enterprise/2.14/articles/user-flavored-markdown", - "/de/enterprise/2.14/articles/writing-on-github", - "/de/enterprise/2.14/user/articles/writing-on-github", - "/de/enterprise/2.14/categories/writing-on-github", - "/de/enterprise/2.14/user/categories/writing-on-github", - "/de/enterprise/2.14/github/writing-on-github" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github", - "/de/enterprise/2.15/user/writing-on-github", - "/de/enterprise/2.15/categories/88/articles", - "/de/enterprise/2.15/user/categories/88/articles", - "/de/enterprise/2.15/articles/github-flavored-markdown", - "/de/enterprise/2.15/user/articles/github-flavored-markdown", - "/de/enterprise/2.15/articles/user-flavored-markdown", - "/de/enterprise/2.15/articles/writing-on-github", - "/de/enterprise/2.15/user/articles/writing-on-github", - "/de/enterprise/2.15/categories/writing-on-github", - "/de/enterprise/2.15/user/categories/writing-on-github", - "/de/enterprise/2.15/github/writing-on-github" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github", - "/de/enterprise/2.16/user/writing-on-github", - "/de/enterprise/2.16/categories/88/articles", - "/de/enterprise/2.16/user/categories/88/articles", - "/de/enterprise/2.16/articles/github-flavored-markdown", - "/de/enterprise/2.16/user/articles/github-flavored-markdown", - "/de/enterprise/2.16/articles/user-flavored-markdown", - "/de/enterprise/2.16/articles/writing-on-github", - "/de/enterprise/2.16/user/articles/writing-on-github", - "/de/enterprise/2.16/categories/writing-on-github", - "/de/enterprise/2.16/user/categories/writing-on-github", - "/de/enterprise/2.16/github/writing-on-github" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github", - "/de/enterprise/2.17/user/writing-on-github", - "/de/enterprise/2.17/categories/88/articles", - "/de/enterprise/2.17/user/categories/88/articles", - "/de/enterprise/2.17/articles/github-flavored-markdown", - "/de/enterprise/2.17/user/articles/github-flavored-markdown", - "/de/enterprise/2.17/articles/user-flavored-markdown", - "/de/enterprise/2.17/articles/writing-on-github", - "/de/enterprise/2.17/user/articles/writing-on-github", - "/de/enterprise/2.17/categories/writing-on-github", - "/de/enterprise/2.17/user/categories/writing-on-github", - "/de/enterprise/2.17/github/writing-on-github" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.13/user/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.13/articles/organizing-information-with-tables", - "/de/enterprise/2.13/user/articles/organizing-information-with-tables", - "/de/enterprise/2.13/github/writing-on-github/organizing-information-with-tables" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.14/user/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.14/articles/organizing-information-with-tables", - "/de/enterprise/2.14/user/articles/organizing-information-with-tables", - "/de/enterprise/2.14/github/writing-on-github/organizing-information-with-tables" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.15/user/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.15/articles/organizing-information-with-tables", - "/de/enterprise/2.15/user/articles/organizing-information-with-tables", - "/de/enterprise/2.15/github/writing-on-github/organizing-information-with-tables" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.16/user/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.16/articles/organizing-information-with-tables", - "/de/enterprise/2.16/user/articles/organizing-information-with-tables", - "/de/enterprise/2.16/github/writing-on-github/organizing-information-with-tables" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.17/user/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.17/articles/organizing-information-with-tables", - "/de/enterprise/2.17/user/articles/organizing-information-with-tables", - "/de/enterprise/2.17/github/writing-on-github/organizing-information-with-tables" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.13/user/writing-on-github/using-saved-replies", - "/de/enterprise/2.13/articles/using-saved-replies", - "/de/enterprise/2.13/user/articles/using-saved-replies", - "/de/enterprise/2.13/github/writing-on-github/using-saved-replies" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.14/user/writing-on-github/using-saved-replies", - "/de/enterprise/2.14/articles/using-saved-replies", - "/de/enterprise/2.14/user/articles/using-saved-replies", - "/de/enterprise/2.14/github/writing-on-github/using-saved-replies" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.15/user/writing-on-github/using-saved-replies", - "/de/enterprise/2.15/articles/using-saved-replies", - "/de/enterprise/2.15/user/articles/using-saved-replies", - "/de/enterprise/2.15/github/writing-on-github/using-saved-replies" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.16/user/writing-on-github/using-saved-replies", - "/de/enterprise/2.16/articles/using-saved-replies", - "/de/enterprise/2.16/user/articles/using-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/using-saved-replies" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.17/user/writing-on-github/using-saved-replies", - "/de/enterprise/2.17/articles/using-saved-replies", - "/de/enterprise/2.17/user/articles/using-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/using-saved-replies" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.13/user/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.13/articles/working-with-advanced-formatting", - "/de/enterprise/2.13/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.13/github/writing-on-github/working-with-advanced-formatting" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.14/user/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.14/articles/working-with-advanced-formatting", - "/de/enterprise/2.14/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.14/github/writing-on-github/working-with-advanced-formatting" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.15/user/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.15/articles/working-with-advanced-formatting", - "/de/enterprise/2.15/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.15/github/writing-on-github/working-with-advanced-formatting" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.16/user/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.16/articles/working-with-advanced-formatting", - "/de/enterprise/2.16/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.16/github/writing-on-github/working-with-advanced-formatting" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.17/user/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.17/articles/working-with-advanced-formatting", - "/de/enterprise/2.17/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.17/github/writing-on-github/working-with-advanced-formatting" - ], - [ - "/de/enterprise/2.13/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.13/user/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.13/articles/working-with-saved-replies", - "/de/enterprise/2.13/user/articles/working-with-saved-replies", - "/de/enterprise/2.13/github/writing-on-github/working-with-saved-replies" - ], - [ - "/de/enterprise/2.14/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.14/user/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.14/articles/working-with-saved-replies", - "/de/enterprise/2.14/user/articles/working-with-saved-replies", - "/de/enterprise/2.14/github/writing-on-github/working-with-saved-replies" - ], - [ - "/de/enterprise/2.15/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.15/user/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.15/articles/working-with-saved-replies", - "/de/enterprise/2.15/user/articles/working-with-saved-replies", - "/de/enterprise/2.15/github/writing-on-github/working-with-saved-replies" - ], - [ - "/de/enterprise/2.16/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.16/user/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.16/articles/working-with-saved-replies", - "/de/enterprise/2.16/user/articles/working-with-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/working-with-saved-replies" - ], - [ - "/de/enterprise/2.17/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.17/user/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.17/articles/working-with-saved-replies", - "/de/enterprise/2.17/user/articles/working-with-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/working-with-saved-replies" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.13/v4/guides/forming-calls", - "/de/enterprise/2.13/user/v4/guides/forming-calls", - "/de/enterprise/2.13/graphql/guides/forming-calls", - "/de/enterprise/2.13/user/graphql/guides/forming-calls", - "/de/enterprise/2.13/graphql/guides/forming-calls-with-graphql" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.14/v4/guides/forming-calls", - "/de/enterprise/2.14/user/v4/guides/forming-calls", - "/de/enterprise/2.14/graphql/guides/forming-calls", - "/de/enterprise/2.14/user/graphql/guides/forming-calls", - "/de/enterprise/2.14/graphql/guides/forming-calls-with-graphql" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.15/v4/guides/forming-calls", - "/de/enterprise/2.15/user/v4/guides/forming-calls", - "/de/enterprise/2.15/graphql/guides/forming-calls", - "/de/enterprise/2.15/user/graphql/guides/forming-calls", - "/de/enterprise/2.15/graphql/guides/forming-calls-with-graphql" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.16/v4/guides/forming-calls", - "/de/enterprise/2.16/user/v4/guides/forming-calls", - "/de/enterprise/2.16/graphql/guides/forming-calls", - "/de/enterprise/2.16/user/graphql/guides/forming-calls", - "/de/enterprise/2.16/graphql/guides/forming-calls-with-graphql" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.17/v4/guides/forming-calls", - "/de/enterprise/2.17/user/v4/guides/forming-calls", - "/de/enterprise/2.17/graphql/guides/forming-calls", - "/de/enterprise/2.17/user/graphql/guides/forming-calls", - "/de/enterprise/2.17/graphql/guides/forming-calls-with-graphql" - ], - [ - "/de/enterprise/2.13/user/graphql/guides", - "/de/enterprise/2.13/v4/guides", - "/de/enterprise/2.13/user/v4/guides", - "/de/enterprise/2.13/graphql/guides" - ], - [ - "/de/enterprise/2.14/user/graphql/guides", - "/de/enterprise/2.14/v4/guides", - "/de/enterprise/2.14/user/v4/guides", - "/de/enterprise/2.14/graphql/guides" - ], - [ - "/de/enterprise/2.15/user/graphql/guides", - "/de/enterprise/2.15/v4/guides", - "/de/enterprise/2.15/user/v4/guides", - "/de/enterprise/2.15/graphql/guides" - ], - [ - "/de/enterprise/2.16/user/graphql/guides", - "/de/enterprise/2.16/v4/guides", - "/de/enterprise/2.16/user/v4/guides", - "/de/enterprise/2.16/graphql/guides" - ], - [ - "/de/enterprise/2.17/user/graphql/guides", - "/de/enterprise/2.17/v4/guides", - "/de/enterprise/2.17/user/v4/guides", - "/de/enterprise/2.17/graphql/guides" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.13/v4/guides/intro-to-graphql", - "/de/enterprise/2.13/user/v4/guides/intro-to-graphql", - "/de/enterprise/2.13/graphql/guides/intro-to-graphql", - "/de/enterprise/2.13/user/graphql/guides/intro-to-graphql", - "/de/enterprise/2.13/graphql/guides/introduction-to-graphql" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.14/v4/guides/intro-to-graphql", - "/de/enterprise/2.14/user/v4/guides/intro-to-graphql", - "/de/enterprise/2.14/graphql/guides/intro-to-graphql", - "/de/enterprise/2.14/user/graphql/guides/intro-to-graphql", - "/de/enterprise/2.14/graphql/guides/introduction-to-graphql" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.15/v4/guides/intro-to-graphql", - "/de/enterprise/2.15/user/v4/guides/intro-to-graphql", - "/de/enterprise/2.15/graphql/guides/intro-to-graphql", - "/de/enterprise/2.15/user/graphql/guides/intro-to-graphql", - "/de/enterprise/2.15/graphql/guides/introduction-to-graphql" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.16/v4/guides/intro-to-graphql", - "/de/enterprise/2.16/user/v4/guides/intro-to-graphql", - "/de/enterprise/2.16/graphql/guides/intro-to-graphql", - "/de/enterprise/2.16/user/graphql/guides/intro-to-graphql", - "/de/enterprise/2.16/graphql/guides/introduction-to-graphql" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.17/v4/guides/intro-to-graphql", - "/de/enterprise/2.17/user/v4/guides/intro-to-graphql", - "/de/enterprise/2.17/graphql/guides/intro-to-graphql", - "/de/enterprise/2.17/user/graphql/guides/intro-to-graphql", - "/de/enterprise/2.17/graphql/guides/introduction-to-graphql" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.13/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.13/user/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.13/graphql/guides/managing-enterprise-accounts" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.14/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.14/user/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.14/graphql/guides/managing-enterprise-accounts" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.15/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.15/user/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.15/graphql/guides/managing-enterprise-accounts" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.16/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.16/user/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.16/graphql/guides/managing-enterprise-accounts" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.17/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.17/user/v4/guides/managing-enterprise-accounts", - "/de/enterprise/2.17/graphql/guides/managing-enterprise-accounts" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.13/v4/guides/migrating-from-rest", - "/de/enterprise/2.13/user/v4/guides/migrating-from-rest", - "/de/enterprise/2.13/graphql/guides/migrating-from-rest", - "/de/enterprise/2.13/user/graphql/guides/migrating-from-rest", - "/de/enterprise/2.13/graphql/guides/migrating-from-rest-to-graphql" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.14/v4/guides/migrating-from-rest", - "/de/enterprise/2.14/user/v4/guides/migrating-from-rest", - "/de/enterprise/2.14/graphql/guides/migrating-from-rest", - "/de/enterprise/2.14/user/graphql/guides/migrating-from-rest", - "/de/enterprise/2.14/graphql/guides/migrating-from-rest-to-graphql" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.15/v4/guides/migrating-from-rest", - "/de/enterprise/2.15/user/v4/guides/migrating-from-rest", - "/de/enterprise/2.15/graphql/guides/migrating-from-rest", - "/de/enterprise/2.15/user/graphql/guides/migrating-from-rest", - "/de/enterprise/2.15/graphql/guides/migrating-from-rest-to-graphql" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.16/v4/guides/migrating-from-rest", - "/de/enterprise/2.16/user/v4/guides/migrating-from-rest", - "/de/enterprise/2.16/graphql/guides/migrating-from-rest", - "/de/enterprise/2.16/user/graphql/guides/migrating-from-rest", - "/de/enterprise/2.16/graphql/guides/migrating-from-rest-to-graphql" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.17/v4/guides/migrating-from-rest", - "/de/enterprise/2.17/user/v4/guides/migrating-from-rest", - "/de/enterprise/2.17/graphql/guides/migrating-from-rest", - "/de/enterprise/2.17/user/graphql/guides/migrating-from-rest", - "/de/enterprise/2.17/graphql/guides/migrating-from-rest-to-graphql" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.13/v4/guides/using-global-node-ids", - "/de/enterprise/2.13/user/v4/guides/using-global-node-ids", - "/de/enterprise/2.13/graphql/guides/using-global-node-ids" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.14/v4/guides/using-global-node-ids", - "/de/enterprise/2.14/user/v4/guides/using-global-node-ids", - "/de/enterprise/2.14/graphql/guides/using-global-node-ids" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.15/v4/guides/using-global-node-ids", - "/de/enterprise/2.15/user/v4/guides/using-global-node-ids", - "/de/enterprise/2.15/graphql/guides/using-global-node-ids" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.16/v4/guides/using-global-node-ids", - "/de/enterprise/2.16/user/v4/guides/using-global-node-ids", - "/de/enterprise/2.16/graphql/guides/using-global-node-ids" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.17/v4/guides/using-global-node-ids", - "/de/enterprise/2.17/user/v4/guides/using-global-node-ids", - "/de/enterprise/2.17/graphql/guides/using-global-node-ids" - ], - [ - "/de/enterprise/2.13/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.13/v4/guides/using-the-explorer", - "/de/enterprise/2.13/user/v4/guides/using-the-explorer", - "/de/enterprise/2.13/graphql/guides/using-the-explorer" - ], - [ - "/de/enterprise/2.14/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.14/v4/guides/using-the-explorer", - "/de/enterprise/2.14/user/v4/guides/using-the-explorer", - "/de/enterprise/2.14/graphql/guides/using-the-explorer" - ], - [ - "/de/enterprise/2.15/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.15/v4/guides/using-the-explorer", - "/de/enterprise/2.15/user/v4/guides/using-the-explorer", - "/de/enterprise/2.15/graphql/guides/using-the-explorer" - ], - [ - "/de/enterprise/2.16/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.16/v4/guides/using-the-explorer", - "/de/enterprise/2.16/user/v4/guides/using-the-explorer", - "/de/enterprise/2.16/graphql/guides/using-the-explorer" - ], - [ - "/de/enterprise/2.17/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.17/v4/guides/using-the-explorer", - "/de/enterprise/2.17/user/v4/guides/using-the-explorer", - "/de/enterprise/2.17/graphql/guides/using-the-explorer" - ], - [ - "/de/enterprise/2.13/user/graphql", - "/de/enterprise/2.13/v4", - "/de/enterprise/2.13/user/v4", - "/de/enterprise/2.13/graphql" - ], - [ - "/de/enterprise/2.14/user/graphql", - "/de/enterprise/2.14/v4", - "/de/enterprise/2.14/user/v4", - "/de/enterprise/2.14/graphql" - ], - [ - "/de/enterprise/2.15/user/graphql", - "/de/enterprise/2.15/v4", - "/de/enterprise/2.15/user/v4", - "/de/enterprise/2.15/graphql" - ], - [ - "/de/enterprise/2.16/user/graphql", - "/de/enterprise/2.16/v4", - "/de/enterprise/2.16/user/v4", - "/de/enterprise/2.16/graphql" - ], - [ - "/de/enterprise/2.17/user/graphql", - "/de/enterprise/2.17/v4", - "/de/enterprise/2.17/user/v4", - "/de/enterprise/2.17/graphql" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.13/graphql/overview/about-the-graphql-api" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.14/graphql/overview/about-the-graphql-api" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.15/graphql/overview/about-the-graphql-api" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.16/graphql/overview/about-the-graphql-api" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.17/graphql/overview/about-the-graphql-api" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/breaking-changes", - "/de/enterprise/2.13/v4/breaking_changes", - "/de/enterprise/2.13/user/v4/breaking_changes", - "/de/enterprise/2.13/graphql/overview/breaking-changes" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/breaking-changes", - "/de/enterprise/2.14/v4/breaking_changes", - "/de/enterprise/2.14/user/v4/breaking_changes", - "/de/enterprise/2.14/graphql/overview/breaking-changes" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/breaking-changes", - "/de/enterprise/2.15/v4/breaking_changes", - "/de/enterprise/2.15/user/v4/breaking_changes", - "/de/enterprise/2.15/graphql/overview/breaking-changes" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/breaking-changes", - "/de/enterprise/2.16/v4/breaking_changes", - "/de/enterprise/2.16/user/v4/breaking_changes", - "/de/enterprise/2.16/graphql/overview/breaking-changes" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/breaking-changes", - "/de/enterprise/2.17/v4/breaking_changes", - "/de/enterprise/2.17/user/v4/breaking_changes", - "/de/enterprise/2.17/graphql/overview/breaking-changes" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/changelog", - "/de/enterprise/2.13/v4/changelog", - "/de/enterprise/2.13/user/v4/changelog", - "/de/enterprise/2.13/graphql/overview/changelog" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/changelog", - "/de/enterprise/2.14/v4/changelog", - "/de/enterprise/2.14/user/v4/changelog", - "/de/enterprise/2.14/graphql/overview/changelog" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/changelog", - "/de/enterprise/2.15/v4/changelog", - "/de/enterprise/2.15/user/v4/changelog", - "/de/enterprise/2.15/graphql/overview/changelog" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/changelog", - "/de/enterprise/2.16/v4/changelog", - "/de/enterprise/2.16/user/v4/changelog", - "/de/enterprise/2.16/graphql/overview/changelog" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/changelog", - "/de/enterprise/2.17/v4/changelog", - "/de/enterprise/2.17/user/v4/changelog", - "/de/enterprise/2.17/graphql/overview/changelog" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/explorer", - "/de/enterprise/2.13/v4/explorer", - "/de/enterprise/2.13/user/v4/explorer", - "/de/enterprise/2.13/v4/explorer-new", - "/de/enterprise/2.13/user/v4/explorer-new", - "/de/enterprise/2.13/graphql/overview/explorer" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/explorer", - "/de/enterprise/2.14/v4/explorer", - "/de/enterprise/2.14/user/v4/explorer", - "/de/enterprise/2.14/v4/explorer-new", - "/de/enterprise/2.14/user/v4/explorer-new", - "/de/enterprise/2.14/graphql/overview/explorer" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/explorer", - "/de/enterprise/2.15/v4/explorer", - "/de/enterprise/2.15/user/v4/explorer", - "/de/enterprise/2.15/v4/explorer-new", - "/de/enterprise/2.15/user/v4/explorer-new", - "/de/enterprise/2.15/graphql/overview/explorer" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/explorer", - "/de/enterprise/2.16/v4/explorer", - "/de/enterprise/2.16/user/v4/explorer", - "/de/enterprise/2.16/v4/explorer-new", - "/de/enterprise/2.16/user/v4/explorer-new", - "/de/enterprise/2.16/graphql/overview/explorer" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/explorer", - "/de/enterprise/2.17/v4/explorer", - "/de/enterprise/2.17/user/v4/explorer", - "/de/enterprise/2.17/v4/explorer-new", - "/de/enterprise/2.17/user/v4/explorer-new", - "/de/enterprise/2.17/graphql/overview/explorer" - ], - [ - "/de/enterprise/2.13/user/graphql/overview", - "/de/enterprise/2.13/graphql/overview" - ], - [ - "/de/enterprise/2.14/user/graphql/overview", - "/de/enterprise/2.14/graphql/overview" - ], - [ - "/de/enterprise/2.15/user/graphql/overview", - "/de/enterprise/2.15/graphql/overview" - ], - [ - "/de/enterprise/2.16/user/graphql/overview", - "/de/enterprise/2.16/graphql/overview" - ], - [ - "/de/enterprise/2.17/user/graphql/overview", - "/de/enterprise/2.17/graphql/overview" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/public-schema", - "/de/enterprise/2.13/v4/public_schema", - "/de/enterprise/2.13/user/v4/public_schema", - "/de/enterprise/2.13/graphql/overview/public-schema" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/public-schema", - "/de/enterprise/2.14/v4/public_schema", - "/de/enterprise/2.14/user/v4/public_schema", - "/de/enterprise/2.14/graphql/overview/public-schema" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/public-schema", - "/de/enterprise/2.15/v4/public_schema", - "/de/enterprise/2.15/user/v4/public_schema", - "/de/enterprise/2.15/graphql/overview/public-schema" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/public-schema", - "/de/enterprise/2.16/v4/public_schema", - "/de/enterprise/2.16/user/v4/public_schema", - "/de/enterprise/2.16/graphql/overview/public-schema" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/public-schema", - "/de/enterprise/2.17/v4/public_schema", - "/de/enterprise/2.17/user/v4/public_schema", - "/de/enterprise/2.17/graphql/overview/public-schema" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/resource-limitations", - "/de/enterprise/2.13/v4/guides/resource-limitations", - "/de/enterprise/2.13/user/v4/guides/resource-limitations", - "/de/enterprise/2.13/graphql/overview/resource-limitations" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/resource-limitations", - "/de/enterprise/2.14/v4/guides/resource-limitations", - "/de/enterprise/2.14/user/v4/guides/resource-limitations", - "/de/enterprise/2.14/graphql/overview/resource-limitations" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/resource-limitations", - "/de/enterprise/2.15/v4/guides/resource-limitations", - "/de/enterprise/2.15/user/v4/guides/resource-limitations", - "/de/enterprise/2.15/graphql/overview/resource-limitations" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/resource-limitations", - "/de/enterprise/2.16/v4/guides/resource-limitations", - "/de/enterprise/2.16/user/v4/guides/resource-limitations", - "/de/enterprise/2.16/graphql/overview/resource-limitations" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/resource-limitations", - "/de/enterprise/2.17/v4/guides/resource-limitations", - "/de/enterprise/2.17/user/v4/guides/resource-limitations", - "/de/enterprise/2.17/graphql/overview/resource-limitations" - ], - [ - "/de/enterprise/2.13/user/graphql/overview/schema-previews", - "/de/enterprise/2.13/v4/previews", - "/de/enterprise/2.13/user/v4/previews", - "/de/enterprise/2.13/graphql/overview/schema-previews" - ], - [ - "/de/enterprise/2.14/user/graphql/overview/schema-previews", - "/de/enterprise/2.14/v4/previews", - "/de/enterprise/2.14/user/v4/previews", - "/de/enterprise/2.14/graphql/overview/schema-previews" - ], - [ - "/de/enterprise/2.15/user/graphql/overview/schema-previews", - "/de/enterprise/2.15/v4/previews", - "/de/enterprise/2.15/user/v4/previews", - "/de/enterprise/2.15/graphql/overview/schema-previews" - ], - [ - "/de/enterprise/2.16/user/graphql/overview/schema-previews", - "/de/enterprise/2.16/v4/previews", - "/de/enterprise/2.16/user/v4/previews", - "/de/enterprise/2.16/graphql/overview/schema-previews" - ], - [ - "/de/enterprise/2.17/user/graphql/overview/schema-previews", - "/de/enterprise/2.17/v4/previews", - "/de/enterprise/2.17/user/v4/previews", - "/de/enterprise/2.17/graphql/overview/schema-previews" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/enums", - "/de/enterprise/2.13/v4/enum", - "/de/enterprise/2.13/user/v4/enum", - "/de/enterprise/2.13/v4/reference/enum", - "/de/enterprise/2.13/user/v4/reference/enum", - "/de/enterprise/2.13/graphql/reference/enums" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/enums", - "/de/enterprise/2.14/v4/enum", - "/de/enterprise/2.14/user/v4/enum", - "/de/enterprise/2.14/v4/reference/enum", - "/de/enterprise/2.14/user/v4/reference/enum", - "/de/enterprise/2.14/graphql/reference/enums" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/enums", - "/de/enterprise/2.15/v4/enum", - "/de/enterprise/2.15/user/v4/enum", - "/de/enterprise/2.15/v4/reference/enum", - "/de/enterprise/2.15/user/v4/reference/enum", - "/de/enterprise/2.15/graphql/reference/enums" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/enums", - "/de/enterprise/2.16/v4/enum", - "/de/enterprise/2.16/user/v4/enum", - "/de/enterprise/2.16/v4/reference/enum", - "/de/enterprise/2.16/user/v4/reference/enum", - "/de/enterprise/2.16/graphql/reference/enums" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/enums", - "/de/enterprise/2.17/v4/enum", - "/de/enterprise/2.17/user/v4/enum", - "/de/enterprise/2.17/v4/reference/enum", - "/de/enterprise/2.17/user/v4/reference/enum", - "/de/enterprise/2.17/graphql/reference/enums" - ], - [ - "/de/enterprise/2.13/user/graphql/reference", - "/de/enterprise/2.13/v4/reference", - "/de/enterprise/2.13/user/v4/reference", - "/de/enterprise/2.13/graphql/reference" - ], - [ - "/de/enterprise/2.14/user/graphql/reference", - "/de/enterprise/2.14/v4/reference", - "/de/enterprise/2.14/user/v4/reference", - "/de/enterprise/2.14/graphql/reference" - ], - [ - "/de/enterprise/2.15/user/graphql/reference", - "/de/enterprise/2.15/v4/reference", - "/de/enterprise/2.15/user/v4/reference", - "/de/enterprise/2.15/graphql/reference" - ], - [ - "/de/enterprise/2.16/user/graphql/reference", - "/de/enterprise/2.16/v4/reference", - "/de/enterprise/2.16/user/v4/reference", - "/de/enterprise/2.16/graphql/reference" - ], - [ - "/de/enterprise/2.17/user/graphql/reference", - "/de/enterprise/2.17/v4/reference", - "/de/enterprise/2.17/user/v4/reference", - "/de/enterprise/2.17/graphql/reference" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/input-objects", - "/de/enterprise/2.13/v4/input_object", - "/de/enterprise/2.13/user/v4/input_object", - "/de/enterprise/2.13/v4/reference/input_object", - "/de/enterprise/2.13/user/v4/reference/input_object", - "/de/enterprise/2.13/graphql/reference/input-objects" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/input-objects", - "/de/enterprise/2.14/v4/input_object", - "/de/enterprise/2.14/user/v4/input_object", - "/de/enterprise/2.14/v4/reference/input_object", - "/de/enterprise/2.14/user/v4/reference/input_object", - "/de/enterprise/2.14/graphql/reference/input-objects" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/input-objects", - "/de/enterprise/2.15/v4/input_object", - "/de/enterprise/2.15/user/v4/input_object", - "/de/enterprise/2.15/v4/reference/input_object", - "/de/enterprise/2.15/user/v4/reference/input_object", - "/de/enterprise/2.15/graphql/reference/input-objects" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/input-objects", - "/de/enterprise/2.16/v4/input_object", - "/de/enterprise/2.16/user/v4/input_object", - "/de/enterprise/2.16/v4/reference/input_object", - "/de/enterprise/2.16/user/v4/reference/input_object", - "/de/enterprise/2.16/graphql/reference/input-objects" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/input-objects", - "/de/enterprise/2.17/v4/input_object", - "/de/enterprise/2.17/user/v4/input_object", - "/de/enterprise/2.17/v4/reference/input_object", - "/de/enterprise/2.17/user/v4/reference/input_object", - "/de/enterprise/2.17/graphql/reference/input-objects" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/interfaces", - "/de/enterprise/2.13/v4/interface", - "/de/enterprise/2.13/user/v4/interface", - "/de/enterprise/2.13/v4/reference/interface", - "/de/enterprise/2.13/user/v4/reference/interface", - "/de/enterprise/2.13/graphql/reference/interfaces" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/interfaces", - "/de/enterprise/2.14/v4/interface", - "/de/enterprise/2.14/user/v4/interface", - "/de/enterprise/2.14/v4/reference/interface", - "/de/enterprise/2.14/user/v4/reference/interface", - "/de/enterprise/2.14/graphql/reference/interfaces" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/interfaces", - "/de/enterprise/2.15/v4/interface", - "/de/enterprise/2.15/user/v4/interface", - "/de/enterprise/2.15/v4/reference/interface", - "/de/enterprise/2.15/user/v4/reference/interface", - "/de/enterprise/2.15/graphql/reference/interfaces" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/interfaces", - "/de/enterprise/2.16/v4/interface", - "/de/enterprise/2.16/user/v4/interface", - "/de/enterprise/2.16/v4/reference/interface", - "/de/enterprise/2.16/user/v4/reference/interface", - "/de/enterprise/2.16/graphql/reference/interfaces" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/interfaces", - "/de/enterprise/2.17/v4/interface", - "/de/enterprise/2.17/user/v4/interface", - "/de/enterprise/2.17/v4/reference/interface", - "/de/enterprise/2.17/user/v4/reference/interface", - "/de/enterprise/2.17/graphql/reference/interfaces" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/mutations", - "/de/enterprise/2.13/v4/mutation", - "/de/enterprise/2.13/user/v4/mutation", - "/de/enterprise/2.13/v4/reference/mutation", - "/de/enterprise/2.13/user/v4/reference/mutation", - "/de/enterprise/2.13/graphql/reference/mutations" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/mutations", - "/de/enterprise/2.14/v4/mutation", - "/de/enterprise/2.14/user/v4/mutation", - "/de/enterprise/2.14/v4/reference/mutation", - "/de/enterprise/2.14/user/v4/reference/mutation", - "/de/enterprise/2.14/graphql/reference/mutations" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/mutations", - "/de/enterprise/2.15/v4/mutation", - "/de/enterprise/2.15/user/v4/mutation", - "/de/enterprise/2.15/v4/reference/mutation", - "/de/enterprise/2.15/user/v4/reference/mutation", - "/de/enterprise/2.15/graphql/reference/mutations" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/mutations", - "/de/enterprise/2.16/v4/mutation", - "/de/enterprise/2.16/user/v4/mutation", - "/de/enterprise/2.16/v4/reference/mutation", - "/de/enterprise/2.16/user/v4/reference/mutation", - "/de/enterprise/2.16/graphql/reference/mutations" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/mutations", - "/de/enterprise/2.17/v4/mutation", - "/de/enterprise/2.17/user/v4/mutation", - "/de/enterprise/2.17/v4/reference/mutation", - "/de/enterprise/2.17/user/v4/reference/mutation", - "/de/enterprise/2.17/graphql/reference/mutations" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/objects", - "/de/enterprise/2.13/v4/object", - "/de/enterprise/2.13/user/v4/object", - "/de/enterprise/2.13/v4/reference/object", - "/de/enterprise/2.13/user/v4/reference/object", - "/de/enterprise/2.13/graphql/reference/objects" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/objects", - "/de/enterprise/2.14/v4/object", - "/de/enterprise/2.14/user/v4/object", - "/de/enterprise/2.14/v4/reference/object", - "/de/enterprise/2.14/user/v4/reference/object", - "/de/enterprise/2.14/graphql/reference/objects" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/objects", - "/de/enterprise/2.15/v4/object", - "/de/enterprise/2.15/user/v4/object", - "/de/enterprise/2.15/v4/reference/object", - "/de/enterprise/2.15/user/v4/reference/object", - "/de/enterprise/2.15/graphql/reference/objects" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/objects", - "/de/enterprise/2.16/v4/object", - "/de/enterprise/2.16/user/v4/object", - "/de/enterprise/2.16/v4/reference/object", - "/de/enterprise/2.16/user/v4/reference/object", - "/de/enterprise/2.16/graphql/reference/objects" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/objects", - "/de/enterprise/2.17/v4/object", - "/de/enterprise/2.17/user/v4/object", - "/de/enterprise/2.17/v4/reference/object", - "/de/enterprise/2.17/user/v4/reference/object", - "/de/enterprise/2.17/graphql/reference/objects" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/queries", - "/de/enterprise/2.13/v4/query", - "/de/enterprise/2.13/user/v4/query", - "/de/enterprise/2.13/v4/reference/query", - "/de/enterprise/2.13/user/v4/reference/query", - "/de/enterprise/2.13/graphql/reference/queries" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/queries", - "/de/enterprise/2.14/v4/query", - "/de/enterprise/2.14/user/v4/query", - "/de/enterprise/2.14/v4/reference/query", - "/de/enterprise/2.14/user/v4/reference/query", - "/de/enterprise/2.14/graphql/reference/queries" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/queries", - "/de/enterprise/2.15/v4/query", - "/de/enterprise/2.15/user/v4/query", - "/de/enterprise/2.15/v4/reference/query", - "/de/enterprise/2.15/user/v4/reference/query", - "/de/enterprise/2.15/graphql/reference/queries" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/queries", - "/de/enterprise/2.16/v4/query", - "/de/enterprise/2.16/user/v4/query", - "/de/enterprise/2.16/v4/reference/query", - "/de/enterprise/2.16/user/v4/reference/query", - "/de/enterprise/2.16/graphql/reference/queries" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/queries", - "/de/enterprise/2.17/v4/query", - "/de/enterprise/2.17/user/v4/query", - "/de/enterprise/2.17/v4/reference/query", - "/de/enterprise/2.17/user/v4/reference/query", - "/de/enterprise/2.17/graphql/reference/queries" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/scalars", - "/de/enterprise/2.13/v4/scalar", - "/de/enterprise/2.13/user/v4/scalar", - "/de/enterprise/2.13/v4/reference/scalar", - "/de/enterprise/2.13/user/v4/reference/scalar", - "/de/enterprise/2.13/graphql/reference/scalars" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/scalars", - "/de/enterprise/2.14/v4/scalar", - "/de/enterprise/2.14/user/v4/scalar", - "/de/enterprise/2.14/v4/reference/scalar", - "/de/enterprise/2.14/user/v4/reference/scalar", - "/de/enterprise/2.14/graphql/reference/scalars" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/scalars", - "/de/enterprise/2.15/v4/scalar", - "/de/enterprise/2.15/user/v4/scalar", - "/de/enterprise/2.15/v4/reference/scalar", - "/de/enterprise/2.15/user/v4/reference/scalar", - "/de/enterprise/2.15/graphql/reference/scalars" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/scalars", - "/de/enterprise/2.16/v4/scalar", - "/de/enterprise/2.16/user/v4/scalar", - "/de/enterprise/2.16/v4/reference/scalar", - "/de/enterprise/2.16/user/v4/reference/scalar", - "/de/enterprise/2.16/graphql/reference/scalars" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/scalars", - "/de/enterprise/2.17/v4/scalar", - "/de/enterprise/2.17/user/v4/scalar", - "/de/enterprise/2.17/v4/reference/scalar", - "/de/enterprise/2.17/user/v4/reference/scalar", - "/de/enterprise/2.17/graphql/reference/scalars" - ], - [ - "/de/enterprise/2.13/user/graphql/reference/unions", - "/de/enterprise/2.13/v4/union", - "/de/enterprise/2.13/user/v4/union", - "/de/enterprise/2.13/v4/reference/union", - "/de/enterprise/2.13/user/v4/reference/union", - "/de/enterprise/2.13/graphql/reference/unions" - ], - [ - "/de/enterprise/2.14/user/graphql/reference/unions", - "/de/enterprise/2.14/v4/union", - "/de/enterprise/2.14/user/v4/union", - "/de/enterprise/2.14/v4/reference/union", - "/de/enterprise/2.14/user/v4/reference/union", - "/de/enterprise/2.14/graphql/reference/unions" - ], - [ - "/de/enterprise/2.15/user/graphql/reference/unions", - "/de/enterprise/2.15/v4/union", - "/de/enterprise/2.15/user/v4/union", - "/de/enterprise/2.15/v4/reference/union", - "/de/enterprise/2.15/user/v4/reference/union", - "/de/enterprise/2.15/graphql/reference/unions" - ], - [ - "/de/enterprise/2.16/user/graphql/reference/unions", - "/de/enterprise/2.16/v4/union", - "/de/enterprise/2.16/user/v4/union", - "/de/enterprise/2.16/v4/reference/union", - "/de/enterprise/2.16/user/v4/reference/union", - "/de/enterprise/2.16/graphql/reference/unions" - ], - [ - "/de/enterprise/2.17/user/graphql/reference/unions", - "/de/enterprise/2.17/v4/union", - "/de/enterprise/2.17/user/v4/union", - "/de/enterprise/2.17/v4/reference/union", - "/de/enterprise/2.17/user/v4/reference/union", - "/de/enterprise/2.17/graphql/reference/unions" - ], - [ - "/de/enterprise/2.13" - ], - [ - "/de/enterprise/2.14" - ], - [ - "/de/enterprise/2.15" - ], - [ - "/de/enterprise/2.16" - ], - [ - "/de/enterprise/2.17" - ], - [ - "/de/enterprise/2.13/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.13/insights/exploring-your-usage-of-github-enterprise" - ], - [ - "/de/enterprise/2.14/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.14/insights/exploring-your-usage-of-github-enterprise" - ], - [ - "/de/enterprise/2.15/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.15/insights/exploring-your-usage-of-github-enterprise" - ], - [ - "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise" - ], - [ - "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise" - ], - [ - "/de/enterprise/2.13/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.13/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.14/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.15/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/metrics-available-with-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/key-metrics-for-collaboration-in-pull-requests", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights", - "/de/enterprise/2.13/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights", - "/de/enterprise/2.14/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights", - "/de/enterprise/2.15/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/navigating-between-github-enterprise-and-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.13/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.14/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.15/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.13/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports" - ], - [ - "/de/enterprise/2.14/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.14/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports" - ], - [ - "/de/enterprise/2.15/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.15/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports" - ], - [ - "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports" - ], - [ - "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/viewing-and-filtering-key-metrics-and-reports", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports" - ], - [ - "/de/enterprise/2.13/user/insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights", - "/de/enterprise/2.13/insights" - ], - [ - "/de/enterprise/2.14/user/insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights", - "/de/enterprise/2.14/insights" - ], - [ - "/de/enterprise/2.15/user/insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights", - "/de/enterprise/2.15/insights" - ], - [ - "/de/enterprise/2.16/user/insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights", - "/de/enterprise/2.16/insights" - ], - [ - "/de/enterprise/2.17/user/insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights", - "/de/enterprise/2.17/insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/about-data-in-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/about-data-in-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/about-data-in-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/about-data-in-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/about-data-in-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/about-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/about-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/about-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/about-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/about-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/configuring-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/configuring-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/configuring-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/configuring-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/configuring-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/navigating-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/enabling-a-link-between-github-insights-and-github-enterprise" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/installing-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/installing-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/installing-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/installing-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/installing-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/managing-settings-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-contributors-and-teams" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-contributors-and-teams" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-contributors-and-teams" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-contributors-and-teams" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-contributors-and-teams" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-data-in-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-data-in-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-data-in-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-data-in-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-data-in-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-events" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-events" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-events" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-events" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/creating-and-managing-events", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-events" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-goals" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-goals" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-goals" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-goals" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/creating-and-managing-goals", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-goals" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-organizations" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-organizations" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-organizations" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-organizations" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-organizations" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/managing-repositories" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/managing-repositories" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/managing-repositories" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-repositories" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-repositories" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/system-overview-for-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/system-overview-for-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/system-overview-for-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/system-overview-for-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/system-overview-for-github-insights" - ], - [ - "/de/enterprise/2.13/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.13/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.13/user/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.13/user/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.13/insights/installing-and-configuring-github-insights/updating-github-insights" - ], - [ - "/de/enterprise/2.14/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.14/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.14/user/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.14/user/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.14/insights/installing-and-configuring-github-insights/updating-github-insights" - ], - [ - "/de/enterprise/2.15/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.15/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.15/user/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.15/user/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.15/insights/installing-and-configuring-github-insights/updating-github-insights" - ], - [ - "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.16/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.16/user/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.16/user/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/updating-github-insights" - ], - [ - "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.17/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.17/user/github/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.17/user/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/updating-github-insights" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-apache-maven-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-apache-maven-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-apache-maven-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-apache-maven-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-apache-maven-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-apache-maven-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-apache-maven-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-docker-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-docker-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-docker-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-docker-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-docker-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-docker-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-dotnet-cli-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-dotnet-cli-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-dotnet-cli-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-dotnet-cli-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-nuget-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-nuget-for-use-with-github-packages", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-dotnet-cli-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-dotnet-cli-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-gradle-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-gradle-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-gradle-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-gradle-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-gradle-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-gradle-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-gradle-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-npm-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-npm-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-npm-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-npm-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-npm-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-npm-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.13/packages/guides/configuring-rubygems-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.14/packages/guides/configuring-rubygems-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.15/packages/guides/configuring-rubygems-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.16/packages/guides/configuring-rubygems-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/articles/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/configuring-rubygems-for-use-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/configuring-rubygems-for-use-with-github-packages", - "/de/enterprise/2.17/packages/guides/configuring-rubygems-for-use-with-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/container-guides-for-github-packages", - "/de/enterprise/2.13/packages/guides/container-guides-for-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/container-guides-for-github-packages", - "/de/enterprise/2.14/packages/guides/container-guides-for-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/container-guides-for-github-packages", - "/de/enterprise/2.15/packages/guides/container-guides-for-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/container-guides-for-github-packages", - "/de/enterprise/2.16/packages/guides/container-guides-for-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/container-guides-for-github-packages", - "/de/enterprise/2.17/packages/guides/container-guides-for-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.13/packages/guides" - ], - [ - "/de/enterprise/2.14/user/packages/guides", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.14/packages/guides" - ], - [ - "/de/enterprise/2.15/user/packages/guides", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.15/packages/guides" - ], - [ - "/de/enterprise/2.16/user/packages/guides", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.16/packages/guides" - ], - [ - "/de/enterprise/2.17/user/packages/guides", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem", - "/de/enterprise/2.17/packages/guides" - ], - [ - "/de/enterprise/2.13/user/packages/guides/package-client-guides-for-github-packages", - "/de/enterprise/2.13/packages/guides/package-client-guides-for-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/guides/package-client-guides-for-github-packages", - "/de/enterprise/2.14/packages/guides/package-client-guides-for-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/guides/package-client-guides-for-github-packages", - "/de/enterprise/2.15/packages/guides/package-client-guides-for-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/guides/package-client-guides-for-github-packages", - "/de/enterprise/2.16/packages/guides/package-client-guides-for-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/guides/package-client-guides-for-github-packages", - "/de/enterprise/2.17/packages/guides/package-client-guides-for-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/guides/using-github-packages-with-github-actions", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.13/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.13/user/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.13/packages/guides/using-github-packages-with-github-actions" - ], - [ - "/de/enterprise/2.14/user/packages/guides/using-github-packages-with-github-actions", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.14/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.14/user/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.14/packages/guides/using-github-packages-with-github-actions" - ], - [ - "/de/enterprise/2.15/user/packages/guides/using-github-packages-with-github-actions", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.15/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.15/user/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.15/packages/guides/using-github-packages-with-github-actions" - ], - [ - "/de/enterprise/2.16/user/packages/guides/using-github-packages-with-github-actions", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.16/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.16/user/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.16/packages/guides/using-github-packages-with-github-actions" - ], - [ - "/de/enterprise/2.17/user/packages/guides/using-github-packages-with-github-actions", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/using-github-packages-with-github-actions", - "/de/enterprise/2.17/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.17/user/packages/using-github-packages-with-your-projects-ecosystem/using-github-packages-with-github-actions", - "/de/enterprise/2.17/packages/guides/using-github-packages-with-github-actions" - ], - [ - "/de/enterprise/2.13/user/packages", - "/de/enterprise/2.13/github/managing-packages-with-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages", - "/de/enterprise/2.13/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.13/user/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry", - "/de/enterprise/2.13/packages" - ], - [ - "/de/enterprise/2.14/user/packages", - "/de/enterprise/2.14/github/managing-packages-with-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages", - "/de/enterprise/2.14/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.14/user/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry", - "/de/enterprise/2.14/packages" - ], - [ - "/de/enterprise/2.15/user/packages", - "/de/enterprise/2.15/github/managing-packages-with-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages", - "/de/enterprise/2.15/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.15/user/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry", - "/de/enterprise/2.15/packages" - ], - [ - "/de/enterprise/2.16/user/packages", - "/de/enterprise/2.16/github/managing-packages-with-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages", - "/de/enterprise/2.16/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.16/user/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry", - "/de/enterprise/2.16/packages" - ], - [ - "/de/enterprise/2.17/user/packages", - "/de/enterprise/2.17/github/managing-packages-with-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages", - "/de/enterprise/2.17/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.17/user/categories/managing-packages-with-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry", - "/de/enterprise/2.17/packages" - ], - [ - "/de/enterprise/2.13/user/packages/learn-github-packages/about-github-packages", - "/de/enterprise/2.13/articles/about-github-package-registry", - "/de/enterprise/2.13/user/articles/about-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.13/user/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.13/user/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.13/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.13/packages/learn-github-packages/about-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/learn-github-packages/about-github-packages", - "/de/enterprise/2.14/articles/about-github-package-registry", - "/de/enterprise/2.14/user/articles/about-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.14/user/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.14/user/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.14/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.14/packages/learn-github-packages/about-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/learn-github-packages/about-github-packages", - "/de/enterprise/2.15/articles/about-github-package-registry", - "/de/enterprise/2.15/user/articles/about-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.15/user/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.15/user/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.15/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.15/packages/learn-github-packages/about-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/learn-github-packages/about-github-packages", - "/de/enterprise/2.16/articles/about-github-package-registry", - "/de/enterprise/2.16/user/articles/about-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.16/user/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.16/user/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.16/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.16/packages/learn-github-packages/about-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/learn-github-packages/about-github-packages", - "/de/enterprise/2.17/articles/about-github-package-registry", - "/de/enterprise/2.17/user/articles/about-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.17/user/github/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.17/user/managing-packages-with-github-package-registry/about-github-package-registry", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/about-github-packages", - "/de/enterprise/2.17/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages/about-github-packages", - "/de/enterprise/2.17/packages/learn-github-packages/about-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/learn-github-packages/core-concepts-for-github-packages", - "/de/enterprise/2.13/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.13/user/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.13/packages/learn-github-packages/core-concepts-for-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/learn-github-packages/core-concepts-for-github-packages", - "/de/enterprise/2.14/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.14/user/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.14/packages/learn-github-packages/core-concepts-for-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/learn-github-packages/core-concepts-for-github-packages", - "/de/enterprise/2.15/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.15/user/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.15/packages/learn-github-packages/core-concepts-for-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/learn-github-packages/core-concepts-for-github-packages", - "/de/enterprise/2.16/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.16/user/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.16/packages/learn-github-packages/core-concepts-for-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/learn-github-packages/core-concepts-for-github-packages", - "/de/enterprise/2.17/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.17/user/packages/getting-started-with-github-container-registry/core-concepts-for-github-container-registry", - "/de/enterprise/2.17/packages/learn-github-packages/core-concepts-for-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/learn-github-packages", - "/de/enterprise/2.13/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.13/user/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.13/packages/learn-github-packages" - ], - [ - "/de/enterprise/2.14/user/packages/learn-github-packages", - "/de/enterprise/2.14/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.14/user/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.14/packages/learn-github-packages" - ], - [ - "/de/enterprise/2.15/user/packages/learn-github-packages", - "/de/enterprise/2.15/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.15/user/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.15/packages/learn-github-packages" - ], - [ - "/de/enterprise/2.16/user/packages/learn-github-packages", - "/de/enterprise/2.16/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.16/user/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.16/packages/learn-github-packages" - ], - [ - "/de/enterprise/2.17/user/packages/learn-github-packages", - "/de/enterprise/2.17/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.17/user/packages/getting-started-with-github-container-registry", - "/de/enterprise/2.17/packages/learn-github-packages" - ], - [ - "/de/enterprise/2.13/user/packages/learn-github-packages/publishing-a-package", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.13/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.13/packages/learn-github-packages/publishing-a-package" - ], - [ - "/de/enterprise/2.14/user/packages/learn-github-packages/publishing-a-package", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.14/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.14/packages/learn-github-packages/publishing-a-package" - ], - [ - "/de/enterprise/2.15/user/packages/learn-github-packages/publishing-a-package", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.15/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.15/packages/learn-github-packages/publishing-a-package" - ], - [ - "/de/enterprise/2.16/user/packages/learn-github-packages/publishing-a-package", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.16/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.16/packages/learn-github-packages/publishing-a-package" - ], - [ - "/de/enterprise/2.17/user/packages/learn-github-packages/publishing-a-package", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/publishing-a-package", - "/de/enterprise/2.17/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages/publishing-a-package", - "/de/enterprise/2.17/packages/learn-github-packages/publishing-a-package" - ], - [ - "/de/enterprise/2.13/user/packages/manage-packages/deleting-a-package", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.13/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.13/packages/manage-packages/deleting-a-package" - ], - [ - "/de/enterprise/2.14/user/packages/manage-packages/deleting-a-package", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.14/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.14/packages/manage-packages/deleting-a-package" - ], - [ - "/de/enterprise/2.15/user/packages/manage-packages/deleting-a-package", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.15/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.15/packages/manage-packages/deleting-a-package" - ], - [ - "/de/enterprise/2.16/user/packages/manage-packages/deleting-a-package", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.16/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.16/packages/manage-packages/deleting-a-package" - ], - [ - "/de/enterprise/2.17/user/packages/manage-packages/deleting-a-package", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/deleting-a-package", - "/de/enterprise/2.17/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages/deleting-a-package", - "/de/enterprise/2.17/packages/manage-packages/deleting-a-package" - ], - [ - "/de/enterprise/2.13/user/packages/manage-packages", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.13/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.13/user/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages", - "/de/enterprise/2.13/packages/publishing-and-managing-packages", - "/de/enterprise/2.13/packages/manage-packages" - ], - [ - "/de/enterprise/2.14/user/packages/manage-packages", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.14/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.14/user/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages", - "/de/enterprise/2.14/packages/publishing-and-managing-packages", - "/de/enterprise/2.14/packages/manage-packages" - ], - [ - "/de/enterprise/2.15/user/packages/manage-packages", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.15/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.15/user/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages", - "/de/enterprise/2.15/packages/publishing-and-managing-packages", - "/de/enterprise/2.15/packages/manage-packages" - ], - [ - "/de/enterprise/2.16/user/packages/manage-packages", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.16/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.16/user/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages", - "/de/enterprise/2.16/packages/publishing-and-managing-packages", - "/de/enterprise/2.16/packages/manage-packages" - ], - [ - "/de/enterprise/2.17/user/packages/manage-packages", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/publishing-and-managing-packages", - "/de/enterprise/2.17/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.17/user/github/packages/publishing-and-managing-packages", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages", - "/de/enterprise/2.17/packages/publishing-and-managing-packages", - "/de/enterprise/2.17/packages/manage-packages" - ], - [ - "/de/enterprise/2.13/user/packages/manage-packages/installing-a-package", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.13/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.13/packages/manage-packages/installing-a-package" - ], - [ - "/de/enterprise/2.14/user/packages/manage-packages/installing-a-package", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.14/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.14/packages/manage-packages/installing-a-package" - ], - [ - "/de/enterprise/2.15/user/packages/manage-packages/installing-a-package", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.15/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.15/packages/manage-packages/installing-a-package" - ], - [ - "/de/enterprise/2.16/user/packages/manage-packages/installing-a-package", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.16/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.16/packages/manage-packages/installing-a-package" - ], - [ - "/de/enterprise/2.17/user/packages/manage-packages/installing-a-package", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/installing-a-package", - "/de/enterprise/2.17/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages/installing-a-package", - "/de/enterprise/2.17/packages/manage-packages/installing-a-package" - ], - [ - "/de/enterprise/2.13/user/packages/manage-packages/viewing-packages", - "/de/enterprise/2.13/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.13/user/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.13/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.13/user/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.13/user/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.13/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.13/user/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.13/packages/manage-packages/viewing-packages" - ], - [ - "/de/enterprise/2.14/user/packages/manage-packages/viewing-packages", - "/de/enterprise/2.14/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.14/user/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.14/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.14/user/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.14/user/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.14/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.14/user/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.14/packages/manage-packages/viewing-packages" - ], - [ - "/de/enterprise/2.15/user/packages/manage-packages/viewing-packages", - "/de/enterprise/2.15/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.15/user/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.15/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.15/user/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.15/user/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.15/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.15/user/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.15/packages/manage-packages/viewing-packages" - ], - [ - "/de/enterprise/2.16/user/packages/manage-packages/viewing-packages", - "/de/enterprise/2.16/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.16/user/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.16/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.16/user/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.16/user/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.16/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.16/user/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.16/packages/manage-packages/viewing-packages" - ], - [ - "/de/enterprise/2.17/user/packages/manage-packages/viewing-packages", - "/de/enterprise/2.17/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.17/user/articles/viewing-a-repositorys-packages", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/publishing-and-managing-packages/viewing-a-repositorys-packages", - "/de/enterprise/2.17/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.17/user/github/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.17/user/managing-packages-with-github-packages/viewing-packages", - "/de/enterprise/2.17/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.17/user/packages/publishing-and-managing-packages/viewing-packages", - "/de/enterprise/2.17/packages/manage-packages/viewing-packages" - ], - [ - "/de/enterprise/2.13/user/packages/quickstart", - "/de/enterprise/2.13/packages/quickstart" - ], - [ - "/de/enterprise/2.14/user/packages/quickstart", - "/de/enterprise/2.14/packages/quickstart" - ], - [ - "/de/enterprise/2.15/user/packages/quickstart", - "/de/enterprise/2.15/packages/quickstart" - ], - [ - "/de/enterprise/2.16/user/packages/quickstart", - "/de/enterprise/2.16/packages/quickstart" - ], - [ - "/de/enterprise/2.17/user/packages/quickstart", - "/de/enterprise/2.17/packages/quickstart" - ], - [ - "/de/enterprise/2.13/user/rest/guides/basics-of-authentication", - "/de/enterprise/2.13/guides/basics-of-authentication", - "/de/enterprise/2.13/user/guides/basics-of-authentication", - "/de/enterprise/2.13/v3/guides/basics-of-authentication", - "/de/enterprise/2.13/user/v3/guides/basics-of-authentication", - "/de/enterprise/2.13/rest/basics-of-authentication", - "/de/enterprise/2.13/user/rest/basics-of-authentication", - "/de/enterprise/2.13/rest/guides/basics-of-authentication" - ], - [ - "/de/enterprise/2.14/user/rest/guides/basics-of-authentication", - "/de/enterprise/2.14/guides/basics-of-authentication", - "/de/enterprise/2.14/user/guides/basics-of-authentication", - "/de/enterprise/2.14/v3/guides/basics-of-authentication", - "/de/enterprise/2.14/user/v3/guides/basics-of-authentication", - "/de/enterprise/2.14/rest/basics-of-authentication", - "/de/enterprise/2.14/user/rest/basics-of-authentication", - "/de/enterprise/2.14/rest/guides/basics-of-authentication" - ], - [ - "/de/enterprise/2.15/user/rest/guides/basics-of-authentication", - "/de/enterprise/2.15/guides/basics-of-authentication", - "/de/enterprise/2.15/user/guides/basics-of-authentication", - "/de/enterprise/2.15/v3/guides/basics-of-authentication", - "/de/enterprise/2.15/user/v3/guides/basics-of-authentication", - "/de/enterprise/2.15/rest/basics-of-authentication", - "/de/enterprise/2.15/user/rest/basics-of-authentication", - "/de/enterprise/2.15/rest/guides/basics-of-authentication" - ], - [ - "/de/enterprise/2.16/user/rest/guides/basics-of-authentication", - "/de/enterprise/2.16/guides/basics-of-authentication", - "/de/enterprise/2.16/user/guides/basics-of-authentication", - "/de/enterprise/2.16/v3/guides/basics-of-authentication", - "/de/enterprise/2.16/user/v3/guides/basics-of-authentication", - "/de/enterprise/2.16/rest/basics-of-authentication", - "/de/enterprise/2.16/user/rest/basics-of-authentication", - "/de/enterprise/2.16/rest/guides/basics-of-authentication" - ], - [ - "/de/enterprise/2.17/user/rest/guides/basics-of-authentication", - "/de/enterprise/2.17/guides/basics-of-authentication", - "/de/enterprise/2.17/user/guides/basics-of-authentication", - "/de/enterprise/2.17/v3/guides/basics-of-authentication", - "/de/enterprise/2.17/user/v3/guides/basics-of-authentication", - "/de/enterprise/2.17/rest/basics-of-authentication", - "/de/enterprise/2.17/user/rest/basics-of-authentication", - "/de/enterprise/2.17/rest/guides/basics-of-authentication" - ], - [ - "/de/enterprise/2.13/user/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.13/guides/best-practices-for-integrators", - "/de/enterprise/2.13/user/guides/best-practices-for-integrators", - "/de/enterprise/2.13/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.13/user/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.13/rest/guides/best-practices-for-integrators" - ], - [ - "/de/enterprise/2.14/user/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.14/guides/best-practices-for-integrators", - "/de/enterprise/2.14/user/guides/best-practices-for-integrators", - "/de/enterprise/2.14/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.14/user/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.14/rest/guides/best-practices-for-integrators" - ], - [ - "/de/enterprise/2.15/user/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.15/guides/best-practices-for-integrators", - "/de/enterprise/2.15/user/guides/best-practices-for-integrators", - "/de/enterprise/2.15/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.15/user/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.15/rest/guides/best-practices-for-integrators" - ], - [ - "/de/enterprise/2.16/user/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.16/guides/best-practices-for-integrators", - "/de/enterprise/2.16/user/guides/best-practices-for-integrators", - "/de/enterprise/2.16/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.16/user/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.16/rest/guides/best-practices-for-integrators" - ], - [ - "/de/enterprise/2.17/user/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.17/guides/best-practices-for-integrators", - "/de/enterprise/2.17/user/guides/best-practices-for-integrators", - "/de/enterprise/2.17/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.17/user/v3/guides/best-practices-for-integrators", - "/de/enterprise/2.17/rest/guides/best-practices-for-integrators" - ], - [ - "/de/enterprise/2.13/user/rest/guides/building-a-ci-server", - "/de/enterprise/2.13/guides/building-a-ci-server", - "/de/enterprise/2.13/user/guides/building-a-ci-server", - "/de/enterprise/2.13/v3/guides/building-a-ci-server", - "/de/enterprise/2.13/user/v3/guides/building-a-ci-server", - "/de/enterprise/2.13/rest/guides/building-a-ci-server" - ], - [ - "/de/enterprise/2.14/user/rest/guides/building-a-ci-server", - "/de/enterprise/2.14/guides/building-a-ci-server", - "/de/enterprise/2.14/user/guides/building-a-ci-server", - "/de/enterprise/2.14/v3/guides/building-a-ci-server", - "/de/enterprise/2.14/user/v3/guides/building-a-ci-server", - "/de/enterprise/2.14/rest/guides/building-a-ci-server" - ], - [ - "/de/enterprise/2.15/user/rest/guides/building-a-ci-server", - "/de/enterprise/2.15/guides/building-a-ci-server", - "/de/enterprise/2.15/user/guides/building-a-ci-server", - "/de/enterprise/2.15/v3/guides/building-a-ci-server", - "/de/enterprise/2.15/user/v3/guides/building-a-ci-server", - "/de/enterprise/2.15/rest/guides/building-a-ci-server" - ], - [ - "/de/enterprise/2.16/user/rest/guides/building-a-ci-server", - "/de/enterprise/2.16/guides/building-a-ci-server", - "/de/enterprise/2.16/user/guides/building-a-ci-server", - "/de/enterprise/2.16/v3/guides/building-a-ci-server", - "/de/enterprise/2.16/user/v3/guides/building-a-ci-server", - "/de/enterprise/2.16/rest/guides/building-a-ci-server" - ], - [ - "/de/enterprise/2.17/user/rest/guides/building-a-ci-server", - "/de/enterprise/2.17/guides/building-a-ci-server", - "/de/enterprise/2.17/user/guides/building-a-ci-server", - "/de/enterprise/2.17/v3/guides/building-a-ci-server", - "/de/enterprise/2.17/user/v3/guides/building-a-ci-server", - "/de/enterprise/2.17/rest/guides/building-a-ci-server" - ], - [ - "/de/enterprise/2.13/user/rest/guides/delivering-deployments", - "/de/enterprise/2.13/guides/delivering-deployments", - "/de/enterprise/2.13/user/guides/delivering-deployments", - "/de/enterprise/2.13/guides/automating-deployments-to-integrators", - "/de/enterprise/2.13/user/guides/automating-deployments-to-integrators", - "/de/enterprise/2.13/v3/guides/delivering-deployments", - "/de/enterprise/2.13/user/v3/guides/delivering-deployments", - "/de/enterprise/2.13/rest/guides/delivering-deployments" - ], - [ - "/de/enterprise/2.14/user/rest/guides/delivering-deployments", - "/de/enterprise/2.14/guides/delivering-deployments", - "/de/enterprise/2.14/user/guides/delivering-deployments", - "/de/enterprise/2.14/guides/automating-deployments-to-integrators", - "/de/enterprise/2.14/user/guides/automating-deployments-to-integrators", - "/de/enterprise/2.14/v3/guides/delivering-deployments", - "/de/enterprise/2.14/user/v3/guides/delivering-deployments", - "/de/enterprise/2.14/rest/guides/delivering-deployments" - ], - [ - "/de/enterprise/2.15/user/rest/guides/delivering-deployments", - "/de/enterprise/2.15/guides/delivering-deployments", - "/de/enterprise/2.15/user/guides/delivering-deployments", - "/de/enterprise/2.15/guides/automating-deployments-to-integrators", - "/de/enterprise/2.15/user/guides/automating-deployments-to-integrators", - "/de/enterprise/2.15/v3/guides/delivering-deployments", - "/de/enterprise/2.15/user/v3/guides/delivering-deployments", - "/de/enterprise/2.15/rest/guides/delivering-deployments" - ], - [ - "/de/enterprise/2.16/user/rest/guides/delivering-deployments", - "/de/enterprise/2.16/guides/delivering-deployments", - "/de/enterprise/2.16/user/guides/delivering-deployments", - "/de/enterprise/2.16/guides/automating-deployments-to-integrators", - "/de/enterprise/2.16/user/guides/automating-deployments-to-integrators", - "/de/enterprise/2.16/v3/guides/delivering-deployments", - "/de/enterprise/2.16/user/v3/guides/delivering-deployments", - "/de/enterprise/2.16/rest/guides/delivering-deployments" - ], - [ - "/de/enterprise/2.17/user/rest/guides/delivering-deployments", - "/de/enterprise/2.17/guides/delivering-deployments", - "/de/enterprise/2.17/user/guides/delivering-deployments", - "/de/enterprise/2.17/guides/automating-deployments-to-integrators", - "/de/enterprise/2.17/user/guides/automating-deployments-to-integrators", - "/de/enterprise/2.17/v3/guides/delivering-deployments", - "/de/enterprise/2.17/user/v3/guides/delivering-deployments", - "/de/enterprise/2.17/rest/guides/delivering-deployments" - ], - [ - "/de/enterprise/2.13/user/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.13/guides/discovering-resources-for-a-user", - "/de/enterprise/2.13/user/guides/discovering-resources-for-a-user", - "/de/enterprise/2.13/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.13/user/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.13/rest/guides/discovering-resources-for-a-user" - ], - [ - "/de/enterprise/2.14/user/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.14/guides/discovering-resources-for-a-user", - "/de/enterprise/2.14/user/guides/discovering-resources-for-a-user", - "/de/enterprise/2.14/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.14/user/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.14/rest/guides/discovering-resources-for-a-user" - ], - [ - "/de/enterprise/2.15/user/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.15/guides/discovering-resources-for-a-user", - "/de/enterprise/2.15/user/guides/discovering-resources-for-a-user", - "/de/enterprise/2.15/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.15/user/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.15/rest/guides/discovering-resources-for-a-user" - ], - [ - "/de/enterprise/2.16/user/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.16/guides/discovering-resources-for-a-user", - "/de/enterprise/2.16/user/guides/discovering-resources-for-a-user", - "/de/enterprise/2.16/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.16/user/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.16/rest/guides/discovering-resources-for-a-user" - ], - [ - "/de/enterprise/2.17/user/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.17/guides/discovering-resources-for-a-user", - "/de/enterprise/2.17/user/guides/discovering-resources-for-a-user", - "/de/enterprise/2.17/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.17/user/v3/guides/discovering-resources-for-a-user", - "/de/enterprise/2.17/rest/guides/discovering-resources-for-a-user" - ], - [ - "/de/enterprise/2.13/user/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.13/rest/guides/getting-started-with-the-checks-api" - ], - [ - "/de/enterprise/2.14/user/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.14/rest/guides/getting-started-with-the-checks-api" - ], - [ - "/de/enterprise/2.15/user/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.15/rest/guides/getting-started-with-the-checks-api" - ], - [ - "/de/enterprise/2.16/user/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.16/rest/guides/getting-started-with-the-checks-api" - ], - [ - "/de/enterprise/2.17/user/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.17/rest/guides/getting-started-with-the-checks-api" - ], - [ - "/de/enterprise/2.13/user/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.13/rest/guides/getting-started-with-the-git-database-api" - ], - [ - "/de/enterprise/2.14/user/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.14/rest/guides/getting-started-with-the-git-database-api" - ], - [ - "/de/enterprise/2.15/user/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.15/rest/guides/getting-started-with-the-git-database-api" - ], - [ - "/de/enterprise/2.16/user/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.16/rest/guides/getting-started-with-the-git-database-api" - ], - [ - "/de/enterprise/2.17/user/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.17/rest/guides/getting-started-with-the-git-database-api" - ], - [ - "/de/enterprise/2.13/user/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.13/guides/getting-started", - "/de/enterprise/2.13/user/guides/getting-started", - "/de/enterprise/2.13/v3/guides/getting-started", - "/de/enterprise/2.13/user/v3/guides/getting-started", - "/de/enterprise/2.13/rest/guides/getting-started-with-the-rest-api" - ], - [ - "/de/enterprise/2.14/user/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.14/guides/getting-started", - "/de/enterprise/2.14/user/guides/getting-started", - "/de/enterprise/2.14/v3/guides/getting-started", - "/de/enterprise/2.14/user/v3/guides/getting-started", - "/de/enterprise/2.14/rest/guides/getting-started-with-the-rest-api" - ], - [ - "/de/enterprise/2.15/user/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.15/guides/getting-started", - "/de/enterprise/2.15/user/guides/getting-started", - "/de/enterprise/2.15/v3/guides/getting-started", - "/de/enterprise/2.15/user/v3/guides/getting-started", - "/de/enterprise/2.15/rest/guides/getting-started-with-the-rest-api" - ], - [ - "/de/enterprise/2.16/user/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.16/guides/getting-started", - "/de/enterprise/2.16/user/guides/getting-started", - "/de/enterprise/2.16/v3/guides/getting-started", - "/de/enterprise/2.16/user/v3/guides/getting-started", - "/de/enterprise/2.16/rest/guides/getting-started-with-the-rest-api" - ], - [ - "/de/enterprise/2.17/user/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.17/guides/getting-started", - "/de/enterprise/2.17/user/guides/getting-started", - "/de/enterprise/2.17/v3/guides/getting-started", - "/de/enterprise/2.17/user/v3/guides/getting-started", - "/de/enterprise/2.17/rest/guides/getting-started-with-the-rest-api" - ], - [ - "/de/enterprise/2.13/user/rest/guides", - "/de/enterprise/2.13/guides", - "/de/enterprise/2.13/user/guides", - "/de/enterprise/2.13/v3/guides", - "/de/enterprise/2.13/user/v3/guides", - "/de/enterprise/2.13/rest/guides" - ], - [ - "/de/enterprise/2.14/user/rest/guides", - "/de/enterprise/2.14/guides", - "/de/enterprise/2.14/user/guides", - "/de/enterprise/2.14/v3/guides", - "/de/enterprise/2.14/user/v3/guides", - "/de/enterprise/2.14/rest/guides" - ], - [ - "/de/enterprise/2.15/user/rest/guides", - "/de/enterprise/2.15/guides", - "/de/enterprise/2.15/user/guides", - "/de/enterprise/2.15/v3/guides", - "/de/enterprise/2.15/user/v3/guides", - "/de/enterprise/2.15/rest/guides" - ], - [ - "/de/enterprise/2.16/user/rest/guides", - "/de/enterprise/2.16/guides", - "/de/enterprise/2.16/user/guides", - "/de/enterprise/2.16/v3/guides", - "/de/enterprise/2.16/user/v3/guides", - "/de/enterprise/2.16/rest/guides" - ], - [ - "/de/enterprise/2.17/user/rest/guides", - "/de/enterprise/2.17/guides", - "/de/enterprise/2.17/user/guides", - "/de/enterprise/2.17/v3/guides", - "/de/enterprise/2.17/user/v3/guides", - "/de/enterprise/2.17/rest/guides" - ], - [ - "/de/enterprise/2.13/user/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.13/guides/rendering-data-as-graphs", - "/de/enterprise/2.13/user/guides/rendering-data-as-graphs", - "/de/enterprise/2.13/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.13/user/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.13/rest/guides/rendering-data-as-graphs" - ], - [ - "/de/enterprise/2.14/user/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.14/guides/rendering-data-as-graphs", - "/de/enterprise/2.14/user/guides/rendering-data-as-graphs", - "/de/enterprise/2.14/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.14/user/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.14/rest/guides/rendering-data-as-graphs" - ], - [ - "/de/enterprise/2.15/user/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.15/guides/rendering-data-as-graphs", - "/de/enterprise/2.15/user/guides/rendering-data-as-graphs", - "/de/enterprise/2.15/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.15/user/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.15/rest/guides/rendering-data-as-graphs" - ], - [ - "/de/enterprise/2.16/user/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.16/guides/rendering-data-as-graphs", - "/de/enterprise/2.16/user/guides/rendering-data-as-graphs", - "/de/enterprise/2.16/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.16/user/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.16/rest/guides/rendering-data-as-graphs" - ], - [ - "/de/enterprise/2.17/user/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.17/guides/rendering-data-as-graphs", - "/de/enterprise/2.17/user/guides/rendering-data-as-graphs", - "/de/enterprise/2.17/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.17/user/v3/guides/rendering-data-as-graphs", - "/de/enterprise/2.17/rest/guides/rendering-data-as-graphs" - ], - [ - "/de/enterprise/2.13/user/rest/guides/traversing-with-pagination", - "/de/enterprise/2.13/guides/traversing-with-pagination", - "/de/enterprise/2.13/user/guides/traversing-with-pagination", - "/de/enterprise/2.13/v3/guides/traversing-with-pagination", - "/de/enterprise/2.13/user/v3/guides/traversing-with-pagination", - "/de/enterprise/2.13/rest/guides/traversing-with-pagination" - ], - [ - "/de/enterprise/2.14/user/rest/guides/traversing-with-pagination", - "/de/enterprise/2.14/guides/traversing-with-pagination", - "/de/enterprise/2.14/user/guides/traversing-with-pagination", - "/de/enterprise/2.14/v3/guides/traversing-with-pagination", - "/de/enterprise/2.14/user/v3/guides/traversing-with-pagination", - "/de/enterprise/2.14/rest/guides/traversing-with-pagination" - ], - [ - "/de/enterprise/2.15/user/rest/guides/traversing-with-pagination", - "/de/enterprise/2.15/guides/traversing-with-pagination", - "/de/enterprise/2.15/user/guides/traversing-with-pagination", - "/de/enterprise/2.15/v3/guides/traversing-with-pagination", - "/de/enterprise/2.15/user/v3/guides/traversing-with-pagination", - "/de/enterprise/2.15/rest/guides/traversing-with-pagination" - ], - [ - "/de/enterprise/2.16/user/rest/guides/traversing-with-pagination", - "/de/enterprise/2.16/guides/traversing-with-pagination", - "/de/enterprise/2.16/user/guides/traversing-with-pagination", - "/de/enterprise/2.16/v3/guides/traversing-with-pagination", - "/de/enterprise/2.16/user/v3/guides/traversing-with-pagination", - "/de/enterprise/2.16/rest/guides/traversing-with-pagination" - ], - [ - "/de/enterprise/2.17/user/rest/guides/traversing-with-pagination", - "/de/enterprise/2.17/guides/traversing-with-pagination", - "/de/enterprise/2.17/user/guides/traversing-with-pagination", - "/de/enterprise/2.17/v3/guides/traversing-with-pagination", - "/de/enterprise/2.17/user/v3/guides/traversing-with-pagination", - "/de/enterprise/2.17/rest/guides/traversing-with-pagination" - ], - [ - "/de/enterprise/2.13/user/rest/guides/working-with-comments", - "/de/enterprise/2.13/guides/working-with-comments", - "/de/enterprise/2.13/user/guides/working-with-comments", - "/de/enterprise/2.13/v3/guides/working-with-comments", - "/de/enterprise/2.13/user/v3/guides/working-with-comments", - "/de/enterprise/2.13/rest/guides/working-with-comments" - ], - [ - "/de/enterprise/2.14/user/rest/guides/working-with-comments", - "/de/enterprise/2.14/guides/working-with-comments", - "/de/enterprise/2.14/user/guides/working-with-comments", - "/de/enterprise/2.14/v3/guides/working-with-comments", - "/de/enterprise/2.14/user/v3/guides/working-with-comments", - "/de/enterprise/2.14/rest/guides/working-with-comments" - ], - [ - "/de/enterprise/2.15/user/rest/guides/working-with-comments", - "/de/enterprise/2.15/guides/working-with-comments", - "/de/enterprise/2.15/user/guides/working-with-comments", - "/de/enterprise/2.15/v3/guides/working-with-comments", - "/de/enterprise/2.15/user/v3/guides/working-with-comments", - "/de/enterprise/2.15/rest/guides/working-with-comments" - ], - [ - "/de/enterprise/2.16/user/rest/guides/working-with-comments", - "/de/enterprise/2.16/guides/working-with-comments", - "/de/enterprise/2.16/user/guides/working-with-comments", - "/de/enterprise/2.16/v3/guides/working-with-comments", - "/de/enterprise/2.16/user/v3/guides/working-with-comments", - "/de/enterprise/2.16/rest/guides/working-with-comments" - ], - [ - "/de/enterprise/2.17/user/rest/guides/working-with-comments", - "/de/enterprise/2.17/guides/working-with-comments", - "/de/enterprise/2.17/user/guides/working-with-comments", - "/de/enterprise/2.17/v3/guides/working-with-comments", - "/de/enterprise/2.17/user/v3/guides/working-with-comments", - "/de/enterprise/2.17/rest/guides/working-with-comments" - ], - [ - "/de/enterprise/2.13/user/rest", - "/de/enterprise/2.13/v3", - "/de/enterprise/2.13/user/v3", - "/de/enterprise/2.13/rest" - ], - [ - "/de/enterprise/2.14/user/rest", - "/de/enterprise/2.14/v3", - "/de/enterprise/2.14/user/v3", - "/de/enterprise/2.14/rest" - ], - [ - "/de/enterprise/2.15/user/rest", - "/de/enterprise/2.15/v3", - "/de/enterprise/2.15/user/v3", - "/de/enterprise/2.15/rest" - ], - [ - "/de/enterprise/2.16/user/rest", - "/de/enterprise/2.16/v3", - "/de/enterprise/2.16/user/v3", - "/de/enterprise/2.16/rest" - ], - [ - "/de/enterprise/2.17/user/rest", - "/de/enterprise/2.17/v3", - "/de/enterprise/2.17/user/v3", - "/de/enterprise/2.17/rest" - ], - [ - "/de/enterprise/2.13/user/rest/overview/api-previews", - "/de/enterprise/2.13/v3/previews", - "/de/enterprise/2.13/user/v3/previews", - "/de/enterprise/2.13/rest/overview/api-previews" - ], - [ - "/de/enterprise/2.14/user/rest/overview/api-previews", - "/de/enterprise/2.14/v3/previews", - "/de/enterprise/2.14/user/v3/previews", - "/de/enterprise/2.14/rest/overview/api-previews" - ], - [ - "/de/enterprise/2.15/user/rest/overview/api-previews", - "/de/enterprise/2.15/v3/previews", - "/de/enterprise/2.15/user/v3/previews", - "/de/enterprise/2.15/rest/overview/api-previews" - ], - [ - "/de/enterprise/2.16/user/rest/overview/api-previews", - "/de/enterprise/2.16/v3/previews", - "/de/enterprise/2.16/user/v3/previews", - "/de/enterprise/2.16/rest/overview/api-previews" - ], - [ - "/de/enterprise/2.17/user/rest/overview/api-previews", - "/de/enterprise/2.17/v3/previews", - "/de/enterprise/2.17/user/v3/previews", - "/de/enterprise/2.17/rest/overview/api-previews" - ], - [ - "/de/enterprise/2.13/user/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.13/v3/apps/available-endpoints", - "/de/enterprise/2.13/user/v3/apps/available-endpoints", - "/de/enterprise/2.13/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.13/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.13/rest/overview/endpoints-available-for-github-apps" - ], - [ - "/de/enterprise/2.14/user/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.14/v3/apps/available-endpoints", - "/de/enterprise/2.14/user/v3/apps/available-endpoints", - "/de/enterprise/2.14/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.14/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.14/rest/overview/endpoints-available-for-github-apps" - ], - [ - "/de/enterprise/2.15/user/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.15/v3/apps/available-endpoints", - "/de/enterprise/2.15/user/v3/apps/available-endpoints", - "/de/enterprise/2.15/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.15/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.15/rest/overview/endpoints-available-for-github-apps" - ], - [ - "/de/enterprise/2.16/user/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.16/v3/apps/available-endpoints", - "/de/enterprise/2.16/user/v3/apps/available-endpoints", - "/de/enterprise/2.16/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.16/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.16/rest/overview/endpoints-available-for-github-apps" - ], - [ - "/de/enterprise/2.17/user/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.17/v3/apps/available-endpoints", - "/de/enterprise/2.17/user/v3/apps/available-endpoints", - "/de/enterprise/2.17/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.17/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.17/rest/overview/endpoints-available-for-github-apps" - ], - [ - "/de/enterprise/2.13/user/rest/overview", - "/de/enterprise/2.13/rest/overview" - ], - [ - "/de/enterprise/2.14/user/rest/overview", - "/de/enterprise/2.14/rest/overview" - ], - [ - "/de/enterprise/2.15/user/rest/overview", - "/de/enterprise/2.15/rest/overview" - ], - [ - "/de/enterprise/2.16/user/rest/overview", - "/de/enterprise/2.16/rest/overview" - ], - [ - "/de/enterprise/2.17/user/rest/overview", - "/de/enterprise/2.17/rest/overview" - ], - [ - "/de/enterprise/2.13/user/rest/overview/libraries", - "/de/enterprise/2.13/libraries", - "/de/enterprise/2.13/user/libraries", - "/de/enterprise/2.13/v3/libraries", - "/de/enterprise/2.13/user/v3/libraries", - "/de/enterprise/2.13/rest/overview/libraries" - ], - [ - "/de/enterprise/2.14/user/rest/overview/libraries", - "/de/enterprise/2.14/libraries", - "/de/enterprise/2.14/user/libraries", - "/de/enterprise/2.14/v3/libraries", - "/de/enterprise/2.14/user/v3/libraries", - "/de/enterprise/2.14/rest/overview/libraries" - ], - [ - "/de/enterprise/2.15/user/rest/overview/libraries", - "/de/enterprise/2.15/libraries", - "/de/enterprise/2.15/user/libraries", - "/de/enterprise/2.15/v3/libraries", - "/de/enterprise/2.15/user/v3/libraries", - "/de/enterprise/2.15/rest/overview/libraries" - ], - [ - "/de/enterprise/2.16/user/rest/overview/libraries", - "/de/enterprise/2.16/libraries", - "/de/enterprise/2.16/user/libraries", - "/de/enterprise/2.16/v3/libraries", - "/de/enterprise/2.16/user/v3/libraries", - "/de/enterprise/2.16/rest/overview/libraries" - ], - [ - "/de/enterprise/2.17/user/rest/overview/libraries", - "/de/enterprise/2.17/libraries", - "/de/enterprise/2.17/user/libraries", - "/de/enterprise/2.17/v3/libraries", - "/de/enterprise/2.17/user/v3/libraries", - "/de/enterprise/2.17/rest/overview/libraries" - ], - [ - "/de/enterprise/2.13/user/rest/overview/media-types", - "/de/enterprise/2.13/v3/media", - "/de/enterprise/2.13/user/v3/media", - "/de/enterprise/2.13/rest/overview/media-types" - ], - [ - "/de/enterprise/2.14/user/rest/overview/media-types", - "/de/enterprise/2.14/v3/media", - "/de/enterprise/2.14/user/v3/media", - "/de/enterprise/2.14/rest/overview/media-types" - ], - [ - "/de/enterprise/2.15/user/rest/overview/media-types", - "/de/enterprise/2.15/v3/media", - "/de/enterprise/2.15/user/v3/media", - "/de/enterprise/2.15/rest/overview/media-types" - ], - [ - "/de/enterprise/2.16/user/rest/overview/media-types", - "/de/enterprise/2.16/v3/media", - "/de/enterprise/2.16/user/v3/media", - "/de/enterprise/2.16/rest/overview/media-types" - ], - [ - "/de/enterprise/2.17/user/rest/overview/media-types", - "/de/enterprise/2.17/v3/media", - "/de/enterprise/2.17/user/v3/media", - "/de/enterprise/2.17/rest/overview/media-types" - ], - [ - "/de/enterprise/2.13/user/rest/overview/openapi-description", - "/de/enterprise/2.13/rest/overview/openapi-description" - ], - [ - "/de/enterprise/2.14/user/rest/overview/openapi-description", - "/de/enterprise/2.14/rest/overview/openapi-description" - ], - [ - "/de/enterprise/2.15/user/rest/overview/openapi-description", - "/de/enterprise/2.15/rest/overview/openapi-description" - ], - [ - "/de/enterprise/2.16/user/rest/overview/openapi-description", - "/de/enterprise/2.16/rest/overview/openapi-description" - ], - [ - "/de/enterprise/2.17/user/rest/overview/openapi-description", - "/de/enterprise/2.17/rest/overview/openapi-description" - ], - [ - "/de/enterprise/2.13/user/rest/overview/other-authentication-methods", - "/de/enterprise/2.13/v3/auth", - "/de/enterprise/2.13/user/v3/auth", - "/de/enterprise/2.13/rest/overview/other-authentication-methods" - ], - [ - "/de/enterprise/2.14/user/rest/overview/other-authentication-methods", - "/de/enterprise/2.14/v3/auth", - "/de/enterprise/2.14/user/v3/auth", - "/de/enterprise/2.14/rest/overview/other-authentication-methods" - ], - [ - "/de/enterprise/2.15/user/rest/overview/other-authentication-methods", - "/de/enterprise/2.15/v3/auth", - "/de/enterprise/2.15/user/v3/auth", - "/de/enterprise/2.15/rest/overview/other-authentication-methods" - ], - [ - "/de/enterprise/2.16/user/rest/overview/other-authentication-methods", - "/de/enterprise/2.16/v3/auth", - "/de/enterprise/2.16/user/v3/auth", - "/de/enterprise/2.16/rest/overview/other-authentication-methods" - ], - [ - "/de/enterprise/2.17/user/rest/overview/other-authentication-methods", - "/de/enterprise/2.17/v3/auth", - "/de/enterprise/2.17/user/v3/auth", - "/de/enterprise/2.17/rest/overview/other-authentication-methods" - ], - [ - "/de/enterprise/2.13/user/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.13/rest/initialize-the-repo", - "/de/enterprise/2.13/user/rest/initialize-the-repo", - "/de/enterprise/2.13/rest/overview/resources-in-the-rest-api" - ], - [ - "/de/enterprise/2.14/user/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.14/rest/initialize-the-repo", - "/de/enterprise/2.14/user/rest/initialize-the-repo", - "/de/enterprise/2.14/rest/overview/resources-in-the-rest-api" - ], - [ - "/de/enterprise/2.15/user/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.15/rest/initialize-the-repo", - "/de/enterprise/2.15/user/rest/initialize-the-repo", - "/de/enterprise/2.15/rest/overview/resources-in-the-rest-api" - ], - [ - "/de/enterprise/2.16/user/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.16/rest/initialize-the-repo", - "/de/enterprise/2.16/user/rest/initialize-the-repo", - "/de/enterprise/2.16/rest/overview/resources-in-the-rest-api" - ], - [ - "/de/enterprise/2.17/user/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.17/rest/initialize-the-repo", - "/de/enterprise/2.17/user/rest/initialize-the-repo", - "/de/enterprise/2.17/rest/overview/resources-in-the-rest-api" - ], - [ - "/de/enterprise/2.13/user/rest/overview/troubleshooting", - "/de/enterprise/2.13/v3/troubleshooting", - "/de/enterprise/2.13/user/v3/troubleshooting", - "/de/enterprise/2.13/rest/overview/troubleshooting" - ], - [ - "/de/enterprise/2.14/user/rest/overview/troubleshooting", - "/de/enterprise/2.14/v3/troubleshooting", - "/de/enterprise/2.14/user/v3/troubleshooting", - "/de/enterprise/2.14/rest/overview/troubleshooting" - ], - [ - "/de/enterprise/2.15/user/rest/overview/troubleshooting", - "/de/enterprise/2.15/v3/troubleshooting", - "/de/enterprise/2.15/user/v3/troubleshooting", - "/de/enterprise/2.15/rest/overview/troubleshooting" - ], - [ - "/de/enterprise/2.16/user/rest/overview/troubleshooting", - "/de/enterprise/2.16/v3/troubleshooting", - "/de/enterprise/2.16/user/v3/troubleshooting", - "/de/enterprise/2.16/rest/overview/troubleshooting" - ], - [ - "/de/enterprise/2.17/user/rest/overview/troubleshooting", - "/de/enterprise/2.17/v3/troubleshooting", - "/de/enterprise/2.17/user/v3/troubleshooting", - "/de/enterprise/2.17/rest/overview/troubleshooting" - ], - [ - "/de/enterprise/2.13/user/rest/reference/actions", - "/de/enterprise/2.13/v3/actions", - "/de/enterprise/2.13/user/v3/actions", - "/de/enterprise/2.13/rest/reference/actions" - ], - [ - "/de/enterprise/2.14/user/rest/reference/actions", - "/de/enterprise/2.14/v3/actions", - "/de/enterprise/2.14/user/v3/actions", - "/de/enterprise/2.14/rest/reference/actions" - ], - [ - "/de/enterprise/2.15/user/rest/reference/actions", - "/de/enterprise/2.15/v3/actions", - "/de/enterprise/2.15/user/v3/actions", - "/de/enterprise/2.15/rest/reference/actions" - ], - [ - "/de/enterprise/2.16/user/rest/reference/actions", - "/de/enterprise/2.16/v3/actions", - "/de/enterprise/2.16/user/v3/actions", - "/de/enterprise/2.16/rest/reference/actions" - ], - [ - "/de/enterprise/2.17/user/rest/reference/actions", - "/de/enterprise/2.17/v3/actions", - "/de/enterprise/2.17/user/v3/actions", - "/de/enterprise/2.17/rest/reference/actions" - ], - [ - "/de/enterprise/2.13/user/rest/reference/activity", - "/de/enterprise/2.13/v3/activity", - "/de/enterprise/2.13/user/v3/activity", - "/de/enterprise/2.13/rest/reference/activity" - ], - [ - "/de/enterprise/2.14/user/rest/reference/activity", - "/de/enterprise/2.14/v3/activity", - "/de/enterprise/2.14/user/v3/activity", - "/de/enterprise/2.14/rest/reference/activity" - ], - [ - "/de/enterprise/2.15/user/rest/reference/activity", - "/de/enterprise/2.15/v3/activity", - "/de/enterprise/2.15/user/v3/activity", - "/de/enterprise/2.15/rest/reference/activity" - ], - [ - "/de/enterprise/2.16/user/rest/reference/activity", - "/de/enterprise/2.16/v3/activity", - "/de/enterprise/2.16/user/v3/activity", - "/de/enterprise/2.16/rest/reference/activity" - ], - [ - "/de/enterprise/2.17/user/rest/reference/activity", - "/de/enterprise/2.17/v3/activity", - "/de/enterprise/2.17/user/v3/activity", - "/de/enterprise/2.17/rest/reference/activity" - ], - [ - "/de/enterprise/2.13/user/rest/reference/apps", - "/de/enterprise/2.13/v3/apps", - "/de/enterprise/2.13/user/v3/apps", - "/de/enterprise/2.13/rest/reference/apps" - ], - [ - "/de/enterprise/2.14/user/rest/reference/apps", - "/de/enterprise/2.14/v3/apps", - "/de/enterprise/2.14/user/v3/apps", - "/de/enterprise/2.14/rest/reference/apps" - ], - [ - "/de/enterprise/2.15/user/rest/reference/apps", - "/de/enterprise/2.15/v3/apps", - "/de/enterprise/2.15/user/v3/apps", - "/de/enterprise/2.15/rest/reference/apps" - ], - [ - "/de/enterprise/2.16/user/rest/reference/apps", - "/de/enterprise/2.16/v3/apps", - "/de/enterprise/2.16/user/v3/apps", - "/de/enterprise/2.16/rest/reference/apps" - ], - [ - "/de/enterprise/2.17/user/rest/reference/apps", - "/de/enterprise/2.17/v3/apps", - "/de/enterprise/2.17/user/v3/apps", - "/de/enterprise/2.17/rest/reference/apps" - ], - [ - "/de/enterprise/2.13/user/rest/reference/checks", - "/de/enterprise/2.13/v3/checks", - "/de/enterprise/2.13/user/v3/checks", - "/de/enterprise/2.13/rest/reference/checks" - ], - [ - "/de/enterprise/2.14/user/rest/reference/checks", - "/de/enterprise/2.14/v3/checks", - "/de/enterprise/2.14/user/v3/checks", - "/de/enterprise/2.14/rest/reference/checks" - ], - [ - "/de/enterprise/2.15/user/rest/reference/checks", - "/de/enterprise/2.15/v3/checks", - "/de/enterprise/2.15/user/v3/checks", - "/de/enterprise/2.15/rest/reference/checks" - ], - [ - "/de/enterprise/2.16/user/rest/reference/checks", - "/de/enterprise/2.16/v3/checks", - "/de/enterprise/2.16/user/v3/checks", - "/de/enterprise/2.16/rest/reference/checks" - ], - [ - "/de/enterprise/2.17/user/rest/reference/checks", - "/de/enterprise/2.17/v3/checks", - "/de/enterprise/2.17/user/v3/checks", - "/de/enterprise/2.17/rest/reference/checks" - ], - [ - "/de/enterprise/2.13/user/rest/reference/code-scanning", - "/de/enterprise/2.13/v3/code-scanning", - "/de/enterprise/2.13/user/v3/code-scanning", - "/de/enterprise/2.13/rest/reference/code-scanning" - ], - [ - "/de/enterprise/2.14/user/rest/reference/code-scanning", - "/de/enterprise/2.14/v3/code-scanning", - "/de/enterprise/2.14/user/v3/code-scanning", - "/de/enterprise/2.14/rest/reference/code-scanning" - ], - [ - "/de/enterprise/2.15/user/rest/reference/code-scanning", - "/de/enterprise/2.15/v3/code-scanning", - "/de/enterprise/2.15/user/v3/code-scanning", - "/de/enterprise/2.15/rest/reference/code-scanning" - ], - [ - "/de/enterprise/2.16/user/rest/reference/code-scanning", - "/de/enterprise/2.16/v3/code-scanning", - "/de/enterprise/2.16/user/v3/code-scanning", - "/de/enterprise/2.16/rest/reference/code-scanning" - ], - [ - "/de/enterprise/2.17/user/rest/reference/code-scanning", - "/de/enterprise/2.17/v3/code-scanning", - "/de/enterprise/2.17/user/v3/code-scanning", - "/de/enterprise/2.17/rest/reference/code-scanning" - ], - [ - "/de/enterprise/2.13/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.13/v3/codes_of_conduct", - "/de/enterprise/2.13/user/v3/codes_of_conduct", - "/de/enterprise/2.13/v3/codes-of-conduct", - "/de/enterprise/2.13/user/v3/codes-of-conduct", - "/de/enterprise/2.13/rest/reference/codes-of-conduct" - ], - [ - "/de/enterprise/2.14/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.14/v3/codes_of_conduct", - "/de/enterprise/2.14/user/v3/codes_of_conduct", - "/de/enterprise/2.14/v3/codes-of-conduct", - "/de/enterprise/2.14/user/v3/codes-of-conduct", - "/de/enterprise/2.14/rest/reference/codes-of-conduct" - ], - [ - "/de/enterprise/2.15/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.15/v3/codes_of_conduct", - "/de/enterprise/2.15/user/v3/codes_of_conduct", - "/de/enterprise/2.15/v3/codes-of-conduct", - "/de/enterprise/2.15/user/v3/codes-of-conduct", - "/de/enterprise/2.15/rest/reference/codes-of-conduct" - ], - [ - "/de/enterprise/2.16/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.16/v3/codes_of_conduct", - "/de/enterprise/2.16/user/v3/codes_of_conduct", - "/de/enterprise/2.16/v3/codes-of-conduct", - "/de/enterprise/2.16/user/v3/codes-of-conduct", - "/de/enterprise/2.16/rest/reference/codes-of-conduct" - ], - [ - "/de/enterprise/2.17/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.17/v3/codes_of_conduct", - "/de/enterprise/2.17/user/v3/codes_of_conduct", - "/de/enterprise/2.17/v3/codes-of-conduct", - "/de/enterprise/2.17/user/v3/codes-of-conduct", - "/de/enterprise/2.17/rest/reference/codes-of-conduct" - ], - [ - "/de/enterprise/2.13/user/rest/reference/emojis", - "/de/enterprise/2.13/v3/emojis", - "/de/enterprise/2.13/user/v3/emojis", - "/de/enterprise/2.13/v3/misc", - "/de/enterprise/2.13/user/v3/misc", - "/de/enterprise/2.13/rest/reference/emojis" - ], - [ - "/de/enterprise/2.14/user/rest/reference/emojis", - "/de/enterprise/2.14/v3/emojis", - "/de/enterprise/2.14/user/v3/emojis", - "/de/enterprise/2.14/v3/misc", - "/de/enterprise/2.14/user/v3/misc", - "/de/enterprise/2.14/rest/reference/emojis" - ], - [ - "/de/enterprise/2.15/user/rest/reference/emojis", - "/de/enterprise/2.15/v3/emojis", - "/de/enterprise/2.15/user/v3/emojis", - "/de/enterprise/2.15/v3/misc", - "/de/enterprise/2.15/user/v3/misc", - "/de/enterprise/2.15/rest/reference/emojis" - ], - [ - "/de/enterprise/2.16/user/rest/reference/emojis", - "/de/enterprise/2.16/v3/emojis", - "/de/enterprise/2.16/user/v3/emojis", - "/de/enterprise/2.16/v3/misc", - "/de/enterprise/2.16/user/v3/misc", - "/de/enterprise/2.16/rest/reference/emojis" - ], - [ - "/de/enterprise/2.17/user/rest/reference/emojis", - "/de/enterprise/2.17/v3/emojis", - "/de/enterprise/2.17/user/v3/emojis", - "/de/enterprise/2.17/v3/misc", - "/de/enterprise/2.17/user/v3/misc", - "/de/enterprise/2.17/rest/reference/emojis" - ], - [ - "/de/enterprise/2.13/user/rest/reference/enterprise-admin", - "/de/enterprise/2.13/v3/enterprise-admin", - "/de/enterprise/2.13/user/v3/enterprise-admin", - "/de/enterprise/2.13/v3/enterprise", - "/de/enterprise/2.13/user/v3/enterprise", - "/de/enterprise/2.13/rest/reference/enterprise-admin" - ], - [ - "/de/enterprise/2.14/user/rest/reference/enterprise-admin", - "/de/enterprise/2.14/v3/enterprise-admin", - "/de/enterprise/2.14/user/v3/enterprise-admin", - "/de/enterprise/2.14/v3/enterprise", - "/de/enterprise/2.14/user/v3/enterprise", - "/de/enterprise/2.14/rest/reference/enterprise-admin" - ], - [ - "/de/enterprise/2.15/user/rest/reference/enterprise-admin", - "/de/enterprise/2.15/v3/enterprise-admin", - "/de/enterprise/2.15/user/v3/enterprise-admin", - "/de/enterprise/2.15/v3/enterprise", - "/de/enterprise/2.15/user/v3/enterprise", - "/de/enterprise/2.15/rest/reference/enterprise-admin" - ], - [ - "/de/enterprise/2.16/user/rest/reference/enterprise-admin", - "/de/enterprise/2.16/v3/enterprise-admin", - "/de/enterprise/2.16/user/v3/enterprise-admin", - "/de/enterprise/2.16/v3/enterprise", - "/de/enterprise/2.16/user/v3/enterprise", - "/de/enterprise/2.16/rest/reference/enterprise-admin" - ], - [ - "/de/enterprise/2.17/user/rest/reference/enterprise-admin", - "/de/enterprise/2.17/v3/enterprise-admin", - "/de/enterprise/2.17/user/v3/enterprise-admin", - "/de/enterprise/2.17/v3/enterprise", - "/de/enterprise/2.17/user/v3/enterprise", - "/de/enterprise/2.17/rest/reference/enterprise-admin" - ], - [ - "/de/enterprise/2.13/user/rest/reference/gists", - "/de/enterprise/2.13/v3/gists", - "/de/enterprise/2.13/user/v3/gists", - "/de/enterprise/2.13/rest/reference/gists" - ], - [ - "/de/enterprise/2.14/user/rest/reference/gists", - "/de/enterprise/2.14/v3/gists", - "/de/enterprise/2.14/user/v3/gists", - "/de/enterprise/2.14/rest/reference/gists" - ], - [ - "/de/enterprise/2.15/user/rest/reference/gists", - "/de/enterprise/2.15/v3/gists", - "/de/enterprise/2.15/user/v3/gists", - "/de/enterprise/2.15/rest/reference/gists" - ], - [ - "/de/enterprise/2.16/user/rest/reference/gists", - "/de/enterprise/2.16/v3/gists", - "/de/enterprise/2.16/user/v3/gists", - "/de/enterprise/2.16/rest/reference/gists" - ], - [ - "/de/enterprise/2.17/user/rest/reference/gists", - "/de/enterprise/2.17/v3/gists", - "/de/enterprise/2.17/user/v3/gists", - "/de/enterprise/2.17/rest/reference/gists" - ], - [ - "/de/enterprise/2.13/user/rest/reference/git", - "/de/enterprise/2.13/v3/git", - "/de/enterprise/2.13/user/v3/git", - "/de/enterprise/2.13/rest/reference/git" - ], - [ - "/de/enterprise/2.14/user/rest/reference/git", - "/de/enterprise/2.14/v3/git", - "/de/enterprise/2.14/user/v3/git", - "/de/enterprise/2.14/rest/reference/git" - ], - [ - "/de/enterprise/2.15/user/rest/reference/git", - "/de/enterprise/2.15/v3/git", - "/de/enterprise/2.15/user/v3/git", - "/de/enterprise/2.15/rest/reference/git" - ], - [ - "/de/enterprise/2.16/user/rest/reference/git", - "/de/enterprise/2.16/v3/git", - "/de/enterprise/2.16/user/v3/git", - "/de/enterprise/2.16/rest/reference/git" - ], - [ - "/de/enterprise/2.17/user/rest/reference/git", - "/de/enterprise/2.17/v3/git", - "/de/enterprise/2.17/user/v3/git", - "/de/enterprise/2.17/rest/reference/git" - ], - [ - "/de/enterprise/2.13/user/rest/reference/gitignore", - "/de/enterprise/2.13/v3/gitignore", - "/de/enterprise/2.13/user/v3/gitignore", - "/de/enterprise/2.13/rest/reference/gitignore" - ], - [ - "/de/enterprise/2.14/user/rest/reference/gitignore", - "/de/enterprise/2.14/v3/gitignore", - "/de/enterprise/2.14/user/v3/gitignore", - "/de/enterprise/2.14/rest/reference/gitignore" - ], - [ - "/de/enterprise/2.15/user/rest/reference/gitignore", - "/de/enterprise/2.15/v3/gitignore", - "/de/enterprise/2.15/user/v3/gitignore", - "/de/enterprise/2.15/rest/reference/gitignore" - ], - [ - "/de/enterprise/2.16/user/rest/reference/gitignore", - "/de/enterprise/2.16/v3/gitignore", - "/de/enterprise/2.16/user/v3/gitignore", - "/de/enterprise/2.16/rest/reference/gitignore" - ], - [ - "/de/enterprise/2.17/user/rest/reference/gitignore", - "/de/enterprise/2.17/v3/gitignore", - "/de/enterprise/2.17/user/v3/gitignore", - "/de/enterprise/2.17/rest/reference/gitignore" - ], - [ - "/de/enterprise/2.13/user/rest/reference", - "/de/enterprise/2.13/rest/reference" - ], - [ - "/de/enterprise/2.14/user/rest/reference", - "/de/enterprise/2.14/rest/reference" - ], - [ - "/de/enterprise/2.15/user/rest/reference", - "/de/enterprise/2.15/rest/reference" - ], - [ - "/de/enterprise/2.16/user/rest/reference", - "/de/enterprise/2.16/rest/reference" - ], - [ - "/de/enterprise/2.17/user/rest/reference", - "/de/enterprise/2.17/rest/reference" - ], - [ - "/de/enterprise/2.13/user/rest/reference/issues", - "/de/enterprise/2.13/v3/issues", - "/de/enterprise/2.13/user/v3/issues", - "/de/enterprise/2.13/rest/reference/issues" - ], - [ - "/de/enterprise/2.14/user/rest/reference/issues", - "/de/enterprise/2.14/v3/issues", - "/de/enterprise/2.14/user/v3/issues", - "/de/enterprise/2.14/rest/reference/issues" - ], - [ - "/de/enterprise/2.15/user/rest/reference/issues", - "/de/enterprise/2.15/v3/issues", - "/de/enterprise/2.15/user/v3/issues", - "/de/enterprise/2.15/rest/reference/issues" - ], - [ - "/de/enterprise/2.16/user/rest/reference/issues", - "/de/enterprise/2.16/v3/issues", - "/de/enterprise/2.16/user/v3/issues", - "/de/enterprise/2.16/rest/reference/issues" - ], - [ - "/de/enterprise/2.17/user/rest/reference/issues", - "/de/enterprise/2.17/v3/issues", - "/de/enterprise/2.17/user/v3/issues", - "/de/enterprise/2.17/rest/reference/issues" - ], - [ - "/de/enterprise/2.13/user/rest/reference/licenses", - "/de/enterprise/2.13/v3/licenses", - "/de/enterprise/2.13/user/v3/licenses", - "/de/enterprise/2.13/rest/reference/licenses" - ], - [ - "/de/enterprise/2.14/user/rest/reference/licenses", - "/de/enterprise/2.14/v3/licenses", - "/de/enterprise/2.14/user/v3/licenses", - "/de/enterprise/2.14/rest/reference/licenses" - ], - [ - "/de/enterprise/2.15/user/rest/reference/licenses", - "/de/enterprise/2.15/v3/licenses", - "/de/enterprise/2.15/user/v3/licenses", - "/de/enterprise/2.15/rest/reference/licenses" - ], - [ - "/de/enterprise/2.16/user/rest/reference/licenses", - "/de/enterprise/2.16/v3/licenses", - "/de/enterprise/2.16/user/v3/licenses", - "/de/enterprise/2.16/rest/reference/licenses" - ], - [ - "/de/enterprise/2.17/user/rest/reference/licenses", - "/de/enterprise/2.17/v3/licenses", - "/de/enterprise/2.17/user/v3/licenses", - "/de/enterprise/2.17/rest/reference/licenses" - ], - [ - "/de/enterprise/2.13/user/rest/reference/markdown", - "/de/enterprise/2.13/v3/markdown", - "/de/enterprise/2.13/user/v3/markdown", - "/de/enterprise/2.13/rest/reference/markdown" - ], - [ - "/de/enterprise/2.14/user/rest/reference/markdown", - "/de/enterprise/2.14/v3/markdown", - "/de/enterprise/2.14/user/v3/markdown", - "/de/enterprise/2.14/rest/reference/markdown" - ], - [ - "/de/enterprise/2.15/user/rest/reference/markdown", - "/de/enterprise/2.15/v3/markdown", - "/de/enterprise/2.15/user/v3/markdown", - "/de/enterprise/2.15/rest/reference/markdown" - ], - [ - "/de/enterprise/2.16/user/rest/reference/markdown", - "/de/enterprise/2.16/v3/markdown", - "/de/enterprise/2.16/user/v3/markdown", - "/de/enterprise/2.16/rest/reference/markdown" - ], - [ - "/de/enterprise/2.17/user/rest/reference/markdown", - "/de/enterprise/2.17/v3/markdown", - "/de/enterprise/2.17/user/v3/markdown", - "/de/enterprise/2.17/rest/reference/markdown" - ], - [ - "/de/enterprise/2.13/user/rest/reference/meta", - "/de/enterprise/2.13/v3/meta", - "/de/enterprise/2.13/user/v3/meta", - "/de/enterprise/2.13/rest/reference/meta" - ], - [ - "/de/enterprise/2.14/user/rest/reference/meta", - "/de/enterprise/2.14/v3/meta", - "/de/enterprise/2.14/user/v3/meta", - "/de/enterprise/2.14/rest/reference/meta" - ], - [ - "/de/enterprise/2.15/user/rest/reference/meta", - "/de/enterprise/2.15/v3/meta", - "/de/enterprise/2.15/user/v3/meta", - "/de/enterprise/2.15/rest/reference/meta" - ], - [ - "/de/enterprise/2.16/user/rest/reference/meta", - "/de/enterprise/2.16/v3/meta", - "/de/enterprise/2.16/user/v3/meta", - "/de/enterprise/2.16/rest/reference/meta" - ], - [ - "/de/enterprise/2.17/user/rest/reference/meta", - "/de/enterprise/2.17/v3/meta", - "/de/enterprise/2.17/user/v3/meta", - "/de/enterprise/2.17/rest/reference/meta" - ], - [ - "/de/enterprise/2.13/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.13/v3/oauth_authorizations", - "/de/enterprise/2.13/user/v3/oauth_authorizations", - "/de/enterprise/2.13/v3/oauth-authorizations", - "/de/enterprise/2.13/user/v3/oauth-authorizations", - "/de/enterprise/2.13/rest/reference/oauth-authorizations" - ], - [ - "/de/enterprise/2.14/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.14/v3/oauth_authorizations", - "/de/enterprise/2.14/user/v3/oauth_authorizations", - "/de/enterprise/2.14/v3/oauth-authorizations", - "/de/enterprise/2.14/user/v3/oauth-authorizations", - "/de/enterprise/2.14/rest/reference/oauth-authorizations" - ], - [ - "/de/enterprise/2.15/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.15/v3/oauth_authorizations", - "/de/enterprise/2.15/user/v3/oauth_authorizations", - "/de/enterprise/2.15/v3/oauth-authorizations", - "/de/enterprise/2.15/user/v3/oauth-authorizations", - "/de/enterprise/2.15/rest/reference/oauth-authorizations" - ], - [ - "/de/enterprise/2.16/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.16/v3/oauth_authorizations", - "/de/enterprise/2.16/user/v3/oauth_authorizations", - "/de/enterprise/2.16/v3/oauth-authorizations", - "/de/enterprise/2.16/user/v3/oauth-authorizations", - "/de/enterprise/2.16/rest/reference/oauth-authorizations" - ], - [ - "/de/enterprise/2.17/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.17/v3/oauth_authorizations", - "/de/enterprise/2.17/user/v3/oauth_authorizations", - "/de/enterprise/2.17/v3/oauth-authorizations", - "/de/enterprise/2.17/user/v3/oauth-authorizations", - "/de/enterprise/2.17/rest/reference/oauth-authorizations" - ], - [ - "/de/enterprise/2.13/user/rest/reference/orgs", - "/de/enterprise/2.13/v3/orgs", - "/de/enterprise/2.13/user/v3/orgs", - "/de/enterprise/2.13/rest/reference/orgs" - ], - [ - "/de/enterprise/2.14/user/rest/reference/orgs", - "/de/enterprise/2.14/v3/orgs", - "/de/enterprise/2.14/user/v3/orgs", - "/de/enterprise/2.14/rest/reference/orgs" - ], - [ - "/de/enterprise/2.15/user/rest/reference/orgs", - "/de/enterprise/2.15/v3/orgs", - "/de/enterprise/2.15/user/v3/orgs", - "/de/enterprise/2.15/rest/reference/orgs" - ], - [ - "/de/enterprise/2.16/user/rest/reference/orgs", - "/de/enterprise/2.16/v3/orgs", - "/de/enterprise/2.16/user/v3/orgs", - "/de/enterprise/2.16/rest/reference/orgs" - ], - [ - "/de/enterprise/2.17/user/rest/reference/orgs", - "/de/enterprise/2.17/v3/orgs", - "/de/enterprise/2.17/user/v3/orgs", - "/de/enterprise/2.17/rest/reference/orgs" - ], - [ - "/de/enterprise/2.13/user/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.13/v3/apps/permissions", - "/de/enterprise/2.13/user/v3/apps/permissions", - "/de/enterprise/2.13/rest/reference/permissions-required-for-github-apps" - ], - [ - "/de/enterprise/2.14/user/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.14/v3/apps/permissions", - "/de/enterprise/2.14/user/v3/apps/permissions", - "/de/enterprise/2.14/rest/reference/permissions-required-for-github-apps" - ], - [ - "/de/enterprise/2.15/user/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.15/v3/apps/permissions", - "/de/enterprise/2.15/user/v3/apps/permissions", - "/de/enterprise/2.15/rest/reference/permissions-required-for-github-apps" - ], - [ - "/de/enterprise/2.16/user/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.16/v3/apps/permissions", - "/de/enterprise/2.16/user/v3/apps/permissions", - "/de/enterprise/2.16/rest/reference/permissions-required-for-github-apps" - ], - [ - "/de/enterprise/2.17/user/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.17/v3/apps/permissions", - "/de/enterprise/2.17/user/v3/apps/permissions", - "/de/enterprise/2.17/rest/reference/permissions-required-for-github-apps" - ], - [ - "/de/enterprise/2.13/user/rest/reference/projects", - "/de/enterprise/2.13/v3/projects", - "/de/enterprise/2.13/user/v3/projects", - "/de/enterprise/2.13/rest/reference/projects" - ], - [ - "/de/enterprise/2.14/user/rest/reference/projects", - "/de/enterprise/2.14/v3/projects", - "/de/enterprise/2.14/user/v3/projects", - "/de/enterprise/2.14/rest/reference/projects" - ], - [ - "/de/enterprise/2.15/user/rest/reference/projects", - "/de/enterprise/2.15/v3/projects", - "/de/enterprise/2.15/user/v3/projects", - "/de/enterprise/2.15/rest/reference/projects" - ], - [ - "/de/enterprise/2.16/user/rest/reference/projects", - "/de/enterprise/2.16/v3/projects", - "/de/enterprise/2.16/user/v3/projects", - "/de/enterprise/2.16/rest/reference/projects" - ], - [ - "/de/enterprise/2.17/user/rest/reference/projects", - "/de/enterprise/2.17/v3/projects", - "/de/enterprise/2.17/user/v3/projects", - "/de/enterprise/2.17/rest/reference/projects" - ], - [ - "/de/enterprise/2.13/user/rest/reference/pulls", - "/de/enterprise/2.13/v3/pulls", - "/de/enterprise/2.13/user/v3/pulls", - "/de/enterprise/2.13/rest/reference/pulls" - ], - [ - "/de/enterprise/2.14/user/rest/reference/pulls", - "/de/enterprise/2.14/v3/pulls", - "/de/enterprise/2.14/user/v3/pulls", - "/de/enterprise/2.14/rest/reference/pulls" - ], - [ - "/de/enterprise/2.15/user/rest/reference/pulls", - "/de/enterprise/2.15/v3/pulls", - "/de/enterprise/2.15/user/v3/pulls", - "/de/enterprise/2.15/rest/reference/pulls" - ], - [ - "/de/enterprise/2.16/user/rest/reference/pulls", - "/de/enterprise/2.16/v3/pulls", - "/de/enterprise/2.16/user/v3/pulls", - "/de/enterprise/2.16/rest/reference/pulls" - ], - [ - "/de/enterprise/2.17/user/rest/reference/pulls", - "/de/enterprise/2.17/v3/pulls", - "/de/enterprise/2.17/user/v3/pulls", - "/de/enterprise/2.17/rest/reference/pulls" - ], - [ - "/de/enterprise/2.13/user/rest/reference/rate-limit", - "/de/enterprise/2.13/v3/rate_limit", - "/de/enterprise/2.13/user/v3/rate_limit", - "/de/enterprise/2.13/v3/rate-limit", - "/de/enterprise/2.13/user/v3/rate-limit", - "/de/enterprise/2.13/rest/reference/rate-limit" - ], - [ - "/de/enterprise/2.14/user/rest/reference/rate-limit", - "/de/enterprise/2.14/v3/rate_limit", - "/de/enterprise/2.14/user/v3/rate_limit", - "/de/enterprise/2.14/v3/rate-limit", - "/de/enterprise/2.14/user/v3/rate-limit", - "/de/enterprise/2.14/rest/reference/rate-limit" - ], - [ - "/de/enterprise/2.15/user/rest/reference/rate-limit", - "/de/enterprise/2.15/v3/rate_limit", - "/de/enterprise/2.15/user/v3/rate_limit", - "/de/enterprise/2.15/v3/rate-limit", - "/de/enterprise/2.15/user/v3/rate-limit", - "/de/enterprise/2.15/rest/reference/rate-limit" - ], - [ - "/de/enterprise/2.16/user/rest/reference/rate-limit", - "/de/enterprise/2.16/v3/rate_limit", - "/de/enterprise/2.16/user/v3/rate_limit", - "/de/enterprise/2.16/v3/rate-limit", - "/de/enterprise/2.16/user/v3/rate-limit", - "/de/enterprise/2.16/rest/reference/rate-limit" - ], - [ - "/de/enterprise/2.17/user/rest/reference/rate-limit", - "/de/enterprise/2.17/v3/rate_limit", - "/de/enterprise/2.17/user/v3/rate_limit", - "/de/enterprise/2.17/v3/rate-limit", - "/de/enterprise/2.17/user/v3/rate-limit", - "/de/enterprise/2.17/rest/reference/rate-limit" - ], - [ - "/de/enterprise/2.13/user/rest/reference/reactions", - "/de/enterprise/2.13/v3/reactions", - "/de/enterprise/2.13/user/v3/reactions", - "/de/enterprise/2.13/rest/reference/reactions" - ], - [ - "/de/enterprise/2.14/user/rest/reference/reactions", - "/de/enterprise/2.14/v3/reactions", - "/de/enterprise/2.14/user/v3/reactions", - "/de/enterprise/2.14/rest/reference/reactions" - ], - [ - "/de/enterprise/2.15/user/rest/reference/reactions", - "/de/enterprise/2.15/v3/reactions", - "/de/enterprise/2.15/user/v3/reactions", - "/de/enterprise/2.15/rest/reference/reactions" - ], - [ - "/de/enterprise/2.16/user/rest/reference/reactions", - "/de/enterprise/2.16/v3/reactions", - "/de/enterprise/2.16/user/v3/reactions", - "/de/enterprise/2.16/rest/reference/reactions" - ], - [ - "/de/enterprise/2.17/user/rest/reference/reactions", - "/de/enterprise/2.17/v3/reactions", - "/de/enterprise/2.17/user/v3/reactions", - "/de/enterprise/2.17/rest/reference/reactions" - ], - [ - "/de/enterprise/2.13/user/rest/reference/repos", - "/de/enterprise/2.13/v3/repos", - "/de/enterprise/2.13/user/v3/repos", - "/de/enterprise/2.13/rest/reference/repos" - ], - [ - "/de/enterprise/2.14/user/rest/reference/repos", - "/de/enterprise/2.14/v3/repos", - "/de/enterprise/2.14/user/v3/repos", - "/de/enterprise/2.14/rest/reference/repos" - ], - [ - "/de/enterprise/2.15/user/rest/reference/repos", - "/de/enterprise/2.15/v3/repos", - "/de/enterprise/2.15/user/v3/repos", - "/de/enterprise/2.15/rest/reference/repos" - ], - [ - "/de/enterprise/2.16/user/rest/reference/repos", - "/de/enterprise/2.16/v3/repos", - "/de/enterprise/2.16/user/v3/repos", - "/de/enterprise/2.16/rest/reference/repos" - ], - [ - "/de/enterprise/2.17/user/rest/reference/repos", - "/de/enterprise/2.17/v3/repos", - "/de/enterprise/2.17/user/v3/repos", - "/de/enterprise/2.17/rest/reference/repos" - ], - [ - "/de/enterprise/2.13/user/rest/reference/search", - "/de/enterprise/2.13/v3/search", - "/de/enterprise/2.13/user/v3/search", - "/de/enterprise/2.13/rest/reference/search" - ], - [ - "/de/enterprise/2.14/user/rest/reference/search", - "/de/enterprise/2.14/v3/search", - "/de/enterprise/2.14/user/v3/search", - "/de/enterprise/2.14/rest/reference/search" - ], - [ - "/de/enterprise/2.15/user/rest/reference/search", - "/de/enterprise/2.15/v3/search", - "/de/enterprise/2.15/user/v3/search", - "/de/enterprise/2.15/rest/reference/search" - ], - [ - "/de/enterprise/2.16/user/rest/reference/search", - "/de/enterprise/2.16/v3/search", - "/de/enterprise/2.16/user/v3/search", - "/de/enterprise/2.16/rest/reference/search" - ], - [ - "/de/enterprise/2.17/user/rest/reference/search", - "/de/enterprise/2.17/v3/search", - "/de/enterprise/2.17/user/v3/search", - "/de/enterprise/2.17/rest/reference/search" - ], - [ - "/de/enterprise/2.13/user/rest/reference/teams", - "/de/enterprise/2.13/v3/teams", - "/de/enterprise/2.13/user/v3/teams", - "/de/enterprise/2.13/rest/reference/teams" - ], - [ - "/de/enterprise/2.14/user/rest/reference/teams", - "/de/enterprise/2.14/v3/teams", - "/de/enterprise/2.14/user/v3/teams", - "/de/enterprise/2.14/rest/reference/teams" - ], - [ - "/de/enterprise/2.15/user/rest/reference/teams", - "/de/enterprise/2.15/v3/teams", - "/de/enterprise/2.15/user/v3/teams", - "/de/enterprise/2.15/rest/reference/teams" - ], - [ - "/de/enterprise/2.16/user/rest/reference/teams", - "/de/enterprise/2.16/v3/teams", - "/de/enterprise/2.16/user/v3/teams", - "/de/enterprise/2.16/rest/reference/teams" - ], - [ - "/de/enterprise/2.17/user/rest/reference/teams", - "/de/enterprise/2.17/v3/teams", - "/de/enterprise/2.17/user/v3/teams", - "/de/enterprise/2.17/rest/reference/teams" - ], - [ - "/de/enterprise/2.13/user/rest/reference/users", - "/de/enterprise/2.13/v3/users", - "/de/enterprise/2.13/user/v3/users", - "/de/enterprise/2.13/rest/reference/users" - ], - [ - "/de/enterprise/2.14/user/rest/reference/users", - "/de/enterprise/2.14/v3/users", - "/de/enterprise/2.14/user/v3/users", - "/de/enterprise/2.14/rest/reference/users" - ], - [ - "/de/enterprise/2.15/user/rest/reference/users", - "/de/enterprise/2.15/v3/users", - "/de/enterprise/2.15/user/v3/users", - "/de/enterprise/2.15/rest/reference/users" - ], - [ - "/de/enterprise/2.16/user/rest/reference/users", - "/de/enterprise/2.16/v3/users", - "/de/enterprise/2.16/user/v3/users", - "/de/enterprise/2.16/rest/reference/users" - ], - [ - "/de/enterprise/2.17/user/rest/reference/users", - "/de/enterprise/2.17/v3/users", - "/de/enterprise/2.17/user/v3/users", - "/de/enterprise/2.17/rest/reference/users" ] ] \ No newline at end of file diff --git a/lib/redirects/static/archived-redirects-from-213-to-217.json b/lib/redirects/static/archived-redirects-from-213-to-217.json index 1bcb02c37e..ab6cfe5d69 100644 --- a/lib/redirects/static/archived-redirects-from-213-to-217.json +++ b/lib/redirects/static/archived-redirects-from-213-to-217.json @@ -6408,700 +6408,6 @@ "/cn/enterprise/2.15/categories/visualizing-repository-data-with-graphs": "/cn/enterprise/2.15/user/categories/visualizing-repository-data-with-graphs", "/cn/enterprise/2.15/categories/working-with-github-pages": "/cn/enterprise/2.15/user/categories/working-with-github-pages", "/cn/enterprise/2.15/categories/writing-on-github": "/cn/enterprise/2.15/user/categories/writing-on-github", - "/de/enterprise/2.15/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/de/enterprise/2.15/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", - "/de/enterprise/2.15/admin/guides/articles/including-github-enterprise-contributions-in-your-githubcom-profile": "/de/enterprise/2.15/admin/articles/including-github-enterprise-contributions-in-your-githubcom-profile", - "/de/enterprise/2.15/admin/guides/articles/receiving-security-alerts-for-vulnerable-dependencies-on-github-enterprise": "/de/enterprise/2.15/admin/articles/receiving-security-alerts-for-vulnerable-dependencies-on-github-enterprise", - "/de/enterprise/2.15/admin/guides/articles/using-github-task-runner": "/de/enterprise/2.15/admin/articles/using-github-task-runner", - "/de/enterprise/2.15/admin/guides/clustering/about-cluster-nodes": "/de/enterprise/2.15/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.15/admin/guides/clustering/clustering-overview": "/de/enterprise/2.15/admin/clustering/clustering-overview", - "/de/enterprise/2.15/admin/guides/clustering/differences-between-clustering-and-high-availability-ha": "/de/enterprise/2.15/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.15/admin/guides/clustering/evacuating-a-cluster-node": "/de/enterprise/2.15/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.15/admin/guides/clustering": "/de/enterprise/2.15/admin/clustering", - "/de/enterprise/2.15/admin/guides/clustering/initializing-the-cluster": "/de/enterprise/2.15/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.15/admin/guides/clustering/managing-a-github-enterprise-server-cluster": "/de/enterprise/2.15/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.15/admin/guides/clustering/monitoring-cluster-nodes": "/de/enterprise/2.15/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.15/admin/guides/clustering/network-configuration": "/de/enterprise/2.15/admin/clustering/network-configuration", - "/de/enterprise/2.15/admin/guides/clustering/replacing-a-cluster-node": "/de/enterprise/2.15/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.15/admin/guides/clustering/setting-up-the-cluster-instances": "/de/enterprise/2.15/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.15/admin/guides/clustering/upgrading-a-cluster": "/de/enterprise/2.15/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.15/admin/guides/developer-workflow/about-pre-receive-hooks": "/de/enterprise/2.15/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.15/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks": "/de/enterprise/2.15/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance": "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository": "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization": "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.15/admin/guides/developer-workflow/blocking-force-pushes": "/de/enterprise/2.15/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.15/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks": "/de/enterprise/2.15/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.15/admin/guides/developer-workflow/continuous-integration-using-jenkins": "/de/enterprise/2.15/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.15/admin/guides/developer-workflow/continuous-integration-using-travis-ci": "/de/enterprise/2.15/admin/developer-workflow/continuous-integration-using-travis-ci", - "/de/enterprise/2.15/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment": "/de/enterprise/2.15/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.15/admin/guides/developer-workflow/creating-a-pre-receive-hook-script": "/de/enterprise/2.15/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.15/admin/guides/developer-workflow/customizing-your-instance-with-integrations": "/de/enterprise/2.15/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.15/admin/guides/developer-workflow/establishing-pull-request-merge-conditions": "/de/enterprise/2.15/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.15/admin/guides/developer-workflow": "/de/enterprise/2.15/admin/developer-workflow", - "/de/enterprise/2.15/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance": "/de/enterprise/2.15/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/developer-workflow/managing-projects-using-jira": "/de/enterprise/2.15/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.15/admin/guides/developer-workflow/troubleshooting-service-hooks": "/de/enterprise/2.15/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.15/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy": "/de/enterprise/2.15/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.15/admin/guides/developer-workflow/using-webhooks-for-continuous-integration": "/de/enterprise/2.15/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-enterprise-support": "/de/enterprise/2.15/admin/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server": "/de/enterprise/2.15/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise": "/de/enterprise/2.15/admin/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.15/admin/guides/enterprise-support": "/de/enterprise/2.15/admin/enterprise-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/preparing-to-submit-a-ticket": "/de/enterprise/2.15/admin/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.15/admin/guides/enterprise-support/providing-data-to-github-support": "/de/enterprise/2.15/admin/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/reaching-github-support": "/de/enterprise/2.15/admin/enterprise-support/reaching-github-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/receiving-help-from-github-support": "/de/enterprise/2.15/admin/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.15/admin/guides/enterprise-support/submitting-a-ticket": "/de/enterprise/2.15/admin/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.15/admin/guides": "/de/enterprise/2.15/admin", - "/de/enterprise/2.15/admin/guides/installation/about-geo-replication": "/de/enterprise/2.15/admin/installation/about-geo-replication", - "/de/enterprise/2.15/admin/guides/installation/about-high-availability-configuration": "/de/enterprise/2.15/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.15/admin/guides/installation/about-the-github-enterprise-server-api": "/de/enterprise/2.15/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-administrative-shell-ssh": "/de/enterprise/2.15/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-management-console": "/de/enterprise/2.15/admin/installation/accessing-the-management-console", - "/de/enterprise/2.15/admin/guides/installation/accessing-the-monitor-dashboard": "/de/enterprise/2.15/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.15/admin/guides/installation/activity-dashboard": "/de/enterprise/2.15/admin/installation/activity-dashboard", - "/de/enterprise/2.15/admin/guides/installation/audit-logging": "/de/enterprise/2.15/admin/installation/audit-logging", - "/de/enterprise/2.15/admin/guides/installation/audited-actions": "/de/enterprise/2.15/admin/installation/audited-actions", - "/de/enterprise/2.15/admin/guides/installation/command-line-utilities": "/de/enterprise/2.15/admin/installation/command-line-utilities", - "/de/enterprise/2.15/admin/guides/installation/configuring-a-hostname": "/de/enterprise/2.15/admin/installation/configuring-a-hostname", - "/de/enterprise/2.15/admin/guides/installation/configuring-an-outbound-web-proxy-server": "/de/enterprise/2.15/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-backups-on-your-appliance": "/de/enterprise/2.15/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-built-in-firewall-rules": "/de/enterprise/2.15/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.15/admin/guides/installation/configuring-collectd": "/de/enterprise/2.15/admin/installation/configuring-collectd", - "/de/enterprise/2.15/admin/guides/installation/configuring-dns-nameservers": "/de/enterprise/2.15/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server": "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server": "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.15/admin/guides/installation/configuring-git-large-file-storage": "/de/enterprise/2.15/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-enterprise-server-for-high-availability": "/de/enterprise/2.15/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.15/admin/guides/installation/configuring-github-pages-on-your-appliance": "/de/enterprise/2.15/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-rate-limits": "/de/enterprise/2.15/admin/installation/configuring-rate-limits", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance": "/de/enterprise/2.15/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-github-enterprise-server-appliance": "/de/enterprise/2.15/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console": "/de/enterprise/2.15/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.15/admin/guides/installation/configuring-time-synchronization": "/de/enterprise/2.15/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.15/admin/guides/installation/configuring-tls": "/de/enterprise/2.15/admin/installation/configuring-tls", - "/de/enterprise/2.15/admin/guides/installation/configuring-your-github-enterprise-server-network-settings": "/de/enterprise/2.15/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.15/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud": "/de/enterprise/2.15/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/installation/creating-a-high-availability-replica": "/de/enterprise/2.15/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.15/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server": "/de/enterprise/2.15/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories": "/de/enterprise/2.15/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.15/admin/guides/installation/enabling-and-scheduling-maintenance-mode": "/de/enterprise/2.15/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.15/admin/guides/installation/enabling-automatic-update-checks": "/de/enterprise/2.15/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.15/admin/guides/installation/enabling-private-mode": "/de/enterprise/2.15/admin/installation/enabling-private-mode", - "/de/enterprise/2.15/admin/guides/installation/enabling-subdomain-isolation": "/de/enterprise/2.15/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.15/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.15/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.15/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.15/admin/guides/installation/increasing-cpu-or-memory-resources": "/de/enterprise/2.15/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.15/admin/guides/installation/increasing-storage-capacity": "/de/enterprise/2.15/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.15/admin/guides/installation": "/de/enterprise/2.15/admin/installation", - "/de/enterprise/2.15/admin/guides/installation/initiating-a-failover-to-your-replica-appliance": "/de/enterprise/2.15/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-aws": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-azure": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-hyper-v": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-vmware": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.15/admin/guides/installation/installing-github-enterprise-server-on-xenserver": "/de/enterprise/2.15/admin/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.15/admin/guides/installation/log-forwarding": "/de/enterprise/2.15/admin/installation/log-forwarding", - "/de/enterprise/2.15/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud": "/de/enterprise/2.15/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.15/admin/guides/installation/managing-your-github-enterprise-server-license": "/de/enterprise/2.15/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.15/admin/guides/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later": "/de/enterprise/2.15/admin/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later", - "/de/enterprise/2.15/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123": "/de/enterprise/2.15/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.15/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server": "/de/enterprise/2.15/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.15/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance": "/de/enterprise/2.15/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/guides/installation/monitoring-using-snmp": "/de/enterprise/2.15/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.15/admin/guides/installation/monitoring-your-github-enterprise-server-appliance": "/de/enterprise/2.15/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.15/admin/guides/installation/network-ports": "/de/enterprise/2.15/admin/installation/network-ports", - "/de/enterprise/2.15/admin/guides/installation/recommended-alert-thresholds": "/de/enterprise/2.15/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.15/admin/guides/installation/recovering-a-high-availability-configuration": "/de/enterprise/2.15/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.15/admin/guides/installation/removing-a-high-availability-replica": "/de/enterprise/2.15/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.15/admin/guides/installation/searching-the-audit-log": "/de/enterprise/2.15/admin/installation/searching-the-audit-log", - "/de/enterprise/2.15/admin/guides/installation/setting-git-push-limits": "/de/enterprise/2.15/admin/installation/setting-git-push-limits", - "/de/enterprise/2.15/admin/guides/installation/setting-up-a-github-enterprise-server-instance": "/de/enterprise/2.15/admin/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/guides/installation/setting-up-a-staging-instance": "/de/enterprise/2.15/admin/installation/setting-up-a-staging-instance", - "/de/enterprise/2.15/admin/guides/installation/setting-up-external-monitoring": "/de/enterprise/2.15/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.15/admin/guides/installation/site-admin-dashboard": "/de/enterprise/2.15/admin/installation/site-admin-dashboard", - "/de/enterprise/2.15/admin/guides/installation/system-overview": "/de/enterprise/2.15/admin/installation/system-overview", - "/de/enterprise/2.15/admin/guides/installation/troubleshooting-ssl-errors": "/de/enterprise/2.15/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.15/admin/guides/installation/updating-the-virtual-machine-and-physical-resources": "/de/enterprise/2.15/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.15/admin/guides/installation/upgrade-requirements": "/de/enterprise/2.15/admin/installation/upgrade-requirements", - "/de/enterprise/2.15/admin/guides/installation/upgrading-github-enterprise-server": "/de/enterprise/2.15/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer": "/de/enterprise/2.15/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.15/admin/guides/installation/validating-your-domain-settings": "/de/enterprise/2.15/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.15/admin/guides/installation/viewing-push-logs": "/de/enterprise/2.15/admin/installation/viewing-push-logs", - "/de/enterprise/2.15/admin/guides/migrations/about-migrations": "/de/enterprise/2.15/admin/migrations/about-migrations", - "/de/enterprise/2.15/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server": "/de/enterprise/2.15/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/completing-the-import-on-github-enterprise-server": "/de/enterprise/2.15/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server": "/de/enterprise/2.15/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/exporting-migration-data-from-githubcom": "/de/enterprise/2.15/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories": "/de/enterprise/2.15/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.15/admin/guides/migrations/exporting-the-githubcom-organizations-repositories": "/de/enterprise/2.15/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.15/admin/guides/migrations/generating-a-list-of-migration-conflicts": "/de/enterprise/2.15/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.15/admin/guides/migrations/importing-data-from-third-party-version-control-systems": "/de/enterprise/2.15/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.15/admin/guides/migrations/importing-migration-data-to-github-enterprise-server": "/de/enterprise/2.15/admin/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations": "/de/enterprise/2.15/admin/migrations", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance": "/de/enterprise/2.15/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-githubcom-source-organization": "/de/enterprise/2.15/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.15/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server": "/de/enterprise/2.15/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.15/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings": "/de/enterprise/2.15/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.15/admin/guides/migrations/reviewing-migration-conflicts": "/de/enterprise/2.15/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.15/admin/guides/migrations/reviewing-migration-data": "/de/enterprise/2.15/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.15/admin/guides/user-management/about-global-webhooks": "/de/enterprise/2.15/admin/user-management/about-global-webhooks", - "/de/enterprise/2.15/admin/guides/user-management/adding-people-to-teams": "/de/enterprise/2.15/admin/user-management/adding-people-to-teams", - "/de/enterprise/2.15/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories": "/de/enterprise/2.15/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.15/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider": "/de/enterprise/2.15/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.15/admin/guides/user-management/archiving-and-unarchiving-repositories": "/de/enterprise/2.15/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.15/admin/guides/user-management/auditing-ssh-keys": "/de/enterprise/2.15/admin/user-management/auditing-ssh-keys", - "/de/enterprise/2.15/admin/guides/user-management/auditing-users-across-your-instance": "/de/enterprise/2.15/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.15/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance": "/de/enterprise/2.15/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.15/admin/guides/user-management/basic-account-settings": "/de/enterprise/2.15/admin/user-management/basic-account-settings", - "/de/enterprise/2.15/admin/guides/user-management/best-practices-for-user-security": "/de/enterprise/2.15/admin/user-management/best-practices-for-user-security", - "/de/enterprise/2.15/admin/guides/user-management/changing-authentication-methods": "/de/enterprise/2.15/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.15/admin/guides/user-management/configuring-email-for-notifications": "/de/enterprise/2.15/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.15/admin/guides/user-management/configuring-visibility-for-organization-membership": "/de/enterprise/2.15/admin/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.15/admin/guides/user-management/creating-organizations": "/de/enterprise/2.15/admin/user-management/creating-organizations", - "/de/enterprise/2.15/admin/guides/user-management/creating-teams": "/de/enterprise/2.15/admin/user-management/creating-teams", - "/de/enterprise/2.15/admin/guides/user-management/customizing-user-messages-on-your-instance": "/de/enterprise/2.15/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.15/admin/guides/user-management/disabling-unauthenticated-sign-ups": "/de/enterprise/2.15/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.15/admin/guides/user-management": "/de/enterprise/2.15/admin/user-management", - "/de/enterprise/2.15/admin/guides/user-management/managing-dormant-users": "/de/enterprise/2.15/admin/user-management/managing-dormant-users", - "/de/enterprise/2.15/admin/guides/user-management/managing-global-webhooks": "/de/enterprise/2.15/admin/user-management/managing-global-webhooks", - "/de/enterprise/2.15/admin/guides/user-management/organizations-and-teams": "/de/enterprise/2.15/admin/user-management/organizations-and-teams", - "/de/enterprise/2.15/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization": "/de/enterprise/2.15/admin/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility": "/de/enterprise/2.15/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access": "/de/enterprise/2.15/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-creating-organizations": "/de/enterprise/2.15/admin/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.15/admin/guides/user-management/preventing-users-from-deleting-organization-repositories": "/de/enterprise/2.15/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.15/admin/guides/user-management/promoting-or-demoting-a-site-administrator": "/de/enterprise/2.15/admin/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.15/admin/guides/user-management/rebuilding-contributions-data": "/de/enterprise/2.15/admin/user-management/rebuilding-contributions-data", - "/de/enterprise/2.15/admin/guides/user-management/removing-users-from-teams-and-organizations": "/de/enterprise/2.15/admin/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.15/admin/guides/user-management/repositories": "/de/enterprise/2.15/admin/user-management/repositories", - "/de/enterprise/2.15/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization": "/de/enterprise/2.15/admin/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.15/admin/guides/user-management/suspending-and-unsuspending-users": "/de/enterprise/2.15/admin/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.15/admin/guides/user-management/user-security": "/de/enterprise/2.15/admin/user-management/user-security", - "/de/enterprise/2.15/admin/guides/user-management/using-built-in-authentication": "/de/enterprise/2.15/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.15/admin/guides/user-management/using-cas": "/de/enterprise/2.15/admin/user-management/using-cas", - "/de/enterprise/2.15/admin/guides/user-management/using-ldap": "/de/enterprise/2.15/admin/user-management/using-ldap", - "/de/enterprise/2.15/admin/guides/user-management/using-saml": "/de/enterprise/2.15/admin/user-management/using-saml", - "/de/enterprise/2.15/articles/3d-file-viewer": "/de/enterprise/2.15/user/articles/3d-file-viewer", - "/de/enterprise/2.15/articles/about-archiving-repositories": "/de/enterprise/2.15/user/articles/about-archiving-repositories", - "/de/enterprise/2.15/articles/about-automation-for-issues-and-pull-requests-with-query-parameters": "/de/enterprise/2.15/user/articles/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.15/articles/about-automation-for-project-boards": "/de/enterprise/2.15/user/articles/about-automation-for-project-boards", - "/de/enterprise/2.15/articles/about-branch-restrictions": "/de/enterprise/2.15/user/articles/about-branch-restrictions", - "/de/enterprise/2.15/articles/about-branches": "/de/enterprise/2.15/user/articles/about-branches", - "/de/enterprise/2.15/articles/about-code-owners": "/de/enterprise/2.15/user/articles/about-code-owners", - "/de/enterprise/2.15/articles/about-collaborative-development-models": "/de/enterprise/2.15/user/articles/about-collaborative-development-models", - "/de/enterprise/2.15/articles/about-commit-signature-verification": "/de/enterprise/2.15/user/articles/about-commit-signature-verification", - "/de/enterprise/2.15/articles/about-comparing-branches-in-pull-requests": "/de/enterprise/2.15/user/articles/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.15/articles/about-conversations-on-github": "/de/enterprise/2.15/user/articles/about-conversations-on-github", - "/de/enterprise/2.15/articles/about-duplicate-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.15/articles/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.15/user/articles/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.15/articles/about-email-notifications": "/de/enterprise/2.15/user/articles/about-email-notifications", - "/de/enterprise/2.15/articles/about-forks": "/de/enterprise/2.15/user/articles/about-forks", - "/de/enterprise/2.15/articles/about-git-large-file-storage": "/de/enterprise/2.15/user/articles/about-git-large-file-storage", - "/de/enterprise/2.15/articles/about-git-rebase": "/de/enterprise/2.15/user/articles/about-git-rebase", - "/de/enterprise/2.15/articles/about-git-subtree-merges": "/de/enterprise/2.15/user/articles/about-git-subtree-merges", - "/de/enterprise/2.15/articles/about-github-pages-and-jekyll": "/de/enterprise/2.15/user/articles/about-github-pages-and-jekyll", - "/de/enterprise/2.15/articles/about-github-pages": "/de/enterprise/2.15/user/articles/about-github-pages", - "/de/enterprise/2.15/articles/about-issue-and-pull-request-templates": "/de/enterprise/2.15/user/articles/about-issue-and-pull-request-templates", - "/de/enterprise/2.15/articles/about-issues": "/de/enterprise/2.15/user/articles/about-issues", - "/de/enterprise/2.15/articles/about-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.15/user/articles/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/articles/about-labels": "/de/enterprise/2.15/user/articles/about-labels", - "/de/enterprise/2.15/articles/about-merge-conflicts": "/de/enterprise/2.15/user/articles/about-merge-conflicts", - "/de/enterprise/2.15/articles/about-merge-methods-on-github": "/de/enterprise/2.15/user/articles/about-merge-methods-on-github", - "/de/enterprise/2.15/articles/about-milestones": "/de/enterprise/2.15/user/articles/about-milestones", - "/de/enterprise/2.15/articles/about-notifications": "/de/enterprise/2.15/user/articles/about-notifications", - "/de/enterprise/2.15/articles/about-organization-membership": "/de/enterprise/2.15/user/articles/about-organization-membership", - "/de/enterprise/2.15/articles/about-organizations": "/de/enterprise/2.15/user/articles/about-organizations", - "/de/enterprise/2.15/articles/about-project-boards": "/de/enterprise/2.15/user/articles/about-project-boards", - "/de/enterprise/2.15/articles/about-protected-branches": "/de/enterprise/2.15/user/articles/about-protected-branches", - "/de/enterprise/2.15/articles/about-pull-request-merges": "/de/enterprise/2.15/user/articles/about-pull-request-merges", - "/de/enterprise/2.15/articles/about-pull-request-reviews": "/de/enterprise/2.15/user/articles/about-pull-request-reviews", - "/de/enterprise/2.15/articles/about-pull-requests": "/de/enterprise/2.15/user/articles/about-pull-requests", - "/de/enterprise/2.15/articles/about-readmes": "/de/enterprise/2.15/user/articles/about-readmes", - "/de/enterprise/2.15/articles/about-releases": "/de/enterprise/2.15/user/articles/about-releases", - "/de/enterprise/2.15/articles/about-remote-repositories": "/de/enterprise/2.15/user/articles/about-remote-repositories", - "/de/enterprise/2.15/articles/about-repositories": "/de/enterprise/2.15/user/articles/about-repositories", - "/de/enterprise/2.15/articles/about-repository-graphs": "/de/enterprise/2.15/user/articles/about-repository-graphs", - "/de/enterprise/2.15/articles/about-repository-languages": "/de/enterprise/2.15/user/articles/about-repository-languages", - "/de/enterprise/2.15/articles/about-required-commit-signing": "/de/enterprise/2.15/user/articles/about-required-commit-signing", - "/de/enterprise/2.15/articles/about-required-reviews-for-pull-requests": "/de/enterprise/2.15/user/articles/about-required-reviews-for-pull-requests", - "/de/enterprise/2.15/articles/about-required-status-checks": "/de/enterprise/2.15/user/articles/about-required-status-checks", - "/de/enterprise/2.15/articles/about-saved-replies": "/de/enterprise/2.15/user/articles/about-saved-replies", - "/de/enterprise/2.15/articles/about-searching-on-github": "/de/enterprise/2.15/user/articles/about-searching-on-github", - "/de/enterprise/2.15/articles/about-ssh": "/de/enterprise/2.15/user/articles/about-ssh", - "/de/enterprise/2.15/articles/about-status-checks": "/de/enterprise/2.15/user/articles/about-status-checks", - "/de/enterprise/2.15/articles/about-task-lists": "/de/enterprise/2.15/user/articles/about-task-lists", - "/de/enterprise/2.15/articles/about-team-discussions": "/de/enterprise/2.15/user/articles/about-team-discussions", - "/de/enterprise/2.15/articles/about-teams": "/de/enterprise/2.15/user/articles/about-teams", - "/de/enterprise/2.15/articles/about-two-factor-authentication": "/de/enterprise/2.15/user/articles/about-two-factor-authentication", - "/de/enterprise/2.15/articles/about-web-notifications": "/de/enterprise/2.15/user/articles/about-web-notifications", - "/de/enterprise/2.15/articles/about-webhooks": "/de/enterprise/2.15/user/articles/about-webhooks", - "/de/enterprise/2.15/articles/about-wikis": "/de/enterprise/2.15/user/articles/about-wikis", - "/de/enterprise/2.15/articles/about-writing-and-formatting-on-github": "/de/enterprise/2.15/user/articles/about-writing-and-formatting-on-github", - "/de/enterprise/2.15/articles/about-your-organization-dashboard": "/de/enterprise/2.15/user/articles/about-your-organization-dashboard", - "/de/enterprise/2.15/articles/about-your-organizations-news-feed": "/de/enterprise/2.15/user/articles/about-your-organizations-news-feed", - "/de/enterprise/2.15/articles/about-your-organizations-profile": "/de/enterprise/2.15/user/articles/about-your-organizations-profile", - "/de/enterprise/2.15/articles/about-your-personal-dashboard": "/de/enterprise/2.15/user/articles/about-your-personal-dashboard", - "/de/enterprise/2.15/articles/about-your-profile": "/de/enterprise/2.15/user/articles/about-your-profile", - "/de/enterprise/2.15/articles/access-permissions-on-github": "/de/enterprise/2.15/user/articles/access-permissions-on-github", - "/de/enterprise/2.15/articles/accessing-an-organization": "/de/enterprise/2.15/user/articles/accessing-an-organization", - "/de/enterprise/2.15/articles/accessing-basic-repository-data": "/de/enterprise/2.15/user/articles/accessing-basic-repository-data", - "/de/enterprise/2.15/articles/accessing-github-using-two-factor-authentication": "/de/enterprise/2.15/user/articles/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.15/articles/accessing-your-notifications": "/de/enterprise/2.15/user/articles/accessing-your-notifications", - "/de/enterprise/2.15/articles/accessing-your-organizations-settings": "/de/enterprise/2.15/user/articles/accessing-your-organizations-settings", - "/de/enterprise/2.15/articles/adding-a-file-to-a-repository-using-the-command-line": "/de/enterprise/2.15/user/articles/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.15/articles/adding-a-file-to-a-repository": "/de/enterprise/2.15/user/articles/adding-a-file-to-a-repository", - "/de/enterprise/2.15/articles/adding-a-license-to-a-repository": "/de/enterprise/2.15/user/articles/adding-a-license-to-a-repository", - "/de/enterprise/2.15/articles/adding-a-new-gpg-key-to-your-github-account": "/de/enterprise/2.15/user/articles/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.15/articles/adding-a-new-ssh-key-to-your-github-account": "/de/enterprise/2.15/user/articles/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.15/articles/adding-a-remote": "/de/enterprise/2.15/user/articles/adding-a-remote", - "/de/enterprise/2.15/articles/adding-a-theme-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.15/user/articles/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/adding-an-email-address-to-your-github-account": "/de/enterprise/2.15/user/articles/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.15/articles/adding-an-existing-project-to-github-using-the-command-line": "/de/enterprise/2.15/user/articles/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.15/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization": "/de/enterprise/2.15/user/articles/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.15/articles/adding-content-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.15/user/articles/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/adding-issues-and-pull-requests-to-a-project-board": "/de/enterprise/2.15/user/articles/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.15/articles/adding-notes-to-a-project-board": "/de/enterprise/2.15/user/articles/adding-notes-to-a-project-board", - "/de/enterprise/2.15/articles/adding-or-editing-wiki-pages": "/de/enterprise/2.15/user/articles/adding-or-editing-wiki-pages", - "/de/enterprise/2.15/articles/adding-organization-members-to-a-team": "/de/enterprise/2.15/user/articles/adding-organization-members-to-a-team", - "/de/enterprise/2.15/articles/adding-outside-collaborators-to-repositories-in-your-organization": "/de/enterprise/2.15/user/articles/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.15/articles/adding-people-to-your-organization": "/de/enterprise/2.15/user/articles/adding-people-to-your-organization", - "/de/enterprise/2.15/articles/adding-support-resources-to-your-project": "/de/enterprise/2.15/user/articles/adding-support-resources-to-your-project", - "/de/enterprise/2.15/articles/addressing-merge-conflicts": "/de/enterprise/2.15/user/articles/addressing-merge-conflicts", - "/de/enterprise/2.15/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.15/user/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization": "/de/enterprise/2.15/user/articles/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.15/articles/allowing-people-to-fork-private-repositories-in-your-organization": "/de/enterprise/2.15/user/articles/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.15/articles/analyzing-changes-to-a-repositorys-content": "/de/enterprise/2.15/user/articles/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.15/articles/applying-labels-to-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.15/articles/approving-a-pull-request-with-required-reviews": "/de/enterprise/2.15/user/articles/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.15/articles/archiving-a-github-repository": "/de/enterprise/2.15/user/articles/archiving-a-github-repository", - "/de/enterprise/2.15/articles/archiving-cards-on-a-project-board": "/de/enterprise/2.15/user/articles/archiving-cards-on-a-project-board", - "/de/enterprise/2.15/articles/archiving-repositories": "/de/enterprise/2.15/user/articles/archiving-repositories", - "/de/enterprise/2.15/articles/assigning-issues-and-pull-requests-to-other-github-users": "/de/enterprise/2.15/user/articles/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.15/articles/associating-an-email-with-your-gpg-key": "/de/enterprise/2.15/user/articles/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.15/articles/associating-milestones-with-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.15/articles/associating-text-editors-with-git": "/de/enterprise/2.15/user/articles/associating-text-editors-with-git", - "/de/enterprise/2.15/articles/authorizing-oauth-apps": "/de/enterprise/2.15/user/articles/authorizing-oauth-apps", - "/de/enterprise/2.15/articles/autolinked-references-and-urls": "/de/enterprise/2.15/user/articles/autolinked-references-and-urls", - "/de/enterprise/2.15/articles/backing-up-a-repository": "/de/enterprise/2.15/user/articles/backing-up-a-repository", - "/de/enterprise/2.15/articles/basic-writing-and-formatting-syntax": "/de/enterprise/2.15/user/articles/basic-writing-and-formatting-syntax", - "/de/enterprise/2.15/articles/be-social": "/de/enterprise/2.15/user/articles/be-social", - "/de/enterprise/2.15/articles/caching-your-github-password-in-git": "/de/enterprise/2.15/user/articles/caching-your-github-password-in-git", - "/de/enterprise/2.15/articles/changing-a-commit-message": "/de/enterprise/2.15/user/articles/changing-a-commit-message", - "/de/enterprise/2.15/articles/changing-a-persons-role-to-owner": "/de/enterprise/2.15/user/articles/changing-a-persons-role-to-owner", - "/de/enterprise/2.15/articles/changing-a-remotes-url": "/de/enterprise/2.15/user/articles/changing-a-remotes-url", - "/de/enterprise/2.15/articles/changing-access-permissions-for-wikis": "/de/enterprise/2.15/user/articles/changing-access-permissions-for-wikis", - "/de/enterprise/2.15/articles/changing-author-info": "/de/enterprise/2.15/user/articles/changing-author-info", - "/de/enterprise/2.15/articles/changing-project-board-visibility": "/de/enterprise/2.15/user/articles/changing-project-board-visibility", - "/de/enterprise/2.15/articles/changing-team-visibility": "/de/enterprise/2.15/user/articles/changing-team-visibility", - "/de/enterprise/2.15/articles/changing-the-base-branch-of-a-pull-request": "/de/enterprise/2.15/user/articles/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.15/articles/changing-your-github-username": "/de/enterprise/2.15/user/articles/changing-your-github-username", - "/de/enterprise/2.15/articles/changing-your-primary-email-address": "/de/enterprise/2.15/user/articles/changing-your-primary-email-address", - "/de/enterprise/2.15/articles/checking-for-existing-gpg-keys": "/de/enterprise/2.15/user/articles/checking-for-existing-gpg-keys", - "/de/enterprise/2.15/articles/checking-for-existing-ssh-keys": "/de/enterprise/2.15/user/articles/checking-for-existing-ssh-keys", - "/de/enterprise/2.15/articles/checking-out-pull-requests-locally": "/de/enterprise/2.15/user/articles/checking-out-pull-requests-locally", - "/de/enterprise/2.15/articles/checking-your-commit-and-tag-signature-verification-status": "/de/enterprise/2.15/user/articles/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.15/articles/choosing-the-delivery-method-for-your-notifications": "/de/enterprise/2.15/user/articles/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.15/articles/classifying-your-repository-with-topics": "/de/enterprise/2.15/user/articles/classifying-your-repository-with-topics", - "/de/enterprise/2.15/articles/cloning-a-repository-from-github": "/de/enterprise/2.15/user/articles/cloning-a-repository-from-github", - "/de/enterprise/2.15/articles/cloning-a-repository": "/de/enterprise/2.15/user/articles/cloning-a-repository", - "/de/enterprise/2.15/articles/closing-a-project-board": "/de/enterprise/2.15/user/articles/closing-a-project-board", - "/de/enterprise/2.15/articles/closing-a-pull-request": "/de/enterprise/2.15/user/articles/closing-a-pull-request", - "/de/enterprise/2.15/articles/closing-issues-using-keywords": "/de/enterprise/2.15/user/articles/closing-issues-using-keywords", - "/de/enterprise/2.15/articles/collaborating-on-repositories-with-code-quality-features": "/de/enterprise/2.15/user/articles/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.15/articles/collaborating-with-groups-in-organizations": "/de/enterprise/2.15/user/articles/collaborating-with-groups-in-organizations", - "/de/enterprise/2.15/articles/collaborating-with-your-team": "/de/enterprise/2.15/user/articles/collaborating-with-your-team", - "/de/enterprise/2.15/articles/collaboration-with-git-large-file-storage": "/de/enterprise/2.15/user/articles/collaboration-with-git-large-file-storage", - "/de/enterprise/2.15/articles/commenting-on-a-pull-request": "/de/enterprise/2.15/user/articles/commenting-on-a-pull-request", - "/de/enterprise/2.15/articles/commit-branch-and-tag-labels": "/de/enterprise/2.15/user/articles/commit-branch-and-tag-labels", - "/de/enterprise/2.15/articles/commit-exists-on-github-but-not-in-my-local-clone": "/de/enterprise/2.15/user/articles/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.15/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.15/user/articles/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.15/articles/comparing-commits-across-time": "/de/enterprise/2.15/user/articles/comparing-commits-across-time", - "/de/enterprise/2.15/articles/conditions-for-large-files": "/de/enterprise/2.15/user/articles/conditions-for-large-files", - "/de/enterprise/2.15/articles/configuring-a-publishing-source-for-your-github-pages-site": "/de/enterprise/2.15/user/articles/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.15/articles/configuring-a-remote-for-a-fork": "/de/enterprise/2.15/user/articles/configuring-a-remote-for-a-fork", - "/de/enterprise/2.15/articles/configuring-automation-for-project-boards": "/de/enterprise/2.15/user/articles/configuring-automation-for-project-boards", - "/de/enterprise/2.15/articles/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.15/user/articles/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.15/articles/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.15/user/articles/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.15/articles/configuring-git-large-file-storage": "/de/enterprise/2.15/user/articles/configuring-git-large-file-storage", - "/de/enterprise/2.15/articles/configuring-git-to-handle-line-endings": "/de/enterprise/2.15/user/articles/configuring-git-to-handle-line-endings", - "/de/enterprise/2.15/articles/configuring-protected-branches": "/de/enterprise/2.15/user/articles/configuring-protected-branches", - "/de/enterprise/2.15/articles/configuring-pull-request-merges": "/de/enterprise/2.15/user/articles/configuring-pull-request-merges", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication-recovery-methods": "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.15/articles/configuring-two-factor-authentication": "/de/enterprise/2.15/user/articles/configuring-two-factor-authentication", - "/de/enterprise/2.15/articles/connecting-to-github-with-ssh": "/de/enterprise/2.15/user/articles/connecting-to-github-with-ssh", - "/de/enterprise/2.15/articles/connecting-with-third-party-applications": "/de/enterprise/2.15/user/articles/connecting-with-third-party-applications", - "/de/enterprise/2.15/articles/converting-a-user-into-an-organization": "/de/enterprise/2.15/user/articles/converting-a-user-into-an-organization", - "/de/enterprise/2.15/articles/converting-an-admin-team-to-improved-organization-permissions": "/de/enterprise/2.15/user/articles/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/converting-an-organization-into-a-user": "/de/enterprise/2.15/user/articles/converting-an-organization-into-a-user", - "/de/enterprise/2.15/articles/converting-an-organization-member-to-an-outside-collaborator": "/de/enterprise/2.15/user/articles/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.15/articles/converting-an-outside-collaborator-to-an-organization-member": "/de/enterprise/2.15/user/articles/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.15/articles/converting-an-owners-team-to-improved-organization-permissions": "/de/enterprise/2.15/user/articles/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/create-a-repo": "/de/enterprise/2.15/user/articles/create-a-repo", - "/de/enterprise/2.15/articles/creating-a-commit-with-multiple-authors": "/de/enterprise/2.15/user/articles/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.15/articles/creating-a-custom-404-page-for-your-github-pages-site": "/de/enterprise/2.15/user/articles/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.15/articles/creating-a-footer-or-sidebar-for-your-wiki": "/de/enterprise/2.15/user/articles/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.15/articles/creating-a-github-pages-site-with-jekyll": "/de/enterprise/2.15/user/articles/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/articles/creating-a-github-pages-site": "/de/enterprise/2.15/user/articles/creating-a-github-pages-site", - "/de/enterprise/2.15/articles/creating-a-label": "/de/enterprise/2.15/user/articles/creating-a-label", - "/de/enterprise/2.15/articles/creating-a-new-organization-from-scratch": "/de/enterprise/2.15/user/articles/creating-a-new-organization-from-scratch", - "/de/enterprise/2.15/articles/creating-a-new-repository": "/de/enterprise/2.15/user/articles/creating-a-new-repository", - "/de/enterprise/2.15/articles/creating-a-permanent-link-to-a-code-snippet": "/de/enterprise/2.15/user/articles/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.15/articles/creating-a-personal-access-token-for-the-command-line": "/de/enterprise/2.15/user/articles/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.15/articles/creating-a-project-board": "/de/enterprise/2.15/user/articles/creating-a-project-board", - "/de/enterprise/2.15/articles/creating-a-pull-request-from-a-fork": "/de/enterprise/2.15/user/articles/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.15/articles/creating-a-pull-request-template-for-your-repository": "/de/enterprise/2.15/user/articles/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.15/articles/creating-a-pull-request": "/de/enterprise/2.15/user/articles/creating-a-pull-request", - "/de/enterprise/2.15/articles/creating-a-repository-on-github": "/de/enterprise/2.15/user/articles/creating-a-repository-on-github", - "/de/enterprise/2.15/articles/creating-a-saved-reply": "/de/enterprise/2.15/user/articles/creating-a-saved-reply", - "/de/enterprise/2.15/articles/creating-a-strong-password": "/de/enterprise/2.15/user/articles/creating-a-strong-password", - "/de/enterprise/2.15/articles/creating-a-team-discussion": "/de/enterprise/2.15/user/articles/creating-a-team-discussion", - "/de/enterprise/2.15/articles/creating-a-team": "/de/enterprise/2.15/user/articles/creating-a-team", - "/de/enterprise/2.15/articles/creating-an-issue": "/de/enterprise/2.15/user/articles/creating-an-issue", - "/de/enterprise/2.15/articles/creating-an-issues-only-repository": "/de/enterprise/2.15/user/articles/creating-an-issues-only-repository", - "/de/enterprise/2.15/articles/creating-and-deleting-branches-within-your-repository": "/de/enterprise/2.15/user/articles/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.15/articles/creating-and-editing-commits": "/de/enterprise/2.15/user/articles/creating-and-editing-commits", - "/de/enterprise/2.15/articles/creating-and-editing-milestones-for-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.15/articles/creating-and-highlighting-code-blocks": "/de/enterprise/2.15/user/articles/creating-and-highlighting-code-blocks", - "/de/enterprise/2.15/articles/creating-gists": "/de/enterprise/2.15/user/articles/creating-gists", - "/de/enterprise/2.15/articles/creating-issue-templates-for-your-repository": "/de/enterprise/2.15/user/articles/creating-issue-templates-for-your-repository", - "/de/enterprise/2.15/articles/creating-new-files": "/de/enterprise/2.15/user/articles/creating-new-files", - "/de/enterprise/2.15/articles/creating-releases": "/de/enterprise/2.15/user/articles/creating-releases", - "/de/enterprise/2.15/articles/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.15/user/articles/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.15/articles/customizing-your-profile": "/de/enterprise/2.15/user/articles/customizing-your-profile", - "/de/enterprise/2.15/articles/dealing-with-non-fast-forward-errors": "/de/enterprise/2.15/user/articles/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.15/articles/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.15/user/articles/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.15/articles/deleting-a-label": "/de/enterprise/2.15/user/articles/deleting-a-label", - "/de/enterprise/2.15/articles/deleting-a-project-board": "/de/enterprise/2.15/user/articles/deleting-a-project-board", - "/de/enterprise/2.15/articles/deleting-a-repository": "/de/enterprise/2.15/user/articles/deleting-a-repository", - "/de/enterprise/2.15/articles/deleting-a-saved-reply": "/de/enterprise/2.15/user/articles/deleting-a-saved-reply", - "/de/enterprise/2.15/articles/deleting-a-team": "/de/enterprise/2.15/user/articles/deleting-a-team", - "/de/enterprise/2.15/articles/deleting-an-organization-account": "/de/enterprise/2.15/user/articles/deleting-an-organization-account", - "/de/enterprise/2.15/articles/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.15/user/articles/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.15/articles/deleting-files": "/de/enterprise/2.15/user/articles/deleting-files", - "/de/enterprise/2.15/articles/deleting-your-user-account": "/de/enterprise/2.15/user/articles/deleting-your-user-account", - "/de/enterprise/2.15/articles/differences-between-commit-views": "/de/enterprise/2.15/user/articles/differences-between-commit-views", - "/de/enterprise/2.15/articles/disabling-issues": "/de/enterprise/2.15/user/articles/disabling-issues", - "/de/enterprise/2.15/articles/disabling-project-boards-in-a-repository": "/de/enterprise/2.15/user/articles/disabling-project-boards-in-a-repository", - "/de/enterprise/2.15/articles/disabling-project-boards-in-your-organization": "/de/enterprise/2.15/user/articles/disabling-project-boards-in-your-organization", - "/de/enterprise/2.15/articles/disabling-team-discussions-for-your-organization": "/de/enterprise/2.15/user/articles/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.15/articles/disabling-two-factor-authentication-for-your-personal-account": "/de/enterprise/2.15/user/articles/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.15/articles/disabling-wikis": "/de/enterprise/2.15/user/articles/disabling-wikis", - "/de/enterprise/2.15/articles/dismissing-a-pull-request-review": "/de/enterprise/2.15/user/articles/dismissing-a-pull-request-review", - "/de/enterprise/2.15/articles/distributing-large-binaries": "/de/enterprise/2.15/user/articles/distributing-large-binaries", - "/de/enterprise/2.15/articles/documenting-your-project-with-wikis": "/de/enterprise/2.15/user/articles/documenting-your-project-with-wikis", - "/de/enterprise/2.15/articles/duplicating-a-repository": "/de/enterprise/2.15/user/articles/duplicating-a-repository", - "/de/enterprise/2.15/articles/editing-a-label": "/de/enterprise/2.15/user/articles/editing-a-label", - "/de/enterprise/2.15/articles/editing-a-project-board": "/de/enterprise/2.15/user/articles/editing-a-project-board", - "/de/enterprise/2.15/articles/editing-a-saved-reply": "/de/enterprise/2.15/user/articles/editing-a-saved-reply", - "/de/enterprise/2.15/articles/editing-and-deleting-releases": "/de/enterprise/2.15/user/articles/editing-and-deleting-releases", - "/de/enterprise/2.15/articles/editing-and-sharing-content-with-gists": "/de/enterprise/2.15/user/articles/editing-and-sharing-content-with-gists", - "/de/enterprise/2.15/articles/editing-files-in-another-users-repository": "/de/enterprise/2.15/user/articles/editing-files-in-another-users-repository", - "/de/enterprise/2.15/articles/editing-files-in-your-repository": "/de/enterprise/2.15/user/articles/editing-files-in-your-repository", - "/de/enterprise/2.15/articles/editing-or-deleting-a-team-discussion": "/de/enterprise/2.15/user/articles/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.15/articles/editing-wiki-content": "/de/enterprise/2.15/user/articles/editing-wiki-content", - "/de/enterprise/2.15/articles/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.15/user/articles/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.15/articles/enabling-branch-restrictions": "/de/enterprise/2.15/user/articles/enabling-branch-restrictions", - "/de/enterprise/2.15/articles/enabling-githubcom-repository-search-in-github-enterprise-server": "/de/enterprise/2.15/user/articles/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.15/articles/enabling-required-commit-signing": "/de/enterprise/2.15/user/articles/enabling-required-commit-signing", - "/de/enterprise/2.15/articles/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.15/user/articles/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.15/articles/enabling-required-status-checks": "/de/enterprise/2.15/user/articles/enabling-required-status-checks", - "/de/enterprise/2.15/articles/error-agent-admitted-failure-to-sign": "/de/enterprise/2.15/user/articles/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.15/articles/error-bad-file-number": "/de/enterprise/2.15/user/articles/error-bad-file-number", - "/de/enterprise/2.15/articles/error-key-already-in-use": "/de/enterprise/2.15/user/articles/error-key-already-in-use", - "/de/enterprise/2.15/articles/error-permission-denied-publickey": "/de/enterprise/2.15/user/articles/error-permission-denied-publickey", - "/de/enterprise/2.15/articles/error-permission-to-userrepo-denied-to-other-user": "/de/enterprise/2.15/user/articles/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.15/articles/error-permission-to-userrepo-denied-to-userother-repo": "/de/enterprise/2.15/user/articles/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.15/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout": "/de/enterprise/2.15/user/articles/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.15/articles/error-repository-not-found": "/de/enterprise/2.15/user/articles/error-repository-not-found", - "/de/enterprise/2.15/articles/error-ssh-add-illegal-option----k": "/de/enterprise/2.15/user/articles/error-ssh-add-illegal-option----k", - "/de/enterprise/2.15/articles/error-were-doing-an-ssh-key-audit": "/de/enterprise/2.15/user/articles/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.15/articles/exploring-projects-on-github": "/de/enterprise/2.15/user/articles/exploring-projects-on-github", - "/de/enterprise/2.15/articles/file-attachments-on-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.15/articles/filtering-cards-on-a-project-board": "/de/enterprise/2.15/user/articles/filtering-cards-on-a-project-board", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-assignees": "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-labels": "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests-by-milestone": "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.15/articles/filtering-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/filtering-issues-and-pull-requests", - "/de/enterprise/2.15/articles/filtering-pull-requests-by-review-status": "/de/enterprise/2.15/user/articles/filtering-pull-requests-by-review-status", - "/de/enterprise/2.15/articles/finding-changed-methods-and-functions-in-a-pull-request": "/de/enterprise/2.15/user/articles/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.15/articles/finding-files-on-github": "/de/enterprise/2.15/user/articles/finding-files-on-github", - "/de/enterprise/2.15/articles/finding-information-in-a-repository": "/de/enterprise/2.15/user/articles/finding-information-in-a-repository", - "/de/enterprise/2.15/articles/following-people": "/de/enterprise/2.15/user/articles/following-people", - "/de/enterprise/2.15/articles/fork-a-repo": "/de/enterprise/2.15/user/articles/fork-a-repo", - "/de/enterprise/2.15/articles/forking-and-cloning-gists": "/de/enterprise/2.15/user/articles/forking-and-cloning-gists", - "/de/enterprise/2.15/articles/generating-a-new-gpg-key": "/de/enterprise/2.15/user/articles/generating-a-new-gpg-key", - "/de/enterprise/2.15/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent": "/de/enterprise/2.15/user/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.15/articles/getting-changes-from-a-remote-repository": "/de/enterprise/2.15/user/articles/getting-changes-from-a-remote-repository", - "/de/enterprise/2.15/articles/getting-permanent-links-to-files": "/de/enterprise/2.15/user/articles/getting-permanent-links-to-files", - "/de/enterprise/2.15/articles/getting-started-with-git-and-github": "/de/enterprise/2.15/user/articles/getting-started-with-git-and-github", - "/de/enterprise/2.15/articles/getting-started-with-github-pages": "/de/enterprise/2.15/user/articles/getting-started-with-github-pages", - "/de/enterprise/2.15/articles/getting-started-with-notifications": "/de/enterprise/2.15/user/articles/getting-started-with-notifications", - "/de/enterprise/2.15/articles/getting-started-with-searching-on-github": "/de/enterprise/2.15/user/articles/getting-started-with-searching-on-github", - "/de/enterprise/2.15/articles/getting-started-with-the-api": "/de/enterprise/2.15/user/articles/getting-started-with-the-api", - "/de/enterprise/2.15/articles/getting-started-with-writing-and-formatting-on-github": "/de/enterprise/2.15/user/articles/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.15/articles/getting-the-download-count-for-your-releases": "/de/enterprise/2.15/user/articles/getting-the-download-count-for-your-releases", - "/de/enterprise/2.15/articles/git-and-github-learning-resources": "/de/enterprise/2.15/user/articles/git-and-github-learning-resources", - "/de/enterprise/2.15/articles/git-automation-with-oauth-tokens": "/de/enterprise/2.15/user/articles/git-automation-with-oauth-tokens", - "/de/enterprise/2.15/articles/git-cheatsheet": "/de/enterprise/2.15/user/articles/git-cheatsheet", - "/de/enterprise/2.15/articles/git-workflows": "/de/enterprise/2.15/user/articles/git-workflows", - "/de/enterprise/2.15/articles/github-flow": "/de/enterprise/2.15/user/articles/github-flow", - "/de/enterprise/2.15/articles/github-glossary": "/de/enterprise/2.15/user/articles/github-glossary", - "/de/enterprise/2.15/articles/giving-team-maintainer-permissions-to-an-organization-member": "/de/enterprise/2.15/user/articles/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.15/articles/https-cloning-errors": "/de/enterprise/2.15/user/articles/https-cloning-errors", - "/de/enterprise/2.15/articles/ignoring-files": "/de/enterprise/2.15/user/articles/ignoring-files", - "/de/enterprise/2.15/articles/importing-a-git-repository-using-the-command-line": "/de/enterprise/2.15/user/articles/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.15/articles/importing-source-code-to-github": "/de/enterprise/2.15/user/articles/importing-source-code-to-github", - "/de/enterprise/2.15/articles/incorporating-changes-from-a-pull-request": "/de/enterprise/2.15/user/articles/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.15/articles/initializing-an-empty-repository-with-a-readme": "/de/enterprise/2.15/user/articles/initializing-an-empty-repository-with-a-readme", - "/de/enterprise/2.15/articles/installing-git-large-file-storage": "/de/enterprise/2.15/user/articles/installing-git-large-file-storage", - "/de/enterprise/2.15/articles/integrating-jira-with-your-organization-project-board": "/de/enterprise/2.15/user/articles/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.15/articles/integrating-jira-with-your-personal-projects": "/de/enterprise/2.15/user/articles/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.15/articles/inviting-collaborators-to-a-personal-repository": "/de/enterprise/2.15/user/articles/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.15/articles/keeping-your-account-and-data-secure": "/de/enterprise/2.15/user/articles/keeping-your-account-and-data-secure", - "/de/enterprise/2.15/articles/keeping-your-organization-secure": "/de/enterprise/2.15/user/articles/keeping-your-organization-secure", - "/de/enterprise/2.15/articles/keyboard-shortcuts": "/de/enterprise/2.15/user/articles/keyboard-shortcuts", - "/de/enterprise/2.15/articles/labeling-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/labeling-issues-and-pull-requests", - "/de/enterprise/2.15/articles/learning-about-git": "/de/enterprise/2.15/user/articles/learning-about-git", - "/de/enterprise/2.15/articles/learning-about-github": "/de/enterprise/2.15/user/articles/learning-about-github", - "/de/enterprise/2.15/articles/licensing-a-repository": "/de/enterprise/2.15/user/articles/licensing-a-repository", - "/de/enterprise/2.15/articles/limits-for-viewing-content-and-diffs-in-a-repository": "/de/enterprise/2.15/user/articles/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.15/articles/linking-a-repository-to-a-project-board": "/de/enterprise/2.15/user/articles/linking-a-repository-to-a-project-board", - "/de/enterprise/2.15/articles/linking-to-releases": "/de/enterprise/2.15/user/articles/linking-to-releases", - "/de/enterprise/2.15/articles/listing-the-forks-of-a-repository": "/de/enterprise/2.15/user/articles/listing-the-forks-of-a-repository", - "/de/enterprise/2.15/articles/listing-the-repositories-youre-watching": "/de/enterprise/2.15/user/articles/listing-the-repositories-youre-watching", - "/de/enterprise/2.15/articles/locking-conversations": "/de/enterprise/2.15/user/articles/locking-conversations", - "/de/enterprise/2.15/articles/managing-access-to-a-project-board-for-organization-members": "/de/enterprise/2.15/user/articles/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.15/articles/managing-access-to-your-organizations-project-boards": "/de/enterprise/2.15/user/articles/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.15/articles/managing-access-to-your-organizations-repositories": "/de/enterprise/2.15/user/articles/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.15/articles/managing-access-to-your-personal-repositories": "/de/enterprise/2.15/user/articles/managing-access-to-your-personal-repositories", - "/de/enterprise/2.15/articles/managing-an-individuals-access-to-an-organization-project-board": "/de/enterprise/2.15/user/articles/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.15/articles/managing-an-individuals-access-to-an-organization-repository": "/de/enterprise/2.15/user/articles/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.15/articles/managing-branches-in-your-repository": "/de/enterprise/2.15/user/articles/managing-branches-in-your-repository", - "/de/enterprise/2.15/articles/managing-commit-signature-verification": "/de/enterprise/2.15/user/articles/managing-commit-signature-verification", - "/de/enterprise/2.15/articles/managing-contribution-graphs-on-your-profile": "/de/enterprise/2.15/user/articles/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.15/articles/managing-disruptive-comments": "/de/enterprise/2.15/user/articles/managing-disruptive-comments", - "/de/enterprise/2.15/articles/managing-email-preferences": "/de/enterprise/2.15/user/articles/managing-email-preferences", - "/de/enterprise/2.15/articles/managing-files-on-github": "/de/enterprise/2.15/user/articles/managing-files-on-github", - "/de/enterprise/2.15/articles/managing-files-using-the-command-line": "/de/enterprise/2.15/user/articles/managing-files-using-the-command-line", - "/de/enterprise/2.15/articles/managing-membership-in-your-organization": "/de/enterprise/2.15/user/articles/managing-membership-in-your-organization", - "/de/enterprise/2.15/articles/managing-organization-settings": "/de/enterprise/2.15/user/articles/managing-organization-settings", - "/de/enterprise/2.15/articles/managing-peoples-access-to-your-organization-with-roles": "/de/enterprise/2.15/user/articles/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.15/articles/managing-project-boards": "/de/enterprise/2.15/user/articles/managing-project-boards", - "/de/enterprise/2.15/articles/managing-releases-in-a-repository": "/de/enterprise/2.15/user/articles/managing-releases-in-a-repository", - "/de/enterprise/2.15/articles/managing-remote-repositories": "/de/enterprise/2.15/user/articles/managing-remote-repositories", - "/de/enterprise/2.15/articles/managing-repository-settings": "/de/enterprise/2.15/user/articles/managing-repository-settings", - "/de/enterprise/2.15/articles/managing-team-access-to-an-organization-project-board": "/de/enterprise/2.15/user/articles/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.15/articles/managing-team-access-to-an-organization-repository": "/de/enterprise/2.15/user/articles/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.15/articles/managing-user-account-settings": "/de/enterprise/2.15/user/articles/managing-user-account-settings", - "/de/enterprise/2.15/articles/managing-your-membership-in-organizations": "/de/enterprise/2.15/user/articles/managing-your-membership-in-organizations", - "/de/enterprise/2.15/articles/managing-your-notifications": "/de/enterprise/2.15/user/articles/managing-your-notifications", - "/de/enterprise/2.15/articles/managing-your-work-with-issues": "/de/enterprise/2.15/user/articles/managing-your-work-with-issues", - "/de/enterprise/2.15/articles/manually-creating-a-single-issue-template-for-your-repository": "/de/enterprise/2.15/user/articles/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.15/articles/mapping-geojson-files-on-github": "/de/enterprise/2.15/user/articles/mapping-geojson-files-on-github", - "/de/enterprise/2.15/articles/marking-notifications-as-read": "/de/enterprise/2.15/user/articles/marking-notifications-as-read", - "/de/enterprise/2.15/articles/merging-a-pull-request": "/de/enterprise/2.15/user/articles/merging-a-pull-request", - "/de/enterprise/2.15/articles/merging-an-upstream-repository-into-your-fork": "/de/enterprise/2.15/user/articles/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.15/articles/migrating-admin-teams-to-improved-organization-permissions": "/de/enterprise/2.15/user/articles/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/migrating-to-improved-organization-permissions": "/de/enterprise/2.15/user/articles/migrating-to-improved-organization-permissions", - "/de/enterprise/2.15/articles/moderating-comments-and-conversations": "/de/enterprise/2.15/user/articles/moderating-comments-and-conversations", - "/de/enterprise/2.15/articles/moving-a-file-in-your-repository-to-git-large-file-storage": "/de/enterprise/2.15/user/articles/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.15/articles/moving-a-file-to-a-new-location-using-the-command-line": "/de/enterprise/2.15/user/articles/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.15/articles/moving-a-file-to-a-new-location": "/de/enterprise/2.15/user/articles/moving-a-file-to-a-new-location", - "/de/enterprise/2.15/articles/moving-a-team-in-your-organizations-hierarchy": "/de/enterprise/2.15/user/articles/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.15/articles/opening-an-issue-from-code": "/de/enterprise/2.15/user/articles/opening-an-issue-from-code", - "/de/enterprise/2.15/articles/organizing-information-with-tables": "/de/enterprise/2.15/user/articles/organizing-information-with-tables", - "/de/enterprise/2.15/articles/organizing-members-into-teams": "/de/enterprise/2.15/user/articles/organizing-members-into-teams", - "/de/enterprise/2.15/articles/permission-levels-for-a-user-account-repository": "/de/enterprise/2.15/user/articles/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.15/articles/permission-levels-for-an-organization": "/de/enterprise/2.15/user/articles/permission-levels-for-an-organization", - "/de/enterprise/2.15/articles/personalizing-your-profile": "/de/enterprise/2.15/user/articles/personalizing-your-profile", - "/de/enterprise/2.15/articles/pinning-a-team-discussion": "/de/enterprise/2.15/user/articles/pinning-a-team-discussion", - "/de/enterprise/2.15/articles/pinning-items-to-your-profile": "/de/enterprise/2.15/user/articles/pinning-items-to-your-profile", - "/de/enterprise/2.15/articles/preparing-to-require-two-factor-authentication-in-your-organization": "/de/enterprise/2.15/user/articles/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/articles/preventing-unauthorized-access": "/de/enterprise/2.15/user/articles/preventing-unauthorized-access", - "/de/enterprise/2.15/articles/project-board-permissions-for-an-organization": "/de/enterprise/2.15/user/articles/project-board-permissions-for-an-organization", - "/de/enterprise/2.15/articles/proposing-changes-to-your-work-with-pull-requests": "/de/enterprise/2.15/user/articles/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.15/articles/publicizing-or-hiding-organization-membership": "/de/enterprise/2.15/user/articles/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.15/articles/publicizing-or-hiding-your-private-contributions-on-your-profile": "/de/enterprise/2.15/user/articles/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.15/articles/pushing-commits-to-a-remote-repository": "/de/enterprise/2.15/user/articles/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.15/articles/recovering-your-account-if-you-lose-your-2fa-credentials": "/de/enterprise/2.15/user/articles/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.15/articles/recovering-your-ssh-key-passphrase": "/de/enterprise/2.15/user/articles/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.15/articles/reinstating-a-former-member-of-your-organization": "/de/enterprise/2.15/user/articles/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.15/articles/reinstating-a-former-outside-collaborators-access-to-your-organization": "/de/enterprise/2.15/user/articles/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.15/articles/remembering-your-github-username-or-email": "/de/enterprise/2.15/user/articles/remembering-your-github-username-or-email", - "/de/enterprise/2.15/articles/removing-a-collaborator-from-a-personal-repository": "/de/enterprise/2.15/user/articles/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.15/articles/removing-a-member-from-your-organization": "/de/enterprise/2.15/user/articles/removing-a-member-from-your-organization", - "/de/enterprise/2.15/articles/removing-a-remote": "/de/enterprise/2.15/user/articles/removing-a-remote", - "/de/enterprise/2.15/articles/removing-an-outside-collaborator-from-an-organization-project-board": "/de/enterprise/2.15/user/articles/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.15/articles/removing-an-outside-collaborator-from-an-organization-repository": "/de/enterprise/2.15/user/articles/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.15/articles/removing-files-from-a-repositorys-history": "/de/enterprise/2.15/user/articles/removing-files-from-a-repositorys-history", - "/de/enterprise/2.15/articles/removing-files-from-git-large-file-storage": "/de/enterprise/2.15/user/articles/removing-files-from-git-large-file-storage", - "/de/enterprise/2.15/articles/removing-organization-members-from-a-team": "/de/enterprise/2.15/user/articles/removing-organization-members-from-a-team", - "/de/enterprise/2.15/articles/removing-sensitive-data-from-a-repository": "/de/enterprise/2.15/user/articles/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.15/articles/removing-yourself-from-a-collaborators-repository": "/de/enterprise/2.15/user/articles/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.15/articles/removing-yourself-from-an-organization": "/de/enterprise/2.15/user/articles/removing-yourself-from-an-organization", - "/de/enterprise/2.15/articles/renaming-a-file-using-the-command-line": "/de/enterprise/2.15/user/articles/renaming-a-file-using-the-command-line", - "/de/enterprise/2.15/articles/renaming-a-file": "/de/enterprise/2.15/user/articles/renaming-a-file", - "/de/enterprise/2.15/articles/renaming-a-remote": "/de/enterprise/2.15/user/articles/renaming-a-remote", - "/de/enterprise/2.15/articles/renaming-a-repository": "/de/enterprise/2.15/user/articles/renaming-a-repository", - "/de/enterprise/2.15/articles/renaming-a-team": "/de/enterprise/2.15/user/articles/renaming-a-team", - "/de/enterprise/2.15/articles/renaming-an-organization": "/de/enterprise/2.15/user/articles/renaming-an-organization", - "/de/enterprise/2.15/articles/rendering-and-diffing-images": "/de/enterprise/2.15/user/articles/rendering-and-diffing-images", - "/de/enterprise/2.15/articles/rendering-csv-and-tsv-data": "/de/enterprise/2.15/user/articles/rendering-csv-and-tsv-data", - "/de/enterprise/2.15/articles/rendering-differences-in-prose-documents": "/de/enterprise/2.15/user/articles/rendering-differences-in-prose-documents", - "/de/enterprise/2.15/articles/rendering-pdf-documents": "/de/enterprise/2.15/user/articles/rendering-pdf-documents", - "/de/enterprise/2.15/articles/reopening-a-closed-project-board": "/de/enterprise/2.15/user/articles/reopening-a-closed-project-board", - "/de/enterprise/2.15/articles/repository-permission-levels-for-an-organization": "/de/enterprise/2.15/user/articles/repository-permission-levels-for-an-organization", - "/de/enterprise/2.15/articles/requesting-a-pull-request-review": "/de/enterprise/2.15/user/articles/requesting-a-pull-request-review", - "/de/enterprise/2.15/articles/requesting-to-add-a-child-team": "/de/enterprise/2.15/user/articles/requesting-to-add-a-child-team", - "/de/enterprise/2.15/articles/requesting-to-add-or-change-a-parent-team": "/de/enterprise/2.15/user/articles/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.15/articles/requiring-two-factor-authentication-in-your-organization": "/de/enterprise/2.15/user/articles/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.15/articles/resolving-a-merge-conflict-on-github": "/de/enterprise/2.15/user/articles/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.15/articles/resolving-a-merge-conflict-using-the-command-line": "/de/enterprise/2.15/user/articles/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.15/articles/resolving-git-large-file-storage-upload-failures": "/de/enterprise/2.15/user/articles/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.15/articles/resolving-merge-conflicts-after-a-git-rebase": "/de/enterprise/2.15/user/articles/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.15/articles/restricting-repository-creation-in-your-organization": "/de/enterprise/2.15/user/articles/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.15/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise/2.15/user/articles/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.15/articles/reverting-a-pull-request": "/de/enterprise/2.15/user/articles/reverting-a-pull-request", - "/de/enterprise/2.15/articles/reviewing-changes-in-pull-requests": "/de/enterprise/2.15/user/articles/reviewing-changes-in-pull-requests", - "/de/enterprise/2.15/articles/reviewing-proposed-changes-in-a-pull-request": "/de/enterprise/2.15/user/articles/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.15/articles/reviewing-the-audit-log-for-your-organization": "/de/enterprise/2.15/user/articles/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.15/articles/reviewing-your-authorized-applications-oauth": "/de/enterprise/2.15/user/articles/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.15/articles/reviewing-your-authorized-integrations": "/de/enterprise/2.15/user/articles/reviewing-your-authorized-integrations", - "/de/enterprise/2.15/articles/reviewing-your-deploy-keys": "/de/enterprise/2.15/user/articles/reviewing-your-deploy-keys", - "/de/enterprise/2.15/articles/reviewing-your-organizations-installed-integrations": "/de/enterprise/2.15/user/articles/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.15/articles/reviewing-your-security-log": "/de/enterprise/2.15/user/articles/reviewing-your-security-log", - "/de/enterprise/2.15/articles/reviewing-your-ssh-keys": "/de/enterprise/2.15/user/articles/reviewing-your-ssh-keys", - "/de/enterprise/2.15/articles/saving-repositories-with-stars": "/de/enterprise/2.15/user/articles/saving-repositories-with-stars", - "/de/enterprise/2.15/articles/searching-code": "/de/enterprise/2.15/user/articles/searching-code", - "/de/enterprise/2.15/articles/searching-commits": "/de/enterprise/2.15/user/articles/searching-commits", - "/de/enterprise/2.15/articles/searching-for-repositories": "/de/enterprise/2.15/user/articles/searching-for-repositories", - "/de/enterprise/2.15/articles/searching-in-forks": "/de/enterprise/2.15/user/articles/searching-in-forks", - "/de/enterprise/2.15/articles/searching-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/searching-issues-and-pull-requests", - "/de/enterprise/2.15/articles/searching-on-github": "/de/enterprise/2.15/user/articles/searching-on-github", - "/de/enterprise/2.15/articles/searching-topics": "/de/enterprise/2.15/user/articles/searching-topics", - "/de/enterprise/2.15/articles/searching-users": "/de/enterprise/2.15/user/articles/searching-users", - "/de/enterprise/2.15/articles/searching-wikis": "/de/enterprise/2.15/user/articles/searching-wikis", - "/de/enterprise/2.15/articles/securing-your-account-with-two-factor-authentication-2fa": "/de/enterprise/2.15/user/articles/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.15/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile": "/de/enterprise/2.15/user/articles/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.15/articles/set-up-git": "/de/enterprise/2.15/user/articles/set-up-git", - "/de/enterprise/2.15/articles/setting-a-backup-email-address": "/de/enterprise/2.15/user/articles/setting-a-backup-email-address", - "/de/enterprise/2.15/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll": "/de/enterprise/2.15/user/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.15/articles/setting-guidelines-for-repository-contributors": "/de/enterprise/2.15/user/articles/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.15/articles/setting-permissions-for-deleting-or-transferring-repositories": "/de/enterprise/2.15/user/articles/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.15/articles/setting-repository-visibility": "/de/enterprise/2.15/user/articles/setting-repository-visibility", - "/de/enterprise/2.15/articles/setting-the-default-branch": "/de/enterprise/2.15/user/articles/setting-the-default-branch", - "/de/enterprise/2.15/articles/setting-up-a-github-pages-site-with-jekyll": "/de/enterprise/2.15/user/articles/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.15/articles/setting-up-a-trial-of-github-enterprise-cloud": "/de/enterprise/2.15/user/articles/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.15/articles/setting-up-a-trial-of-github-enterprise-server": "/de/enterprise/2.15/user/articles/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.15/articles/setting-up-your-project-for-healthy-contributions": "/de/enterprise/2.15/user/articles/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.15/articles/setting-your-commit-email-address": "/de/enterprise/2.15/user/articles/setting-your-commit-email-address", - "/de/enterprise/2.15/articles/setting-your-teams-profile-picture": "/de/enterprise/2.15/user/articles/setting-your-teams-profile-picture", - "/de/enterprise/2.15/articles/setting-your-username-in-git": "/de/enterprise/2.15/user/articles/setting-your-username-in-git", - "/de/enterprise/2.15/articles/sharing-filters": "/de/enterprise/2.15/user/articles/sharing-filters", - "/de/enterprise/2.15/articles/showing-an-overview-of-your-activity-on-your-profile": "/de/enterprise/2.15/user/articles/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.15/articles/signing-commits": "/de/enterprise/2.15/user/articles/signing-commits", - "/de/enterprise/2.15/articles/signing-tags": "/de/enterprise/2.15/user/articles/signing-tags", - "/de/enterprise/2.15/articles/signing-up-for-github": "/de/enterprise/2.15/user/articles/signing-up-for-github", - "/de/enterprise/2.15/articles/sorting-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/sorting-issues-and-pull-requests", - "/de/enterprise/2.15/articles/sorting-search-results": "/de/enterprise/2.15/user/articles/sorting-search-results", - "/de/enterprise/2.15/articles/source-code-migration-tools": "/de/enterprise/2.15/user/articles/source-code-migration-tools", - "/de/enterprise/2.15/articles/splitting-a-subfolder-out-into-a-new-repository": "/de/enterprise/2.15/user/articles/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.15/articles/subscribing-to-and-unsubscribing-from-notifications": "/de/enterprise/2.15/user/articles/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.15/articles/subversion-properties-supported-by-github": "/de/enterprise/2.15/user/articles/subversion-properties-supported-by-github", - "/de/enterprise/2.15/articles/sudo-mode": "/de/enterprise/2.15/user/articles/sudo-mode", - "/de/enterprise/2.15/articles/support-for-subversion-clients": "/de/enterprise/2.15/user/articles/support-for-subversion-clients", - "/de/enterprise/2.15/articles/supported-browsers": "/de/enterprise/2.15/user/articles/supported-browsers", - "/de/enterprise/2.15/articles/syncing-a-fork": "/de/enterprise/2.15/user/articles/syncing-a-fork", - "/de/enterprise/2.15/articles/telling-git-about-your-signing-key": "/de/enterprise/2.15/user/articles/telling-git-about-your-signing-key", - "/de/enterprise/2.15/articles/testing-your-github-pages-site-locally-with-jekyll": "/de/enterprise/2.15/user/articles/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.15/articles/testing-your-ssh-connection": "/de/enterprise/2.15/user/articles/testing-your-ssh-connection", - "/de/enterprise/2.15/articles/tracking-changes-in-a-comment": "/de/enterprise/2.15/user/articles/tracking-changes-in-a-comment", - "/de/enterprise/2.15/articles/tracking-changes-in-a-file": "/de/enterprise/2.15/user/articles/tracking-changes-in-a-file", - "/de/enterprise/2.15/articles/tracking-progress-on-your-project-board": "/de/enterprise/2.15/user/articles/tracking-progress-on-your-project-board", - "/de/enterprise/2.15/articles/tracking-the-progress-of-your-work-with-milestones": "/de/enterprise/2.15/user/articles/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.15/articles/tracking-the-progress-of-your-work-with-project-boards": "/de/enterprise/2.15/user/articles/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.15/articles/transferring-a-repository": "/de/enterprise/2.15/user/articles/transferring-a-repository", - "/de/enterprise/2.15/articles/transferring-organization-ownership": "/de/enterprise/2.15/user/articles/transferring-organization-ownership", - "/de/enterprise/2.15/articles/troubleshooting-commit-signature-verification": "/de/enterprise/2.15/user/articles/troubleshooting-commit-signature-verification", - "/de/enterprise/2.15/articles/troubleshooting-commits-on-your-timeline": "/de/enterprise/2.15/user/articles/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.15/articles/troubleshooting-commits": "/de/enterprise/2.15/user/articles/troubleshooting-commits", - "/de/enterprise/2.15/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.15/user/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.15/articles/troubleshooting-search-queries": "/de/enterprise/2.15/user/articles/troubleshooting-search-queries", - "/de/enterprise/2.15/articles/troubleshooting-ssh": "/de/enterprise/2.15/user/articles/troubleshooting-ssh", - "/de/enterprise/2.15/articles/types-of-github-accounts": "/de/enterprise/2.15/user/articles/types-of-github-accounts", - "/de/enterprise/2.15/articles/types-of-required-status-checks": "/de/enterprise/2.15/user/articles/types-of-required-status-checks", - "/de/enterprise/2.15/articles/understanding-connections-between-repositories": "/de/enterprise/2.15/user/articles/understanding-connections-between-repositories", - "/de/enterprise/2.15/articles/understanding-the-search-syntax": "/de/enterprise/2.15/user/articles/understanding-the-search-syntax", - "/de/enterprise/2.15/articles/unpublishing-a-github-pages-site": "/de/enterprise/2.15/user/articles/unpublishing-a-github-pages-site", - "/de/enterprise/2.15/articles/updating-an-expired-gpg-key": "/de/enterprise/2.15/user/articles/updating-an-expired-gpg-key", - "/de/enterprise/2.15/articles/updating-credentials-from-the-osx-keychain": "/de/enterprise/2.15/user/articles/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.15/articles/updating-your-github-access-credentials": "/de/enterprise/2.15/user/articles/updating-your-github-access-credentials", - "/de/enterprise/2.15/articles/using-a-verified-email-address-in-your-gpg-key": "/de/enterprise/2.15/user/articles/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.15/articles/using-advanced-git-commands": "/de/enterprise/2.15/user/articles/using-advanced-git-commands", - "/de/enterprise/2.15/articles/using-common-git-commands": "/de/enterprise/2.15/user/articles/using-common-git-commands", - "/de/enterprise/2.15/articles/using-git-rebase-on-the-command-line": "/de/enterprise/2.15/user/articles/using-git-rebase-on-the-command-line", - "/de/enterprise/2.15/articles/using-github": "/de/enterprise/2.15/user/articles/using-github", - "/de/enterprise/2.15/articles/using-issue-and-pull-request-templates": "/de/enterprise/2.15/user/articles/using-issue-and-pull-request-templates", - "/de/enterprise/2.15/articles/using-saved-replies": "/de/enterprise/2.15/user/articles/using-saved-replies", - "/de/enterprise/2.15/articles/using-search-to-filter-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.15/articles/versioning-large-files": "/de/enterprise/2.15/user/articles/versioning-large-files", - "/de/enterprise/2.15/articles/viewing-a-projects-contributors": "/de/enterprise/2.15/user/articles/viewing-a-projects-contributors", - "/de/enterprise/2.15/articles/viewing-a-pull-request-review": "/de/enterprise/2.15/user/articles/viewing-a-pull-request-review", - "/de/enterprise/2.15/articles/viewing-a-repositorys-network": "/de/enterprise/2.15/user/articles/viewing-a-repositorys-network", - "/de/enterprise/2.15/articles/viewing-a-summary-of-repository-activity": "/de/enterprise/2.15/user/articles/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.15/articles/viewing-a-wikis-history-of-changes": "/de/enterprise/2.15/user/articles/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.15/articles/viewing-all-of-your-issues-and-pull-requests": "/de/enterprise/2.15/user/articles/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.15/articles/viewing-and-comparing-commits": "/de/enterprise/2.15/user/articles/viewing-and-comparing-commits", - "/de/enterprise/2.15/articles/viewing-branches-in-your-repository": "/de/enterprise/2.15/user/articles/viewing-branches-in-your-repository", - "/de/enterprise/2.15/articles/viewing-contributions-on-your-profile": "/de/enterprise/2.15/user/articles/viewing-contributions-on-your-profile", - "/de/enterprise/2.15/articles/viewing-peoples-roles-in-an-organization": "/de/enterprise/2.15/user/articles/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.15/articles/viewing-whether-users-in-your-organization-have-2fa-enabled": "/de/enterprise/2.15/user/articles/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.15/articles/viewing-your-milestones-progress": "/de/enterprise/2.15/user/articles/viewing-your-milestones-progress", - "/de/enterprise/2.15/articles/viewing-your-repositorys-tags": "/de/enterprise/2.15/user/articles/viewing-your-repositorys-tags", - "/de/enterprise/2.15/articles/visualizing-additions-and-deletions-to-content-in-a-repository": "/de/enterprise/2.15/user/articles/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.15/articles/visualizing-commits-in-a-repository": "/de/enterprise/2.15/user/articles/visualizing-commits-in-a-repository", - "/de/enterprise/2.15/articles/watching-and-unwatching-repositories": "/de/enterprise/2.15/user/articles/watching-and-unwatching-repositories", - "/de/enterprise/2.15/articles/watching-and-unwatching-team-discussions": "/de/enterprise/2.15/user/articles/watching-and-unwatching-team-discussions", - "/de/enterprise/2.15/articles/what-are-the-differences-between-subversion-and-git": "/de/enterprise/2.15/user/articles/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.15/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility": "/de/enterprise/2.15/user/articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.15/articles/which-remote-url-should-i-use": "/de/enterprise/2.15/user/articles/which-remote-url-should-i-use", - "/de/enterprise/2.15/articles/why-are-my-commits-in-the-wrong-order": "/de/enterprise/2.15/user/articles/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.15/articles/why-are-my-commits-linked-to-the-wrong-user": "/de/enterprise/2.15/user/articles/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.15/articles/why-are-my-contributions-not-showing-up-on-my-profile": "/de/enterprise/2.15/user/articles/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.15/articles/why-is-git-always-asking-for-my-password": "/de/enterprise/2.15/user/articles/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.15/articles/working-with-advanced-formatting": "/de/enterprise/2.15/user/articles/working-with-advanced-formatting", - "/de/enterprise/2.15/articles/working-with-forks": "/de/enterprise/2.15/user/articles/working-with-forks", - "/de/enterprise/2.15/articles/working-with-jupyter-notebook-files-on-github": "/de/enterprise/2.15/user/articles/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.15/articles/working-with-large-files": "/de/enterprise/2.15/user/articles/working-with-large-files", - "/de/enterprise/2.15/articles/working-with-non-code-files": "/de/enterprise/2.15/user/articles/working-with-non-code-files", - "/de/enterprise/2.15/articles/working-with-pre-receive-hooks": "/de/enterprise/2.15/user/articles/working-with-pre-receive-hooks", - "/de/enterprise/2.15/articles/working-with-saved-replies": "/de/enterprise/2.15/user/articles/working-with-saved-replies", - "/de/enterprise/2.15/articles/working-with-ssh-key-passphrases": "/de/enterprise/2.15/user/articles/working-with-ssh-key-passphrases", - "/de/enterprise/2.15/articles/working-with-subversion-on-github": "/de/enterprise/2.15/user/articles/working-with-subversion-on-github", - "/de/enterprise/2.15/user/categories/admin/guidesistering-a-repository": "/de/enterprise/2.15/user/categories/administering-a-repository", - "/de/enterprise/2.15/categories/administering-a-repository": "/de/enterprise/2.15/user/categories/administering-a-repository", - "/de/enterprise/2.15/categories/authenticating-to-github": "/de/enterprise/2.15/user/categories/authenticating-to-github", - "/de/enterprise/2.15/categories/building-a-strong-community": "/de/enterprise/2.15/user/categories/building-a-strong-community", - "/de/enterprise/2.15/categories/collaborating-with-issues-and-pull-requests": "/de/enterprise/2.15/user/categories/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.15/categories/committing-changes-to-your-project": "/de/enterprise/2.15/user/categories/committing-changes-to-your-project", - "/de/enterprise/2.15/categories/creating-cloning-and-archiving-repositories": "/de/enterprise/2.15/user/categories/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.15/categories/extending-github": "/de/enterprise/2.15/user/categories/extending-github", - "/de/enterprise/2.15/categories/getting-started-with-github": "/de/enterprise/2.15/user/categories/getting-started-with-github", - "/de/enterprise/2.15/categories/importing-your-projects-to-github": "/de/enterprise/2.15/user/categories/importing-your-projects-to-github", - "/de/enterprise/2.15/categories/managing-files-in-a-repository": "/de/enterprise/2.15/user/categories/managing-files-in-a-repository", - "/de/enterprise/2.15/categories/managing-large-files": "/de/enterprise/2.15/user/categories/managing-large-files", - "/de/enterprise/2.15/categories/managing-your-work-on-github": "/de/enterprise/2.15/user/categories/managing-your-work-on-github", - "/de/enterprise/2.15/categories/receiving-notifications-about-activity-on-github": "/de/enterprise/2.15/user/categories/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.15/categories/searching-for-information-on-github": "/de/enterprise/2.15/user/categories/searching-for-information-on-github", - "/de/enterprise/2.15/categories/setting-up-and-managing-organizations-and-teams": "/de/enterprise/2.15/user/categories/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.15/categories/setting-up-and-managing-your-github-profile": "/de/enterprise/2.15/user/categories/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.15/categories/setting-up-and-managing-your-github-user-account": "/de/enterprise/2.15/user/categories/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.15/categories/using-git": "/de/enterprise/2.15/user/categories/using-git", - "/de/enterprise/2.15/categories/visualizing-repository-data-with-graphs": "/de/enterprise/2.15/user/categories/visualizing-repository-data-with-graphs", - "/de/enterprise/2.15/categories/working-with-github-pages": "/de/enterprise/2.15/user/categories/working-with-github-pages", - "/de/enterprise/2.15/categories/writing-on-github": "/de/enterprise/2.15/user/categories/writing-on-github", "/en/enterprise/2.15/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.15/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.15/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.15/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.15/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.15/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", @@ -12558,1297 +11864,6 @@ "/cn/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-repositories": "/cn/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-repositories", "/cn/enterprise/2.16/insights/installing-and-configuring-github-insights/system-overview-for-github-insights": "/cn/enterprise/2.16/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", "/cn/enterprise/2.16/insights/installing-and-configuring-github-insights/updating-github-insights": "/cn/enterprise/2.16/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.16/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/de/enterprise/2.16/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", - "/de/enterprise/2.16/admin/guides/articles/including-github-enterprise-contributions-in-your-githubcom-profile": "/de/enterprise/2.16/admin/articles/including-github-enterprise-contributions-in-your-githubcom-profile", - "/de/enterprise/2.16/admin/guides/articles/receiving-security-alerts-for-vulnerable-dependencies-on-github-enterprise": "/de/enterprise/2.16/admin/articles/receiving-security-alerts-for-vulnerable-dependencies-on-github-enterprise", - "/de/enterprise/2.16/admin/guides/articles/using-github-task-runner": "/de/enterprise/2.16/admin/articles/using-github-task-runner", - "/de/enterprise/2.16/admin/guides/clustering/about-cluster-nodes": "/de/enterprise/2.16/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.16/admin/guides/clustering/cluster-network-configuration": "/de/enterprise/2.16/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.16/admin/guides/clustering/clustering-overview": "/de/enterprise/2.16/admin/clustering/clustering-overview", - "/de/enterprise/2.16/admin/guides/clustering/differences-between-clustering-and-high-availability-ha": "/de/enterprise/2.16/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.16/admin/guides/clustering/evacuating-a-cluster-node": "/de/enterprise/2.16/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.16/admin/guides/clustering": "/de/enterprise/2.16/admin/clustering", - "/de/enterprise/2.16/admin/guides/clustering/initializing-the-cluster": "/de/enterprise/2.16/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.16/admin/guides/clustering/managing-a-github-enterprise-server-cluster": "/de/enterprise/2.16/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.16/admin/guides/clustering/monitoring-cluster-nodes": "/de/enterprise/2.16/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.16/admin/guides/clustering/replacing-a-cluster-node": "/de/enterprise/2.16/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.16/admin/guides/clustering/setting-up-the-cluster-instances": "/de/enterprise/2.16/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.16/admin/guides/clustering/upgrading-a-cluster": "/de/enterprise/2.16/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.16/admin/guides/developer-workflow/about-pre-receive-hooks": "/de/enterprise/2.16/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.16/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks": "/de/enterprise/2.16/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance": "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository": "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization": "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.16/admin/guides/developer-workflow/blocking-force-pushes": "/de/enterprise/2.16/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.16/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks": "/de/enterprise/2.16/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.16/admin/guides/developer-workflow/continuous-integration-using-jenkins": "/de/enterprise/2.16/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.16/admin/guides/developer-workflow/continuous-integration-using-travis-ci": "/de/enterprise/2.16/admin/developer-workflow/continuous-integration-using-travis-ci", - "/de/enterprise/2.16/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment": "/de/enterprise/2.16/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.16/admin/guides/developer-workflow/creating-a-pre-receive-hook-script": "/de/enterprise/2.16/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.16/admin/guides/developer-workflow/customizing-your-instance-with-integrations": "/de/enterprise/2.16/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.16/admin/guides/developer-workflow/establishing-pull-request-merge-conditions": "/de/enterprise/2.16/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.16/admin/guides/developer-workflow": "/de/enterprise/2.16/admin/developer-workflow", - "/de/enterprise/2.16/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance": "/de/enterprise/2.16/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/developer-workflow/managing-projects-using-jira": "/de/enterprise/2.16/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.16/admin/guides/developer-workflow/troubleshooting-service-hooks": "/de/enterprise/2.16/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.16/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy": "/de/enterprise/2.16/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.16/admin/guides/developer-workflow/using-webhooks-for-continuous-integration": "/de/enterprise/2.16/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-enterprise-support": "/de/enterprise/2.16/admin/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server": "/de/enterprise/2.16/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise": "/de/enterprise/2.16/admin/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.16/admin/guides/enterprise-support/about-support-for-advanced-security": "/de/enterprise/2.16/admin/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.16/admin/guides/enterprise-support": "/de/enterprise/2.16/admin/enterprise-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/preparing-to-submit-a-ticket": "/de/enterprise/2.16/admin/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.16/admin/guides/enterprise-support/providing-data-to-github-support": "/de/enterprise/2.16/admin/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/reaching-github-support": "/de/enterprise/2.16/admin/enterprise-support/reaching-github-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/receiving-help-from-github-support": "/de/enterprise/2.16/admin/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.16/admin/guides/enterprise-support/submitting-a-ticket": "/de/enterprise/2.16/admin/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.16/admin/guides": "/de/enterprise/2.16/admin", - "/de/enterprise/2.16/admin/guides/installation/about-geo-replication": "/de/enterprise/2.16/admin/installation/about-geo-replication", - "/de/enterprise/2.16/admin/guides/installation/about-high-availability-configuration": "/de/enterprise/2.16/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.16/admin/guides/installation/about-the-github-enterprise-server-api": "/de/enterprise/2.16/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-administrative-shell-ssh": "/de/enterprise/2.16/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-management-console": "/de/enterprise/2.16/admin/installation/accessing-the-management-console", - "/de/enterprise/2.16/admin/guides/installation/accessing-the-monitor-dashboard": "/de/enterprise/2.16/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.16/admin/guides/installation/activity-dashboard": "/de/enterprise/2.16/admin/installation/activity-dashboard", - "/de/enterprise/2.16/admin/guides/installation/audit-logging": "/de/enterprise/2.16/admin/installation/audit-logging", - "/de/enterprise/2.16/admin/guides/installation/audited-actions": "/de/enterprise/2.16/admin/installation/audited-actions", - "/de/enterprise/2.16/admin/guides/installation/command-line-utilities": "/de/enterprise/2.16/admin/installation/command-line-utilities", - "/de/enterprise/2.16/admin/guides/installation/configuring-a-hostname": "/de/enterprise/2.16/admin/installation/configuring-a-hostname", - "/de/enterprise/2.16/admin/guides/installation/configuring-an-outbound-web-proxy-server": "/de/enterprise/2.16/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-applications": "/de/enterprise/2.16/admin/installation/configuring-applications", - "/de/enterprise/2.16/admin/guides/installation/configuring-backups-on-your-appliance": "/de/enterprise/2.16/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-built-in-firewall-rules": "/de/enterprise/2.16/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.16/admin/guides/installation/configuring-collectd": "/de/enterprise/2.16/admin/installation/configuring-collectd", - "/de/enterprise/2.16/admin/guides/installation/configuring-dns-nameservers": "/de/enterprise/2.16/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server": "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server": "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.16/admin/guides/installation/configuring-git-large-file-storage": "/de/enterprise/2.16/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-enterprise-server-for-high-availability": "/de/enterprise/2.16/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.16/admin/guides/installation/configuring-github-pages-on-your-appliance": "/de/enterprise/2.16/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-rate-limits": "/de/enterprise/2.16/admin/installation/configuring-rate-limits", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance": "/de/enterprise/2.16/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-github-enterprise-server-appliance": "/de/enterprise/2.16/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console": "/de/enterprise/2.16/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.16/admin/guides/installation/configuring-time-synchronization": "/de/enterprise/2.16/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.16/admin/guides/installation/configuring-tls": "/de/enterprise/2.16/admin/installation/configuring-tls", - "/de/enterprise/2.16/admin/guides/installation/configuring-your-github-enterprise-server-network-settings": "/de/enterprise/2.16/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.16/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud": "/de/enterprise/2.16/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/installation/creating-a-high-availability-replica": "/de/enterprise/2.16/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.16/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server": "/de/enterprise/2.16/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories": "/de/enterprise/2.16/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.16/admin/guides/installation/enabling-and-scheduling-maintenance-mode": "/de/enterprise/2.16/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.16/admin/guides/installation/enabling-automatic-update-checks": "/de/enterprise/2.16/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.16/admin/guides/installation/enabling-private-mode": "/de/enterprise/2.16/admin/installation/enabling-private-mode", - "/de/enterprise/2.16/admin/guides/installation/enabling-subdomain-isolation": "/de/enterprise/2.16/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.16/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.16/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.16/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.16/admin/guides/installation/increasing-cpu-or-memory-resources": "/de/enterprise/2.16/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.16/admin/guides/installation/increasing-storage-capacity": "/de/enterprise/2.16/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.16/admin/guides/installation": "/de/enterprise/2.16/admin/installation", - "/de/enterprise/2.16/admin/guides/installation/initiating-a-failover-to-your-replica-appliance": "/de/enterprise/2.16/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-aws": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-azure": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-hyper-v": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-vmware": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.16/admin/guides/installation/installing-github-enterprise-server-on-xenserver": "/de/enterprise/2.16/admin/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.16/admin/guides/installation/log-forwarding": "/de/enterprise/2.16/admin/installation/log-forwarding", - "/de/enterprise/2.16/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud": "/de/enterprise/2.16/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.16/admin/guides/installation/managing-your-github-enterprise-server-license": "/de/enterprise/2.16/admin/installation/managing-your-github-enterprise-server-license", - "/de/enterprise/2.16/admin/guides/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later": "/de/enterprise/2.16/admin/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later", - "/de/enterprise/2.16/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123": "/de/enterprise/2.16/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.16/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server": "/de/enterprise/2.16/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.16/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance": "/de/enterprise/2.16/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/guides/installation/monitoring-using-snmp": "/de/enterprise/2.16/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.16/admin/guides/installation/monitoring-your-github-enterprise-server-appliance": "/de/enterprise/2.16/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.16/admin/guides/installation/network-ports": "/de/enterprise/2.16/admin/installation/network-ports", - "/de/enterprise/2.16/admin/guides/installation/recommended-alert-thresholds": "/de/enterprise/2.16/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.16/admin/guides/installation/recovering-a-high-availability-configuration": "/de/enterprise/2.16/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.16/admin/guides/installation/removing-a-high-availability-replica": "/de/enterprise/2.16/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.16/admin/guides/installation/searching-the-audit-log": "/de/enterprise/2.16/admin/installation/searching-the-audit-log", - "/de/enterprise/2.16/admin/guides/installation/setting-git-push-limits": "/de/enterprise/2.16/admin/installation/setting-git-push-limits", - "/de/enterprise/2.16/admin/guides/installation/setting-up-a-github-enterprise-server-instance": "/de/enterprise/2.16/admin/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/guides/installation/setting-up-a-staging-instance": "/de/enterprise/2.16/admin/installation/setting-up-a-staging-instance", - "/de/enterprise/2.16/admin/guides/installation/setting-up-external-monitoring": "/de/enterprise/2.16/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.16/admin/guides/installation/site-admin-dashboard": "/de/enterprise/2.16/admin/installation/site-admin-dashboard", - "/de/enterprise/2.16/admin/guides/installation/system-overview": "/de/enterprise/2.16/admin/installation/system-overview", - "/de/enterprise/2.16/admin/guides/installation/troubleshooting-ssl-errors": "/de/enterprise/2.16/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.16/admin/guides/installation/updating-the-virtual-machine-and-physical-resources": "/de/enterprise/2.16/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.16/admin/guides/installation/upgrade-requirements": "/de/enterprise/2.16/admin/installation/upgrade-requirements", - "/de/enterprise/2.16/admin/guides/installation/upgrading-github-enterprise-server": "/de/enterprise/2.16/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer": "/de/enterprise/2.16/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.16/admin/guides/installation/validating-your-domain-settings": "/de/enterprise/2.16/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.16/admin/guides/installation/viewing-push-logs": "/de/enterprise/2.16/admin/installation/viewing-push-logs", - "/de/enterprise/2.16/admin/guides/migrations/about-migrations": "/de/enterprise/2.16/admin/migrations/about-migrations", - "/de/enterprise/2.16/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server": "/de/enterprise/2.16/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/completing-the-import-on-github-enterprise-server": "/de/enterprise/2.16/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server": "/de/enterprise/2.16/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/exporting-migration-data-from-githubcom": "/de/enterprise/2.16/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories": "/de/enterprise/2.16/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.16/admin/guides/migrations/exporting-the-githubcom-organizations-repositories": "/de/enterprise/2.16/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.16/admin/guides/migrations/generating-a-list-of-migration-conflicts": "/de/enterprise/2.16/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.16/admin/guides/migrations/importing-data-from-third-party-version-control-systems": "/de/enterprise/2.16/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.16/admin/guides/migrations/importing-migration-data-to-github-enterprise-server": "/de/enterprise/2.16/admin/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations": "/de/enterprise/2.16/admin/migrations", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance": "/de/enterprise/2.16/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-githubcom-source-organization": "/de/enterprise/2.16/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.16/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server": "/de/enterprise/2.16/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.16/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings": "/de/enterprise/2.16/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.16/admin/guides/migrations/reviewing-migration-conflicts": "/de/enterprise/2.16/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.16/admin/guides/migrations/reviewing-migration-data": "/de/enterprise/2.16/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.16/admin/guides/user-management/about-global-webhooks": "/de/enterprise/2.16/admin/user-management/about-global-webhooks", - "/de/enterprise/2.16/admin/guides/user-management/adding-people-to-teams": "/de/enterprise/2.16/admin/user-management/adding-people-to-teams", - "/de/enterprise/2.16/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories": "/de/enterprise/2.16/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.16/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider": "/de/enterprise/2.16/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.16/admin/guides/user-management/archiving-and-unarchiving-repositories": "/de/enterprise/2.16/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.16/admin/guides/user-management/auditing-ssh-keys": "/de/enterprise/2.16/admin/user-management/auditing-ssh-keys", - "/de/enterprise/2.16/admin/guides/user-management/auditing-users-across-your-instance": "/de/enterprise/2.16/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance": "/de/enterprise/2.16/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.16/admin/guides/user-management/basic-account-settings": "/de/enterprise/2.16/admin/user-management/basic-account-settings", - "/de/enterprise/2.16/admin/guides/user-management/best-practices-for-user-security": "/de/enterprise/2.16/admin/user-management/best-practices-for-user-security", - "/de/enterprise/2.16/admin/guides/user-management/changing-authentication-methods": "/de/enterprise/2.16/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.16/admin/guides/user-management/configuring-email-for-notifications": "/de/enterprise/2.16/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.16/admin/guides/user-management/configuring-visibility-for-organization-membership": "/de/enterprise/2.16/admin/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.16/admin/guides/user-management/creating-organizations": "/de/enterprise/2.16/admin/user-management/creating-organizations", - "/de/enterprise/2.16/admin/guides/user-management/creating-teams": "/de/enterprise/2.16/admin/user-management/creating-teams", - "/de/enterprise/2.16/admin/guides/user-management/customizing-user-messages-on-your-instance": "/de/enterprise/2.16/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/disabling-unauthenticated-sign-ups": "/de/enterprise/2.16/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.16/admin/guides/user-management": "/de/enterprise/2.16/admin/user-management", - "/de/enterprise/2.16/admin/guides/user-management/managing-dormant-users": "/de/enterprise/2.16/admin/user-management/managing-dormant-users", - "/de/enterprise/2.16/admin/guides/user-management/managing-global-webhooks": "/de/enterprise/2.16/admin/user-management/managing-global-webhooks", - "/de/enterprise/2.16/admin/guides/user-management/organizations-and-teams": "/de/enterprise/2.16/admin/user-management/organizations-and-teams", - "/de/enterprise/2.16/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization": "/de/enterprise/2.16/admin/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility": "/de/enterprise/2.16/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access": "/de/enterprise/2.16/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-creating-organizations": "/de/enterprise/2.16/admin/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.16/admin/guides/user-management/preventing-users-from-deleting-organization-repositories": "/de/enterprise/2.16/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.16/admin/guides/user-management/promoting-or-demoting-a-site-administrator": "/de/enterprise/2.16/admin/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.16/admin/guides/user-management/rebuilding-contributions-data": "/de/enterprise/2.16/admin/user-management/rebuilding-contributions-data", - "/de/enterprise/2.16/admin/guides/user-management/removing-users-from-teams-and-organizations": "/de/enterprise/2.16/admin/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.16/admin/guides/user-management/repositories": "/de/enterprise/2.16/admin/user-management/repositories", - "/de/enterprise/2.16/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization": "/de/enterprise/2.16/admin/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.16/admin/guides/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise/2.16/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.16/admin/guides/user-management/suspending-and-unsuspending-users": "/de/enterprise/2.16/admin/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.16/admin/guides/user-management/user-security": "/de/enterprise/2.16/admin/user-management/user-security", - "/de/enterprise/2.16/admin/guides/user-management/using-built-in-authentication": "/de/enterprise/2.16/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.16/admin/guides/user-management/using-cas": "/de/enterprise/2.16/admin/user-management/using-cas", - "/de/enterprise/2.16/admin/guides/user-management/using-ldap": "/de/enterprise/2.16/admin/user-management/using-ldap", - "/de/enterprise/2.16/admin/guides/user-management/using-saml": "/de/enterprise/2.16/admin/user-management/using-saml", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/user/administering-a-repository/about-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/github/administering-a-repository/about-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/user/administering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/github/administering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.16/user/administering-a-repository/about-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.16/github/administering-a-repository/about-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-releases": "/de/enterprise/2.16/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.16/user/administering-a-repository/about-releases": "/de/enterprise/2.16/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.16/github/administering-a-repository/about-releases": "/de/enterprise/2.16/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/user/administering-a-repository/about-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/github/administering-a-repository/about-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/about-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/about-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/about-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization": "/de/enterprise/2.16/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization": "/de/enterprise/2.16/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization": "/de/enterprise/2.16/user/github/administering-a-repository/allowing-people-to-fork-a-private-repository-owned-by-your-organization", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.16/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/user/administering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.16/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/github/administering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.16/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.16/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/user/administering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.16/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/github/administering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.16/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/configuring-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.16/user/administering-a-repository/configuring-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.16/github/administering-a-repository/configuring-protected-branches": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/user/administering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/github/administering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.16/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/creating-releases": "/de/enterprise/2.16/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.16/user/administering-a-repository/creating-releases": "/de/enterprise/2.16/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.16/github/administering-a-repository/creating-releases": "/de/enterprise/2.16/user/github/administering-a-repository/creating-releases", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/user/administering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/github/administering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.16/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/deleting-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/deleting-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/deleting-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.16/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/editing-and-deleting-releases": "/de/enterprise/2.16/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/user/administering-a-repository/editing-and-deleting-releases": "/de/enterprise/2.16/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/github/administering-a-repository/editing-and-deleting-releases": "/de/enterprise/2.16/user/github/administering-a-repository/editing-and-deleting-releases", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/user/administering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/github/administering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/enabling-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/enabling-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/enabling-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/getting-the-download-count-for-your-releases": "/de/enterprise/2.16/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/administering-a-repository/getting-the-download-count-for-your-releases": "/de/enterprise/2.16/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/github/administering-a-repository/getting-the-download-count-for-your-releases": "/de/enterprise/2.16/user/github/administering-a-repository/getting-the-download-count-for-your-releases", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository", - "/de/enterprise/2.16/user/administering-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository", - "/de/enterprise/2.16/github/administering-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/linking-to-releases": "/de/enterprise/2.16/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.16/user/administering-a-repository/linking-to-releases": "/de/enterprise/2.16/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.16/github/administering-a-repository/linking-to-releases": "/de/enterprise/2.16/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/managing-repository-settings": "/de/enterprise/2.16/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/user/administering-a-repository/managing-repository-settings": "/de/enterprise/2.16/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/github/administering-a-repository/managing-repository-settings": "/de/enterprise/2.16/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/renaming-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/renaming-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/renaming-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/setting-repository-visibility": "/de/enterprise/2.16/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/user/administering-a-repository/setting-repository-visibility": "/de/enterprise/2.16/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/github/administering-a-repository/setting-repository-visibility": "/de/enterprise/2.16/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/setting-the-default-branch": "/de/enterprise/2.16/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/user/administering-a-repository/setting-the-default-branch": "/de/enterprise/2.16/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/github/administering-a-repository/setting-the-default-branch": "/de/enterprise/2.16/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/transferring-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/user/administering-a-repository/transferring-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/github/administering-a-repository/transferring-a-repository": "/de/enterprise/2.16/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/types-of-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/user/administering-a-repository/types-of-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/github/administering-a-repository/types-of-required-status-checks": "/de/enterprise/2.16/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/user/administering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/github/administering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.16/user/github/admin/guidesistering-a-repository/viewing-your-repositorys-tags": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/administering-a-repository/viewing-your-repositorys-tags": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/github/administering-a-repository/viewing-your-repositorys-tags": "/de/enterprise/2.16/user/github/administering-a-repository/viewing-your-repositorys-tags", - "/de/enterprise/2.16/user/authenticating-to-github/about-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/about-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/about-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/about-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/about-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/about-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/accessing-github-using-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/accessing-github-using-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account": "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account": "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.16/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account": "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account": "/de/enterprise/2.16/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.16/user/authenticating-to-github/associating-an-email-with-your-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/associating-an-email-with-your-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/authorizing-oauth-apps": "/de/enterprise/2.16/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.16/github/authenticating-to-github/authorizing-oauth-apps": "/de/enterprise/2.16/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.16/user/authenticating-to-github/checking-for-existing-gpg-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/github/authenticating-to-github/checking-for-existing-gpg-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.16/user/authenticating-to-github/checking-for-existing-ssh-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/github/authenticating-to-github/checking-for-existing-ssh-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.16/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status": "/de/enterprise/2.16/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.16/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods": "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods": "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.16/user/authenticating-to-github/configuring-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.16/github/authenticating-to-github/configuring-two-factor-authentication": "/de/enterprise/2.16/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.16/user/authenticating-to-github/connecting-to-github-with-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/connecting-to-github-with-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/connecting-with-third-party-applications": "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.16/github/authenticating-to-github/connecting-with-third-party-applications": "/de/enterprise/2.16/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.16/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line": "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line": "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.16/user/authenticating-to-github/creating-a-strong-password": "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.16/github/authenticating-to-github/creating-a-strong-password": "/de/enterprise/2.16/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.16/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account": "/de/enterprise/2.16/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account": "/de/enterprise/2.16/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.16/user/authenticating-to-github/error-agent-admitted-failure-to-sign": "/de/enterprise/2.16/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/github/authenticating-to-github/error-agent-admitted-failure-to-sign": "/de/enterprise/2.16/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.16/user/authenticating-to-github/error-bad-file-number": "/de/enterprise/2.16/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.16/github/authenticating-to-github/error-bad-file-number": "/de/enterprise/2.16/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.16/user/authenticating-to-github/error-key-already-in-use": "/de/enterprise/2.16/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.16/github/authenticating-to-github/error-key-already-in-use": "/de/enterprise/2.16/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-denied-publickey": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-denied-publickey": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.16/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo": "/de/enterprise/2.16/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.16/user/authenticating-to-github/error-ssh-add-illegal-option----k": "/de/enterprise/2.16/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/github/authenticating-to-github/error-ssh-add-illegal-option----k": "/de/enterprise/2.16/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.16/user/authenticating-to-github/error-were-doing-an-ssh-key-audit": "/de/enterprise/2.16/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/github/authenticating-to-github/error-were-doing-an-ssh-key-audit": "/de/enterprise/2.16/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.16/user/authenticating-to-github/generating-a-new-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/generating-a-new-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent": "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent": "/de/enterprise/2.16/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.16/user/authenticating-to-github": "/de/enterprise/2.16/user/github/authenticating-to-github", - "/de/enterprise/2.16/github/authenticating-to-github": "/de/enterprise/2.16/user/github/authenticating-to-github", - "/de/enterprise/2.16/user/authenticating-to-github/keeping-your-account-and-data-secure": "/de/enterprise/2.16/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/github/authenticating-to-github/keeping-your-account-and-data-secure": "/de/enterprise/2.16/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.16/user/authenticating-to-github/managing-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/managing-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/preventing-unauthorized-access": "/de/enterprise/2.16/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.16/github/authenticating-to-github/preventing-unauthorized-access": "/de/enterprise/2.16/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.16/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials": "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials": "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.16/user/authenticating-to-github/recovering-your-ssh-key-passphrase": "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/github/authenticating-to-github/recovering-your-ssh-key-passphrase": "/de/enterprise/2.16/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.16/user/authenticating-to-github/removing-sensitive-data-from-a-repository": "/de/enterprise/2.16/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/github/authenticating-to-github/removing-sensitive-data-from-a-repository": "/de/enterprise/2.16/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-authorized-applications-oauth": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-authorized-applications-oauth": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-authorized-integrations": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-authorized-integrations": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-deploy-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-deploy-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-security-log": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-security-log": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.16/user/authenticating-to-github/reviewing-your-ssh-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.16/github/authenticating-to-github/reviewing-your-ssh-keys": "/de/enterprise/2.16/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.16/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa": "/de/enterprise/2.16/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa": "/de/enterprise/2.16/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.16/user/authenticating-to-github/signing-commits": "/de/enterprise/2.16/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.16/github/authenticating-to-github/signing-commits": "/de/enterprise/2.16/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.16/user/authenticating-to-github/signing-tags": "/de/enterprise/2.16/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.16/github/authenticating-to-github/signing-tags": "/de/enterprise/2.16/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.16/user/authenticating-to-github/sudo-mode": "/de/enterprise/2.16/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.16/github/authenticating-to-github/sudo-mode": "/de/enterprise/2.16/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.16/user/authenticating-to-github/telling-git-about-your-signing-key": "/de/enterprise/2.16/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.16/github/authenticating-to-github/telling-git-about-your-signing-key": "/de/enterprise/2.16/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.16/user/authenticating-to-github/testing-your-ssh-connection": "/de/enterprise/2.16/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.16/github/authenticating-to-github/testing-your-ssh-connection": "/de/enterprise/2.16/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.16/user/authenticating-to-github/troubleshooting-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/github/authenticating-to-github/troubleshooting-commit-signature-verification": "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.16/user/authenticating-to-github/troubleshooting-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.16/github/authenticating-to-github/troubleshooting-ssh": "/de/enterprise/2.16/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.16/user/authenticating-to-github/updating-an-expired-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/updating-an-expired-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/updating-your-github-access-credentials": "/de/enterprise/2.16/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.16/github/authenticating-to-github/updating-your-github-access-credentials": "/de/enterprise/2.16/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.16/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key": "/de/enterprise/2.16/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.16/user/authenticating-to-github/working-with-ssh-key-passphrases": "/de/enterprise/2.16/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/github/authenticating-to-github/working-with-ssh-key-passphrases": "/de/enterprise/2.16/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.16/user/building-a-strong-community/about-issue-and-pull-request-templates": "/de/enterprise/2.16/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/github/building-a-strong-community/about-issue-and-pull-request-templates": "/de/enterprise/2.16/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.16/user/building-a-strong-community/about-team-discussions": "/de/enterprise/2.16/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.16/github/building-a-strong-community/about-team-discussions": "/de/enterprise/2.16/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.16/user/building-a-strong-community/about-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/about-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/adding-a-license-to-a-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.16/github/building-a-strong-community/adding-a-license-to-a-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.16/user/building-a-strong-community/adding-or-editing-wiki-pages": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/github/building-a-strong-community/adding-or-editing-wiki-pages": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.16/user/building-a-strong-community/adding-support-resources-to-your-project": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.16/github/building-a-strong-community/adding-support-resources-to-your-project": "/de/enterprise/2.16/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.16/user/building-a-strong-community/changing-access-permissions-for-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/changing-access-permissions-for-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/collaborating-with-your-team": "/de/enterprise/2.16/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.16/github/building-a-strong-community/collaborating-with-your-team": "/de/enterprise/2.16/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.16/user/building-a-strong-community/configuring-issue-templates-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/configuring-issue-templates-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/creating-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/creating-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/disabling-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/disabling-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/documenting-your-project-with-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.16/github/building-a-strong-community/documenting-your-project-with-wikis": "/de/enterprise/2.16/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.16/user/building-a-strong-community/editing-or-deleting-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/editing-or-deleting-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/editing-wiki-content": "/de/enterprise/2.16/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.16/github/building-a-strong-community/editing-wiki-content": "/de/enterprise/2.16/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.16/user/building-a-strong-community": "/de/enterprise/2.16/user/github/building-a-strong-community", - "/de/enterprise/2.16/github/building-a-strong-community": "/de/enterprise/2.16/user/github/building-a-strong-community", - "/de/enterprise/2.16/user/building-a-strong-community/locking-conversations": "/de/enterprise/2.16/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.16/github/building-a-strong-community/locking-conversations": "/de/enterprise/2.16/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.16/user/building-a-strong-community/managing-disruptive-comments": "/de/enterprise/2.16/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.16/github/building-a-strong-community/managing-disruptive-comments": "/de/enterprise/2.16/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.16/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository": "/de/enterprise/2.16/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.16/user/building-a-strong-community/moderating-comments-and-conversations": "/de/enterprise/2.16/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.16/github/building-a-strong-community/moderating-comments-and-conversations": "/de/enterprise/2.16/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.16/user/building-a-strong-community/pinning-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.16/github/building-a-strong-community/pinning-a-team-discussion": "/de/enterprise/2.16/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.16/user/building-a-strong-community/setting-guidelines-for-repository-contributors": "/de/enterprise/2.16/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/github/building-a-strong-community/setting-guidelines-for-repository-contributors": "/de/enterprise/2.16/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.16/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions": "/de/enterprise/2.16/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions": "/de/enterprise/2.16/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.16/user/building-a-strong-community/tracking-changes-in-a-comment": "/de/enterprise/2.16/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.16/github/building-a-strong-community/tracking-changes-in-a-comment": "/de/enterprise/2.16/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.16/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests": "/de/enterprise/2.16/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.16/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests": "/de/enterprise/2.16/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.16/user/building-a-strong-community/viewing-a-wikis-history-of-changes": "/de/enterprise/2.16/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/github/building-a-strong-community/viewing-a-wikis-history-of-changes": "/de/enterprise/2.16/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-branches": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-branches": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-forks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-forks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/about-status-checks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/about-status-checks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/github-flow": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/github-flow": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/syncing-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/syncing-a-fork": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/working-with-forks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/working-with-forks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.16/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.16/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks": "/de/enterprise/2.16/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.16/user/committing-changes-to-your-project/changing-a-commit-message": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.16/github/committing-changes-to-your-project/changing-a-commit-message": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.16/user/committing-changes-to-your-project/commit-branch-and-tag-labels": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.16/github/committing-changes-to-your-project/commit-branch-and-tag-labels": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.16/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.16/user/committing-changes-to-your-project/comparing-commits-across-time": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.16/github/committing-changes-to-your-project/comparing-commits-across-time": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/comparing-commits-across-time", - "/de/enterprise/2.16/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.16/user/committing-changes-to-your-project/creating-and-editing-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/creating-and-editing-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/differences-between-commit-views": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.16/github/committing-changes-to-your-project/differences-between-commit-views": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.16/user/committing-changes-to-your-project": "/de/enterprise/2.16/user/github/committing-changes-to-your-project", - "/de/enterprise/2.16/github/committing-changes-to-your-project": "/de/enterprise/2.16/user/github/committing-changes-to-your-project", - "/de/enterprise/2.16/user/committing-changes-to-your-project/troubleshooting-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/troubleshooting-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/viewing-and-comparing-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.16/github/committing-changes-to-your-project/viewing-and-comparing-commits": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.16/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.16/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user": "/de/enterprise/2.16/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-code-owners": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-code-owners": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-readmes": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-readmes": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/about-repository-languages": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/about-repository-languages": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/backing-up-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/backing-up-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/cloning-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/cloning-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-new-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-new-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/duplicating-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/duplicating-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/error-repository-not-found": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/error-repository-not-found": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/https-cloning-errors": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/https-cloning-errors": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/licensing-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/licensing-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.16/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository": "/de/enterprise/2.16/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.16/user/extending-github/about-webhooks": "/de/enterprise/2.16/user/github/extending-github/about-webhooks", - "/de/enterprise/2.16/github/extending-github/about-webhooks": "/de/enterprise/2.16/user/github/extending-github/about-webhooks", - "/de/enterprise/2.16/user/extending-github/getting-started-with-the-api": "/de/enterprise/2.16/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.16/github/extending-github/getting-started-with-the-api": "/de/enterprise/2.16/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.16/user/extending-github/git-automation-with-oauth-tokens": "/de/enterprise/2.16/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/github/extending-github/git-automation-with-oauth-tokens": "/de/enterprise/2.16/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.16/user/extending-github": "/de/enterprise/2.16/user/github/extending-github", - "/de/enterprise/2.16/github/extending-github": "/de/enterprise/2.16/user/github/extending-github", - "/de/enterprise/2.16/user/getting-started-with-github/access-permissions-on-github": "/de/enterprise/2.16/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.16/github/getting-started-with-github/access-permissions-on-github": "/de/enterprise/2.16/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.16/user/getting-started-with-github/be-social": "/de/enterprise/2.16/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.16/github/getting-started-with-github/be-social": "/de/enterprise/2.16/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.16/user/getting-started-with-github/create-a-repo": "/de/enterprise/2.16/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.16/github/getting-started-with-github/create-a-repo": "/de/enterprise/2.16/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.16/user/getting-started-with-github/exploring-projects-on-github": "/de/enterprise/2.16/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.16/github/getting-started-with-github/exploring-projects-on-github": "/de/enterprise/2.16/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.16/user/getting-started-with-github/following-people": "/de/enterprise/2.16/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.16/github/getting-started-with-github/following-people": "/de/enterprise/2.16/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.16/user/getting-started-with-github/fork-a-repo": "/de/enterprise/2.16/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.16/github/getting-started-with-github/fork-a-repo": "/de/enterprise/2.16/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.16/user/getting-started-with-github/git-and-github-learning-resources": "/de/enterprise/2.16/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.16/github/getting-started-with-github/git-and-github-learning-resources": "/de/enterprise/2.16/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.16/user/getting-started-with-github/git-cheatsheet": "/de/enterprise/2.16/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.16/github/getting-started-with-github/git-cheatsheet": "/de/enterprise/2.16/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.16/user/getting-started-with-github/github-glossary": "/de/enterprise/2.16/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.16/github/getting-started-with-github/github-glossary": "/de/enterprise/2.16/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.16/user/getting-started-with-github": "/de/enterprise/2.16/user/github/getting-started-with-github", - "/de/enterprise/2.16/github/getting-started-with-github": "/de/enterprise/2.16/user/github/getting-started-with-github", - "/de/enterprise/2.16/user/getting-started-with-github/keyboard-shortcuts": "/de/enterprise/2.16/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.16/github/getting-started-with-github/keyboard-shortcuts": "/de/enterprise/2.16/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.16/user/getting-started-with-github/learning-about-github": "/de/enterprise/2.16/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.16/github/getting-started-with-github/learning-about-github": "/de/enterprise/2.16/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.16/user/getting-started-with-github/saving-repositories-with-stars": "/de/enterprise/2.16/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.16/github/getting-started-with-github/saving-repositories-with-stars": "/de/enterprise/2.16/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.16/user/getting-started-with-github/set-up-git": "/de/enterprise/2.16/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.16/github/getting-started-with-github/set-up-git": "/de/enterprise/2.16/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.16/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud": "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud": "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.16/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server": "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server": "/de/enterprise/2.16/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.16/user/getting-started-with-github/signing-up-for-github": "/de/enterprise/2.16/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.16/github/getting-started-with-github/signing-up-for-github": "/de/enterprise/2.16/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.16/user/getting-started-with-github/supported-browsers": "/de/enterprise/2.16/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.16/github/getting-started-with-github/supported-browsers": "/de/enterprise/2.16/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.16/user/getting-started-with-github/types-of-github-accounts": "/de/enterprise/2.16/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.16/github/getting-started-with-github/types-of-github-accounts": "/de/enterprise/2.16/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.16/user/getting-started-with-github/using-github": "/de/enterprise/2.16/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.16/github/getting-started-with-github/using-github": "/de/enterprise/2.16/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.16/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.16/user/importing-your-projects-to-github/importing-source-code-to-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/importing-source-code-to-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/source-code-migration-tools": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.16/github/importing-your-projects-to-github/source-code-migration-tools": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.16/user/importing-your-projects-to-github/subversion-properties-supported-by-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/subversion-properties-supported-by-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.16/user/importing-your-projects-to-github/support-for-subversion-clients": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.16/github/importing-your-projects-to-github/support-for-subversion-clients": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.16/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.16/user/importing-your-projects-to-github/working-with-subversion-on-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.16/github/importing-your-projects-to-github/working-with-subversion-on-github": "/de/enterprise/2.16/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.16/user": "/de/enterprise/2.16/user/github", - "/de/enterprise/2.16/github": "/de/enterprise/2.16/user/github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/3d-file-viewer": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.16/github/managing-files-in-a-repository/3d-file-viewer": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.16/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/adding-a-file-to-a-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/adding-a-file-to-a-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/creating-new-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/creating-new-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/deleting-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/deleting-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository/editing-files-in-another-users-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/editing-files-in-another-users-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/editing-files-in-your-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository/editing-files-in-your-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/getting-permanent-links-to-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/getting-permanent-links-to-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.16/user/managing-files-in-a-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository", - "/de/enterprise/2.16/github/managing-files-in-a-repository": "/de/enterprise/2.16/user/github/managing-files-in-a-repository", - "/de/enterprise/2.16/user/managing-files-in-a-repository/managing-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/managing-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/managing-files-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/managing-files-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/mapping-geojson-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/mapping-geojson-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/moving-a-file-to-a-new-location": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/github/managing-files-in-a-repository/moving-a-file-to-a-new-location": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.16/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.16/user/managing-files-in-a-repository/renaming-a-file": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.16/github/managing-files-in-a-repository/renaming-a-file": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-and-diffing-images": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-and-diffing-images": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-csv-and-tsv-data": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-csv-and-tsv-data": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-differences-in-prose-documents": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-differences-in-prose-documents": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.16/user/managing-files-in-a-repository/rendering-pdf-documents": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.16/github/managing-files-in-a-repository/rendering-pdf-documents": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.16/user/managing-files-in-a-repository/tracking-changes-in-a-file": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.16/github/managing-files-in-a-repository/tracking-changes-in-a-file": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.16/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.16/user/managing-files-in-a-repository/working-with-non-code-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.16/github/managing-files-in-a-repository/working-with-non-code-files": "/de/enterprise/2.16/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.16/user/managing-large-files/about-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/about-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/collaboration-with-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/collaboration-with-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/conditions-for-large-files": "/de/enterprise/2.16/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.16/github/managing-large-files/conditions-for-large-files": "/de/enterprise/2.16/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.16/user/managing-large-files/configuring-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/configuring-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/distributing-large-binaries": "/de/enterprise/2.16/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.16/github/managing-large-files/distributing-large-binaries": "/de/enterprise/2.16/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.16/user/managing-large-files": "/de/enterprise/2.16/user/github/managing-large-files", - "/de/enterprise/2.16/github/managing-large-files": "/de/enterprise/2.16/user/github/managing-large-files", - "/de/enterprise/2.16/user/managing-large-files/installing-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/installing-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/removing-files-from-a-repositorys-history": "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/github/managing-large-files/removing-files-from-a-repositorys-history": "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.16/user/managing-large-files/removing-files-from-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/github/managing-large-files/removing-files-from-git-large-file-storage": "/de/enterprise/2.16/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.16/user/managing-large-files/resolving-git-large-file-storage-upload-failures": "/de/enterprise/2.16/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/github/managing-large-files/resolving-git-large-file-storage-upload-failures": "/de/enterprise/2.16/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.16/user/managing-large-files/versioning-large-files": "/de/enterprise/2.16/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.16/github/managing-large-files/versioning-large-files": "/de/enterprise/2.16/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.16/user/managing-large-files/working-with-large-files": "/de/enterprise/2.16/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.16/github/managing-large-files/working-with-large-files": "/de/enterprise/2.16/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-automation-for-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-automation-for-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-labels": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-labels": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-milestones": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-milestones": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/about-task-lists": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.16/github/managing-your-work-on-github/about-task-lists": "/de/enterprise/2.16/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.16/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/adding-notes-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/adding-notes-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/archiving-cards-on-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/archiving-cards-on-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users": "/de/enterprise/2.16/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users": "/de/enterprise/2.16/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.16/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/changing-project-board-visibility": "/de/enterprise/2.16/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.16/github/managing-your-work-on-github/changing-project-board-visibility": "/de/enterprise/2.16/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.16/user/managing-your-work-on-github/closing-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/closing-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/closing-issues-using-keywords": "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.16/github/managing-your-work-on-github/closing-issues-using-keywords": "/de/enterprise/2.16/user/github/managing-your-work-on-github/closing-issues-using-keywords", - "/de/enterprise/2.16/user/managing-your-work-on-github/configuring-automation-for-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/configuring-automation-for-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-an-issue": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-an-issue": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.16/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/deleting-an-issue": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.16/github/managing-your-work-on-github/deleting-an-issue": "/de/enterprise/2.16/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-project-boards-in-a-repository": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-project-boards-in-a-repository": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github/disabling-project-boards-in-your-organization": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/github/managing-your-work-on-github/disabling-project-boards-in-your-organization": "/de/enterprise/2.16/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.16/user/managing-your-work-on-github/editing-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.16/github/managing-your-work-on-github/editing-a-label": "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.16/user/managing-your-work-on-github/editing-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/editing-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-cards-on-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-cards-on-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/filtering-pull-requests-by-review-status": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/github/managing-your-work-on-github/filtering-pull-requests-by-review-status": "/de/enterprise/2.16/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.16/user/managing-your-work-on-github/finding-information-in-a-repository": "/de/enterprise/2.16/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.16/github/managing-your-work-on-github/finding-information-in-a-repository": "/de/enterprise/2.16/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.16/user/managing-your-work-on-github": "/de/enterprise/2.16/user/github/managing-your-work-on-github", - "/de/enterprise/2.16/github/managing-your-work-on-github": "/de/enterprise/2.16/user/github/managing-your-work-on-github", - "/de/enterprise/2.16/user/managing-your-work-on-github/labeling-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/labeling-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/linking-a-repository-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/linking-a-repository-to-a-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/managing-your-work-with-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.16/github/managing-your-work-on-github/managing-your-work-with-issues": "/de/enterprise/2.16/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.16/user/managing-your-work-on-github/opening-an-issue-from-a-comment": "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.16/github/managing-your-work-on-github/opening-an-issue-from-a-comment": "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.16/user/managing-your-work-on-github/opening-an-issue-from-code": "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.16/github/managing-your-work-on-github/opening-an-issue-from-code": "/de/enterprise/2.16/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.16/user/managing-your-work-on-github/reopening-a-closed-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/reopening-a-closed-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/sharing-filters": "/de/enterprise/2.16/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.16/github/managing-your-work-on-github/sharing-filters": "/de/enterprise/2.16/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.16/user/managing-your-work-on-github/sorting-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/sorting-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-progress-on-your-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-progress-on-your-project-board": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.16/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards": "/de/enterprise/2.16/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.16/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests": "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.16/user/managing-your-work-on-github/viewing-your-milestones-progress": "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.16/github/managing-your-work-on-github/viewing-your-milestones-progress": "/de/enterprise/2.16/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/about-email-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-email-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/about-email-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-email-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/about-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/about-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/about-web-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-web-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/about-web-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/about-web-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/accessing-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/accessing-your-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/accessing-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/accessing-your-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/getting-started-with-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/managing-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/managing-your-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/managing-your-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/managing-your-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/marking-notifications-as-read": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/saving-notifications-for-later": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories", - "/de/enterprise/2.16/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions", - "/de/enterprise/2.16/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions": "/de/enterprise/2.16/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions", - "/de/enterprise/2.16/user/searching-for-information-on-github/about-searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/about-searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server": "/de/enterprise/2.16/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server": "/de/enterprise/2.16/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.16/user/searching-for-information-on-github/finding-files-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/finding-files-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/getting-started-with-searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/getting-started-with-searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-code": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-code": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-commits": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-commits": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-for-repositories": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-for-repositories": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-in-forks": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-in-forks": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-issues-and-pull-requests": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-issues-and-pull-requests": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-on-github": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-topics": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-topics": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-users": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-users": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.16/user/searching-for-information-on-github/searching-wikis": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.16/github/searching-for-information-on-github/searching-wikis": "/de/enterprise/2.16/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.16/user/searching-for-information-on-github/sorting-search-results": "/de/enterprise/2.16/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.16/github/searching-for-information-on-github/sorting-search-results": "/de/enterprise/2.16/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.16/user/searching-for-information-on-github/troubleshooting-search-queries": "/de/enterprise/2.16/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.16/github/searching-for-information-on-github/troubleshooting-search-queries": "/de/enterprise/2.16/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.16/user/searching-for-information-on-github/understanding-the-search-syntax": "/de/enterprise/2.16/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.16/github/searching-for-information-on-github/understanding-the-search-syntax": "/de/enterprise/2.16/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-fork-private-repositories-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-a-persons-role-to-owner", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/creating-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/creating-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/deleting-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/deleting-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/renaming-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/renaming-a-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.16/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled": "/de/enterprise/2.16/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/about-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/about-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/customizing-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/customizing-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/personalizing-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/personalizing-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/about-organization-membership": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/about-organization-membership": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/accessing-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/accessing-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/changing-your-github-username": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/changing-your-github-username": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-email-preferences": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-email-preferences": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.16/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization": "/de/enterprise/2.16/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.16/user/site-policy/github-insights-and-data-protection-for-your-organization": "/de/enterprise/2.16/user/github/site-policy/github-insights-and-data-protection-for-your-organization", - "/de/enterprise/2.16/github/site-policy/github-insights-and-data-protection-for-your-organization": "/de/enterprise/2.16/user/github/site-policy/github-insights-and-data-protection-for-your-organization", - "/de/enterprise/2.16/user/using-git/about-git-rebase": "/de/enterprise/2.16/user/github/using-git/about-git-rebase", - "/de/enterprise/2.16/github/using-git/about-git-rebase": "/de/enterprise/2.16/user/github/using-git/about-git-rebase", - "/de/enterprise/2.16/user/using-git/about-git-subtree-merges": "/de/enterprise/2.16/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.16/github/using-git/about-git-subtree-merges": "/de/enterprise/2.16/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.16/user/using-git/about-remote-repositories": "/de/enterprise/2.16/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.16/github/using-git/about-remote-repositories": "/de/enterprise/2.16/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.16/user/using-git/adding-a-remote": "/de/enterprise/2.16/user/github/using-git/adding-a-remote", - "/de/enterprise/2.16/github/using-git/adding-a-remote": "/de/enterprise/2.16/user/github/using-git/adding-a-remote", - "/de/enterprise/2.16/user/using-git/associating-text-editors-with-git": "/de/enterprise/2.16/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.16/github/using-git/associating-text-editors-with-git": "/de/enterprise/2.16/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.16/user/using-git/caching-your-github-password-in-git": "/de/enterprise/2.16/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.16/github/using-git/caching-your-github-password-in-git": "/de/enterprise/2.16/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.16/user/using-git/changing-a-remotes-url": "/de/enterprise/2.16/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.16/github/using-git/changing-a-remotes-url": "/de/enterprise/2.16/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.16/user/using-git/changing-author-info": "/de/enterprise/2.16/user/github/using-git/changing-author-info", - "/de/enterprise/2.16/github/using-git/changing-author-info": "/de/enterprise/2.16/user/github/using-git/changing-author-info", - "/de/enterprise/2.16/user/using-git/configuring-git-to-handle-line-endings": "/de/enterprise/2.16/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/github/using-git/configuring-git-to-handle-line-endings": "/de/enterprise/2.16/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.16/user/using-git/dealing-with-non-fast-forward-errors": "/de/enterprise/2.16/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/github/using-git/dealing-with-non-fast-forward-errors": "/de/enterprise/2.16/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.16/user/using-git/getting-changes-from-a-remote-repository": "/de/enterprise/2.16/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/github/using-git/getting-changes-from-a-remote-repository": "/de/enterprise/2.16/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.16/user/using-git/getting-started-with-git-and-github": "/de/enterprise/2.16/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.16/github/using-git/getting-started-with-git-and-github": "/de/enterprise/2.16/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.16/user/using-git/git-workflows": "/de/enterprise/2.16/user/github/using-git/git-workflows", - "/de/enterprise/2.16/github/using-git/git-workflows": "/de/enterprise/2.16/user/github/using-git/git-workflows", - "/de/enterprise/2.16/user/using-git/ignoring-files": "/de/enterprise/2.16/user/github/using-git/ignoring-files", - "/de/enterprise/2.16/github/using-git/ignoring-files": "/de/enterprise/2.16/user/github/using-git/ignoring-files", - "/de/enterprise/2.16/user/using-git": "/de/enterprise/2.16/user/github/using-git", - "/de/enterprise/2.16/github/using-git": "/de/enterprise/2.16/user/github/using-git", - "/de/enterprise/2.16/user/using-git/learning-about-git": "/de/enterprise/2.16/user/github/using-git/learning-about-git", - "/de/enterprise/2.16/github/using-git/learning-about-git": "/de/enterprise/2.16/user/github/using-git/learning-about-git", - "/de/enterprise/2.16/user/using-git/managing-remote-repositories": "/de/enterprise/2.16/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.16/github/using-git/managing-remote-repositories": "/de/enterprise/2.16/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.16/user/using-git/pushing-commits-to-a-remote-repository": "/de/enterprise/2.16/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/github/using-git/pushing-commits-to-a-remote-repository": "/de/enterprise/2.16/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.16/user/using-git/removing-a-remote": "/de/enterprise/2.16/user/github/using-git/removing-a-remote", - "/de/enterprise/2.16/github/using-git/removing-a-remote": "/de/enterprise/2.16/user/github/using-git/removing-a-remote", - "/de/enterprise/2.16/user/using-git/renaming-a-remote": "/de/enterprise/2.16/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.16/github/using-git/renaming-a-remote": "/de/enterprise/2.16/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.16/user/using-git/resolving-merge-conflicts-after-a-git-rebase": "/de/enterprise/2.16/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/github/using-git/resolving-merge-conflicts-after-a-git-rebase": "/de/enterprise/2.16/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.16/user/using-git/setting-your-username-in-git": "/de/enterprise/2.16/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.16/github/using-git/setting-your-username-in-git": "/de/enterprise/2.16/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.16/user/using-git/splitting-a-subfolder-out-into-a-new-repository": "/de/enterprise/2.16/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/github/using-git/splitting-a-subfolder-out-into-a-new-repository": "/de/enterprise/2.16/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.16/user/using-git/updating-credentials-from-the-osx-keychain": "/de/enterprise/2.16/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/github/using-git/updating-credentials-from-the-osx-keychain": "/de/enterprise/2.16/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.16/user/using-git/using-advanced-git-commands": "/de/enterprise/2.16/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.16/github/using-git/using-advanced-git-commands": "/de/enterprise/2.16/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.16/user/using-git/using-common-git-commands": "/de/enterprise/2.16/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.16/github/using-git/using-common-git-commands": "/de/enterprise/2.16/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.16/user/using-git/using-git-rebase-on-the-command-line": "/de/enterprise/2.16/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/github/using-git/using-git-rebase-on-the-command-line": "/de/enterprise/2.16/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.16/user/using-git/which-remote-url-should-i-use": "/de/enterprise/2.16/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.16/github/using-git/which-remote-url-should-i-use": "/de/enterprise/2.16/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.16/user/using-git/why-is-git-always-asking-for-my-password": "/de/enterprise/2.16/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/github/using-git/why-is-git-always-asking-for-my-password": "/de/enterprise/2.16/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/about-repository-graphs": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/about-repository-graphs": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.16/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository": "/de/enterprise/2.16/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.16/user/working-with-github-pages/about-github-pages-and-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/about-github-pages-and-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/about-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages/about-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.16/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.16/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/creating-a-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/creating-a-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.16/user/working-with-github-pages/getting-started-with-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages/getting-started-with-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages", - "/de/enterprise/2.16/github/working-with-github-pages": "/de/enterprise/2.16/user/github/working-with-github-pages", - "/de/enterprise/2.16/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll": "/de/enterprise/2.16/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.16/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.16/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.16/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.16/user/working-with-github-pages/unpublishing-a-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/github/working-with-github-pages/unpublishing-a-github-pages-site": "/de/enterprise/2.16/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.16/user/writing-on-github/about-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/about-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.16/user/writing-on-github/about-writing-and-formatting-on-github": "/de/enterprise/2.16/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/github/writing-on-github/about-writing-and-formatting-on-github": "/de/enterprise/2.16/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/writing-on-github/autolinked-references-and-urls": "/de/enterprise/2.16/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.16/github/writing-on-github/autolinked-references-and-urls": "/de/enterprise/2.16/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.16/user/writing-on-github/basic-writing-and-formatting-syntax": "/de/enterprise/2.16/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/github/writing-on-github/basic-writing-and-formatting-syntax": "/de/enterprise/2.16/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.16/user/writing-on-github/creating-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/creating-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/creating-and-highlighting-code-blocks": "/de/enterprise/2.16/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/github/writing-on-github/creating-and-highlighting-code-blocks": "/de/enterprise/2.16/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.16/user/writing-on-github/creating-gists": "/de/enterprise/2.16/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.16/github/writing-on-github/creating-gists": "/de/enterprise/2.16/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.16/user/writing-on-github/deleting-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/deleting-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/editing-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.16/github/writing-on-github/editing-a-saved-reply": "/de/enterprise/2.16/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.16/user/writing-on-github/editing-and-sharing-content-with-gists": "/de/enterprise/2.16/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/github/writing-on-github/editing-and-sharing-content-with-gists": "/de/enterprise/2.16/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.16/user/writing-on-github/forking-and-cloning-gists": "/de/enterprise/2.16/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.16/github/writing-on-github/forking-and-cloning-gists": "/de/enterprise/2.16/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.16/user/writing-on-github/getting-started-with-writing-and-formatting-on-github": "/de/enterprise/2.16/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/github/writing-on-github/getting-started-with-writing-and-formatting-on-github": "/de/enterprise/2.16/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.16/user/writing-on-github": "/de/enterprise/2.16/user/github/writing-on-github", - "/de/enterprise/2.16/github/writing-on-github": "/de/enterprise/2.16/user/github/writing-on-github", - "/de/enterprise/2.16/user/writing-on-github/organizing-information-with-tables": "/de/enterprise/2.16/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.16/github/writing-on-github/organizing-information-with-tables": "/de/enterprise/2.16/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.16/user/writing-on-github/using-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/using-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.16/user/writing-on-github/working-with-advanced-formatting": "/de/enterprise/2.16/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.16/github/writing-on-github/working-with-advanced-formatting": "/de/enterprise/2.16/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.16/user/writing-on-github/working-with-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.16/github/writing-on-github/working-with-saved-replies": "/de/enterprise/2.16/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise": "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights": "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights": "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.16/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports": "/de/enterprise/2.16/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.16/insights": "/de/enterprise/2.16/user/insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/about-data-in-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/about-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/configuring-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/installing-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-contributors-and-teams": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-data-in-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-events": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-organizations": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/managing-repositories": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/system-overview-for-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.16/insights/installing-and-configuring-github-insights/updating-github-insights": "/de/enterprise/2.16/user/insights/installing-and-configuring-github-insights/updating-github-insights", "/en/enterprise/2.16/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.16/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.16/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.16/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.16/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.16/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", @@ -22418,1398 +20433,6 @@ "/cn/enterprise/2.17/rest/reference/search": "/cn/enterprise/2.17/user/rest/reference/search", "/cn/enterprise/2.17/rest/reference/teams": "/cn/enterprise/2.17/user/rest/reference/teams", "/cn/enterprise/2.17/rest/reference/users": "/cn/enterprise/2.17/user/rest/reference/users", - "/de/enterprise/2.17/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/de/enterprise/2.17/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", - "/de/enterprise/2.17/admin/guides/articles/including-github-enterprise-contributions-in-your-githubcom-profile": "/de/enterprise/2.17/admin/articles/including-github-enterprise-contributions-in-your-githubcom-profile", - "/de/enterprise/2.17/admin/guides/articles/using-github-task-runner": "/de/enterprise/2.17/admin/articles/using-github-task-runner", - "/de/enterprise/2.17/admin/guides/clustering/about-cluster-nodes": "/de/enterprise/2.17/admin/clustering/about-cluster-nodes", - "/de/enterprise/2.17/admin/guides/clustering/about-clustering": "/de/enterprise/2.17/admin/clustering/about-clustering", - "/de/enterprise/2.17/admin/guides/clustering/cluster-network-configuration": "/de/enterprise/2.17/admin/clustering/cluster-network-configuration", - "/de/enterprise/2.17/admin/guides/clustering/differences-between-clustering-and-high-availability-ha": "/de/enterprise/2.17/admin/clustering/differences-between-clustering-and-high-availability-ha", - "/de/enterprise/2.17/admin/guides/clustering/evacuating-a-cluster-node": "/de/enterprise/2.17/admin/clustering/evacuating-a-cluster-node", - "/de/enterprise/2.17/admin/guides/clustering": "/de/enterprise/2.17/admin/clustering", - "/de/enterprise/2.17/admin/guides/clustering/initializing-the-cluster": "/de/enterprise/2.17/admin/clustering/initializing-the-cluster", - "/de/enterprise/2.17/admin/guides/clustering/managing-a-github-enterprise-server-cluster": "/de/enterprise/2.17/admin/clustering/managing-a-github-enterprise-server-cluster", - "/de/enterprise/2.17/admin/guides/clustering/monitoring-cluster-nodes": "/de/enterprise/2.17/admin/clustering/monitoring-cluster-nodes", - "/de/enterprise/2.17/admin/guides/clustering/overview": "/de/enterprise/2.17/admin/clustering/overview", - "/de/enterprise/2.17/admin/guides/clustering/replacing-a-cluster-node": "/de/enterprise/2.17/admin/clustering/replacing-a-cluster-node", - "/de/enterprise/2.17/admin/guides/clustering/setting-up-the-cluster-instances": "/de/enterprise/2.17/admin/clustering/setting-up-the-cluster-instances", - "/de/enterprise/2.17/admin/guides/clustering/upgrading-a-cluster": "/de/enterprise/2.17/admin/clustering/upgrading-a-cluster", - "/de/enterprise/2.17/admin/guides/developer-workflow/about-pre-receive-hooks": "/de/enterprise/2.17/admin/developer-workflow/about-pre-receive-hooks", - "/de/enterprise/2.17/admin/guides/developer-workflow/about-protected-branches-and-required-status-checks": "/de/enterprise/2.17/admin/developer-workflow/about-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-on-your-appliance": "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-on-your-appliance", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository": "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-to-a-repository", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization": "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization", - "/de/enterprise/2.17/admin/guides/developer-workflow/blocking-force-pushes": "/de/enterprise/2.17/admin/developer-workflow/blocking-force-pushes", - "/de/enterprise/2.17/admin/guides/developer-workflow/configuring-protected-branches-and-required-status-checks": "/de/enterprise/2.17/admin/developer-workflow/configuring-protected-branches-and-required-status-checks", - "/de/enterprise/2.17/admin/guides/developer-workflow/continuous-integration-using-jenkins": "/de/enterprise/2.17/admin/developer-workflow/continuous-integration-using-jenkins", - "/de/enterprise/2.17/admin/guides/developer-workflow/creating-a-pre-receive-hook-environment": "/de/enterprise/2.17/admin/developer-workflow/creating-a-pre-receive-hook-environment", - "/de/enterprise/2.17/admin/guides/developer-workflow/creating-a-pre-receive-hook-script": "/de/enterprise/2.17/admin/developer-workflow/creating-a-pre-receive-hook-script", - "/de/enterprise/2.17/admin/guides/developer-workflow/customizing-your-instance-with-integrations": "/de/enterprise/2.17/admin/developer-workflow/customizing-your-instance-with-integrations", - "/de/enterprise/2.17/admin/guides/developer-workflow/establishing-pull-request-merge-conditions": "/de/enterprise/2.17/admin/developer-workflow/establishing-pull-request-merge-conditions", - "/de/enterprise/2.17/admin/guides/developer-workflow": "/de/enterprise/2.17/admin/developer-workflow", - "/de/enterprise/2.17/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance": "/de/enterprise/2.17/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/developer-workflow/managing-projects-using-jira": "/de/enterprise/2.17/admin/developer-workflow/managing-projects-using-jira", - "/de/enterprise/2.17/admin/guides/developer-workflow/troubleshooting-service-hooks": "/de/enterprise/2.17/admin/developer-workflow/troubleshooting-service-hooks", - "/de/enterprise/2.17/admin/guides/developer-workflow/using-pre-receive-hooks-to-enforce-policy": "/de/enterprise/2.17/admin/developer-workflow/using-pre-receive-hooks-to-enforce-policy", - "/de/enterprise/2.17/admin/guides/developer-workflow/using-webhooks-for-continuous-integration": "/de/enterprise/2.17/admin/developer-workflow/using-webhooks-for-continuous-integration", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-enterprise-support": "/de/enterprise/2.17/admin/enterprise-support/about-github-enterprise-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server": "/de/enterprise/2.17/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise": "/de/enterprise/2.17/admin/enterprise-support/about-github-premium-support-for-github-enterprise", - "/de/enterprise/2.17/admin/guides/enterprise-support/about-support-for-advanced-security": "/de/enterprise/2.17/admin/enterprise-support/about-support-for-advanced-security", - "/de/enterprise/2.17/admin/guides/enterprise-support": "/de/enterprise/2.17/admin/enterprise-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/overview": "/de/enterprise/2.17/admin/enterprise-support/overview", - "/de/enterprise/2.17/admin/guides/enterprise-support/preparing-to-submit-a-ticket": "/de/enterprise/2.17/admin/enterprise-support/preparing-to-submit-a-ticket", - "/de/enterprise/2.17/admin/guides/enterprise-support/providing-data-to-github-support": "/de/enterprise/2.17/admin/enterprise-support/providing-data-to-github-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/reaching-github-support": "/de/enterprise/2.17/admin/enterprise-support/reaching-github-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/receiving-help-from-github-support": "/de/enterprise/2.17/admin/enterprise-support/receiving-help-from-github-support", - "/de/enterprise/2.17/admin/guides/enterprise-support/submitting-a-ticket": "/de/enterprise/2.17/admin/enterprise-support/submitting-a-ticket", - "/de/enterprise/2.17/admin/guides": "/de/enterprise/2.17/admin", - "/de/enterprise/2.17/admin/guides/installation/about-geo-replication": "/de/enterprise/2.17/admin/installation/about-geo-replication", - "/de/enterprise/2.17/admin/guides/installation/about-high-availability-configuration": "/de/enterprise/2.17/admin/installation/about-high-availability-configuration", - "/de/enterprise/2.17/admin/guides/installation/about-the-github-enterprise-server-api": "/de/enterprise/2.17/admin/installation/about-the-github-enterprise-server-api", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-administrative-shell-ssh": "/de/enterprise/2.17/admin/installation/accessing-the-administrative-shell-ssh", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-management-console": "/de/enterprise/2.17/admin/installation/accessing-the-management-console", - "/de/enterprise/2.17/admin/guides/installation/accessing-the-monitor-dashboard": "/de/enterprise/2.17/admin/installation/accessing-the-monitor-dashboard", - "/de/enterprise/2.17/admin/guides/installation/activity-dashboard": "/de/enterprise/2.17/admin/installation/activity-dashboard", - "/de/enterprise/2.17/admin/guides/installation/audit-logging": "/de/enterprise/2.17/admin/installation/audit-logging", - "/de/enterprise/2.17/admin/guides/installation/audited-actions": "/de/enterprise/2.17/admin/installation/audited-actions", - "/de/enterprise/2.17/admin/guides/installation/command-line-utilities": "/de/enterprise/2.17/admin/installation/command-line-utilities", - "/de/enterprise/2.17/admin/guides/installation/configuring-a-hostname": "/de/enterprise/2.17/admin/installation/configuring-a-hostname", - "/de/enterprise/2.17/admin/guides/installation/configuring-an-outbound-web-proxy-server": "/de/enterprise/2.17/admin/installation/configuring-an-outbound-web-proxy-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-applications": "/de/enterprise/2.17/admin/installation/configuring-applications", - "/de/enterprise/2.17/admin/guides/installation/configuring-backups-on-your-appliance": "/de/enterprise/2.17/admin/installation/configuring-backups-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-built-in-firewall-rules": "/de/enterprise/2.17/admin/installation/configuring-built-in-firewall-rules", - "/de/enterprise/2.17/admin/guides/installation/configuring-collectd": "/de/enterprise/2.17/admin/installation/configuring-collectd", - "/de/enterprise/2.17/admin/guides/installation/configuring-dns-nameservers": "/de/enterprise/2.17/admin/installation/configuring-dns-nameservers", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server": "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage-to-use-a-third-party-server": "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server", - "/de/enterprise/2.17/admin/guides/installation/configuring-git-large-file-storage": "/de/enterprise/2.17/admin/installation/configuring-git-large-file-storage", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-enterprise-server-for-high-availability": "/de/enterprise/2.17/admin/installation/configuring-github-enterprise-server-for-high-availability", - "/de/enterprise/2.17/admin/guides/installation/configuring-github-pages-on-your-appliance": "/de/enterprise/2.17/admin/installation/configuring-github-pages-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-rate-limits": "/de/enterprise/2.17/admin/installation/configuring-rate-limits", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance": "/de/enterprise/2.17/admin/installation/configuring-the-default-visibility-of-new-repositories-on-your-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-github-enterprise-server-appliance": "/de/enterprise/2.17/admin/installation/configuring-the-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/installation/configuring-the-ip-address-using-the-virtual-machine-console": "/de/enterprise/2.17/admin/installation/configuring-the-ip-address-using-the-virtual-machine-console", - "/de/enterprise/2.17/admin/guides/installation/configuring-time-synchronization": "/de/enterprise/2.17/admin/installation/configuring-time-synchronization", - "/de/enterprise/2.17/admin/guides/installation/configuring-tls": "/de/enterprise/2.17/admin/installation/configuring-tls", - "/de/enterprise/2.17/admin/guides/installation/configuring-your-github-enterprise-server-network-settings": "/de/enterprise/2.17/admin/installation/configuring-your-github-enterprise-server-network-settings", - "/de/enterprise/2.17/admin/guides/installation/connecting-github-enterprise-server-to-github-enterprise-cloud": "/de/enterprise/2.17/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/creating-a-high-availability-replica": "/de/enterprise/2.17/admin/installation/creating-a-high-availability-replica", - "/de/enterprise/2.17/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise-server": "/de/enterprise/2.17/admin/installation/disabling-git-ssh-access-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories": "/de/enterprise/2.17/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories", - "/de/enterprise/2.17/admin/guides/installation/enabling-and-scheduling-maintenance-mode": "/de/enterprise/2.17/admin/installation/enabling-and-scheduling-maintenance-mode", - "/de/enterprise/2.17/admin/guides/installation/enabling-automatic-update-checks": "/de/enterprise/2.17/admin/installation/enabling-automatic-update-checks", - "/de/enterprise/2.17/admin/guides/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud": "/de/enterprise/2.17/admin/installation/enabling-automatic-user-license-sync-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/enabling-private-mode": "/de/enterprise/2.17/admin/installation/enabling-private-mode", - "/de/enterprise/2.17/admin/guides/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server": "/de/enterprise/2.17/admin/installation/enabling-security-alerts-for-vulnerable-dependencies-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/enabling-subdomain-isolation": "/de/enterprise/2.17/admin/installation/enabling-subdomain-isolation", - "/de/enterprise/2.17/admin/guides/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.17/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom": "/de/enterprise/2.17/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom", - "/de/enterprise/2.17/admin/guides/installation/getting-started-with-github-enterprise-server": "/de/enterprise/2.17/admin/installation/getting-started-with-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/increasing-cpu-or-memory-resources": "/de/enterprise/2.17/admin/installation/increasing-cpu-or-memory-resources", - "/de/enterprise/2.17/admin/guides/installation/increasing-storage-capacity": "/de/enterprise/2.17/admin/installation/increasing-storage-capacity", - "/de/enterprise/2.17/admin/guides/installation": "/de/enterprise/2.17/admin/installation", - "/de/enterprise/2.17/admin/guides/installation/initiating-a-failover-to-your-replica-appliance": "/de/enterprise/2.17/admin/installation/initiating-a-failover-to-your-replica-appliance", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-aws": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-aws", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-azure": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-azure", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-google-cloud-platform": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-google-cloud-platform", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-hyper-v": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-hyper-v", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-openstack-kvm": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-openstack-kvm", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-vmware": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-vmware", - "/de/enterprise/2.17/admin/guides/installation/installing-github-enterprise-server-on-xenserver": "/de/enterprise/2.17/admin/installation/installing-github-enterprise-server-on-xenserver", - "/de/enterprise/2.17/admin/guides/installation/log-forwarding": "/de/enterprise/2.17/admin/installation/log-forwarding", - "/de/enterprise/2.17/admin/guides/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud": "/de/enterprise/2.17/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud", - "/de/enterprise/2.17/admin/guides/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later": "/de/enterprise/2.17/admin/installation/migrating-elasticsearch-indices-to-github-enterprise-server-214-or-later", - "/de/enterprise/2.17/admin/guides/installation/migrating-from-github-enterprise-1110x-to-2123": "/de/enterprise/2.17/admin/installation/migrating-from-github-enterprise-1110x-to-2123", - "/de/enterprise/2.17/admin/guides/installation/migrating-to-a-different-git-large-file-storage-server": "/de/enterprise/2.17/admin/installation/migrating-to-a-different-git-large-file-storage-server", - "/de/enterprise/2.17/admin/guides/installation/monitoring-activity-on-your-github-enterprise-server-instance": "/de/enterprise/2.17/admin/installation/monitoring-activity-on-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/guides/installation/monitoring-using-snmp": "/de/enterprise/2.17/admin/installation/monitoring-using-snmp", - "/de/enterprise/2.17/admin/guides/installation/monitoring-your-github-enterprise-server-appliance": "/de/enterprise/2.17/admin/installation/monitoring-your-github-enterprise-server-appliance", - "/de/enterprise/2.17/admin/guides/installation/network-ports": "/de/enterprise/2.17/admin/installation/network-ports", - "/de/enterprise/2.17/admin/guides/installation/recommended-alert-thresholds": "/de/enterprise/2.17/admin/installation/recommended-alert-thresholds", - "/de/enterprise/2.17/admin/guides/installation/recovering-a-high-availability-configuration": "/de/enterprise/2.17/admin/installation/recovering-a-high-availability-configuration", - "/de/enterprise/2.17/admin/guides/installation/removing-a-high-availability-replica": "/de/enterprise/2.17/admin/installation/removing-a-high-availability-replica", - "/de/enterprise/2.17/admin/guides/installation/searching-the-audit-log": "/de/enterprise/2.17/admin/installation/searching-the-audit-log", - "/de/enterprise/2.17/admin/guides/installation/setting-git-push-limits": "/de/enterprise/2.17/admin/installation/setting-git-push-limits", - "/de/enterprise/2.17/admin/guides/installation/setting-up-a-github-enterprise-server-instance": "/de/enterprise/2.17/admin/installation/setting-up-a-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/guides/installation/setting-up-a-staging-instance": "/de/enterprise/2.17/admin/installation/setting-up-a-staging-instance", - "/de/enterprise/2.17/admin/guides/installation/setting-up-external-monitoring": "/de/enterprise/2.17/admin/installation/setting-up-external-monitoring", - "/de/enterprise/2.17/admin/guides/installation/site-admin-dashboard": "/de/enterprise/2.17/admin/installation/site-admin-dashboard", - "/de/enterprise/2.17/admin/guides/installation/system-overview": "/de/enterprise/2.17/admin/installation/system-overview", - "/de/enterprise/2.17/admin/guides/installation/troubleshooting-ssl-errors": "/de/enterprise/2.17/admin/installation/troubleshooting-ssl-errors", - "/de/enterprise/2.17/admin/guides/installation/updating-the-virtual-machine-and-physical-resources": "/de/enterprise/2.17/admin/installation/updating-the-virtual-machine-and-physical-resources", - "/de/enterprise/2.17/admin/guides/installation/upgrade-requirements": "/de/enterprise/2.17/admin/installation/upgrade-requirements", - "/de/enterprise/2.17/admin/guides/installation/upgrading-github-enterprise-server": "/de/enterprise/2.17/admin/installation/upgrading-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/installation/using-github-enterprise-server-with-a-load-balancer": "/de/enterprise/2.17/admin/installation/using-github-enterprise-server-with-a-load-balancer", - "/de/enterprise/2.17/admin/guides/installation/validating-your-domain-settings": "/de/enterprise/2.17/admin/installation/validating-your-domain-settings", - "/de/enterprise/2.17/admin/guides/installation/viewing-push-logs": "/de/enterprise/2.17/admin/installation/viewing-push-logs", - "/de/enterprise/2.17/admin/guides/migrations/about-migrations": "/de/enterprise/2.17/admin/migrations/about-migrations", - "/de/enterprise/2.17/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server": "/de/enterprise/2.17/admin/migrations/applying-the-imported-data-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/completing-the-import-on-github-enterprise-server": "/de/enterprise/2.17/admin/migrations/completing-the-import-on-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-github-enterprise-server": "/de/enterprise/2.17/admin/migrations/exporting-migration-data-from-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/exporting-migration-data-from-githubcom": "/de/enterprise/2.17/admin/migrations/exporting-migration-data-from-githubcom", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-github-enterprise-server-source-repositories": "/de/enterprise/2.17/admin/migrations/exporting-the-github-enterprise-server-source-repositories", - "/de/enterprise/2.17/admin/guides/migrations/exporting-the-githubcom-organizations-repositories": "/de/enterprise/2.17/admin/migrations/exporting-the-githubcom-organizations-repositories", - "/de/enterprise/2.17/admin/guides/migrations/generating-a-list-of-migration-conflicts": "/de/enterprise/2.17/admin/migrations/generating-a-list-of-migration-conflicts", - "/de/enterprise/2.17/admin/guides/migrations/importing-data-from-third-party-version-control-systems": "/de/enterprise/2.17/admin/migrations/importing-data-from-third-party-version-control-systems", - "/de/enterprise/2.17/admin/guides/migrations/importing-migration-data-to-github-enterprise-server": "/de/enterprise/2.17/admin/migrations/importing-migration-data-to-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations": "/de/enterprise/2.17/admin/migrations", - "/de/enterprise/2.17/admin/guides/migrations/overview": "/de/enterprise/2.17/admin/migrations/overview", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-github-enterprise-server-source-instance": "/de/enterprise/2.17/admin/migrations/preparing-the-github-enterprise-server-source-instance", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-githubcom-source-organization": "/de/enterprise/2.17/admin/migrations/preparing-the-githubcom-source-organization", - "/de/enterprise/2.17/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server": "/de/enterprise/2.17/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server", - "/de/enterprise/2.17/admin/guides/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings": "/de/enterprise/2.17/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings", - "/de/enterprise/2.17/admin/guides/migrations/reviewing-migration-conflicts": "/de/enterprise/2.17/admin/migrations/reviewing-migration-conflicts", - "/de/enterprise/2.17/admin/guides/migrations/reviewing-migration-data": "/de/enterprise/2.17/admin/migrations/reviewing-migration-data", - "/de/enterprise/2.17/admin/guides/user-management/about-global-webhooks": "/de/enterprise/2.17/admin/user-management/about-global-webhooks", - "/de/enterprise/2.17/admin/guides/user-management/adding-people-to-teams": "/de/enterprise/2.17/admin/user-management/adding-people-to-teams", - "/de/enterprise/2.17/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories": "/de/enterprise/2.17/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories", - "/de/enterprise/2.17/admin/guides/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider": "/de/enterprise/2.17/admin/user-management/allowing-built-in-authentication-for-users-outside-your-identity-provider", - "/de/enterprise/2.17/admin/guides/user-management/archiving-and-unarchiving-repositories": "/de/enterprise/2.17/admin/user-management/archiving-and-unarchiving-repositories", - "/de/enterprise/2.17/admin/guides/user-management/auditing-ssh-keys": "/de/enterprise/2.17/admin/user-management/auditing-ssh-keys", - "/de/enterprise/2.17/admin/guides/user-management/auditing-users-across-your-instance": "/de/enterprise/2.17/admin/user-management/auditing-users-across-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance": "/de/enterprise/2.17/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance", - "/de/enterprise/2.17/admin/guides/user-management/basic-account-settings": "/de/enterprise/2.17/admin/user-management/basic-account-settings", - "/de/enterprise/2.17/admin/guides/user-management/best-practices-for-user-security": "/de/enterprise/2.17/admin/user-management/best-practices-for-user-security", - "/de/enterprise/2.17/admin/guides/user-management/changing-authentication-methods": "/de/enterprise/2.17/admin/user-management/changing-authentication-methods", - "/de/enterprise/2.17/admin/guides/user-management/configuring-email-for-notifications": "/de/enterprise/2.17/admin/user-management/configuring-email-for-notifications", - "/de/enterprise/2.17/admin/guides/user-management/configuring-visibility-for-organization-membership": "/de/enterprise/2.17/admin/user-management/configuring-visibility-for-organization-membership", - "/de/enterprise/2.17/admin/guides/user-management/creating-organizations": "/de/enterprise/2.17/admin/user-management/creating-organizations", - "/de/enterprise/2.17/admin/guides/user-management/creating-teams": "/de/enterprise/2.17/admin/user-management/creating-teams", - "/de/enterprise/2.17/admin/guides/user-management/customizing-user-messages-on-your-instance": "/de/enterprise/2.17/admin/user-management/customizing-user-messages-on-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/disabling-unauthenticated-sign-ups": "/de/enterprise/2.17/admin/user-management/disabling-unauthenticated-sign-ups", - "/de/enterprise/2.17/admin/guides/user-management": "/de/enterprise/2.17/admin/user-management", - "/de/enterprise/2.17/admin/guides/user-management/managing-dormant-users": "/de/enterprise/2.17/admin/user-management/managing-dormant-users", - "/de/enterprise/2.17/admin/guides/user-management/managing-global-webhooks": "/de/enterprise/2.17/admin/user-management/managing-global-webhooks", - "/de/enterprise/2.17/admin/guides/user-management/organizations-and-teams": "/de/enterprise/2.17/admin/user-management/organizations-and-teams", - "/de/enterprise/2.17/admin/guides/user-management/placing-a-legal-hold-on-a-user-or-organization": "/de/enterprise/2.17/admin/user-management/placing-a-legal-hold-on-a-user-or-organization", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-a-repositorys-visibility": "/de/enterprise/2.17/admin/user-management/preventing-users-from-changing-a-repositorys-visibility", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access": "/de/enterprise/2.17/admin/user-management/preventing-users-from-changing-anonymous-git-read-access", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-creating-organizations": "/de/enterprise/2.17/admin/user-management/preventing-users-from-creating-organizations", - "/de/enterprise/2.17/admin/guides/user-management/preventing-users-from-deleting-organization-repositories": "/de/enterprise/2.17/admin/user-management/preventing-users-from-deleting-organization-repositories", - "/de/enterprise/2.17/admin/guides/user-management/promoting-or-demoting-a-site-administrator": "/de/enterprise/2.17/admin/user-management/promoting-or-demoting-a-site-administrator", - "/de/enterprise/2.17/admin/guides/user-management/rebuilding-contributions-data": "/de/enterprise/2.17/admin/user-management/rebuilding-contributions-data", - "/de/enterprise/2.17/admin/guides/user-management/removing-users-from-teams-and-organizations": "/de/enterprise/2.17/admin/user-management/removing-users-from-teams-and-organizations", - "/de/enterprise/2.17/admin/guides/user-management/repositories": "/de/enterprise/2.17/admin/user-management/repositories", - "/de/enterprise/2.17/admin/guides/user-management/requiring-two-factor-authentication-for-an-organization": "/de/enterprise/2.17/admin/user-management/requiring-two-factor-authentication-for-an-organization", - "/de/enterprise/2.17/admin/guides/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise/2.17/admin/user-management/restricting-repository-creation-in-your-instance", - "/de/enterprise/2.17/admin/guides/user-management/suspending-and-unsuspending-users": "/de/enterprise/2.17/admin/user-management/suspending-and-unsuspending-users", - "/de/enterprise/2.17/admin/guides/user-management/user-security": "/de/enterprise/2.17/admin/user-management/user-security", - "/de/enterprise/2.17/admin/guides/user-management/using-built-in-authentication": "/de/enterprise/2.17/admin/user-management/using-built-in-authentication", - "/de/enterprise/2.17/admin/guides/user-management/using-cas": "/de/enterprise/2.17/admin/user-management/using-cas", - "/de/enterprise/2.17/admin/guides/user-management/using-ldap": "/de/enterprise/2.17/admin/user-management/using-ldap", - "/de/enterprise/2.17/admin/guides/user-management/using-saml": "/de/enterprise/2.17/admin/user-management/using-saml", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/user/administering-a-repository/about-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/github/administering-a-repository/about-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/about-branch-restrictions", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/user/administering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/github/administering-a-repository/about-merge-methods-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/about-merge-methods-on-github", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.17/user/administering-a-repository/about-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.17/github/administering-a-repository/about-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/about-protected-branches", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-releases": "/de/enterprise/2.17/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.17/user/administering-a-repository/about-releases": "/de/enterprise/2.17/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.17/github/administering-a-repository/about-releases": "/de/enterprise/2.17/user/github/administering-a-repository/about-releases", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/user/administering-a-repository/about-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/github/administering-a-repository/about-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-commit-signing", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/about-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/about-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/about-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/about-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/about-required-status-checks", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.17/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/user/administering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.17/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/github/administering-a-repository/automation-for-release-forms-with-query-parameters": "/de/enterprise/2.17/user/github/administering-a-repository/automation-for-release-forms-with-query-parameters", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.17/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/user/administering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.17/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/github/administering-a-repository/classifying-your-repository-with-topics": "/de/enterprise/2.17/user/github/administering-a-repository/classifying-your-repository-with-topics", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-rebasing-for-pull-requests", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/configuring-commit-squashing-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-commit-squashing-for-pull-requests", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/configuring-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.17/user/administering-a-repository/configuring-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.17/github/administering-a-repository/configuring-protected-branches": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-protected-branches", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/user/administering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/github/administering-a-repository/configuring-pull-request-merges": "/de/enterprise/2.17/user/github/administering-a-repository/configuring-pull-request-merges", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/user/administering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/github/administering-a-repository/customizing-how-changed-files-appear-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/customizing-how-changed-files-appear-on-github", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/defining-the-mergeability-of-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/defining-the-mergeability-of-pull-requests", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/deleting-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/deleting-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/deleting-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request": "/de/enterprise/2.17/user/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-anonymous-git-read-access-for-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/user/administering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/github/administering-a-repository/enabling-branch-restrictions": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-branch-restrictions", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-commit-signing": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-commit-signing", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-reviews-for-pull-requests": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-reviews-for-pull-requests", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/enabling-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/enabling-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/enabling-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/enabling-required-status-checks", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository", - "/de/enterprise/2.17/user/administering-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository", - "/de/enterprise/2.17/github/administering-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/linking-to-releases": "/de/enterprise/2.17/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.17/user/administering-a-repository/linking-to-releases": "/de/enterprise/2.17/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.17/github/administering-a-repository/linking-to-releases": "/de/enterprise/2.17/user/github/administering-a-repository/linking-to-releases", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/managing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-branches-in-your-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/managing-releases-in-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-releases-in-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/managing-repository-settings": "/de/enterprise/2.17/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/user/administering-a-repository/managing-repository-settings": "/de/enterprise/2.17/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/github/administering-a-repository/managing-repository-settings": "/de/enterprise/2.17/user/github/administering-a-repository/managing-repository-settings", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/managing-the-forking-policy-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/managing-the-forking-policy-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/managing-the-forking-policy-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/managing-the-forking-policy-for-your-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/releasing-projects-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/user/administering-a-repository/releasing-projects-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/github/administering-a-repository/releasing-projects-on-github": "/de/enterprise/2.17/user/github/administering-a-repository/releasing-projects-on-github", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/renaming-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/renaming-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/renaming-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/renaming-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/setting-repository-visibility": "/de/enterprise/2.17/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/user/administering-a-repository/setting-repository-visibility": "/de/enterprise/2.17/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/github/administering-a-repository/setting-repository-visibility": "/de/enterprise/2.17/user/github/administering-a-repository/setting-repository-visibility", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/setting-the-default-branch": "/de/enterprise/2.17/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/user/administering-a-repository/setting-the-default-branch": "/de/enterprise/2.17/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/github/administering-a-repository/setting-the-default-branch": "/de/enterprise/2.17/user/github/administering-a-repository/setting-the-default-branch", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/transferring-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/user/administering-a-repository/transferring-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/github/administering-a-repository/transferring-a-repository": "/de/enterprise/2.17/user/github/administering-a-repository/transferring-a-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/types-of-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/user/administering-a-repository/types-of-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/github/administering-a-repository/types-of-required-status-checks": "/de/enterprise/2.17/user/github/administering-a-repository/types-of-required-status-checks", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/viewing-branches-in-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-branches-in-your-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/viewing-deployment-activity-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/user/administering-a-repository/viewing-deployment-activity-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/github/administering-a-repository/viewing-deployment-activity-for-your-repository": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-deployment-activity-for-your-repository", - "/de/enterprise/2.17/user/github/admin/guidesistering-a-repository/viewing-your-repositorys-releases-and-tags": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/user/administering-a-repository/viewing-your-repositorys-releases-and-tags": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/github/administering-a-repository/viewing-your-repositorys-releases-and-tags": "/de/enterprise/2.17/user/github/administering-a-repository/viewing-your-repositorys-releases-and-tags", - "/de/enterprise/2.17/user/authenticating-to-github/about-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/about-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/about-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/about-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/about-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/about-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/about-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/about-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/about-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/accessing-github-using-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/accessing-github-using-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/accessing-github-using-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account": "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account": "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-gpg-key-to-your-github-account", - "/de/enterprise/2.17/user/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account": "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account": "/de/enterprise/2.17/user/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account", - "/de/enterprise/2.17/user/authenticating-to-github/associating-an-email-with-your-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/associating-an-email-with-your-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/associating-an-email-with-your-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/authorizing-oauth-apps": "/de/enterprise/2.17/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.17/github/authenticating-to-github/authorizing-oauth-apps": "/de/enterprise/2.17/user/github/authenticating-to-github/authorizing-oauth-apps", - "/de/enterprise/2.17/user/authenticating-to-github/checking-for-existing-gpg-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/github/authenticating-to-github/checking-for-existing-gpg-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-gpg-keys", - "/de/enterprise/2.17/user/authenticating-to-github/checking-for-existing-ssh-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/github/authenticating-to-github/checking-for-existing-ssh-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-for-existing-ssh-keys", - "/de/enterprise/2.17/user/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status": "/de/enterprise/2.17/user/github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status", - "/de/enterprise/2.17/user/authenticating-to-github/configuring-two-factor-authentication-recovery-methods": "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods": "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication-recovery-methods", - "/de/enterprise/2.17/user/authenticating-to-github/configuring-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.17/github/authenticating-to-github/configuring-two-factor-authentication": "/de/enterprise/2.17/user/github/authenticating-to-github/configuring-two-factor-authentication", - "/de/enterprise/2.17/user/authenticating-to-github/connecting-to-github-with-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/connecting-to-github-with-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-to-github-with-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/connecting-with-third-party-applications": "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.17/github/authenticating-to-github/connecting-with-third-party-applications": "/de/enterprise/2.17/user/github/authenticating-to-github/connecting-with-third-party-applications", - "/de/enterprise/2.17/user/authenticating-to-github/creating-a-personal-access-token-for-the-command-line": "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line": "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line", - "/de/enterprise/2.17/user/authenticating-to-github/creating-a-strong-password": "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.17/github/authenticating-to-github/creating-a-strong-password": "/de/enterprise/2.17/user/github/authenticating-to-github/creating-a-strong-password", - "/de/enterprise/2.17/user/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account": "/de/enterprise/2.17/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account": "/de/enterprise/2.17/user/github/authenticating-to-github/disabling-two-factor-authentication-for-your-personal-account", - "/de/enterprise/2.17/user/authenticating-to-github/error-agent-admitted-failure-to-sign": "/de/enterprise/2.17/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/github/authenticating-to-github/error-agent-admitted-failure-to-sign": "/de/enterprise/2.17/user/github/authenticating-to-github/error-agent-admitted-failure-to-sign", - "/de/enterprise/2.17/user/authenticating-to-github/error-bad-file-number": "/de/enterprise/2.17/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.17/github/authenticating-to-github/error-bad-file-number": "/de/enterprise/2.17/user/github/authenticating-to-github/error-bad-file-number", - "/de/enterprise/2.17/user/authenticating-to-github/error-key-already-in-use": "/de/enterprise/2.17/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.17/github/authenticating-to-github/error-key-already-in-use": "/de/enterprise/2.17/user/github/authenticating-to-github/error-key-already-in-use", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-denied-publickey": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-denied-publickey": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-denied-publickey", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-other-user", - "/de/enterprise/2.17/user/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo": "/de/enterprise/2.17/user/github/authenticating-to-github/error-permission-to-userrepo-denied-to-userother-repo", - "/de/enterprise/2.17/user/authenticating-to-github/error-ssh-add-illegal-option----k": "/de/enterprise/2.17/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/github/authenticating-to-github/error-ssh-add-illegal-option----k": "/de/enterprise/2.17/user/github/authenticating-to-github/error-ssh-add-illegal-option----k", - "/de/enterprise/2.17/user/authenticating-to-github/error-were-doing-an-ssh-key-audit": "/de/enterprise/2.17/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/github/authenticating-to-github/error-were-doing-an-ssh-key-audit": "/de/enterprise/2.17/user/github/authenticating-to-github/error-were-doing-an-ssh-key-audit", - "/de/enterprise/2.17/user/authenticating-to-github/generating-a-new-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/generating-a-new-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent": "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent": "/de/enterprise/2.17/user/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", - "/de/enterprise/2.17/user/authenticating-to-github": "/de/enterprise/2.17/user/github/authenticating-to-github", - "/de/enterprise/2.17/github/authenticating-to-github": "/de/enterprise/2.17/user/github/authenticating-to-github", - "/de/enterprise/2.17/user/authenticating-to-github/keeping-your-account-and-data-secure": "/de/enterprise/2.17/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/github/authenticating-to-github/keeping-your-account-and-data-secure": "/de/enterprise/2.17/user/github/authenticating-to-github/keeping-your-account-and-data-secure", - "/de/enterprise/2.17/user/authenticating-to-github/managing-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/managing-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/managing-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/preventing-unauthorized-access": "/de/enterprise/2.17/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.17/github/authenticating-to-github/preventing-unauthorized-access": "/de/enterprise/2.17/user/github/authenticating-to-github/preventing-unauthorized-access", - "/de/enterprise/2.17/user/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials": "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials": "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-account-if-you-lose-your-2fa-credentials", - "/de/enterprise/2.17/user/authenticating-to-github/recovering-your-ssh-key-passphrase": "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/github/authenticating-to-github/recovering-your-ssh-key-passphrase": "/de/enterprise/2.17/user/github/authenticating-to-github/recovering-your-ssh-key-passphrase", - "/de/enterprise/2.17/user/authenticating-to-github/removing-sensitive-data-from-a-repository": "/de/enterprise/2.17/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/github/authenticating-to-github/removing-sensitive-data-from-a-repository": "/de/enterprise/2.17/user/github/authenticating-to-github/removing-sensitive-data-from-a-repository", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-authorized-applications-oauth": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-authorized-applications-oauth": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-applications-oauth", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-authorized-integrations": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-authorized-integrations": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-authorized-integrations", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-deploy-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-deploy-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-deploy-keys", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-security-log": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-security-log": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-security-log", - "/de/enterprise/2.17/user/authenticating-to-github/reviewing-your-ssh-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.17/github/authenticating-to-github/reviewing-your-ssh-keys": "/de/enterprise/2.17/user/github/authenticating-to-github/reviewing-your-ssh-keys", - "/de/enterprise/2.17/user/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa": "/de/enterprise/2.17/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa": "/de/enterprise/2.17/user/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa", - "/de/enterprise/2.17/user/authenticating-to-github/signing-commits": "/de/enterprise/2.17/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.17/github/authenticating-to-github/signing-commits": "/de/enterprise/2.17/user/github/authenticating-to-github/signing-commits", - "/de/enterprise/2.17/user/authenticating-to-github/signing-tags": "/de/enterprise/2.17/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.17/github/authenticating-to-github/signing-tags": "/de/enterprise/2.17/user/github/authenticating-to-github/signing-tags", - "/de/enterprise/2.17/user/authenticating-to-github/sudo-mode": "/de/enterprise/2.17/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.17/github/authenticating-to-github/sudo-mode": "/de/enterprise/2.17/user/github/authenticating-to-github/sudo-mode", - "/de/enterprise/2.17/user/authenticating-to-github/telling-git-about-your-signing-key": "/de/enterprise/2.17/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.17/github/authenticating-to-github/telling-git-about-your-signing-key": "/de/enterprise/2.17/user/github/authenticating-to-github/telling-git-about-your-signing-key", - "/de/enterprise/2.17/user/authenticating-to-github/testing-your-ssh-connection": "/de/enterprise/2.17/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.17/github/authenticating-to-github/testing-your-ssh-connection": "/de/enterprise/2.17/user/github/authenticating-to-github/testing-your-ssh-connection", - "/de/enterprise/2.17/user/authenticating-to-github/troubleshooting-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/github/authenticating-to-github/troubleshooting-commit-signature-verification": "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-commit-signature-verification", - "/de/enterprise/2.17/user/authenticating-to-github/troubleshooting-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.17/github/authenticating-to-github/troubleshooting-ssh": "/de/enterprise/2.17/user/github/authenticating-to-github/troubleshooting-ssh", - "/de/enterprise/2.17/user/authenticating-to-github/updating-an-expired-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/updating-an-expired-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/updating-an-expired-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/updating-your-github-access-credentials": "/de/enterprise/2.17/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.17/github/authenticating-to-github/updating-your-github-access-credentials": "/de/enterprise/2.17/user/github/authenticating-to-github/updating-your-github-access-credentials", - "/de/enterprise/2.17/user/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key": "/de/enterprise/2.17/user/github/authenticating-to-github/using-a-verified-email-address-in-your-gpg-key", - "/de/enterprise/2.17/user/authenticating-to-github/working-with-ssh-key-passphrases": "/de/enterprise/2.17/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/github/authenticating-to-github/working-with-ssh-key-passphrases": "/de/enterprise/2.17/user/github/authenticating-to-github/working-with-ssh-key-passphrases", - "/de/enterprise/2.17/user/building-a-strong-community/about-issue-and-pull-request-templates": "/de/enterprise/2.17/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/github/building-a-strong-community/about-issue-and-pull-request-templates": "/de/enterprise/2.17/user/github/building-a-strong-community/about-issue-and-pull-request-templates", - "/de/enterprise/2.17/user/building-a-strong-community/about-team-discussions": "/de/enterprise/2.17/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.17/github/building-a-strong-community/about-team-discussions": "/de/enterprise/2.17/user/github/building-a-strong-community/about-team-discussions", - "/de/enterprise/2.17/user/building-a-strong-community/about-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/about-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/about-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/adding-a-license-to-a-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.17/github/building-a-strong-community/adding-a-license-to-a-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-a-license-to-a-repository", - "/de/enterprise/2.17/user/building-a-strong-community/adding-or-editing-wiki-pages": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/github/building-a-strong-community/adding-or-editing-wiki-pages": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-or-editing-wiki-pages", - "/de/enterprise/2.17/user/building-a-strong-community/adding-support-resources-to-your-project": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.17/github/building-a-strong-community/adding-support-resources-to-your-project": "/de/enterprise/2.17/user/github/building-a-strong-community/adding-support-resources-to-your-project", - "/de/enterprise/2.17/user/building-a-strong-community/changing-access-permissions-for-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/changing-access-permissions-for-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/changing-access-permissions-for-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/collaborating-with-your-team": "/de/enterprise/2.17/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.17/github/building-a-strong-community/collaborating-with-your-team": "/de/enterprise/2.17/user/github/building-a-strong-community/collaborating-with-your-team", - "/de/enterprise/2.17/user/building-a-strong-community/configuring-issue-templates-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/configuring-issue-templates-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/configuring-issue-templates-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-default-community-health-file": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-default-community-health-file": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-default-community-health-file", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-footer-or-sidebar-for-your-wiki", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-pull-request-template-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-pull-request-template-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/creating-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/creating-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/creating-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/disabling-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/disabling-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/disabling-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/documenting-your-project-with-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.17/github/building-a-strong-community/documenting-your-project-with-wikis": "/de/enterprise/2.17/user/github/building-a-strong-community/documenting-your-project-with-wikis", - "/de/enterprise/2.17/user/building-a-strong-community/editing-or-deleting-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/editing-or-deleting-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/editing-or-deleting-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/editing-wiki-content": "/de/enterprise/2.17/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.17/github/building-a-strong-community/editing-wiki-content": "/de/enterprise/2.17/user/github/building-a-strong-community/editing-wiki-content", - "/de/enterprise/2.17/user/building-a-strong-community": "/de/enterprise/2.17/user/github/building-a-strong-community", - "/de/enterprise/2.17/github/building-a-strong-community": "/de/enterprise/2.17/user/github/building-a-strong-community", - "/de/enterprise/2.17/user/building-a-strong-community/locking-conversations": "/de/enterprise/2.17/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.17/github/building-a-strong-community/locking-conversations": "/de/enterprise/2.17/user/github/building-a-strong-community/locking-conversations", - "/de/enterprise/2.17/user/building-a-strong-community/managing-disruptive-comments": "/de/enterprise/2.17/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.17/github/building-a-strong-community/managing-disruptive-comments": "/de/enterprise/2.17/user/github/building-a-strong-community/managing-disruptive-comments", - "/de/enterprise/2.17/user/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository": "/de/enterprise/2.17/user/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository", - "/de/enterprise/2.17/user/building-a-strong-community/moderating-comments-and-conversations": "/de/enterprise/2.17/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.17/github/building-a-strong-community/moderating-comments-and-conversations": "/de/enterprise/2.17/user/github/building-a-strong-community/moderating-comments-and-conversations", - "/de/enterprise/2.17/user/building-a-strong-community/pinning-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.17/github/building-a-strong-community/pinning-a-team-discussion": "/de/enterprise/2.17/user/github/building-a-strong-community/pinning-a-team-discussion", - "/de/enterprise/2.17/user/building-a-strong-community/setting-guidelines-for-repository-contributors": "/de/enterprise/2.17/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/github/building-a-strong-community/setting-guidelines-for-repository-contributors": "/de/enterprise/2.17/user/github/building-a-strong-community/setting-guidelines-for-repository-contributors", - "/de/enterprise/2.17/user/building-a-strong-community/setting-up-your-project-for-healthy-contributions": "/de/enterprise/2.17/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions": "/de/enterprise/2.17/user/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions", - "/de/enterprise/2.17/user/building-a-strong-community/tracking-changes-in-a-comment": "/de/enterprise/2.17/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.17/github/building-a-strong-community/tracking-changes-in-a-comment": "/de/enterprise/2.17/user/github/building-a-strong-community/tracking-changes-in-a-comment", - "/de/enterprise/2.17/user/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests": "/de/enterprise/2.17/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.17/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests": "/de/enterprise/2.17/user/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests", - "/de/enterprise/2.17/user/building-a-strong-community/viewing-a-wikis-history-of-changes": "/de/enterprise/2.17/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/github/building-a-strong-community/viewing-a-wikis-history-of-changes": "/de/enterprise/2.17/user/github/building-a-strong-community/viewing-a-wikis-history-of-changes", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-branches": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-branches": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-branches", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-collaborative-development-models": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-comparing-branches-in-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-conversations-on-github": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-forks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-forks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-forks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-merge-conflicts": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-merge-conflicts", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-request-merges": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-merges", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-request-reviews": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/about-status-checks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/about-status-checks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/about-status-checks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/addressing-merge-conflicts", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/allowing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/approving-a-pull-request-with-required-reviews", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/checking-out-pull-requests-locally", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/closing-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/closing-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/dismissing-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/filtering-files-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/github-flow": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/github-flow": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/github-flow", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/incorporating-feedback-in-your-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/merging-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/overview": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/overview": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/overview", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/proposing-changes-to-your-work-with-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-using-the-command-line", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reverting-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/syncing-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/syncing-a-fork": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/syncing-a-fork", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/viewing-a-pull-request-review", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/working-with-forks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/working-with-forks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-forks", - "/de/enterprise/2.17/user/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.17/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks": "/de/enterprise/2.17/user/github/collaborating-with-issues-and-pull-requests/working-with-pre-receive-hooks", - "/de/enterprise/2.17/user/committing-changes-to-your-project/changing-a-commit-message": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.17/github/committing-changes-to-your-project/changing-a-commit-message": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/changing-a-commit-message", - "/de/enterprise/2.17/user/committing-changes-to-your-project/commit-branch-and-tag-labels": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.17/github/committing-changes-to-your-project/commit-branch-and-tag-labels": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-branch-and-tag-labels", - "/de/enterprise/2.17/user/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/commit-exists-on-github-but-not-in-my-local-clone", - "/de/enterprise/2.17/user/committing-changes-to-your-project/comparing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/comparing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/comparing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/creating-a-commit-with-multiple-authors": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-a-commit-with-multiple-authors", - "/de/enterprise/2.17/user/committing-changes-to-your-project/creating-and-editing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/creating-and-editing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/creating-and-editing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/differences-between-commit-views": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.17/github/committing-changes-to-your-project/differences-between-commit-views": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/differences-between-commit-views", - "/de/enterprise/2.17/user/committing-changes-to-your-project": "/de/enterprise/2.17/user/github/committing-changes-to-your-project", - "/de/enterprise/2.17/github/committing-changes-to-your-project": "/de/enterprise/2.17/user/github/committing-changes-to-your-project", - "/de/enterprise/2.17/user/committing-changes-to-your-project/troubleshooting-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/troubleshooting-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/troubleshooting-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/viewing-and-comparing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.17/github/committing-changes-to-your-project/viewing-and-comparing-commits": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/viewing-and-comparing-commits", - "/de/enterprise/2.17/user/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-in-the-wrong-order", - "/de/enterprise/2.17/user/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user": "/de/enterprise/2.17/user/github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-code-owners": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-code-owners": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-code-owners", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-readmes": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-readmes": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-readmes", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repository-languages": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repository-languages": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-languages", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/about-repository-visibility": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/about-repository-visibility": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/about-repository-visibility", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/archiving-a-github-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/backing-up-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/backing-up-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/backing-up-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/cloning-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/cloning-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/cloning-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-new-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-new-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-new-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-a-repository-on-github": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/duplicating-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/duplicating-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/duplicating-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-remote-head-refers-to-nonexistent-ref-unable-to-checkout", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/error-repository-not-found": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/error-repository-not-found": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/error-repository-not-found", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/https-cloning-errors": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/https-cloning-errors": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/https-cloning-errors", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/licensing-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/licensing-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/licensing-a-repository", - "/de/enterprise/2.17/user/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository": "/de/enterprise/2.17/user/github/creating-cloning-and-archiving-repositories/limits-for-viewing-content-and-diffs-in-a-repository", - "/de/enterprise/2.17/user/extending-github/about-webhooks": "/de/enterprise/2.17/user/github/extending-github/about-webhooks", - "/de/enterprise/2.17/github/extending-github/about-webhooks": "/de/enterprise/2.17/user/github/extending-github/about-webhooks", - "/de/enterprise/2.17/user/extending-github/getting-started-with-the-api": "/de/enterprise/2.17/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.17/github/extending-github/getting-started-with-the-api": "/de/enterprise/2.17/user/github/extending-github/getting-started-with-the-api", - "/de/enterprise/2.17/user/extending-github/git-automation-with-oauth-tokens": "/de/enterprise/2.17/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/github/extending-github/git-automation-with-oauth-tokens": "/de/enterprise/2.17/user/github/extending-github/git-automation-with-oauth-tokens", - "/de/enterprise/2.17/user/extending-github": "/de/enterprise/2.17/user/github/extending-github", - "/de/enterprise/2.17/github/extending-github": "/de/enterprise/2.17/user/github/extending-github", - "/de/enterprise/2.17/user/getting-started-with-github/access-permissions-on-github": "/de/enterprise/2.17/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.17/github/getting-started-with-github/access-permissions-on-github": "/de/enterprise/2.17/user/github/getting-started-with-github/access-permissions-on-github", - "/de/enterprise/2.17/user/getting-started-with-github/be-social": "/de/enterprise/2.17/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.17/github/getting-started-with-github/be-social": "/de/enterprise/2.17/user/github/getting-started-with-github/be-social", - "/de/enterprise/2.17/user/getting-started-with-github/create-a-repo": "/de/enterprise/2.17/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.17/github/getting-started-with-github/create-a-repo": "/de/enterprise/2.17/user/github/getting-started-with-github/create-a-repo", - "/de/enterprise/2.17/user/getting-started-with-github/exploring-projects-on-github": "/de/enterprise/2.17/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.17/github/getting-started-with-github/exploring-projects-on-github": "/de/enterprise/2.17/user/github/getting-started-with-github/exploring-projects-on-github", - "/de/enterprise/2.17/user/getting-started-with-github/following-people": "/de/enterprise/2.17/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.17/github/getting-started-with-github/following-people": "/de/enterprise/2.17/user/github/getting-started-with-github/following-people", - "/de/enterprise/2.17/user/getting-started-with-github/fork-a-repo": "/de/enterprise/2.17/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.17/github/getting-started-with-github/fork-a-repo": "/de/enterprise/2.17/user/github/getting-started-with-github/fork-a-repo", - "/de/enterprise/2.17/user/getting-started-with-github/git-and-github-learning-resources": "/de/enterprise/2.17/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.17/github/getting-started-with-github/git-and-github-learning-resources": "/de/enterprise/2.17/user/github/getting-started-with-github/git-and-github-learning-resources", - "/de/enterprise/2.17/user/getting-started-with-github/git-cheatsheet": "/de/enterprise/2.17/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.17/github/getting-started-with-github/git-cheatsheet": "/de/enterprise/2.17/user/github/getting-started-with-github/git-cheatsheet", - "/de/enterprise/2.17/user/getting-started-with-github/github-desktop": "/de/enterprise/2.17/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.17/github/getting-started-with-github/github-desktop": "/de/enterprise/2.17/user/github/getting-started-with-github/github-desktop", - "/de/enterprise/2.17/user/getting-started-with-github/github-glossary": "/de/enterprise/2.17/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.17/github/getting-started-with-github/github-glossary": "/de/enterprise/2.17/user/github/getting-started-with-github/github-glossary", - "/de/enterprise/2.17/user/getting-started-with-github/githubs-products": "/de/enterprise/2.17/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.17/github/getting-started-with-github/githubs-products": "/de/enterprise/2.17/user/github/getting-started-with-github/githubs-products", - "/de/enterprise/2.17/user/getting-started-with-github": "/de/enterprise/2.17/user/github/getting-started-with-github", - "/de/enterprise/2.17/github/getting-started-with-github": "/de/enterprise/2.17/user/github/getting-started-with-github", - "/de/enterprise/2.17/user/getting-started-with-github/keyboard-shortcuts": "/de/enterprise/2.17/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.17/github/getting-started-with-github/keyboard-shortcuts": "/de/enterprise/2.17/user/github/getting-started-with-github/keyboard-shortcuts", - "/de/enterprise/2.17/user/getting-started-with-github/learning-about-github": "/de/enterprise/2.17/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.17/github/getting-started-with-github/learning-about-github": "/de/enterprise/2.17/user/github/getting-started-with-github/learning-about-github", - "/de/enterprise/2.17/user/getting-started-with-github/quickstart": "/de/enterprise/2.17/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.17/github/getting-started-with-github/quickstart": "/de/enterprise/2.17/user/github/getting-started-with-github/quickstart", - "/de/enterprise/2.17/user/getting-started-with-github/saving-repositories-with-stars": "/de/enterprise/2.17/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.17/github/getting-started-with-github/saving-repositories-with-stars": "/de/enterprise/2.17/user/github/getting-started-with-github/saving-repositories-with-stars", - "/de/enterprise/2.17/user/getting-started-with-github/set-up-git": "/de/enterprise/2.17/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.17/github/getting-started-with-github/set-up-git": "/de/enterprise/2.17/user/github/getting-started-with-github/set-up-git", - "/de/enterprise/2.17/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud": "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud": "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-cloud", - "/de/enterprise/2.17/user/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server": "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server": "/de/enterprise/2.17/user/github/getting-started-with-github/setting-up-a-trial-of-github-enterprise-server", - "/de/enterprise/2.17/user/getting-started-with-github/signing-up-for-github": "/de/enterprise/2.17/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.17/github/getting-started-with-github/signing-up-for-github": "/de/enterprise/2.17/user/github/getting-started-with-github/signing-up-for-github", - "/de/enterprise/2.17/user/getting-started-with-github/supported-browsers": "/de/enterprise/2.17/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.17/github/getting-started-with-github/supported-browsers": "/de/enterprise/2.17/user/github/getting-started-with-github/supported-browsers", - "/de/enterprise/2.17/user/getting-started-with-github/types-of-github-accounts": "/de/enterprise/2.17/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.17/github/getting-started-with-github/types-of-github-accounts": "/de/enterprise/2.17/user/github/getting-started-with-github/types-of-github-accounts", - "/de/enterprise/2.17/user/getting-started-with-github/using-github": "/de/enterprise/2.17/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.17/github/getting-started-with-github/using-github": "/de/enterprise/2.17/user/github/getting-started-with-github/using-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line", - "/de/enterprise/2.17/user/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line", - "/de/enterprise/2.17/user/importing-your-projects-to-github/importing-source-code-to-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/importing-source-code-to-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/importing-source-code-to-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/source-code-migration-tools": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.17/github/importing-your-projects-to-github/source-code-migration-tools": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/source-code-migration-tools", - "/de/enterprise/2.17/user/importing-your-projects-to-github/subversion-properties-supported-by-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/subversion-properties-supported-by-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/subversion-properties-supported-by-github", - "/de/enterprise/2.17/user/importing-your-projects-to-github/support-for-subversion-clients": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.17/github/importing-your-projects-to-github/support-for-subversion-clients": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/support-for-subversion-clients", - "/de/enterprise/2.17/user/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git", - "/de/enterprise/2.17/user/importing-your-projects-to-github/working-with-subversion-on-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.17/github/importing-your-projects-to-github/working-with-subversion-on-github": "/de/enterprise/2.17/user/github/importing-your-projects-to-github/working-with-subversion-on-github", - "/de/enterprise/2.17/user": "/de/enterprise/2.17/user/github", - "/de/enterprise/2.17/github": "/de/enterprise/2.17/user/github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/3d-file-viewer": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.17/github/managing-files-in-a-repository/3d-file-viewer": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/3d-file-viewer", - "/de/enterprise/2.17/user/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/adding-a-file-to-a-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/adding-a-file-to-a-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/adding-a-file-to-a-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/creating-new-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/creating-new-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/creating-new-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/deleting-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/deleting-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/deleting-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository/editing-files-in-another-users-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/editing-files-in-another-users-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-another-users-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/editing-files-in-your-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository/editing-files-in-your-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/editing-files-in-your-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/getting-permanent-links-to-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/getting-permanent-links-to-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/getting-permanent-links-to-files", - "/de/enterprise/2.17/user/managing-files-in-a-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository", - "/de/enterprise/2.17/github/managing-files-in-a-repository": "/de/enterprise/2.17/user/github/managing-files-in-a-repository", - "/de/enterprise/2.17/user/managing-files-in-a-repository/managing-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/managing-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/managing-files-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/managing-files-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/managing-files-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/mapping-geojson-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/mapping-geojson-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/mapping-geojson-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/moving-a-file-to-a-new-location": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/github/managing-files-in-a-repository/moving-a-file-to-a-new-location": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/moving-a-file-to-a-new-location", - "/de/enterprise/2.17/user/managing-files-in-a-repository/renaming-a-file-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file-using-the-command-line", - "/de/enterprise/2.17/user/managing-files-in-a-repository/renaming-a-file": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.17/github/managing-files-in-a-repository/renaming-a-file": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/renaming-a-file", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-and-diffing-images": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-and-diffing-images": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-and-diffing-images", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-csv-and-tsv-data": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-csv-and-tsv-data": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-csv-and-tsv-data", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-differences-in-prose-documents": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-differences-in-prose-documents": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-differences-in-prose-documents", - "/de/enterprise/2.17/user/managing-files-in-a-repository/rendering-pdf-documents": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.17/github/managing-files-in-a-repository/rendering-pdf-documents": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/rendering-pdf-documents", - "/de/enterprise/2.17/user/managing-files-in-a-repository/tracking-changes-in-a-file": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.17/github/managing-files-in-a-repository/tracking-changes-in-a-file": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/tracking-changes-in-a-file", - "/de/enterprise/2.17/user/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-jupyter-notebook-files-on-github", - "/de/enterprise/2.17/user/managing-files-in-a-repository/working-with-non-code-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.17/github/managing-files-in-a-repository/working-with-non-code-files": "/de/enterprise/2.17/user/github/managing-files-in-a-repository/working-with-non-code-files", - "/de/enterprise/2.17/user/managing-large-files/about-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/about-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/about-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/collaboration-with-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/collaboration-with-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/collaboration-with-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/conditions-for-large-files": "/de/enterprise/2.17/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.17/github/managing-large-files/conditions-for-large-files": "/de/enterprise/2.17/user/github/managing-large-files/conditions-for-large-files", - "/de/enterprise/2.17/user/managing-large-files/configuring-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/configuring-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/configuring-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/distributing-large-binaries": "/de/enterprise/2.17/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.17/github/managing-large-files/distributing-large-binaries": "/de/enterprise/2.17/user/github/managing-large-files/distributing-large-binaries", - "/de/enterprise/2.17/user/managing-large-files": "/de/enterprise/2.17/user/github/managing-large-files", - "/de/enterprise/2.17/github/managing-large-files": "/de/enterprise/2.17/user/github/managing-large-files", - "/de/enterprise/2.17/user/managing-large-files/installing-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/installing-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/installing-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/removing-files-from-a-repositorys-history": "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/github/managing-large-files/removing-files-from-a-repositorys-history": "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-a-repositorys-history", - "/de/enterprise/2.17/user/managing-large-files/removing-files-from-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/github/managing-large-files/removing-files-from-git-large-file-storage": "/de/enterprise/2.17/user/github/managing-large-files/removing-files-from-git-large-file-storage", - "/de/enterprise/2.17/user/managing-large-files/resolving-git-large-file-storage-upload-failures": "/de/enterprise/2.17/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/github/managing-large-files/resolving-git-large-file-storage-upload-failures": "/de/enterprise/2.17/user/github/managing-large-files/resolving-git-large-file-storage-upload-failures", - "/de/enterprise/2.17/user/managing-large-files/versioning-large-files": "/de/enterprise/2.17/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.17/github/managing-large-files/versioning-large-files": "/de/enterprise/2.17/user/github/managing-large-files/versioning-large-files", - "/de/enterprise/2.17/user/managing-large-files/working-with-large-files": "/de/enterprise/2.17/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.17/github/managing-large-files/working-with-large-files": "/de/enterprise/2.17/user/github/managing-large-files/working-with-large-files", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/about-security-alerts-for-vulnerable-dependencies", - "/de/enterprise/2.17/user/managing-security-vulnerabilities": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.17/github/managing-security-vulnerabilities": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities", - "/de/enterprise/2.17/user/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies": "/de/enterprise/2.17/user/github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-issues-and-pull-requests-with-query-parameters", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-automation-for-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-automation-for-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-automation-for-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-duplicate-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-duplicate-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-labels": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-labels": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-labels", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-milestones": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-milestones": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-milestones", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/about-task-lists": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.17/github/managing-your-work-on-github/about-task-lists": "/de/enterprise/2.17/user/github/managing-your-work-on-github/about-task-lists", - "/de/enterprise/2.17/user/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-issues-and-pull-requests-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/adding-notes-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/adding-notes-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/adding-notes-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/applying-labels-to-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/archiving-cards-on-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/archiving-cards-on-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/archiving-cards-on-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users": "/de/enterprise/2.17/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users": "/de/enterprise/2.17/user/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users", - "/de/enterprise/2.17/user/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/associating-milestones-with-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/changing-project-board-visibility": "/de/enterprise/2.17/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.17/github/managing-your-work-on-github/changing-project-board-visibility": "/de/enterprise/2.17/user/github/managing-your-work-on-github/changing-project-board-visibility", - "/de/enterprise/2.17/user/managing-your-work-on-github/closing-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/closing-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/closing-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/configuring-automation-for-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/configuring-automation-for-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/configuring-automation-for-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/creating-and-editing-milestones-for-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/deleting-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.17/github/managing-your-work-on-github/deleting-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/deleting-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-project-boards-in-a-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-project-boards-in-a-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-a-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/disabling-project-boards-in-your-organization": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/github/managing-your-work-on-github/disabling-project-boards-in-your-organization": "/de/enterprise/2.17/user/github/managing-your-work-on-github/disabling-project-boards-in-your-organization", - "/de/enterprise/2.17/user/managing-your-work-on-github/editing-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.17/github/managing-your-work-on-github/editing-a-label": "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-label", - "/de/enterprise/2.17/user/managing-your-work-on-github/editing-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/editing-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/editing-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-cards-on-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-cards-on-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-cards-on-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-assignees", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-labels", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests-by-milestone", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/filtering-pull-requests-by-review-status": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/github/managing-your-work-on-github/filtering-pull-requests-by-review-status": "/de/enterprise/2.17/user/github/managing-your-work-on-github/filtering-pull-requests-by-review-status", - "/de/enterprise/2.17/user/managing-your-work-on-github/finding-information-in-a-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/finding-information-in-a-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/finding-information-in-a-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github": "/de/enterprise/2.17/user/github/managing-your-work-on-github", - "/de/enterprise/2.17/github/managing-your-work-on-github": "/de/enterprise/2.17/user/github/managing-your-work-on-github", - "/de/enterprise/2.17/user/managing-your-work-on-github/labeling-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/labeling-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/labeling-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/linking-a-pull-request-to-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.17/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue": "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue", - "/de/enterprise/2.17/user/managing-your-work-on-github/linking-a-repository-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/linking-a-repository-to-a-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/linking-a-repository-to-a-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/managing-your-work-with-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.17/github/managing-your-work-on-github/managing-your-work-with-issues": "/de/enterprise/2.17/user/github/managing-your-work-on-github/managing-your-work-with-issues", - "/de/enterprise/2.17/user/managing-your-work-on-github/opening-an-issue-from-a-comment": "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.17/github/managing-your-work-on-github/opening-an-issue-from-a-comment": "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-a-comment", - "/de/enterprise/2.17/user/managing-your-work-on-github/opening-an-issue-from-code": "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.17/github/managing-your-work-on-github/opening-an-issue-from-code": "/de/enterprise/2.17/user/github/managing-your-work-on-github/opening-an-issue-from-code", - "/de/enterprise/2.17/user/managing-your-work-on-github/pinning-an-issue-to-your-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/github/managing-your-work-on-github/pinning-an-issue-to-your-repository": "/de/enterprise/2.17/user/github/managing-your-work-on-github/pinning-an-issue-to-your-repository", - "/de/enterprise/2.17/user/managing-your-work-on-github/reopening-a-closed-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/reopening-a-closed-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/reopening-a-closed-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/sharing-filters": "/de/enterprise/2.17/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.17/github/managing-your-work-on-github/sharing-filters": "/de/enterprise/2.17/user/github/managing-your-work-on-github/sharing-filters", - "/de/enterprise/2.17/user/managing-your-work-on-github/sorting-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/sorting-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/sorting-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-progress-on-your-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-progress-on-your-project-board": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-progress-on-your-project-board", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-milestones", - "/de/enterprise/2.17/user/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards": "/de/enterprise/2.17/user/github/managing-your-work-on-github/tracking-the-progress-of-your-work-with-project-boards", - "/de/enterprise/2.17/user/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests": "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-all-of-your-issues-and-pull-requests", - "/de/enterprise/2.17/user/managing-your-work-on-github/viewing-your-milestones-progress": "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.17/github/managing-your-work-on-github/viewing-your-milestones-progress": "/de/enterprise/2.17/user/github/managing-your-work-on-github/viewing-your-milestones-progress", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/about-email-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-email-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/about-email-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-email-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/about-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/about-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/about-web-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-web-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/about-web-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/about-web-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/accessing-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/accessing-your-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/accessing-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/accessing-your-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/getting-started-with-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/getting-started-with-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/listing-the-issues-and-pull-requests-youre-subscribed-to": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/listing-the-issues-and-pull-requests-youre-subscribed-to": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/listing-the-issues-and-pull-requests-youre-subscribed-to", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/managing-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/managing-your-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/managing-your-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/managing-your-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/marking-notifications-as-read": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/marking-notifications-as-read", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/saving-notifications-for-later": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/saving-notifications-for-later", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/subscribing-to-and-unsubscribing-from-notifications", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-repositories", - "/de/enterprise/2.17/user/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions", - "/de/enterprise/2.17/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions": "/de/enterprise/2.17/user/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-team-discussions", - "/de/enterprise/2.17/user/searching-for-information-on-github/about-searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/about-searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/about-searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server": "/de/enterprise/2.17/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server": "/de/enterprise/2.17/user/github/searching-for-information-on-github/enabling-githubcom-repository-search-in-github-enterprise-server", - "/de/enterprise/2.17/user/searching-for-information-on-github/finding-files-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/finding-files-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/finding-files-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/getting-started-with-searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/getting-started-with-searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/getting-started-with-searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-code": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-code": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-code", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-commits": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-commits": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-commits", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-for-repositories": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-for-repositories": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-for-repositories", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-in-forks": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-in-forks": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-in-forks", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-issues-and-pull-requests": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-issues-and-pull-requests": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-issues-and-pull-requests", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-on-github": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-on-github", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-topics": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-topics": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-topics", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-users": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-users": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-users", - "/de/enterprise/2.17/user/searching-for-information-on-github/searching-wikis": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.17/github/searching-for-information-on-github/searching-wikis": "/de/enterprise/2.17/user/github/searching-for-information-on-github/searching-wikis", - "/de/enterprise/2.17/user/searching-for-information-on-github/sorting-search-results": "/de/enterprise/2.17/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.17/github/searching-for-information-on-github/sorting-search-results": "/de/enterprise/2.17/user/github/searching-for-information-on-github/sorting-search-results", - "/de/enterprise/2.17/user/searching-for-information-on-github/troubleshooting-search-queries": "/de/enterprise/2.17/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.17/github/searching-for-information-on-github/troubleshooting-search-queries": "/de/enterprise/2.17/user/github/searching-for-information-on-github/troubleshooting-search-queries", - "/de/enterprise/2.17/user/searching-for-information-on-github/understanding-the-search-syntax": "/de/enterprise/2.17/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.17/github/searching-for-information-on-github/understanding-the-search-syntax": "/de/enterprise/2.17/user/github/searching-for-information-on-github/understanding-the-search-syntax", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organization-dashboard", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/adding-people-to-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/allowing-people-to-delete-issues-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/changing-team-visibility": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/changing-team-visibility", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-into-a-user", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/creating-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/creating-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/creating-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/deleting-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/deleting-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/deleting-an-organization-account", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/disabling-team-discussions-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/integrating-jira-with-your-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/maintaining-ownership-continuity-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-apps", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-organization-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-organization-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-peoples-access-to-your-organization-with-roles", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/managing-the-forking-policy-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/preparing-to-require-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-member-of-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reinstating-a-former-outside-collaborators-access-to-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-a-member-from-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/renaming-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/renaming-a-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-a-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/renaming-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/renaming-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-a-child-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requesting-to-add-or-change-a-parent-team", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/reviewing-your-organizations-installed-integrations", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-team-creation-permissions-in-your-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/setting-your-teams-profile-picture", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-people-with-access-to-your-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled": "/de/enterprise/2.17/user/github/setting-up-and-managing-organizations-and-teams/viewing-whether-users-in-your-organization-have-2fa-enabled", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/about-your-organizations-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-organizations-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/about-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/about-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/about-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/customizing-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/customizing-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/customizing-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/personalizing-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/personalizing-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/personalizing-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/pinning-items-to-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/publicizing-or-hiding-your-private-contributions-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/sending-your-github-enterprise-server-contributions-to-your-githubcom-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/showing-an-overview-of-your-activity-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/troubleshooting-commits-on-your-timeline", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/viewing-contributions-on-your-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-profile/why-are-my-contributions-not-showing-up-on-my-profile", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/about-organization-membership": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/about-organization-membership": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-organization-membership", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/about-your-personal-dashboard", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/accessing-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/accessing-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/accessing-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/adding-an-email-address-to-your-github-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/changing-your-github-username": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/changing-your-github-username": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-github-username", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/changing-your-primary-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/deleting-your-user-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/deleting-your-user-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/integrating-jira-with-your-personal-projects", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/inviting-collaborators-to-a-personal-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-access-to-your-user-accounts-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-email-preferences": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-email-preferences": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-email-preferences", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-user-account-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-user-account-settings", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/permission-levels-for-user-owned-project-boards", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/publicizing-or-hiding-organization-membership", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/remembering-your-github-username-or-email", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-a-collaborator-from-a-personal-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-a-collaborators-repository", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/removing-yourself-from-an-organization", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-a-backup-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address", - "/de/enterprise/2.17/user/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization": "/de/enterprise/2.17/user/github/setting-up-and-managing-your-github-user-account/viewing-peoples-roles-in-an-organization", - "/de/enterprise/2.17/user/site-policy/github-insights-and-data-protection-for-your-organization": "/de/enterprise/2.17/user/github/site-policy/github-insights-and-data-protection-for-your-organization", - "/de/enterprise/2.17/github/site-policy/github-insights-and-data-protection-for-your-organization": "/de/enterprise/2.17/user/github/site-policy/github-insights-and-data-protection-for-your-organization", - "/de/enterprise/2.17/user/using-git/about-git-rebase": "/de/enterprise/2.17/user/github/using-git/about-git-rebase", - "/de/enterprise/2.17/github/using-git/about-git-rebase": "/de/enterprise/2.17/user/github/using-git/about-git-rebase", - "/de/enterprise/2.17/user/using-git/about-git-subtree-merges": "/de/enterprise/2.17/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.17/github/using-git/about-git-subtree-merges": "/de/enterprise/2.17/user/github/using-git/about-git-subtree-merges", - "/de/enterprise/2.17/user/using-git/about-remote-repositories": "/de/enterprise/2.17/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.17/github/using-git/about-remote-repositories": "/de/enterprise/2.17/user/github/using-git/about-remote-repositories", - "/de/enterprise/2.17/user/using-git/adding-a-remote": "/de/enterprise/2.17/user/github/using-git/adding-a-remote", - "/de/enterprise/2.17/github/using-git/adding-a-remote": "/de/enterprise/2.17/user/github/using-git/adding-a-remote", - "/de/enterprise/2.17/user/using-git/associating-text-editors-with-git": "/de/enterprise/2.17/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.17/github/using-git/associating-text-editors-with-git": "/de/enterprise/2.17/user/github/using-git/associating-text-editors-with-git", - "/de/enterprise/2.17/user/using-git/caching-your-github-password-in-git": "/de/enterprise/2.17/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.17/github/using-git/caching-your-github-password-in-git": "/de/enterprise/2.17/user/github/using-git/caching-your-github-password-in-git", - "/de/enterprise/2.17/user/using-git/changing-a-remotes-url": "/de/enterprise/2.17/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.17/github/using-git/changing-a-remotes-url": "/de/enterprise/2.17/user/github/using-git/changing-a-remotes-url", - "/de/enterprise/2.17/user/using-git/changing-author-info": "/de/enterprise/2.17/user/github/using-git/changing-author-info", - "/de/enterprise/2.17/github/using-git/changing-author-info": "/de/enterprise/2.17/user/github/using-git/changing-author-info", - "/de/enterprise/2.17/user/using-git/configuring-git-to-handle-line-endings": "/de/enterprise/2.17/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/github/using-git/configuring-git-to-handle-line-endings": "/de/enterprise/2.17/user/github/using-git/configuring-git-to-handle-line-endings", - "/de/enterprise/2.17/user/using-git/dealing-with-non-fast-forward-errors": "/de/enterprise/2.17/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/github/using-git/dealing-with-non-fast-forward-errors": "/de/enterprise/2.17/user/github/using-git/dealing-with-non-fast-forward-errors", - "/de/enterprise/2.17/user/using-git/getting-changes-from-a-remote-repository": "/de/enterprise/2.17/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/github/using-git/getting-changes-from-a-remote-repository": "/de/enterprise/2.17/user/github/using-git/getting-changes-from-a-remote-repository", - "/de/enterprise/2.17/user/using-git/getting-started-with-git-and-github": "/de/enterprise/2.17/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.17/github/using-git/getting-started-with-git-and-github": "/de/enterprise/2.17/user/github/using-git/getting-started-with-git-and-github", - "/de/enterprise/2.17/user/using-git/git-workflows": "/de/enterprise/2.17/user/github/using-git/git-workflows", - "/de/enterprise/2.17/github/using-git/git-workflows": "/de/enterprise/2.17/user/github/using-git/git-workflows", - "/de/enterprise/2.17/user/using-git/ignoring-files": "/de/enterprise/2.17/user/github/using-git/ignoring-files", - "/de/enterprise/2.17/github/using-git/ignoring-files": "/de/enterprise/2.17/user/github/using-git/ignoring-files", - "/de/enterprise/2.17/user/using-git": "/de/enterprise/2.17/user/github/using-git", - "/de/enterprise/2.17/github/using-git": "/de/enterprise/2.17/user/github/using-git", - "/de/enterprise/2.17/user/using-git/learning-about-git": "/de/enterprise/2.17/user/github/using-git/learning-about-git", - "/de/enterprise/2.17/github/using-git/learning-about-git": "/de/enterprise/2.17/user/github/using-git/learning-about-git", - "/de/enterprise/2.17/user/using-git/managing-remote-repositories": "/de/enterprise/2.17/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.17/github/using-git/managing-remote-repositories": "/de/enterprise/2.17/user/github/using-git/managing-remote-repositories", - "/de/enterprise/2.17/user/using-git/pushing-commits-to-a-remote-repository": "/de/enterprise/2.17/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/github/using-git/pushing-commits-to-a-remote-repository": "/de/enterprise/2.17/user/github/using-git/pushing-commits-to-a-remote-repository", - "/de/enterprise/2.17/user/using-git/removing-a-remote": "/de/enterprise/2.17/user/github/using-git/removing-a-remote", - "/de/enterprise/2.17/github/using-git/removing-a-remote": "/de/enterprise/2.17/user/github/using-git/removing-a-remote", - "/de/enterprise/2.17/user/using-git/renaming-a-remote": "/de/enterprise/2.17/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.17/github/using-git/renaming-a-remote": "/de/enterprise/2.17/user/github/using-git/renaming-a-remote", - "/de/enterprise/2.17/user/using-git/resolving-merge-conflicts-after-a-git-rebase": "/de/enterprise/2.17/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/github/using-git/resolving-merge-conflicts-after-a-git-rebase": "/de/enterprise/2.17/user/github/using-git/resolving-merge-conflicts-after-a-git-rebase", - "/de/enterprise/2.17/user/using-git/setting-your-username-in-git": "/de/enterprise/2.17/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.17/github/using-git/setting-your-username-in-git": "/de/enterprise/2.17/user/github/using-git/setting-your-username-in-git", - "/de/enterprise/2.17/user/using-git/splitting-a-subfolder-out-into-a-new-repository": "/de/enterprise/2.17/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/github/using-git/splitting-a-subfolder-out-into-a-new-repository": "/de/enterprise/2.17/user/github/using-git/splitting-a-subfolder-out-into-a-new-repository", - "/de/enterprise/2.17/user/using-git/updating-credentials-from-the-osx-keychain": "/de/enterprise/2.17/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/github/using-git/updating-credentials-from-the-osx-keychain": "/de/enterprise/2.17/user/github/using-git/updating-credentials-from-the-osx-keychain", - "/de/enterprise/2.17/user/using-git/using-advanced-git-commands": "/de/enterprise/2.17/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.17/github/using-git/using-advanced-git-commands": "/de/enterprise/2.17/user/github/using-git/using-advanced-git-commands", - "/de/enterprise/2.17/user/using-git/using-common-git-commands": "/de/enterprise/2.17/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.17/github/using-git/using-common-git-commands": "/de/enterprise/2.17/user/github/using-git/using-common-git-commands", - "/de/enterprise/2.17/user/using-git/using-git-rebase-on-the-command-line": "/de/enterprise/2.17/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/github/using-git/using-git-rebase-on-the-command-line": "/de/enterprise/2.17/user/github/using-git/using-git-rebase-on-the-command-line", - "/de/enterprise/2.17/user/using-git/which-remote-url-should-i-use": "/de/enterprise/2.17/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.17/github/using-git/which-remote-url-should-i-use": "/de/enterprise/2.17/user/github/using-git/which-remote-url-should-i-use", - "/de/enterprise/2.17/user/using-git/why-is-git-always-asking-for-my-password": "/de/enterprise/2.17/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/github/using-git/why-is-git-always-asking-for-my-password": "/de/enterprise/2.17/user/github/using-git/why-is-git-always-asking-for-my-password", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/about-repository-graphs": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/about-repository-graphs": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/about-repository-graphs", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/accessing-basic-repository-data": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/accessing-basic-repository-data", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/analyzing-changes-to-a-repositorys-content", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-forks-of-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-packages-that-a-repository-depends-on", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/listing-the-projects-that-depend-on-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/understanding-connections-between-repositories": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/understanding-connections-between-repositories", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-projects-contributors": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-repositorys-network": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-repositorys-network", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/viewing-a-summary-of-repository-activity", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-additions-and-deletions-to-content-in-a-repository", - "/de/enterprise/2.17/user/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository": "/de/enterprise/2.17/user/github/visualizing-repository-data-with-graphs/visualizing-commits-in-a-repository", - "/de/enterprise/2.17/user/working-with-github-pages/about-github-pages-and-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/about-github-pages-and-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages-and-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/about-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages/about-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages/about-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.17/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.17/user/github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/adding-content-to-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-github-pages-site-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/creating-a-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/creating-a-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/creating-a-github-pages-site", - "/de/enterprise/2.17/user/working-with-github-pages/getting-started-with-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages/getting-started-with-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages/getting-started-with-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages", - "/de/enterprise/2.17/github/working-with-github-pages": "/de/enterprise/2.17/user/github/working-with-github-pages", - "/de/enterprise/2.17/user/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/setting-up-a-github-pages-site-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll": "/de/enterprise/2.17/user/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll", - "/de/enterprise/2.17/user/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.17/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites": "/de/enterprise/2.17/user/github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites", - "/de/enterprise/2.17/user/working-with-github-pages/unpublishing-a-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/github/working-with-github-pages/unpublishing-a-github-pages-site": "/de/enterprise/2.17/user/github/working-with-github-pages/unpublishing-a-github-pages-site", - "/de/enterprise/2.17/user/writing-on-github/about-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/about-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/about-saved-replies", - "/de/enterprise/2.17/user/writing-on-github/about-writing-and-formatting-on-github": "/de/enterprise/2.17/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/github/writing-on-github/about-writing-and-formatting-on-github": "/de/enterprise/2.17/user/github/writing-on-github/about-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/writing-on-github/autolinked-references-and-urls": "/de/enterprise/2.17/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.17/github/writing-on-github/autolinked-references-and-urls": "/de/enterprise/2.17/user/github/writing-on-github/autolinked-references-and-urls", - "/de/enterprise/2.17/user/writing-on-github/basic-writing-and-formatting-syntax": "/de/enterprise/2.17/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/github/writing-on-github/basic-writing-and-formatting-syntax": "/de/enterprise/2.17/user/github/writing-on-github/basic-writing-and-formatting-syntax", - "/de/enterprise/2.17/user/writing-on-github/creating-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/creating-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/creating-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/creating-and-highlighting-code-blocks": "/de/enterprise/2.17/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/github/writing-on-github/creating-and-highlighting-code-blocks": "/de/enterprise/2.17/user/github/writing-on-github/creating-and-highlighting-code-blocks", - "/de/enterprise/2.17/user/writing-on-github/creating-gists": "/de/enterprise/2.17/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.17/github/writing-on-github/creating-gists": "/de/enterprise/2.17/user/github/writing-on-github/creating-gists", - "/de/enterprise/2.17/user/writing-on-github/deleting-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/deleting-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/deleting-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/editing-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.17/github/writing-on-github/editing-a-saved-reply": "/de/enterprise/2.17/user/github/writing-on-github/editing-a-saved-reply", - "/de/enterprise/2.17/user/writing-on-github/editing-and-sharing-content-with-gists": "/de/enterprise/2.17/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/github/writing-on-github/editing-and-sharing-content-with-gists": "/de/enterprise/2.17/user/github/writing-on-github/editing-and-sharing-content-with-gists", - "/de/enterprise/2.17/user/writing-on-github/forking-and-cloning-gists": "/de/enterprise/2.17/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.17/github/writing-on-github/forking-and-cloning-gists": "/de/enterprise/2.17/user/github/writing-on-github/forking-and-cloning-gists", - "/de/enterprise/2.17/user/writing-on-github/getting-started-with-writing-and-formatting-on-github": "/de/enterprise/2.17/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/github/writing-on-github/getting-started-with-writing-and-formatting-on-github": "/de/enterprise/2.17/user/github/writing-on-github/getting-started-with-writing-and-formatting-on-github", - "/de/enterprise/2.17/user/writing-on-github": "/de/enterprise/2.17/user/github/writing-on-github", - "/de/enterprise/2.17/github/writing-on-github": "/de/enterprise/2.17/user/github/writing-on-github", - "/de/enterprise/2.17/user/writing-on-github/organizing-information-with-tables": "/de/enterprise/2.17/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.17/github/writing-on-github/organizing-information-with-tables": "/de/enterprise/2.17/user/github/writing-on-github/organizing-information-with-tables", - "/de/enterprise/2.17/user/writing-on-github/using-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/using-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/using-saved-replies", - "/de/enterprise/2.17/user/writing-on-github/working-with-advanced-formatting": "/de/enterprise/2.17/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.17/github/writing-on-github/working-with-advanced-formatting": "/de/enterprise/2.17/user/github/writing-on-github/working-with-advanced-formatting", - "/de/enterprise/2.17/user/writing-on-github/working-with-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.17/github/writing-on-github/working-with-saved-replies": "/de/enterprise/2.17/user/github/writing-on-github/working-with-saved-replies", - "/de/enterprise/2.17/graphql/guides/forming-calls-with-graphql": "/de/enterprise/2.17/user/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.17/graphql/guides": "/de/enterprise/2.17/user/graphql/guides", - "/de/enterprise/2.17/graphql/guides/introduction-to-graphql": "/de/enterprise/2.17/user/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.17/graphql/guides/migrating-from-rest-to-graphql": "/de/enterprise/2.17/user/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.17/graphql/guides/using-global-node-ids": "/de/enterprise/2.17/user/graphql/guides/using-global-node-ids", - "/de/enterprise/2.17/graphql/guides/using-the-explorer": "/de/enterprise/2.17/user/graphql/guides/using-the-explorer", - "/de/enterprise/2.17/graphql": "/de/enterprise/2.17/user/graphql", - "/de/enterprise/2.17/graphql/overview/about-the-graphql-api": "/de/enterprise/2.17/user/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.17/graphql/overview/breaking-changes": "/de/enterprise/2.17/user/graphql/overview/breaking-changes", - "/de/enterprise/2.17/graphql/overview/changelog": "/de/enterprise/2.17/user/graphql/overview/changelog", - "/de/enterprise/2.17/graphql/overview/explorer": "/de/enterprise/2.17/user/graphql/overview/explorer", - "/de/enterprise/2.17/graphql/overview": "/de/enterprise/2.17/user/graphql/overview", - "/de/enterprise/2.17/graphql/overview/resource-limitations": "/de/enterprise/2.17/user/graphql/overview/resource-limitations", - "/de/enterprise/2.17/graphql/overview/schema-previews": "/de/enterprise/2.17/user/graphql/overview/schema-previews", - "/de/enterprise/2.17/graphql/reference/enums": "/de/enterprise/2.17/user/graphql/reference/enums", - "/de/enterprise/2.17/graphql/reference": "/de/enterprise/2.17/user/graphql/reference", - "/de/enterprise/2.17/graphql/reference/input-objects": "/de/enterprise/2.17/user/graphql/reference/input-objects", - "/de/enterprise/2.17/graphql/reference/interfaces": "/de/enterprise/2.17/user/graphql/reference/interfaces", - "/de/enterprise/2.17/graphql/reference/mutations": "/de/enterprise/2.17/user/graphql/reference/mutations", - "/de/enterprise/2.17/graphql/reference/objects": "/de/enterprise/2.17/user/graphql/reference/objects", - "/de/enterprise/2.17/graphql/reference/queries": "/de/enterprise/2.17/user/graphql/reference/queries", - "/de/enterprise/2.17/graphql/reference/scalars": "/de/enterprise/2.17/user/graphql/reference/scalars", - "/de/enterprise/2.17/graphql/reference/unions": "/de/enterprise/2.17/user/graphql/reference/unions", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise": "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights": "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/metrics-available-with-github-insights", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights": "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/setting-your-timezone-for-github-insights", - "/de/enterprise/2.17/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports": "/de/enterprise/2.17/user/insights/exploring-your-usage-of-github-enterprise/viewing-key-metrics-and-reports", - "/de/enterprise/2.17/insights": "/de/enterprise/2.17/user/insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/about-data-in-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/about-data-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/about-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/about-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/configuring-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/configuring-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/configuring-the-connection-between-github-insights-and-github-enterprise", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/installing-and-updating-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/installing-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/installing-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-available-metrics-and-reports", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-contributors-and-teams": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-contributors-and-teams", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-data-in-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-data-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-events": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-events", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-goals": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-goals", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-organizations": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-organizations", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-permissions-in-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/managing-repositories": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/managing-repositories", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/system-overview-for-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/system-overview-for-github-insights", - "/de/enterprise/2.17/insights/installing-and-configuring-github-insights/updating-github-insights": "/de/enterprise/2.17/user/insights/installing-and-configuring-github-insights/updating-github-insights", - "/de/enterprise/2.17/rest": "/de/enterprise/2.17/user/rest", - "/de/enterprise/2.17/rest/reference/actions": "/de/enterprise/2.17/user/rest/reference/actions", - "/de/enterprise/2.17/rest/reference/activity": "/de/enterprise/2.17/user/rest/reference/activity", - "/de/enterprise/2.17/rest/reference/apps": "/de/enterprise/2.17/user/rest/reference/apps", - "/de/enterprise/2.17/rest/reference/checks": "/de/enterprise/2.17/user/rest/reference/checks", - "/de/enterprise/2.17/rest/reference/codes-of-conduct": "/de/enterprise/2.17/user/rest/reference/codes-of-conduct", - "/de/enterprise/2.17/rest/reference/emojis": "/de/enterprise/2.17/user/rest/reference/emojis", - "/de/enterprise/2.17/rest/reference/endpoints-available-for-github-apps": "/de/enterprise/2.17/user/rest/reference/endpoints-available-for-github-apps", - "/de/enterprise/2.17/rest/reference/enterprise-admin": "/de/enterprise/2.17/user/rest/reference/enterprise-admin", - "/de/enterprise/2.17/rest/reference/gists": "/de/enterprise/2.17/user/rest/reference/gists", - "/de/enterprise/2.17/rest/reference/git": "/de/enterprise/2.17/user/rest/reference/git", - "/de/enterprise/2.17/rest/reference/gitignore": "/de/enterprise/2.17/user/rest/reference/gitignore", - "/de/enterprise/2.17/rest/reference": "/de/enterprise/2.17/user/rest/reference", - "/de/enterprise/2.17/rest/reference/interactions": "/de/enterprise/2.17/user/rest/reference/interactions", - "/de/enterprise/2.17/rest/reference/issues": "/de/enterprise/2.17/user/rest/reference/issues", - "/de/enterprise/2.17/rest/reference/licenses": "/de/enterprise/2.17/user/rest/reference/licenses", - "/de/enterprise/2.17/rest/reference/markdown": "/de/enterprise/2.17/user/rest/reference/markdown", - "/de/enterprise/2.17/rest/reference/meta": "/de/enterprise/2.17/user/rest/reference/meta", - "/de/enterprise/2.17/rest/reference/migrations": "/de/enterprise/2.17/user/rest/reference/migrations", - "/de/enterprise/2.17/rest/reference/oauth-authorizations": "/de/enterprise/2.17/user/rest/reference/oauth-authorizations", - "/de/enterprise/2.17/rest/reference/orgs": "/de/enterprise/2.17/user/rest/reference/orgs", - "/de/enterprise/2.17/rest/reference/projects": "/de/enterprise/2.17/user/rest/reference/projects", - "/de/enterprise/2.17/rest/reference/pulls": "/de/enterprise/2.17/user/rest/reference/pulls", - "/de/enterprise/2.17/rest/reference/rate-limit": "/de/enterprise/2.17/user/rest/reference/rate-limit", - "/de/enterprise/2.17/rest/reference/reactions": "/de/enterprise/2.17/user/rest/reference/reactions", - "/de/enterprise/2.17/rest/reference/repos": "/de/enterprise/2.17/user/rest/reference/repos", - "/de/enterprise/2.17/rest/reference/scim": "/de/enterprise/2.17/user/rest/reference/scim", - "/de/enterprise/2.17/rest/reference/search": "/de/enterprise/2.17/user/rest/reference/search", - "/de/enterprise/2.17/rest/reference/teams": "/de/enterprise/2.17/user/rest/reference/teams", - "/de/enterprise/2.17/rest/reference/users": "/de/enterprise/2.17/user/rest/reference/users", "/en/enterprise/2.17/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.17/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.17/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.17/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", "/enterprise/2.17/admin/guides/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom": "/en/enterprise/2.17/admin/articles/configuring-unified-contributions-between-github-enterprise-and-githubcom", diff --git a/lib/redirects/static/developer.json b/lib/redirects/static/developer.json index 375cb19554..01d858d77f 100644 --- a/lib/redirects/static/developer.json +++ b/lib/redirects/static/developer.json @@ -7064,1159 +7064,6 @@ "/pt/enterprise-server@2.20/v3/users": "/pt/enterprise-server@2.20/rest/reference/users", "/pt/enterprise/2.20/v3/users": "/pt/enterprise-server@2.20/rest/reference/users", "/pt/github-ae@latest/v3/users": "/pt/github-ae@latest/rest/reference/users", - "/de/enterprise-server@3.0/admin/articles/restoring-github-enterprise": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/3.0/admin/articles/restoring-github-enterprise": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/admin/articles/restoring-github-enterprise": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/admin/articles/restoring-github-enterprise": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@3.0/admin/articles/restoring-enterprise-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/3.0/admin/articles/restoring-enterprise-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/admin/articles/restoring-enterprise-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/admin/articles/restoring-enterprise-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@3.0/admin/articles/restoring-repository-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/3.0/admin/articles/restoring-repository-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/admin/articles/restoring-repository-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/admin/articles/restoring-repository-data": "/de/enterprise-server@3.0/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@2.20/admin/articles/restoring-github-enterprise": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.20/admin/articles/restoring-github-enterprise": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@2.20/admin/articles/restoring-enterprise-data": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.20/admin/articles/restoring-enterprise-data": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@2.20/admin/articles/restoring-repository-data": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise/2.20/admin/articles/restoring-repository-data": "/de/enterprise-server@2.20/admin/configuration/configuring-backups-on-your-appliance", - "/de/enterprise-server@3.0/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@3.0/admin/configuration/configuring-your-enterprise", - "/de/enterprise/3.0/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@3.0/admin/configuration/configuring-your-enterprise", - "/de/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@3.0/admin/configuration/configuring-your-enterprise", - "/de/enterprise/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@3.0/admin/configuration/configuring-your-enterprise", - "/de/enterprise-server@2.20/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@2.20/admin/configuration/configuring-your-enterprise", - "/de/enterprise/2.20/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/enterprise-server@2.20/admin/configuration/configuring-your-enterprise", - "/de/github-ae@latest/admin/articles/restricting-ssh-access-to-specific-hosts": "/de/github-ae@latest/admin/configuration/configuring-your-enterprise", - "/de/enterprise-server@3.0/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@3.0/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/3.0/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@3.0/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@3.0/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@3.0/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise-server@2.20/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@2.20/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/enterprise/2.20/admin/user-management/restricting-repository-creation-in-your-instance": "/de/enterprise-server@2.20/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/github-ae@latest/admin/user-management/restricting-repository-creation-in-your-instance": "/de/github-ae@latest/admin/policies/enforcing-repository-management-policies-in-your-enterprise", - "/de/v3/oauth": "/de/developers/apps/authorizing-oauth-apps", - "/de/free-pro-team@latest/v3/oauth": "/de/developers/apps/authorizing-oauth-apps", - "/de/enterprise-server@3.0/v3/oauth": "/de/enterprise-server@3.0/developers/apps/authorizing-oauth-apps", - "/de/enterprise/3.0/v3/oauth": "/de/enterprise-server@3.0/developers/apps/authorizing-oauth-apps", - "/de/enterprise/v3/oauth": "/de/enterprise-server@latest/developers/apps/authorizing-oauth-apps", - "/de/enterprise-server@2.20/v3/oauth": "/de/enterprise-server@2.20/developers/apps/authorizing-oauth-apps", - "/de/enterprise/2.20/v3/oauth": "/de/enterprise-server@2.20/developers/apps/authorizing-oauth-apps", - "/de/github-ae@latest/v3/oauth": "/de/github-ae@latest/developers/apps/authorizing-oauth-apps", - "/de/v3/integrations": "/de/developers/apps", - "/de/free-pro-team@latest/v3/integrations": "/de/developers/apps", - "/de/enterprise-server@3.0/v3/integrations": "/de/enterprise-server@3.0/developers/apps", - "/de/enterprise/3.0/v3/integrations": "/de/enterprise-server@3.0/developers/apps", - "/de/enterprise/v3/integrations": "/de/enterprise-server@latest/developers/apps", - "/de/enterprise-server@2.20/v3/integrations": "/de/enterprise-server@2.20/developers/apps", - "/de/enterprise/2.20/v3/integrations": "/de/enterprise-server@2.20/developers/apps", - "/de/github-ae@latest/v3/integrations": "/de/github-ae@latest/developers/apps", - "/de/free-pro-team@latest/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api": "/de/developers/github-marketplace/rest-endpoints-for-the-github-marketplace-api", - "/de/v3/versions": "/de/developers/overview/about-githubs-apis", - "/de/free-pro-team@latest/v3/versions": "/de/developers/overview/about-githubs-apis", - "/de/enterprise-server@3.0/v3/versions": "/de/enterprise-server@3.0/developers/overview/about-githubs-apis", - "/de/enterprise/3.0/v3/versions": "/de/enterprise-server@3.0/developers/overview/about-githubs-apis", - "/de/enterprise/v3/versions": "/de/enterprise-server@latest/developers/overview/about-githubs-apis", - "/de/enterprise-server@2.20/v3/versions": "/de/enterprise-server@2.20/developers/overview/about-githubs-apis", - "/de/enterprise/2.20/v3/versions": "/de/enterprise-server@2.20/developers/overview/about-githubs-apis", - "/de/github-ae@latest/v3/versions": "/de/github-ae@latest/developers/overview/about-githubs-apis", - "/de/v3/guides/managing-deploy-keys": "/de/developers/overview/managing-deploy-keys", - "/de/free-pro-team@latest/v3/guides/managing-deploy-keys": "/de/developers/overview/managing-deploy-keys", - "/de/enterprise-server@3.0/v3/guides/managing-deploy-keys": "/de/enterprise-server@3.0/developers/overview/managing-deploy-keys", - "/de/enterprise/3.0/v3/guides/managing-deploy-keys": "/de/enterprise-server@3.0/developers/overview/managing-deploy-keys", - "/de/enterprise/v3/guides/managing-deploy-keys": "/de/enterprise-server@latest/developers/overview/managing-deploy-keys", - "/de/enterprise-server@2.20/v3/guides/managing-deploy-keys": "/de/enterprise-server@2.20/developers/overview/managing-deploy-keys", - "/de/enterprise/2.20/v3/guides/managing-deploy-keys": "/de/enterprise-server@2.20/developers/overview/managing-deploy-keys", - "/de/github-ae@latest/v3/guides/managing-deploy-keys": "/de/github-ae@latest/developers/overview/managing-deploy-keys", - "/de/v3/guides/automating-deployments-to-integrators": "/de/developers/overview/replacing-github-services", - "/de/free-pro-team@latest/v3/guides/automating-deployments-to-integrators": "/de/developers/overview/replacing-github-services", - "/de/v3/guides/replacing-github-services": "/de/developers/overview/replacing-github-services", - "/de/free-pro-team@latest/v3/guides/replacing-github-services": "/de/developers/overview/replacing-github-services", - "/de/enterprise-server@3.0/v3/guides/automating-deployments-to-integrators": "/de/enterprise-server@3.0/developers/overview/replacing-github-services", - "/de/enterprise/3.0/v3/guides/automating-deployments-to-integrators": "/de/enterprise-server@3.0/developers/overview/replacing-github-services", - "/de/enterprise/v3/guides/automating-deployments-to-integrators": "/de/enterprise-server@latest/developers/overview/replacing-github-services", - "/de/enterprise-server@3.0/v3/guides/replacing-github-services": "/de/enterprise-server@3.0/developers/overview/replacing-github-services", - "/de/enterprise/3.0/v3/guides/replacing-github-services": "/de/enterprise-server@3.0/developers/overview/replacing-github-services", - "/de/enterprise/v3/guides/replacing-github-services": "/de/enterprise-server@latest/developers/overview/replacing-github-services", - "/de/enterprise-server@2.20/v3/guides/automating-deployments-to-integrators": "/de/enterprise-server@2.20/developers/overview/replacing-github-services", - "/de/enterprise/2.20/v3/guides/automating-deployments-to-integrators": "/de/enterprise-server@2.20/developers/overview/replacing-github-services", - "/de/enterprise-server@2.20/v3/guides/replacing-github-services": "/de/enterprise-server@2.20/developers/overview/replacing-github-services", - "/de/enterprise/2.20/v3/guides/replacing-github-services": "/de/enterprise-server@2.20/developers/overview/replacing-github-services", - "/de/v3/guides/using-ssh-agent-forwarding": "/de/developers/overview/using-ssh-agent-forwarding", - "/de/free-pro-team@latest/v3/guides/using-ssh-agent-forwarding": "/de/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise-server@3.0/v3/guides/using-ssh-agent-forwarding": "/de/enterprise-server@3.0/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/3.0/v3/guides/using-ssh-agent-forwarding": "/de/enterprise-server@3.0/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/v3/guides/using-ssh-agent-forwarding": "/de/enterprise-server@latest/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise-server@2.20/v3/guides/using-ssh-agent-forwarding": "/de/enterprise-server@2.20/developers/overview/using-ssh-agent-forwarding", - "/de/enterprise/2.20/v3/guides/using-ssh-agent-forwarding": "/de/enterprise-server@2.20/developers/overview/using-ssh-agent-forwarding", - "/de/github-ae@latest/v3/guides/using-ssh-agent-forwarding": "/de/github-ae@latest/developers/overview/using-ssh-agent-forwarding", - "/de/v3/activity/event_types": "/de/developers/webhooks-and-events/github-event-types", - "/de/free-pro-team@latest/v3/activity/event_types": "/de/developers/webhooks-and-events/github-event-types", - "/de/enterprise-server@3.0/v3/activity/event_types": "/de/enterprise-server@3.0/developers/webhooks-and-events/github-event-types", - "/de/enterprise/3.0/v3/activity/event_types": "/de/enterprise-server@3.0/developers/webhooks-and-events/github-event-types", - "/de/enterprise/v3/activity/event_types": "/de/enterprise-server@latest/developers/webhooks-and-events/github-event-types", - "/de/enterprise-server@2.20/v3/activity/event_types": "/de/enterprise-server@2.20/developers/webhooks-and-events/github-event-types", - "/de/enterprise/2.20/v3/activity/event_types": "/de/enterprise-server@2.20/developers/webhooks-and-events/github-event-types", - "/de/github-ae@latest/v3/activity/event_types": "/de/github-ae@latest/developers/webhooks-and-events/github-event-types", - "/de/v3/issues/issue-event-types": "/de/developers/webhooks-and-events/issue-event-types", - "/de/free-pro-team@latest/v3/issues/issue-event-types": "/de/developers/webhooks-and-events/issue-event-types", - "/de/enterprise-server@3.0/v3/issues/issue-event-types": "/de/enterprise-server@3.0/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/3.0/v3/issues/issue-event-types": "/de/enterprise-server@3.0/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/v3/issues/issue-event-types": "/de/enterprise-server@latest/developers/webhooks-and-events/issue-event-types", - "/de/enterprise-server@2.20/v3/issues/issue-event-types": "/de/enterprise-server@2.20/developers/webhooks-and-events/issue-event-types", - "/de/enterprise/2.20/v3/issues/issue-event-types": "/de/enterprise-server@2.20/developers/webhooks-and-events/issue-event-types", - "/de/github-ae@latest/v3/issues/issue-event-types": "/de/github-ae@latest/developers/webhooks-and-events/issue-event-types", - "/de/v3/activity/events/types": "/de/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/free-pro-team@latest/v3/activity/events/types": "/de/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise-server@3.0/v3/activity/events/types": "/de/enterprise-server@3.0/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/3.0/v3/activity/events/types": "/de/enterprise-server@3.0/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/v3/activity/events/types": "/de/enterprise-server@latest/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise-server@2.20/v3/activity/events/types": "/de/enterprise-server@2.20/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/enterprise/2.20/v3/activity/events/types": "/de/enterprise-server@2.20/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/github-ae@latest/v3/activity/events/types": "/de/github-ae@latest/developers/webhooks-and-events/webhook-events-and-payloads", - "/de/articles/restoring-branches-in-a-pull-request": "/de/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/free-pro-team@latest/articles/restoring-branches-in-a-pull-request": "/de/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise-server@3.0/articles/restoring-branches-in-a-pull-request": "/de/enterprise-server@3.0/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/3.0/articles/restoring-branches-in-a-pull-request": "/de/enterprise-server@3.0/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/articles/restoring-branches-in-a-pull-request": "/de/enterprise-server@3.0/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise-server@2.20/articles/restoring-branches-in-a-pull-request": "/de/enterprise-server@2.20/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/enterprise/2.20/articles/restoring-branches-in-a-pull-request": "/de/enterprise-server@2.20/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/github-ae@latest/articles/restoring-branches-in-a-pull-request": "/de/github-ae@latest/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request", - "/de/free-pro-team@latest/github/administering-a-repository/restoring-a-deleted-repository": "/de/github/administering-a-repository/restoring-a-deleted-repository", - "/de/articles/restoring-a-deleted-repository": "/de/github/administering-a-repository/restoring-a-deleted-repository", - "/de/free-pro-team@latest/articles/restoring-a-deleted-repository": "/de/github/administering-a-repository/restoring-a-deleted-repository", - "/de/free-pro-team@latest/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data", - "/de/articles/restricting-access-to-your-organization-s-data": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data", - "/de/free-pro-team@latest/articles/restricting-access-to-your-organization-s-data": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data", - "/de/articles/restricting-access-to-your-organizations-data": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data", - "/de/free-pro-team@latest/articles/restricting-access-to-your-organizations-data": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-access-to-your-organizations-data", - "/de/free-pro-team@latest/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain", - "/de/articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain", - "/de/free-pro-team@latest/articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain", - "/de/articles/restricting-email-notifications-to-an-approved-domain": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain", - "/de/free-pro-team@latest/articles/restricting-email-notifications-to-an-approved-domain": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain", - "/de/free-pro-team@latest/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/articles/restricting-repository-creation-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/free-pro-team@latest/articles/restricting-repository-creation-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/3.0/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise-server@3.0/articles/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/3.0/articles/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/articles/restricting-repository-creation-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.20/user/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise-server@2.20/articles/restricting-repository-creation-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/enterprise/2.20/articles/restricting-repository-creation-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/github-ae@latest/articles/restricting-repository-creation-in-your-organization": "/de/github-ae@latest/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization", - "/de/free-pro-team@latest/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/articles/restricting-repository-visibility-changes-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/free-pro-team@latest/articles/restricting-repository-visibility-changes-in-your-organization": "/de/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/3.0/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise-server@3.0/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/3.0/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.20/user/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise-server@2.20/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/enterprise/2.20/articles/restricting-repository-visibility-changes-in-your-organization": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/github-ae@latest/articles/restricting-repository-visibility-changes-in-your-organization": "/de/github-ae@latest/github/setting-up-and-managing-organizations-and-teams/restricting-repository-visibility-changes-in-your-organization", - "/de/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/free-pro-team@latest/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise-server@3.0/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/3.0/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/enterprise-server@3.0/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise-server@2.20/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/enterprise/2.20/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/enterprise-server@2.20/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/github-ae@latest/articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories": "/de/github-ae@latest/github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators", - "/de/free-pro-team@latest/github/setting-up-and-managing-your-enterprise/restricting-email-notifications-for-your-enterprise-account-to-approved-domains": "/de/github/setting-up-and-managing-your-enterprise/restricting-email-notifications-for-your-enterprise-account-to-approved-domains", - "/de/free-pro-team@latest/graphql/guides/forming-calls-with-graphql": "/de/graphql/guides/forming-calls-with-graphql", - "/de/v4/guides/forming-calls": "/de/graphql/guides/forming-calls-with-graphql", - "/de/free-pro-team@latest/v4/guides/forming-calls": "/de/graphql/guides/forming-calls-with-graphql", - "/de/graphql/guides/forming-calls": "/de/graphql/guides/forming-calls-with-graphql", - "/de/free-pro-team@latest/graphql/guides/forming-calls": "/de/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/3.0/graphql/guides/forming-calls-with-graphql": "/de/enterprise-server@3.0/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/graphql/guides/forming-calls-with-graphql": "/de/enterprise-server@latest/graphql/guides/forming-calls-with-graphql", - "/de/enterprise-server@3.0/v4/guides/forming-calls": "/de/enterprise-server@3.0/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/3.0/v4/guides/forming-calls": "/de/enterprise-server@3.0/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/v4/guides/forming-calls": "/de/enterprise-server@latest/graphql/guides/forming-calls-with-graphql", - "/de/enterprise-server@3.0/graphql/guides/forming-calls": "/de/enterprise-server@3.0/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/3.0/graphql/guides/forming-calls": "/de/enterprise-server@3.0/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/graphql/guides/forming-calls": "/de/enterprise-server@latest/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.20/graphql/guides/forming-calls-with-graphql": "/de/enterprise-server@2.20/graphql/guides/forming-calls-with-graphql", - "/de/enterprise-server@2.20/v4/guides/forming-calls": "/de/enterprise-server@2.20/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.20/v4/guides/forming-calls": "/de/enterprise-server@2.20/graphql/guides/forming-calls-with-graphql", - "/de/enterprise-server@2.20/graphql/guides/forming-calls": "/de/enterprise-server@2.20/graphql/guides/forming-calls-with-graphql", - "/de/enterprise/2.20/graphql/guides/forming-calls": "/de/enterprise-server@2.20/graphql/guides/forming-calls-with-graphql", - "/de/github-ae@latest/v4/guides/forming-calls": "/de/github-ae@latest/graphql/guides/forming-calls-with-graphql", - "/de/github-ae@latest/graphql/guides/forming-calls": "/de/github-ae@latest/graphql/guides/forming-calls-with-graphql", - "/de/free-pro-team@latest/graphql/guides": "/de/graphql/guides", - "/de/v4/guides": "/de/graphql/guides", - "/de/free-pro-team@latest/v4/guides": "/de/graphql/guides", - "/de/enterprise/3.0/graphql/guides": "/de/enterprise-server@3.0/graphql/guides", - "/de/enterprise/graphql/guides": "/de/enterprise-server@latest/graphql/guides", - "/de/enterprise-server@3.0/v4/guides": "/de/enterprise-server@3.0/graphql/guides", - "/de/enterprise/3.0/v4/guides": "/de/enterprise-server@3.0/graphql/guides", - "/de/enterprise/v4/guides": "/de/enterprise-server@latest/graphql/guides", - "/de/enterprise/2.20/graphql/guides": "/de/enterprise-server@2.20/graphql/guides", - "/de/enterprise-server@2.20/v4/guides": "/de/enterprise-server@2.20/graphql/guides", - "/de/enterprise/2.20/v4/guides": "/de/enterprise-server@2.20/graphql/guides", - "/de/github-ae@latest/v4/guides": "/de/github-ae@latest/graphql/guides", - "/de/free-pro-team@latest/graphql/guides/introduction-to-graphql": "/de/graphql/guides/introduction-to-graphql", - "/de/v4/guides/intro-to-graphql": "/de/graphql/guides/introduction-to-graphql", - "/de/free-pro-team@latest/v4/guides/intro-to-graphql": "/de/graphql/guides/introduction-to-graphql", - "/de/graphql/guides/intro-to-graphql": "/de/graphql/guides/introduction-to-graphql", - "/de/free-pro-team@latest/graphql/guides/intro-to-graphql": "/de/graphql/guides/introduction-to-graphql", - "/de/enterprise/3.0/graphql/guides/introduction-to-graphql": "/de/enterprise-server@3.0/graphql/guides/introduction-to-graphql", - "/de/enterprise/graphql/guides/introduction-to-graphql": "/de/enterprise-server@latest/graphql/guides/introduction-to-graphql", - "/de/enterprise-server@3.0/v4/guides/intro-to-graphql": "/de/enterprise-server@3.0/graphql/guides/introduction-to-graphql", - "/de/enterprise/3.0/v4/guides/intro-to-graphql": "/de/enterprise-server@3.0/graphql/guides/introduction-to-graphql", - "/de/enterprise/v4/guides/intro-to-graphql": "/de/enterprise-server@latest/graphql/guides/introduction-to-graphql", - "/de/enterprise-server@3.0/graphql/guides/intro-to-graphql": "/de/enterprise-server@3.0/graphql/guides/introduction-to-graphql", - "/de/enterprise/3.0/graphql/guides/intro-to-graphql": "/de/enterprise-server@3.0/graphql/guides/introduction-to-graphql", - "/de/enterprise/graphql/guides/intro-to-graphql": "/de/enterprise-server@latest/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.20/graphql/guides/introduction-to-graphql": "/de/enterprise-server@2.20/graphql/guides/introduction-to-graphql", - "/de/enterprise-server@2.20/v4/guides/intro-to-graphql": "/de/enterprise-server@2.20/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.20/v4/guides/intro-to-graphql": "/de/enterprise-server@2.20/graphql/guides/introduction-to-graphql", - "/de/enterprise-server@2.20/graphql/guides/intro-to-graphql": "/de/enterprise-server@2.20/graphql/guides/introduction-to-graphql", - "/de/enterprise/2.20/graphql/guides/intro-to-graphql": "/de/enterprise-server@2.20/graphql/guides/introduction-to-graphql", - "/de/github-ae@latest/v4/guides/intro-to-graphql": "/de/github-ae@latest/graphql/guides/introduction-to-graphql", - "/de/github-ae@latest/graphql/guides/intro-to-graphql": "/de/github-ae@latest/graphql/guides/introduction-to-graphql", - "/de/free-pro-team@latest/graphql/guides/managing-enterprise-accounts": "/de/graphql/guides/managing-enterprise-accounts", - "/de/v4/guides/managing-enterprise-accounts": "/de/graphql/guides/managing-enterprise-accounts", - "/de/free-pro-team@latest/v4/guides/managing-enterprise-accounts": "/de/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/3.0/graphql/guides/managing-enterprise-accounts": "/de/enterprise-server@3.0/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/graphql/guides/managing-enterprise-accounts": "/de/enterprise-server@latest/graphql/guides/managing-enterprise-accounts", - "/de/enterprise-server@3.0/v4/guides/managing-enterprise-accounts": "/de/enterprise-server@3.0/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/3.0/v4/guides/managing-enterprise-accounts": "/de/enterprise-server@3.0/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/v4/guides/managing-enterprise-accounts": "/de/enterprise-server@latest/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.20/graphql/guides/managing-enterprise-accounts": "/de/enterprise-server@2.20/graphql/guides/managing-enterprise-accounts", - "/de/enterprise-server@2.20/v4/guides/managing-enterprise-accounts": "/de/enterprise-server@2.20/graphql/guides/managing-enterprise-accounts", - "/de/enterprise/2.20/v4/guides/managing-enterprise-accounts": "/de/enterprise-server@2.20/graphql/guides/managing-enterprise-accounts", - "/de/github-ae@latest/v4/guides/managing-enterprise-accounts": "/de/github-ae@latest/graphql/guides/managing-enterprise-accounts", - "/de/free-pro-team@latest/graphql/guides/migrating-from-rest-to-graphql": "/de/graphql/guides/migrating-from-rest-to-graphql", - "/de/v4/guides/migrating-from-rest": "/de/graphql/guides/migrating-from-rest-to-graphql", - "/de/free-pro-team@latest/v4/guides/migrating-from-rest": "/de/graphql/guides/migrating-from-rest-to-graphql", - "/de/graphql/guides/migrating-from-rest": "/de/graphql/guides/migrating-from-rest-to-graphql", - "/de/free-pro-team@latest/graphql/guides/migrating-from-rest": "/de/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/3.0/graphql/guides/migrating-from-rest-to-graphql": "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/graphql/guides/migrating-from-rest-to-graphql": "/de/enterprise-server@latest/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise-server@3.0/v4/guides/migrating-from-rest": "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/3.0/v4/guides/migrating-from-rest": "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/v4/guides/migrating-from-rest": "/de/enterprise-server@latest/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest": "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/3.0/graphql/guides/migrating-from-rest": "/de/enterprise-server@3.0/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/graphql/guides/migrating-from-rest": "/de/enterprise-server@latest/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.20/graphql/guides/migrating-from-rest-to-graphql": "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise-server@2.20/v4/guides/migrating-from-rest": "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.20/v4/guides/migrating-from-rest": "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest": "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest-to-graphql", - "/de/enterprise/2.20/graphql/guides/migrating-from-rest": "/de/enterprise-server@2.20/graphql/guides/migrating-from-rest-to-graphql", - "/de/github-ae@latest/v4/guides/migrating-from-rest": "/de/github-ae@latest/graphql/guides/migrating-from-rest-to-graphql", - "/de/github-ae@latest/graphql/guides/migrating-from-rest": "/de/github-ae@latest/graphql/guides/migrating-from-rest-to-graphql", - "/de/free-pro-team@latest/graphql/guides/using-global-node-ids": "/de/graphql/guides/using-global-node-ids", - "/de/v4/guides/using-global-node-ids": "/de/graphql/guides/using-global-node-ids", - "/de/free-pro-team@latest/v4/guides/using-global-node-ids": "/de/graphql/guides/using-global-node-ids", - "/de/enterprise/3.0/graphql/guides/using-global-node-ids": "/de/enterprise-server@3.0/graphql/guides/using-global-node-ids", - "/de/enterprise/graphql/guides/using-global-node-ids": "/de/enterprise-server@latest/graphql/guides/using-global-node-ids", - "/de/enterprise-server@3.0/v4/guides/using-global-node-ids": "/de/enterprise-server@3.0/graphql/guides/using-global-node-ids", - "/de/enterprise/3.0/v4/guides/using-global-node-ids": "/de/enterprise-server@3.0/graphql/guides/using-global-node-ids", - "/de/enterprise/v4/guides/using-global-node-ids": "/de/enterprise-server@latest/graphql/guides/using-global-node-ids", - "/de/enterprise/2.20/graphql/guides/using-global-node-ids": "/de/enterprise-server@2.20/graphql/guides/using-global-node-ids", - "/de/enterprise-server@2.20/v4/guides/using-global-node-ids": "/de/enterprise-server@2.20/graphql/guides/using-global-node-ids", - "/de/enterprise/2.20/v4/guides/using-global-node-ids": "/de/enterprise-server@2.20/graphql/guides/using-global-node-ids", - "/de/github-ae@latest/v4/guides/using-global-node-ids": "/de/github-ae@latest/graphql/guides/using-global-node-ids", - "/de/free-pro-team@latest/graphql/guides/using-the-explorer": "/de/graphql/guides/using-the-explorer", - "/de/v4/guides/using-the-explorer": "/de/graphql/guides/using-the-explorer", - "/de/free-pro-team@latest/v4/guides/using-the-explorer": "/de/graphql/guides/using-the-explorer", - "/de/enterprise/3.0/graphql/guides/using-the-explorer": "/de/enterprise-server@3.0/graphql/guides/using-the-explorer", - "/de/enterprise/graphql/guides/using-the-explorer": "/de/enterprise-server@latest/graphql/guides/using-the-explorer", - "/de/enterprise-server@3.0/v4/guides/using-the-explorer": "/de/enterprise-server@3.0/graphql/guides/using-the-explorer", - "/de/enterprise/3.0/v4/guides/using-the-explorer": "/de/enterprise-server@3.0/graphql/guides/using-the-explorer", - "/de/enterprise/v4/guides/using-the-explorer": "/de/enterprise-server@latest/graphql/guides/using-the-explorer", - "/de/enterprise/2.20/graphql/guides/using-the-explorer": "/de/enterprise-server@2.20/graphql/guides/using-the-explorer", - "/de/enterprise-server@2.20/v4/guides/using-the-explorer": "/de/enterprise-server@2.20/graphql/guides/using-the-explorer", - "/de/enterprise/2.20/v4/guides/using-the-explorer": "/de/enterprise-server@2.20/graphql/guides/using-the-explorer", - "/de/github-ae@latest/v4/guides/using-the-explorer": "/de/github-ae@latest/graphql/guides/using-the-explorer", - "/de/free-pro-team@latest/graphql": "/de/graphql", - "/de/v4": "/de/graphql", - "/de/free-pro-team@latest/v4": "/de/graphql", - "/de/enterprise/3.0/graphql": "/de/enterprise-server@3.0/graphql", - "/de/enterprise/graphql": "/de/enterprise-server@latest/graphql", - "/de/enterprise-server@3.0/v4": "/de/enterprise-server@3.0/graphql", - "/de/enterprise/3.0/v4": "/de/enterprise-server@3.0/graphql", - "/de/enterprise/v4": "/de/enterprise-server@latest/graphql", - "/de/enterprise/2.20/graphql": "/de/enterprise-server@2.20/graphql", - "/de/enterprise-server@2.20/v4": "/de/enterprise-server@2.20/graphql", - "/de/enterprise/2.20/v4": "/de/enterprise-server@2.20/graphql", - "/de/github-ae@latest/v4": "/de/github-ae@latest/graphql", - "/de/free-pro-team@latest/graphql/overview/about-the-graphql-api": "/de/graphql/overview/about-the-graphql-api", - "/de/enterprise/3.0/graphql/overview/about-the-graphql-api": "/de/enterprise-server@3.0/graphql/overview/about-the-graphql-api", - "/de/enterprise/graphql/overview/about-the-graphql-api": "/de/enterprise-server@latest/graphql/overview/about-the-graphql-api", - "/de/enterprise/2.20/graphql/overview/about-the-graphql-api": "/de/enterprise-server@2.20/graphql/overview/about-the-graphql-api", - "/de/free-pro-team@latest/graphql/overview/breaking-changes": "/de/graphql/overview/breaking-changes", - "/de/v4/breaking_changes": "/de/graphql/overview/breaking-changes", - "/de/free-pro-team@latest/v4/breaking_changes": "/de/graphql/overview/breaking-changes", - "/de/enterprise/3.0/graphql/overview/breaking-changes": "/de/enterprise-server@3.0/graphql/overview/breaking-changes", - "/de/enterprise/graphql/overview/breaking-changes": "/de/enterprise-server@latest/graphql/overview/breaking-changes", - "/de/enterprise-server@3.0/v4/breaking_changes": "/de/enterprise-server@3.0/graphql/overview/breaking-changes", - "/de/enterprise/3.0/v4/breaking_changes": "/de/enterprise-server@3.0/graphql/overview/breaking-changes", - "/de/enterprise/v4/breaking_changes": "/de/enterprise-server@latest/graphql/overview/breaking-changes", - "/de/enterprise/2.20/graphql/overview/breaking-changes": "/de/enterprise-server@2.20/graphql/overview/breaking-changes", - "/de/enterprise-server@2.20/v4/breaking_changes": "/de/enterprise-server@2.20/graphql/overview/breaking-changes", - "/de/enterprise/2.20/v4/breaking_changes": "/de/enterprise-server@2.20/graphql/overview/breaking-changes", - "/de/github-ae@latest/v4/breaking_changes": "/de/github-ae@latest/graphql/overview/breaking-changes", - "/de/free-pro-team@latest/graphql/overview/changelog": "/de/graphql/overview/changelog", - "/de/v4/changelog": "/de/graphql/overview/changelog", - "/de/free-pro-team@latest/v4/changelog": "/de/graphql/overview/changelog", - "/de/enterprise/3.0/graphql/overview/changelog": "/de/enterprise-server@3.0/graphql/overview/changelog", - "/de/enterprise/graphql/overview/changelog": "/de/enterprise-server@latest/graphql/overview/changelog", - "/de/enterprise-server@3.0/v4/changelog": "/de/enterprise-server@3.0/graphql/overview/changelog", - "/de/enterprise/3.0/v4/changelog": "/de/enterprise-server@3.0/graphql/overview/changelog", - "/de/enterprise/v4/changelog": "/de/enterprise-server@latest/graphql/overview/changelog", - "/de/enterprise/2.20/graphql/overview/changelog": "/de/enterprise-server@2.20/graphql/overview/changelog", - "/de/enterprise-server@2.20/v4/changelog": "/de/enterprise-server@2.20/graphql/overview/changelog", - "/de/enterprise/2.20/v4/changelog": "/de/enterprise-server@2.20/graphql/overview/changelog", - "/de/github-ae@latest/v4/changelog": "/de/github-ae@latest/graphql/overview/changelog", - "/de/free-pro-team@latest/graphql/overview/explorer": "/de/graphql/overview/explorer", - "/de/v4/explorer": "/de/graphql/overview/explorer", - "/de/free-pro-team@latest/v4/explorer": "/de/graphql/overview/explorer", - "/de/v4/explorer-new": "/de/graphql/overview/explorer", - "/de/free-pro-team@latest/v4/explorer-new": "/de/graphql/overview/explorer", - "/de/enterprise/3.0/graphql/overview/explorer": "/de/enterprise-server@3.0/graphql/overview/explorer", - "/de/enterprise/graphql/overview/explorer": "/de/enterprise-server@latest/graphql/overview/explorer", - "/de/enterprise-server@3.0/v4/explorer": "/de/enterprise-server@3.0/graphql/overview/explorer", - "/de/enterprise/3.0/v4/explorer": "/de/enterprise-server@3.0/graphql/overview/explorer", - "/de/enterprise/v4/explorer": "/de/enterprise-server@latest/graphql/overview/explorer", - "/de/enterprise-server@3.0/v4/explorer-new": "/de/enterprise-server@3.0/graphql/overview/explorer", - "/de/enterprise/3.0/v4/explorer-new": "/de/enterprise-server@3.0/graphql/overview/explorer", - "/de/enterprise/v4/explorer-new": "/de/enterprise-server@latest/graphql/overview/explorer", - "/de/enterprise/2.20/graphql/overview/explorer": "/de/enterprise-server@2.20/graphql/overview/explorer", - "/de/enterprise-server@2.20/v4/explorer": "/de/enterprise-server@2.20/graphql/overview/explorer", - "/de/enterprise/2.20/v4/explorer": "/de/enterprise-server@2.20/graphql/overview/explorer", - "/de/enterprise-server@2.20/v4/explorer-new": "/de/enterprise-server@2.20/graphql/overview/explorer", - "/de/enterprise/2.20/v4/explorer-new": "/de/enterprise-server@2.20/graphql/overview/explorer", - "/de/github-ae@latest/v4/explorer": "/de/github-ae@latest/graphql/overview/explorer", - "/de/github-ae@latest/v4/explorer-new": "/de/github-ae@latest/graphql/overview/explorer", - "/de/free-pro-team@latest/graphql/overview": "/de/graphql/overview", - "/de/enterprise/3.0/graphql/overview": "/de/enterprise-server@3.0/graphql/overview", - "/de/enterprise/graphql/overview": "/de/enterprise-server@latest/graphql/overview", - "/de/enterprise/2.20/graphql/overview": "/de/enterprise-server@2.20/graphql/overview", - "/de/free-pro-team@latest/graphql/overview/public-schema": "/de/graphql/overview/public-schema", - "/de/v4/public_schema": "/de/graphql/overview/public-schema", - "/de/free-pro-team@latest/v4/public_schema": "/de/graphql/overview/public-schema", - "/de/enterprise/3.0/graphql/overview/public-schema": "/de/enterprise-server@3.0/graphql/overview/public-schema", - "/de/enterprise/graphql/overview/public-schema": "/de/enterprise-server@latest/graphql/overview/public-schema", - "/de/enterprise-server@3.0/v4/public_schema": "/de/enterprise-server@3.0/graphql/overview/public-schema", - "/de/enterprise/3.0/v4/public_schema": "/de/enterprise-server@3.0/graphql/overview/public-schema", - "/de/enterprise/v4/public_schema": "/de/enterprise-server@latest/graphql/overview/public-schema", - "/de/enterprise/2.20/graphql/overview/public-schema": "/de/enterprise-server@2.20/graphql/overview/public-schema", - "/de/enterprise-server@2.20/v4/public_schema": "/de/enterprise-server@2.20/graphql/overview/public-schema", - "/de/enterprise/2.20/v4/public_schema": "/de/enterprise-server@2.20/graphql/overview/public-schema", - "/de/github-ae@latest/v4/public_schema": "/de/github-ae@latest/graphql/overview/public-schema", - "/de/free-pro-team@latest/graphql/overview/resource-limitations": "/de/graphql/overview/resource-limitations", - "/de/v4/guides/resource-limitations": "/de/graphql/overview/resource-limitations", - "/de/free-pro-team@latest/v4/guides/resource-limitations": "/de/graphql/overview/resource-limitations", - "/de/enterprise/3.0/graphql/overview/resource-limitations": "/de/enterprise-server@3.0/graphql/overview/resource-limitations", - "/de/enterprise/graphql/overview/resource-limitations": "/de/enterprise-server@latest/graphql/overview/resource-limitations", - "/de/enterprise-server@3.0/v4/guides/resource-limitations": "/de/enterprise-server@3.0/graphql/overview/resource-limitations", - "/de/enterprise/3.0/v4/guides/resource-limitations": "/de/enterprise-server@3.0/graphql/overview/resource-limitations", - "/de/enterprise/v4/guides/resource-limitations": "/de/enterprise-server@latest/graphql/overview/resource-limitations", - "/de/enterprise/2.20/graphql/overview/resource-limitations": "/de/enterprise-server@2.20/graphql/overview/resource-limitations", - "/de/enterprise-server@2.20/v4/guides/resource-limitations": "/de/enterprise-server@2.20/graphql/overview/resource-limitations", - "/de/enterprise/2.20/v4/guides/resource-limitations": "/de/enterprise-server@2.20/graphql/overview/resource-limitations", - "/de/github-ae@latest/v4/guides/resource-limitations": "/de/github-ae@latest/graphql/overview/resource-limitations", - "/de/free-pro-team@latest/graphql/overview/schema-previews": "/de/graphql/overview/schema-previews", - "/de/v4/previews": "/de/graphql/overview/schema-previews", - "/de/free-pro-team@latest/v4/previews": "/de/graphql/overview/schema-previews", - "/de/enterprise/3.0/graphql/overview/schema-previews": "/de/enterprise-server@3.0/graphql/overview/schema-previews", - "/de/enterprise/graphql/overview/schema-previews": "/de/enterprise-server@latest/graphql/overview/schema-previews", - "/de/enterprise-server@3.0/v4/previews": "/de/enterprise-server@3.0/graphql/overview/schema-previews", - "/de/enterprise/3.0/v4/previews": "/de/enterprise-server@3.0/graphql/overview/schema-previews", - "/de/enterprise/v4/previews": "/de/enterprise-server@latest/graphql/overview/schema-previews", - "/de/enterprise/2.20/graphql/overview/schema-previews": "/de/enterprise-server@2.20/graphql/overview/schema-previews", - "/de/enterprise-server@2.20/v4/previews": "/de/enterprise-server@2.20/graphql/overview/schema-previews", - "/de/enterprise/2.20/v4/previews": "/de/enterprise-server@2.20/graphql/overview/schema-previews", - "/de/github-ae@latest/v4/previews": "/de/github-ae@latest/graphql/overview/schema-previews", - "/de/free-pro-team@latest/graphql/reference/enums": "/de/graphql/reference/enums", - "/de/v4/enum": "/de/graphql/reference/enums", - "/de/free-pro-team@latest/v4/enum": "/de/graphql/reference/enums", - "/de/v4/reference/enum": "/de/graphql/reference/enums", - "/de/free-pro-team@latest/v4/reference/enum": "/de/graphql/reference/enums", - "/de/enterprise/3.0/graphql/reference/enums": "/de/enterprise-server@3.0/graphql/reference/enums", - "/de/enterprise/graphql/reference/enums": "/de/enterprise-server@latest/graphql/reference/enums", - "/de/enterprise-server@3.0/v4/enum": "/de/enterprise-server@3.0/graphql/reference/enums", - "/de/enterprise/3.0/v4/enum": "/de/enterprise-server@3.0/graphql/reference/enums", - "/de/enterprise/v4/enum": "/de/enterprise-server@latest/graphql/reference/enums", - "/de/enterprise-server@3.0/v4/reference/enum": "/de/enterprise-server@3.0/graphql/reference/enums", - "/de/enterprise/3.0/v4/reference/enum": "/de/enterprise-server@3.0/graphql/reference/enums", - "/de/enterprise/v4/reference/enum": "/de/enterprise-server@latest/graphql/reference/enums", - "/de/enterprise/2.20/graphql/reference/enums": "/de/enterprise-server@2.20/graphql/reference/enums", - "/de/enterprise-server@2.20/v4/enum": "/de/enterprise-server@2.20/graphql/reference/enums", - "/de/enterprise/2.20/v4/enum": "/de/enterprise-server@2.20/graphql/reference/enums", - "/de/enterprise-server@2.20/v4/reference/enum": "/de/enterprise-server@2.20/graphql/reference/enums", - "/de/enterprise/2.20/v4/reference/enum": "/de/enterprise-server@2.20/graphql/reference/enums", - "/de/github-ae@latest/v4/enum": "/de/github-ae@latest/graphql/reference/enums", - "/de/github-ae@latest/v4/reference/enum": "/de/github-ae@latest/graphql/reference/enums", - "/de/free-pro-team@latest/graphql/reference": "/de/graphql/reference", - "/de/v4/reference": "/de/graphql/reference", - "/de/free-pro-team@latest/v4/reference": "/de/graphql/reference", - "/de/enterprise/3.0/graphql/reference": "/de/enterprise-server@3.0/graphql/reference", - "/de/enterprise/graphql/reference": "/de/enterprise-server@latest/graphql/reference", - "/de/enterprise-server@3.0/v4/reference": "/de/enterprise-server@3.0/graphql/reference", - "/de/enterprise/3.0/v4/reference": "/de/enterprise-server@3.0/graphql/reference", - "/de/enterprise/v4/reference": "/de/enterprise-server@latest/graphql/reference", - "/de/enterprise/2.20/graphql/reference": "/de/enterprise-server@2.20/graphql/reference", - "/de/enterprise-server@2.20/v4/reference": "/de/enterprise-server@2.20/graphql/reference", - "/de/enterprise/2.20/v4/reference": "/de/enterprise-server@2.20/graphql/reference", - "/de/github-ae@latest/v4/reference": "/de/github-ae@latest/graphql/reference", - "/de/free-pro-team@latest/graphql/reference/input-objects": "/de/graphql/reference/input-objects", - "/de/v4/input_object": "/de/graphql/reference/input-objects", - "/de/free-pro-team@latest/v4/input_object": "/de/graphql/reference/input-objects", - "/de/v4/reference/input_object": "/de/graphql/reference/input-objects", - "/de/free-pro-team@latest/v4/reference/input_object": "/de/graphql/reference/input-objects", - "/de/enterprise/3.0/graphql/reference/input-objects": "/de/enterprise-server@3.0/graphql/reference/input-objects", - "/de/enterprise/graphql/reference/input-objects": "/de/enterprise-server@latest/graphql/reference/input-objects", - "/de/enterprise-server@3.0/v4/input_object": "/de/enterprise-server@3.0/graphql/reference/input-objects", - "/de/enterprise/3.0/v4/input_object": "/de/enterprise-server@3.0/graphql/reference/input-objects", - "/de/enterprise/v4/input_object": "/de/enterprise-server@latest/graphql/reference/input-objects", - "/de/enterprise-server@3.0/v4/reference/input_object": "/de/enterprise-server@3.0/graphql/reference/input-objects", - "/de/enterprise/3.0/v4/reference/input_object": "/de/enterprise-server@3.0/graphql/reference/input-objects", - "/de/enterprise/v4/reference/input_object": "/de/enterprise-server@latest/graphql/reference/input-objects", - "/de/enterprise/2.20/graphql/reference/input-objects": "/de/enterprise-server@2.20/graphql/reference/input-objects", - "/de/enterprise-server@2.20/v4/input_object": "/de/enterprise-server@2.20/graphql/reference/input-objects", - "/de/enterprise/2.20/v4/input_object": "/de/enterprise-server@2.20/graphql/reference/input-objects", - "/de/enterprise-server@2.20/v4/reference/input_object": "/de/enterprise-server@2.20/graphql/reference/input-objects", - "/de/enterprise/2.20/v4/reference/input_object": "/de/enterprise-server@2.20/graphql/reference/input-objects", - "/de/github-ae@latest/v4/input_object": "/de/github-ae@latest/graphql/reference/input-objects", - "/de/github-ae@latest/v4/reference/input_object": "/de/github-ae@latest/graphql/reference/input-objects", - "/de/free-pro-team@latest/graphql/reference/interfaces": "/de/graphql/reference/interfaces", - "/de/v4/interface": "/de/graphql/reference/interfaces", - "/de/free-pro-team@latest/v4/interface": "/de/graphql/reference/interfaces", - "/de/v4/reference/interface": "/de/graphql/reference/interfaces", - "/de/free-pro-team@latest/v4/reference/interface": "/de/graphql/reference/interfaces", - "/de/enterprise/3.0/graphql/reference/interfaces": "/de/enterprise-server@3.0/graphql/reference/interfaces", - "/de/enterprise/graphql/reference/interfaces": "/de/enterprise-server@latest/graphql/reference/interfaces", - "/de/enterprise-server@3.0/v4/interface": "/de/enterprise-server@3.0/graphql/reference/interfaces", - "/de/enterprise/3.0/v4/interface": "/de/enterprise-server@3.0/graphql/reference/interfaces", - "/de/enterprise/v4/interface": "/de/enterprise-server@latest/graphql/reference/interfaces", - "/de/enterprise-server@3.0/v4/reference/interface": "/de/enterprise-server@3.0/graphql/reference/interfaces", - "/de/enterprise/3.0/v4/reference/interface": "/de/enterprise-server@3.0/graphql/reference/interfaces", - "/de/enterprise/v4/reference/interface": "/de/enterprise-server@latest/graphql/reference/interfaces", - "/de/enterprise/2.20/graphql/reference/interfaces": "/de/enterprise-server@2.20/graphql/reference/interfaces", - "/de/enterprise-server@2.20/v4/interface": "/de/enterprise-server@2.20/graphql/reference/interfaces", - "/de/enterprise/2.20/v4/interface": "/de/enterprise-server@2.20/graphql/reference/interfaces", - "/de/enterprise-server@2.20/v4/reference/interface": "/de/enterprise-server@2.20/graphql/reference/interfaces", - "/de/enterprise/2.20/v4/reference/interface": "/de/enterprise-server@2.20/graphql/reference/interfaces", - "/de/github-ae@latest/v4/interface": "/de/github-ae@latest/graphql/reference/interfaces", - "/de/github-ae@latest/v4/reference/interface": "/de/github-ae@latest/graphql/reference/interfaces", - "/de/free-pro-team@latest/graphql/reference/mutations": "/de/graphql/reference/mutations", - "/de/v4/mutation": "/de/graphql/reference/mutations", - "/de/free-pro-team@latest/v4/mutation": "/de/graphql/reference/mutations", - "/de/v4/reference/mutation": "/de/graphql/reference/mutations", - "/de/free-pro-team@latest/v4/reference/mutation": "/de/graphql/reference/mutations", - "/de/enterprise/3.0/graphql/reference/mutations": "/de/enterprise-server@3.0/graphql/reference/mutations", - "/de/enterprise/graphql/reference/mutations": "/de/enterprise-server@latest/graphql/reference/mutations", - "/de/enterprise-server@3.0/v4/mutation": "/de/enterprise-server@3.0/graphql/reference/mutations", - "/de/enterprise/3.0/v4/mutation": "/de/enterprise-server@3.0/graphql/reference/mutations", - "/de/enterprise/v4/mutation": "/de/enterprise-server@latest/graphql/reference/mutations", - "/de/enterprise-server@3.0/v4/reference/mutation": "/de/enterprise-server@3.0/graphql/reference/mutations", - "/de/enterprise/3.0/v4/reference/mutation": "/de/enterprise-server@3.0/graphql/reference/mutations", - "/de/enterprise/v4/reference/mutation": "/de/enterprise-server@latest/graphql/reference/mutations", - "/de/enterprise/2.20/graphql/reference/mutations": "/de/enterprise-server@2.20/graphql/reference/mutations", - "/de/enterprise-server@2.20/v4/mutation": "/de/enterprise-server@2.20/graphql/reference/mutations", - "/de/enterprise/2.20/v4/mutation": "/de/enterprise-server@2.20/graphql/reference/mutations", - "/de/enterprise-server@2.20/v4/reference/mutation": "/de/enterprise-server@2.20/graphql/reference/mutations", - "/de/enterprise/2.20/v4/reference/mutation": "/de/enterprise-server@2.20/graphql/reference/mutations", - "/de/github-ae@latest/v4/mutation": "/de/github-ae@latest/graphql/reference/mutations", - "/de/github-ae@latest/v4/reference/mutation": "/de/github-ae@latest/graphql/reference/mutations", - "/de/free-pro-team@latest/graphql/reference/objects": "/de/graphql/reference/objects", - "/de/v4/object": "/de/graphql/reference/objects", - "/de/free-pro-team@latest/v4/object": "/de/graphql/reference/objects", - "/de/v4/reference/object": "/de/graphql/reference/objects", - "/de/free-pro-team@latest/v4/reference/object": "/de/graphql/reference/objects", - "/de/enterprise/3.0/graphql/reference/objects": "/de/enterprise-server@3.0/graphql/reference/objects", - "/de/enterprise/graphql/reference/objects": "/de/enterprise-server@latest/graphql/reference/objects", - "/de/enterprise-server@3.0/v4/object": "/de/enterprise-server@3.0/graphql/reference/objects", - "/de/enterprise/3.0/v4/object": "/de/enterprise-server@3.0/graphql/reference/objects", - "/de/enterprise/v4/object": "/de/enterprise-server@latest/graphql/reference/objects", - "/de/enterprise-server@3.0/v4/reference/object": "/de/enterprise-server@3.0/graphql/reference/objects", - "/de/enterprise/3.0/v4/reference/object": "/de/enterprise-server@3.0/graphql/reference/objects", - "/de/enterprise/v4/reference/object": "/de/enterprise-server@latest/graphql/reference/objects", - "/de/enterprise/2.20/graphql/reference/objects": "/de/enterprise-server@2.20/graphql/reference/objects", - "/de/enterprise-server@2.20/v4/object": "/de/enterprise-server@2.20/graphql/reference/objects", - "/de/enterprise/2.20/v4/object": "/de/enterprise-server@2.20/graphql/reference/objects", - "/de/enterprise-server@2.20/v4/reference/object": "/de/enterprise-server@2.20/graphql/reference/objects", - "/de/enterprise/2.20/v4/reference/object": "/de/enterprise-server@2.20/graphql/reference/objects", - "/de/github-ae@latest/v4/object": "/de/github-ae@latest/graphql/reference/objects", - "/de/github-ae@latest/v4/reference/object": "/de/github-ae@latest/graphql/reference/objects", - "/de/free-pro-team@latest/graphql/reference/queries": "/de/graphql/reference/queries", - "/de/v4/query": "/de/graphql/reference/queries", - "/de/free-pro-team@latest/v4/query": "/de/graphql/reference/queries", - "/de/v4/reference/query": "/de/graphql/reference/queries", - "/de/free-pro-team@latest/v4/reference/query": "/de/graphql/reference/queries", - "/de/enterprise/3.0/graphql/reference/queries": "/de/enterprise-server@3.0/graphql/reference/queries", - "/de/enterprise/graphql/reference/queries": "/de/enterprise-server@latest/graphql/reference/queries", - "/de/enterprise-server@3.0/v4/query": "/de/enterprise-server@3.0/graphql/reference/queries", - "/de/enterprise/3.0/v4/query": "/de/enterprise-server@3.0/graphql/reference/queries", - "/de/enterprise/v4/query": "/de/enterprise-server@latest/graphql/reference/queries", - "/de/enterprise-server@3.0/v4/reference/query": "/de/enterprise-server@3.0/graphql/reference/queries", - "/de/enterprise/3.0/v4/reference/query": "/de/enterprise-server@3.0/graphql/reference/queries", - "/de/enterprise/v4/reference/query": "/de/enterprise-server@latest/graphql/reference/queries", - "/de/enterprise/2.20/graphql/reference/queries": "/de/enterprise-server@2.20/graphql/reference/queries", - "/de/enterprise-server@2.20/v4/query": "/de/enterprise-server@2.20/graphql/reference/queries", - "/de/enterprise/2.20/v4/query": "/de/enterprise-server@2.20/graphql/reference/queries", - "/de/enterprise-server@2.20/v4/reference/query": "/de/enterprise-server@2.20/graphql/reference/queries", - "/de/enterprise/2.20/v4/reference/query": "/de/enterprise-server@2.20/graphql/reference/queries", - "/de/github-ae@latest/v4/query": "/de/github-ae@latest/graphql/reference/queries", - "/de/github-ae@latest/v4/reference/query": "/de/github-ae@latest/graphql/reference/queries", - "/de/free-pro-team@latest/graphql/reference/scalars": "/de/graphql/reference/scalars", - "/de/v4/scalar": "/de/graphql/reference/scalars", - "/de/free-pro-team@latest/v4/scalar": "/de/graphql/reference/scalars", - "/de/v4/reference/scalar": "/de/graphql/reference/scalars", - "/de/free-pro-team@latest/v4/reference/scalar": "/de/graphql/reference/scalars", - "/de/enterprise/3.0/graphql/reference/scalars": "/de/enterprise-server@3.0/graphql/reference/scalars", - "/de/enterprise/graphql/reference/scalars": "/de/enterprise-server@latest/graphql/reference/scalars", - "/de/enterprise-server@3.0/v4/scalar": "/de/enterprise-server@3.0/graphql/reference/scalars", - "/de/enterprise/3.0/v4/scalar": "/de/enterprise-server@3.0/graphql/reference/scalars", - "/de/enterprise/v4/scalar": "/de/enterprise-server@latest/graphql/reference/scalars", - "/de/enterprise-server@3.0/v4/reference/scalar": "/de/enterprise-server@3.0/graphql/reference/scalars", - "/de/enterprise/3.0/v4/reference/scalar": "/de/enterprise-server@3.0/graphql/reference/scalars", - "/de/enterprise/v4/reference/scalar": "/de/enterprise-server@latest/graphql/reference/scalars", - "/de/enterprise/2.20/graphql/reference/scalars": "/de/enterprise-server@2.20/graphql/reference/scalars", - "/de/enterprise-server@2.20/v4/scalar": "/de/enterprise-server@2.20/graphql/reference/scalars", - "/de/enterprise/2.20/v4/scalar": "/de/enterprise-server@2.20/graphql/reference/scalars", - "/de/enterprise-server@2.20/v4/reference/scalar": "/de/enterprise-server@2.20/graphql/reference/scalars", - "/de/enterprise/2.20/v4/reference/scalar": "/de/enterprise-server@2.20/graphql/reference/scalars", - "/de/github-ae@latest/v4/scalar": "/de/github-ae@latest/graphql/reference/scalars", - "/de/github-ae@latest/v4/reference/scalar": "/de/github-ae@latest/graphql/reference/scalars", - "/de/free-pro-team@latest/graphql/reference/unions": "/de/graphql/reference/unions", - "/de/v4/union": "/de/graphql/reference/unions", - "/de/free-pro-team@latest/v4/union": "/de/graphql/reference/unions", - "/de/v4/reference/union": "/de/graphql/reference/unions", - "/de/free-pro-team@latest/v4/reference/union": "/de/graphql/reference/unions", - "/de/enterprise/3.0/graphql/reference/unions": "/de/enterprise-server@3.0/graphql/reference/unions", - "/de/enterprise/graphql/reference/unions": "/de/enterprise-server@latest/graphql/reference/unions", - "/de/enterprise-server@3.0/v4/union": "/de/enterprise-server@3.0/graphql/reference/unions", - "/de/enterprise/3.0/v4/union": "/de/enterprise-server@3.0/graphql/reference/unions", - "/de/enterprise/v4/union": "/de/enterprise-server@latest/graphql/reference/unions", - "/de/enterprise-server@3.0/v4/reference/union": "/de/enterprise-server@3.0/graphql/reference/unions", - "/de/enterprise/3.0/v4/reference/union": "/de/enterprise-server@3.0/graphql/reference/unions", - "/de/enterprise/v4/reference/union": "/de/enterprise-server@latest/graphql/reference/unions", - "/de/enterprise/2.20/graphql/reference/unions": "/de/enterprise-server@2.20/graphql/reference/unions", - "/de/enterprise-server@2.20/v4/union": "/de/enterprise-server@2.20/graphql/reference/unions", - "/de/enterprise/2.20/v4/union": "/de/enterprise-server@2.20/graphql/reference/unions", - "/de/enterprise-server@2.20/v4/reference/union": "/de/enterprise-server@2.20/graphql/reference/unions", - "/de/enterprise/2.20/v4/reference/union": "/de/enterprise-server@2.20/graphql/reference/unions", - "/de/github-ae@latest/v4/union": "/de/github-ae@latest/graphql/reference/unions", - "/de/github-ae@latest/v4/reference/union": "/de/github-ae@latest/graphql/reference/unions", - "/de/free-pro-team@latest/rest/guides/basics-of-authentication": "/de/rest/guides/basics-of-authentication", - "/de/v3/guides/basics-of-authentication": "/de/rest/guides/basics-of-authentication", - "/de/free-pro-team@latest/v3/guides/basics-of-authentication": "/de/rest/guides/basics-of-authentication", - "/de/rest/basics-of-authentication": "/de/rest/guides/basics-of-authentication", - "/de/free-pro-team@latest/rest/basics-of-authentication": "/de/rest/guides/basics-of-authentication", - "/de/enterprise/3.0/rest/guides/basics-of-authentication": "/de/enterprise-server@3.0/rest/guides/basics-of-authentication", - "/de/enterprise/rest/guides/basics-of-authentication": "/de/enterprise-server@latest/rest/guides/basics-of-authentication", - "/de/enterprise-server@3.0/v3/guides/basics-of-authentication": "/de/enterprise-server@3.0/rest/guides/basics-of-authentication", - "/de/enterprise/3.0/v3/guides/basics-of-authentication": "/de/enterprise-server@3.0/rest/guides/basics-of-authentication", - "/de/enterprise/v3/guides/basics-of-authentication": "/de/enterprise-server@latest/rest/guides/basics-of-authentication", - "/de/enterprise-server@3.0/rest/basics-of-authentication": "/de/enterprise-server@3.0/rest/guides/basics-of-authentication", - "/de/enterprise/3.0/rest/basics-of-authentication": "/de/enterprise-server@3.0/rest/guides/basics-of-authentication", - "/de/enterprise/rest/basics-of-authentication": "/de/enterprise-server@latest/rest/guides/basics-of-authentication", - "/de/enterprise/2.20/rest/guides/basics-of-authentication": "/de/enterprise-server@2.20/rest/guides/basics-of-authentication", - "/de/enterprise-server@2.20/v3/guides/basics-of-authentication": "/de/enterprise-server@2.20/rest/guides/basics-of-authentication", - "/de/enterprise/2.20/v3/guides/basics-of-authentication": "/de/enterprise-server@2.20/rest/guides/basics-of-authentication", - "/de/enterprise-server@2.20/rest/basics-of-authentication": "/de/enterprise-server@2.20/rest/guides/basics-of-authentication", - "/de/enterprise/2.20/rest/basics-of-authentication": "/de/enterprise-server@2.20/rest/guides/basics-of-authentication", - "/de/github-ae@latest/v3/guides/basics-of-authentication": "/de/github-ae@latest/rest/guides/basics-of-authentication", - "/de/github-ae@latest/rest/basics-of-authentication": "/de/github-ae@latest/rest/guides/basics-of-authentication", - "/de/free-pro-team@latest/rest/guides/best-practices-for-integrators": "/de/rest/guides/best-practices-for-integrators", - "/de/v3/guides/best-practices-for-integrators": "/de/rest/guides/best-practices-for-integrators", - "/de/free-pro-team@latest/v3/guides/best-practices-for-integrators": "/de/rest/guides/best-practices-for-integrators", - "/de/enterprise/3.0/rest/guides/best-practices-for-integrators": "/de/enterprise-server@3.0/rest/guides/best-practices-for-integrators", - "/de/enterprise/rest/guides/best-practices-for-integrators": "/de/enterprise-server@latest/rest/guides/best-practices-for-integrators", - "/de/enterprise-server@3.0/v3/guides/best-practices-for-integrators": "/de/enterprise-server@3.0/rest/guides/best-practices-for-integrators", - "/de/enterprise/3.0/v3/guides/best-practices-for-integrators": "/de/enterprise-server@3.0/rest/guides/best-practices-for-integrators", - "/de/enterprise/v3/guides/best-practices-for-integrators": "/de/enterprise-server@latest/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.20/rest/guides/best-practices-for-integrators": "/de/enterprise-server@2.20/rest/guides/best-practices-for-integrators", - "/de/enterprise-server@2.20/v3/guides/best-practices-for-integrators": "/de/enterprise-server@2.20/rest/guides/best-practices-for-integrators", - "/de/enterprise/2.20/v3/guides/best-practices-for-integrators": "/de/enterprise-server@2.20/rest/guides/best-practices-for-integrators", - "/de/github-ae@latest/v3/guides/best-practices-for-integrators": "/de/github-ae@latest/rest/guides/best-practices-for-integrators", - "/de/free-pro-team@latest/rest/guides/building-a-ci-server": "/de/rest/guides/building-a-ci-server", - "/de/v3/guides/building-a-ci-server": "/de/rest/guides/building-a-ci-server", - "/de/free-pro-team@latest/v3/guides/building-a-ci-server": "/de/rest/guides/building-a-ci-server", - "/de/enterprise/3.0/rest/guides/building-a-ci-server": "/de/enterprise-server@3.0/rest/guides/building-a-ci-server", - "/de/enterprise/rest/guides/building-a-ci-server": "/de/enterprise-server@latest/rest/guides/building-a-ci-server", - "/de/enterprise-server@3.0/v3/guides/building-a-ci-server": "/de/enterprise-server@3.0/rest/guides/building-a-ci-server", - "/de/enterprise/3.0/v3/guides/building-a-ci-server": "/de/enterprise-server@3.0/rest/guides/building-a-ci-server", - "/de/enterprise/v3/guides/building-a-ci-server": "/de/enterprise-server@latest/rest/guides/building-a-ci-server", - "/de/enterprise/2.20/rest/guides/building-a-ci-server": "/de/enterprise-server@2.20/rest/guides/building-a-ci-server", - "/de/enterprise-server@2.20/v3/guides/building-a-ci-server": "/de/enterprise-server@2.20/rest/guides/building-a-ci-server", - "/de/enterprise/2.20/v3/guides/building-a-ci-server": "/de/enterprise-server@2.20/rest/guides/building-a-ci-server", - "/de/github-ae@latest/v3/guides/building-a-ci-server": "/de/github-ae@latest/rest/guides/building-a-ci-server", - "/de/free-pro-team@latest/rest/guides/delivering-deployments": "/de/rest/guides/delivering-deployments", - "/de/v3/guides/delivering-deployments": "/de/rest/guides/delivering-deployments", - "/de/free-pro-team@latest/v3/guides/delivering-deployments": "/de/rest/guides/delivering-deployments", - "/de/enterprise/3.0/rest/guides/delivering-deployments": "/de/enterprise-server@3.0/rest/guides/delivering-deployments", - "/de/enterprise/rest/guides/delivering-deployments": "/de/enterprise-server@latest/rest/guides/delivering-deployments", - "/de/enterprise-server@3.0/v3/guides/delivering-deployments": "/de/enterprise-server@3.0/rest/guides/delivering-deployments", - "/de/enterprise/3.0/v3/guides/delivering-deployments": "/de/enterprise-server@3.0/rest/guides/delivering-deployments", - "/de/enterprise/v3/guides/delivering-deployments": "/de/enterprise-server@latest/rest/guides/delivering-deployments", - "/de/enterprise/2.20/rest/guides/delivering-deployments": "/de/enterprise-server@2.20/rest/guides/delivering-deployments", - "/de/enterprise-server@2.20/v3/guides/delivering-deployments": "/de/enterprise-server@2.20/rest/guides/delivering-deployments", - "/de/enterprise/2.20/v3/guides/delivering-deployments": "/de/enterprise-server@2.20/rest/guides/delivering-deployments", - "/de/github-ae@latest/v3/guides/delivering-deployments": "/de/github-ae@latest/rest/guides/delivering-deployments", - "/de/free-pro-team@latest/rest/guides/discovering-resources-for-a-user": "/de/rest/guides/discovering-resources-for-a-user", - "/de/v3/guides/discovering-resources-for-a-user": "/de/rest/guides/discovering-resources-for-a-user", - "/de/free-pro-team@latest/v3/guides/discovering-resources-for-a-user": "/de/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/3.0/rest/guides/discovering-resources-for-a-user": "/de/enterprise-server@3.0/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/rest/guides/discovering-resources-for-a-user": "/de/enterprise-server@latest/rest/guides/discovering-resources-for-a-user", - "/de/enterprise-server@3.0/v3/guides/discovering-resources-for-a-user": "/de/enterprise-server@3.0/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/3.0/v3/guides/discovering-resources-for-a-user": "/de/enterprise-server@3.0/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/v3/guides/discovering-resources-for-a-user": "/de/enterprise-server@latest/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.20/rest/guides/discovering-resources-for-a-user": "/de/enterprise-server@2.20/rest/guides/discovering-resources-for-a-user", - "/de/enterprise-server@2.20/v3/guides/discovering-resources-for-a-user": "/de/enterprise-server@2.20/rest/guides/discovering-resources-for-a-user", - "/de/enterprise/2.20/v3/guides/discovering-resources-for-a-user": "/de/enterprise-server@2.20/rest/guides/discovering-resources-for-a-user", - "/de/github-ae@latest/v3/guides/discovering-resources-for-a-user": "/de/github-ae@latest/rest/guides/discovering-resources-for-a-user", - "/de/free-pro-team@latest/rest/guides/getting-started-with-the-checks-api": "/de/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/3.0/rest/guides/getting-started-with-the-checks-api": "/de/enterprise-server@3.0/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/rest/guides/getting-started-with-the-checks-api": "/de/enterprise-server@latest/rest/guides/getting-started-with-the-checks-api", - "/de/enterprise/2.20/rest/guides/getting-started-with-the-checks-api": "/de/enterprise-server@2.20/rest/guides/getting-started-with-the-checks-api", - "/de/free-pro-team@latest/rest/guides/getting-started-with-the-git-database-api": "/de/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/3.0/rest/guides/getting-started-with-the-git-database-api": "/de/enterprise-server@3.0/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/rest/guides/getting-started-with-the-git-database-api": "/de/enterprise-server@latest/rest/guides/getting-started-with-the-git-database-api", - "/de/enterprise/2.20/rest/guides/getting-started-with-the-git-database-api": "/de/enterprise-server@2.20/rest/guides/getting-started-with-the-git-database-api", - "/de/free-pro-team@latest/rest/guides/getting-started-with-the-rest-api": "/de/rest/guides/getting-started-with-the-rest-api", - "/de/v3/guides/getting-started": "/de/rest/guides/getting-started-with-the-rest-api", - "/de/free-pro-team@latest/v3/guides/getting-started": "/de/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/3.0/rest/guides/getting-started-with-the-rest-api": "/de/enterprise-server@3.0/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/rest/guides/getting-started-with-the-rest-api": "/de/enterprise-server@latest/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise-server@3.0/v3/guides/getting-started": "/de/enterprise-server@3.0/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/3.0/v3/guides/getting-started": "/de/enterprise-server@3.0/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/v3/guides/getting-started": "/de/enterprise-server@latest/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.20/rest/guides/getting-started-with-the-rest-api": "/de/enterprise-server@2.20/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise-server@2.20/v3/guides/getting-started": "/de/enterprise-server@2.20/rest/guides/getting-started-with-the-rest-api", - "/de/enterprise/2.20/v3/guides/getting-started": "/de/enterprise-server@2.20/rest/guides/getting-started-with-the-rest-api", - "/de/github-ae@latest/v3/guides/getting-started": "/de/github-ae@latest/rest/guides/getting-started-with-the-rest-api", - "/de/free-pro-team@latest/rest/guides": "/de/rest/guides", - "/de/v3/guides": "/de/rest/guides", - "/de/free-pro-team@latest/v3/guides": "/de/rest/guides", - "/de/enterprise/3.0/rest/guides": "/de/enterprise-server@3.0/rest/guides", - "/de/enterprise/rest/guides": "/de/enterprise-server@latest/rest/guides", - "/de/enterprise-server@3.0/v3/guides": "/de/enterprise-server@3.0/rest/guides", - "/de/enterprise/3.0/v3/guides": "/de/enterprise-server@3.0/rest/guides", - "/de/enterprise/v3/guides": "/de/enterprise-server@latest/rest/guides", - "/de/enterprise/2.20/rest/guides": "/de/enterprise-server@2.20/rest/guides", - "/de/enterprise-server@2.20/v3/guides": "/de/enterprise-server@2.20/rest/guides", - "/de/enterprise/2.20/v3/guides": "/de/enterprise-server@2.20/rest/guides", - "/de/github-ae@latest/v3/guides": "/de/github-ae@latest/rest/guides", - "/de/free-pro-team@latest/rest/guides/rendering-data-as-graphs": "/de/rest/guides/rendering-data-as-graphs", - "/de/v3/guides/rendering-data-as-graphs": "/de/rest/guides/rendering-data-as-graphs", - "/de/free-pro-team@latest/v3/guides/rendering-data-as-graphs": "/de/rest/guides/rendering-data-as-graphs", - "/de/enterprise/3.0/rest/guides/rendering-data-as-graphs": "/de/enterprise-server@3.0/rest/guides/rendering-data-as-graphs", - "/de/enterprise/rest/guides/rendering-data-as-graphs": "/de/enterprise-server@latest/rest/guides/rendering-data-as-graphs", - "/de/enterprise-server@3.0/v3/guides/rendering-data-as-graphs": "/de/enterprise-server@3.0/rest/guides/rendering-data-as-graphs", - "/de/enterprise/3.0/v3/guides/rendering-data-as-graphs": "/de/enterprise-server@3.0/rest/guides/rendering-data-as-graphs", - "/de/enterprise/v3/guides/rendering-data-as-graphs": "/de/enterprise-server@latest/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.20/rest/guides/rendering-data-as-graphs": "/de/enterprise-server@2.20/rest/guides/rendering-data-as-graphs", - "/de/enterprise-server@2.20/v3/guides/rendering-data-as-graphs": "/de/enterprise-server@2.20/rest/guides/rendering-data-as-graphs", - "/de/enterprise/2.20/v3/guides/rendering-data-as-graphs": "/de/enterprise-server@2.20/rest/guides/rendering-data-as-graphs", - "/de/github-ae@latest/v3/guides/rendering-data-as-graphs": "/de/github-ae@latest/rest/guides/rendering-data-as-graphs", - "/de/free-pro-team@latest/rest/guides/traversing-with-pagination": "/de/rest/guides/traversing-with-pagination", - "/de/v3/guides/traversing-with-pagination": "/de/rest/guides/traversing-with-pagination", - "/de/free-pro-team@latest/v3/guides/traversing-with-pagination": "/de/rest/guides/traversing-with-pagination", - "/de/enterprise/3.0/rest/guides/traversing-with-pagination": "/de/enterprise-server@3.0/rest/guides/traversing-with-pagination", - "/de/enterprise/rest/guides/traversing-with-pagination": "/de/enterprise-server@latest/rest/guides/traversing-with-pagination", - "/de/enterprise-server@3.0/v3/guides/traversing-with-pagination": "/de/enterprise-server@3.0/rest/guides/traversing-with-pagination", - "/de/enterprise/3.0/v3/guides/traversing-with-pagination": "/de/enterprise-server@3.0/rest/guides/traversing-with-pagination", - "/de/enterprise/v3/guides/traversing-with-pagination": "/de/enterprise-server@latest/rest/guides/traversing-with-pagination", - "/de/enterprise/2.20/rest/guides/traversing-with-pagination": "/de/enterprise-server@2.20/rest/guides/traversing-with-pagination", - "/de/enterprise-server@2.20/v3/guides/traversing-with-pagination": "/de/enterprise-server@2.20/rest/guides/traversing-with-pagination", - "/de/enterprise/2.20/v3/guides/traversing-with-pagination": "/de/enterprise-server@2.20/rest/guides/traversing-with-pagination", - "/de/github-ae@latest/v3/guides/traversing-with-pagination": "/de/github-ae@latest/rest/guides/traversing-with-pagination", - "/de/free-pro-team@latest/rest/guides/working-with-comments": "/de/rest/guides/working-with-comments", - "/de/v3/guides/working-with-comments": "/de/rest/guides/working-with-comments", - "/de/free-pro-team@latest/v3/guides/working-with-comments": "/de/rest/guides/working-with-comments", - "/de/enterprise/3.0/rest/guides/working-with-comments": "/de/enterprise-server@3.0/rest/guides/working-with-comments", - "/de/enterprise/rest/guides/working-with-comments": "/de/enterprise-server@latest/rest/guides/working-with-comments", - "/de/enterprise-server@3.0/v3/guides/working-with-comments": "/de/enterprise-server@3.0/rest/guides/working-with-comments", - "/de/enterprise/3.0/v3/guides/working-with-comments": "/de/enterprise-server@3.0/rest/guides/working-with-comments", - "/de/enterprise/v3/guides/working-with-comments": "/de/enterprise-server@latest/rest/guides/working-with-comments", - "/de/enterprise/2.20/rest/guides/working-with-comments": "/de/enterprise-server@2.20/rest/guides/working-with-comments", - "/de/enterprise-server@2.20/v3/guides/working-with-comments": "/de/enterprise-server@2.20/rest/guides/working-with-comments", - "/de/enterprise/2.20/v3/guides/working-with-comments": "/de/enterprise-server@2.20/rest/guides/working-with-comments", - "/de/github-ae@latest/v3/guides/working-with-comments": "/de/github-ae@latest/rest/guides/working-with-comments", - "/de/free-pro-team@latest/rest": "/de/rest", - "/de/v3": "/de/rest", - "/de/free-pro-team@latest/v3": "/de/rest", - "/de/enterprise/3.0/rest": "/de/enterprise-server@3.0/rest", - "/de/enterprise/rest": "/de/enterprise-server@latest/rest", - "/de/enterprise-server@3.0/v3": "/de/enterprise-server@3.0/rest", - "/de/enterprise/3.0/v3": "/de/enterprise-server@3.0/rest", - "/de/enterprise/v3": "/de/enterprise-server@latest/rest", - "/de/enterprise/2.20/rest": "/de/enterprise-server@2.20/rest", - "/de/enterprise-server@2.20/v3": "/de/enterprise-server@2.20/rest", - "/de/enterprise/2.20/v3": "/de/enterprise-server@2.20/rest", - "/de/github-ae@latest/v3": "/de/github-ae@latest/rest", - "/de/free-pro-team@latest/rest/overview/api-previews": "/de/rest/overview/api-previews", - "/de/v3/previews": "/de/rest/overview/api-previews", - "/de/free-pro-team@latest/v3/previews": "/de/rest/overview/api-previews", - "/de/enterprise/3.0/rest/overview/api-previews": "/de/enterprise-server@3.0/rest/overview/api-previews", - "/de/enterprise/rest/overview/api-previews": "/de/enterprise-server@latest/rest/overview/api-previews", - "/de/enterprise-server@3.0/v3/previews": "/de/enterprise-server@3.0/rest/overview/api-previews", - "/de/enterprise/3.0/v3/previews": "/de/enterprise-server@3.0/rest/overview/api-previews", - "/de/enterprise/v3/previews": "/de/enterprise-server@latest/rest/overview/api-previews", - "/de/enterprise/2.20/rest/overview/api-previews": "/de/enterprise-server@2.20/rest/overview/api-previews", - "/de/enterprise-server@2.20/v3/previews": "/de/enterprise-server@2.20/rest/overview/api-previews", - "/de/enterprise/2.20/v3/previews": "/de/enterprise-server@2.20/rest/overview/api-previews", - "/de/github-ae@latest/v3/previews": "/de/github-ae@latest/rest/overview/api-previews", - "/de/free-pro-team@latest/rest/overview/endpoints-available-for-github-apps": "/de/rest/overview/endpoints-available-for-github-apps", - "/de/v3/apps/available-endpoints": "/de/rest/overview/endpoints-available-for-github-apps", - "/de/free-pro-team@latest/v3/apps/available-endpoints": "/de/rest/overview/endpoints-available-for-github-apps", - "/de/rest/reference/endpoints-available-for-github-apps": "/de/rest/overview/endpoints-available-for-github-apps", - "/de/free-pro-team@latest/rest/reference/endpoints-available-for-github-apps": "/de/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/3.0/rest/overview/endpoints-available-for-github-apps": "/de/enterprise-server@3.0/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/rest/overview/endpoints-available-for-github-apps": "/de/enterprise-server@latest/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise-server@3.0/v3/apps/available-endpoints": "/de/enterprise-server@3.0/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/3.0/v3/apps/available-endpoints": "/de/enterprise-server@3.0/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/v3/apps/available-endpoints": "/de/enterprise-server@latest/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise-server@3.0/rest/reference/endpoints-available-for-github-apps": "/de/enterprise-server@3.0/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/3.0/rest/reference/endpoints-available-for-github-apps": "/de/enterprise-server@3.0/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/rest/reference/endpoints-available-for-github-apps": "/de/enterprise-server@latest/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.20/rest/overview/endpoints-available-for-github-apps": "/de/enterprise-server@2.20/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise-server@2.20/v3/apps/available-endpoints": "/de/enterprise-server@2.20/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.20/v3/apps/available-endpoints": "/de/enterprise-server@2.20/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise-server@2.20/rest/reference/endpoints-available-for-github-apps": "/de/enterprise-server@2.20/rest/overview/endpoints-available-for-github-apps", - "/de/enterprise/2.20/rest/reference/endpoints-available-for-github-apps": "/de/enterprise-server@2.20/rest/overview/endpoints-available-for-github-apps", - "/de/github-ae@latest/v3/apps/available-endpoints": "/de/github-ae@latest/rest/overview/endpoints-available-for-github-apps", - "/de/github-ae@latest/rest/reference/endpoints-available-for-github-apps": "/de/github-ae@latest/rest/overview/endpoints-available-for-github-apps", - "/de/free-pro-team@latest/rest/overview": "/de/rest/overview", - "/de/enterprise/3.0/rest/overview": "/de/enterprise-server@3.0/rest/overview", - "/de/enterprise/rest/overview": "/de/enterprise-server@latest/rest/overview", - "/de/enterprise/2.20/rest/overview": "/de/enterprise-server@2.20/rest/overview", - "/de/free-pro-team@latest/rest/overview/libraries": "/de/rest/overview/libraries", - "/de/v3/libraries": "/de/rest/overview/libraries", - "/de/free-pro-team@latest/v3/libraries": "/de/rest/overview/libraries", - "/de/enterprise/3.0/rest/overview/libraries": "/de/enterprise-server@3.0/rest/overview/libraries", - "/de/enterprise/rest/overview/libraries": "/de/enterprise-server@latest/rest/overview/libraries", - "/de/enterprise-server@3.0/v3/libraries": "/de/enterprise-server@3.0/rest/overview/libraries", - "/de/enterprise/3.0/v3/libraries": "/de/enterprise-server@3.0/rest/overview/libraries", - "/de/enterprise/v3/libraries": "/de/enterprise-server@latest/rest/overview/libraries", - "/de/enterprise/2.20/rest/overview/libraries": "/de/enterprise-server@2.20/rest/overview/libraries", - "/de/enterprise-server@2.20/v3/libraries": "/de/enterprise-server@2.20/rest/overview/libraries", - "/de/enterprise/2.20/v3/libraries": "/de/enterprise-server@2.20/rest/overview/libraries", - "/de/github-ae@latest/v3/libraries": "/de/github-ae@latest/rest/overview/libraries", - "/de/free-pro-team@latest/rest/overview/media-types": "/de/rest/overview/media-types", - "/de/v3/media": "/de/rest/overview/media-types", - "/de/free-pro-team@latest/v3/media": "/de/rest/overview/media-types", - "/de/enterprise/3.0/rest/overview/media-types": "/de/enterprise-server@3.0/rest/overview/media-types", - "/de/enterprise/rest/overview/media-types": "/de/enterprise-server@latest/rest/overview/media-types", - "/de/enterprise-server@3.0/v3/media": "/de/enterprise-server@3.0/rest/overview/media-types", - "/de/enterprise/3.0/v3/media": "/de/enterprise-server@3.0/rest/overview/media-types", - "/de/enterprise/v3/media": "/de/enterprise-server@latest/rest/overview/media-types", - "/de/enterprise/2.20/rest/overview/media-types": "/de/enterprise-server@2.20/rest/overview/media-types", - "/de/enterprise-server@2.20/v3/media": "/de/enterprise-server@2.20/rest/overview/media-types", - "/de/enterprise/2.20/v3/media": "/de/enterprise-server@2.20/rest/overview/media-types", - "/de/github-ae@latest/v3/media": "/de/github-ae@latest/rest/overview/media-types", - "/de/free-pro-team@latest/rest/overview/openapi-description": "/de/rest/overview/openapi-description", - "/de/enterprise/3.0/rest/overview/openapi-description": "/de/enterprise-server@3.0/rest/overview/openapi-description", - "/de/enterprise/rest/overview/openapi-description": "/de/enterprise-server@latest/rest/overview/openapi-description", - "/de/enterprise/2.20/rest/overview/openapi-description": "/de/enterprise-server@2.20/rest/overview/openapi-description", - "/de/free-pro-team@latest/rest/overview/other-authentication-methods": "/de/rest/overview/other-authentication-methods", - "/de/v3/auth": "/de/rest/overview/other-authentication-methods", - "/de/free-pro-team@latest/v3/auth": "/de/rest/overview/other-authentication-methods", - "/de/enterprise/3.0/rest/overview/other-authentication-methods": "/de/enterprise-server@3.0/rest/overview/other-authentication-methods", - "/de/enterprise/rest/overview/other-authentication-methods": "/de/enterprise-server@latest/rest/overview/other-authentication-methods", - "/de/enterprise-server@3.0/v3/auth": "/de/enterprise-server@3.0/rest/overview/other-authentication-methods", - "/de/enterprise/3.0/v3/auth": "/de/enterprise-server@3.0/rest/overview/other-authentication-methods", - "/de/enterprise/v3/auth": "/de/enterprise-server@latest/rest/overview/other-authentication-methods", - "/de/enterprise/2.20/rest/overview/other-authentication-methods": "/de/enterprise-server@2.20/rest/overview/other-authentication-methods", - "/de/enterprise-server@2.20/v3/auth": "/de/enterprise-server@2.20/rest/overview/other-authentication-methods", - "/de/enterprise/2.20/v3/auth": "/de/enterprise-server@2.20/rest/overview/other-authentication-methods", - "/de/github-ae@latest/v3/auth": "/de/github-ae@latest/rest/overview/other-authentication-methods", - "/de/free-pro-team@latest/rest/overview/resources-in-the-rest-api": "/de/rest/overview/resources-in-the-rest-api", - "/de/rest/initialize-the-repo": "/de/rest/overview/resources-in-the-rest-api", - "/de/free-pro-team@latest/rest/initialize-the-repo": "/de/rest/overview/resources-in-the-rest-api", - "/de/enterprise/3.0/rest/overview/resources-in-the-rest-api": "/de/enterprise-server@3.0/rest/overview/resources-in-the-rest-api", - "/de/enterprise/rest/overview/resources-in-the-rest-api": "/de/enterprise-server@latest/rest/overview/resources-in-the-rest-api", - "/de/enterprise-server@3.0/rest/initialize-the-repo": "/de/enterprise-server@3.0/rest/overview/resources-in-the-rest-api", - "/de/enterprise/3.0/rest/initialize-the-repo": "/de/enterprise-server@3.0/rest/overview/resources-in-the-rest-api", - "/de/enterprise/rest/initialize-the-repo": "/de/enterprise-server@latest/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.20/rest/overview/resources-in-the-rest-api": "/de/enterprise-server@2.20/rest/overview/resources-in-the-rest-api", - "/de/enterprise-server@2.20/rest/initialize-the-repo": "/de/enterprise-server@2.20/rest/overview/resources-in-the-rest-api", - "/de/enterprise/2.20/rest/initialize-the-repo": "/de/enterprise-server@2.20/rest/overview/resources-in-the-rest-api", - "/de/github-ae@latest/rest/initialize-the-repo": "/de/github-ae@latest/rest/overview/resources-in-the-rest-api", - "/de/free-pro-team@latest/rest/overview/troubleshooting": "/de/rest/overview/troubleshooting", - "/de/v3/troubleshooting": "/de/rest/overview/troubleshooting", - "/de/free-pro-team@latest/v3/troubleshooting": "/de/rest/overview/troubleshooting", - "/de/enterprise/3.0/rest/overview/troubleshooting": "/de/enterprise-server@3.0/rest/overview/troubleshooting", - "/de/enterprise/rest/overview/troubleshooting": "/de/enterprise-server@latest/rest/overview/troubleshooting", - "/de/enterprise-server@3.0/v3/troubleshooting": "/de/enterprise-server@3.0/rest/overview/troubleshooting", - "/de/enterprise/3.0/v3/troubleshooting": "/de/enterprise-server@3.0/rest/overview/troubleshooting", - "/de/enterprise/v3/troubleshooting": "/de/enterprise-server@latest/rest/overview/troubleshooting", - "/de/enterprise/2.20/rest/overview/troubleshooting": "/de/enterprise-server@2.20/rest/overview/troubleshooting", - "/de/enterprise-server@2.20/v3/troubleshooting": "/de/enterprise-server@2.20/rest/overview/troubleshooting", - "/de/enterprise/2.20/v3/troubleshooting": "/de/enterprise-server@2.20/rest/overview/troubleshooting", - "/de/github-ae@latest/v3/troubleshooting": "/de/github-ae@latest/rest/overview/troubleshooting", - "/de/free-pro-team@latest/rest/reference/actions": "/de/rest/reference/actions", - "/de/v3/actions": "/de/rest/reference/actions", - "/de/free-pro-team@latest/v3/actions": "/de/rest/reference/actions", - "/de/enterprise/3.0/rest/reference/actions": "/de/enterprise-server@3.0/rest/reference/actions", - "/de/enterprise/rest/reference/actions": "/de/enterprise-server@latest/rest/reference/actions", - "/de/enterprise-server@3.0/v3/actions": "/de/enterprise-server@3.0/rest/reference/actions", - "/de/enterprise/3.0/v3/actions": "/de/enterprise-server@3.0/rest/reference/actions", - "/de/enterprise/v3/actions": "/de/enterprise-server@latest/rest/reference/actions", - "/de/free-pro-team@latest/rest/reference/activity": "/de/rest/reference/activity", - "/de/v3/activity": "/de/rest/reference/activity", - "/de/free-pro-team@latest/v3/activity": "/de/rest/reference/activity", - "/de/enterprise/3.0/rest/reference/activity": "/de/enterprise-server@3.0/rest/reference/activity", - "/de/enterprise/rest/reference/activity": "/de/enterprise-server@latest/rest/reference/activity", - "/de/enterprise-server@3.0/v3/activity": "/de/enterprise-server@3.0/rest/reference/activity", - "/de/enterprise/3.0/v3/activity": "/de/enterprise-server@3.0/rest/reference/activity", - "/de/enterprise/v3/activity": "/de/enterprise-server@latest/rest/reference/activity", - "/de/enterprise/2.20/rest/reference/activity": "/de/enterprise-server@2.20/rest/reference/activity", - "/de/enterprise-server@2.20/v3/activity": "/de/enterprise-server@2.20/rest/reference/activity", - "/de/enterprise/2.20/v3/activity": "/de/enterprise-server@2.20/rest/reference/activity", - "/de/github-ae@latest/v3/activity": "/de/github-ae@latest/rest/reference/activity", - "/de/free-pro-team@latest/rest/reference/apps": "/de/rest/reference/apps", - "/de/v3/apps": "/de/rest/reference/apps", - "/de/free-pro-team@latest/v3/apps": "/de/rest/reference/apps", - "/de/enterprise/3.0/rest/reference/apps": "/de/enterprise-server@3.0/rest/reference/apps", - "/de/enterprise/rest/reference/apps": "/de/enterprise-server@latest/rest/reference/apps", - "/de/enterprise-server@3.0/v3/apps": "/de/enterprise-server@3.0/rest/reference/apps", - "/de/enterprise/3.0/v3/apps": "/de/enterprise-server@3.0/rest/reference/apps", - "/de/enterprise/v3/apps": "/de/enterprise-server@latest/rest/reference/apps", - "/de/enterprise/2.20/rest/reference/apps": "/de/enterprise-server@2.20/rest/reference/apps", - "/de/enterprise-server@2.20/v3/apps": "/de/enterprise-server@2.20/rest/reference/apps", - "/de/enterprise/2.20/v3/apps": "/de/enterprise-server@2.20/rest/reference/apps", - "/de/github-ae@latest/v3/apps": "/de/github-ae@latest/rest/reference/apps", - "/de/free-pro-team@latest/rest/reference/billing": "/de/rest/reference/billing", - "/de/free-pro-team@latest/rest/reference/checks": "/de/rest/reference/checks", - "/de/v3/checks": "/de/rest/reference/checks", - "/de/free-pro-team@latest/v3/checks": "/de/rest/reference/checks", - "/de/enterprise/3.0/rest/reference/checks": "/de/enterprise-server@3.0/rest/reference/checks", - "/de/enterprise/rest/reference/checks": "/de/enterprise-server@latest/rest/reference/checks", - "/de/enterprise-server@3.0/v3/checks": "/de/enterprise-server@3.0/rest/reference/checks", - "/de/enterprise/3.0/v3/checks": "/de/enterprise-server@3.0/rest/reference/checks", - "/de/enterprise/v3/checks": "/de/enterprise-server@latest/rest/reference/checks", - "/de/enterprise/2.20/rest/reference/checks": "/de/enterprise-server@2.20/rest/reference/checks", - "/de/enterprise-server@2.20/v3/checks": "/de/enterprise-server@2.20/rest/reference/checks", - "/de/enterprise/2.20/v3/checks": "/de/enterprise-server@2.20/rest/reference/checks", - "/de/github-ae@latest/v3/checks": "/de/github-ae@latest/rest/reference/checks", - "/de/free-pro-team@latest/rest/reference/code-scanning": "/de/rest/reference/code-scanning", - "/de/v3/code-scanning": "/de/rest/reference/code-scanning", - "/de/free-pro-team@latest/v3/code-scanning": "/de/rest/reference/code-scanning", - "/de/enterprise/3.0/rest/reference/code-scanning": "/de/enterprise-server@3.0/rest/reference/code-scanning", - "/de/enterprise/rest/reference/code-scanning": "/de/enterprise-server@latest/rest/reference/code-scanning", - "/de/enterprise-server@3.0/v3/code-scanning": "/de/enterprise-server@3.0/rest/reference/code-scanning", - "/de/enterprise/3.0/v3/code-scanning": "/de/enterprise-server@3.0/rest/reference/code-scanning", - "/de/enterprise/v3/code-scanning": "/de/enterprise-server@latest/rest/reference/code-scanning", - "/de/free-pro-team@latest/rest/reference/codes-of-conduct": "/de/rest/reference/codes-of-conduct", - "/de/v3/codes_of_conduct": "/de/rest/reference/codes-of-conduct", - "/de/free-pro-team@latest/v3/codes_of_conduct": "/de/rest/reference/codes-of-conduct", - "/de/v3/codes-of-conduct": "/de/rest/reference/codes-of-conduct", - "/de/free-pro-team@latest/v3/codes-of-conduct": "/de/rest/reference/codes-of-conduct", - "/de/enterprise/3.0/rest/reference/codes-of-conduct": "/de/enterprise-server@3.0/rest/reference/codes-of-conduct", - "/de/enterprise/rest/reference/codes-of-conduct": "/de/enterprise-server@latest/rest/reference/codes-of-conduct", - "/de/enterprise-server@3.0/v3/codes_of_conduct": "/de/enterprise-server@3.0/rest/reference/codes-of-conduct", - "/de/enterprise/3.0/v3/codes_of_conduct": "/de/enterprise-server@3.0/rest/reference/codes-of-conduct", - "/de/enterprise/v3/codes_of_conduct": "/de/enterprise-server@latest/rest/reference/codes-of-conduct", - "/de/enterprise-server@3.0/v3/codes-of-conduct": "/de/enterprise-server@3.0/rest/reference/codes-of-conduct", - "/de/enterprise/3.0/v3/codes-of-conduct": "/de/enterprise-server@3.0/rest/reference/codes-of-conduct", - "/de/enterprise/v3/codes-of-conduct": "/de/enterprise-server@latest/rest/reference/codes-of-conduct", - "/de/enterprise/2.20/rest/reference/codes-of-conduct": "/de/enterprise-server@2.20/rest/reference/codes-of-conduct", - "/de/enterprise-server@2.20/v3/codes_of_conduct": "/de/enterprise-server@2.20/rest/reference/codes-of-conduct", - "/de/enterprise/2.20/v3/codes_of_conduct": "/de/enterprise-server@2.20/rest/reference/codes-of-conduct", - "/de/enterprise-server@2.20/v3/codes-of-conduct": "/de/enterprise-server@2.20/rest/reference/codes-of-conduct", - "/de/enterprise/2.20/v3/codes-of-conduct": "/de/enterprise-server@2.20/rest/reference/codes-of-conduct", - "/de/github-ae@latest/v3/codes_of_conduct": "/de/github-ae@latest/rest/reference/codes-of-conduct", - "/de/github-ae@latest/v3/codes-of-conduct": "/de/github-ae@latest/rest/reference/codes-of-conduct", - "/de/free-pro-team@latest/rest/reference/emojis": "/de/rest/reference/emojis", - "/de/v3/emojis": "/de/rest/reference/emojis", - "/de/free-pro-team@latest/v3/emojis": "/de/rest/reference/emojis", - "/de/v3/misc": "/de/rest/reference/emojis", - "/de/free-pro-team@latest/v3/misc": "/de/rest/reference/emojis", - "/de/enterprise/3.0/rest/reference/emojis": "/de/enterprise-server@3.0/rest/reference/emojis", - "/de/enterprise/rest/reference/emojis": "/de/enterprise-server@latest/rest/reference/emojis", - "/de/enterprise-server@3.0/v3/emojis": "/de/enterprise-server@3.0/rest/reference/emojis", - "/de/enterprise/3.0/v3/emojis": "/de/enterprise-server@3.0/rest/reference/emojis", - "/de/enterprise/v3/emojis": "/de/enterprise-server@latest/rest/reference/emojis", - "/de/enterprise-server@3.0/v3/misc": "/de/enterprise-server@3.0/rest/reference/emojis", - "/de/enterprise/3.0/v3/misc": "/de/enterprise-server@3.0/rest/reference/emojis", - "/de/enterprise/v3/misc": "/de/enterprise-server@latest/rest/reference/emojis", - "/de/enterprise/2.20/rest/reference/emojis": "/de/enterprise-server@2.20/rest/reference/emojis", - "/de/enterprise-server@2.20/v3/emojis": "/de/enterprise-server@2.20/rest/reference/emojis", - "/de/enterprise/2.20/v3/emojis": "/de/enterprise-server@2.20/rest/reference/emojis", - "/de/enterprise-server@2.20/v3/misc": "/de/enterprise-server@2.20/rest/reference/emojis", - "/de/enterprise/2.20/v3/misc": "/de/enterprise-server@2.20/rest/reference/emojis", - "/de/github-ae@latest/v3/emojis": "/de/github-ae@latest/rest/reference/emojis", - "/de/github-ae@latest/v3/misc": "/de/github-ae@latest/rest/reference/emojis", - "/de/free-pro-team@latest/rest/reference/enterprise-admin": "/de/rest/reference/enterprise-admin", - "/de/v3/enterprise-admin": "/de/rest/reference/enterprise-admin", - "/de/free-pro-team@latest/v3/enterprise-admin": "/de/rest/reference/enterprise-admin", - "/de/v3/enterprise": "/de/rest/reference/enterprise-admin", - "/de/free-pro-team@latest/v3/enterprise": "/de/rest/reference/enterprise-admin", - "/de/enterprise/3.0/rest/reference/enterprise-admin": "/de/enterprise-server@3.0/rest/reference/enterprise-admin", - "/de/enterprise/rest/reference/enterprise-admin": "/de/enterprise-server@latest/rest/reference/enterprise-admin", - "/de/enterprise-server@3.0/v3/enterprise-admin": "/de/enterprise-server@3.0/rest/reference/enterprise-admin", - "/de/enterprise/3.0/v3/enterprise-admin": "/de/enterprise-server@3.0/rest/reference/enterprise-admin", - "/de/enterprise/v3/enterprise-admin": "/de/enterprise-server@latest/rest/reference/enterprise-admin", - "/de/enterprise-server@3.0/v3/enterprise": "/de/enterprise-server@3.0/rest/reference/enterprise-admin", - "/de/enterprise/3.0/v3/enterprise": "/de/enterprise-server@3.0/rest/reference/enterprise-admin", - "/de/enterprise/v3/enterprise": "/de/enterprise-server@latest/rest/reference/enterprise-admin", - "/de/enterprise/2.20/rest/reference/enterprise-admin": "/de/enterprise-server@2.20/rest/reference/enterprise-admin", - "/de/enterprise-server@2.20/v3/enterprise-admin": "/de/enterprise-server@2.20/rest/reference/enterprise-admin", - "/de/enterprise/2.20/v3/enterprise-admin": "/de/enterprise-server@2.20/rest/reference/enterprise-admin", - "/de/enterprise-server@2.20/v3/enterprise": "/de/enterprise-server@2.20/rest/reference/enterprise-admin", - "/de/enterprise/2.20/v3/enterprise": "/de/enterprise-server@2.20/rest/reference/enterprise-admin", - "/de/github-ae@latest/v3/enterprise-admin": "/de/github-ae@latest/rest/reference/enterprise-admin", - "/de/github-ae@latest/v3/enterprise": "/de/github-ae@latest/rest/reference/enterprise-admin", - "/de/free-pro-team@latest/rest/reference/gists": "/de/rest/reference/gists", - "/de/v3/gists": "/de/rest/reference/gists", - "/de/free-pro-team@latest/v3/gists": "/de/rest/reference/gists", - "/de/enterprise/3.0/rest/reference/gists": "/de/enterprise-server@3.0/rest/reference/gists", - "/de/enterprise/rest/reference/gists": "/de/enterprise-server@latest/rest/reference/gists", - "/de/enterprise-server@3.0/v3/gists": "/de/enterprise-server@3.0/rest/reference/gists", - "/de/enterprise/3.0/v3/gists": "/de/enterprise-server@3.0/rest/reference/gists", - "/de/enterprise/v3/gists": "/de/enterprise-server@latest/rest/reference/gists", - "/de/enterprise/2.20/rest/reference/gists": "/de/enterprise-server@2.20/rest/reference/gists", - "/de/enterprise-server@2.20/v3/gists": "/de/enterprise-server@2.20/rest/reference/gists", - "/de/enterprise/2.20/v3/gists": "/de/enterprise-server@2.20/rest/reference/gists", - "/de/github-ae@latest/v3/gists": "/de/github-ae@latest/rest/reference/gists", - "/de/free-pro-team@latest/rest/reference/git": "/de/rest/reference/git", - "/de/v3/git": "/de/rest/reference/git", - "/de/free-pro-team@latest/v3/git": "/de/rest/reference/git", - "/de/enterprise/3.0/rest/reference/git": "/de/enterprise-server@3.0/rest/reference/git", - "/de/enterprise/rest/reference/git": "/de/enterprise-server@latest/rest/reference/git", - "/de/enterprise-server@3.0/v3/git": "/de/enterprise-server@3.0/rest/reference/git", - "/de/enterprise/3.0/v3/git": "/de/enterprise-server@3.0/rest/reference/git", - "/de/enterprise/v3/git": "/de/enterprise-server@latest/rest/reference/git", - "/de/enterprise/2.20/rest/reference/git": "/de/enterprise-server@2.20/rest/reference/git", - "/de/enterprise-server@2.20/v3/git": "/de/enterprise-server@2.20/rest/reference/git", - "/de/enterprise/2.20/v3/git": "/de/enterprise-server@2.20/rest/reference/git", - "/de/github-ae@latest/v3/git": "/de/github-ae@latest/rest/reference/git", - "/de/free-pro-team@latest/rest/reference/gitignore": "/de/rest/reference/gitignore", - "/de/v3/gitignore": "/de/rest/reference/gitignore", - "/de/free-pro-team@latest/v3/gitignore": "/de/rest/reference/gitignore", - "/de/enterprise/3.0/rest/reference/gitignore": "/de/enterprise-server@3.0/rest/reference/gitignore", - "/de/enterprise/rest/reference/gitignore": "/de/enterprise-server@latest/rest/reference/gitignore", - "/de/enterprise-server@3.0/v3/gitignore": "/de/enterprise-server@3.0/rest/reference/gitignore", - "/de/enterprise/3.0/v3/gitignore": "/de/enterprise-server@3.0/rest/reference/gitignore", - "/de/enterprise/v3/gitignore": "/de/enterprise-server@latest/rest/reference/gitignore", - "/de/enterprise/2.20/rest/reference/gitignore": "/de/enterprise-server@2.20/rest/reference/gitignore", - "/de/enterprise-server@2.20/v3/gitignore": "/de/enterprise-server@2.20/rest/reference/gitignore", - "/de/enterprise/2.20/v3/gitignore": "/de/enterprise-server@2.20/rest/reference/gitignore", - "/de/github-ae@latest/v3/gitignore": "/de/github-ae@latest/rest/reference/gitignore", - "/de/free-pro-team@latest/rest/reference": "/de/rest/reference", - "/de/enterprise/3.0/rest/reference": "/de/enterprise-server@3.0/rest/reference", - "/de/enterprise/rest/reference": "/de/enterprise-server@latest/rest/reference", - "/de/enterprise/2.20/rest/reference": "/de/enterprise-server@2.20/rest/reference", - "/de/free-pro-team@latest/rest/reference/interactions": "/de/rest/reference/interactions", - "/de/v3/interactions": "/de/rest/reference/interactions", - "/de/free-pro-team@latest/v3/interactions": "/de/rest/reference/interactions", - "/de/free-pro-team@latest/rest/reference/issues": "/de/rest/reference/issues", - "/de/v3/issues": "/de/rest/reference/issues", - "/de/free-pro-team@latest/v3/issues": "/de/rest/reference/issues", - "/de/enterprise/3.0/rest/reference/issues": "/de/enterprise-server@3.0/rest/reference/issues", - "/de/enterprise/rest/reference/issues": "/de/enterprise-server@latest/rest/reference/issues", - "/de/enterprise-server@3.0/v3/issues": "/de/enterprise-server@3.0/rest/reference/issues", - "/de/enterprise/3.0/v3/issues": "/de/enterprise-server@3.0/rest/reference/issues", - "/de/enterprise/v3/issues": "/de/enterprise-server@latest/rest/reference/issues", - "/de/enterprise/2.20/rest/reference/issues": "/de/enterprise-server@2.20/rest/reference/issues", - "/de/enterprise-server@2.20/v3/issues": "/de/enterprise-server@2.20/rest/reference/issues", - "/de/enterprise/2.20/v3/issues": "/de/enterprise-server@2.20/rest/reference/issues", - "/de/github-ae@latest/v3/issues": "/de/github-ae@latest/rest/reference/issues", - "/de/free-pro-team@latest/rest/reference/licenses": "/de/rest/reference/licenses", - "/de/v3/licenses": "/de/rest/reference/licenses", - "/de/free-pro-team@latest/v3/licenses": "/de/rest/reference/licenses", - "/de/enterprise/3.0/rest/reference/licenses": "/de/enterprise-server@3.0/rest/reference/licenses", - "/de/enterprise/rest/reference/licenses": "/de/enterprise-server@latest/rest/reference/licenses", - "/de/enterprise-server@3.0/v3/licenses": "/de/enterprise-server@3.0/rest/reference/licenses", - "/de/enterprise/3.0/v3/licenses": "/de/enterprise-server@3.0/rest/reference/licenses", - "/de/enterprise/v3/licenses": "/de/enterprise-server@latest/rest/reference/licenses", - "/de/enterprise/2.20/rest/reference/licenses": "/de/enterprise-server@2.20/rest/reference/licenses", - "/de/enterprise-server@2.20/v3/licenses": "/de/enterprise-server@2.20/rest/reference/licenses", - "/de/enterprise/2.20/v3/licenses": "/de/enterprise-server@2.20/rest/reference/licenses", - "/de/github-ae@latest/v3/licenses": "/de/github-ae@latest/rest/reference/licenses", - "/de/free-pro-team@latest/rest/reference/markdown": "/de/rest/reference/markdown", - "/de/v3/markdown": "/de/rest/reference/markdown", - "/de/free-pro-team@latest/v3/markdown": "/de/rest/reference/markdown", - "/de/enterprise/3.0/rest/reference/markdown": "/de/enterprise-server@3.0/rest/reference/markdown", - "/de/enterprise/rest/reference/markdown": "/de/enterprise-server@latest/rest/reference/markdown", - "/de/enterprise-server@3.0/v3/markdown": "/de/enterprise-server@3.0/rest/reference/markdown", - "/de/enterprise/3.0/v3/markdown": "/de/enterprise-server@3.0/rest/reference/markdown", - "/de/enterprise/v3/markdown": "/de/enterprise-server@latest/rest/reference/markdown", - "/de/enterprise/2.20/rest/reference/markdown": "/de/enterprise-server@2.20/rest/reference/markdown", - "/de/enterprise-server@2.20/v3/markdown": "/de/enterprise-server@2.20/rest/reference/markdown", - "/de/enterprise/2.20/v3/markdown": "/de/enterprise-server@2.20/rest/reference/markdown", - "/de/github-ae@latest/v3/markdown": "/de/github-ae@latest/rest/reference/markdown", - "/de/free-pro-team@latest/rest/reference/meta": "/de/rest/reference/meta", - "/de/v3/meta": "/de/rest/reference/meta", - "/de/free-pro-team@latest/v3/meta": "/de/rest/reference/meta", - "/de/enterprise/3.0/rest/reference/meta": "/de/enterprise-server@3.0/rest/reference/meta", - "/de/enterprise/rest/reference/meta": "/de/enterprise-server@latest/rest/reference/meta", - "/de/enterprise-server@3.0/v3/meta": "/de/enterprise-server@3.0/rest/reference/meta", - "/de/enterprise/3.0/v3/meta": "/de/enterprise-server@3.0/rest/reference/meta", - "/de/enterprise/v3/meta": "/de/enterprise-server@latest/rest/reference/meta", - "/de/enterprise/2.20/rest/reference/meta": "/de/enterprise-server@2.20/rest/reference/meta", - "/de/enterprise-server@2.20/v3/meta": "/de/enterprise-server@2.20/rest/reference/meta", - "/de/enterprise/2.20/v3/meta": "/de/enterprise-server@2.20/rest/reference/meta", - "/de/github-ae@latest/v3/meta": "/de/github-ae@latest/rest/reference/meta", - "/de/free-pro-team@latest/rest/reference/migrations": "/de/rest/reference/migrations", - "/de/v3/migrations": "/de/rest/reference/migrations", - "/de/free-pro-team@latest/v3/migrations": "/de/rest/reference/migrations", - "/de/v3/migration": "/de/rest/reference/migrations", - "/de/free-pro-team@latest/v3/migration": "/de/rest/reference/migrations", - "/de/v3/migration/migrations": "/de/rest/reference/migrations", - "/de/free-pro-team@latest/v3/migration/migrations": "/de/rest/reference/migrations", - "/de/enterprise/3.0/rest/reference/oauth-authorizations": "/de/enterprise-server@3.0/rest/reference/oauth-authorizations", - "/de/enterprise/rest/reference/oauth-authorizations": "/de/enterprise-server@latest/rest/reference/oauth-authorizations", - "/de/enterprise-server@3.0/v3/oauth_authorizations": "/de/enterprise-server@3.0/rest/reference/oauth-authorizations", - "/de/enterprise/3.0/v3/oauth_authorizations": "/de/enterprise-server@3.0/rest/reference/oauth-authorizations", - "/de/enterprise/v3/oauth_authorizations": "/de/enterprise-server@latest/rest/reference/oauth-authorizations", - "/de/enterprise-server@3.0/v3/oauth-authorizations": "/de/enterprise-server@3.0/rest/reference/oauth-authorizations", - "/de/enterprise/3.0/v3/oauth-authorizations": "/de/enterprise-server@3.0/rest/reference/oauth-authorizations", - "/de/enterprise/v3/oauth-authorizations": "/de/enterprise-server@latest/rest/reference/oauth-authorizations", - "/de/enterprise/2.20/rest/reference/oauth-authorizations": "/de/enterprise-server@2.20/rest/reference/oauth-authorizations", - "/de/enterprise-server@2.20/v3/oauth_authorizations": "/de/enterprise-server@2.20/rest/reference/oauth-authorizations", - "/de/enterprise/2.20/v3/oauth_authorizations": "/de/enterprise-server@2.20/rest/reference/oauth-authorizations", - "/de/enterprise-server@2.20/v3/oauth-authorizations": "/de/enterprise-server@2.20/rest/reference/oauth-authorizations", - "/de/enterprise/2.20/v3/oauth-authorizations": "/de/enterprise-server@2.20/rest/reference/oauth-authorizations", - "/de/free-pro-team@latest/rest/reference/orgs": "/de/rest/reference/orgs", - "/de/v3/orgs": "/de/rest/reference/orgs", - "/de/free-pro-team@latest/v3/orgs": "/de/rest/reference/orgs", - "/de/enterprise/3.0/rest/reference/orgs": "/de/enterprise-server@3.0/rest/reference/orgs", - "/de/enterprise/rest/reference/orgs": "/de/enterprise-server@latest/rest/reference/orgs", - "/de/enterprise-server@3.0/v3/orgs": "/de/enterprise-server@3.0/rest/reference/orgs", - "/de/enterprise/3.0/v3/orgs": "/de/enterprise-server@3.0/rest/reference/orgs", - "/de/enterprise/v3/orgs": "/de/enterprise-server@latest/rest/reference/orgs", - "/de/enterprise/2.20/rest/reference/orgs": "/de/enterprise-server@2.20/rest/reference/orgs", - "/de/enterprise-server@2.20/v3/orgs": "/de/enterprise-server@2.20/rest/reference/orgs", - "/de/enterprise/2.20/v3/orgs": "/de/enterprise-server@2.20/rest/reference/orgs", - "/de/github-ae@latest/v3/orgs": "/de/github-ae@latest/rest/reference/orgs", - "/de/free-pro-team@latest/rest/reference/permissions-required-for-github-apps": "/de/rest/reference/permissions-required-for-github-apps", - "/de/v3/apps/permissions": "/de/rest/reference/permissions-required-for-github-apps", - "/de/free-pro-team@latest/v3/apps/permissions": "/de/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/3.0/rest/reference/permissions-required-for-github-apps": "/de/enterprise-server@3.0/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/rest/reference/permissions-required-for-github-apps": "/de/enterprise-server@latest/rest/reference/permissions-required-for-github-apps", - "/de/enterprise-server@3.0/v3/apps/permissions": "/de/enterprise-server@3.0/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/3.0/v3/apps/permissions": "/de/enterprise-server@3.0/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/v3/apps/permissions": "/de/enterprise-server@latest/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.20/rest/reference/permissions-required-for-github-apps": "/de/enterprise-server@2.20/rest/reference/permissions-required-for-github-apps", - "/de/enterprise-server@2.20/v3/apps/permissions": "/de/enterprise-server@2.20/rest/reference/permissions-required-for-github-apps", - "/de/enterprise/2.20/v3/apps/permissions": "/de/enterprise-server@2.20/rest/reference/permissions-required-for-github-apps", - "/de/github-ae@latest/v3/apps/permissions": "/de/github-ae@latest/rest/reference/permissions-required-for-github-apps", - "/de/free-pro-team@latest/rest/reference/projects": "/de/rest/reference/projects", - "/de/v3/projects": "/de/rest/reference/projects", - "/de/free-pro-team@latest/v3/projects": "/de/rest/reference/projects", - "/de/enterprise/3.0/rest/reference/projects": "/de/enterprise-server@3.0/rest/reference/projects", - "/de/enterprise/rest/reference/projects": "/de/enterprise-server@latest/rest/reference/projects", - "/de/enterprise-server@3.0/v3/projects": "/de/enterprise-server@3.0/rest/reference/projects", - "/de/enterprise/3.0/v3/projects": "/de/enterprise-server@3.0/rest/reference/projects", - "/de/enterprise/v3/projects": "/de/enterprise-server@latest/rest/reference/projects", - "/de/enterprise/2.20/rest/reference/projects": "/de/enterprise-server@2.20/rest/reference/projects", - "/de/enterprise-server@2.20/v3/projects": "/de/enterprise-server@2.20/rest/reference/projects", - "/de/enterprise/2.20/v3/projects": "/de/enterprise-server@2.20/rest/reference/projects", - "/de/github-ae@latest/v3/projects": "/de/github-ae@latest/rest/reference/projects", - "/de/free-pro-team@latest/rest/reference/pulls": "/de/rest/reference/pulls", - "/de/v3/pulls": "/de/rest/reference/pulls", - "/de/free-pro-team@latest/v3/pulls": "/de/rest/reference/pulls", - "/de/enterprise/3.0/rest/reference/pulls": "/de/enterprise-server@3.0/rest/reference/pulls", - "/de/enterprise/rest/reference/pulls": "/de/enterprise-server@latest/rest/reference/pulls", - "/de/enterprise-server@3.0/v3/pulls": "/de/enterprise-server@3.0/rest/reference/pulls", - "/de/enterprise/3.0/v3/pulls": "/de/enterprise-server@3.0/rest/reference/pulls", - "/de/enterprise/v3/pulls": "/de/enterprise-server@latest/rest/reference/pulls", - "/de/enterprise/2.20/rest/reference/pulls": "/de/enterprise-server@2.20/rest/reference/pulls", - "/de/enterprise-server@2.20/v3/pulls": "/de/enterprise-server@2.20/rest/reference/pulls", - "/de/enterprise/2.20/v3/pulls": "/de/enterprise-server@2.20/rest/reference/pulls", - "/de/github-ae@latest/v3/pulls": "/de/github-ae@latest/rest/reference/pulls", - "/de/free-pro-team@latest/rest/reference/rate-limit": "/de/rest/reference/rate-limit", - "/de/v3/rate_limit": "/de/rest/reference/rate-limit", - "/de/free-pro-team@latest/v3/rate_limit": "/de/rest/reference/rate-limit", - "/de/v3/rate-limit": "/de/rest/reference/rate-limit", - "/de/free-pro-team@latest/v3/rate-limit": "/de/rest/reference/rate-limit", - "/de/enterprise/3.0/rest/reference/rate-limit": "/de/enterprise-server@3.0/rest/reference/rate-limit", - "/de/enterprise/rest/reference/rate-limit": "/de/enterprise-server@latest/rest/reference/rate-limit", - "/de/enterprise-server@3.0/v3/rate_limit": "/de/enterprise-server@3.0/rest/reference/rate-limit", - "/de/enterprise/3.0/v3/rate_limit": "/de/enterprise-server@3.0/rest/reference/rate-limit", - "/de/enterprise/v3/rate_limit": "/de/enterprise-server@latest/rest/reference/rate-limit", - "/de/enterprise-server@3.0/v3/rate-limit": "/de/enterprise-server@3.0/rest/reference/rate-limit", - "/de/enterprise/3.0/v3/rate-limit": "/de/enterprise-server@3.0/rest/reference/rate-limit", - "/de/enterprise/v3/rate-limit": "/de/enterprise-server@latest/rest/reference/rate-limit", - "/de/enterprise/2.20/rest/reference/rate-limit": "/de/enterprise-server@2.20/rest/reference/rate-limit", - "/de/enterprise-server@2.20/v3/rate_limit": "/de/enterprise-server@2.20/rest/reference/rate-limit", - "/de/enterprise/2.20/v3/rate_limit": "/de/enterprise-server@2.20/rest/reference/rate-limit", - "/de/enterprise-server@2.20/v3/rate-limit": "/de/enterprise-server@2.20/rest/reference/rate-limit", - "/de/enterprise/2.20/v3/rate-limit": "/de/enterprise-server@2.20/rest/reference/rate-limit", - "/de/github-ae@latest/v3/rate_limit": "/de/github-ae@latest/rest/reference/rate-limit", - "/de/github-ae@latest/v3/rate-limit": "/de/github-ae@latest/rest/reference/rate-limit", - "/de/free-pro-team@latest/rest/reference/reactions": "/de/rest/reference/reactions", - "/de/v3/reactions": "/de/rest/reference/reactions", - "/de/free-pro-team@latest/v3/reactions": "/de/rest/reference/reactions", - "/de/enterprise/3.0/rest/reference/reactions": "/de/enterprise-server@3.0/rest/reference/reactions", - "/de/enterprise/rest/reference/reactions": "/de/enterprise-server@latest/rest/reference/reactions", - "/de/enterprise-server@3.0/v3/reactions": "/de/enterprise-server@3.0/rest/reference/reactions", - "/de/enterprise/3.0/v3/reactions": "/de/enterprise-server@3.0/rest/reference/reactions", - "/de/enterprise/v3/reactions": "/de/enterprise-server@latest/rest/reference/reactions", - "/de/enterprise/2.20/rest/reference/reactions": "/de/enterprise-server@2.20/rest/reference/reactions", - "/de/enterprise-server@2.20/v3/reactions": "/de/enterprise-server@2.20/rest/reference/reactions", - "/de/enterprise/2.20/v3/reactions": "/de/enterprise-server@2.20/rest/reference/reactions", - "/de/github-ae@latest/v3/reactions": "/de/github-ae@latest/rest/reference/reactions", - "/de/free-pro-team@latest/rest/reference/repos": "/de/rest/reference/repos", - "/de/v3/repos": "/de/rest/reference/repos", - "/de/free-pro-team@latest/v3/repos": "/de/rest/reference/repos", - "/de/enterprise/3.0/rest/reference/repos": "/de/enterprise-server@3.0/rest/reference/repos", - "/de/enterprise/rest/reference/repos": "/de/enterprise-server@latest/rest/reference/repos", - "/de/enterprise-server@3.0/v3/repos": "/de/enterprise-server@3.0/rest/reference/repos", - "/de/enterprise/3.0/v3/repos": "/de/enterprise-server@3.0/rest/reference/repos", - "/de/enterprise/v3/repos": "/de/enterprise-server@latest/rest/reference/repos", - "/de/enterprise/2.20/rest/reference/repos": "/de/enterprise-server@2.20/rest/reference/repos", - "/de/enterprise-server@2.20/v3/repos": "/de/enterprise-server@2.20/rest/reference/repos", - "/de/enterprise/2.20/v3/repos": "/de/enterprise-server@2.20/rest/reference/repos", - "/de/github-ae@latest/v3/repos": "/de/github-ae@latest/rest/reference/repos", - "/de/free-pro-team@latest/rest/reference/scim": "/de/rest/reference/scim", - "/de/v3/scim": "/de/rest/reference/scim", - "/de/free-pro-team@latest/v3/scim": "/de/rest/reference/scim", - "/de/free-pro-team@latest/rest/reference/search": "/de/rest/reference/search", - "/de/v3/search": "/de/rest/reference/search", - "/de/free-pro-team@latest/v3/search": "/de/rest/reference/search", - "/de/enterprise/3.0/rest/reference/search": "/de/enterprise-server@3.0/rest/reference/search", - "/de/enterprise/rest/reference/search": "/de/enterprise-server@latest/rest/reference/search", - "/de/enterprise-server@3.0/v3/search": "/de/enterprise-server@3.0/rest/reference/search", - "/de/enterprise/3.0/v3/search": "/de/enterprise-server@3.0/rest/reference/search", - "/de/enterprise/v3/search": "/de/enterprise-server@latest/rest/reference/search", - "/de/enterprise/2.20/rest/reference/search": "/de/enterprise-server@2.20/rest/reference/search", - "/de/enterprise-server@2.20/v3/search": "/de/enterprise-server@2.20/rest/reference/search", - "/de/enterprise/2.20/v3/search": "/de/enterprise-server@2.20/rest/reference/search", - "/de/github-ae@latest/v3/search": "/de/github-ae@latest/rest/reference/search", - "/de/free-pro-team@latest/rest/reference/secret-scanning": "/de/rest/reference/secret-scanning", - "/de/free-pro-team@latest/rest/reference/teams": "/de/rest/reference/teams", - "/de/v3/teams": "/de/rest/reference/teams", - "/de/free-pro-team@latest/v3/teams": "/de/rest/reference/teams", - "/de/enterprise/3.0/rest/reference/teams": "/de/enterprise-server@3.0/rest/reference/teams", - "/de/enterprise/rest/reference/teams": "/de/enterprise-server@latest/rest/reference/teams", - "/de/enterprise-server@3.0/v3/teams": "/de/enterprise-server@3.0/rest/reference/teams", - "/de/enterprise/3.0/v3/teams": "/de/enterprise-server@3.0/rest/reference/teams", - "/de/enterprise/v3/teams": "/de/enterprise-server@latest/rest/reference/teams", - "/de/enterprise/2.20/rest/reference/teams": "/de/enterprise-server@2.20/rest/reference/teams", - "/de/enterprise-server@2.20/v3/teams": "/de/enterprise-server@2.20/rest/reference/teams", - "/de/enterprise/2.20/v3/teams": "/de/enterprise-server@2.20/rest/reference/teams", - "/de/github-ae@latest/v3/teams": "/de/github-ae@latest/rest/reference/teams", - "/de/free-pro-team@latest/rest/reference/users": "/de/rest/reference/users", - "/de/v3/users": "/de/rest/reference/users", - "/de/free-pro-team@latest/v3/users": "/de/rest/reference/users", - "/de/enterprise/3.0/rest/reference/users": "/de/enterprise-server@3.0/rest/reference/users", - "/de/enterprise/rest/reference/users": "/de/enterprise-server@latest/rest/reference/users", - "/de/enterprise-server@3.0/v3/users": "/de/enterprise-server@3.0/rest/reference/users", - "/de/enterprise/3.0/v3/users": "/de/enterprise-server@3.0/rest/reference/users", - "/de/enterprise/v3/users": "/de/enterprise-server@latest/rest/reference/users", - "/de/enterprise/2.20/rest/reference/users": "/de/enterprise-server@2.20/rest/reference/users", - "/de/enterprise-server@2.20/v3/users": "/de/enterprise-server@2.20/rest/reference/users", - "/de/enterprise/2.20/v3/users": "/de/enterprise-server@2.20/rest/reference/users", - "/de/github-ae@latest/v3/users": "/de/github-ae@latest/rest/reference/users", "/enterprise/2.20/v3/activity/events": "/en/enterprise-server@2.20/rest/reference/activity#events", "/en/enterprise/2.20/v3/activity/events": "/en/enterprise-server@2.20/rest/reference/activity#events", "/enterprise/2.20/v3/activity/feeds": "/en/enterprise-server@2.20/rest/reference/activity#feeds", @@ -15125,4 +13972,4 @@ "/en/v4/union/sponsor": "/en/graphql/reference/unions#sponsor", "/v4/union/statuscheckrollupcontext": "/en/graphql/reference/unions#statuscheckrollupcontext", "/en/v4/union/statuscheckrollupcontext": "/en/graphql/reference/unions#statuscheckrollupcontext" -} \ No newline at end of file +} diff --git a/lib/rest/index.js b/lib/rest/index.js index b6572babd0..d698dc27f2 100644 --- a/lib/rest/index.js +++ b/lib/rest/index.js @@ -8,6 +8,17 @@ import { readCompressedJsonFileFallback } from '../read-json-file.js' const __dirname = path.dirname(fileURLToPath(import.meta.url)) const schemasPath = path.join(__dirname, 'static/decorated') +export const restRepoCategoryExceptions = [ + 'branches', + 'collaborators', + 'commits', + 'deployments', + 'pages', + 'releases', + 'repository-metrics', + 'webhooks', +] + export default async function getRest() { const operations = {} fs.readdirSync(schemasPath).forEach((filename) => { diff --git a/lib/rest/static/decorated/api.github.com.json b/lib/rest/static/decorated/api.github.com.json index 18c688e415..486b8cd987 100644 --- a/lib/rest/static/decorated/api.github.com.json +++ b/lib/rest/static/decorated/api.github.com.json @@ -14415,7 +14415,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -14646,6 +14646,16 @@ "rawDescription": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -14863,6 +14873,16 @@ "rawDescription": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -14878,7 +14898,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", @@ -25801,12 +25821,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned.", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -25851,15 +25871,15 @@ "html": "
    await octokit.request('GET /orgs/{org}/secret-scanning/alerts', {\n  org: 'org'\n})\n
    " } ], - "summary": "List secret scanning alerts by organization", - "description": "Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "summary": "List secret scanning alerts for an organization", + "description": "Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], "operationId": "secret-scanning/list-alerts-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-by-organization" + "url": "https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization" }, "x-github": { "githubCloudOnly": false, @@ -25867,12 +25887,12 @@ "category": "secret-scanning", "subcategory": null }, - "slug": "list-secret-scanning-alerts-by-organization", + "slug": "list-secret-scanning-alerts-for-an-organization", "category": "secret-scanning", "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", @@ -77762,12 +77782,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned. See \"About secret scanning for private repositories\" for a complete list of secret types (API slug).

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -77813,7 +77833,7 @@ } ], "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -77833,7 +77853,7 @@ "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", diff --git a/lib/rest/static/decorated/ghes-3.0.json b/lib/rest/static/decorated/ghes-3.0.json index 4f7acdf651..a8316de9f2 100644 --- a/lib/rest/static/decorated/ghes-3.0.json +++ b/lib/rest/static/decorated/ghes-3.0.json @@ -17418,7 +17418,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -17629,6 +17629,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -17832,6 +17842,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -17847,7 +17867,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", diff --git a/lib/rest/static/decorated/ghes-3.1.json b/lib/rest/static/decorated/ghes-3.1.json index 43670de1fc..cf56a27b91 100644 --- a/lib/rest/static/decorated/ghes-3.1.json +++ b/lib/rest/static/decorated/ghes-3.1.json @@ -17418,7 +17418,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -17629,6 +17629,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -17832,6 +17842,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -17847,7 +17867,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", @@ -71430,12 +71450,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.1/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.1/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned. See \"About secret scanning for private repositories\" for a complete list of secret types (API slug).

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -71481,7 +71501,7 @@ } ], "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -71501,7 +71521,7 @@ "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", diff --git a/lib/rest/static/decorated/ghes-3.2.json b/lib/rest/static/decorated/ghes-3.2.json index 4cf82cf681..622227cd1b 100644 --- a/lib/rest/static/decorated/ghes-3.2.json +++ b/lib/rest/static/decorated/ghes-3.2.json @@ -17638,7 +17638,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -17849,6 +17849,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -18052,6 +18062,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -18067,7 +18087,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", @@ -73757,12 +73777,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.2/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.2/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned. See \"About secret scanning for private repositories\" for a complete list of secret types (API slug).

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -73808,7 +73828,7 @@ } ], "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -73828,7 +73848,7 @@ "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", diff --git a/lib/rest/static/decorated/ghes-3.3.json b/lib/rest/static/decorated/ghes-3.3.json index 4c01a5dac5..f3dfe63b09 100644 --- a/lib/rest/static/decorated/ghes-3.3.json +++ b/lib/rest/static/decorated/ghes-3.3.json @@ -17572,7 +17572,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -17783,6 +17783,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -17980,6 +17990,16 @@ "rawDescription": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -17995,7 +18015,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", @@ -25812,12 +25832,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned.", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -25862,15 +25882,15 @@ "html": "
    await octokit.request('GET /orgs/{org}/secret-scanning/alerts', {\n  org: 'org'\n})\n
    " } ], - "summary": "List secret scanning alerts by organization", - "description": "Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "summary": "List secret scanning alerts for an organization", + "description": "Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], "operationId": "secret-scanning/list-alerts-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-by-organization" + "url": "https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization" }, "x-github": { "githubCloudOnly": false, @@ -25878,12 +25898,12 @@ "category": "secret-scanning", "subcategory": null }, - "slug": "list-secret-scanning-alerts-by-organization", + "slug": "list-secret-scanning-alerts-for-an-organization", "category": "secret-scanning", "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", @@ -74212,12 +74232,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned. See \"About secret scanning for private repositories\" for a complete list of secret types (API slug).

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -74263,7 +74283,7 @@ } ], "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -74283,7 +74303,7 @@ "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", diff --git a/lib/rest/static/decorated/github.ae.json b/lib/rest/static/decorated/github.ae.json index f9119275f9..c4074374da 100644 --- a/lib/rest/static/decorated/github.ae.json +++ b/lib/rest/static/decorated/github.ae.json @@ -5066,78 +5066,6 @@ } ] }, - { - "verb": "delete", - "requestPath": "/applications/{client_id}/grants/{access_token}", - "serverUrl": "https://{hostname}/api/v3", - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - }, - "descriptionHTML": "

    The client ID of your GitHub app.

    " - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -X DELETE \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/applications/CLIENT_ID/grants/ACCESS_TOKEN", - "html": "
    curl \\\n  -X DELETE \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://{hostname}/api/v3/applications/CLIENT_ID/grants/ACCESS_TOKEN
    " - }, - { - "lang": "JavaScript", - "source": "await octokit.request('DELETE /applications/{client_id}/grants/{access_token}', {\n client_id: 'client_id',\n access_token: 'access_token'\n})", - "html": "
    await octokit.request('DELETE /applications/{client_id}/grants/{access_token}', {\n  client_id: 'client_id',\n  access_token: 'access_token'\n})\n
    " - } - ], - "summary": "Revoke a grant for an application", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. You must also provide a valid token as `:access_token` and the grant for the token's owner will be deleted.\n\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on [the Applications settings page under \"Authorized OAuth Apps\" on GitHub AE](https://github.com/settings/applications#authorized).", - "tags": [ - "apps" - ], - "operationId": "apps/revoke-grant-for-application", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#revoke-a-grant-for-an-application" - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true, - "slug": "revoke-a-grant-for-an-application", - "category": "apps", - "categoryLabel": "Apps", - "subcategory": "oauth-applications", - "subcategoryLabel": "Oauth applications", - "notes": [], - "responses": [ - { - "httpStatusCode": "204", - "httpStatusMessage": "No Content", - "description": "Response" - } - ], - "bodyParameters": [], - "descriptionHTML": "

    Deprecation Notice: GitHub AE will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.

    \n

    OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. You must also provide a valid token as :access_token and the grant for the token's owner will be deleted.

    \n

    Deleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on the Applications settings page under \"Authorized OAuth Apps\" on GitHub AE.

    " - }, { "verb": "post", "requestPath": "/applications/{client_id}/token", @@ -5448,84 +5376,6 @@ } ] }, - { - "verb": "get", - "requestPath": "/applications/{client_id}/tokens/{access_token}", - "serverUrl": "https://{hostname}/api/v3", - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - }, - "descriptionHTML": "

    The client ID of your GitHub app.

    " - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/applications/CLIENT_ID/tokens/ACCESS_TOKEN", - "html": "
    curl \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://{hostname}/api/v3/applications/CLIENT_ID/tokens/ACCESS_TOKEN
    " - }, - { - "lang": "JavaScript", - "source": "await octokit.request('GET /applications/{client_id}/tokens/{access_token}', {\n client_id: 'client_id',\n access_token: 'access_token'\n})", - "html": "
    await octokit.request('GET /applications/{client_id}/tokens/{access_token}', {\n  client_id: 'client_id',\n  access_token: 'access_token'\n})\n
    " - } - ], - "summary": "Check an authorization", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth applications can use a special API method for checking OAuth token validity without exceeding the normal rate limits for failed login attempts. Authentication works differently with this particular endpoint. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.", - "tags": [ - "apps" - ], - "operationId": "apps/check-authorization", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#check-an-authorization" - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true, - "slug": "check-an-authorization", - "category": "apps", - "categoryLabel": "Apps", - "subcategory": "oauth-applications", - "subcategoryLabel": "Oauth applications", - "notes": [], - "bodyParameters": [], - "descriptionHTML": "

    Deprecation Notice: GitHub AE will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.

    \n

    OAuth applications can use a special API method for checking OAuth token validity without exceeding the normal rate limits for failed login attempts. Authentication works differently with this particular endpoint. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password. Invalid tokens will return 404 NOT FOUND.

    ", - "responses": [ - { - "httpStatusCode": "200", - "httpStatusMessage": "OK", - "description": "Response", - "payload": "
    {\n  \"id\": 1,\n  \"url\": \"https://api.github.com/authorizations/1\",\n  \"scopes\": [\n    \"public_repo\",\n    \"user\"\n  ],\n  \"token\": \"ghu_16C7e42F292c6912E7710c838347Ae178B4a\",\n  \"token_last_eight\": \"Ae178B4a\",\n  \"hashed_token\": \"25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\",\n  \"app\": {\n    \"url\": \"http://my-github-app.com\",\n    \"name\": \"my github app\",\n    \"client_id\": \"abcde12345fghij67890\"\n  },\n  \"note\": \"optional note\",\n  \"note_url\": \"http://optional/note/url\",\n  \"updated_at\": \"2011-09-06T20:39:23Z\",\n  \"created_at\": \"2011-09-06T17:26:27Z\",\n  \"fingerprint\": \"jklmnop12345678\",\n  \"expires_at\": \"2011-09-08T17:26:27Z\",\n  \"user\": {\n    \"login\": \"octocat\",\n    \"id\": 1,\n    \"node_id\": \"MDQ6VXNlcjE=\",\n    \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n    \"gravatar_id\": \"\",\n    \"url\": \"https://api.github.com/users/octocat\",\n    \"html_url\": \"https://github.com/octocat\",\n    \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n    \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n    \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n    \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n    \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n    \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n    \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n    \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n    \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n    \"type\": \"User\",\n    \"site_admin\": false\n  }\n}\n
    " - }, - { - "httpStatusCode": "404", - "httpStatusMessage": "Not Found", - "description": "Resource not found" - } - ] - }, { "verb": "post", "requestPath": "/applications/{client_id}/tokens/{access_token}", @@ -5599,78 +5449,6 @@ } ] }, - { - "verb": "delete", - "requestPath": "/applications/{client_id}/tokens/{access_token}", - "serverUrl": "https://{hostname}/api/v3", - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - }, - "descriptionHTML": "

    The client ID of your GitHub app.

    " - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -X DELETE \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/applications/CLIENT_ID/tokens/ACCESS_TOKEN", - "html": "
    curl \\\n  -X DELETE \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://{hostname}/api/v3/applications/CLIENT_ID/tokens/ACCESS_TOKEN
    " - }, - { - "lang": "JavaScript", - "source": "await octokit.request('DELETE /applications/{client_id}/tokens/{access_token}', {\n client_id: 'client_id',\n access_token: 'access_token'\n})", - "html": "
    await octokit.request('DELETE /applications/{client_id}/tokens/{access_token}', {\n  client_id: 'client_id',\n  access_token: 'access_token'\n})\n
    " - } - ], - "summary": "Revoke an authorization for an application", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth application owners can revoke a single token for an OAuth application. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password.", - "tags": [ - "apps" - ], - "operationId": "apps/revoke-authorization-for-application", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#revoke-an-authorization-for-an-application" - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true, - "slug": "revoke-an-authorization-for-an-application", - "category": "apps", - "categoryLabel": "Apps", - "subcategory": "oauth-applications", - "subcategoryLabel": "Oauth applications", - "notes": [], - "responses": [ - { - "httpStatusCode": "204", - "httpStatusMessage": "No Content", - "description": "Response" - } - ], - "bodyParameters": [], - "descriptionHTML": "

    Deprecation Notice: GitHub AE will discontinue OAuth endpoints that contain access_token in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving access_token to the request body. For more information, see the blog post.

    \n

    OAuth application owners can revoke a single token for an OAuth application. You must use Basic Authentication when accessing this endpoint, using the OAuth application's client_id and client_secret as the username and password.

    " - }, { "verb": "get", "requestPath": "/apps/{app_slug}", @@ -12291,7 +12069,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Default response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"updated_at\": \"2014-03-03T18:58:10Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20,\n    \"filled_seats\": 4,\n    \"seats\": 5\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_fork_private_repositories\": false\n}\n
    " }, { "httpStatusCode": "404", @@ -12522,6 +12300,16 @@ "rawDescription": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, "blog": { "type": "string", "example": "\"http://github.blog\"", @@ -12739,6 +12527,16 @@ "rawDescription": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "childParamsGroups": [] }, + { + "type": "boolean", + "description": "

    Toggles whether organization members can fork private organization repositories. Can be one of:
    \n* true - all organization members can fork private repositories within the organization.
    \n* false - no organization members can fork private repositories within the organization.

    ", + "default": false, + "name": "members_can_fork_private_repositories", + "in": "body", + "rawType": "boolean", + "rawDescription": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "childParamsGroups": [] + }, { "type": "string", "example": "\"http://github.blog\"", @@ -12754,7 +12552,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " + "payload": "
    {\n  \"login\": \"github\",\n  \"id\": 1,\n  \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjE=\",\n  \"url\": \"https://api.github.com/orgs/github\",\n  \"repos_url\": \"https://api.github.com/orgs/github/repos\",\n  \"events_url\": \"https://api.github.com/orgs/github/events\",\n  \"hooks_url\": \"https://api.github.com/orgs/github/hooks\",\n  \"issues_url\": \"https://api.github.com/orgs/github/issues\",\n  \"members_url\": \"https://api.github.com/orgs/github/members{/member}\",\n  \"public_members_url\": \"https://api.github.com/orgs/github/public_members{/member}\",\n  \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n  \"description\": \"A great organization\",\n  \"name\": \"github\",\n  \"company\": \"GitHub\",\n  \"blog\": \"https://github.com/blog\",\n  \"location\": \"San Francisco\",\n  \"email\": \"octocat@github.com\",\n  \"twitter_username\": \"github\",\n  \"is_verified\": true,\n  \"has_organization_projects\": true,\n  \"has_repository_projects\": true,\n  \"public_repos\": 2,\n  \"public_gists\": 1,\n  \"followers\": 20,\n  \"following\": 0,\n  \"html_url\": \"https://github.com/octocat\",\n  \"created_at\": \"2008-01-14T04:33:35Z\",\n  \"type\": \"Organization\",\n  \"total_private_repos\": 100,\n  \"owned_private_repos\": 100,\n  \"private_gists\": 81,\n  \"disk_usage\": 10000,\n  \"collaborators\": 8,\n  \"billing_email\": \"mona@github.com\",\n  \"plan\": {\n    \"name\": \"Medium\",\n    \"space\": 400,\n    \"private_repos\": 20\n  },\n  \"default_repository_permission\": \"read\",\n  \"members_can_create_repositories\": true,\n  \"two_factor_requirement_enabled\": true,\n  \"members_allowed_repository_creation_type\": \"all\",\n  \"members_can_create_public_repositories\": false,\n  \"members_can_create_private_repositories\": false,\n  \"members_can_create_internal_repositories\": false,\n  \"members_can_create_pages\": true,\n  \"members_can_create_public_pages\": true,\n  \"members_can_create_private_pages\": true,\n  \"members_can_fork_private_repositories\": false,\n  \"updated_at\": \"2014-03-03T18:58:10Z\"\n}\n
    " }, { "httpStatusCode": "409", @@ -65120,12 +64918,12 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/github-ae@latest/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/github-ae@latest/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" }, - "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned. See \"About secret scanning for private repositories\" for a complete list of secret types (API slug).

    " + "descriptionHTML": "

    A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"About secret scanning for private repositories\"\nfor a complete list of secret types (API slug).

    " }, { "name": "resolution", @@ -65171,7 +64969,7 @@ } ], "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -65191,7 +64989,7 @@ "categoryLabel": "Secret scanning", "notes": [], "bodyParameters": [], - "descriptionHTML": "

    Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", + "descriptionHTML": "

    Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the repo scope or security_events scope.

    \n

    GitHub Apps must have the secret_scanning_alerts read permission to use this endpoint.

    ", "responses": [ { "httpStatusCode": "200", diff --git a/lib/rest/static/dereferenced/api.github.com.deref.json b/lib/rest/static/dereferenced/api.github.com.deref.json index 0f4d51b3e1..d216e6e8f1 100644 --- a/lib/rest/static/dereferenced/api.github.com.deref.json +++ b/lib/rest/static/dereferenced/api.github.com.deref.json @@ -52022,6 +52022,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -52105,7 +52110,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -52262,6 +52268,11 @@ "description": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -52510,6 +52521,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -52592,6 +52608,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -94881,15 +94898,15 @@ }, "/orgs/{org}/secret-scanning/alerts": { "get": { - "summary": "List secret scanning alerts by organization", - "description": "Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "summary": "List secret scanning alerts for an organization", + "description": "Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], "operationId": "secret-scanning/list-alerts-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-by-organization" + "url": "https://docs.github.com/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization" }, "parameters": [ { @@ -94916,7 +94933,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned.", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -98678,6 +98695,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -99308,6 +99330,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -99915,6 +99942,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -186584,6 +186616,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -189214,6 +189259,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -191512,6 +191570,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -322771,6 +322842,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -325069,6 +325153,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -347542,7 +347639,7 @@ "/repos/{owner}/{repo}/secret-scanning/alerts": { "get": { "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -347584,7 +347681,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -372733,6 +372830,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -373337,6 +373439,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -373831,6 +373938,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -389565,6 +389677,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -392377,6 +392502,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -394675,6 +394813,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -400353,6 +400504,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -402808,6 +402972,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -405609,6 +405786,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -408159,6 +408349,19 @@ "items": { "type": "string" } + }, + "runtime_constraints": { + "type": "object", + "properties": { + "allowed_port_privacy_settings": { + "description": "The privacy settings a user can select from when forwarding a port.", + "type": "array", + "items": { + "type": "string" + }, + "nullable": true + } + } } }, "required": [ @@ -443639,6 +443842,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/rest/static/dereferenced/ghes-3.0.deref.json b/lib/rest/static/dereferenced/ghes-3.0.deref.json index 3ccfa49beb..23b6192cfb 100644 --- a/lib/rest/static/dereferenced/ghes-3.0.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.0.deref.json @@ -55198,6 +55198,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -55281,7 +55286,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -55433,6 +55439,11 @@ "description": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -55681,6 +55692,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -55763,6 +55779,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -82405,6 +82422,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -83034,6 +83056,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -83640,6 +83667,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -319427,6 +319459,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -320030,6 +320067,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -320523,6 +320565,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -354510,6 +354557,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/rest/static/dereferenced/ghes-3.1.deref.json b/lib/rest/static/dereferenced/ghes-3.1.deref.json index 6e94621eda..c29d1752c4 100644 --- a/lib/rest/static/dereferenced/ghes-3.1.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.1.deref.json @@ -55223,6 +55223,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -55306,7 +55311,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -55458,6 +55464,11 @@ "description": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -55706,6 +55717,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -55788,6 +55804,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -82720,6 +82737,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -83349,6 +83371,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -83955,6 +83982,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -304741,7 +304773,7 @@ "/repos/{owner}/{repo}/secret-scanning/alerts": { "get": { "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -304783,7 +304815,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.1/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.1/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -324321,6 +324353,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -324924,6 +324961,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -325417,6 +325459,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -359418,6 +359465,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/rest/static/dereferenced/ghes-3.2.deref.json b/lib/rest/static/dereferenced/ghes-3.2.deref.json index bfb9c50000..ed87f3cfd8 100644 --- a/lib/rest/static/dereferenced/ghes-3.2.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.2.deref.json @@ -56206,6 +56206,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -56289,7 +56294,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -56441,6 +56447,11 @@ "description": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -56689,6 +56700,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -56771,6 +56787,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -84675,6 +84692,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -85304,6 +85326,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -85910,6 +85937,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -312126,7 +312158,7 @@ "/repos/{owner}/{repo}/secret-scanning/alerts": { "get": { "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -312168,7 +312200,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.2/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.2/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -332229,6 +332261,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -332832,6 +332869,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -333325,6 +333367,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -367431,6 +367478,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/rest/static/dereferenced/ghes-3.3.deref.json b/lib/rest/static/dereferenced/ghes-3.3.deref.json index 4db6bb9f72..85356cf248 100644 --- a/lib/rest/static/dereferenced/ghes-3.3.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.3.deref.json @@ -56441,6 +56441,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -56524,7 +56529,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -56671,6 +56677,11 @@ "description": "Toggles whether organization members can create GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create GitHub Pages sites. \n\\* `false` - no organization members can create GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -56919,6 +56930,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -57001,6 +57017,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -84206,15 +84223,15 @@ }, "/orgs/{org}/secret-scanning/alerts": { "get": { - "summary": "List secret scanning alerts by organization", - "description": "Lists all secret scanning alerts for all eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "summary": "List secret scanning alerts for an organization", + "description": "Lists secret scanning alerts for eligible repositories in an organization, from newest to oldest.\nTo use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], "operationId": "secret-scanning/list-alerts-for-org", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-by-organization" + "url": "https://docs.github.com/enterprise-server@3.3/rest/reference/secret-scanning#list-secret-scanning-alerts-for-an-organization" }, "parameters": [ { @@ -84241,7 +84258,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned.", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -87454,6 +87471,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -88083,6 +88105,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -88689,6 +88716,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -319227,7 +319259,7 @@ "/repos/{owner}/{repo}/secret-scanning/alerts": { "get": { "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -319269,7 +319301,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/enterprise-server@3.3/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -339476,6 +339508,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -340079,6 +340116,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -340572,6 +340614,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -374575,6 +374622,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/rest/static/dereferenced/github.ae.deref.json b/lib/rest/static/dereferenced/github.ae.deref.json index 4c9a0d6227..bcc9658026 100644 --- a/lib/rest/static/dereferenced/github.ae.deref.json +++ b/lib/rest/static/dereferenced/github.ae.deref.json @@ -9576,53 +9576,6 @@ } } }, - "/applications/{client_id}/grants/{access_token}": { - "delete": { - "summary": "Revoke a grant for an application", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth application owners can revoke a grant for their OAuth application and a specific user. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. You must also provide a valid token as `:access_token` and the grant for the token's owner will be deleted.\n\nDeleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on [the Applications settings page under \"Authorized OAuth Apps\" on GitHub AE](https://github.com/settings/applications#authorized).", - "tags": [ - "apps" - ], - "operationId": "apps/revoke-grant-for-application", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#revoke-a-grant-for-an-application" - }, - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - } - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Response" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true - } - }, "/applications/{client_id}/token": { "post": { "summary": "Check a token", @@ -11385,760 +11338,6 @@ } }, "/applications/{client_id}/tokens/{access_token}": { - "get": { - "summary": "Check an authorization", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth applications can use a special API method for checking OAuth token validity without exceeding the normal rate limits for failed login attempts. Authentication works differently with this particular endpoint. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.", - "tags": [ - "apps" - ], - "operationId": "apps/check-authorization", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#check-an-authorization" - }, - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - } - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "title": "Authorization", - "description": "The authorization for an OAuth app, GitHub App, or a Personal Access Token.", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "url": { - "type": "string", - "format": "uri" - }, - "scopes": { - "description": "A list of scopes that this authorization is in.", - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "token": { - "type": "string" - }, - "token_last_eight": { - "type": "string", - "nullable": true - }, - "hashed_token": { - "type": "string", - "nullable": true - }, - "app": { - "type": "object", - "properties": { - "client_id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "url": { - "type": "string", - "format": "uri" - } - }, - "required": [ - "client_id", - "name", - "url" - ] - }, - "note": { - "type": "string", - "nullable": true - }, - "note_url": { - "type": "string", - "format": "uri", - "nullable": true - }, - "updated_at": { - "type": "string", - "format": "date-time" - }, - "created_at": { - "type": "string", - "format": "date-time" - }, - "fingerprint": { - "type": "string", - "nullable": true - }, - "user": { - "title": "Simple User", - "description": "Simple User", - "type": "object", - "properties": { - "name": { - "nullable": true, - "type": "string" - }, - "email": { - "nullable": true, - "type": "string" - }, - "login": { - "type": "string", - "example": "octocat" - }, - "id": { - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VXNlcjE=" - }, - "avatar_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" - }, - "gravatar_id": { - "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat" - }, - "followers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/followers" - }, - "following_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/following{/other_user}" - }, - "gists_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/gists{/gist_id}" - }, - "starred_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" - }, - "subscriptions_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" - }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" - }, - "repos_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" - }, - "events_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/events{/privacy}" - }, - "received_events_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/received_events" - }, - "type": { - "type": "string", - "example": "User" - }, - "site_admin": { - "type": "boolean" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:55Z\"" - } - }, - "required": [ - "avatar_url", - "events_url", - "followers_url", - "following_url", - "gists_url", - "gravatar_id", - "html_url", - "id", - "node_id", - "login", - "organizations_url", - "received_events_url", - "repos_url", - "site_admin", - "starred_url", - "subscriptions_url", - "type", - "url" - ], - "nullable": true - }, - "installation": { - "title": "Scoped Installation", - "type": "object", - "properties": { - "permissions": { - "title": "App Permissions", - "type": "object", - "description": "The permissions granted to the user-to-server access token.", - "properties": { - "actions": { - "type": "string", - "description": "The level of permission to grant the access token for GitHub Actions workflows, workflow runs, and artifacts. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "administration": { - "type": "string", - "description": "The level of permission to grant the access token for repository creation, deletion, settings, teams, and collaborators creation. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "checks": { - "type": "string", - "description": "The level of permission to grant the access token for checks on code. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "contents": { - "type": "string", - "description": "The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "deployments": { - "type": "string", - "description": "The level of permission to grant the access token for deployments and deployment statuses. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "environments": { - "type": "string", - "description": "The level of permission to grant the access token for managing repository environments. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "issues": { - "type": "string", - "description": "The level of permission to grant the access token for issues and related comments, assignees, labels, and milestones. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "metadata": { - "type": "string", - "description": "The level of permission to grant the access token to search repositories, list collaborators, and access repository metadata. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "packages": { - "type": "string", - "description": "The level of permission to grant the access token for packages published to GitHub Packages. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "pages": { - "type": "string", - "description": "The level of permission to grant the access token to retrieve Pages statuses, configuration, and builds, as well as create new builds. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "pull_requests": { - "type": "string", - "description": "The level of permission to grant the access token for pull requests and related comments, assignees, labels, milestones, and merges. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "repository_hooks": { - "type": "string", - "description": "The level of permission to grant the access token to manage the post-receive hooks for a repository. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "repository_projects": { - "type": "string", - "description": "The level of permission to grant the access token to manage repository projects, columns, and cards. Can be one of: `read`, `write`, or `admin`.", - "enum": [ - "read", - "write", - "admin" - ] - }, - "secret_scanning_alerts": { - "type": "string", - "description": "The level of permission to grant the access token to view and manage secret scanning alerts. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "secrets": { - "type": "string", - "description": "The level of permission to grant the access token to manage repository secrets. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "security_events": { - "type": "string", - "description": "The level of permission to grant the access token to view and manage security events like code scanning alerts. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "single_file": { - "type": "string", - "description": "The level of permission to grant the access token to manage just a single file. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "statuses": { - "type": "string", - "description": "The level of permission to grant the access token for commit statuses. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "vulnerability_alerts": { - "type": "string", - "description": "The level of permission to grant the access token to manage Dependabot alerts. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "workflows": { - "type": "string", - "description": "The level of permission to grant the access token to update GitHub Actions workflow files. Can be one of: `write`.", - "enum": [ - "write" - ] - }, - "members": { - "type": "string", - "description": "The level of permission to grant the access token for organization teams and members. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_administration": { - "type": "string", - "description": "The level of permission to grant the access token to manage access to an organization. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_hooks": { - "type": "string", - "description": "The level of permission to grant the access token to manage the post-receive hooks for an organization. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_plan": { - "type": "string", - "description": "The level of permission to grant the access token for viewing an organization's plan. Can be one of: `read`.", - "enum": [ - "read" - ] - }, - "organization_projects": { - "type": "string", - "description": "The level of permission to grant the access token to manage organization projects and projects beta (where available). Can be one of: `read`, `write`, or `admin`.", - "enum": [ - "read", - "write", - "admin" - ] - }, - "organization_packages": { - "type": "string", - "description": "The level of permission to grant the access token for organization packages published to GitHub Packages. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_secrets": { - "type": "string", - "description": "The level of permission to grant the access token to manage organization secrets. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_self_hosted_runners": { - "type": "string", - "description": "The level of permission to grant the access token to view and manage GitHub Actions self-hosted runners available to an organization. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "organization_user_blocking": { - "type": "string", - "description": "The level of permission to grant the access token to view and manage users blocked by the organization. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - }, - "team_discussions": { - "type": "string", - "description": "The level of permission to grant the access token to manage team discussions and related comments. Can be one of: `read` or `write`.", - "enum": [ - "read", - "write" - ] - } - }, - "example": { - "contents": "read", - "issues": "read", - "deployments": "write", - "single_file": "read" - } - }, - "repository_selection": { - "description": "Describe whether all repositories have been selected or there's a selection involved", - "type": "string", - "enum": [ - "all", - "selected" - ] - }, - "single_file_name": { - "type": "string", - "example": "config.yaml", - "nullable": true - }, - "has_multiple_single_files": { - "type": "boolean", - "example": true - }, - "single_file_paths": { - "type": "array", - "items": { - "type": "string" - }, - "example": [ - "config.yml", - ".github/issue_TEMPLATE.md" - ] - }, - "repositories_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" - }, - "account": { - "title": "Simple User", - "description": "Simple User", - "type": "object", - "properties": { - "name": { - "nullable": true, - "type": "string" - }, - "email": { - "nullable": true, - "type": "string" - }, - "login": { - "type": "string", - "example": "octocat" - }, - "id": { - "type": "integer", - "example": 1 - }, - "node_id": { - "type": "string", - "example": "MDQ6VXNlcjE=" - }, - "avatar_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/images/error/octocat_happy.gif" - }, - "gravatar_id": { - "type": "string", - "example": "41d064eb2195891e12d0413f63227ea7", - "nullable": true - }, - "url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat" - }, - "html_url": { - "type": "string", - "format": "uri", - "example": "https://github.com/octocat" - }, - "followers_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/followers" - }, - "following_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/following{/other_user}" - }, - "gists_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/gists{/gist_id}" - }, - "starred_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}" - }, - "subscriptions_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/subscriptions" - }, - "organizations_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/orgs" - }, - "repos_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/repos" - }, - "events_url": { - "type": "string", - "example": "https://api.github.com/users/octocat/events{/privacy}" - }, - "received_events_url": { - "type": "string", - "format": "uri", - "example": "https://api.github.com/users/octocat/received_events" - }, - "type": { - "type": "string", - "example": "User" - }, - "site_admin": { - "type": "boolean" - }, - "starred_at": { - "type": "string", - "example": "\"2020-07-09T00:17:55Z\"" - } - }, - "required": [ - "avatar_url", - "events_url", - "followers_url", - "following_url", - "gists_url", - "gravatar_id", - "html_url", - "id", - "node_id", - "login", - "organizations_url", - "received_events_url", - "repos_url", - "site_admin", - "starred_url", - "subscriptions_url", - "type", - "url" - ] - } - }, - "required": [ - "permissions", - "repository_selection", - "single_file_name", - "repositories_url", - "account" - ], - "nullable": true - }, - "expires_at": { - "type": "string", - "format": "date-time", - "nullable": true - } - }, - "required": [ - "app", - "id", - "note", - "note_url", - "scopes", - "token", - "hashed_token", - "token_last_eight", - "fingerprint", - "url", - "created_at", - "updated_at", - "expires_at" - ], - "nullable": true - }, - "examples": { - "default": { - "value": { - "id": 1, - "url": "https://api.github.com/authorizations/1", - "scopes": [ - "public_repo", - "user" - ], - "token": "ghu_16C7e42F292c6912E7710c838347Ae178B4a", - "token_last_eight": "Ae178B4a", - "hashed_token": "25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8", - "app": { - "url": "http://my-github-app.com", - "name": "my github app", - "client_id": "abcde12345fghij67890" - }, - "note": "optional note", - "note_url": "http://optional/note/url", - "updated_at": "2011-09-06T20:39:23Z", - "created_at": "2011-09-06T17:26:27Z", - "fingerprint": "jklmnop12345678", - "expires_at": "2011-09-08T17:26:27Z", - "user": { - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - } - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true - }, "post": { "summary": "Reset an authorization", "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth applications can use this API method to reset a valid OAuth token without end-user involvement. Applications must save the \"token\" property in the response because changes take effect immediately. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.", @@ -12865,51 +12064,6 @@ "subcategory": "oauth-applications" }, "deprecated": true - }, - "delete": { - "summary": "Revoke an authorization for an application", - "description": "**Deprecation Notice:** GitHub AE will discontinue OAuth endpoints that contain `access_token` in the path parameter. We have introduced new endpoints that allow you to securely manage tokens for OAuth Apps by moving `access_token` to the request body. For more information, see the [blog post](https://developer.github.com/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\nOAuth application owners can revoke a single token for an OAuth application. You must use [Basic Authentication](https://docs.github.com/github-ae@latest/rest/overview/other-authentication-methods#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password.", - "tags": [ - "apps" - ], - "operationId": "apps/revoke-authorization-for-application", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/github-ae@latest/rest/reference/apps#revoke-an-authorization-for-an-application" - }, - "parameters": [ - { - "name": "client_id", - "in": "path", - "required": true, - "description": "The client ID of your GitHub app.", - "schema": { - "type": "string" - } - }, - { - "name": "access_token", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "204": { - "description": "Response" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": false, - "removalDate": "2021-05-05", - "deprecationDate": "2020-02-14", - "category": "apps", - "subcategory": "oauth-applications" - }, - "deprecated": true } }, "/apps/{app_slug}": { @@ -36891,6 +36045,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -36974,7 +36133,8 @@ "members_can_create_public_repositories": false, "members_can_create_private_repositories": false, "members_can_create_internal_repositories": false, - "members_can_create_pages": true + "members_can_create_pages": true, + "members_can_fork_private_repositories": false } } } @@ -37131,6 +36291,11 @@ "description": "Toggles whether organization members can create private GitHub Pages sites. Can be one of: \n\\* `true` - all organization members can create private GitHub Pages sites. \n\\* `false` - no organization members can create private GitHub Pages sites. Existing published sites will not be impacted.", "default": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "description": "Toggles whether organization members can fork private organization repositories. Can be one of: \n\\* `true` - all organization members can fork private repositories within the organization. \n\\* `false` - no organization members can fork private repositories within the organization.", + "default": false + }, "blog": { "type": "string", "example": "\"http://github.blog\"" @@ -37379,6 +36544,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -37461,6 +36631,7 @@ "members_can_create_pages": true, "members_can_create_public_pages": true, "members_can_create_private_pages": true, + "members_can_fork_private_repositories": false, "updated_at": "2014-03-03T18:58:10Z" } } @@ -55570,6 +54741,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -56200,6 +55376,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -56807,6 +55988,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -279624,7 +278810,7 @@ "/repos/{owner}/{repo}/secret-scanning/alerts": { "get": { "summary": "List secret scanning alerts for a repository", - "description": "Lists all secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", + "description": "Lists secret scanning alerts for a private repository, from newest to oldest. To use this endpoint, you must be an administrator for the repository or organization, and you must use an access token with the `repo` scope or `security_events` scope.\n\nGitHub Apps must have the `secret_scanning_alerts` read permission to use this endpoint.", "tags": [ "secret-scanning" ], @@ -279666,7 +278852,7 @@ { "name": "secret_type", "in": "query", - "description": "A comma-separated list of secret types to return. By default all secret types are returned. See \"[About secret scanning for private repositories](https://docs.github.com/github-ae@latest/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\" for a complete list of secret types (API slug).", + "description": "A comma-separated list of secret types to return. By default all secret types are returned.\nSee \"[About secret scanning for private repositories](https://docs.github.com/github-ae@latest/code-security/secret-security/about-secret-scanning#about-secret-scanning-for-private-repositories)\"\nfor a complete list of secret types (API slug).", "required": false, "schema": { "type": "string" @@ -297022,6 +296208,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -297626,6 +296817,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -298120,6 +297316,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" @@ -331244,6 +330445,11 @@ "type": "boolean", "example": true }, + "members_can_fork_private_repositories": { + "type": "boolean", + "example": false, + "nullable": true + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index bd0aa5189d..18d7cee477 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2be7450f959923e9e74ef2417ba1e0f98f2b0f8f769edc7a0dccbe32d374bc43 -size 606254 +oid sha256:1a1e1f60336c84696469e722527397d48db185bd615e85e32016109bdadcf4b5 +size 611086 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 196b7ad9a3..5c768fd210 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e29e0333ed08ac36598d6ff228d4e458bf00c473068fdef283cdd91646e4ca71 -size 1519746 +oid sha256:8ee66fb8c5cdd7cc540152f7359d58c50811881d9847b9d03e9c4d275ab048aa +size 1640682 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 12a01c2523..20db0edeca 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:957fd9236b3cff0840a3d908ebecef15ab68c42eb30c6f9c804aa5d0b3ff7ece -size 946504 +oid sha256:a00ba04ef7612997cf689a7d0658c725846ba8a25ee0cce33431fe8cdd08dc38 +size 947148 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index f177b4a838..68fed89fbd 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cede915d8b6ada5024a210e84607cf3d5f3a57b6aea03ea6e094f50dc8cc69e6 -size 3861798 +oid sha256:fd9e48788cf1a0e585251b3bccd2cf9afd26c94266725730406d3a5ec71ada15 +size 3872007 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 71cc91d83b..4ef7d62385 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c4f7526e153f8d589134be25bc79d8c223836d27359640fdda260a9dce4ec82 -size 586882 +oid sha256:4b333f34924c7c1e19b5a846ffd7e19af16819292f6a553493c2316beb03f621 +size 585377 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 767d47425f..8c4803af6e 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1f4372c423103b13221312ad48f9b4627d0dadfb04349b1fe06ecfccf3a709e -size 2686115 +oid sha256:bc852273b7f8f8ba9b0913af990a222bdd468aeec99220ce426eed4709fdffa3 +size 2708176 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index c47a487296..bce4d104f4 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6dd12cd293f768d0fc43c30015025414e711fab4f35ece2768aceb1a45a6a412 -size 617421 +oid sha256:da67c2ca3e6d8f097f9b743931150c034b2ccf990f650558fde77115775ab4d4 +size 617857 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 58e05cb50d..1cf25ac8aa 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64cfb8115ce79ed960ada4164e5b320ee341afb3c75b06340e7bdd786549229b -size 3374927 +oid sha256:bee36e4f9215703dd2b0e840b21ae2fb04f64ecd7dad394ccb379eb4b8c09f5f +size 3421348 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index a1e9cda1cc..9049f78575 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06ebce3539c0c3d81871d7bb0bb934d8ebd2afddd2df7638e781b954f028195e -size 587292 +oid sha256:14f74a0dbe68a1d107dc181ee294e77efd70d60dc3661430cbba848966ad6318 +size 592007 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 1b837d7cd4..26d6e1573f 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d236a6dd1298a9c45da23cadca0386f6a27ec3932e2142f23f765c822f32169f -size 2621762 +oid sha256:796eafe4e978d87be813e02c4a0030c98e7054f84096994621c688e2417ada25 +size 2725952 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index f42faf16e9..aac6113d6c 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a4d0abe235b1ef37d8c48028b508abc79fa394d631b77b25fe1adda0134c923 -size 619782 +oid sha256:925a2093191c5258c5b5b03631afcd4bdeebbc1d88a427f0310f8fd7890a4801 +size 624410 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 841b88f44f..3c6e859aa0 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e44a26316b35a72af762e14001667540d7a3205b209953163679f8cba22a7f6 -size 1561172 +oid sha256:e1afb1e359e453cf30135b0b26a676fb835810575166bb2e549e6782c491e60c +size 1682307 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 5d5ed6e71b..302c8c80d5 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd3752fed3b87ce435024ed4542d30a3dbd5caf3f17215965206943a9515454a -size 970753 +oid sha256:a98c4768f710b38825697adf21e8c4c62d9a605eba3d9472fbf1ba79b1ce84ee +size 971661 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 20b207cea5..eba691f0e0 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5efa1e4c94ea4b259d428b9e505d4c5ee0191dad42ad647757066fc51abf3ec1 -size 3951338 +oid sha256:1f4e606743cd7798a5c383c1f6788b4ee68072ffb59d073ecb96d86c050828e0 +size 3963435 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 81fb4741c8..afb9db62d8 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18e60b7e4ea240f1a17eec61232369b57dd0a5c97d2f91e865848c85be05ecd6 -size 598468 +oid sha256:44e73caf2e4cebaf9619deac81c8297839c4b9c851bb66c03872d28d82125112 +size 597261 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 88b1395c7e..bcc7b31e7e 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e81e23aaec2e2d2e216407b571d44a4e77bd96da1a75088e8bb20e261f4705a5 -size 2749641 +oid sha256:c346e8edd4883e0dcca932305d67cc5c980f665a54cfb6af74d44a318cb02591 +size 2771836 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 85018cfd4f..1d3dab9bb2 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:367dd10809ea62356a24ac0c9583cf7bd92fcdac96a534e8830ad2d2889d5d6d -size 630916 +oid sha256:2d0d2d65bcb46f7132c9ba3e3c6a68ac37efcbd7dfc50f0f59f0af235cd35ee2 +size 631082 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 8c9ca27119..dc408588a8 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f589bfa156bd769c32137db94f8377bcc305afd006982ed813f3b6065f2aeeff -size 3454777 +oid sha256:a68a0eac5fa0fca328b15f562201fb80a6085ee4190f4fd51110a1cc7166e0f8 +size 3499963 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index db063e0454..f8f9f4d2e1 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acc3eda9958bf8375f4288c216870ef5e4571d770119bd04345bbe1328d82529 -size 599827 +oid sha256:5ef97656a850aaaaef741486b0333340bec031e32e6ceeb379dfa6d2cec40ed0 +size 604655 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 593b57bf91..4823df836d 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23a83aba4cc246a25fafa8731722009fec7f37459b8699db87a4ee0309f975b4 -size 2685417 +oid sha256:24505180f62e917da9baf68bf352ef3a933ef9b0c3a6f968076b9a1b7ce8c7f7 +size 2789498 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 3a89bfa056..32de242d09 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9f061324826b57966391d2aa62389bffe105a85a07ad2917e9e70939f884b34 -size 631084 +oid sha256:8b02908ea8936cefae3964b430cce95b392fc36f8395c53cd5007e525f26da08 +size 635763 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index d3d58d4ca7..580596bf39 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13c8aa1563de1e70c27ba0b959f2d6ab9d65bca0f00efe1849299b17a9dd5bda -size 1586928 +oid sha256:5db7db45de6e5430cc622cf125585205a2c1ec73e1426e960a04780239a1b36f +size 1709140 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index fd1de986c4..3c1169e8fc 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d17fdb0c32414ef447f06d9c1f4ad0ef9bf798a5c960c723840c38f6dca19114 -size 1001804 +oid sha256:949919e8b706a5580c5b6ade5a1b03431181221e73e384902c61f866c9470717 +size 1002697 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index bb819233a1..3da02a425f 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b237f79f43ad60088d6309794d81913af073b8edd97eba46bae9a870b7f25e4b -size 4074489 +oid sha256:4e5dd653e90772d811a86dee37feb16f2b8ece828674caa184d85a73e90cd40b +size 4084233 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 4b677f714f..3c39c20006 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f394d2d0f627c73c4f7b68621007b1b5d87bb99fb07261b1a0ccbc0095609da -size 609124 +oid sha256:cc79f89015b384d00a60f15255e1b381aafafc89ece18450c97fcb94155ef976 +size 607830 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index a7b3c9a3cf..b1dd5d3a8d 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8490b9710ec159c9b1c7228817f2286fdaf483d795fcef6e5d36d9fa960a1cb -size 2804465 +oid sha256:8a102874a006a38a8ef916783381687816057d7676d4b7afcc54fbee1a65268c +size 2825948 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index edf6569b7a..03ad71331e 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26fe24be543a62979fe04ade2178bc09d945094e553a8d011f75ff373dcb53b4 -size 642502 +oid sha256:33b6677536aa2656bd89acdd5a65d5123d132c22790a98b7f5e6dd7a87b7ed5a +size 643012 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index ca927e16fe..1b3d387802 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab17fd602ce5066a3107d71d3392bcbce166ee2ccee61b999d31f15bf67061e7 -size 3521493 +oid sha256:5f59ef6125581aef7f4863fa71effec4e8737114fe387bfe732b64b71719a2fd +size 3566059 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 46ab8c6751..e39a115d3b 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dd9e46ab2bd494d44120e44f90b93dabad4504f4270afdb604a5cdc5f2e5f6a -size 610718 +oid sha256:9a7cbac774516e712798bdfaa50207b12fe105fc24527773fb176b35ab8489fd +size 615783 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index 15dc6b84e3..e8c485359b 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a24fcb39cf3b9a429f62fb80996924740cf7c7dec6b799e207ece04531eb08ff -size 2734752 +oid sha256:41d863ee09916a545aadeddd9e97fc2374106d9fa458716f2ad95bbba796ab50 +size 2839021 diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br index a0b49cdd1d..16b5a73260 100644 --- a/lib/search/indexes/github-docs-3.3-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc1cab180b763da7149059561cdbcb2493f95212c263cd590595d231a109da21 -size 651795 +oid sha256:6840c661d6e9832fa529fd8a77ba001f89f66af06dfc9a45e26d97ad41ec9ba3 +size 656530 diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br index 1f37b70382..9c68aa7bcf 100644 --- a/lib/search/indexes/github-docs-3.3-cn.json.br +++ b/lib/search/indexes/github-docs-3.3-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcfde0fb121e830b742abee770608b5a7f44fad0d2375e998e6a0c1dcc0c9fd9 -size 1645944 +oid sha256:6c42a0d3a4a1fa3501fe26f57884c3c7774b616287ccceb7617832679e226ae2 +size 1766345 diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br index 074c8463ab..097c46d165 100644 --- a/lib/search/indexes/github-docs-3.3-en-records.json.br +++ b/lib/search/indexes/github-docs-3.3-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49c1aaa533347e757f45e1776dc6abb65bd918b0171cb075c8ff4e5bb1c741cf -size 1039359 +oid sha256:faffabcb25e68d1d0c334d3fbba37b5a15087cfc6612119fabb1811fc6d12111 +size 1036409 diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br index 8d6cefa16f..916198be0d 100644 --- a/lib/search/indexes/github-docs-3.3-en.json.br +++ b/lib/search/indexes/github-docs-3.3-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ce724ce0c470a220cff42da686f665159df2e4de5563e17fa7b2d3a6655d724 -size 4175411 +oid sha256:a4a1019f340f455b53f89da190f18da77cd5041062a7b9c18fdd1e5278c26e14 +size 4185771 diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br index 74bc35ec77..940ac13f26 100644 --- a/lib/search/indexes/github-docs-3.3-es-records.json.br +++ b/lib/search/indexes/github-docs-3.3-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:554bd9dfbdc8e42335b346f456b21316674b9084d26c17edab8fc11a658c7fa5 -size 627089 +oid sha256:d4fe913be261f117110be8c0445891efc827f9245faa1cb55037cf9bc3c1988d +size 625954 diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br index c55c473e39..0ef33d6481 100644 --- a/lib/search/indexes/github-docs-3.3-es.json.br +++ b/lib/search/indexes/github-docs-3.3-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69d5731cb46b56973398bb5dca28bd2384882ba3166c7d40cc58e4efa3f35de4 -size 2902819 +oid sha256:0cfff836e95868a4d818b269a665f860114efa6dcd764bf0bcb5c7eed7d23e61 +size 2925224 diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br index fd0f430846..87e10b70a9 100644 --- a/lib/search/indexes/github-docs-3.3-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3736c6011c087c00839703241bcbe498bfc3b90ffa6717f26cf12899bb2087e5 -size 663982 +oid sha256:763b8d3e472a903072dd0a56c107e15c307973346d6c681f0214a6246bfde615 +size 664321 diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br index 9edf087626..a29a11f964 100644 --- a/lib/search/indexes/github-docs-3.3-ja.json.br +++ b/lib/search/indexes/github-docs-3.3-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd280a93029069236441d33eb27cebfcf1bdd4dd0d0c4ef42d618cba4673ac97 -size 3639607 +oid sha256:7e31e09b2b69783bf84b0309cdae16b3ba177f797da901588acee52662b7532d +size 3686859 diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br index 0ea7b199cb..fc9195cda9 100644 --- a/lib/search/indexes/github-docs-3.3-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:282d13b0e7ae73ad1258c2cddfd58ae30a0a837b9223a91c209e56cdaff2939b -size 629956 +oid sha256:bb747d2a22e47a7fa2a090391594fb8fd3fd881ec2dfd0f259f3fcb0d4a80a2f +size 634815 diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br index d0ea2324a2..5ea42f64b4 100644 --- a/lib/search/indexes/github-docs-3.3-pt.json.br +++ b/lib/search/indexes/github-docs-3.3-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a4b53022e830c79d6f1450da50d392ef42b4e616d4af4dc078cca7a1830db8c -size 2822211 +oid sha256:5f98d2f583c5527dbc16cf3c3dfd0fac75572e4df1dcd3b7eb86987a16fe113d +size 2926168 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 7c0f119040..ee81a44ff5 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56697b4831f4b3d763ac7d14c2235eccafe301c2d6a8980c97d3b756ec64e635 -size 859847 +oid sha256:982f21adee67a5afd48d400c6afbfbc805b4db39903e5d9965464d2fc074e035 +size 846522 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 770dd01846..a17d8e0444 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a1a9b828b344cdabfd65691f743b213bea5da168103022ea36eeaeb1a76a735 -size 1843525 +oid sha256:6adc23635abea142bda7b487027b3db2314b567c20853346717bc26e02dfa349 +size 1936265 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index bf42ed43bc..bac70cb067 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ffcfd8a80c47af5eb2cc55fd7bd88706586289bd9b21d2ce866748acccb46e3 -size 1315325 +oid sha256:65d20efcefabe78cc210c46d87206413eeb932c770c4145b83c5838579c21b23 +size 1318887 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 13ce251544..26cc4a7737 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fee37bb2ccf43955c6c708852897162cf76eea8a7b4bb507b18dbbd1a03fd840 -size 5010241 +oid sha256:74deffb619e2a98c33efe8ffcc3134bf21c874fa7cd488016590c4acd48f6b8e +size 5028034 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 0612e069da..6a02d511cb 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5dcb54cb20cc6787104a84d10fcbdcae6f192e1a175a14494191d18a88c1dd83 -size 806765 +oid sha256:6cedab5f3d3f50466ac2096c2c07ad9462606f415bd7cd9ec4e4cb3e1e7e6f6a +size 796375 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 17a2639956..8341985424 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af0bde936edd666c7f07e8267106365cceda8de8c50450e52dcdef1e83a5856e -size 3525161 +oid sha256:0cb4f319fbf4f85e21cd6faead8637dd44d75c5cd610d44e68f209a11a58f8f2 +size 3509074 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 7b258ccaed..0894525b31 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:496df16c6828675a54d9259cba433c46839e6d4227560e236b7b1a4ab04cab2f -size 874172 +oid sha256:8938cc80e91d08037a222ef8c10c2c3c8b5feb6f6e7c95e03562ebbb43db0b4f +size 860212 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index d62595cfae..b01d5145de 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:694dd08c152c78a5f07daa70f37a93687ff2279ca898bb1fcdace962ae5edc98 -size 4540903 +oid sha256:6e294574e39b043cbc9e15f95655d0632032dc6adfae594d62170a4c20c6b25f +size 4499964 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index e0bd78288e..feafbb2626 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64510c43b7369d427b92b15ef7138bfd37f8e0090df611b699824f13e96510ee -size 809405 +oid sha256:21ea7872661f85f9c5f82e0d8433762dcd2f7f1ba6ed2de1fd5ea1137ea60e12 +size 807095 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 86b25011cd..008d8a9658 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36647696ae63891664e278bd6541d7e89fe2ce87484215328716e2e865989da8 -size 3425175 +oid sha256:1693e67df95b337c7bcc6c4672bbc0e00b0b23e23ebceeda9039328a81c2976c +size 3485564 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index a2420ea9cc..b2713beff3 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f0b7f0831153bbf7356b0cf4508e1335634ff0c384df49f96c1796ed5fea88e9 -size 505076 +oid sha256:b96cd7768b13d09c3c91b980ba16f7f163cb39175e0fee530e5ce85bf7134884 +size 510447 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 9490cb24f4..549b56159a 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ed3df386b294d9fef8b70cd6a3ec06b65f5267c3489814b602b0ff9e4911a4e -size 1238623 +oid sha256:c1a44111cdb2b6a453669b1661c8e6caf1f316be991e705555bbd5e8258398b6 +size 1316207 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 5e11badeba..96f4f0b9af 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f5bee5003cd843dd74c2a201db21eeaaf9191c46009da50d7011fcd7672c881 -size 825935 +oid sha256:170732811733a41598fe5a42b810b42d65ba8b8892844f8bf77f49e2ee35a70c +size 826204 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index ce123863d3..82eeca3f23 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2cd3e91115e8987c2b8408b8bfc6c4097a350c41faf4b799ba7dd664366b3494 -size 3298189 +oid sha256:436db35a0ea1ab61eb8645ad3269b7ec704ab05b7fff7820f349998a4d59607f +size 3305942 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 9a06eaccab..ebc542cb5b 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8d29679030f1507c69641412edb1c0f212a7cfce8f35665007e8211673a7491 -size 490016 +oid sha256:2b8ff7e4462fa3b269bce7f82d1e6ebbff8b7d5fc853bdf858e74bbeb25d175a +size 488771 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index dd62b505f1..c4373ad71e 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f633f2ba9daf91ba1145d06c68fcd3dadfa5b752aad8f31fcc8f205471a786b2 -size 2186347 +oid sha256:f615460250f639da7c4a5b37e77885aa09af1c075a43fb139fca1fdf2edaab36 +size 2200568 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 9db65692f9..6ee793a1f1 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d80ea426352d388961d178be88f58b0790f4b8ca9e4c329de934900cd2870129 -size 512851 +oid sha256:1d6605f84013846aa745ed4aef7fb75f95db14bbaa0cfd4301099236c6f945e0 +size 516499 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index e1836ee15b..f82e0d569f 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c905b38cca98e6242d5b5de7d5e662f725e2209d969d0e4c355333db0a29cfe -size 2700806 +oid sha256:b390e2d15cfa9f7a7d3a022b1ac02a378ccadd31711d3d5517711c1b125d3be7 +size 2748949 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index d5a6820b88..61b6a13bc4 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:319bf7572c51ecf713da82877436aeb8538ef9e235e84e3f02cd60411a3434fd -size 491525 +oid sha256:a4308486c125870534eb583ae1c640541868fe58af7c15fe76de52d831ae1223 +size 496255 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 28c9ae04ce..8a0f29defa 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffee9c528742ddc5830b078e9a71b4c3db5b87dd81a975738bd88fc6b2bad4d8 -size 2130650 +oid sha256:9f4b9dab54ae1d97bb1194ca34ede998d1a31034003af2c821c8568d2775d0b0 +size 2203233 diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br index 8276142d7a..2f31b8e7b6 100644 --- a/lib/search/indexes/github-docs-ghec-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:291863db0b3b4f44042c6e326863c9cac61fff4b4417d74bf5fe6597b53cf17a -size 765742 +oid sha256:def7c0cbfc6cf4a052370aaf54835aac20c80f493e5f64b589eb9225eb92dec5 +size 770880 diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br index 8b19ee054e..a16d1b85c9 100644 --- a/lib/search/indexes/github-docs-ghec-cn.json.br +++ b/lib/search/indexes/github-docs-ghec-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:710bb36ae7885aa0cedf38115903489ba4162e978d43258398f4342ed07cb937 -size 1846309 +oid sha256:53d9c21980893278e4f5d311f11210a2ecb940d60a356c01637e5ebccee60c58 +size 1956973 diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br index 3301701230..72bf39d094 100644 --- a/lib/search/indexes/github-docs-ghec-en-records.json.br +++ b/lib/search/indexes/github-docs-ghec-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:562afbee08ae75615ad3e7c4846f74b2e42d16a9ef6da30f20816911e3f93064 -size 1178395 +oid sha256:b59e1c539e9ff79e788e7bdb198af2a9e1583489c3f4fa01491473dd54c99468 +size 1176910 diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br index 698ad58c17..15e97367f1 100644 --- a/lib/search/indexes/github-docs-ghec-en.json.br +++ b/lib/search/indexes/github-docs-ghec-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ca4b25b7bf1dbd2b8c2d76872e7873698cdf40aa164ffc45b1b11ec1cc2dd62 -size 4741334 +oid sha256:26a75c7dd2bb197540809669b41d037bfa1db67ae89bfe06d692d9bbac139d24 +size 4758448 diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br index 6823fe0438..38059ce6cf 100644 --- a/lib/search/indexes/github-docs-ghec-es-records.json.br +++ b/lib/search/indexes/github-docs-ghec-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a4c899fb47adda794be874fb0043c1bb36b97b6b1ea12fb6e3621273ca6664d -size 743243 +oid sha256:3245a5f382bf05e818b5bc91a727da6249a6bf516d4794397d48dbc9334b99f5 +size 741340 diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br index a90e1e351f..58871ebe63 100644 --- a/lib/search/indexes/github-docs-ghec-es.json.br +++ b/lib/search/indexes/github-docs-ghec-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be732dfc19252a4ae41c3438e3379758b17d487dc923db51f940331acaeca111 -size 3429352 +oid sha256:145a06800e68e0ac985fc5eb27ceb237ec0013f727bb90107466f94d2c1acd62 +size 3452987 diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br index c3d1db09cd..0ab4adb8b1 100644 --- a/lib/search/indexes/github-docs-ghec-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5a32e47d290b77ff6d16bac1084919b33dd87c8919604a396b6827acc59ba70 -size 783406 +oid sha256:7b714d4e8cb98b993956865e115d1eae6326c00e7340779c30616a75713e157f +size 786784 diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br index 06fd81009b..9c66858fee 100644 --- a/lib/search/indexes/github-docs-ghec-ja.json.br +++ b/lib/search/indexes/github-docs-ghec-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1b38ee9d8075cd9385e9e0ea905eeeccef445a128d88ceeb6a486416c764f35 -size 4291177 +oid sha256:67d382350f3706471cdde2a181af0031c38ae60cf351251efa37865bb3933a20 +size 4341383 diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br index 3c7a448d59..5f1b7457d5 100644 --- a/lib/search/indexes/github-docs-ghec-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f755c48b4907cc6a965552336ce00b542f38d83951868fc6ed3c20fe143371d3 -size 746590 +oid sha256:b3e15f0c4625e3d31c1ce0fd7e317df614c9875cd8d22518f8b8b9010fda2fd8 +size 752231 diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br index e88b2da272..1eaad58ff0 100644 --- a/lib/search/indexes/github-docs-ghec-pt.json.br +++ b/lib/search/indexes/github-docs-ghec-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6125eac0ca8989d361e89078c870669d0d818240dca0cb880554fcef810f5ddb -size 3319807 +oid sha256:36c3fbde5982428f9e91d607b4711bdde75afb27cdc9e8fb30758033edfc9f03 +size 3426312 diff --git a/lib/search/popular-pages.json b/lib/search/popular-pages.json index f31184e9e9..bf65323c32 100644 --- a/lib/search/popular-pages.json +++ b/lib/search/popular-pages.json @@ -1,1000 +1,1000 @@ -{"path_article": "index", "path_count": 2235652} -{"path_article": "authentication/connecting-to-github-with-ssh", "path_count": 482660} -{"path_article": "authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", "path_count": 445071} -{"path_article": "authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token", "path_count": 437947} -{"path_article": "authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account", "path_count": 292554} -{"path_article": "pages", "path_count": 281607} -{"path_article": "github/site-policy/github-privacy-statement", "path_count": 275910} -{"path_article": "github/site-policy/github-terms-of-service", "path_count": 269316} -{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax", "path_count": 151336} -{"path_article": "codespaces", "path_count": 148114} -{"path_article": "actions/learn-github-actions/workflow-syntax-for-github-actions", "path_count": 140584} -{"path_article": "authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys", "path_count": 135512} -{"path_article": "get-started/quickstart/set-up-git", "path_count": 130331} -{"path_article": "rest", "path_count": 128971} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line", "path_count": 127225} -{"path_article": "issues/trying-out-the-new-projects-experience", "path_count": 124902} -{"path_article": "actions", "path_count": 118330} -{"path_article": "repositories/creating-and-managing-repositories/cloning-a-repository", "path_count": 117282} -{"path_article": "get-started/getting-started-with-git/managing-remote-repositories", "path_count": 109288} -{"path_article": "get-started/quickstart/hello-world", "path_count": 100140} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication", "path_count": 99735} -{"path_article": "rest/reference/repos", "path_count": 99620} -{"path_article": "authentication/troubleshooting-ssh/error-permission-denied-publickey", "path_count": 88529} -{"path_article": "get-started/getting-started-with-git/about-remote-repositories", "path_count": 88430} -{"path_article": "get-started/getting-started-with-git/setting-your-username-in-git", "path_count": 85931} -{"path_article": "actions/learn-github-actions/events-that-trigger-workflows", "path_count": 73088} -{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site", "path_count": 71525} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/changing-your-primary-email-address", "path_count": 70989} -{"path_article": "get-started/learning-about-github/githubs-products", "path_count": 70547} -{"path_article": "authentication", "path_count": 70396} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address", "path_count": 69489} -{"path_article": "get-started/quickstart", "path_count": 66946} -{"path_article": "get-started/getting-started-with-git/caching-your-github-credentials-in-git", "path_count": 66171} -{"path_article": "get-started/learning-about-github/types-of-github-accounts", "path_count": 60238} -{"path_article": "account-and-profile", "path_count": 58549} -{"path_article": "authentication/connecting-to-github-with-ssh/testing-your-ssh-connection", "path_count": 57589} -{"path_article": "actions/learn-github-actions", "path_count": 55655} -{"path_article": "get-started/quickstart/fork-a-repo", "path_count": 54137} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests", "path_count": 53880} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository", "path_count": 53162} -{"path_article": "authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases", "path_count": 49845} -{"path_article": "get-started/quickstart/create-a-repo", "path_count": 47304} -{"path_article": "actions/learn-github-actions/environment-variables", "path_count": 47159} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/installing-github-desktop", "path_count": 45617} -{"path_article": "get-started/learning-about-github/access-permissions-on-github", "path_count": 44354} -{"path_article": "get-started/getting-started-with-git/ignoring-files", "path_count": 43931} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile", "path_count": 42864} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests", "path_count": 41642} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile", "path_count": 41611} -{"path_article": "get-started/signing-up-for-github/verifying-your-email-address", "path_count": 40941} -{"path_article": "get-started", "path_count": 40650} -{"path_article": "actions/learn-github-actions/contexts", "path_count": 40545} -{"path_article": "authentication/managing-commit-signature-verification", "path_count": 40009} -{"path_article": "pages/getting-started-with-github-pages/about-github-pages", "path_count": 37829} -{"path_article": null, "path_count": 37742} -{"path_article": "pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", "path_count": 37603} -{"path_article": "get-started/using-github/supported-browsers", "path_count": 37432} -{"path_article": "get-started/using-git/pushing-commits-to-a-remote-repository", "path_count": 37408} -{"path_article": "get-started/getting-started-with-git/updating-credentials-from-the-macos-keychain", "path_count": 36930} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository", "path_count": 36714} -{"path_article": "search-github/searching-on-github/searching-issues-and-pull-requests", "path_count": 36378} -{"path_article": "repositories/working-with-files/managing-files/adding-a-file-to-a-repository", "path_count": 36316} -{"path_article": "developers/overview/managing-deploy-keys", "path_count": 36019} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards", "path_count": 35326} -{"path_article": "rest/overview/other-authentication-methods", "path_count": 33853} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks", "path_count": 33807} -{"path_article": "pages/getting-started-with-github-pages", "path_count": 33773} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-npm-registry", "path_count": 33692} -{"path_article": "organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions", "path_count": 33430} -{"path_article": "rest/overview", "path_count": 33172} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/changing-your-github-username", "path_count": 33129} -{"path_article": "actions/security-guides/encrypted-secrets", "path_count": 32969} -{"path_article": "repositories/creating-and-managing-repositories/deleting-a-repository", "path_count": 32749} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-docker-registry", "path_count": 32215} -{"path_article": "rest/overview/resources-in-the-rest-api", "path_count": 31345} -{"path_article": "pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message", "path_count": 30920} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa", "path_count": 30733} -{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message", "path_count": 30544} -{"path_article": "authentication/managing-commit-signature-verification/generating-a-new-gpg-key", "path_count": 29743} -{"path_article": "repositories/releasing-projects-on-github/about-releases", "path_count": 28887} -{"path_article": "actions/learn-github-actions/understanding-github-actions", "path_count": 28843} -{"path_article": "packages", "path_count": 28655} -{"path_article": "get-started/using-github/troubleshooting-connectivity-problems", "path_count": 28396} -{"path_article": "desktop", "path_count": 28303} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches", "path_count": 28010} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication", "path_count": 27795} -{"path_article": "developers/apps/building-oauth-apps/authorizing-oauth-apps", "path_count": 27790} -{"path_article": "issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue", "path_count": 27153} -{"path_article": "rest/guides/getting-started-with-the-rest-api", "path_count": 26807} -{"path_article": "pages/getting-started-with-github-pages/creating-a-github-pages-site", "path_count": 26776} -{"path_article": "github", "path_count": 26655} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes", "path_count": 26416} -{"path_article": "authentication/connecting-to-github-with-ssh/about-ssh", "path_count": 26331} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility", "path_count": 26125} -{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site", "path_count": 25733} -{"path_article": "actions/hosting-your-own-runners/about-self-hosted-runners", "path_count": 25728} -{"path_article": "actions/learn-github-actions/workflow-commands-for-github-actions", "path_count": 25294} -{"path_article": "authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on", "path_count": 24932} -{"path_article": "repositories/releasing-projects-on-github/managing-releases-in-a-repository", "path_count": 24801} -{"path_article": "actions/security-guides/automatic-token-authentication", "path_count": 24774} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews", "path_count": 24323} -{"path_article": "graphql", "path_count": 23917} -{"path_article": "authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on", "path_count": 23772} -{"path_article": "developers/webhooks-and-events/webhooks/about-webhooks", "path_count": 23361} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository", "path_count": 23212} -{"path_article": "graphql/overview/explorer", "path_count": 23111} -{"path_article": "actions/using-github-hosted-runners/about-github-hosted-runners", "path_count": 23017} -{"path_article": "developers/webhooks-and-events/webhooks/webhook-events-and-payloads", "path_count": 22997} -{"path_article": "rest/reference/users", "path_count": 22797} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners", "path_count": 22672} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites", "path_count": 22461} -{"path_article": "pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line", "path_count": 22354} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch", "path_count": 22341} -{"path_article": "rest/reference/actions", "path_count": 22251} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-dependabot-security-updates", "path_count": 22162} -{"path_article": "codespaces/getting-started/quickstart", "path_count": 21953} -{"path_article": "authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository", "path_count": 21921} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-container-registry", "path_count": 21898} -{"path_article": "actions/quickstart", "path_count": 21803} -{"path_article": "repositories/working-with-files/managing-large-files", "path_count": 21710} -{"path_article": "packages/learn-github-packages/introduction-to-github-packages", "path_count": 21583} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule", "path_count": 21583} -{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line", "path_count": 21198} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request", "path_count": 20488} -{"path_article": "search-github/searching-on-github/searching-code", "path_count": 20323} -{"path_article": "billing/managing-your-github-billing-settings/setting-your-billing-email", "path_count": 19922} -{"path_article": "github/copilot/github-copilot-telemetry-terms", "path_count": 19793} -{"path_article": "admin/release-notes", "path_count": 19785} -{"path_article": "repositories/creating-and-managing-repositories/duplicating-a-repository", "path_count": 19751} -{"path_article": "rest/reference/pulls", "path_count": 19722} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/managing-branches", "path_count": 19328} -{"path_article": "actions/learn-github-actions/reusing-workflows", "path_count": 19321} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication", "path_count": 18887} -{"path_article": "repositories/creating-and-managing-repositories/transferring-a-repository", "path_count": 18828} -{"path_article": "authentication/authenticating-with-saml-single-sign-on", "path_count": 18752} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews", "path_count": 18693} -{"path_article": "get-started/quickstart/github-flow", "path_count": 18662} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/reverting-a-commit", "path_count": 18651} -{"path_article": "get-started/getting-started-with-git/configuring-git-to-handle-line-endings", "path_count": 18168} -{"path_article": "authentication/managing-commit-signature-verification/displaying-verification-statuses-for-all-of-your-commits", "path_count": 18133} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll", "path_count": 18072} -{"path_article": "rest/reference/search", "path_count": 17930} -{"path_article": "developers/apps/building-oauth-apps/scopes-for-oauth-apps", "path_count": 17854} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github/syncing-your-branch", "path_count": 17542} -{"path_article": "get-started/getting-started-with-git/why-is-git-always-asking-for-my-password", "path_count": 17491} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials", "path_count": 17354} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication-recovery-methods", "path_count": 17320} -{"path_article": "authentication/keeping-your-account-and-data-secure/about-authentication-to-github", "path_count": 17316} -{"path_article": "get-started/signing-up-for-github/signing-up-for-a-new-github-account", "path_count": 17274} -{"path_article": "get-started/using-git/getting-changes-from-a-remote-repository", "path_count": 16789} -{"path_article": "repositories", "path_count": 16736} -{"path_article": "rest/reference", "path_count": 16734} -{"path_article": "issues/trying-out-the-new-projects-experience/about-projects", "path_count": 16594} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables", "path_count": 16552} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization", "path_count": 16543} -{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack", "path_count": 16528} -{"path_article": "actions/learn-github-actions/expressions", "path_count": 16481} -{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github", "path_count": 16433} -{"path_article": "authentication/managing-commit-signature-verification/signing-commits", "path_count": 16388} -{"path_article": "authentication/managing-commit-signature-verification/adding-a-new-gpg-key-to-your-github-account", "path_count": 16321} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository", "path_count": 16208} -{"path_article": "pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site", "path_count": 16038} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme", "path_count": 15812} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/permission-levels-for-a-user-account-repository", "path_count": 15770} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request", "path_count": 15620} -{"path_article": "authentication/keeping-your-account-and-data-secure/creating-a-strong-password", "path_count": 15478} -{"path_article": "actions/creating-actions/creating-a-docker-container-action", "path_count": 15466} -{"path_article": "authentication/keeping-your-account-and-data-secure/githubs-ssh-key-fingerprints", "path_count": 15445} -{"path_article": "actions/managing-workflow-runs/manually-running-a-workflow", "path_count": 15387} -{"path_article": "repositories/creating-and-managing-repositories/troubleshooting-cloning-errors", "path_count": 15214} -{"path_article": "actions/creating-actions/metadata-syntax-for-github-actions", "path_count": 14993} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository", "path_count": 14832} -{"path_article": "actions/learn-github-actions/managing-complex-workflows", "path_count": 14563} -{"path_article": "rest/reference/issues", "path_count": 14545} -{"path_article": "pages/quickstart", "path_count": 14423} -{"path_article": "repositories/working-with-files/managing-files/deleting-files-in-a-repository", "path_count": 14416} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates", "path_count": 14187} -{"path_article": "github/site-policy", "path_count": 13981} -{"path_article": "developers", "path_count": 13973} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/deleting-your-user-account", "path_count": 13891} -{"path_article": "repositories/working-with-files/managing-large-files/about-large-files-on-github", "path_count": 13889} -{"path_article": "authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps", "path_count": 13648} -{"path_article": "github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists", "path_count": 13544} -{"path_article": "github-cli/github-cli/about-github-cli", "path_count": 13522} -{"path_article": "authentication/managing-commit-signature-verification/telling-git-about-your-signing-key", "path_count": 13200} -{"path_article": "actions/automating-builds-and-tests/about-continuous-integration", "path_count": 13128} -{"path_article": "github/writing-on-github", "path_count": 13088} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork", "path_count": 13050} -{"path_article": "billing/managing-billing-for-github-actions/about-billing-for-github-actions", "path_count": 13027} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/adding-an-email-address-to-your-github-account", "path_count": 12993} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile", "path_count": 12967} -{"path_article": "search-github/getting-started-with-searching-on-github/about-searching-on-github", "path_count": 12757} -{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages", "path_count": 12734} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls", "path_count": 12713} -{"path_article": "repositories/creating-and-managing-repositories/creating-a-new-repository", "path_count": 12698} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry", "path_count": 12691} -{"path_article": "desktop/installing-and-configuring-github-desktop", "path_count": 12633} -{"path_article": "get-started/onboarding/getting-started-with-your-github-account", "path_count": 12585} -{"path_article": "repositories/working-with-files/managing-large-files/installing-git-large-file-storage", "path_count": 12554} -{"path_article": "developers/overview/github-developer-program", "path_count": 12452} -{"path_article": "pages/getting-started-with-github-pages/adding-a-theme-to-your-github-pages-site-with-the-theme-chooser", "path_count": 12321} -{"path_article": "graphql/reference/objects", "path_count": 12155} -{"path_article": "authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on", "path_count": 12127} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications", "path_count": 12026} -{"path_article": "actions/advanced-guides/storing-workflow-data-as-artifacts", "path_count": 11967} -{"path_article": "organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization", "path_count": 11904} -{"path_article": "rest/reference/orgs", "path_count": 11859} -{"path_article": "get-started/quickstart/github-glossary", "path_count": 11831} -{"path_article": "get-started/using-github/github-command-palette", "path_count": 11805} -{"path_article": "actions/learn-github-actions/finding-and-customizing-actions", "path_count": 11779} -{"path_article": "repositories/working-with-files/managing-files/renaming-a-file", "path_count": 11732} -{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages", "path_count": 11694} -{"path_article": "get-started/learning-about-github/about-github-advanced-security", "path_count": 11676} -{"path_article": "admin", "path_count": 11592} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch", "path_count": 11569} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-nuget-registry", "path_count": 11556} -{"path_article": "github/site-policy/github-community-guidelines", "path_count": 11291} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization", "path_count": 11288} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/cloning-and-forking-repositories-from-github-desktop", "path_count": 11233} -{"path_article": "repositories/creating-and-managing-repositories/about-repositories", "path_count": 11052} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork", "path_count": 11046} -{"path_article": "codespaces/the-githubdev-web-based-editor", "path_count": 11027} -{"path_article": "pull-requests/committing-changes-to-your-project/viewing-and-comparing-commits/comparing-commits", "path_count": 11026} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll", "path_count": 11003} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository", "path_count": 10971} -{"path_article": "github/site-policy/submitting-content-removal-requests", "path_count": 10894} -{"path_article": "pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github", "path_count": 10849} -{"path_article": "organizations", "path_count": 10831} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/countries-where-sms-authentication-is-supported", "path_count": 10810} -{"path_article": "authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials", "path_count": 10678} -{"path_article": "repositories/working-with-files/using-files/working-with-non-code-files", "path_count": 10664} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts", "path_count": 10523} -{"path_article": "rest/reference/git", "path_count": 10448} -{"path_article": "developers/apps/getting-started-with-apps/about-apps", "path_count": 10444} -{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github", "path_count": 10440} -{"path_article": "actions/hosting-your-own-runners/adding-self-hosted-runners", "path_count": 10269} -{"path_article": "repositories/creating-and-managing-repositories/renaming-a-repository", "path_count": 10259} -{"path_article": "repositories/creating-and-managing-repositories/creating-a-repository-from-a-template", "path_count": 10223} -{"path_article": "get-started/using-git/dealing-with-non-fast-forward-errors", "path_count": 10210} -{"path_article": "authentication/managing-commit-signature-verification/checking-for-existing-gpg-keys", "path_count": 10190} -{"path_article": "github/extending-github/git-automation-with-oauth-tokens", "path_count": 10189} -{"path_article": "actions/advanced-guides/caching-dependencies-to-speed-up-workflows", "path_count": 10072} -{"path_article": "rest/reference/checks", "path_count": 10072} -{"path_article": "developers/webhooks-and-events/webhooks/creating-webhooks", "path_count": 9965} -{"path_article": "repositories/working-with-files/managing-large-files/configuring-git-large-file-storage", "path_count": 9916} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository", "path_count": 9885} -{"path_article": "search-github/getting-started-with-searching-on-github/understanding-the-search-syntax", "path_count": 9845} -{"path_article": "pages/getting-started-with-github-pages/securing-your-github-pages-site-with-https", "path_count": 9845} -{"path_article": "codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization", "path_count": 9830} -{"path_article": "authentication/managing-commit-signature-verification/about-commit-signature-verification", "path_count": 9815} -{"path_article": "actions/deployment/targeting-different-environments/using-environments-for-deployment", "path_count": 9796} -{"path_article": "code-security", "path_count": 9795} -{"path_article": "actions/creating-actions/creating-a-composite-action", "path_count": 9716} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/viewing-contributions-on-your-profile", "path_count": 9665} -{"path_article": "admin/all-releases", "path_count": 9633} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization", "path_count": 9524} -{"path_article": "billing", "path_count": 9494} -{"path_article": "authentication/keeping-your-account-and-data-secure/about-githubs-ip-addresses", "path_count": 9490} -{"path_article": "issues/tracking-your-work-with-issues/about-issues", "path_count": 9479} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request", "path_count": 9390} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests", "path_count": 9320} -{"path_article": "developers/apps", "path_count": 9305} -{"path_article": "communities/maintaining-your-safety-on-github/reporting-abuse-or-spam", "path_count": 9297} -{"path_article": "discussions", "path_count": 9295} -{"path_article": "issues/tracking-your-work-with-issues/creating-an-issue", "path_count": 9218} -{"path_article": "pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request", "path_count": 9073} -{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits/comparing-commits", "path_count": 9055} -{"path_article": "communities/documenting-your-project-with-wikis/about-wikis", "path_count": 8853} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github", "path_count": 8814} -{"path_article": "billing/managing-billing-for-github-codespaces/about-billing-for-codespaces", "path_count": 8742} -{"path_article": "developers/apps/building-github-apps/authenticating-with-github-apps", "path_count": 8722} -{"path_article": "desktop/installing-and-configuring-github-desktop/overview/getting-started-with-github-desktop", "path_count": 8651} -{"path_article": "get-started/using-github/keyboard-shortcuts", "path_count": 8570} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line", "path_count": 8551} -{"path_article": "actions/creating-actions/about-custom-actions", "path_count": 8547} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request", "path_count": 8516} -{"path_article": "actions/learn-github-actions/essential-features-of-github-actions", "path_count": 8486} -{"path_article": "actions/hosting-your-own-runners", "path_count": 8484} -{"path_article": "search-github/searching-on-github/searching-for-repositories", "path_count": 8473} -{"path_article": "organizations/collaborating-with-groups-in-organizations/about-organizations", "path_count": 8460} -{"path_article": "actions/learn-github-actions/creating-workflow-templates", "path_count": 8270} -{"path_article": "repositories/working-with-files/managing-files/moving-a-file-to-a-new-location", "path_count": 8263} -{"path_article": "actions/learn-github-actions/usage-limits-billing-and-administration", "path_count": 8227} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/adding-a-repository-from-your-local-computer-to-github-desktop", "path_count": 8153} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github", "path_count": 8110} -{"path_article": "authentication/troubleshooting-ssh/using-ssh-over-the-https-port", "path_count": 8037} -{"path_article": "get-started/using-git/resolving-merge-conflicts-after-a-git-rebase", "path_count": 8004} -{"path_article": "get-started/quickstart/git-and-github-learning-resources", "path_count": 8003} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/cloning-a-repository-from-github-to-github-desktop", "path_count": 7987} -{"path_article": "issues/tracking-your-work-with-issues/about-task-lists", "path_count": 7894} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository", "path_count": 7858} -{"path_article": "pages/getting-started-with-github-pages/unpublishing-a-github-pages-site", "path_count": 7847} -{"path_article": "codespaces/customizing-your-codespace/configuring-codespaces-for-your-project", "path_count": 7811} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning", "path_count": 7806} -{"path_article": "admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users", "path_count": 7794} -{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github", "path_count": 7745} -{"path_article": "admin/overview/about-enterprise-accounts", "path_count": 7732} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/viewing-the-branch-history", "path_count": 7711} -{"path_article": "authentication/keeping-your-account-and-data-secure", "path_count": 7581} -{"path_article": "repositories/working-with-files/managing-large-files/about-git-large-file-storage", "path_count": 7581} -{"path_article": "rest/reference/activity", "path_count": 7554} -{"path_article": "graphql/guides/forming-calls-with-graphql", "path_count": 7540} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer", "path_count": 7504} -{"path_article": "authentication/troubleshooting-ssh", "path_count": 7461} -{"path_article": "organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch", "path_count": 7420} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll", "path_count": 7361} -{"path_article": "github-cli", "path_count": 7355} -{"path_article": "rest/reference/apps", "path_count": 7343} -{"path_article": "issues/using-labels-and-milestones-to-track-work/managing-labels", "path_count": 7338} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/creating-a-permanent-link-to-a-code-snippet", "path_count": 7330} -{"path_article": "actions/monitoring-and-troubleshooting-workflows/adding-a-workflow-status-badge", "path_count": 7319} -{"path_article": "search-github/searching-on-github/searching-users", "path_count": 7181} -{"path_article": "github/site-policy/dmca-takedown-policy", "path_count": 7158} -{"path_article": "actions/publishing-packages/publishing-docker-images", "path_count": 7149} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github", "path_count": 7136} -{"path_article": "actions/creating-actions", "path_count": 7089} -{"path_article": "communities/documenting-your-project-with-wikis/adding-or-editing-wiki-pages", "path_count": 7068} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/cherry-picking-a-commit", "path_count": 7034} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/remembering-your-github-username-or-email", "path_count": 6980} -{"path_article": "repositories/creating-and-managing-repositories/creating-a-template-repository", "path_count": 6964} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/about-issue-and-pull-request-templates", "path_count": 6956} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/adding-content-to-your-github-pages-site-using-jekyll", "path_count": 6937} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/attaching-files", "path_count": 6928} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews", "path_count": 6865} -{"path_article": "rest/guides", "path_count": 6836} -{"path_article": "codespaces/overview", "path_count": 6834} -{"path_article": "actions/learn-github-actions/using-workflow-templates", "path_count": 6822} -{"path_article": "developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", "path_count": 6790} -{"path_article": "repositories/working-with-files/managing-files/creating-new-files", "path_count": 6764} -{"path_article": "code-security/secret-scanning/about-secret-scanning", "path_count": 6722} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally", "path_count": 6714} -{"path_article": "rest/overview/api-previews", "path_count": 6604} -{"path_article": "repositories/working-with-files/managing-files/editing-files", "path_count": 6585} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll", "path_count": 6583} -{"path_article": "search-github/searching-on-github/searching-commits", "path_count": 6582} -{"path_article": "authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase", "path_count": 6525} -{"path_article": "repositories/creating-and-managing-repositories/restoring-a-deleted-repository", "path_count": 6448} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews", "path_count": 6422} -{"path_article": "admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server", "path_count": 6400} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request", "path_count": 6373} -{"path_article": "authentication/keeping-your-account-and-data-secure/sudo-mode", "path_count": 6363} -{"path_article": "pages/getting-started-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", "path_count": 6357} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates", "path_count": 6299} -{"path_article": "issues", "path_count": 6275} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/configuring-automation-for-project-boards", "path_count": 6257} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork", "path_count": 6233} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-for-a-fork", "path_count": 6215} -{"path_article": "packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions", "path_count": 6195} -{"path_article": "rest/overview/libraries", "path_count": 6191} -{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph", "path_count": 6170} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/committing-and-reviewing-changes-to-your-project", "path_count": 6162} -{"path_article": "actions/managing-workflow-runs/approving-workflow-runs-from-public-forks", "path_count": 6158} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-profile", "path_count": 6157} -{"path_article": "get-started/using-github/github-mobile", "path_count": 6141} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally", "path_count": 6123} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies", "path_count": 6117} -{"path_article": "actions/security-guides/security-hardening-for-github-actions", "path_count": 6113} -{"path_article": "rest/reference/permissions-required-for-github-apps", "path_count": 6094} -{"path_article": "developers/overview/using-ssh-agent-forwarding", "path_count": 6061} -{"path_article": "actions/creating-actions/creating-a-javascript-action", "path_count": 6035} -{"path_article": "repositories/releasing-projects-on-github/automatically-generated-release-notes", "path_count": 5998} -{"path_article": "developers/apps/managing-github-apps/installing-github-apps", "path_count": 5981} -{"path_article": "rest/overview/media-types", "path_count": 5893} -{"path_article": "github/copilot/about-github-copilot-telemetry", "path_count": 5855} -{"path_article": "actions/learn-github-actions/sharing-workflows-secrets-and-runners-with-your-organization", "path_count": 5834} -{"path_article": "developers/apps/building-github-apps/creating-a-github-app", "path_count": 5829} -{"path_article": "rest/guides/basics-of-authentication", "path_count": 5818} -{"path_article": "actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", "path_count": 5775} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-for-a-fork", "path_count": 5761} -{"path_article": "organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team", "path_count": 5752} -{"path_article": "pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges", "path_count": 5727} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-dependabot-security-updates", "path_count": 5709} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review", "path_count": 5709} -{"path_article": "organizations/organizing-members-into-teams", "path_count": 5653} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-nodejs-or-python", "path_count": 5647} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors", "path_count": 5646} -{"path_article": "github/copilot", "path_count": 5634} -{"path_article": "developers/apps/building-oauth-apps/creating-an-oauth-app", "path_count": 5562} -{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys", "path_count": 5496} -{"path_article": "pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request", "path_count": 5494} -{"path_article": "search-github/searching-on-github/finding-files-on-github", "path_count": 5481} -{"path_article": "actions/deployment/about-deployments/deploying-with-github-actions", "path_count": 5463} -{"path_article": "packages/learn-github-packages/about-permissions-for-github-packages", "path_count": 5419} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/managing-tags", "path_count": 5390} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics", "path_count": 5377} -{"path_article": "repositories/creating-and-managing-repositories", "path_count": 5376} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork", "path_count": 5369} -{"path_article": "rest/reference/projects", "path_count": 5334} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request", "path_count": 5331} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll", "path_count": 5282} -{"path_article": "search-github", "path_count": 5280} -{"path_article": "search-github/searching-on-github", "path_count": 5207} -{"path_article": "get-started/using-git/about-git", "path_count": 5193} -{"path_article": "graphql/reference/queries", "path_count": 5182} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings", "path_count": 5174} -{"path_article": "rest/reference/teams", "path_count": 5164} -{"path_article": "authentication/managing-commit-signature-verification/associating-an-email-with-your-gpg-key", "path_count": 5145} -{"path_article": "get-started/using-git/about-git-rebase", "path_count": 5056} -{"path_article": "organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization", "path_count": 5050} -{"path_article": "actions/publishing-packages/publishing-nodejs-packages", "path_count": 5048} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github", "path_count": 5036} -{"path_article": "actions/deployment/deploying-to-your-cloud-provider/deploying-to-google-kubernetes-engine", "path_count": 5033} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review", "path_count": 5031} -{"path_article": "github/site-policy/github-terms-for-additional-products-and-features", "path_count": 5029} -{"path_article": "organizations/organizing-members-into-teams/about-teams", "path_count": 5014} -{"path_article": "actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", "path_count": 4969} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches", "path_count": 4951} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository", "path_count": 4945} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request", "path_count": 4895} -{"path_article": "pull-requests", "path_count": 4890} -{"path_article": "pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request", "path_count": 4862} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/viewing-people-with-access-to-your-repository", "path_count": 4854} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository", "path_count": 4825} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request", "path_count": 4811} -{"path_article": "get-started/getting-started-with-git/associating-text-editors-with-git", "path_count": 4800} -{"path_article": "actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services", "path_count": 4796} -{"path_article": "desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop", "path_count": 4779} -{"path_article": "github/site-policy/github-corporate-terms-of-service", "path_count": 4774} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository", "path_count": 4769} -{"path_article": "repositories/working-with-files/using-files/tracking-changes-in-a-file", "path_count": 4759} -{"path_article": "education", "path_count": 4719} -{"path_article": "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", "path_count": 4697} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/creating-an-issue-or-pull-request", "path_count": 4679} -{"path_article": "codespaces/developing-in-codespaces/creating-a-codespace", "path_count": 4669} -{"path_article": "repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags", "path_count": 4630} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges", "path_count": 4626} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request", "path_count": 4574} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request", "path_count": 4571} -{"path_article": "organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization", "path_count": 4569} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches", "path_count": 4566} -{"path_article": "get-started/quickstart/git-cheatsheet", "path_count": 4552} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/viewing-your-subscriptions", "path_count": 4539} -{"path_article": "github/site-policy/github-acceptable-use-policies", "path_count": 4533} -{"path_article": "actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners", "path_count": 4519} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/creating-a-project-board", "path_count": 4512} -{"path_article": "get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github", "path_count": 4500} -{"path_article": "github/site-policy/global-privacy-practices", "path_count": 4497} -{"path_article": "authentication/keeping-your-account-and-data-secure/token-expiration-and-revocation", "path_count": 4484} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/squashing-commits", "path_count": 4468} -{"path_article": "rest/reference/enterprise-admin", "path_count": 4468} -{"path_article": "github/site-policy/github-trademark-policy", "path_count": 4448} -{"path_article": "developers/webhooks-and-events/webhooks/securing-your-webhooks", "path_count": 4443} -{"path_article": "packages/learn-github-packages", "path_count": 4426} -{"path_article": "graphql/guides/introduction-to-graphql", "path_count": 4425} -{"path_article": "pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks", "path_count": 4372} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/about-your-personal-dashboard", "path_count": 4360} -{"path_article": "repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage", "path_count": 4356} -{"path_article": "packages/working-with-a-github-packages-registry", "path_count": 4351} -{"path_article": "communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account", "path_count": 4332} -{"path_article": "get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud", "path_count": 4307} -{"path_article": "rest/reference/gists", "path_count": 4277} -{"path_article": "developers/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads", "path_count": 4268} -{"path_article": "issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests", "path_count": 4241} -{"path_article": "developers/webhooks-and-events/events/github-event-types", "path_count": 4221} -{"path_article": "rest/reference/rate-limit", "path_count": 4209} -{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education", "path_count": 4197} -{"path_article": "packages/quickstart", "path_count": 4188} -{"path_article": "get-started/using-git/splitting-a-subfolder-out-into-a-new-repository", "path_count": 4170} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry", "path_count": 4169} -{"path_article": "graphql/overview", "path_count": 4168} -{"path_article": "issues/trying-out-the-new-projects-experience/quickstart", "path_count": 4160} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches", "path_count": 4157} -{"path_article": "get-started/quickstart/contributing-to-projects", "path_count": 4154} -{"path_article": "get-started/using-git/using-git-rebase-on-the-command-line", "path_count": 4154} -{"path_article": "developers/overview/about-githubs-apis", "path_count": 4130} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request", "path_count": 4114} -{"path_article": "actions/using-containerized-services/about-service-containers", "path_count": 4110} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-maven", "path_count": 4052} -{"path_article": "organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization", "path_count": 4017} -{"path_article": "repositories/working-with-files/using-files/getting-permanent-links-to-files", "path_count": 4003} -{"path_article": "get-started/using-git", "path_count": 3994} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/setting-up-code-scanning-for-a-repository", "path_count": 3993} -{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-integrations", "path_count": 3989} -{"path_article": "billing/managing-your-github-billing-settings", "path_count": 3935} -{"path_article": "organizations/managing-organization-settings/restricting-repository-creation-in-your-organization", "path_count": 3917} -{"path_article": "billing/managing-billing-for-your-github-account/downgrading-your-github-subscription", "path_count": 3905} -{"path_article": "pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user", "path_count": 3905} -{"path_article": "rest/overview/endpoints-available-for-github-apps", "path_count": 3903} -{"path_article": "rest/overview/openapi-description", "path_count": 3892} -{"path_article": "actions/deployment/security-hardening-your-deployments", "path_count": 3882} -{"path_article": "issues/trying-out-the-new-projects-experience/customizing-your-project-views", "path_count": 3880} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/merging-an-upstream-repository-into-your-fork", "path_count": 3875} -{"path_article": "pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors", "path_count": 3841} -{"path_article": "get-started/exploring-projects-on-github/saving-repositories-with-stars", "path_count": 3838} -{"path_article": "packages/learn-github-packages/configuring-a-packages-access-control-and-visibility", "path_count": 3837} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests", "path_count": 3782} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-user-accounts-repositories", "path_count": 3780} -{"path_article": "developers/github-marketplace", "path_count": 3779} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/adding-an-existing-project-to-github-using-github-desktop", "path_count": 3758} -{"path_article": "pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request", "path_count": 3757} -{"path_article": "github/site-policy/github-username-policy", "path_count": 3750} -{"path_article": "get-started/quickstart/be-social", "path_count": 3715} -{"path_article": "packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry", "path_count": 3712} -{"path_article": "admin/overview/about-upgrades-to-new-releases", "path_count": 3706} -{"path_article": "sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account", "path_count": 3687} -{"path_article": "github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks", "path_count": 3670} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning", "path_count": 3657} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions/adding-a-code-of-conduct-to-your-project", "path_count": 3654} -{"path_article": "github/site-policy/github-open-source-applications-terms-and-conditions", "path_count": 3648} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request", "path_count": 3648} -{"path_article": "actions/managing-workflow-runs", "path_count": 3634} -{"path_article": "organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization", "path_count": 3619} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications", "path_count": 3618} -{"path_article": "issues/using-labels-and-milestones-to-track-work/about-milestones", "path_count": 3585} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization", "path_count": 3566} -{"path_article": "codespaces/getting-started/deep-dive", "path_count": 3559} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/about-forks", "path_count": 3540} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/managing-your-subscriptions", "path_count": 3538} -{"path_article": "actions/managing-workflow-runs/disabling-and-enabling-a-workflow", "path_count": 3514} -{"path_article": "actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect", "path_count": 3513} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request", "path_count": 3510} -{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors", "path_count": 3508} -{"path_article": "repositories/managing-your-repositorys-settings-and-features", "path_count": 3505} -{"path_article": "github/site-policy/github-private-information-removal-policy", "path_count": 3485} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request", "path_count": 3473} -{"path_article": "organizations/organizing-members-into-teams/creating-a-team", "path_count": 3470} -{"path_article": "repositories/archiving-a-github-repository/archiving-repositories", "path_count": 3468} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests", "path_count": 3464} -{"path_article": "repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github", "path_count": 3460} -{"path_article": "organizations/collaborating-with-groups-in-organizations", "path_count": 3459} -{"path_article": "issues/tracking-your-work-with-issues/assigning-issues-and-pull-requests-to-other-github-users", "path_count": 3455} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account", "path_count": 3453} -{"path_article": "communities/documenting-your-project-with-wikis/editing-wiki-content", "path_count": 3440} -{"path_article": "actions/creating-actions/setting-exit-codes-for-actions", "path_count": 3423} -{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on", "path_count": 3420} -{"path_article": "github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user", "path_count": 3410} -{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-gradle-registry", "path_count": 3396} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board", "path_count": 3387} -{"path_article": "issues/trying-out-the-new-projects-experience/creating-a-project", "path_count": 3380} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks", "path_count": 3354} -{"path_article": "desktop/installing-and-configuring-github-desktop/overview/launching-github-desktop-from-the-command-line", "path_count": 3354} -{"path_article": "authentication/troubleshooting-ssh/error-permission-to-userrepo-denied-to-userother-repo", "path_count": 3348} -{"path_article": "github/site-policy/guide-to-submitting-a-dmca-takedown-notice", "path_count": 3343} -{"path_article": "pull-requests/committing-changes-to-your-project/viewing-and-comparing-commits/differences-between-commit-views", "path_count": 3334} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/managing-notifications-from-your-inbox", "path_count": 3332} -{"path_article": "github/writing-on-github/working-with-advanced-formatting", "path_count": 3332} -{"path_article": "developers/apps/building-github-apps/rate-limits-for-github-apps", "path_count": 3330} -{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages", "path_count": 3300} -{"path_article": "actions/creating-actions/dockerfile-support-for-github-actions", "path_count": 3279} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/merging-an-upstream-repository-into-your-fork", "path_count": 3269} -{"path_article": "organizations/organizing-members-into-teams/adding-organization-members-to-a-team", "path_count": 3267} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request", "path_count": 3265} -{"path_article": "github/site-policy/guidelines-for-legal-requests-of-user-data", "path_count": 3255} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests", "path_count": 3253} -{"path_article": "graphql/reference", "path_count": 3250} -{"path_article": "pages/getting-started-with-github-pages/using-submodules-with-github-pages", "path_count": 3222} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/showing-an-overview-of-your-activity-on-your-profile", "path_count": 3220} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/stashing-changes", "path_count": 3209} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences", "path_count": 3200} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/publicizing-or-hiding-organization-membership", "path_count": 3192} -{"path_article": "organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization", "path_count": 3180} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile", "path_count": 3164} -{"path_article": "graphql/reference/interfaces", "path_count": 3157} -{"path_article": "authentication/troubleshooting-ssh/error-key-already-in-use", "path_count": 3152} -{"path_article": "packages/learn-github-packages/publishing-a-package", "path_count": 3130} -{"path_article": "organizations/managing-organization-settings/renaming-an-organization", "path_count": 3120} -{"path_article": "graphql/overview/public-schema", "path_count": 3120} -{"path_article": "github/site-policy/github-subprocessors-and-cookies", "path_count": 3108} -{"path_article": "graphql/overview/about-the-graphql-api", "path_count": 3086} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/enabling-and-disabling-version-updates", "path_count": 3076} -{"path_article": "actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging", "path_count": 3064} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository", "path_count": 3033} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/pinning-items-to-your-profile", "path_count": 3032} -{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits/differences-between-commit-views", "path_count": 3031} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors", "path_count": 3030} -{"path_article": "developers/apps/building-oauth-apps", "path_count": 2983} -{"path_article": "billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security", "path_count": 2969} -{"path_article": "rest/reference/meta", "path_count": 2959} -{"path_article": "rest/guides/traversing-with-pagination", "path_count": 2959} -{"path_article": "github/extending-github/about-webhooks", "path_count": 2957} -{"path_article": "admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise", "path_count": 2949} -{"path_article": "actions/monitoring-and-troubleshooting-workflows/using-workflow-run-logs", "path_count": 2933} -{"path_article": "actions/using-containerized-services/creating-postgresql-service-containers", "path_count": 2922} -{"path_article": "billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces", "path_count": 2897} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-gradle", "path_count": 2894} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources", "path_count": 2876} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/setting-up-github-desktop", "path_count": 2873} -{"path_article": "repositories/working-with-files/managing-large-files/removing-files-from-git-large-file-storage", "path_count": 2872} -{"path_article": "rest/guides/delivering-deployments", "path_count": 2865} -{"path_article": "actions/managing-workflow-runs/downloading-workflow-artifacts", "path_count": 2855} -{"path_article": "repositories/archiving-a-github-repository/backing-up-a-repository", "path_count": 2848} -{"path_article": "organizations/managing-membership-in-your-organization/adding-people-to-your-organization", "path_count": 2833} -{"path_article": "graphql/reference/mutations", "path_count": 2829} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-net", "path_count": 2815} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings", "path_count": 2814} -{"path_article": "issues/tracking-your-work-with-issues/deleting-an-issue", "path_count": 2813} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-yourself-from-a-collaborators-repository", "path_count": 2801} -{"path_article": "organizations/managing-access-to-your-organizations-repositories", "path_count": 2799} -{"path_article": "packages/learn-github-packages/viewing-packages", "path_count": 2794} -{"path_article": "actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", "path_count": 2794} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository", "path_count": 2780} -{"path_article": "actions/managing-workflow-runs/reviewing-deployments", "path_count": 2779} -{"path_article": "get-started/signing-up-for-github", "path_count": 2768} -{"path_article": "github/site-policy/github-and-trade-controls", "path_count": 2764} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically", "path_count": 2759} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks", "path_count": 2736} -{"path_article": "communities", "path_count": 2731} -{"path_article": "developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps", "path_count": 2727} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue", "path_count": 2725} -{"path_article": "rest/guides/getting-started-with-the-checks-api", "path_count": 2722} -{"path_article": "organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization", "path_count": 2722} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop", "path_count": 2692} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/blocking-command-line-pushes-that-expose-your-personal-email-address", "path_count": 2690} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", "path_count": 2678} -{"path_article": "repositories/working-with-files/managing-files", "path_count": 2640} -{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository", "path_count": 2624} -{"path_article": "actions/migrating-to-github-actions/migrating-from-gitlab-cicd-to-github-actions", "path_count": 2619} -{"path_article": "issues/trying-out-the-new-projects-experience/automating-projects", "path_count": 2617} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql", "path_count": 2613} -{"path_article": "actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service", "path_count": 2609} -{"path_article": "actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", "path_count": 2603} -{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/adding-issues-and-pull-requests-to-a-project-board", "path_count": 2598} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms", "path_count": 2597} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer", "path_count": 2571} -{"path_article": "pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models", "path_count": 2569} -{"path_article": "graphql/reference/input-objects", "path_count": 2568} -{"path_article": "organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization", "path_count": 2559} -{"path_article": "get-started/using-github/exploring-early-access-releases-with-feature-preview", "path_count": 2546} -{"path_article": "billing/managing-billing-for-your-github-account/about-per-user-pricing", "path_count": 2529} -{"path_article": "get-started/using-github/github-cli", "path_count": 2514} -{"path_article": "get-started/learning-about-github/faq-about-changes-to-githubs-plans", "path_count": 2506} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository", "path_count": 2500} -{"path_article": "actions/publishing-packages/about-packaging-with-github-actions", "path_count": 2495} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file", "path_count": 2488} -{"path_article": "issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects", "path_count": 2486} -{"path_article": "packages/learn-github-packages/connecting-a-repository-to-a-package", "path_count": 2482} -{"path_article": "organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization", "path_count": 2481} -{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization", "path_count": 2479} -{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites", "path_count": 2474} -{"path_article": "github/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests", "path_count": 2465} -{"path_article": "developers/apps/building-github-apps/refreshing-user-to-server-access-tokens", "path_count": 2463} -{"path_article": "sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor", "path_count": 2459} -{"path_article": "actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", "path_count": 2454} -{"path_article": "developers/webhooks-and-events/webhooks/testing-webhooks", "path_count": 2452} -{"path_article": "billing/managing-billing-for-github-actions/viewing-your-github-actions-usage", "path_count": 2443} -{"path_article": "developers/apps/building-github-apps", "path_count": 2443} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository", "path_count": 2441} -{"path_article": "actions/managing-workflow-runs/re-running-workflows-and-jobs", "path_count": 2438} -{"path_article": "github/copilot/research-recitation", "path_count": 2435} -{"path_article": "rest/reference/packages", "path_count": 2427} -{"path_article": "rest/reference/markdown", "path_count": 2419} -{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/support-for-subversion-clients", "path_count": 2416} -{"path_article": "packages/learn-github-packages/deleting-and-restoring-a-package", "path_count": 2414} -{"path_article": "packages/learn-github-packages/installing-a-package", "path_count": 2414} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-a-summary-of-repository-activity", "path_count": 2406} -{"path_article": "graphql/overview/schema-previews", "path_count": 2399} -{"path_article": "authentication/managing-commit-signature-verification/signing-tags", "path_count": 2397} -{"path_article": "organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile", "path_count": 2391} -{"path_article": "discussions/quickstart", "path_count": 2384} -{"path_article": "admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server", "path_count": 2369} -{"path_article": "authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign", "path_count": 2366} -{"path_article": "issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests", "path_count": 2365} -{"path_article": "github/site-policy/github-data-protection-agreement", "path_count": 2347} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/viewing-and-updating-vulnerable-dependencies-in-your-repository", "path_count": 2341} -{"path_article": "github/collaborating-with-pull-requests/getting-started/about-collaborative-development-models", "path_count": 2338} -{"path_article": "get-started/getting-started-with-git/git-workflows", "path_count": 2336} -{"path_article": "get-started/quickstart/communicating-on-github", "path_count": 2334} -{"path_article": "actions/publishing-packages/publishing-java-packages-with-maven", "path_count": 2321} -{"path_article": "repositories/releasing-projects-on-github/linking-to-releases", "path_count": 2308} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/deleting-a-project-board", "path_count": 2306} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository", "path_count": 2303} -{"path_article": "codespaces/customizing-your-codespace/personalizing-codespaces-for-your-account", "path_count": 2301} -{"path_article": "code-security/getting-started/github-security-features", "path_count": 2295} -{"path_article": "actions/automating-builds-and-tests", "path_count": 2292} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review", "path_count": 2288} -{"path_article": "github/understanding-how-github-uses-and-protects-your-data/about-githubs-use-of-your-data", "path_count": 2269} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database", "path_count": 2267} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions", "path_count": 2263} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/viewing-a-pull-request-in-github-desktop", "path_count": 2261} -{"path_article": "billing/managing-billing-for-github-actions", "path_count": 2255} -{"path_article": "organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization", "path_count": 2253} -{"path_article": "developers/apps/guides/creating-ci-tests-with-the-checks-api", "path_count": 2250} -{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-nodejs-project-for-codespaces", "path_count": 2247} -{"path_article": "github/site-policy/guide-to-submitting-a-dmca-counter-notice", "path_count": 2246} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/disabling-two-factor-authentication-for-your-personal-account", "path_count": 2244} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools", "path_count": 2241} -{"path_article": "rest/reference/migrations", "path_count": 2230} -{"path_article": "issues/using-labels-and-milestones-to-track-work/creating-and-editing-milestones-for-issues-and-pull-requests", "path_count": 2224} -{"path_article": "pull-requests/collaborating-with-pull-requests", "path_count": 2217} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github", "path_count": 2213} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/requesting-organization-approval-for-oauth-apps", "path_count": 2208} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization", "path_count": 2199} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/troubleshooting-dependabot-errors", "path_count": 2198} -{"path_article": "rest/overview/troubleshooting", "path_count": 2189} -{"path_article": "organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team", "path_count": 2187} -{"path_article": "billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions", "path_count": 2183} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository", "path_count": 2150} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review", "path_count": 2137} -{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-python-project-for-codespaces", "path_count": 2128} -{"path_article": "organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member", "path_count": 2120} -{"path_article": "rest/reference/code-scanning", "path_count": 2118} -{"path_article": "repositories/working-with-files/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", "path_count": 2115} -{"path_article": "billing/managing-billing-for-github-packages/about-billing-for-github-packages", "path_count": 2110} -{"path_article": "actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform", "path_count": 2105} -{"path_article": "graphql/guides/using-the-explorer", "path_count": 2097} -{"path_article": "billing/managing-billing-for-your-github-account/upgrading-your-github-subscription", "path_count": 2097} -{"path_article": "organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team", "path_count": 2086} -{"path_article": "authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status", "path_count": 2083} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization", "path_count": 2075} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository", "path_count": 2044} -{"path_article": "repositories/archiving-a-github-repository/referencing-and-citing-content", "path_count": 2043} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories", "path_count": 2034} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization", "path_count": 2027} -{"path_article": "communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository", "path_count": 2026} -{"path_article": "desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts", "path_count": 2020} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-pull-requests-for-dependency-updates", "path_count": 2012} -{"path_article": "organizations/managing-organization-settings/deleting-an-organization-account", "path_count": 2004} -{"path_article": "get-started/learning-about-github/github-language-support", "path_count": 2002} -{"path_article": "developers/apps/guides/using-the-github-api-in-your-app", "path_count": 1993} -{"path_article": "github/importing-your-projects-to-github", "path_count": 1993} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles", "path_count": 1992} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks", "path_count": 1992} -{"path_article": "actions/deployment/using-environments-for-deployment", "path_count": 1990} -{"path_article": "codespaces/developing-in-codespaces/using-codespaces-in-visual-studio-code", "path_count": 1989} -{"path_article": "actions/using-github-hosted-runners/customizing-github-hosted-runners", "path_count": 1978} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/about-automation-for-project-boards", "path_count": 1965} -{"path_article": "actions/creating-actions/publishing-actions-in-github-marketplace", "path_count": 1962} -{"path_article": "github/working-with-github-support/submitting-a-ticket", "path_count": 1959} -{"path_article": "code-security/security-advisories/about-github-security-advisories", "path_count": 1947} -{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts", "path_count": 1944} -{"path_article": "sponsors", "path_count": 1942} -{"path_article": "graphql/reference/enums", "path_count": 1933} -{"path_article": "developers/overview", "path_count": 1925} -{"path_article": "rest/guides/getting-started-with-the-git-database-api", "path_count": 1925} -{"path_article": "graphql/overview/resource-limitations", "path_count": 1925} -{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-a-default-editor", "path_count": 1923} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository", "path_count": 1920} -{"path_article": "organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization", "path_count": 1916} -{"path_article": "organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization", "path_count": 1903} -{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-git-for-github-desktop", "path_count": 1898} -{"path_article": "actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", "path_count": 1895} -{"path_article": "developers/overview/secret-scanning-partner-program", "path_count": 1891} -{"path_article": "github/extending-github/getting-started-with-the-api", "path_count": 1881} -{"path_article": "get-started/exploring-projects-on-github/following-people", "path_count": 1878} -{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-security-log", "path_count": 1877} -{"path_article": "code-security/getting-started/adding-a-security-policy-to-your-repository", "path_count": 1872} -{"path_article": "repositories/working-with-files/using-files/navigating-code-on-github", "path_count": 1860} -{"path_article": "github/customizing-your-github-workflow/exploring-integrations/about-integrations", "path_count": 1857} -{"path_article": "actions/deployment/about-deployments/about-continuous-deployment", "path_count": 1855} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/manually-creating-a-single-issue-template-for-your-repository", "path_count": 1839} -{"path_article": "github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud", "path_count": 1834} -{"path_article": "organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard", "path_count": 1830} -{"path_article": "search-github/getting-started-with-searching-on-github/sorting-search-results", "path_count": 1821} -{"path_article": "get-started/getting-started-with-git", "path_count": 1816} -{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance", "path_count": 1811} -{"path_article": "pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts", "path_count": 1797} -{"path_article": "admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements", "path_count": 1794} -{"path_article": "rest/guides/working-with-comments", "path_count": 1793} -{"path_article": "organizations/managing-organization-settings/transferring-organization-ownership", "path_count": 1792} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages", "path_count": 1783} -{"path_article": "github/site-policy/github-candidate-privacy-policy", "path_count": 1777} -{"path_article": "code-security/getting-started/securing-your-repository", "path_count": 1772} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization", "path_count": 1771} -{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/adding-a-pull-request-to-the-merge-queue", "path_count": 1764} -{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/archiving-cards-on-a-project-board", "path_count": 1761} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/accessing-an-organization", "path_count": 1760} -{"path_article": "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", "path_count": 1757} -{"path_article": "github/working-with-github-support/about-github-support", "path_count": 1755} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/changing-project-board-visibility", "path_count": 1753} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files", "path_count": 1749} -{"path_article": "billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method", "path_count": 1749} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization", "path_count": 1745} -{"path_article": "billing/managing-billing-for-your-github-account", "path_count": 1745} -{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 1738} -{"path_article": "repositories/archiving-a-github-repository", "path_count": 1737} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request", "path_count": 1736} -{"path_article": "rest/guides/discovering-resources-for-a-user", "path_count": 1718} -{"path_article": "pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request", "path_count": 1717} -{"path_article": "admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script", "path_count": 1716} -{"path_article": "authentication/troubleshooting-ssh/error-unknown-key-type", "path_count": 1713} -{"path_article": "admin/configuration/configuring-your-enterprise/command-line-utilities", "path_count": 1712} -{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization", "path_count": 1709} -{"path_article": "authentication/keeping-your-account-and-data-secure/authorizing-github-apps", "path_count": 1700} -{"path_article": "github/setting-up-and-managing-your-enterprise", "path_count": 1699} -{"path_article": "github/working-with-github-support/github-enterprise-cloud-support", "path_count": 1698} -{"path_article": "organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities", "path_count": 1679} -{"path_article": "github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists", "path_count": 1677} -{"path_article": "actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", "path_count": 1675} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview", "path_count": 1663} -{"path_article": "graphql/reference/scalars", "path_count": 1663} -{"path_article": "graphql/guides", "path_count": 1663} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile", "path_count": 1661} -{"path_article": "authentication/keeping-your-account-and-data-secure/connecting-with-third-party-applications", "path_count": 1658} -{"path_article": "get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server", "path_count": 1656} -{"path_article": "actions/managing-workflow-runs/removing-workflow-artifacts", "path_count": 1649} -{"path_article": "communities/documenting-your-project-with-wikis/creating-a-footer-or-sidebar-for-your-wiki", "path_count": 1649} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository", "path_count": 1647} -{"path_article": "billing/managing-billing-for-git-large-file-storage/about-billing-for-git-large-file-storage", "path_count": 1643} -{"path_article": "issues/organizing-your-work-with-project-boards", "path_count": 1621} -{"path_article": "organizations/managing-organization-settings", "path_count": 1617} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-python", "path_count": 1609} -{"path_article": "github/customizing-your-github-workflow/purchasing-and-installing-apps-in-github-marketplace/installing-an-app-in-your-organization", "path_count": 1607} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", "path_count": 1605} -{"path_article": "github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations", "path_count": 1604} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 1602} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges", "path_count": 1590} -{"path_article": "actions/managing-issues-and-pull-requests/adding-labels-to-issues", "path_count": 1589} -{"path_article": "github-cli/github-cli/quickstart", "path_count": 1586} -{"path_article": "admin/overview/about-github-ae", "path_count": 1585} -{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved", "path_count": 1582} -{"path_article": "rest/reference/scim", "path_count": 1582} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/updating-commit-author-attribution-with-github-importer", "path_count": 1580} -{"path_article": "issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects", "path_count": 1576} -{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github", "path_count": 1569} -{"path_article": "developers/apps/building-github-apps/creating-a-github-app-from-a-manifest", "path_count": 1568} -{"path_article": "admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise", "path_count": 1565} -{"path_article": "developers/apps/managing-github-apps/editing-a-github-apps-permissions", "path_count": 1557} -{"path_article": "admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account", "path_count": 1548} -{"path_article": "github/site-policy/github-sponsors-additional-terms", "path_count": 1548} -{"path_article": "billing/managing-your-github-billing-settings/about-billing-on-github", "path_count": 1546} -{"path_article": "organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization", "path_count": 1542} -{"path_article": "actions/advanced-guides/using-github-cli-in-workflows", "path_count": 1540} -{"path_article": "communities/documenting-your-project-with-wikis", "path_count": 1529} -{"path_article": "graphql/guides/migrating-from-rest-to-graphql", "path_count": 1525} -{"path_article": "rest/guides/best-practices-for-integrators", "path_count": 1522} -{"path_article": "github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", "path_count": 1509} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs", "path_count": 1507} -{"path_article": "authentication/troubleshooting-ssh/deleted-or-missing-ssh-keys", "path_count": 1507} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 1506} -{"path_article": "github/understanding-how-github-uses-and-protects-your-data/requesting-an-archive-of-your-personal-accounts-data", "path_count": 1503} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks", "path_count": 1503} -{"path_article": "codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces", "path_count": 1492} -{"path_article": "github/site-policy/github-logo-policy", "path_count": 1489} -{"path_article": "repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage", "path_count": 1488} -{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-basic-settings", "path_count": 1488} -{"path_article": "admin/overview/system-overview", "path_count": 1487} -{"path_article": "issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository", "path_count": 1486} -{"path_article": "organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization", "path_count": 1485} -{"path_article": "admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance", "path_count": 1485} -{"path_article": "get-started/using-github/github-desktop", "path_count": 1482} -{"path_article": "developers/apps/getting-started-with-apps/setting-up-your-development-environment-to-create-a-github-app", "path_count": 1473} -{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git", "path_count": 1473} -{"path_article": "github/understanding-how-github-uses-and-protects-your-data/managing-data-use-settings-for-your-private-repository", "path_count": 1470} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests", "path_count": 1467} -{"path_article": "admin/user-management/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise", "path_count": 1463} -{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/amending-a-commit", "path_count": 1452} -{"path_article": "repositories/releasing-projects-on-github/comparing-releases", "path_count": 1451} -{"path_article": "get-started/using-git/about-git-subtree-merges", "path_count": 1448} -{"path_article": "search-github/getting-started-with-searching-on-github", "path_count": 1437} -{"path_article": "actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", "path_count": 1435} -{"path_article": "admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise", "path_count": 1435} -{"path_article": "rest/reference/licenses", "path_count": 1434} -{"path_article": "rest/reference/secret-scanning", "path_count": 1433} -{"path_article": "sponsors/getting-started-with-github-sponsors/about-github-sponsors", "path_count": 1427} -{"path_article": "communities/moderating-comments-and-conversations/managing-disruptive-comments", "path_count": 1425} -{"path_article": "github/customizing-your-github-workflow/exploring-integrations/about-github-marketplace", "path_count": 1425} -{"path_article": "get-started/onboarding/getting-started-with-github-enterprise-cloud", "path_count": 1423} -{"path_article": "github/collaborating-with-pull-requests", "path_count": 1423} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository", "path_count": 1423} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot", "path_count": 1420} -{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program", "path_count": 1419} -{"path_article": "code-security/secret-scanning/configuring-secret-scanning-for-your-repositories", "path_count": 1409} -{"path_article": "billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process", "path_count": 1409} -{"path_article": "developers/apps/building-github-apps/setting-permissions-for-github-apps", "path_count": 1403} -{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/about-github-education-for-students", "path_count": 1392} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions/about-community-profiles-for-public-repositories", "path_count": 1383} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/uninstalling-github-desktop", "path_count": 1380} -{"path_article": "rest/reference/reactions", "path_count": 1379} -{"path_article": "repositories/releasing-projects-on-github", "path_count": 1378} -{"path_article": "actions/monitoring-and-troubleshooting-workflows/using-the-visualization-graph", "path_count": 1378} -{"path_article": "authentication/troubleshooting-ssh/error-ssh-add-illegal-option----k", "path_count": 1371} -{"path_article": "pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts", "path_count": 1349} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/enabling-and-disabling-dependabot-version-updates", "path_count": 1347} -{"path_article": "codespaces/developing-in-codespaces/developing-in-a-codespace", "path_count": 1342} -{"path_article": "authentication/keeping-your-account-and-data-secure/about-anonymized-urls", "path_count": 1341} -{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization", "path_count": 1339} -{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository", "path_count": 1337} -{"path_article": "admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise", "path_count": 1333} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/updating-github-desktop", "path_count": 1333} -{"path_article": "developers/webhooks-and-events", "path_count": 1327} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/types-of-emails-github-sends", "path_count": 1324} -{"path_article": "codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces", "path_count": 1323} -{"path_article": "actions/managing-workflow-runs/canceling-a-workflow", "path_count": 1319} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-access-to-your-user-accounts-project-boards", "path_count": 1318} -{"path_article": "github/customizing-your-github-workflow/purchasing-and-installing-apps-in-github-marketplace/installing-an-app-in-your-personal-account", "path_count": 1316} -{"path_article": "admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise", "path_count": 1316} -{"path_article": "authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions", "path_count": 1312} -{"path_article": "organizations/restricting-access-to-your-organizations-data", "path_count": 1307} -{"path_article": "organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization", "path_count": 1304} -{"path_article": "pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 1303} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-nodejs", "path_count": 1300} -{"path_article": "search-github/searching-on-github/searching-topics", "path_count": 1295} -{"path_article": "actions/managing-workflow-runs/deleting-a-workflow-run", "path_count": 1291} -{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-applications-oauth", "path_count": 1290} -{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta", "path_count": 1288} -{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-deploy-keys", "path_count": 1284} -{"path_article": "billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account", "path_count": 1279} -{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies", "path_count": 1277} -{"path_article": "issues/tracking-your-work-with-issues/quickstart", "path_count": 1277} -{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot", "path_count": 1276} -{"path_article": "github/site-policy/github-deceased-user-policy", "path_count": 1274} -{"path_article": "admin/configuration/configuring-network-settings/network-ports", "path_count": 1274} -{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-dotnet-project-for-codespaces", "path_count": 1272} -{"path_article": "codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces", "path_count": 1271} -{"path_article": "github/writing-on-github/working-with-saved-replies/about-saved-replies", "path_count": 1264} -{"path_article": "github/site-policy/githubs-notice-about-the-california-consumer-privacy-act", "path_count": 1264} -{"path_article": "billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage", "path_count": 1257} -{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop", "path_count": 1256} -{"path_article": "admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap", "path_count": 1256} -{"path_article": "billing/managing-your-license-for-github-enterprise", "path_count": 1253} -{"path_article": "actions/hosting-your-own-runners/removing-self-hosted-runners", "path_count": 1253} -{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests", "path_count": 1251} -{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/about-git-large-file-storage-and-github-desktop", "path_count": 1245} -{"path_article": "admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise", "path_count": 1241} -{"path_article": "repositories/creating-and-managing-repositories/creating-an-issues-only-repository", "path_count": 1240} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/editing-a-project-board", "path_count": 1239} -{"path_article": "billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage", "path_count": 1236} -{"path_article": "actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", "path_count": 1231} -{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema", "path_count": 1230} -{"path_article": "developers/apps/getting-started-with-apps/activating-optional-features-for-apps", "path_count": 1226} -{"path_article": "github/understanding-how-github-uses-and-protects-your-data/opting-into-or-out-of-the-github-archive-program-for-your-public-repository", "path_count": 1226} -{"path_article": "actions/deployment/deploying-to-your-cloud-provider/deploying-to-azure-app-service", "path_count": 1221} -{"path_article": "organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization", "path_count": 1221} -{"path_article": "actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history", "path_count": 1218} -{"path_article": "desktop/installing-and-configuring-github-desktop/overview/supported-operating-systems", "path_count": 1209} -{"path_article": "actions/publishing-packages/publishing-java-packages-with-gradle", "path_count": 1208} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/best-practices-for-leaving-your-company", "path_count": 1208} -{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/copying-a-project-board", "path_count": 1205} -{"path_article": "authentication/troubleshooting-commit-signature-verification", "path_count": 1200} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-powershell", "path_count": 1194} -{"path_article": "github/site-policy/github-marketplace-developer-agreement", "path_count": 1192} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/managing-your-scheduled-reminders", "path_count": 1191} -{"path_article": "github/writing-on-github/working-with-saved-replies/using-saved-replies", "path_count": 1184} -{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts", "path_count": 1181} -{"path_article": "billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage", "path_count": 1180} -{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/changing-two-factor-authentication-delivery-methods-for-your-mobile-device", "path_count": 1178} -{"path_article": "billing/managing-billing-for-your-github-account/about-billing-for-github-accounts", "path_count": 1175} -{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/subversion-properties-supported-by-github", "path_count": 1174} -{"path_article": "admin/configuration/configuring-network-settings/configuring-tls", "path_count": 1174} -{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws", "path_count": 1173} -{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization", "path_count": 1172} -{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review", "path_count": 1167} -{"path_article": "developers/github-marketplace/github-marketplace-overview/about-marketplace-badges", "path_count": 1167} -{"path_article": "github/site-policy/github-bug-bounty-program-legal-safe-harbor", "path_count": 1165} -{"path_article": "github/site-policy/github-registered-developer-agreement", "path_count": 1162} -{"path_article": "admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh", "path_count": 1159} -{"path_article": "pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", "path_count": 1151} -{"path_article": "rest/reference/oauth-authorizations", "path_count": 1148} -{"path_article": "communities/documenting-your-project-with-wikis/changing-access-permissions-for-wikis", "path_count": 1147} -{"path_article": "admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud", "path_count": 1145} -{"path_article": "admin/guides", "path_count": 1143} -{"path_article": "admin/authentication/managing-your-enterprise-users-with-your-identity-provider/configuring-saml-single-sign-on-for-enterprise-managed-users", "path_count": 1140} -{"path_article": "get-started/onboarding/getting-started-with-github-team", "path_count": 1137} -{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/adding-notes-to-a-project-board", "path_count": 1133} -{"path_article": "github/site-policy/github-codespaces-privacy-statement", "path_count": 1132} -{"path_article": "actions/deployment/managing-your-deployments/viewing-deployment-history", "path_count": 1130} -{"path_article": "organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators", "path_count": 1129} -{"path_article": "billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date", "path_count": 1125} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content", "path_count": 1123} -{"path_article": "repositories/working-with-files", "path_count": 1122} -{"path_article": "pull-requests/committing-changes-to-your-project", "path_count": 1122} -{"path_article": "authentication/troubleshooting-ssh/error-permission-to-userrepo-denied-to-other-user", "path_count": 1119} -{"path_article": "authentication/troubleshooting-ssh/error-ssl-certificate-problem-verify-that-the-ca-cert-is-ok", "path_count": 1113} -{"path_article": "admin/installation", "path_count": 1109} -{"path_article": "github/writing-on-github/working-with-saved-replies/creating-a-saved-reply", "path_count": 1102} -{"path_article": "github/committing-changes-to-your-project/troubleshooting-commits/commit-exists-on-github-but-not-in-my-local-clone", "path_count": 1093} -{"path_article": "billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts", "path_count": 1092} -{"path_article": "communities/moderating-comments-and-conversations/locking-conversations", "path_count": 1090} -{"path_article": "actions/guides", "path_count": 1078} -{"path_article": "repositories/viewing-activity-and-data-for-your-repository", "path_count": 1071} -{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware", "path_count": 1069} -{"path_article": "actions/using-containerized-services/creating-redis-service-containers", "path_count": 1067} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", "path_count": 1065} -{"path_article": "discussions/collaborating-with-your-community-using-discussions/about-discussions", "path_count": 1063} -{"path_article": "search-github/searching-on-github/searching-for-packages", "path_count": 1063} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review", "path_count": 1063} -{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/about-commits", "path_count": 1062} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership", "path_count": 1060} -{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request", "path_count": 1060} -{"path_article": "communities/setting-up-your-project-for-healthy-contributions", "path_count": 1058} -{"path_article": "communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization", "path_count": 1058} -{"path_article": "rest/reference/interactions", "path_count": 1055} -{"path_article": "developers/github-marketplace/creating-apps-for-github-marketplace/requirements-for-listing-an-app", "path_count": 1054} -{"path_article": "organizations/organizing-members-into-teams/removing-organization-members-from-a-team", "path_count": 1049} -{"path_article": "organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group", "path_count": 1049} -{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/setting-a-theme-for-github-desktop", "path_count": 1041} -{"path_article": "developers/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", "path_count": 1041} -{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", "path_count": 1040} -{"path_article": "admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users", "path_count": 1039} -{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-java-project-for-codespaces", "path_count": 1039} -{"path_article": "admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs", "path_count": 1027} -{"path_article": "organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization", "path_count": 1025} -{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-ant", "path_count": 1024} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/troubleshooting-commits-on-your-timeline", "path_count": 1023} -{"path_article": "actions/creating-actions/developing-a-third-party-cli-action", "path_count": 1020} -{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow", "path_count": 1019} -{"path_article": "admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml", "path_count": 1017} -{"path_article": "github/site-policy/github-community-forum-code-of-conduct", "path_count": 1015} -{"path_article": "get-started/learning-about-github", "path_count": 1015} -{"path_article": "education/manage-coursework-with-github-classroom/get-started-with-github-classroom/basics-of-setting-up-github-classroom", "path_count": 1014} -{"path_article": "codespaces/codespaces-reference/understanding-billing-for-codespaces", "path_count": 1011} -{"path_article": "graphql/guides/using-global-node-ids", "path_count": 1010} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-security-and-analysis-settings-for-your-user-account", "path_count": 1008} -{"path_article": "code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning", "path_count": 1007} -{"path_article": "billing/managing-billing-for-git-large-file-storage", "path_count": 1004} -{"path_article": "repositories/working-with-files/managing-large-files/resolving-git-large-file-storage-upload-failures", "path_count": 1003} -{"path_article": "codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace", "path_count": 1001} -{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile", "path_count": 1001} -{"path_article": "rest/reference/billing", "path_count": 1000} -{"path_article": "graphql/overview/breaking-changes", "path_count": 997} +{"path_article": "index", "path_count": 561711} +{"path_article": "authentication/connecting-to-github-with-ssh", "path_count": 474040} +{"path_article": "authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", "path_count": 437021} +{"path_article": "authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token", "path_count": 431760} +{"path_article": "authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account", "path_count": 333514} +{"path_article": "pages", "path_count": 309032} +{"path_article": "github/site-policy/github-terms-of-service", "path_count": 262978} +{"path_article": "github/site-policy/github-privacy-statement", "path_count": 249006} +{"path_article": "codespaces", "path_count": 134888} +{"path_article": "rest", "path_count": 132526} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line", "path_count": 130949} +{"path_article": "get-started/quickstart/set-up-git", "path_count": 129461} +{"path_article": "actions/learn-github-actions/workflow-syntax-for-github-actions", "path_count": 128378} +{"path_article": "authentication/connecting-to-github-with-ssh/checking-for-existing-ssh-keys", "path_count": 127577} +{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax", "path_count": 115796} +{"path_article": "get-started/getting-started-with-git/managing-remote-repositories", "path_count": 114591} +{"path_article": "repositories/creating-and-managing-repositories/cloning-a-repository", "path_count": 114422} +{"path_article": "actions", "path_count": 111646} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication", "path_count": 99786} +{"path_article": "rest/reference/repos", "path_count": 99619} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests", "path_count": 94968} +{"path_article": "get-started/getting-started-with-git/about-remote-repositories", "path_count": 86514} +{"path_article": "authentication/troubleshooting-ssh/error-permission-denied-publickey", "path_count": 82605} +{"path_article": "account-and-profile", "path_count": 80881} +{"path_article": "authentication", "path_count": 80317} +{"path_article": "get-started/getting-started-with-git/setting-your-username-in-git", "path_count": 78170} +{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site", "path_count": 71305} +{"path_article": "get-started", "path_count": 69783} +{"path_article": "actions/learn-github-actions/events-that-trigger-workflows", "path_count": 69634} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/changing-your-primary-email-address", "path_count": 69563} +{"path_article": "get-started/learning-about-github/githubs-products", "path_count": 68934} +{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message", "path_count": 68578} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address", "path_count": 66097} +{"path_article": "get-started/quickstart", "path_count": 61492} +{"path_article": "get-started/getting-started-with-git/caching-your-github-credentials-in-git", "path_count": 61301} +{"path_article": "get-started/learning-about-github/types-of-github-accounts", "path_count": 58613} +{"path_article": "actions/learn-github-actions", "path_count": 55286} +{"path_article": "authentication/connecting-to-github-with-ssh/testing-your-ssh-connection", "path_count": 54502} +{"path_article": "get-started/quickstart/fork-a-repo", "path_count": 53239} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository", "path_count": 52403} +{"path_article": null, "path_count": 49547} +{"path_article": "authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases", "path_count": 49474} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository", "path_count": 48620} +{"path_article": "pages/getting-started-with-github-pages", "path_count": 47573} +{"path_article": "github", "path_count": 47377} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request", "path_count": 47207} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/installing-github-desktop", "path_count": 46133} +{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line", "path_count": 45901} +{"path_article": "get-started/learning-about-github/access-permissions-on-github", "path_count": 45689} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews", "path_count": 45097} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile", "path_count": 44747} +{"path_article": "actions/learn-github-actions/environment-variables", "path_count": 43647} +{"path_article": "get-started/getting-started-with-git/ignoring-files", "path_count": 43396} +{"path_article": "get-started/quickstart/create-a-repo", "path_count": 42986} +{"path_article": "actions/learn-github-actions/contexts", "path_count": 40779} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards", "path_count": 40261} +{"path_article": "authentication/managing-commit-signature-verification", "path_count": 38896} +{"path_article": "pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site", "path_count": 37848} +{"path_article": "get-started/using-git/pushing-commits-to-a-remote-repository", "path_count": 37611} +{"path_article": "repositories/working-with-files/managing-files/adding-a-file-to-a-repository", "path_count": 37581} +{"path_article": "pages/getting-started-with-github-pages/about-github-pages", "path_count": 37387} +{"path_article": "get-started/signing-up-for-github/verifying-your-email-address", "path_count": 37283} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile", "path_count": 37225} +{"path_article": "developers/overview/managing-deploy-keys", "path_count": 35243} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository", "path_count": 34255} +{"path_article": "get-started/getting-started-with-git/updating-credentials-from-the-macos-keychain", "path_count": 34016} +{"path_article": "rest/overview/other-authentication-methods", "path_count": 33596} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/changing-your-github-username", "path_count": 32988} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa", "path_count": 32764} +{"path_article": "rest/overview", "path_count": 32691} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-npm-registry", "path_count": 32601} +{"path_article": "search-github/searching-on-github/searching-issues-and-pull-requests", "path_count": 32089} +{"path_article": "organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions", "path_count": 31965} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-docker-registry", "path_count": 31542} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks", "path_count": 31434} +{"path_article": "repositories/creating-and-managing-repositories/deleting-a-repository", "path_count": 31182} +{"path_article": "actions/security-guides/encrypted-secrets", "path_count": 30640} +{"path_article": "pages/getting-started-with-github-pages/creating-a-github-pages-site", "path_count": 29189} +{"path_article": "desktop", "path_count": 29117} +{"path_article": "rest/overview/resources-in-the-rest-api", "path_count": 28668} +{"path_article": "rest/guides/getting-started-with-the-rest-api", "path_count": 28575} +{"path_article": "developers/apps/building-oauth-apps/authorizing-oauth-apps", "path_count": 28386} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches", "path_count": 27797} +{"path_article": "issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue", "path_count": 27437} +{"path_article": "actions/learn-github-actions/understanding-github-actions", "path_count": 27289} +{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site", "path_count": 27041} +{"path_article": "authentication/managing-commit-signature-verification/generating-a-new-gpg-key", "path_count": 27030} +{"path_article": "packages", "path_count": 26443} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication", "path_count": 26097} +{"path_article": "authentication/connecting-to-github-with-ssh/about-ssh", "path_count": 26028} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork", "path_count": 25519} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility", "path_count": 25252} +{"path_article": "graphql", "path_count": 24906} +{"path_article": "repositories/releasing-projects-on-github/managing-releases-in-a-repository", "path_count": 24667} +{"path_article": "repositories", "path_count": 24300} +{"path_article": "actions/learn-github-actions/workflow-commands-for-github-actions", "path_count": 24169} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes", "path_count": 24065} +{"path_article": "actions/security-guides/automatic-token-authentication", "path_count": 24009} +{"path_article": "developers/webhooks-and-events/webhooks/about-webhooks", "path_count": 23952} +{"path_article": "actions/hosting-your-own-runners/about-self-hosted-runners", "path_count": 23845} +{"path_article": "rest/reference/users", "path_count": 23392} +{"path_article": "authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on", "path_count": 23286} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites", "path_count": 23098} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-dependabot-security-updates", "path_count": 22894} +{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github", "path_count": 22651} +{"path_article": "developers/webhooks-and-events/webhooks/webhook-events-and-payloads", "path_count": 22563} +{"path_article": "get-started/using-github/troubleshooting-connectivity-problems", "path_count": 22530} +{"path_article": "graphql/overview/explorer", "path_count": 22432} +{"path_article": "authentication/managing-commit-signature-verification/displaying-verification-statuses-for-all-of-your-commits", "path_count": 22417} +{"path_article": "actions/using-github-hosted-runners/about-github-hosted-runners", "path_count": 22150} +{"path_article": "authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on", "path_count": 21286} +{"path_article": "rest/reference/actions", "path_count": 21230} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch", "path_count": 21193} +{"path_article": "packages/learn-github-packages/introduction-to-github-packages", "path_count": 21112} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners", "path_count": 21099} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule", "path_count": 21089} +{"path_article": "authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository", "path_count": 21008} +{"path_article": "admin/release-notes", "path_count": 20995} +{"path_article": "actions/quickstart", "path_count": 20864} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-container-registry", "path_count": 20382} +{"path_article": "repositories/working-with-files/managing-large-files", "path_count": 20368} +{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits/comparing-commits", "path_count": 19524} +{"path_article": "rest/reference/pulls", "path_count": 19399} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll", "path_count": 19207} +{"path_article": "codespaces/getting-started/quickstart", "path_count": 19065} +{"path_article": "get-started/getting-started-with-git/configuring-git-to-handle-line-endings", "path_count": 19039} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/managing-branches", "path_count": 18908} +{"path_article": "repositories/creating-and-managing-repositories/duplicating-a-repository", "path_count": 18786} +{"path_article": "issues/trying-out-the-new-projects-experience", "path_count": 18612} +{"path_article": "billing/managing-your-github-billing-settings/setting-your-billing-email", "path_count": 18450} +{"path_article": "developers/apps/building-oauth-apps/scopes-for-oauth-apps", "path_count": 18324} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github/syncing-your-branch", "path_count": 18214} +{"path_article": "github/site-policy", "path_count": 18205} +{"path_article": "developers", "path_count": 18163} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication", "path_count": 18156} +{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request", "path_count": 18062} +{"path_article": "repositories/creating-and-managing-repositories/transferring-a-repository", "path_count": 17965} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization", "path_count": 17894} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/reverting-a-commit", "path_count": 17689} +{"path_article": "actions/learn-github-actions/reusing-workflows", "path_count": 17578} +{"path_article": "rest/reference/search", "path_count": 17529} +{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github", "path_count": 17333} +{"path_article": "authentication/authenticating-with-saml-single-sign-on", "path_count": 17223} +{"path_article": "get-started/using-git/getting-changes-from-a-remote-repository", "path_count": 17125} +{"path_article": "get-started/signing-up-for-github/signing-up-for-a-new-github-account", "path_count": 17121} +{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack", "path_count": 17101} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials", "path_count": 16722} +{"path_article": "get-started/getting-started-with-git/why-is-git-always-asking-for-my-password", "path_count": 16587} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication-recovery-methods", "path_count": 16500} +{"path_article": "authentication/keeping-your-account-and-data-secure/about-authentication-to-github", "path_count": 16414} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/permission-levels-for-a-user-account-repository", "path_count": 16337} +{"path_article": "rest/reference", "path_count": 16269} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme", "path_count": 16112} +{"path_article": "search-github/searching-on-github/searching-code", "path_count": 15818} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/organizing-information-with-tables", "path_count": 15691} +{"path_article": "actions/creating-actions/creating-a-docker-container-action", "path_count": 15665} +{"path_article": "authentication/managing-commit-signature-verification/signing-commits", "path_count": 15393} +{"path_article": "pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site", "path_count": 15242} +{"path_article": "authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps", "path_count": 14944} +{"path_article": "actions/creating-actions/metadata-syntax-for-github-actions", "path_count": 14881} +{"path_article": "authentication/managing-commit-signature-verification/adding-a-new-gpg-key-to-your-github-account", "path_count": 14843} +{"path_article": "authentication/keeping-your-account-and-data-secure/creating-a-strong-password", "path_count": 14687} +{"path_article": "rest/reference/issues", "path_count": 14428} +{"path_article": "admin", "path_count": 14370} +{"path_article": "github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists", "path_count": 14353} +{"path_article": "actions/managing-workflow-runs/manually-running-a-workflow", "path_count": 14323} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository", "path_count": 14321} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/adding-an-email-address-to-your-github-account", "path_count": 13783} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/deleting-your-user-account", "path_count": 13723} +{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request", "path_count": 13661} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally", "path_count": 13610} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews", "path_count": 13563} +{"path_article": "actions/learn-github-actions/managing-complex-workflows", "path_count": 13513} +{"path_article": "repositories/working-with-files/managing-large-files/about-large-files-on-github", "path_count": 13384} +{"path_article": "repositories/creating-and-managing-repositories/troubleshooting-cloning-errors", "path_count": 13304} +{"path_article": "actions/learn-github-actions/expressions", "path_count": 13287} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile", "path_count": 13160} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates", "path_count": 13060} +{"path_article": "github/writing-on-github", "path_count": 13037} +{"path_article": "get-started/onboarding/getting-started-with-your-github-account", "path_count": 12936} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-for-a-fork", "path_count": 12891} +{"path_article": "desktop/installing-and-configuring-github-desktop", "path_count": 12843} +{"path_article": "github-cli/github-cli/about-github-cli", "path_count": 12813} +{"path_article": "developers/overview/github-developer-program", "path_count": 12773} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork", "path_count": 12516} +{"path_article": "actions/automating-builds-and-tests/about-continuous-integration", "path_count": 12498} +{"path_article": "repositories/working-with-files/managing-files/deleting-files-in-a-repository", "path_count": 12424} +{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages", "path_count": 12326} +{"path_article": "get-started/using-github/supported-browsers", "path_count": 12310} +{"path_article": "repositories/creating-and-managing-repositories/creating-a-new-repository", "path_count": 12306} +{"path_article": "authentication/managing-commit-signature-verification/telling-git-about-your-signing-key", "path_count": 12238} +{"path_article": "billing/managing-billing-for-github-actions/about-billing-for-github-actions", "path_count": 12162} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/cloning-and-forking-repositories-from-github-desktop", "path_count": 12141} +{"path_article": "organizations", "path_count": 12057} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry", "path_count": 12030} +{"path_article": "rest/reference/orgs", "path_count": 11999} +{"path_article": "repositories/working-with-files/managing-large-files/installing-git-large-file-storage", "path_count": 11997} +{"path_article": "authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on", "path_count": 11976} +{"path_article": "pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages", "path_count": 11964} +{"path_article": "actions/advanced-guides/storing-workflow-data-as-artifacts", "path_count": 11804} +{"path_article": "authentication/keeping-your-account-and-data-secure/githubs-ssh-key-fingerprints", "path_count": 11798} +{"path_article": "pages/getting-started-with-github-pages/adding-a-theme-to-your-github-pages-site-with-the-theme-chooser", "path_count": 11733} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch", "path_count": 11722} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls", "path_count": 11676} +{"path_article": "actions/learn-github-actions/finding-and-customizing-actions", "path_count": 11661} +{"path_article": "repositories/working-with-files/managing-files/renaming-a-file", "path_count": 11562} +{"path_article": "get-started/quickstart/github-glossary", "path_count": 11556} +{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/permission-levels-for-an-organization", "path_count": 11529} +{"path_article": "graphql/reference/objects", "path_count": 11409} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review", "path_count": 11277} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository", "path_count": 11230} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications", "path_count": 11199} +{"path_article": "github/extending-github/git-automation-with-oauth-tokens", "path_count": 11081} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-nuget-registry", "path_count": 11030} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll", "path_count": 10963} +{"path_article": "organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization", "path_count": 10952} +{"path_article": "issues/trying-out-the-new-projects-experience/about-projects", "path_count": 10827} +{"path_article": "github/site-policy/github-community-guidelines", "path_count": 10825} +{"path_article": "developers/apps/getting-started-with-apps/about-apps", "path_count": 10754} +{"path_article": "get-started/learning-about-github/about-github-advanced-security", "path_count": 10690} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/countries-where-sms-authentication-is-supported", "path_count": 10513} +{"path_article": "rest/reference/git", "path_count": 10396} +{"path_article": "search-github/getting-started-with-searching-on-github/about-searching-on-github", "path_count": 10325} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request", "path_count": 10283} +{"path_article": "repositories/creating-and-managing-repositories/about-repositories", "path_count": 10271} +{"path_article": "github/site-policy/submitting-content-removal-requests", "path_count": 10250} +{"path_article": "communities/maintaining-your-safety-on-github/reporting-abuse-or-spam", "path_count": 10111} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request", "path_count": 10097} +{"path_article": "billing", "path_count": 9971} +{"path_article": "repositories/working-with-files/using-files/working-with-non-code-files", "path_count": 9953} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/viewing-contributions-on-your-profile", "path_count": 9927} +{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges", "path_count": 9881} +{"path_article": "developers/webhooks-and-events/webhooks/creating-webhooks", "path_count": 9872} +{"path_article": "admin/all-releases", "path_count": 9769} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts", "path_count": 9688} +{"path_article": "repositories/creating-and-managing-repositories/creating-a-repository-from-a-template", "path_count": 9663} +{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request", "path_count": 9661} +{"path_article": "rest/reference/checks", "path_count": 9617} +{"path_article": "actions/creating-actions/creating-a-composite-action", "path_count": 9611} +{"path_article": "actions/advanced-guides/caching-dependencies-to-speed-up-workflows", "path_count": 9602} +{"path_article": "code-security", "path_count": 9579} +{"path_article": "authentication/managing-commit-signature-verification/about-commit-signature-verification", "path_count": 9466} +{"path_article": "pages/getting-started-with-github-pages/securing-your-github-pages-site-with-https", "path_count": 9345} +{"path_article": "actions/creating-actions/about-custom-actions", "path_count": 9327} +{"path_article": "repositories/creating-and-managing-repositories/renaming-a-repository", "path_count": 9325} +{"path_article": "developers/apps", "path_count": 9218} +{"path_article": "authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials", "path_count": 9209} +{"path_article": "actions/hosting-your-own-runners/adding-self-hosted-runners", "path_count": 9209} +{"path_article": "get-started/using-git/dealing-with-non-fast-forward-errors", "path_count": 9176} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository", "path_count": 9169} +{"path_article": "github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request", "path_count": 9163} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization", "path_count": 9089} +{"path_article": "codespaces/the-githubdev-web-based-editor", "path_count": 9089} +{"path_article": "codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization", "path_count": 9065} +{"path_article": "authentication/managing-commit-signature-verification/checking-for-existing-gpg-keys", "path_count": 9044} +{"path_article": "repositories/working-with-files/managing-large-files/configuring-git-large-file-storage", "path_count": 9037} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests", "path_count": 8941} +{"path_article": "issues/tracking-your-work-with-issues/creating-an-issue", "path_count": 8926} +{"path_article": "repositories/releasing-projects-on-github/about-releases", "path_count": 8814} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches", "path_count": 8808} +{"path_article": "get-started/using-git/resolving-merge-conflicts-after-a-git-rebase", "path_count": 8590} +{"path_article": "desktop/installing-and-configuring-github-desktop/overview/getting-started-with-github-desktop", "path_count": 8562} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request", "path_count": 8425} +{"path_article": "issues/using-labels-and-milestones-to-track-work/managing-labels", "path_count": 8412} +{"path_article": "github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks", "path_count": 8394} +{"path_article": "communities/documenting-your-project-with-wikis/about-wikis", "path_count": 8232} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/cloning-a-repository-from-github-to-github-desktop", "path_count": 8204} +{"path_article": "developers/apps/building-github-apps/authenticating-with-github-apps", "path_count": 8146} +{"path_article": "actions/hosting-your-own-runners", "path_count": 8128} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/merging-an-upstream-repository-into-your-fork", "path_count": 8109} +{"path_article": "actions/learn-github-actions/usage-limits-billing-and-administration", "path_count": 8091} +{"path_article": "authentication/keeping-your-account-and-data-secure", "path_count": 8010} +{"path_article": "authentication/keeping-your-account-and-data-secure/about-githubs-ip-addresses", "path_count": 7994} +{"path_article": "discussions", "path_count": 7979} +{"path_article": "actions/learn-github-actions/essential-features-of-github-actions", "path_count": 7962} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/adding-a-repository-from-your-local-computer-to-github-desktop", "path_count": 7921} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github", "path_count": 7897} +{"path_article": "organizations/collaborating-with-groups-in-organizations/about-organizations", "path_count": 7868} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/about-enterprise-accounts", "path_count": 7861} +{"path_article": "graphql/guides/forming-calls-with-graphql", "path_count": 7857} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line", "path_count": 7831} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github", "path_count": 7761} +{"path_article": "repositories/working-with-files/managing-files/moving-a-file-to-a-new-location", "path_count": 7736} +{"path_article": "actions/monitoring-and-troubleshooting-workflows/adding-a-workflow-status-badge", "path_count": 7693} +{"path_article": "authentication/troubleshooting-ssh/using-ssh-over-the-https-port", "path_count": 7638} +{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors", "path_count": 7604} +{"path_article": "issues/tracking-your-work-with-issues/about-issues", "path_count": 7598} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request", "path_count": 7588} +{"path_article": "issues/tracking-your-work-with-issues/about-task-lists", "path_count": 7559} +{"path_article": "github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user", "path_count": 7508} +{"path_article": "search-github/getting-started-with-searching-on-github/understanding-the-search-syntax", "path_count": 7504} +{"path_article": "pages/getting-started-with-github-pages/unpublishing-a-github-pages-site", "path_count": 7450} +{"path_article": "organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team", "path_count": 7448} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences", "path_count": 7359} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/viewing-the-branch-history", "path_count": 7319} +{"path_article": "actions/deployment/using-environments-for-deployment", "path_count": 7302} +{"path_article": "rest/reference/activity", "path_count": 7284} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github", "path_count": 7266} +{"path_article": "get-started/using-github/keyboard-shortcuts", "path_count": 7250} +{"path_article": "get-started/quickstart/git-and-github-learning-resources", "path_count": 7246} +{"path_article": "actions/publishing-packages/publishing-docker-images", "path_count": 7221} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests", "path_count": 7206} +{"path_article": "rest/reference/apps", "path_count": 7185} +{"path_article": "organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch", "path_count": 7174} +{"path_article": "github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token", "path_count": 7166} +{"path_article": "authentication/troubleshooting-ssh", "path_count": 7132} +{"path_article": "communities/documenting-your-project-with-wikis/adding-or-editing-wiki-pages", "path_count": 7128} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates", "path_count": 7029} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request", "path_count": 7020} +{"path_article": "rest/guides", "path_count": 7018} +{"path_article": "billing/managing-billing-for-github-codespaces/about-billing-for-codespaces", "path_count": 6976} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning", "path_count": 6965} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll", "path_count": 6959} +{"path_article": "github/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github", "path_count": 6938} +{"path_article": "admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server", "path_count": 6910} +{"path_article": "codespaces/customizing-your-codespace/configuring-codespaces-for-your-project", "path_count": 6907} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/configuring-automation-for-project-boards", "path_count": 6893} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository", "path_count": 6859} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/creating-a-permanent-link-to-a-code-snippet", "path_count": 6829} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/about-issue-and-pull-request-templates", "path_count": 6815} +{"path_article": "issues", "path_count": 6812} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics", "path_count": 6734} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer", "path_count": 6712} +{"path_article": "education", "path_count": 6711} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll", "path_count": 6700} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/about-forks", "path_count": 6668} +{"path_article": "github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent", "path_count": 6634} +{"path_article": "repositories/creating-and-managing-repositories/creating-a-template-repository", "path_count": 6614} +{"path_article": "actions/creating-actions", "path_count": 6609} +{"path_article": "github/site-policy/dmca-takedown-policy", "path_count": 6597} +{"path_article": "actions/learn-github-actions/using-workflow-templates", "path_count": 6587} +{"path_article": "search-github/searching-on-github/searching-for-repositories", "path_count": 6560} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/attaching-files", "path_count": 6549} +{"path_article": "developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps", "path_count": 6540} +{"path_article": "repositories/working-with-files/managing-large-files/about-git-large-file-storage", "path_count": 6501} +{"path_article": "get-started/quickstart/github-flow", "path_count": 6482} +{"path_article": "rest/overview/api-previews", "path_count": 6288} +{"path_article": "repositories/working-with-files/managing-files/editing-files", "path_count": 6278} +{"path_article": "rest/overview/libraries", "path_count": 6256} +{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits/differences-between-commit-views", "path_count": 6247} +{"path_article": "github-cli", "path_count": 6223} +{"path_article": "repositories/working-with-files/managing-files/creating-new-files", "path_count": 6208} +{"path_article": "actions/managing-workflow-runs/approving-workflow-runs-from-public-forks", "path_count": 6161} +{"path_article": "developers/overview/using-ssh-agent-forwarding", "path_count": 6156} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/remembering-your-github-username-or-email", "path_count": 6128} +{"path_article": "repositories/releasing-projects-on-github/automatically-generated-release-notes", "path_count": 6115} +{"path_article": "pages/getting-started-with-github-pages/creating-a-custom-404-page-for-your-github-pages-site", "path_count": 6103} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-profile", "path_count": 6082} +{"path_article": "packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions", "path_count": 6063} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/cherry-picking-a-commit", "path_count": 6034} +{"path_article": "actions/creating-actions/creating-a-javascript-action", "path_count": 6026} +{"path_article": "organizations/organizing-members-into-teams", "path_count": 5992} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account", "path_count": 5959} +{"path_article": "authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase", "path_count": 5912} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/committing-and-reviewing-changes-to-your-project", "path_count": 5855} +{"path_article": "actions/learn-github-actions/creating-workflow-templates", "path_count": 5846} +{"path_article": "authentication/keeping-your-account-and-data-secure/sudo-mode", "path_count": 5788} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-dependabot-security-updates", "path_count": 5771} +{"path_article": "actions/security-guides/security-hardening-for-github-actions", "path_count": 5771} +{"path_article": "developers/apps/building-oauth-apps/creating-an-oauth-app", "path_count": 5758} +{"path_article": "rest/reference/permissions-required-for-github-apps", "path_count": 5748} +{"path_article": "rest/guides/basics-of-authentication", "path_count": 5741} +{"path_article": "repositories/creating-and-managing-repositories/restoring-a-deleted-repository", "path_count": 5698} +{"path_article": "rest/overview/media-types", "path_count": 5695} +{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys", "path_count": 5689} +{"path_article": "actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service", "path_count": 5629} +{"path_article": "github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests", "path_count": 5626} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors", "path_count": 5622} +{"path_article": "developers/apps/building-github-apps/creating-a-github-app", "path_count": 5579} +{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph", "path_count": 5516} +{"path_article": "developers/apps/managing-github-apps/installing-github-apps", "path_count": 5487} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies", "path_count": 5450} +{"path_article": "get-started/using-github/github-for-mobile", "path_count": 5424} +{"path_article": "code-security/secret-scanning/about-secret-scanning", "path_count": 5364} +{"path_article": "codespaces/overview", "path_count": 5355} +{"path_article": "github/site-policy/github-terms-for-additional-products-and-features", "path_count": 5321} +{"path_article": "desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop", "path_count": 5300} +{"path_article": "packages/learn-github-packages/about-permissions-for-github-packages", "path_count": 5290} +{"path_article": "rest/reference/projects", "path_count": 5284} +{"path_article": "search-github/searching-on-github/searching-users", "path_count": 5202} +{"path_article": "actions/learn-github-actions/sharing-workflows-secrets-and-runners-with-your-organization", "path_count": 5174} +{"path_article": "organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization", "path_count": 5157} +{"path_article": "repositories/creating-and-managing-repositories", "path_count": 5133} +{"path_article": "rest/reference/gists", "path_count": 5123} +{"path_article": "rest/reference/teams", "path_count": 5103} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings", "path_count": 5089} +{"path_article": "search-github", "path_count": 5082} +{"path_article": "communities/maintaining-your-safety-on-github/blocking-a-user-from-your-personal-account", "path_count": 5067} +{"path_article": "organizations/organizing-members-into-teams/about-teams", "path_count": 4923} +{"path_article": "graphql/reference/queries", "path_count": 4915} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/creating-a-project-board", "path_count": 4874} +{"path_article": "github/collaborating-with-pull-requests/getting-started/about-collaborative-development-models", "path_count": 4863} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll", "path_count": 4848} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/managing-tags", "path_count": 4824} +{"path_article": "actions/deployment/deploying-to-google-kubernetes-engine", "path_count": 4813} +{"path_article": "repositories/working-with-files/using-files/tracking-changes-in-a-file", "path_count": 4757} +{"path_article": "authentication/managing-commit-signature-verification/associating-an-email-with-your-gpg-key", "path_count": 4721} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/viewing-people-with-access-to-your-repository", "path_count": 4698} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository", "path_count": 4663} +{"path_article": "actions/hosting-your-own-runners/using-self-hosted-runners-in-a-workflow", "path_count": 4647} +{"path_article": "search-github/searching-on-github/searching-commits", "path_count": 4646} +{"path_article": "get-started/getting-started-with-git/associating-text-editors-with-git", "path_count": 4630} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks", "path_count": 4580} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review", "path_count": 4555} +{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts", "path_count": 4536} +{"path_article": "get-started/using-git/about-git-rebase", "path_count": 4535} +{"path_article": "graphql/guides/introduction-to-graphql", "path_count": 4532} +{"path_article": "actions/publishing-packages/publishing-nodejs-packages", "path_count": 4523} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches", "path_count": 4509} +{"path_article": "developers/webhooks-and-events/webhooks/securing-your-webhooks", "path_count": 4479} +{"path_article": "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", "path_count": 4475} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository", "path_count": 4441} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users", "path_count": 4424} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/viewing-your-subscriptions", "path_count": 4393} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-nodejs-or-python", "path_count": 4391} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github", "path_count": 4383} +{"path_article": "organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization", "path_count": 4383} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/about-your-personal-dashboard", "path_count": 4365} +{"path_article": "codespaces/developing-in-codespaces/creating-a-codespace", "path_count": 4351} +{"path_article": "github/site-policy/github-acceptable-use-policies", "path_count": 4344} +{"path_article": "admin/overview/about-upgrades-to-new-releases", "path_count": 4342} +{"path_article": "packages/working-with-a-github-packages-registry", "path_count": 4341} +{"path_article": "issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests", "path_count": 4329} +{"path_article": "organizations/collaborating-with-groups-in-organizations", "path_count": 4301} +{"path_article": "graphql/overview", "path_count": 4259} +{"path_article": "github/site-policy/global-privacy-practices", "path_count": 4254} +{"path_article": "repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage", "path_count": 4242} +{"path_article": "search-github/searching-on-github/finding-files-on-github", "path_count": 4239} +{"path_article": "rest/reference/enterprise-admin", "path_count": 4236} +{"path_article": "rest/reference/rate-limit", "path_count": 4200} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings", "path_count": 4192} +{"path_article": "github/site-policy/github-corporate-terms-of-service", "path_count": 4133} +{"path_article": "developers/webhooks-and-events/events/github-event-types", "path_count": 4121} +{"path_article": "developers/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads", "path_count": 4114} +{"path_article": "github/authenticating-to-github/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account", "path_count": 4112} +{"path_article": "search-github/searching-on-github", "path_count": 4106} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry", "path_count": 4069} +{"path_article": "get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud", "path_count": 4065} +{"path_article": "actions/using-containerized-services/about-service-containers", "path_count": 4058} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/enabling-and-disabling-version-updates", "path_count": 4040} +{"path_article": "packages/learn-github-packages", "path_count": 4024} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/adding-an-existing-project-to-github-using-github-desktop", "path_count": 3997} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/adding-content-to-your-github-pages-site-using-jekyll", "path_count": 3980} +{"path_article": "get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github", "path_count": 3972} +{"path_article": "packages/quickstart", "path_count": 3961} +{"path_article": "get-started/using-git/using-git-rebase-on-the-command-line", "path_count": 3935} +{"path_article": "actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners", "path_count": 3934} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository", "path_count": 3933} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/squashing-commits", "path_count": 3924} +{"path_article": "actions/creating-actions/dockerfile-support-for-github-actions", "path_count": 3897} +{"path_article": "actions/deployment/environments", "path_count": 3882} +{"path_article": "github/searching-for-information-on-github/searching-on-github/searching-code", "path_count": 3874} +{"path_article": "get-started/using-git/splitting-a-subfolder-out-into-a-new-repository", "path_count": 3828} +{"path_article": "get-started/exploring-projects-on-github/saving-repositories-with-stars", "path_count": 3824} +{"path_article": "billing/managing-billing-for-your-github-account/downgrading-your-github-subscription", "path_count": 3808} +{"path_article": "rest/overview/endpoints-available-for-github-apps", "path_count": 3784} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/setting-up-code-scanning-for-a-repository", "path_count": 3774} +{"path_article": "get-started/using-git", "path_count": 3771} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 3716} +{"path_article": "packages/learn-github-packages/configuring-a-packages-access-control-and-visibility", "path_count": 3712} +{"path_article": "get-started/quickstart/git-cheatsheet", "path_count": 3706} +{"path_article": "repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags", "path_count": 3704} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/creating-an-issue-or-pull-request", "path_count": 3696} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board", "path_count": 3692} +{"path_article": "repositories/working-with-files/using-files/getting-permanent-links-to-files", "path_count": 3685} +{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on", "path_count": 3675} +{"path_article": "actions/managing-workflow-runs", "path_count": 3670} +{"path_article": "issues/tracking-your-work-with-issues/assigning-issues-and-pull-requests-to-other-github-users", "path_count": 3642} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-user-accounts-repositories", "path_count": 3635} +{"path_article": "github/site-policy/github-trademark-policy", "path_count": 3632} +{"path_article": "sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account", "path_count": 3612} +{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-integrations", "path_count": 3610} +{"path_article": "github/collaborating-with-pull-requests", "path_count": 3599} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-maven", "path_count": 3571} +{"path_article": "developers/github-marketplace", "path_count": 3554} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests", "path_count": 3538} +{"path_article": "rest/overview/openapi-description", "path_count": 3537} +{"path_article": "repositories/managing-your-repositorys-settings-and-features", "path_count": 3507} +{"path_article": "github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github/cloning-a-repository", "path_count": 3499} +{"path_article": "organizations/organizing-members-into-teams/creating-a-team", "path_count": 3495} +{"path_article": "communities/documenting-your-project-with-wikis/editing-wiki-content", "path_count": 3494} +{"path_article": "organizations/managing-organization-settings/restricting-repository-creation-in-your-organization", "path_count": 3484} +{"path_article": "packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry", "path_count": 3445} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request", "path_count": 3427} +{"path_article": "billing/managing-your-github-billing-settings", "path_count": 3409} +{"path_article": "actions/deployment/deploying-to-amazon-elastic-container-service", "path_count": 3400} +{"path_article": "organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization", "path_count": 3393} +{"path_article": "desktop/installing-and-configuring-github-desktop/overview/launching-github-desktop-from-the-command-line", "path_count": 3369} +{"path_article": "github/authenticating-to-github/connecting-to-github-with-ssh", "path_count": 3368} +{"path_article": "authentication/troubleshooting-ssh/error-permission-to-userrepo-denied-to-userother-repo", "path_count": 3349} +{"path_article": "actions/creating-actions/setting-exit-codes-for-actions", "path_count": 3344} +{"path_article": "issues/using-labels-and-milestones-to-track-work/about-milestones", "path_count": 3312} +{"path_article": "github/site-policy/github-open-source-applications-terms-and-conditions", "path_count": 3312} +{"path_article": "organizations/managing-access-to-your-organizations-repositories", "path_count": 3305} +{"path_article": "actions/managing-workflow-runs/disabling-and-enabling-a-workflow", "path_count": 3304} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/managing-your-subscriptions", "path_count": 3277} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile", "path_count": 3269} +{"path_article": "packages/learn-github-packages/publishing-a-package", "path_count": 3263} +{"path_article": "organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization", "path_count": 3262} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning", "path_count": 3257} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork", "path_count": 3255} +{"path_article": "packages/working-with-a-github-packages-registry/working-with-the-gradle-registry", "path_count": 3246} +{"path_article": "github/copilot/github-copilot-telemetry-terms", "path_count": 3241} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications", "path_count": 3217} +{"path_article": "github/site-policy/github-username-policy", "path_count": 3190} +{"path_article": "repositories/archiving-a-github-repository/archiving-repositories", "path_count": 3190} +{"path_article": "github/site-policy/github-private-information-removal-policy", "path_count": 3158} +{"path_article": "developers/overview/about-githubs-apis", "path_count": 3152} +{"path_article": "rest/guides/traversing-with-pagination", "path_count": 3143} +{"path_article": "authentication/keeping-your-account-and-data-secure/token-expiration-and-revocation", "path_count": 3117} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/viewing-and-triaging-notifications/managing-notifications-from-your-inbox", "path_count": 3101} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/publicizing-or-hiding-organization-membership", "path_count": 3101} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/showing-an-overview-of-your-activity-on-your-profile", "path_count": 3087} +{"path_article": "github/copilot", "path_count": 3072} +{"path_article": "organizations/managing-organization-settings/renaming-an-organization", "path_count": 3068} +{"path_article": "actions/deployment/deploying-with-github-actions", "path_count": 3058} +{"path_article": "organizations/organizing-members-into-teams/adding-organization-members-to-a-team", "path_count": 3043} +{"path_article": "graphql/overview/public-schema", "path_count": 3033} +{"path_article": "rest/guides/delivering-deployments", "path_count": 3028} +{"path_article": "graphql/overview/about-the-graphql-api", "path_count": 3015} +{"path_article": "developers/apps/building-github-apps/rate-limits-for-github-apps", "path_count": 3005} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/stashing-changes", "path_count": 3002} +{"path_article": "actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging", "path_count": 2999} +{"path_article": "get-started/using-github/exploring-early-access-releases-with-feature-preview", "path_count": 2984} +{"path_article": "graphql/reference", "path_count": 2970} +{"path_article": "github/site-policy/guidelines-for-legal-requests-of-user-data", "path_count": 2968} +{"path_article": "graphql/reference/interfaces", "path_count": 2968} +{"path_article": "developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps", "path_count": 2959} +{"path_article": "developers/apps/building-oauth-apps", "path_count": 2953} +{"path_article": "actions/using-containerized-services/creating-postgresql-service-containers", "path_count": 2938} +{"path_article": "admin/overview/system-overview", "path_count": 2925} +{"path_article": "github/writing-on-github/working-with-advanced-formatting", "path_count": 2920} +{"path_article": "codespaces/getting-started/deep-dive", "path_count": 2918} +{"path_article": "github/site-policy/github-subprocessors-and-cookies", "path_count": 2880} +{"path_article": "pages/getting-started-with-github-pages/using-submodules-with-github-pages", "path_count": 2873} +{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education", "path_count": 2873} +{"path_article": "actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners", "path_count": 2855} +{"path_article": "rest/guides/getting-started-with-the-checks-api", "path_count": 2853} +{"path_article": "repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github", "path_count": 2829} +{"path_article": "issues/trying-out-the-new-projects-experience/customizing-your-project-views", "path_count": 2823} +{"path_article": "github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility", "path_count": 2803} +{"path_article": "authentication/troubleshooting-ssh/error-key-already-in-use", "path_count": 2802} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop", "path_count": 2797} +{"path_article": "repositories/working-with-files/managing-files", "path_count": 2794} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/pinning-items-to-your-profile", "path_count": 2781} +{"path_article": "organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization", "path_count": 2772} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise", "path_count": 2754} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-net", "path_count": 2747} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/setting-up-github-desktop", "path_count": 2734} +{"path_article": "repositories/working-with-files/managing-large-files/removing-files-from-git-large-file-storage", "path_count": 2733} +{"path_article": "developers/apps/building-github-apps/refreshing-user-to-server-access-tokens", "path_count": 2699} +{"path_article": "organizations/managing-membership-in-your-organization/adding-people-to-your-organization", "path_count": 2698} +{"path_article": "rest/reference/meta", "path_count": 2682} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-yourself-from-a-collaborators-repository", "path_count": 2676} +{"path_article": "github/site-policy/github-and-trade-controls", "path_count": 2669} +{"path_article": "github/site-policy/guide-to-submitting-a-dmca-takedown-notice", "path_count": 2661} +{"path_article": "issues/tracking-your-work-with-issues/deleting-an-issue", "path_count": 2656} +{"path_article": "actions/monitoring-and-troubleshooting-workflows/using-workflow-run-logs", "path_count": 2640} +{"path_article": "issues/trying-out-the-new-projects-experience/quickstart", "path_count": 2633} +{"path_article": "repositories/archiving-a-github-repository/backing-up-a-repository", "path_count": 2623} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/blocking-command-line-pushes-that-expose-your-personal-email-address", "path_count": 2609} +{"path_article": "billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces", "path_count": 2590} +{"path_article": "github/extending-github/about-webhooks", "path_count": 2585} +{"path_article": "graphql/reference/mutations", "path_count": 2584} +{"path_article": "admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance", "path_count": 2569} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically", "path_count": 2565} +{"path_article": "packages/learn-github-packages/viewing-packages", "path_count": 2558} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll", "path_count": 2550} +{"path_article": "billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security", "path_count": 2549} +{"path_article": "organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization", "path_count": 2548} +{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository", "path_count": 2548} +{"path_article": "actions/managing-workflow-runs/downloading-workflow-artifacts", "path_count": 2545} +{"path_article": "pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites", "path_count": 2535} +{"path_article": "repositories/releasing-projects-on-github/linking-to-releases", "path_count": 2532} +{"path_article": "admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server", "path_count": 2521} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository", "path_count": 2517} +{"path_article": "codespaces/developing-in-codespaces/web-based-editor", "path_count": 2503} +{"path_article": "communities", "path_count": 2494} +{"path_article": "github/searching-for-information-on-github/getting-started-with-searching-on-github/about-searching-on-github", "path_count": 2494} +{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/giving-team-maintainer-permissions-to-an-organization-member", "path_count": 2490} +{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization", "path_count": 2485} +{"path_article": "sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor", "path_count": 2464} +{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/adding-issues-and-pull-requests-to-a-project-board", "path_count": 2444} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors", "path_count": 2432} +{"path_article": "developers/webhooks-and-events/webhooks/testing-webhooks", "path_count": 2431} +{"path_article": "actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups", "path_count": 2413} +{"path_article": "actions/migrating-to-github-actions/migrating-from-gitlab-cicd-to-github-actions", "path_count": 2411} +{"path_article": "rest/reference/packages", "path_count": 2410} +{"path_article": "billing/managing-billing-for-github-actions/viewing-your-github-actions-usage", "path_count": 2393} +{"path_article": "packages/learn-github-packages/connecting-a-repository-to-a-package", "path_count": 2393} +{"path_article": "actions/reference/workflow-syntax-for-github-actions", "path_count": 2390} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository", "path_count": 2381} +{"path_article": "packages/learn-github-packages/installing-a-package", "path_count": 2379} +{"path_article": "actions/managing-workflow-runs/reviewing-deployments", "path_count": 2378} +{"path_article": "organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization", "path_count": 2343} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-gradle", "path_count": 2337} +{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles", "path_count": 2335} +{"path_article": "authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status", "path_count": 2326} +{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization", "path_count": 2324} +{"path_article": "actions/publishing-packages/about-packaging-with-github-actions", "path_count": 2318} +{"path_article": "github/collaborating-with-pull-requests/addressing-merge-conflicts", "path_count": 2317} +{"path_article": "billing/managing-billing-for-your-github-account/about-per-user-pricing", "path_count": 2314} +{"path_article": "actions/publishing-packages/publishing-java-packages-with-maven", "path_count": 2308} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file", "path_count": 2304} +{"path_article": "issues/trying-out-the-new-projects-experience/creating-a-project", "path_count": 2301} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository", "path_count": 2285} +{"path_article": "issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests", "path_count": 2280} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources", "path_count": 2279} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization", "path_count": 2266} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository", "path_count": 2257} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/browsing-security-vulnerabilities-in-the-github-advisory-database", "path_count": 2254} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository", "path_count": 2251} +{"path_article": "admin/overview/about-enterprise-accounts", "path_count": 2249} +{"path_article": "graphql/overview/schema-previews", "path_count": 2247} +{"path_article": "packages/learn-github-packages/deleting-and-restoring-a-package", "path_count": 2245} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/viewing-a-pull-request-in-github-desktop", "path_count": 2244} +{"path_article": "rest/reference/migrations", "path_count": 2237} +{"path_article": "discussions/quickstart", "path_count": 2229} +{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance", "path_count": 2222} +{"path_article": "get-started/learning-about-github/faq-about-changes-to-githubs-plans", "path_count": 2209} +{"path_article": "organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization", "path_count": 2208} +{"path_article": "get-started/quickstart/be-social", "path_count": 2205} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/troubleshooting-dependabot-errors", "path_count": 2203} +{"path_article": "rest/reference/markdown", "path_count": 2202} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/keeping-your-local-repository-in-sync-with-github", "path_count": 2200} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms", "path_count": 2186} +{"path_article": "graphql/guides/using-the-explorer", "path_count": 2179} +{"path_article": "get-started/using-github/github-cli", "path_count": 2170} +{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-python-project-for-codespaces", "path_count": 2168} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/requesting-organization-approval-for-oauth-apps", "path_count": 2168} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/about-automation-for-project-boards", "path_count": 2160} +{"path_article": "developers/apps/guides/creating-ci-tests-with-the-checks-api", "path_count": 2158} +{"path_article": "graphql/reference/input-objects", "path_count": 2156} +{"path_article": "actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions", "path_count": 2155} +{"path_article": "github/authenticating-to-github/connecting-to-github-with-ssh/checking-for-existing-ssh-keys", "path_count": 2152} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/viewing-and-updating-vulnerable-dependencies-in-your-repository", "path_count": 2148} +{"path_article": "get-started/signing-up-for-github", "path_count": 2148} +{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/about-commits", "path_count": 2140} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-a-summary-of-repository-activity", "path_count": 2138} +{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-git-for-github-desktop", "path_count": 2117} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/disabling-two-factor-authentication-for-your-personal-account", "path_count": 2107} +{"path_article": "github/importing-your-projects-to-github", "path_count": 2104} +{"path_article": "desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts", "path_count": 2096} +{"path_article": "billing/managing-billing-for-github-packages/about-billing-for-github-packages", "path_count": 2093} +{"path_article": "issues/trying-out-the-new-projects-experience/automating-projects", "path_count": 2092} +{"path_article": "organizations/managing-organization-settings", "path_count": 2090} +{"path_article": "actions/automating-builds-and-tests", "path_count": 2086} +{"path_article": "organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile", "path_count": 2078} +{"path_article": "github/setting-up-and-managing-your-enterprise", "path_count": 2074} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review", "path_count": 2071} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer", "path_count": 2069} +{"path_article": "github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository", "path_count": 2062} +{"path_article": "developers/apps/building-github-apps", "path_count": 2061} +{"path_article": "authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign", "path_count": 2061} +{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-nodejs-project-for-codespaces", "path_count": 2057} +{"path_article": "repositories/working-with-files/managing-large-files/moving-a-file-in-your-repository-to-git-large-file-storage", "path_count": 2048} +{"path_article": "admin/configuration/configuring-your-enterprise/command-line-utilities", "path_count": 2047} +{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/support-for-subversion-clients", "path_count": 2042} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions", "path_count": 2040} +{"path_article": "rest/reference/code-scanning", "path_count": 2030} +{"path_article": "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", "path_count": 2018} +{"path_article": "issues/using-labels-and-milestones-to-track-work/creating-and-editing-milestones-for-issues-and-pull-requests", "path_count": 2009} +{"path_article": "github/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests", "path_count": 1990} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository", "path_count": 1983} +{"path_article": "rest/overview/troubleshooting", "path_count": 1979} +{"path_article": "authentication/managing-commit-signature-verification/signing-tags", "path_count": 1979} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/deleting-a-project-board", "path_count": 1978} +{"path_article": "get-started/getting-started-with-git/git-workflows", "path_count": 1977} +{"path_article": "github/site-policy/guide-to-submitting-a-dmca-counter-notice", "path_count": 1971} +{"path_article": "github/administering-a-repository/managing-repository-settings/deleting-a-repository", "path_count": 1964} +{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-a-default-editor", "path_count": 1963} +{"path_article": "github/copilot/about-github-copilot-telemetry", "path_count": 1960} +{"path_article": "billing/managing-billing-for-github-actions/managing-your-spending-limit-for-github-actions", "path_count": 1956} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository", "path_count": 1955} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories", "path_count": 1931} +{"path_article": "rest/guides/getting-started-with-the-git-database-api", "path_count": 1926} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions/adding-a-code-of-conduct-to-your-project", "path_count": 1918} +{"path_article": "github/committing-changes-to-your-project/troubleshooting-commits/commit-exists-on-github-but-not-in-my-local-clone", "path_count": 1912} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools", "path_count": 1910} +{"path_article": "organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization", "path_count": 1909} +{"path_article": "repositories/archiving-a-github-repository", "path_count": 1908} +{"path_article": "organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization", "path_count": 1901} +{"path_article": "actions/using-github-hosted-runners/customizing-github-hosted-runners", "path_count": 1899} +{"path_article": "communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository", "path_count": 1899} +{"path_article": "billing/managing-billing-for-your-github-account/upgrading-your-github-subscription", "path_count": 1898} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories", "path_count": 1897} +{"path_article": "organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team", "path_count": 1897} +{"path_article": "actions/creating-actions/publishing-actions-in-github-marketplace", "path_count": 1895} +{"path_article": "organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization", "path_count": 1889} +{"path_article": "billing/managing-billing-for-github-actions", "path_count": 1858} +{"path_article": "get-started/getting-started-with-git", "path_count": 1849} +{"path_article": "sponsors", "path_count": 1845} +{"path_article": "get-started/quickstart/communicating-on-github", "path_count": 1840} +{"path_article": "github/searching-for-information-on-github/searching-on-github/searching-users", "path_count": 1837} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-python", "path_count": 1835} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile", "path_count": 1831} +{"path_article": "issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects", "path_count": 1814} +{"path_article": "codespaces/developing-in-codespaces/using-codespaces-in-visual-studio-code", "path_count": 1814} +{"path_article": "organizations/managing-organization-settings/deleting-an-organization-account", "path_count": 1808} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request", "path_count": 1806} +{"path_article": "get-started/exploring-projects-on-github/following-people", "path_count": 1803} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-pull-requests-for-dependency-updates", "path_count": 1802} +{"path_article": "code-security/getting-started/adding-a-security-policy-to-your-repository", "path_count": 1781} +{"path_article": "organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard", "path_count": 1776} +{"path_article": "github/understanding-how-github-uses-and-protects-your-data/about-githubs-use-of-your-data", "path_count": 1769} +{"path_article": "graphql/reference/enums", "path_count": 1766} +{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/archiving-cards-on-a-project-board", "path_count": 1764} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization", "path_count": 1762} +{"path_article": "admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements", "path_count": 1758} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/manually-creating-a-single-issue-template-for-your-repository", "path_count": 1756} +{"path_article": "graphql/overview/resource-limitations", "path_count": 1753} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/accessing-an-organization", "path_count": 1740} +{"path_article": "actions/deployment/about-continuous-deployment", "path_count": 1740} +{"path_article": "admin/overview/about-github-ae", "path_count": 1732} +{"path_article": "developers/apps/guides/using-the-github-api-in-your-app", "path_count": 1720} +{"path_article": "get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server", "path_count": 1718} +{"path_article": "rest/guides/working-with-comments", "path_count": 1708} +{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-security-log", "path_count": 1699} +{"path_article": "code-security/getting-started/github-security-features", "path_count": 1696} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository", "path_count": 1692} +{"path_article": "organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization", "path_count": 1689} +{"path_article": "admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh", "path_count": 1685} +{"path_article": "actions/hosting-your-own-runners/using-labels-with-self-hosted-runners", "path_count": 1685} +{"path_article": "organizations/managing-organization-settings/transferring-organization-ownership", "path_count": 1679} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository", "path_count": 1678} +{"path_article": "codespaces/customizing-your-codespace/personalizing-codespaces-for-your-account", "path_count": 1678} +{"path_article": "actions/managing-issues-and-pull-requests/adding-labels-to-issues", "path_count": 1677} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges", "path_count": 1675} +{"path_article": "admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script", "path_count": 1666} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files", "path_count": 1663} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql", "path_count": 1660} +{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization", "path_count": 1658} +{"path_article": "get-started/learning-about-github/github-language-support", "path_count": 1650} +{"path_article": "graphql/guides", "path_count": 1643} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-nodejs", "path_count": 1634} +{"path_article": "admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users", "path_count": 1634} +{"path_article": "developers/overview/secret-scanning-partner-program", "path_count": 1631} +{"path_article": "billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method", "path_count": 1620} +{"path_article": "rest/guides/discovering-resources-for-a-user", "path_count": 1615} +{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved", "path_count": 1612} +{"path_article": "search-github/searching-on-github/searching-topics", "path_count": 1610} +{"path_article": "code-security/security-advisories/about-github-security-advisories", "path_count": 1606} +{"path_article": "get-started/learning-about-github", "path_count": 1603} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/converting-a-user-into-an-organization", "path_count": 1601} +{"path_article": "github/searching-for-information-on-github/searching-on-github/searching-for-repositories", "path_count": 1597} +{"path_article": "authentication/troubleshooting-ssh/error-unknown-key-type", "path_count": 1596} +{"path_article": "github/searching-for-information-on-github/getting-started-with-searching-on-github/understanding-the-search-syntax", "path_count": 1594} +{"path_article": "github/customizing-your-github-workflow/exploring-integrations/about-integrations", "path_count": 1593} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request", "path_count": 1584} +{"path_article": "repositories/working-with-files/using-files/navigating-code-on-github", "path_count": 1584} +{"path_article": "actions/managing-workflow-runs/removing-workflow-artifacts", "path_count": 1582} +{"path_article": "billing/managing-billing-for-your-github-account", "path_count": 1578} +{"path_article": "code-security/getting-started/securing-your-repository", "path_count": 1572} +{"path_article": "github/working-with-github-support/submitting-a-ticket", "path_count": 1566} +{"path_article": "actions/hosting-your-own-runners/using-a-proxy-server-with-self-hosted-runners", "path_count": 1563} +{"path_article": "rest/reference/scim", "path_count": 1559} +{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/configuring-basic-settings", "path_count": 1557} +{"path_article": "communities/documenting-your-project-with-wikis/creating-a-footer-or-sidebar-for-your-wiki", "path_count": 1551} +{"path_article": "organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities", "path_count": 1550} +{"path_article": "billing/managing-your-license-for-github-enterprise", "path_count": 1545} +{"path_article": "actions/deployment/deploying-to-azure-app-service", "path_count": 1535} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github", "path_count": 1531} +{"path_article": "rest/reference/reactions", "path_count": 1527} +{"path_article": "admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap", "path_count": 1522} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/changing-project-board-visibility", "path_count": 1522} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/adding-organizations-to-your-enterprise-account", "path_count": 1517} +{"path_article": "developers/overview", "path_count": 1511} +{"path_article": "github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists", "path_count": 1502} +{"path_article": "github/getting-started-with-github/quickstart/create-a-repo", "path_count": 1501} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview", "path_count": 1501} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages", "path_count": 1500} +{"path_article": "billing/managing-billing-for-git-large-file-storage/about-billing-for-git-large-file-storage", "path_count": 1499} +{"path_article": "actions/migrating-to-github-actions/migrating-from-azure-pipelines-to-github-actions", "path_count": 1497} +{"path_article": "rest/reference/oauth-authorizations", "path_count": 1488} +{"path_article": "rest/reference/licenses", "path_count": 1481} +{"path_article": "github/working-with-github-support/about-github-support", "path_count": 1477} +{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/about-github-education-for-students", "path_count": 1474} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs", "path_count": 1472} +{"path_article": "authentication/keeping-your-account-and-data-secure/connecting-with-third-party-applications", "path_count": 1466} +{"path_article": "sponsors/getting-started-with-github-sponsors/about-github-sponsors", "path_count": 1463} +{"path_article": "graphql/guides/migrating-from-rest-to-graphql", "path_count": 1458} +{"path_article": "education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program", "path_count": 1455} +{"path_article": "repositories/releasing-projects-on-github/comparing-releases", "path_count": 1453} +{"path_article": "github/getting-started-with-github/getting-started-with-git/managing-remote-repositories", "path_count": 1445} +{"path_article": "admin/guides", "path_count": 1443} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks", "path_count": 1441} +{"path_article": "search-github/getting-started-with-searching-on-github/sorting-search-results", "path_count": 1432} +{"path_article": "admin/github-actions/managing-access-to-actions-from-githubcom/about-using-actions-in-your-enterprise", "path_count": 1432} +{"path_article": "developers/apps/getting-started-with-apps/setting-up-your-development-environment-to-create-a-github-app", "path_count": 1431} +{"path_article": "billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account", "path_count": 1423} +{"path_article": "authentication/keeping-your-account-and-data-secure/authorizing-github-apps", "path_count": 1422} +{"path_article": "github/copilot/research-recitation", "path_count": 1418} +{"path_article": "github/extending-github/getting-started-with-the-api", "path_count": 1408} +{"path_article": "communities/moderating-comments-and-conversations/managing-disruptive-comments", "path_count": 1403} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests", "path_count": 1395} +{"path_article": "rest/reference/secret-scanning", "path_count": 1384} +{"path_article": "issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects", "path_count": 1384} +{"path_article": "issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository", "path_count": 1380} +{"path_article": "developers/apps/managing-github-apps/editing-a-github-apps-permissions", "path_count": 1366} +{"path_article": "github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud", "path_count": 1364} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/uninstalling-github-desktop", "path_count": 1363} +{"path_article": "github/site-policy/github-candidate-privacy-policy", "path_count": 1360} +{"path_article": "authentication/securing-your-account-with-two-factor-authentication-2fa/changing-two-factor-authentication-delivery-methods-for-your-mobile-device", "path_count": 1358} +{"path_article": "repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests", "path_count": 1358} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/verifying-or-approving-a-domain-for-your-enterprise-account", "path_count": 1356} +{"path_article": "organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization", "path_count": 1351} +{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits/commit-branch-and-tag-labels", "path_count": 1350} +{"path_article": "repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage", "path_count": 1342} +{"path_article": "authentication/troubleshooting-ssh/deleted-or-missing-ssh-keys", "path_count": 1333} +{"path_article": "admin/configuration/configuring-network-settings/configuring-tls", "path_count": 1332} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests", "path_count": 1322} +{"path_article": "graphql/reference/scalars", "path_count": 1314} +{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware", "path_count": 1312} +{"path_article": "github/getting-started-with-github/getting-started-with-git/setting-your-username-in-git", "path_count": 1311} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/types-of-emails-github-sends", "path_count": 1301} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/managing-your-scheduled-reminders", "path_count": 1300} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot", "path_count": 1297} +{"path_article": "organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization", "path_count": 1292} +{"path_article": "codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces", "path_count": 1291} +{"path_article": "desktop/contributing-and-collaborating-using-github-desktop/managing-commits/amending-a-commit", "path_count": 1290} +{"path_article": "github/customizing-your-github-workflow/purchasing-and-installing-apps-in-github-marketplace/installing-an-app-in-your-organization", "path_count": 1288} +{"path_article": "github/working-with-github-support/github-enterprise-cloud-support", "path_count": 1286} +{"path_article": "admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws", "path_count": 1284} +{"path_article": "github/searching-for-information-on-github/searching-on-github/searching-commits", "path_count": 1282} +{"path_article": "actions/advanced-guides/using-github-cli-in-workflows", "path_count": 1281} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise", "path_count": 1274} +{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization", "path_count": 1271} +{"path_article": "developers/apps/building-github-apps/setting-permissions-for-github-apps", "path_count": 1271} +{"path_article": "github/getting-started-with-github/quickstart/set-up-git", "path_count": 1261} +{"path_article": "get-started/using-git/about-git-subtree-merges", "path_count": 1261} +{"path_article": "developers/apps/managing-oauth-apps/troubleshooting-oauth-app-access-token-request-errors", "path_count": 1261} +{"path_article": "organizations/restricting-access-to-your-organizations-data", "path_count": 1260} +{"path_article": "admin/installation", "path_count": 1249} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot", "path_count": 1242} +{"path_article": "graphql/guides/managing-enterprise-accounts", "path_count": 1241} +{"path_article": "github/importing-your-projects-to-github/importing-source-code-to-github/updating-commit-author-attribution-with-github-importer", "path_count": 1239} +{"path_article": "repositories/working-with-files", "path_count": 1238} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions", "path_count": 1236} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/updating-github-desktop", "path_count": 1232} +{"path_article": "github/searching-for-information-on-github/searching-on-github", "path_count": 1231} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile", "path_count": 1228} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository", "path_count": 1228} +{"path_article": "rest/guides/best-practices-for-integrators", "path_count": 1225} +{"path_article": "actions/publishing-packages/publishing-java-packages-with-gradle", "path_count": 1224} +{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/about-git-large-file-storage-and-github-desktop", "path_count": 1219} +{"path_article": "github/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization", "path_count": 1219} +{"path_article": "authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions", "path_count": 1215} +{"path_article": "codespaces/developing-in-codespaces/developing-in-a-codespace", "path_count": 1213} +{"path_article": "actions/monitoring-and-troubleshooting-workflows/viewing-workflow-run-history", "path_count": 1210} +{"path_article": "admin/configuration/configuring-network-settings/network-ports", "path_count": 1207} +{"path_article": "actions/hosting-your-own-runners/removing-self-hosted-runners", "path_count": 1206} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/connecting-an-azure-subscription-to-your-enterprise", "path_count": 1204} +{"path_article": "search-github/getting-started-with-searching-on-github", "path_count": 1202} +{"path_article": "authentication/troubleshooting-ssh/error-ssh-add-illegal-option----k", "path_count": 1199} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests", "path_count": 1198} +{"path_article": "github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations", "path_count": 1198} +{"path_article": "organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators", "path_count": 1195} +{"path_article": "desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop", "path_count": 1188} +{"path_article": "admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users", "path_count": 1187} +{"path_article": "github/authenticating-to-github/troubleshooting-ssh/error-permission-denied-publickey", "path_count": 1186} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository", "path_count": 1185} +{"path_article": "issues/organizing-your-work-with-project-boards/tracking-work-with-project-boards/adding-notes-to-a-project-board", "path_count": 1183} +{"path_article": "codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces", "path_count": 1183} +{"path_article": "actions/managing-workflow-runs/re-running-a-workflow", "path_count": 1182} +{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-deploy-keys", "path_count": 1182} +{"path_article": "desktop/installing-and-configuring-github-desktop/overview/supported-operating-systems", "path_count": 1182} +{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-dotnet-project-for-codespaces", "path_count": 1181} +{"path_article": "authentication/troubleshooting-ssh/error-ssl-certificate-problem-verify-that-the-ca-cert-is-ok", "path_count": 1174} +{"path_article": "billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process", "path_count": 1172} +{"path_article": "github/understanding-how-github-uses-and-protects-your-data/requesting-an-archive-of-your-personal-accounts-data", "path_count": 1168} +{"path_article": "github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/using-query-parameters-to-create-a-pull-request", "path_count": 1167} +{"path_article": "account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github", "path_count": 1164} +{"path_article": "actions/managing-workflow-runs/deleting-a-workflow-run", "path_count": 1159} +{"path_article": "github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication", "path_count": 1159} +{"path_article": "billing/managing-your-github-billing-settings/about-billing-on-github", "path_count": 1159} +{"path_article": "code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review", "path_count": 1157} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/copying-a-project-board", "path_count": 1156} +{"path_article": "actions/deployment/installing-an-apple-certificate-on-macos-runners-for-xcode-development", "path_count": 1155} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/troubleshooting-commits-on-your-timeline", "path_count": 1152} +{"path_article": "github/searching-for-information-on-github/searching-on-github/finding-files-on-github", "path_count": 1151} +{"path_article": "github/understanding-how-github-uses-and-protects-your-data/managing-data-use-settings-for-your-private-repository", "path_count": 1150} +{"path_article": "actions/reference/events-that-trigger-workflows", "path_count": 1149} +{"path_article": "issues/organizing-your-work-with-project-boards/managing-project-boards/editing-a-project-board", "path_count": 1148} +{"path_article": "issues/organizing-your-work-with-project-boards", "path_count": 1145} +{"path_article": "communities/setting-up-your-project-for-healthy-contributions/about-community-profiles-for-public-repositories", "path_count": 1145} +{"path_article": "github/site-policy/github-sponsors-additional-terms", "path_count": 1143} +{"path_article": "authentication/troubleshooting-commit-signature-verification", "path_count": 1140} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-powershell", "path_count": 1139} +{"path_article": "billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage", "path_count": 1133} +{"path_article": "authentication/keeping-your-account-and-data-secure/about-anonymized-urls", "path_count": 1132} +{"path_article": "admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml", "path_count": 1129} +{"path_article": "developers/apps/getting-started-with-apps/activating-optional-features-for-apps", "path_count": 1121} +{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git", "path_count": 1118} +{"path_article": "developers/webhooks-and-events", "path_count": 1116} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/managing-licenses-for-visual-studio-subscription-with-github-enterprise", "path_count": 1114} +{"path_article": "github/site-policy/github-data-protection-agreement", "path_count": 1112} +{"path_article": "admin/enterprise-management/configuring-high-availability", "path_count": 1109} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership", "path_count": 1106} +{"path_article": "organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta", "path_count": 1102} +{"path_article": "actions/learn-github-actions/sharing-workflows-with-your-organization", "path_count": 1101} +{"path_article": "repositories/releasing-projects-on-github", "path_count": 1100} +{"path_article": "authentication/troubleshooting-ssh/error-permission-to-userrepo-denied-to-other-user", "path_count": 1100} +{"path_article": "actions/managing-workflow-runs/canceling-a-workflow", "path_count": 1095} +{"path_article": "repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository", "path_count": 1093} +{"path_article": "actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions", "path_count": 1093} +{"path_article": "github/setting-up-and-managing-your-enterprise/setting-policies-for-organizations-in-your-enterprise-account/enforcing-github-actions-policies-in-your-enterprise-account", "path_count": 1091} +{"path_article": "github/site-policy/github-logo-policy", "path_count": 1091} +{"path_article": "get-started/using-github/github-desktop", "path_count": 1091} +{"path_article": "authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-applications-oauth", "path_count": 1090} +{"path_article": "actions/managing-workflow-runs/re-running-workflows-and-jobs", "path_count": 1083} +{"path_article": "billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage", "path_count": 1081} +{"path_article": "repositories/creating-and-managing-repositories/creating-an-issues-only-repository", "path_count": 1076} +{"path_article": "desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/setting-a-theme-for-github-desktop", "path_count": 1076} +{"path_article": "organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization", "path_count": 1070} +{"path_article": "github/setting-up-and-managing-your-enterprise/setting-policies-for-organizations-in-your-enterprise-account/enforcing-security-settings-in-your-enterprise-account", "path_count": 1063} +{"path_article": "admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-amazon-s3-storage", "path_count": 1060} +{"path_article": "github/customizing-your-github-workflow/exploring-integrations/about-github-marketplace", "path_count": 1058} +{"path_article": "billing/managing-billing-for-your-github-account/about-billing-for-github-accounts", "path_count": 1057} +{"path_article": "actions/using-containerized-services/creating-redis-service-containers", "path_count": 1054} +{"path_article": "github/setting-up-and-managing-your-enterprise/setting-policies-for-organizations-in-your-enterprise-account/enforcing-repository-management-policies-in-your-enterprise-account", "path_count": 1047} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-access-to-your-user-accounts-project-boards", "path_count": 1045} +{"path_article": "rest/reference/interactions", "path_count": 1041} +{"path_article": "developers/github-marketplace/creating-apps-for-github-marketplace/requirements-for-listing-an-app", "path_count": 1039} +{"path_article": "communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization", "path_count": 1034} +{"path_article": "code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/configuring-notifications-for-vulnerable-dependencies", "path_count": 1034} +{"path_article": "actions/monitoring-and-troubleshooting-workflows/using-the-visualization-graph", "path_count": 1030} +{"path_article": "graphql/overview/breaking-changes", "path_count": 1026} +{"path_article": "developers/apps/building-github-apps/creating-a-github-app-from-a-manifest", "path_count": 1025} +{"path_article": "organizations/organizing-members-into-teams/removing-organization-members-from-a-team", "path_count": 1023} +{"path_article": "github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/working-with-pre-receive-hooks", "path_count": 1023} +{"path_article": "github/site-policy-deprecated/github-enterprise-service-level-agreement", "path_count": 1018} +{"path_article": "codespaces/codespaces-reference/understanding-billing-for-codespaces", "path_count": 1015} +{"path_article": "actions/automating-builds-and-tests/building-and-testing-java-with-ant", "path_count": 1013} +{"path_article": "github/committing-changes-to-your-project/viewing-and-comparing-commits", "path_count": 1010} +{"path_article": "education/manage-coursework-with-github-classroom/teach-with-github-classroom/connect-a-learning-management-system-to-github-classroom", "path_count": 1008} +{"path_article": "admin/overview", "path_count": 1008} +{"path_article": "billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date", "path_count": 1007} +{"path_article": "repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content", "path_count": 999} +{"path_article": "codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace", "path_count": 995} +{"path_article": "code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning", "path_count": 992} +{"path_article": "communities/moderating-comments-and-conversations/locking-conversations", "path_count": 990} +{"path_article": "organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization", "path_count": 974} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/configuring-saml-single-sign-on-for-enterprise-managed-users", "path_count": 974} +{"path_article": "communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema", "path_count": 971} +{"path_article": "actions/reference/context-and-expression-syntax-for-github-actions", "path_count": 969} +{"path_article": "github-cli/github-cli/quickstart", "path_count": 969} +{"path_article": "communities/documenting-your-project-with-wikis/changing-access-permissions-for-wikis", "path_count": 966} +{"path_article": "github/getting-started-with-github/using-git/pushing-commits-to-a-remote-repository", "path_count": 966} +{"path_article": "github/writing-on-github/working-with-saved-replies/about-saved-replies", "path_count": 964} +{"path_article": "github/customizing-your-github-workflow/purchasing-and-installing-apps-in-github-marketplace/installing-an-app-in-your-personal-account", "path_count": 959} +{"path_article": "codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces", "path_count": 959} +{"path_article": "get-started/onboarding", "path_count": 958} +{"path_article": "github/site-policy-deprecated/amendment-to-github-terms-of-service-applicable-to-us-federal-government-users", "path_count": 955} +{"path_article": "code-security/secret-scanning/configuring-secret-scanning-for-your-repositories", "path_count": 951} +{"path_article": "developers/github-marketplace/github-marketplace-overview/about-marketplace-badges", "path_count": 946} +{"path_article": "account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/best-practices-for-leaving-your-company", "path_count": 945} +{"path_article": "developers/apps/managing-github-apps/making-a-github-app-public-or-private", "path_count": 944} +{"path_article": "github/managing-files-in-a-repository/managing-files-on-github/adding-a-file-to-a-repository", "path_count": 939} +{"path_article": "github/committing-changes-to-your-project", "path_count": 936} +{"path_article": "get-started/onboarding/getting-started-with-github-enterprise-cloud", "path_count": 936} +{"path_article": "admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-storage-capacity", "path_count": 935} +{"path_article": "repositories/archiving-a-github-repository/referencing-and-citing-content", "path_count": 932} +{"path_article": "graphql/guides/using-global-node-ids", "path_count": 930} +{"path_article": "github/site-policy/github-marketplace-terms-of-service", "path_count": 929} +{"path_article": "billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage", "path_count": 928} +{"path_article": "github/writing-on-github/working-with-saved-replies/using-saved-replies", "path_count": 925} +{"path_article": "github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/viewing-people-in-your-enterprise", "path_count": 924} +{"path_article": "github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/finding-changed-methods-and-functions-in-a-pull-request", "path_count": 924} +{"path_article": "get-started/onboarding/getting-started-with-github-team", "path_count": 922} +{"path_article": "admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator", "path_count": 921} +{"path_article": "github/site-policy/github-registered-developer-agreement", "path_count": 920} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/upgrading-from-dependabotcom-to-github-native-dependabot", "path_count": 918} +{"path_article": "code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/customizing-dependency-updates", "path_count": 917} +{"path_article": "code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow", "path_count": 916} +{"path_article": "repositories/working-with-files/managing-large-files/resolving-git-large-file-storage-upload-failures", "path_count": 916} +{"path_article": "issues/tracking-your-work-with-issues/quickstart", "path_count": 912} +{"path_article": "admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams", "path_count": 910} +{"path_article": "organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group", "path_count": 909} +{"path_article": "organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization", "path_count": 908} +{"path_article": "admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs", "path_count": 904} +{"path_article": "github/understanding-how-github-uses-and-protects-your-data/opting-into-or-out-of-the-github-archive-program-for-your-public-repository", "path_count": 903} +{"path_article": "communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization", "path_count": 903} +{"path_article": "communities/documenting-your-project-with-wikis", "path_count": 902} +{"path_article": "github/writing-on-github/working-with-saved-replies/creating-a-saved-reply", "path_count": 898} +{"path_article": "admin/configuration/configuring-network-settings/configuring-a-hostname", "path_count": 898} +{"path_article": "rest/guides/building-a-ci-server", "path_count": 896} +{"path_article": "communities/documenting-your-project-with-wikis/viewing-a-wikis-history-of-changes", "path_count": 895} +{"path_article": "code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github", "path_count": 892} +{"path_article": "admin/enterprise-management/configuring-high-availability/creating-a-high-availability-replica", "path_count": 891} +{"path_article": "rest/guides/rendering-data-as-graphs", "path_count": 887} +{"path_article": "codespaces/setting-up-your-project-for-codespaces/setting-up-your-java-project-for-codespaces", "path_count": 887} +{"path_article": "search-github/searching-on-github/searching-for-packages", "path_count": 885} +{"path_article": "github/setting-up-and-managing-your-github-user-account/managing-email-preferences/setting-your-commit-email-address", "path_count": 878} +{"path_article": "admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode", "path_count": 875} +{"path_article": "admin/configuration/configuring-your-enterprise/accessing-the-management-console", "path_count": 873} +{"path_article": "github/importing-your-projects-to-github/working-with-subversion-on-github/subversion-properties-supported-by-github", "path_count": 869} +{"path_article": "admin/configuration/configuring-your-enterprise/site-admin-dashboard", "path_count": 864} +{"path_article": "organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator", "path_count": 860} +{"path_article": "billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts", "path_count": 859} +{"path_article": "discussions/collaborating-with-your-community-using-discussions/about-discussions", "path_count": 856} diff --git a/middleware/categories-for-support.js b/middleware/categories-for-support.js index 08a9756b11..15599444da 100644 --- a/middleware/categories-for-support.js +++ b/middleware/categories-for-support.js @@ -1,39 +1,59 @@ import path from 'path' + +import { cacheControlFactory } from './cache-control.js' + const renderOpts = { textOnly: true, encodeEntities: true } +const cacheControl = cacheControlFactory(60 * 60 * 24) + +// Module-global variable that gets populate once the categoriesForSupport() +// runs at least once. +let globalAllCategoriesCache = null + // This middleware exposes a list of all categories and child articles at /categories.json. // GitHub Support uses this for internal ZenDesk search functionality. export default async function categoriesForSupport(req, res, next) { const englishSiteTree = req.context.siteTree.en - const allCategories = [] + const allCategories = globalAllCategoriesCache || [] + if (!allCategories.length) { + await Promise.all( + Object.keys(englishSiteTree).map(async (version) => { + await Promise.all( + englishSiteTree[version].childPages.map(async (productPage) => { + if (productPage.page.relativePath.startsWith('early-access')) return + if (!productPage.childPages) return - await Promise.all( - Object.keys(englishSiteTree).map(async (version) => { - await Promise.all( - englishSiteTree[version].childPages.map(async (productPage) => { - if (productPage.page.relativePath.startsWith('early-access')) return - if (!productPage.childPages) return + await Promise.all( + productPage.childPages.map(async (categoryPage) => { + // We can't get the rendered titles from middleware/render-tree-titles + // here because that middleware only runs on the current version, and this + // middleware processes all versions. + const name = categoryPage.page.title.includes('{') + ? await categoryPage.page.renderProp('title', req.context, renderOpts) + : categoryPage.page.title - await Promise.all( - productPage.childPages.map(async (categoryPage) => { - // We can't get the rendered titles from middleware/render-tree-titles - // here because that middleware only runs on the current version, and this - // middleware processes all versions. - const name = categoryPage.page.title.includes('{') - ? await categoryPage.page.renderProp('title', req.context, renderOpts) - : categoryPage.page.title - - allCategories.push({ - name, - published_articles: await findArticlesPerCategory(categoryPage, [], req.context), + allCategories.push({ + name, + published_articles: await findArticlesPerCategory(categoryPage, [], req.context), + }) }) - }) - ) - }) - ) - }) - ) + ) + }) + ) + }) + ) + if (allCategories.length && process.env.NODE_ENV !== 'development') { + globalAllCategoriesCache = allCategories + } + } + + // Cache somewhat aggressively but note that it will be soft-purged + // in every prod deployment. + cacheControl(res) + + // Undo the cookie setting that CSRF sets. + res.removeHeader('set-cookie') return res.json(allCategories) } diff --git a/middleware/contextualizers/graphql.js b/middleware/contextualizers/graphql.js index 01681fd634..12d1974d5e 100644 --- a/middleware/contextualizers/graphql.js +++ b/middleware/contextualizers/graphql.js @@ -9,6 +9,9 @@ const prerenderedObjects = readCompressedJsonFileFallback( const prerenderedInputObjects = readCompressedJsonFileFallback( './lib/graphql/static/prerendered-input-objects.json' ) +const prerenderedMutations = readCompressedJsonFileFallback( + './lib/graphql/static/prerendered-mutations.json' +) const explorerUrl = process.env.NODE_ENV === 'production' @@ -36,6 +39,7 @@ export default function graphqlContext(req, res, next) { upcomingChangesForCurrentVersion: upcomingChanges[graphqlVersion], prerenderedObjectsForCurrentVersion: prerenderedObjects[graphqlVersion], prerenderedInputObjectsForCurrentVersion: prerenderedInputObjects[graphqlVersion], + prerenderedMutationsForCurrentVersion: prerenderedMutations[graphqlVersion], explorerUrl, changelog, } diff --git a/middleware/contextualizers/rest.js b/middleware/contextualizers/rest.js index 9ed8f2a06e..bc5c0b6119 100644 --- a/middleware/contextualizers/rest.js +++ b/middleware/contextualizers/rest.js @@ -1,5 +1,5 @@ import path from 'path' -import getRest from '../../lib/rest/index.js' +import getRest, { restRepoCategoryExceptions } from '../../lib/rest/index.js' import removeFPTFromPath from '../../lib/remove-fpt-from-path.js' // Global cache to avoid calling getRest() more than once @@ -24,11 +24,16 @@ export default async function restContext(req, res, next) { if (!req.pagePath.includes('rest/reference')) return next() // e.g. the `activity` from `/en/rest/reference/activity#events` - const category = req.pagePath + let category = req.pagePath .split('rest/reference')[1] .replace(/^\//, '') // remove leading slash .split('/')[0] + // override the category if the category is in the restRepoCategoryExceptions list + if (restRepoCategoryExceptions.includes(category)) { + category = 'repos' + } + // ignore empty strings or bare `/` if (!category || category.length < 2) return next() diff --git a/middleware/healthz.js b/middleware/healthz.js new file mode 100644 index 0000000000..43ac22b340 --- /dev/null +++ b/middleware/healthz.js @@ -0,0 +1,20 @@ +import express from 'express' + +const router = express.Router() + +/** + * Returns the healthiness of the service. + * This may be used by azure app service (forthcoming) to determine whether this + * instance remains in the pool to handle requests + * For example: if we have a failing database connection we may return a 500 status here. + */ +router.get('/', function healthz(req, res, next) { + res.set({ + 'surrogate-control': 'private, no-store', + 'cache-control': 'private, no-store', + }) + + res.sendStatus(200) +}) + +export default router diff --git a/middleware/index.js b/middleware/index.js index 8b4f73d951..60919f6bdb 100644 --- a/middleware/index.js +++ b/middleware/index.js @@ -34,10 +34,12 @@ import helpToDocs from './redirects/help-to-docs.js' import languageCodeRedirects from './redirects/language-code-redirects.js' import handleRedirects from './redirects/handle-redirects.js' import findPage from './find-page.js' +import spotContentFlaws from './spot-content-flaws.js' import blockRobots from './block-robots.js' import archivedEnterpriseVersionsAssets from './archived-enterprise-versions-assets.js' import events from './events.js' import search from './search.js' +import healthz from './healthz.js' import archivedEnterpriseVersions from './archived-enterprise-versions.js' import robots from './robots.js' import earlyAccessLinks from './contextualizers/early-access-links.js' @@ -110,7 +112,6 @@ export default function (app) { express.static('assets', { index: false, etag: false, - lastModified: false, // Can be aggressive because images inside the content get unique // URLs with a cache busting prefix. maxAge: '7 days', @@ -121,7 +122,6 @@ export default function (app) { express.static('data/graphql', { index: false, etag: false, - lastModified: false, maxAge: '7 days', // A bit longer since releases are more sparse }) ) @@ -174,6 +174,7 @@ export default function (app) { // *** Config and context for rendering *** app.use(asyncMiddleware(instrument(findPage, './find-page'))) // Must come before archived-enterprise-versions, breadcrumbs, featured-links, products, render-page + app.use(asyncMiddleware(instrument(spotContentFlaws, './spot-content-flaws'))) // Must come after findPage app.use(instrument(blockRobots, './block-robots')) // Check for a dropped connection before proceeding @@ -182,6 +183,7 @@ export default function (app) { // *** Rendering, 2xx responses *** app.use('/events', asyncMiddleware(instrument(events, './events'))) app.use('/search', asyncMiddleware(instrument(search, './search'))) + app.use('/healthz', asyncMiddleware(instrument(healthz, './healthz'))) // Check for a dropped connection before proceeding (again) app.use(haltOnDroppedConnection) diff --git a/middleware/is-next-request.js b/middleware/is-next-request.js deleted file mode 100644 index 01e5e9aa89..0000000000 --- a/middleware/is-next-request.js +++ /dev/null @@ -1,11 +0,0 @@ -const { FEATURE_NEXTJS } = process.env - -export default function isNextRequest(req, res, next) { - req.renderWithNextjs = false - - if (FEATURE_NEXTJS) { - req.renderWithNextjs = true - } - - return next() -} diff --git a/middleware/redirects/handle-redirects.js b/middleware/redirects/handle-redirects.js index febac3cdb4..68372ed495 100644 --- a/middleware/redirects/handle-redirects.js +++ b/middleware/redirects/handle-redirects.js @@ -35,12 +35,16 @@ export default function handleRedirects(req, res, next) { let redirect = req.path let queryParams = req._parsedUrl.query + // update old-style query params (#9467) + if ('q' in req.query) { + const newQueryParams = new URLSearchParams(queryParams) + newQueryParams.set('query', newQueryParams.get('q')) + newQueryParams.delete('q') + return res.redirect(301, `${req.path}?${newQueryParams.toString()}`) + } + // have to do this now because searchPath replacement changes the path as well as the query params if (queryParams) { - // update old-style query params (#9467) - if ('q' in req.query) { - queryParams = queryParams.replace('q=', 'query=') - } queryParams = '?' + queryParams redirect = (redirect + queryParams).replace(patterns.searchPath, '$1') } diff --git a/middleware/render-page.js b/middleware/render-page.js index a082920d6a..24a764d48c 100644 --- a/middleware/render-page.js +++ b/middleware/render-page.js @@ -1,21 +1,124 @@ import { get } from 'lodash-es' +import QuickLRU from 'quick-lru' + import patterns from '../lib/patterns.js' import getMiniTocItems from '../lib/get-mini-toc-items.js' import Page from '../lib/page.js' +import statsd from '../lib/statsd.js' import { isConnectionDropped } from './halt-on-dropped-connection.js' import { nextApp, nextHandleRequest } from './next.js' +function cacheOnReq(fn, minSize = 1024, lruMaxSize = 1000) { + const cache = new QuickLRU({ maxSize: lruMaxSize }) + + return async function (req) { + const path = req.pagePath || req.path + + // Is the request for the GraphQL Explorer page? + const isGraphQLExplorer = + req.context.currentPathWithoutLanguage === '/graphql/overview/explorer' + + // Serve from the cache if possible + const isCacheable = + // Skip for HTTP methods other than GET + req.method === 'GET' && + // Skip for JSON debugging info requests + !('json' in req.query) && + // Skip for the GraphQL Explorer page + !isGraphQLExplorer + + if (isCacheable && cache.has(path)) { + return cache.get(path) + } + const result = await fn(req) + + if (result && isCacheable && result.length > minSize) { + cache.set(path, result) + } + return result + } +} + +async function buildRenderedPage(req) { + const { context } = req + const { page } = context + const path = req.pagePath || req.path + + const pageRenderTimed = statsd.asyncTimer(page.render, 'middleware.render_page', [`path:${path}`]) + + const renderedPage = await pageRenderTimed(context) + + // handle special-case prerendered GraphQL objects page + if (path.endsWith('graphql/reference/objects')) { + return renderedPage + context.graphql.prerenderedObjectsForCurrentVersion.html + } + + // handle special-case prerendered GraphQL input objects page + if (path.endsWith('graphql/reference/input-objects')) { + return renderedPage + context.graphql.prerenderedInputObjectsForCurrentVersion.html + } + + // handle special-case prerendered GraphQL mutations page + if (path.endsWith('graphql/reference/mutations')) { + return renderedPage + context.graphql.prerenderedMutationsForCurrentVersion.html + } + + return renderedPage +} + +async function buildMiniTocItems(req) { + const { context } = req + const { page } = context + const path = req.pagePath || req.path + + // get mini TOC items on articles + if (!page.showMiniToc) { + return + } + + const miniTocItems = getMiniTocItems(context.renderedPage, page.miniTocMaxHeadingLevel) + + // handle special-case prerendered GraphQL objects page + if (path.endsWith('graphql/reference/objects')) { + // concat the markdown source miniToc items and the prerendered miniToc items + return miniTocItems.concat(context.graphql.prerenderedObjectsForCurrentVersion.miniToc) + } + + // handle special-case prerendered GraphQL input objects page + if (path.endsWith('graphql/reference/input-objects')) { + // concat the markdown source miniToc items and the prerendered miniToc items + return miniTocItems.concat(context.graphql.prerenderedInputObjectsForCurrentVersion.miniToc) + } + + // handle special-case prerendered GraphQL mutations page + if (path.endsWith('graphql/reference/mutations')) { + // concat the markdown source miniToc items and the prerendered miniToc items + return miniTocItems.concat(context.graphql.prerenderedMutationsForCurrentVersion.miniToc) + } + + return miniTocItems +} + +// The avergage size of buildRenderedPage() is about 22KB. +// The median in 7KB. By only caching those larger than 10KB we avoid +// putting too much into the cache. +const wrapRenderedPage = cacheOnReq(buildRenderedPage, 10 * 1024) +// const wrapMiniTocItems = cacheOnReq(buildMiniTocItems) + export default async function renderPage(req, res, next) { - if (req.path.startsWith('/storybook')) { + const { context } = req + const { page } = context + const path = req.pagePath || req.path + + if (path.startsWith('/storybook')) { return nextHandleRequest(req, res) } - const page = req.context.page // render a 404 page if (!page) { - if (process.env.NODE_ENV !== 'test' && req.context.redirectNotFound) { + if (process.env.NODE_ENV !== 'test' && context.redirectNotFound) { console.error( - `\nTried to redirect to ${req.context.redirectNotFound}, but that page was not found.\n` + `\nTried to redirect to ${context.redirectNotFound}, but that page was not found.\n` ) } return nextApp.render404(req, res) @@ -26,66 +129,38 @@ export default async function renderPage(req, res, next) { return res.status(200).end() } - // Is the request for JSON debugging info? - const isRequestingJsonForDebugging = 'json' in req.query && process.env.NODE_ENV !== 'production' - - // add page context - const context = Object.assign({}, req.context, { page }) - // Updating the Last-Modified header for substantive changes on a page for engineering // Docs Engineering Issue #945 - if (context.page.effectiveDate) { + if (page.effectiveDate) { // Note that if a page has an invalidate `effectiveDate` string value, // it would be caught prior to this usage and ultimately lead to // 500 error. - res.setHeader('Last-Modified', new Date(context.page.effectiveDate).toUTCString()) + res.setHeader('Last-Modified', new Date(page.effectiveDate).toUTCString()) } // collect URLs for variants of this page in all languages - context.page.languageVariants = Page.getLanguageVariants(req.pagePath) - // Stop processing if the connection was already dropped - if (isConnectionDropped(req, res)) return - - // render page - context.renderedPage = await page.render(context) + page.languageVariants = Page.getLanguageVariants(path) // Stop processing if the connection was already dropped if (isConnectionDropped(req, res)) return - // get mini TOC items on articles - if (page.showMiniToc) { - context.miniTocItems = getMiniTocItems(context.renderedPage, page.miniTocMaxHeadingLevel) - } + req.context.renderedPage = await wrapRenderedPage(req) + req.context.miniTocItems = await buildMiniTocItems(req) - // handle special-case prerendered GraphQL objects page - if (req.pagePath.endsWith('graphql/reference/objects')) { - // concat the markdown source miniToc items and the prerendered miniToc items - context.miniTocItems = context.miniTocItems.concat( - req.context.graphql.prerenderedObjectsForCurrentVersion.miniToc - ) - context.renderedPage = - context.renderedPage + req.context.graphql.prerenderedObjectsForCurrentVersion.html - } - - // handle special-case prerendered GraphQL input objects page - if (req.pagePath.endsWith('graphql/reference/input-objects')) { - // concat the markdown source miniToc items and the prerendered miniToc items - context.miniTocItems = context.miniTocItems.concat( - req.context.graphql.prerenderedInputObjectsForCurrentVersion.miniToc - ) - context.renderedPage = - context.renderedPage + req.context.graphql.prerenderedInputObjectsForCurrentVersion.html - } + // Stop processing if the connection was already dropped + if (isConnectionDropped(req, res)) return // Create string for tag - context.page.fullTitle = context.page.titlePlainText + page.fullTitle = page.titlePlainText // add localized ` - GitHub Docs` suffix to <title> tag (except for the homepage) - if (!patterns.homepagePath.test(req.pagePath)) { - context.page.fullTitle = - context.page.fullTitle + ' - ' + context.site.data.ui.header.github_docs + if (!patterns.homepagePath.test(path)) { + page.fullTitle = page.fullTitle + ' - ' + context.site.data.ui.header.github_docs } + // Is the request for JSON debugging info? + const isRequestingJsonForDebugging = 'json' in req.query && process.env.NODE_ENV !== 'production' + // `?json` query param for debugging request context if (isRequestingJsonForDebugging) { if (req.query.json.length > 1) { @@ -101,8 +176,5 @@ export default async function renderPage(req, res, next) { } } - // Hand rendering over to NextJS - req.context.renderedPage = context.renderedPage - req.context.miniTocItems = context.miniTocItems return nextHandleRequest(req, res) } diff --git a/middleware/spot-content-flaws.js b/middleware/spot-content-flaws.js new file mode 100644 index 0000000000..d05ce4c1f6 --- /dev/null +++ b/middleware/spot-content-flaws.js @@ -0,0 +1,32 @@ +// This middleware, exclusively in 'development' tries to spot flaws in +// the content you're actively viewing. +// The hopeful assumption is that if you're actively viewing this +// page on localhost, you're actively working on its content. + +import path from 'path' + +import kleur from 'kleur' + +export default async function spotContentFlaws(req, res, next) { + const { page } = req.context + if (process.env.NODE_ENV === 'development' && page) { + const trailingSlashRedirects = (page.redirect_from || []).filter( + (uri) => uri.endsWith('/') && uri.startsWith('/') + ) + if (trailingSlashRedirects.length > 0) { + console.warn( + `The page ${kleur.bold(path.relative(process.cwd(), page.fullPath))} has ${ + trailingSlashRedirects.length + } redirect_from entries that have a trailing slash\n ${kleur.yellow( + trailingSlashRedirects.join('\n ') + )}` + ) + console.log( + "If you're actively working on this page, consider", + kleur.bold('deleting all trailing slashes in redirect_from.\n') + ) + } + } + + return next() +} diff --git a/middleware/timeout.js b/middleware/timeout.js index fc54c608d8..166d9dcbb2 100644 --- a/middleware/timeout.js +++ b/middleware/timeout.js @@ -16,13 +16,11 @@ export default timeout.handler({ disable: [], onTimeout: function (req, res, next) { - const incrementTags = [] - // Be careful with depending on attributes set on the `req` because - // under certain conditions the contextualizers might not yet have - // had a chance to run. - if (req.pagePath) { - incrementTags.push(`path:${req.pagePath}`) - } + // The `req.pagePath` can come later so it's not guaranteed to always + // be present. It's added by the `handle-next-data-path.js` middleware + // we translates those "cryptic" `/_next/data/...` URLs from + // client-side routing. + const incrementTags = [`path:${req.pagePath || req.path}`] if (req.context?.currentCategory) { incrementTags.push(`product:${req.context.currentCategory}`) } diff --git a/package-lock.json b/package-lock.json index 513523b4aa..f4a4b1baee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,6 +47,7 @@ "imurmurhash": "^0.1.4", "js-cookie": "^3.0.1", "js-yaml": "^4.1.0", + "kleur": "4.1.4", "liquidjs": "^9.22.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", @@ -59,6 +60,7 @@ "node-fetch": "^3.1.0", "parse5": "^6.0.1", "port-used": "^2.0.8", + "quick-lru": "6.0.2", "rate-limit-redis": "^2.1.0", "react": "^17.0.2", "react-dom": "^17.0.2", @@ -103,6 +105,7 @@ "@graphql-inspector/core": "^2.9.0", "@graphql-tools/load": "^7.4.1", "@jest/globals": "^27.3.1", + "@octokit/graphql": "4.8.0", "@octokit/rest": "^18.12.0", "@types/github-slugger": "^1.3.0", "@types/imurmurhash": "^0.1.1", @@ -11135,6 +11138,17 @@ "node": ">=10.19.0" } }, + "node_modules/http2-wrapper/node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", @@ -13370,10 +13384,9 @@ } }, "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "devOptional": true, + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", "engines": { "node": ">=6" } @@ -17830,6 +17843,15 @@ "node": ">= 6" } }, + "node_modules/prompts/node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "devOptional": true, + "engines": { + "node": ">=6" + } + }, "node_modules/prop-types": { "version": "15.7.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", @@ -18149,11 +18171,11 @@ ] }, "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.0.2.tgz", + "integrity": "sha512-H5ZVbbMzZEl+wEwiMP3v/b7ji+GrM3MRiy62LJbpI+F5+9RNcSKrjz7T0jIJVrlMfMxr7ZG0EGswJiABt75LDg==", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -22246,14 +22268,6 @@ "node": ">=8" } }, - "node_modules/uvu/node_modules/kleur": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", - "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==", - "engines": { - "node": ">=6" - } - }, "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", @@ -31822,6 +31836,13 @@ "requires": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.0.0" + }, + "dependencies": { + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } } }, "https-browserify": { @@ -33492,10 +33513,9 @@ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "devOptional": true + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", + "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==" }, "language-subtag-registry": { "version": "0.3.21", @@ -36868,6 +36888,14 @@ "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" + }, + "dependencies": { + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "devOptional": true + } } }, "prop-types": { @@ -37122,9 +37150,9 @@ "dev": true }, "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-6.0.2.tgz", + "integrity": "sha512-H5ZVbbMzZEl+wEwiMP3v/b7ji+GrM3MRiy62LJbpI+F5+9RNcSKrjz7T0jIJVrlMfMxr7ZG0EGswJiABt75LDg==" }, "random-bytes": { "version": "1.0.0", @@ -40275,13 +40303,6 @@ "kleur": "^4.0.3", "sade": "^1.7.3", "totalist": "^2.0.0" - }, - "dependencies": { - "kleur": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz", - "integrity": "sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==" - } } }, "v8-compile-cache": { diff --git a/package.json b/package.json index b148086fc8..e50d9d2c87 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "imurmurhash": "^0.1.4", "js-cookie": "^3.0.1", "js-yaml": "^4.1.0", + "kleur": "4.1.4", "liquidjs": "^9.22.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", @@ -61,6 +62,7 @@ "node-fetch": "^3.1.0", "parse5": "^6.0.1", "port-used": "^2.0.8", + "quick-lru": "6.0.2", "rate-limit-redis": "^2.1.0", "react": "^17.0.2", "react-dom": "^17.0.2", @@ -105,6 +107,7 @@ "@graphql-inspector/core": "^2.9.0", "@graphql-tools/load": "^7.4.1", "@jest/globals": "^27.3.1", + "@octokit/graphql": "4.8.0", "@octokit/rest": "^18.12.0", "@types/github-slugger": "^1.3.0", "@types/imurmurhash": "^0.1.1", diff --git a/script/deployment/deploy-to-staging.js b/script/deployment/deploy-to-staging.js index 9cc7b14bf3..5e3df9a09b 100644 --- a/script/deployment/deploy-to-staging.js +++ b/script/deployment/deploy-to-staging.js @@ -1,10 +1,12 @@ #!/usr/bin/env node -import sleep from 'await-sleep' import got from 'got' import Heroku from 'heroku-client' import { setOutput } from '@actions/core' import createStagingAppName from './create-staging-app-name.js' +// Equivalent of the 'await-sleep' module without the install +const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms)) + const SLEEP_INTERVAL = 5000 const HEROKU_LOG_LINES_TO_SHOW = 25 diff --git a/script/graphql/update-files.js b/script/graphql/update-files.js index 39fe53e8c7..11cff55c32 100755 --- a/script/graphql/update-files.js +++ b/script/graphql/update-files.js @@ -9,8 +9,7 @@ import { allVersions } from '../../lib/all-versions.js' import processPreviews from './utils/process-previews.js' import processUpcomingChanges from './utils/process-upcoming-changes.js' import processSchemas from './utils/process-schemas.js' -import prerenderObjects from './utils/prerender-objects.js' -import prerenderInputObjects from './utils/prerender-input-objects.js' +import prerender from './utils/prerender-graphql.js' import { prependDatedEntry, createChangelogEntry } from './build-changelog.js' import loadData from '../../lib/site-data.js' @@ -36,6 +35,7 @@ async function main() { const upcomingChangesJson = {} const prerenderedObjects = {} const prerenderedInputObjects = {} + const prerenderedMutations = {} const siteData = loadData() @@ -83,11 +83,22 @@ async function main() { // 4. PRERENDER OBJECTS HTML // because the objects page is too big to render on page load - prerenderedObjects[graphqlVersion] = await prerenderObjects(context) + prerenderedObjects[graphqlVersion] = await prerender(context, 'objects', 'graphql-object.html') // 5. PRERENDER INPUT OBJECTS HTML // because the objects page is too big to render on page load - prerenderedInputObjects[graphqlVersion] = await prerenderInputObjects(context) + prerenderedInputObjects[graphqlVersion] = await prerender( + context, + 'inputObjects', + 'graphql-input-object.html' + ) + + // Prerender mutations + prerenderedMutations[graphqlVersion] = await prerender( + context, + 'mutations', + 'graphql-mutation.html' + ) // 6. UPDATE CHANGELOG if (allVersions[version].nonEnterpriseDefault) { @@ -118,6 +129,10 @@ async function main() { prerenderedInputObjects, path.join(graphqlStaticDir, 'prerendered-input-objects.json') ) + await updateStaticFile( + prerenderedMutations, + path.join(graphqlStaticDir, 'prerendered-mutations.json') + ) // Ensure the YAML linter runs before checkinging in files execSync('npx prettier -w "**/*.{yml,yaml}"') diff --git a/script/graphql/utils/prerender-graphql.js b/script/graphql/utils/prerender-graphql.js new file mode 100644 index 0000000000..965468c5b9 --- /dev/null +++ b/script/graphql/utils/prerender-graphql.js @@ -0,0 +1,30 @@ +#!/usr/bin/env node +import fs from 'fs/promises' +import path from 'path' +import cheerio from 'cheerio' +import { liquid } from '../../../lib/render-content/index.js' +import getMiniTocItems from '../../../lib/get-mini-toc-items.js' +import rewriteLocalLinks from '../../../lib/rewrite-local-links.js' +const includes = path.join(process.cwd(), 'includes') + +export default async function prerender(context, type, includeFilename) { + const htmlArray = [] + + const includeFile = await fs.readFile(path.join(includes, includeFilename), 'utf8') + // render the layout for every object + for (const item of context.graphql.schemaForCurrentVersion[type]) { + context.item = item + const itemHtml = await liquid.parseAndRender(includeFile, context) + const $ = cheerio.load(itemHtml, { xmlMode: true }) + rewriteLocalLinks($, context.currentVersion, context.currentLanguage) + const htmlWithVersionedLinks = $.html() + htmlArray.push(htmlWithVersionedLinks) + } + + const html = htmlArray.join('\n') + + return { + html: html, + miniToc: getMiniTocItems(html), + } +} diff --git a/server.mjs b/server.mjs index 20f9ae4cd0..5f082cf182 100644 --- a/server.mjs +++ b/server.mjs @@ -52,23 +52,15 @@ async function checkPortAvailability() { async function startServer() { const app = createApp() - // If in a deployed environment... - if (NODE_ENV === 'production') { - // If in a true production environment, wait for the cache to be fully warmed. - if (process.env.HEROKU_PRODUCTION_APP || process.env.GITHUB_ACTIONS) { - await warmServer() - } - } else { - // Warm up as soon as possible when in development. - // The `warmServer()` function is idempotent and it will soon be used - // by some middleware, but there's no point in having a started server - // without this warmed up. Besides, by starting this slow thing now, - // it can start immediately instead of waiting for the first request - // to trigger it to warm up. That way, when in development and triggering - // a `nodemon` restart, there's a good chance the warm up has come some - // way before you manage to reach for your browser to do a page refresh. - await warmServer() - } + // Warm up as soon as possible. + // The `warmServer()` function is idempotent and it will soon be used + // by some middleware, but there's no point in having a started server + // without this warmed up. Besides, by starting this slow thing now, + // it can start immediately instead of waiting for the first request + // to trigger it to warm up. That way, when in development and triggering + // a `nodemon` restart, there's a good chance the warm up has come some + // way before you manage to reach for your browser to do a page refresh. + await warmServer() // Workaround for https://github.com/expressjs/express/issues/1101 const server = http.createServer(app) diff --git a/tests/content/redirect-orphans.js b/tests/content/redirect-orphans.js new file mode 100644 index 0000000000..1a099967fe --- /dev/null +++ b/tests/content/redirect-orphans.js @@ -0,0 +1,46 @@ +import path from 'path' +import { jest, beforeAll } from '@jest/globals' + +import { loadPages } from '../../lib/page-data.js' +import Permalink from '../../lib/permalink.js' + +describe('redirect orphans', () => { + let pageList + + // Because calling `loadPages` will trigger a warmup, this can potentially + // be very slow in CI. So we need a timeout. + jest.setTimeout(60 * 1000) + + beforeAll(async () => { + // Only doing English because they're the only files we do PRs for. + pageList = (await loadPages()).filter((page) => page.languageCode === 'en') + }) + + test('no page is a redirect in another file', () => { + const redirectFroms = new Map() + for (const page of pageList) { + for (const redirectFrom of page.redirect_from || []) { + if (redirectFrom.endsWith('/') && redirectFrom.startsWith('/')) { + console.warn( + `In ${path.join( + 'content', + page.relativePath + )} redirect entry (${redirectFrom}) has a trailing slash` + ) + } + redirectFroms.set(redirectFrom, page.relativePath) + } + } + + const errors = [] + for (const page of pageList) { + const asPath = Permalink.relativePathToSuffix(page.relativePath) + if (redirectFroms.has(asPath)) { + errors.push( + `${asPath} is a redirect_from in ${path.join('content', redirectFroms.get(asPath))}` + ) + } + } + expect(errors.length, errors.join('\n')).toBe(0) + }) +}) diff --git a/tests/fixtures/rss-feed.xml b/tests/fixtures/rss-feed.xml index f333752225..568ec5fc9f 100644 --- a/tests/fixtures/rss-feed.xml +++ b/tests/fixtures/rss-feed.xml @@ -76,8 +76,8 @@ <guid isPermaLink="false">https://github.blog/changelog/2021-03-22-compare-rest-api-now-supports-pagination</guid> <description><![CDATA[Compare REST API now supports pagination]]></description> - <content:encoded><![CDATA[<p>The <a href="https://docs.github.com/rest/reference/repos#compare-two-commits">"Compare two commits"</a> REST API, which returns a list of commits reachable from one commit (or branch) but not reachable from another, now supports pagination. It can also now return the results for comparisons over 250 commits.</p> -<p>To learn more, see the <a href="https://docs.github.com/rest/reference/repos#compare-two-commits">compare two commits</a> API reference or the guide for <a href="https://docs.github.com/en/rest/guides/traversing-with-pagination">using pagination</a>.</p> + <content:encoded><![CDATA[<p>The <a href="https://docs.github.com/rest/reference/commits#compare-two-commits">"Compare two commits"</a> REST API, which returns a list of commits reachable from one commit (or branch) but not reachable from another, now supports pagination. It can also now return the results for comparisons over 250 commits.</p> +<p>To learn more, see the <a href="https://docs.github.com/rest/reference/commits#compare-two-commits">compare two commits</a> API reference or the guide for <a href="https://docs.github.com/en/rest/guides/traversing-with-pagination">using pagination</a>.</p> ]]></content:encoded> diff --git a/tests/rendering/rest.js b/tests/rendering/rest.js index 8f66097599..00104ab042 100644 --- a/tests/rendering/rest.js +++ b/tests/rendering/rest.js @@ -4,7 +4,7 @@ import fs from 'fs/promises' import { difference, isPlainObject } from 'lodash-es' import { getJSON } from '../helpers/supertest.js' import enterpriseServerReleases from '../../lib/enterprise-server-releases.js' -import getRest from '../../lib/rest/index.js' +import getRest, { restRepoCategoryExceptions } from '../../lib/rest/index.js' import { jest } from '@jest/globals' const __dirname = path.dirname(fileURLToPath(import.meta.url)) @@ -28,6 +28,7 @@ describe('REST references docs', () => { !excludeFromResourceNameCheck.find((excludedFile) => filename.endsWith(excludedFile)) ) .map((filename) => filename.replace('.md', '')) + .filter((filename) => !restRepoCategoryExceptions.includes(filename)) const missingResource = 'Found a markdown file in content/rest/reference that is not represented by an OpenAPI REST operation category.' diff --git a/tests/rendering/server.js b/tests/rendering/server.js index b6acf52b51..90cb392787 100644 --- a/tests/rendering/server.js +++ b/tests/rendering/server.js @@ -247,6 +247,11 @@ describe('server', () => { // check for CORS header expect(res.headers['access-control-allow-origin']).toBe('*') + // Check that it can be cached at the CDN + expect(res.headers['set-cookie']).toBeUndefined() + expect(res.headers['cache-control']).toContain('public') + expect(res.headers['cache-control']).toMatch(/max-age=\d+/) + const categories = JSON.parse(res.text) expect(Array.isArray(categories)).toBe(true) expect(categories.length).toBeGreaterThan(1) @@ -1022,6 +1027,8 @@ describe('static routes', () => { // The "Surrogate-Key" header is set so we can do smart invalidation // in the Fastly CDN. This needs to be available for static assets too. expect(res.headers['surrogate-key']).toBeTruthy() + expect(res.headers.etag).toBeUndefined() + expect(res.headers['last-modified']).toBeTruthy() }) it('rewrites /assets requests from a cache-busting prefix', async () => { @@ -1042,6 +1049,9 @@ describe('static routes', () => { // Because static assets shouldn't use CSRF and thus shouldn't // be setting a cookie. expect(res.headers['set-cookie']).toBeUndefined() + expect(res.headers.etag).toBeUndefined() + expect(res.headers['last-modified']).toBeTruthy() + expect( (await get(`/public/ghes-${enterpriseServerReleases.latest}/schema.docs-enterprise.graphql`)) .statusCode diff --git a/tests/routing/redirects.js b/tests/routing/redirects.js index cb216f874f..bc90022047 100644 --- a/tests/routing/redirects.js +++ b/tests/routing/redirects.js @@ -76,7 +76,7 @@ describe('redirects', () => { test('have q= converted to query=', async () => { const res = await get('/en/enterprise/admin?q=pulls') expect(res.statusCode).toBe(301) - const expected = `/en/enterprise-server@${enterpriseServerReleases.latest}/admin?query=pulls` + const expected = '/en/enterprise/admin?query=pulls' expect(res.headers.location).toBe(expected) }) @@ -104,7 +104,8 @@ describe('redirects', () => { test('work on deprecated versions', async () => { const res = await get('/enterprise/2.12/admin/search?utf8=%E2%9C%93&q=pulls') - expect(res.statusCode).toBe(200) + expect(res.statusCode).toBe(301) + expect(res.headers.location).toBe('/enterprise/2.12/admin/search?utf8=%E2%9C%93&query=pulls') }) }) diff --git a/translations/es-ES/content/actions/creating-actions/metadata-syntax-for-github-actions.md b/translations/es-ES/content/actions/creating-actions/metadata-syntax-for-github-actions.md index 4b23257b33..4e9757aec3 100644 --- a/translations/es-ES/content/actions/creating-actions/metadata-syntax-for-github-actions.md +++ b/translations/es-ES/content/actions/creating-actions/metadata-syntax-for-github-actions.md @@ -260,9 +260,9 @@ For more information, see "[`github context`](/actions/reference/context-and-exp #### `runs.steps[*].shell` {% ifversion fpt or ghes > 3.2 or ghae-issue-4853 or ghec %} -**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% else %} -**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% endif %} #### `runs.steps[*].name` diff --git a/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 1b90750003..0ae07c935f 100644 --- a/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/translations/es-ES/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service actions.runner.octo-org-octo-repo.runner01.service ``` +If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command: + +```shell +$ systemctl --type=service | grep actions.runner +actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname) +``` + You can use `journalctl` to monitor the real-time activity of the self-hosted runner: ```shell diff --git a/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md b/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md index 61b4d91686..6e69efdfbc 100644 --- a/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md +++ b/translations/es-ES/content/actions/learn-github-actions/understanding-github-actions.md @@ -30,7 +30,7 @@ topics: ## The components of {% data variables.product.prodname_actions %} -You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify in your workflow. +You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify your workflow. ![Workflow overview](/assets/images/help/images/overview-actions-simple.png) diff --git a/translations/es-ES/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md b/translations/es-ES/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md deleted file mode 100644 index 5711c25339..0000000000 --- a/translations/es-ES/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Visualizar tu uso de GitHub Advanced Security -intro: 'Puedes ver el uso de tu licencia de {% data variables.product.prodname_GH_advanced_security %}.' -permissions: 'Enterprise owners can view usage for {% data variables.product.prodname_GH_advanced_security %}.' -product: '{% data reusables.gated-features.ghas %}' -versions: - ghes: '>=3.1' -type: how_to -topics: - - Advanced Security - - Enterprise - - Licensing -shortTitle: Visualizar el uso de la Seguridad Avanzada ---- - -## Acerca de las licencias para {% data variables.product.prodname_GH_advanced_security %} - -{% data reusables.advanced-security.about-ghas-license-seats %} Para obtener más información, consulta "[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)". - -## Visualizar el uso de licencia para la {% data variables.product.prodname_GH_advanced_security %} - -Puedes verificar cuántas plazas incluye tu licencia y cuántas plazas se utilizan actualmente. - -{% data reusables.enterprise-accounts.access-enterprise %} -{% data reusables.enterprise-accounts.settings-tab %} -{% data reusables.enterprise-accounts.license-tab %} - La sección de "{% data variables.product.prodname_GH_advanced_security %}" muestra los detalles del uso actual. Puedes ver la cantidad total de plazas utilizadas, así como una tabla con la cantidad de confirmantes y confirmantes únicos para cada organización. ![Sección de {% data variables.product.prodname_GH_advanced_security %} de la licencia empresarial](/assets/images/help/billing/ghas-orgs-list-enterprise-ghes.png) -5. Opcionalmente, haz clic en el nombre de una organización que te pertenezca para mostrar la configuración de seguridad y análisis para la organización. ![Organización que te pertenece en la sección de {% data variables.product.prodname_GH_advanced_security %} de la configuración de facturación empresarial](/assets/images/help/billing/ghas-orgs-list-enterprise-click-org.png) -6. En la página de configuración de "Seguridad & análisis", desplázate hacia la sección de "repositorios de {% data variables.product.prodname_GH_advanced_security %}" para ver un resumen detallado del uso de este repositorio en esta organización. ![{% data variables.product.prodname_GH_advanced_security %} repositories section](/assets/images/help/enterprises/settings-security-analysis-ghas-repos-list.png) Para obtener más información, consulta la sección "[Administrar la configuración de seguridad y análisis de tu organización](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)". diff --git a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md index 190b03d284..21fc4b65db 100644 --- a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md +++ b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md @@ -1,9 +1,8 @@ --- -title: Configurar la autenticación y el aprovisionamiento para tu empresa utilizando Azure AD -shortTitle: Configurar con Azure AD -intro: 'Puedes utilizar un inquilino en Azure Active Directory (Azure AD) como proveedor de identidad (IdP) para administrar centralmente la autenticación y el aprovisionamiento de usuarios para {% data variables.product.product_location %}.' +title: Configuring authentication and provisioning for your enterprise using Azure AD +shortTitle: Configuring with Azure AD +intro: 'You can use a tenant in Azure Active Directory (Azure AD) as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.product_location %}.' permissions: 'Enterprise owners can configure authentication and provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to @@ -16,42 +15,41 @@ topics: redirect_from: - /admin/authentication/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad --- +## About authentication and user provisioning with Azure AD -## Acerca de la autenticación y el aprovisionamiento de usuarios con Azure AD +Azure Active Directory (Azure AD) is a service from Microsoft that allows you to centrally manage user accounts and access to web applications. For more information, see [What is Azure Active Directory?](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis) in the Microsoft Docs. -Azure Active Directory (Azure AD) es un servicio de Microsoft que te permite administrar centralmente las cuentas de usuario y el acceso a las aplicaciones web. Para obtener más información, consult ala sección [¿Qué es Azure Active Directory?](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis) en los Documentos de Microsoft. +To manage identity and access for {% data variables.product.product_name %}, you can use an Azure AD tenant as a SAML IdP for authentication. You can also configure Azure AD to automatically provision accounts and access membership with SCIM, which allows you to create {% data variables.product.prodname_ghe_managed %} users and manage team and organization membership from your Azure AD tenant. -Para administrar la identidad y el acceso para {% data variables.product.product_name %}, puedes utilizar un inquilino en Azure AD como un IdP de SAML para la autenticación. También puedes configurar a Azure AD para que automáticamente aprovisione las cuentas y acceda a las membrecías con SCIM, lo cual te permite crear usuarios de {% data variables.product.prodname_ghe_managed %} y administrar las membrecías de equipo y de organización desde tu inquilino de Azure AD. +After you enable SAML SSO and SCIM for {% data variables.product.prodname_ghe_managed %} using Azure AD, you can accomplish the following from your Azure AD tenant. -Después de que habilitas el SSO de SAML y de SCIM para {% data variables.product.prodname_ghe_managed %} utilizando Azure AD, puedes lograr lo siguiente desde tu inquilino de Azure AD. +* Assign the {% data variables.product.prodname_ghe_managed %} application on Azure AD to a user account to automatically create and grant access to a corresponding user account on {% data variables.product.product_name %}. +* Unassign the {% data variables.product.prodname_ghe_managed %} application to a user account on Azure AD to deactivate the corresponding user account on {% data variables.product.product_name %}. +* Assign the {% data variables.product.prodname_ghe_managed %} application to an IdP group on Azure AD to automatically create and grant access to user accounts on {% data variables.product.product_name %} for all members of the IdP group. In addition, the IdP group is available on {% data variables.product.prodname_ghe_managed %} for connection to a team and its parent organization. +* Unassign the {% data variables.product.prodname_ghe_managed %} application from an IdP group to deactivate the {% data variables.product.product_name %} user accounts of all IdP users who had access only through that IdP group and remove the users from the parent organization. The IdP group will be disconnected from any teams on {% data variables.product.product_name %}. -* Asignar la aplicación de {% data variables.product.prodname_ghe_managed %} en Azure AD a una cuenta de usuario para que cree y otorgue acceso automáticamente a una cuenta de usuario correspondiente en {% data variables.product.product_name %}. -* Desasignar la aplicación de {% data variables.product.prodname_ghe_managed %} a una cuenta de usuario en Azure AD para desactivar la cuenta de usuario correspondiente en {% data variables.product.product_name %}. -* Asignar la aplicación de {% data variables.product.prodname_ghe_managed %} a un grupo de IdP en Azure AD para que cree y otorgue acceso automáticamente a las cuentas de usuario en {% data variables.product.product_name %} para todos los miembros del grupo de IdP. Adicionalmente, el grupo de IdP estará disponible en {% data variables.product.prodname_ghe_managed %} para que se conecte a un equipo y a sus organizaciones padre. -* Desasignar la aplicación de {% data variables.product.prodname_ghe_managed %} desde un grupo de IdP para desactivar las cuentas de usuario de {% data variables.product.product_name %} de todos los usuarios de IdP que tuvieron acceso únicamente a través de este grupo de IdP y eliminar a los usuarios de la organización padre. El grupo de IdP se desconectará de cualquier equipo en {% data variables.product.product_name %}. +For more information about managing identity and access for your enterprise on {% data variables.product.product_location %}, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)." For more information about synchronizing teams with IdP groups, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." -Para obtener más información acerca de la administración de identidades y de accesos para tu empresa en {% data variables.product.product_location %}, consulta la sección "[Administrar la identidad y el acceso para tu empresa](/admin/authentication/managing-identity-and-access-for-your-enterprise)". Para obtener más información sobre cómo sincronizar equipos con grupos de IdP, consulta la sección "[Sincronizar a un equipo con un grupo de proveedor de identidad](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)". +## Prerequisites -## Prerrequisitos +To configure authentication and user provisioning for {% data variables.product.product_name %} using Azure AD, you must have an Azure AD account and tenant. For more information, see the [Azure AD website](https://azure.microsoft.com/free/active-directory) and [Quickstart: Create an Azure Active Directory tenant](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant) in the Microsoft Docs. -Para configurar la autenticación y el aprovisionamiento de usuarios para {% data variables.product.product_name %} utilizando Azure AD, debes tener una cuenta y un inquilino en Azure AD. Para obtener más información, consulta el [Sitio Web de Azure AD](https://azure.microsoft.com/free/active-directory) y el [Inicio rápido: Creación de un inquilino en Azure Active Directory](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant) en los Documentos de Microsoft. - -{% data reusables.saml.assert-the-administrator-attribute %} Para obtener más información acerca de cómo incluir el atributo `administrator` en la solicitud de SAML desde Azure AD, consulta la sección [Cómo: personalizar las notificaciones emitidas en el token SAML para aplicaciones empresariales](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization) en los Documentos de Microsoft. +{% data reusables.saml.assert-the-administrator-attribute %} For more information about including the `administrator` attribute in the SAML claim from Azure AD, see [How to: customize claims issued in the SAML token for enterprise applications](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization) in the Microsoft Docs. {% data reusables.saml.create-a-machine-user %} -## Configurar la autenticación y el aprovisionamiento de usuarios con Azure AD +## Configuring authentication and user provisioning with Azure AD {% ifversion ghae %} -1. En Azure AD, agrega {% data variables.product.ae_azure_ad_app_link %} a tu inquilino y configura el inicio de sesión único. Para obtener más información, consulta la sección [Tutorial: Integración del inicio de sesión único (SSO) de Active Directory con {% data variables.product.prodname_ghe_managed %}](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial) en los documentos de Microsoft. +1. In Azure AD, add {% data variables.product.ae_azure_ad_app_link %} to your tenant and configure single sign-on. For more information, see [Tutorial: Azure Active Directory single sign-on (SSO) integration with {% data variables.product.prodname_ghe_managed %}](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial) in the Microsoft Docs. -1. En {% data variables.product.prodname_ghe_managed %}, ingresa los detalles para tu inquilino de Azure AD. +1. In {% data variables.product.prodname_ghe_managed %}, enter the details for your Azure AD tenant. - {% data reusables.saml.ae-enable-saml-sso-during-bootstrapping %} - - Si ya configuraste el SSO de SAML para {% data variables.product.product_location %} utilizando otro IdP y quieres utilizar Azure AD en vez de este, puedes editar tu configuración. Para obtener más información, consulta la sección "[Configurar el inicio de sesión único de SAML para tu empresa](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)". + - If you've already configured SAML SSO for {% data variables.product.product_location %} using another IdP and you want to use Azure AD instead, you can edit your configuration. For more information, see "[Configuring SAML single sign-on for your enterprise](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)." -1. Habilita el aprovisionamiento de usuarios en {% data variables.product.product_name %} y configura el aprovisionamiento de usurios en Azure AD. Para obtener más información, consulta la sección "[Configurar el aprovisionamiento de usuarios para tu empresa](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)". +1. Enable user provisioning in {% data variables.product.product_name %} and configure user provisioning in Azure AD. For more information, see "[Configuring user provisioning for your enterprise](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)." {% endif %} diff --git a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md index 6d26e290e4..fbe74e7c94 100644 --- a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md +++ b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md @@ -3,9 +3,8 @@ title: Configuring authentication and provisioning for your enterprise using Okt shortTitle: Configuring with Okta intro: 'You can use Okta as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.prodname_ghe_managed %}.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md index 8dafb03fa5..bf03a67c91 100644 --- a/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md +++ b/translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md @@ -2,9 +2,8 @@ title: Mapping Okta groups to teams intro: 'You can map your Okta groups to teams on {% data variables.product.prodname_ghe_managed %} to automatically add and remove team members.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md index 0d5ef218e8..3da45be1af 100644 --- a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md +++ b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md @@ -2,7 +2,6 @@ title: About identity and access management for your enterprise shortTitle: About identity and access management intro: 'You can use SAML single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) to centrally manage access {% ifversion ghec %}to organizations owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}{% endif %}{% ifversion ghae %}to {% data variables.product.product_location %}{% endif %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghec: '*' ghae: '*' diff --git a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md index 3a5178de56..e3b193572b 100644 --- a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md +++ b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md @@ -2,7 +2,6 @@ title: Configuring SAML single sign-on for your enterprise shortTitle: Configure SAML SSO intro: 'You can control and secure access to {% ifversion ghec %}resources like repositories, issues, and pull requests within your enterprise''s organizations{% elsif ghae %}your enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %} by {% ifversion ghec %}enforcing{% elsif ghae %}configuring{% endif %} SAML single sign-on (SSO) through your identity provider (IdP).' -product: '{% data reusables.gated-features.saml-sso %}' permissions: 'Enterprise owners can configure SAML SSO for an enterprise on {% data variables.product.product_name %}.' versions: ghec: '*' diff --git a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md index a1c6d63a4c..2f2984bc97 100644 --- a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md +++ b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md @@ -3,7 +3,6 @@ title: Configuring user provisioning for your enterprise shortTitle: Configuring user provisioning intro: 'You can configure System for Cross-domain Identity Management (SCIM) for your enterprise, which automatically provisions user accounts on {% data variables.product.product_location %} when you assign the application for {% data variables.product.product_location %} to a user on your identity provider (IdP).' permissions: 'Enterprise owners can configure user provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to diff --git a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md index d28cc2924e..6c6a11fc77 100644 --- a/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md +++ b/translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md @@ -1,6 +1,6 @@ --- -title: Administrar la identidad y el acceso para tu empresa -shortTitle: Administrar el acceso y la identidad +title: Managing identity and access for your enterprise +shortTitle: Managing identity and access intro: 'You can centrally manage {% ifversion ghae %}accounts and {% endif %}access to your {% ifversion ghae %}enterprise{% elsif ghec %}enterprise''s resources{% endif %} on {% data variables.product.product_name %} with SAML single sign-on (SSO) and System for Cross-domain Identity Management (SCIM).' versions: ghec: '*' diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md index e20dbed859..c0e8a764c7 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md @@ -1,13 +1,13 @@ --- -title: Acceder al shell administrativo (SSH) +title: Accessing the administrative shell (SSH) redirect_from: - - /enterprise/admin/articles/ssh-access/ - - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access/ - - /enterprise/admin/guides/installation/administrative-shell-ssh-access/ - - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey/ + - /enterprise/admin/articles/ssh-access + - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access + - /enterprise/admin/guides/installation/administrative-shell-ssh-access + - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey - /enterprise/admin/installation/accessing-the-administrative-shell-ssh - /enterprise/admin/configuration/accessing-the-administrative-shell-ssh - /admin/configuration/accessing-the-administrative-shell-ssh @@ -19,61 +19,61 @@ topics: - Enterprise - Fundamentals - SSH -shortTitle: Acceder al shell administrativo (SSH) +shortTitle: Access the admin shell (SSH) --- +## About administrative shell access -## Acerca del acceso al shell administrativo +If you have SSH access to the administrative shell, you can run {% data variables.product.prodname_ghe_server %}'s command line utilities. SSH access is also useful for troubleshooting, running backups, and configuring replication. Administrative SSH access is managed separately from Git SSH access and is accessible only via port 122. -Si tienes acceso SSH al shell administrativo, puedes ejecutar las utilidades de la línea de comando del {% data variables.product.prodname_ghe_server %}. El acceso SSH también es útil para la solución de problemas, para ejecutar copias de seguridad y para configurar la replicación. El acceso SSH administrativo se administra por separado desde el acceso SSH de Git y es accesible solo desde el puerto 122. +## Enabling access to the administrative shell via SSH -## Habilitar el acceso al shell administrativo por medio de SSH - -Para habilitar el acceso SSH administrativo, debes agregar tu llave pública SSH a tu lista de llaves autorizadas de la instancia. +To enable administrative SSH access, you must add your SSH public key to your instance's list of authorized keys. {% tip %} -**Consejo:** Los cambios en las claves SSH entran en vigor de inmediato. +**Tip:** Changes to authorized SSH keys take effect immediately. {% endtip %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -3. En "SSH access" (Acceso SSH), pega tu clave en el cuadro de texto, luego haz clic en **Add key** (Agregar clave). ![Cuadro te texto y botón para agregar una clave SSH](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) +3. Under "SSH access", paste your key into the text box, then click **Add key**. + ![Text box and button for adding an SSH key](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) {% data reusables.enterprise_management_console.save-settings %} -## Conectarse con el shell administrativo por SSH +## Connecting to the administrative shell over SSH -Después de que hayas agregado tu clave SSH a la lista, conéctate a la instancia por SSH como el usuario `admin` en el puerto 122. +After you've added your SSH key to the list, connect to the instance over SSH as the `admin` user on port 122. ```shell $ ssh -p 122 admin@github.example.com -Último inicio de sesión: dom 9 de nov 07:53:29 2014 desde 169.254.1.1 +Last login: Sun Nov 9 07:53:29 2014 from 169.254.1.1 admin@github-example-com:~$ █ ``` -### Solucionar problemas de conexión al SSH +### Troubleshooting SSH connection problems -Si te encuentras con el error `Permiso denegado (publickey)` cuando intentas conectarte a {% data variables.product.product_location %} por medio de SSH, confirma que te estés conectando por el puerto 122. Puede que debas especificar de manera explícita qué clave SSH privada utilizar. +If you encounter the `Permission denied (publickey)` error when you try to connect to {% data variables.product.product_location %} via SSH, confirm that you are connecting over port 122. You may need to explicitly specify which private SSH key to use. -Para especificar una clave SSH utilizando la línea de comando, ejecuta `ssh` con el argumento `-i`. +To specify a private SSH key using the command line, run `ssh` with the `-i` argument. ```shell ssh -i /path/to/ghe_private_key -p 122 admin@<em>hostname</em> ``` -También puedes especificar una llave SSH privada utilizando el archivo de configuración SSH (`~/.ssh/config`). +You can also specify a private SSH key using the SSH configuration file (`~/.ssh/config`). ```shell Host <em>hostname</em> IdentityFile /path/to/ghe_private_key - Usuario Admin - Puerto 122 + User admin + Port 122 ``` -## Acceder al shell administrativo utilizando la consola local +## Accessing the administrative shell using the local console -En una situación de emergencia, por ejemplo, si el SSH no está disponible, puedes acceder al shell administrativo de manera local. Inicia sesión como usuario `admin` y utiliza la contraseña establecida durante la configuración inicial de {% data variables.product.prodname_ghe_server %}. +In an emergency situation, for example if SSH is unavailable, you can access the administrative shell locally. Sign in as the `admin` user and use the password established during initial setup of {% data variables.product.prodname_ghe_server %}. -## Limitaciones de acceso al shell administrativo +## Access limitations for the administrative shell -El acceso al shell administrativo se permite solo para la solución de problemas y para realizar procedimientos de operaciones documentadas. Si modificas archivos del sistema y de la aplicación, ejecutas programas o instalas paquetes de software incompatibles se puede invalidar tu contrato de asistencia. Contáctate con {% data variables.contact.contact_ent_support %} si tienes alguna pregunta acerca de las actividades que permite tu contrato de asistencia. +Administrative shell access is permitted for troubleshooting and performing documented operations procedures only. Modifying system and application files, running programs, or installing unsupported software packages may void your support contract. Please contact {% data variables.contact.contact_ent_support %} if you have a question about the activities allowed by your support contract. diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md index 1d8247b490..d78d9ed5dd 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md @@ -1,13 +1,13 @@ --- -title: Acceder a la consola de administración +title: Accessing the management console intro: '{% data reusables.enterprise_site_admin_settings.about-the-management-console %}' redirect_from: - - /enterprise/admin/articles/about-the-management-console/ - - /enterprise/admin/articles/management-console-for-emergency-recovery/ - - /enterprise/admin/articles/web-based-management-console/ - - /enterprise/admin/categories/management-console/ - - /enterprise/admin/articles/accessing-the-management-console/ - - /enterprise/admin/guides/installation/web-based-management-console/ + - /enterprise/admin/articles/about-the-management-console + - /enterprise/admin/articles/management-console-for-emergency-recovery + - /enterprise/admin/articles/web-based-management-console + - /enterprise/admin/categories/management-console + - /enterprise/admin/articles/accessing-the-management-console + - /enterprise/admin/guides/installation/web-based-management-console - /enterprise/admin/installation/accessing-the-management-console - /enterprise/admin/configuration/accessing-the-management-console - /admin/configuration/accessing-the-management-console @@ -17,40 +17,39 @@ type: how_to topics: - Enterprise - Fundamentals -shortTitle: Accede a la consola de administración +shortTitle: Access the management console --- +## About the {% data variables.enterprise.management_console %} -## Acerca de {% data variables.enterprise.management_console %} +Use the {% data variables.enterprise.management_console %} for basic administrative activities: +- **Initial setup**: Walk through the initial setup process when first launching {% data variables.product.product_location %} by visiting {% data variables.product.product_location %}'s IP address in your browser. +- **Configuring basic settings for your instance**: Configure DNS, hostname, SSL, user authentication, email, monitoring services, and log forwarding on the Settings page. +- **Scheduling maintenance windows**: Take {% data variables.product.product_location %} offline while performing maintenance using the {% data variables.enterprise.management_console %} or administrative shell. +- **Troubleshooting**: Generate a support bundle or view high level diagnostic information. +- **License management**: View or update your {% data variables.product.prodname_enterprise %} license. -Utiliza {% data variables.enterprise.management_console %} para las actividades administrativas básicas: -- **Configuración inicial**: Atraviesa el proceso de configuración inicial durante el primer lanzamiento {% data variables.product.product_location %} visitando la dirección IP de {% data variables.product.product_location %} en tu navegador. -- **Establecer configuraciones básicas para tu instancia**: Configura DNS, nombre del host, SSL, autenticación de usuario, correo electrónico, servicios de monitoreo y redireccionamiento de registro en la página de Configuraciones. -- **Programar ventanas de mantenimiento**: Trabaja sin conexión en {% data variables.product.product_location %} mientras realizas mantenimiento con {% data variables.enterprise.management_console %} o con el shell administrativo. -- **Solucionar problemas**: Genera un paquete de soporte o visualiza la información de diagnóstico de alto nivel. -- **Administración de licencias**: Visualiza o actualiza tu licencia {% data variables.product.prodname_enterprise %}. +You can always reach the {% data variables.enterprise.management_console %} using {% data variables.product.product_location %}'s IP address, even when the instance is in maintenance mode, or there is a critical application failure or hostname or SSL misconfiguration. -También puedes acceder a {% data variables.enterprise.management_console %} utilizando la dirección IP de {% data variables.product.product_location %}, incluso cuando la instancia se encuentre en modo de mantenimiento o si ocurre una falla crítica en la aplicación o si están mal configurados el nombre del host o la SSL. +To access the {% data variables.enterprise.management_console %}, you must use the administrator password established during initial setup of {% data variables.product.product_location %}. You must also be able to connect to the virtual machine host on port 8443. If you're having trouble reaching the {% data variables.enterprise.management_console %}, please check intermediate firewall and security group configurations. -Para acceder a {% data variables.enterprise.management_console %}, debes utilizar la contraseña de administrador establecida durante la configuración inicial de {% data variables.product.product_location %}. También debes poder conectarte con el host de la máquina virtual en el puerto 8443. Si tienes problemas para acceder a {% data variables.enterprise.management_console %}, controla las configuraciones del firewall intermedio y del grupo de seguridad. +## Accessing the {% data variables.enterprise.management_console %} as a site administrator -## Acceder a la {% data variables.enterprise.management_console %} como administrador del sitio - -La primera vez que accedas a la {% data variables.enterprise.management_console %} como administrador de sitio, deberás cargar tu archivo de licencia de {% data variables.product.prodname_enterprise %} para autenticarte en la app. Paa obtener más información, consulta la sección "[Administrar tu licencia de {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)". +The first time that you access the {% data variables.enterprise.management_console %} as a site administrator, you must upload your {% data variables.product.prodname_enterprise %} license file to authenticate into the app. For more information, see "[Managing your license for {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)." {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.type-management-console-password %} -## Acceder a {% data variables.enterprise.management_console %} como usuario sin autenticación +## Accessing the {% data variables.enterprise.management_console %} as an unauthenticated user -1. Visita esta URL en tu navegador, reemplazando el `nombre del host` por tu nombre del host o tu dirección IP actuales {% data variables.product.prodname_ghe_server %}: +1. Visit this URL in your browser, replacing `hostname` with your actual {% data variables.product.prodname_ghe_server %} hostname or IP address: ```shell http(s)://HOSTNAME/setup ``` {% data reusables.enterprise_management_console.type-management-console-password %} -## Desbloquear {% data variables.enterprise.management_console %} después de los intentos de inicio de sesión fallidos +## Unlocking the {% data variables.enterprise.management_console %} after failed login attempts -Los bloqueos de la {% data variables.enterprise.management_console %} después de diez intentos de inicio de sesión fallidos se hacen en el transcurso de diez minutos. Debes esperar para que la pantalla de inicio de sesión se desbloquee automáticamente antes de intentar iniciar sesión nuevamente. La pantalla de inicio de sesión se desbloquea automáticamente siempre que el período de diez minutos previo contenga menos de diez intentos de inicio de sesión fallidos. El contador se reinicia después de que ocurra un inicio de sesión exitoso. +The {% data variables.enterprise.management_console %} locks after ten failed login attempts are made in the span of ten minutes. You must wait for the login screen to automatically unlock before attempting to log in again. The login screen automatically unlocks as soon as the previous ten minute period contains fewer than ten failed login attempts. The counter resets after a successful login occurs. -Para desbloquear de inmediato la {% data variables.enterprise.management_console %}, utilice el comando `ghe-reactivate-admin-login` a través del shell administrativo. Para obtener más información, consulta "[Utilidades de la línea de comando](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-reactivate-admin-login)" y "[Acceder al shell administrativo (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)." +To immediately unlock the {% data variables.enterprise.management_console %}, use the `ghe-reactivate-admin-login` command via the administrative shell. For more information, see "[Command line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-reactivate-admin-login)" and "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)." diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md index ee7218cfa5..7a347ea3ce 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md @@ -1,20 +1,20 @@ --- -title: Configurar copias de seguridad en tu aparato -shortTitle: Configurar respaldos +title: Configuring backups on your appliance +shortTitle: Configuring backups redirect_from: - - /enterprise/admin/categories/backups-and-restores/ - - /enterprise/admin/articles/backup-and-recovery/ - - /enterprise/admin/articles/backing-up-github-enterprise/ - - /enterprise/admin/articles/restoring-github-enterprise/ - - /enterprise/admin/articles/backing-up-repository-data/ - - /enterprise/admin/articles/restoring-enterprise-data/ - - /enterprise/admin/articles/restoring-repository-data/ - - /enterprise/admin/articles/backing-up-enterprise-data/ - - /enterprise/admin/guides/installation/backups-and-disaster-recovery/ + - /enterprise/admin/categories/backups-and-restores + - /enterprise/admin/articles/backup-and-recovery + - /enterprise/admin/articles/backing-up-github-enterprise + - /enterprise/admin/articles/restoring-github-enterprise + - /enterprise/admin/articles/backing-up-repository-data + - /enterprise/admin/articles/restoring-enterprise-data + - /enterprise/admin/articles/restoring-repository-data + - /enterprise/admin/articles/backing-up-enterprise-data + - /enterprise/admin/guides/installation/backups-and-disaster-recovery - /enterprise/admin/installation/configuring-backups-on-your-appliance - /enterprise/admin/configuration/configuring-backups-on-your-appliance - /admin/configuration/configuring-backups-on-your-appliance -intro: 'Como parte de un plan de recuperación ante desastres, puedes proteger los datos de producción en {% data variables.product.product_location %} configurando copias de seguridad automáticas.' +intro: 'As part of a disaster recovery plan, you can protect production data on {% data variables.product.product_location %} by configuring automated backups.' versions: ghes: '*' type: how_to @@ -24,118 +24,117 @@ topics: - Fundamentals - Infrastructure --- +## About {% data variables.product.prodname_enterprise_backup_utilities %} -## Acerca de {% data variables.product.prodname_enterprise_backup_utilities %} +{% data variables.product.prodname_enterprise_backup_utilities %} is a backup system you install on a separate host, which takes backup snapshots of {% data variables.product.product_location %} at regular intervals over a secure SSH network connection. You can use a snapshot to restore an existing {% data variables.product.prodname_ghe_server %} instance to a previous state from the backup host. -{% data variables.product.prodname_enterprise_backup_utilities %} es un sistema de copias de seguridad que instalas en un host separado, el cual realiza instantáneas de copias de seguridad de {% data variables.product.product_location %} en intervalos regulares a través de una conexión de red SSH segura. Puedes utilizar una instantánea para restablecer una instancia existente del {% data variables.product.prodname_ghe_server %} a su estado previo desde el host de copias de seguridad. +Only data added since the last snapshot will transfer over the network and occupy additional physical storage space. To minimize performance impact, backups are performed online under the lowest CPU/IO priority. You do not need to schedule a maintenance window to perform a backup. -Solo se transferirán por la red y ocuparán espacio de almacenamiento físico adicional los datos que se hayan agregado después de esa última instantánea. Para minimizar el impacto en el rendimiento, las copias de seguridad se realizan en línea con la prioridad CPU/IO más baja. No necesitas programar una ventana de mantenimiento para realizar una copia de seguridad. +For more detailed information on features, requirements, and advanced usage, see the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#readme). -Para obtener información más detallada sobre las funciones, los requisitos y el uso avanzado, consulta [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#readme). +## Prerequisites -## Prerrequisitos +To use {% data variables.product.prodname_enterprise_backup_utilities %}, you must have a Linux or Unix host system separate from {% data variables.product.product_location %}. -Para utilizar {% data variables.product.prodname_enterprise_backup_utilities %}, debes tener un sistema de host Linux o Unix separado de {% data variables.product.product_location %}. +You can also integrate {% data variables.product.prodname_enterprise_backup_utilities %} into an existing environment for long-term permanent storage of critical data. -También puedes incorporar {% data variables.product.prodname_enterprise_backup_utilities %} en un entorno existente para almacenar los datos críticos de manera permanente y a largo plazo. +We recommend that the backup host and {% data variables.product.product_location %} be geographically distant from each other. This ensures that backups are available for recovery in the event of a major disaster or network outage at the primary site. -Recomendamos que exista una distancia geográfica entre el host de copias de seguridad y {% data variables.product.product_location %}. Esto asegura que las copias de seguridad estén disponibles para su recuperación en el caso de que ocurra un desastre significativo o una interrupción de red en el sitio principal. +Physical storage requirements will vary based on Git repository disk usage and expected growth patterns: -Los requisitos de almacenamiento físico variarán en función del uso del disco del repositorio de Git y de los patrones de crecimiento esperados: +| Hardware | Recommendation | +| -------- | --------- | +| **vCPUs** | 2 | +| **Memory** | 2 GB | +| **Storage** | Five times the primary instance's allocated storage | -| Hardware | Recomendación | -| ------------------ | ---------------------------------------------------------------- | -| **vCPU** | 2 | -| **Memoria** | 2 GB | -| **Almacenamiento** | Cinco veces el almacenamiento asignado de la instancia principal | +More resources may be required depending on your usage, such as user activity and selected integrations. -Es posible que se requieran más recursos según su uso, como la actividad del usuario y las integraciones seleccionadas. - -## Instalar {% data variables.product.prodname_enterprise_backup_utilities %} +## Installing {% data variables.product.prodname_enterprise_backup_utilities %} {% note %} -**Nota:** Para asegurar que un aparato recuperado esté disponible de inmediato, realiza copias de seguridad apuntando a la instancia principal, incluso en una configuración de replicación geográfica. +**Note:** To ensure a recovered appliance is immediately available, perform backups targeting the primary instance even in a Geo-replication configuration. {% endnote %} -1. Desgarga el último lanzamiento de [{% data variables.product.prodname_enterprise_backup_utilities %} ](https://github.com/github/backup-utils/releases) y extrae el archivo con el comando `tar`. +1. Download the latest [{% data variables.product.prodname_enterprise_backup_utilities %} release](https://github.com/github/backup-utils/releases) and extract the file with the `tar` command. ```shell - $ tar -xzvf /path/to/github-backup-utils-v<em>MAJOR.MINOR.PATCH</em>.tar.gz + $ tar -xzvf /path/to/github-backup-utils-v<em>MAJOR.MINOR.PATCH</em>.tar.gz ``` -2. Copia el archivo incluido `backup.config-example` en `backup.config` y ábrelo en un editor. -3. Configura el valor `GHE_HOSTNAME` al {% data variables.product.prodname_ghe_server %} primario del nombre del host de tu instancia o dirección IP. +2. Copy the included `backup.config-example` file to `backup.config` and open in an editor. +3. Set the `GHE_HOSTNAME` value to your primary {% data variables.product.prodname_ghe_server %} instance's hostname or IP address. {% note %} - **Nota:** Si tu {% data variables.product.product_location %} se despliega como un clúster o en una configuración de disponibilidad alta utilizando un balanceador de carga, el `GHE_HOSTNAME` puede ser el nombre de host del balanceador de carga siempre y cuando permita acceso por SSH a {% data variables.product.product_location %} (por el puerto 122). + **Note:** If your {% data variables.product.product_location %} is deployed as a cluster or in a high availability configuration using a load balancer, the `GHE_HOSTNAME` can be the load balancer hostname, as long as it allows SSH access (on port 122) to {% data variables.product.product_location %}. {% endnote %} -4. Configura el valor `GHE_DATA_DIR` en la ubicación del sistema de archivos donde deseas almacenar las instantáneas de copia de seguridad. -5. Abre la página de configuración de tu instancia primaria en `https://HOSTNAME/setup/settings` y agrega la clave SSH del host de copia de seguridad a la lista de claves SSH autorizadas. Para obtener más información, consulta [Acceder al shell administrativo (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/). -6. Verifica la conectividad SSH con {% data variables.product.product_location %} con el comando `ghe-host-check`. +4. Set the `GHE_DATA_DIR` value to the filesystem location where you want to store backup snapshots. +5. Open your primary instance's settings page at `https://HOSTNAME/setup/settings` and add the backup host's SSH key to the list of authorized SSH keys. For more information, see [Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/). +6. Verify SSH connectivity with {% data variables.product.product_location %} with the `ghe-host-check` command. ```shell - $ bin/ghe-host-check - ``` - 7. Para crear una copia de respaldo completa inicial, ejecuta el comando `ghe-backup`. + $ bin/ghe-host-check + ``` + 7. To create an initial full backup, run the `ghe-backup` command. ```shell - $ bin/ghe-backup + $ bin/ghe-backup ``` -Para obtener más información sobre uso avanzado, consulta el archivo README en [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#readme). +For more information on advanced usage, see the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#readme). -## Programar una copia de seguridad +## Scheduling a backup -Puedes programar copias de seguridad regulares en el host de copia de seguridad utilizando el comando `cron(8)` o un servicio de programación de comando similar. La frecuencia de copias de seguridad configurada dictará el peor caso de Punto Objetivo de Recuperación (RPO) de tu plan de recuperación. Por ejemplo, si has programado que la copia de seguridad se ejecute todos los días a la medianoche, podrías perder hasta 24 horas de datos en un escenario de desastre. Recomendamos comenzar con un cronograma de copias de seguridad por hora, que garantice un peor caso máximo de una hora de pérdida de datos, si los datos del sitio principal se destruyen. +You can schedule regular backups on the backup host using the `cron(8)` command or a similar command scheduling service. The configured backup frequency will dictate the worst case recovery point objective (RPO) in your recovery plan. For example, if you have scheduled the backup to run every day at midnight, you could lose up to 24 hours of data in a disaster scenario. We recommend starting with an hourly backup schedule, guaranteeing a worst case maximum of one hour of data loss if the primary site data is destroyed. -Si los intentos de copias de seguridad se superponen, el comando `ghe-backup` se detendrá con un mensaje de error que indicará la existencia de una copia de seguridad simultánea. Si esto ocurre, recomendamos que disminuyas la frecuencia de tus copias de seguridad programadas. Para obtener más información, consulta la sección "Programar copias de seguridad" del archivo README en [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#scheduling-backups). +If backup attempts overlap, the `ghe-backup` command will abort with an error message, indicating the existence of a simultaneous backup. If this occurs, we recommended decreasing the frequency of your scheduled backups. For more information, see the "Scheduling backups" section of the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#scheduling-backups). -## Recuperar una copia de seguridad +## Restoring a backup -En el caso de una interrupción de red prolongada o de un evento catastrófico en el sitio principal, puedes restablecer {% data variables.product.product_location %} proporcionando otro aparato para {% data variables.product.prodname_enterprise %} y haciendo un restablecimiento desde el host de copias de seguridad. Debes agregar la clave SSH del host de copias de seguridad en el aparato objetivo {% data variables.product.prodname_enterprise %} como una clave SSH autorizada antes de restablecer un aparato. +In the event of prolonged outage or catastrophic event at the primary site, you can restore {% data variables.product.product_location %} by provisioning another {% data variables.product.prodname_enterprise %} appliance and performing a restore from the backup host. You must add the backup host's SSH key to the target {% data variables.product.prodname_enterprise %} appliance as an authorized SSH key before restoring an appliance. {% ifversion ghes %} {% note %} -**Nota:** Si {% data variables.product.product_location %} tiene habilitadas las {% data variables.product.prodname_actions %}, primero deberás configurar el proveedor de almacenamiento externo de {% data variables.product.prodname_actions %} en el aplicativo de repuesto antes de ejecutar el comando `ghe-restore`. Para obtener más información, consulta la sección "[Respaldar y restablecer a {% data variables.product.prodname_ghe_server %} con las {% data variables.product.prodname_actions %} habilitadas](/admin/github-actions/backing-up-and-restoring-github-enterprise-server-with-github-actions-enabled)". +**Note:** If {% data variables.product.product_location %} has {% data variables.product.prodname_actions %} enabled, you must first configure the {% data variables.product.prodname_actions %} external storage provider on the replacement appliance before running the `ghe-restore` command. For more information, see "[Backing up and restoring {% data variables.product.prodname_ghe_server %} with {% data variables.product.prodname_actions %} enabled](/admin/github-actions/backing-up-and-restoring-github-enterprise-server-with-github-actions-enabled)." {% endnote %} {% endif %} {% note %} -**Nota:** Cuando realizas restauraciones de respaldo hacia {% data variables.product.product_location %} aplicarán las mismas reglas de compatibilidad de versión. Solo puedes restablecer datos de por lo mucho dos lanzamientos de características anteriores. +**Note:** When performing backup restores to {% data variables.product.product_location %}, the same version supportability rules apply. You can only restore data from at most two feature releases behind. -Por ejemplo, si tomas un respaldo de GHES 3.0.x, puedes restablecerlo a la instancia GHES 3.2.x. Pero no puedes restablecer datos desde un respaldo de GHES 2.22.x hacia 3.2.x, ya que esto sería tres saltos entre versiones (2.22 > 3.0 > 3.1 > 3.2). Primero necesitarías restablecer a una instancia 3.1.x y luego mejorar a una 3.2.x. +For example, if you take a backup from GHES 3.0.x, you can restore it into a GHES 3.2.x instance. But, you cannot restore data from a backup of GHES 2.22.x onto 3.2.x, because that would be three jumps between versions (2.22 > 3.0 > 3.1 > 3.2). You would first need to restore onto a 3.1.x instance, and then upgrade to 3.2.x. {% endnote %} -Para restablecer {% data variables.product.product_location %} desde la última instantánea exitosa, usa el comando `ghe-restore`. Debes ver un resultado similar a este: +To restore {% data variables.product.product_location %} from the last successful snapshot, use the `ghe-restore` command. You should see output similar to this: ```shell $ ghe-restore -c 169.154.1.1 -> Comprobando claves filtradas en la instantánea de respaldo que se está restableciendo ... -> * No se encontraron claves filtradas -> Conectarse a 169.154.1.1:122 OK (v2.9.0) +> Checking for leaked keys in the backup snapshot that is being restored ... +> * No leaked keys found +> Connect 169.154.1.1:122 OK (v2.9.0) -> ADVERTENCIA: Todos los datos del aparato GitHub Enterprise 169.154.1.1 (v2.9.0) -> se sobrescribirán con los datos de la instantánea 20170329T150710. -> Antes de continuar, verifica que sea el host de restauración correcto. -> Escribe 'yes' (sí) para continuar: <em>yes</em> +> WARNING: All data on GitHub Enterprise appliance 169.154.1.1 (v2.9.0) +> will be overwritten with data from snapshot 20170329T150710. +> Please verify that this is the correct restore host before continuing. +> Type 'yes' to continue: <em>yes</em> -> Comenzando la restauración de 169.154.1.1:122 desde la instantánea 20170329T150710 -# ...resultado truncado -> Restauración completa de 169.154.1.1:122 desde la instantánea 20170329T150710 -> Visita https://169.154.1.1/setup/settings para revisar la configuración del aparato. +> Starting restore of 169.154.1.1:122 from snapshot 20170329T150710 +# ...output truncated +> Completed restore of 169.154.1.1:122 from snapshot 20170329T150710 +> Visit https://169.154.1.1/setup/settings to review appliance configuration. ``` {% note %} -**Nota:** Los ajustes de red están excluidos de la instantánea de copias de seguridad. Debes configurar manualmente la red en el aparato objetivo para el {% data variables.product.prodname_ghe_server %} como obligatoria para tu entorno. +**Note:** The network settings are excluded from the backup snapshot. You must manually configure the network on the target {% data variables.product.prodname_ghe_server %} appliance as required for your environment. {% endnote %} -Puedes utilizar estas otras opciones con el comando `ghe-restore`: -- La marca `-c` sobrescribe los ajustes, el certificado y los datos de licencia en el host objetivo, incluso si ya está configurado. Omite esta marca si estás configurando una instancia de preparación con fines de prueba y si quieres conservar la configuración existente en el objetivo. Para obtener más información, consulta la sección "Utilizar una copia de seguridad y restablecer los comandos" de [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#using-the-backup-and-restore-commands). -- La marca `-s` te permite seleccionar otra instantánea de copias de seguridad. +You can use these additional options with `ghe-restore` command: +- The `-c` flag overwrites the settings, certificate, and license data on the target host even if it is already configured. Omit this flag if you are setting up a staging instance for testing purposes and you wish to retain the existing configuration on the target. For more information, see the "Using using backup and restore commands" section of the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#using-the-backup-and-restore-commands). +- The `-s` flag allows you to select a different backup snapshot. 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 fcb8e91a62..8444f9199d 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 @@ -1,13 +1,13 @@ --- -title: Habilitar y programar el modo de mantenimiento -intro: 'Algunos procedimientos de mantenimiento estándar, como la actualización {% data variables.product.product_location %} o la restauración de copias de seguridad, exigen que la instancia esté sin conexión para el uso normal.' +title: Enabling and scheduling maintenance mode +intro: 'Some standard maintenance procedures, such as upgrading {% data variables.product.product_location %} or restoring backups, require the instance to be taken offline for normal use.' redirect_from: - - /enterprise/admin/maintenance-mode/ - - /enterprise/admin/categories/maintenance-mode/ - - /enterprise/admin/articles/maintenance-mode/ - - /enterprise/admin/articles/enabling-maintenance-mode/ - - /enterprise/admin/articles/disabling-maintenance-mode/ - - /enterprise/admin/guides/installation/maintenance-mode/ + - /enterprise/admin/maintenance-mode + - /enterprise/admin/categories/maintenance-mode + - /enterprise/admin/articles/maintenance-mode + - /enterprise/admin/articles/enabling-maintenance-mode + - /enterprise/admin/articles/disabling-maintenance-mode + - /enterprise/admin/guides/installation/maintenance-mode - /enterprise/admin/installation/enabling-and-scheduling-maintenance-mode - /enterprise/admin/configuration/enabling-and-scheduling-maintenance-mode - /admin/configuration/enabling-and-scheduling-maintenance-mode @@ -19,52 +19,55 @@ topics: - Fundamentals - Maintenance - Upgrades -shortTitle: Configurar el modo de mantenimiento +shortTitle: Configure maintenance mode --- +## About maintenance mode -## Acerca del modo de mantenimiento +Some types of operations require that you take {% data variables.product.product_location %} offline and put it into maintenance mode: +- Upgrading to a new version of {% data variables.product.prodname_ghe_server %} +- Increasing CPU, memory, or storage resources allocated to the virtual machine +- Migrating data from one virtual machine to another +- Restoring data from a {% data variables.product.prodname_enterprise_backup_utilities %} snapshot +- Troubleshooting certain types of critical application issues -Algunos tipos de operaciones exigen que desconectes tu {% data variables.product.product_location %} y la pongas en modo de mantenimiento: -- Actualizar a una versión nueva de tu {% data variables.product.prodname_ghe_server %} -- Aumentar los recursos de CPU, memoria o almacenamiento asignados a la máquina virtual -- Migrar datos desde una máquina virtual a otra -- Restaurar datos desde una instantánea de {% data variables.product.prodname_enterprise_backup_utilities %} -- Solucionar ciertos tipos de problemas críticos de solicitud +We recommend that you schedule a maintenance window for at least 30 minutes in the future to give users time to prepare. When a maintenance window is scheduled, all users will see a banner when accessing the site. -Recomendamos que programe una ventana de mantenimiento para, al menos, los siguientes 30 minutos para darle a los usuarios tiempo para prepararse. Cuando está programada una ventana de mantenimiento, todos los usuarios verán un mensaje emergente al acceder al sitio. +![End user banner about scheduled maintenance](/assets/images/enterprise/maintenance/maintenance-scheduled.png) -![Mensaje emergente para el usuario final acerca del mantenimiento programado](/assets/images/enterprise/maintenance/maintenance-scheduled.png) +When the instance is in maintenance mode, all normal HTTP and Git access is refused. Git fetch, clone, and push operations are also rejected with an error message indicating that the site is temporarily unavailable. GitHub Actions jobs will not be executed. Visiting the site in a browser results in a maintenance page. -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. No se ejecutarán los jobs de las Github Actions. Al visitar el sitio desde un navegador aparece una página de mantenimiento. +![The maintenance mode splash screen](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) -![La pantalla de presentación del modo de mantenimiento](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) - -## Habilitar el modo de mantenimiento de inmediato o programar una ventana de mantenimiento para más tarde +## Enabling maintenance mode immediately or scheduling a maintenance window for a later time {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. En la parte superior de la {% data variables.enterprise.management_console %}, haz clic en **Mantenimiento**. ![Pestaña de mantenimiento](/assets/images/enterprise/management-console/maintenance-tab.png) -3. En "Habilitar y Programar", decide si habilitas el modo de mantenimiento de inmediato o programas una ventana de mantenimiento para otro momento. - - Para habilitar el modo de mantenimiento de inmediato, usa el menú desplegable y haz clic en **now** (ahora). ![Menú desplegable con la opción para habilitar el modo de mantenimiento ahora seleccionado](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) - - Para programar una ventana de mantenimiento para otro momento, usa el menú desplegable y haz clic en un horario de inicio. ![Menú desplegable con la opción para programar una ventana de mantenimiento](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) -4. Selecciona **Habilitar el modo de mantenimiento**. ![Casilla de verificación para habilitar o programar el modo de mantenimiento](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) +2. At the top of the {% data variables.enterprise.management_console %}, click **Maintenance**. + ![Maintenance tab](/assets/images/enterprise/management-console/maintenance-tab.png) +3. Under "Enable and schedule", decide whether to enable maintenance mode immediately or to schedule a maintenance window for a future time. + - To enable maintenance mode immediately, use the drop-down menu and click **now**. + ![Drop-down menu with the option to enable maintenance mode now selected](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) + - To schedule a maintenance window for a future time, use the drop-down menu and click a start time. + ![Drop-down menu with the option to schedule a maintenance window in two hours selected](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) +4. Select **Enable maintenance mode**. + ![Checkbox for enabling or scheduling maintenance mode](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} -## Programar el modo de mantenimiento con {% data variables.product.prodname_enterprise_api %} +## Scheduling maintenance mode with {% data variables.product.prodname_enterprise_api %} -Puedes programar el mantenimiento para horarios o días diferentes con {% data variables.product.prodname_enterprise_api %}. Para obtener más información, consulta la sección "[Consola de Administración](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)". +You can schedule maintenance for different times or dates with {% data variables.product.prodname_enterprise_api %}. For more information, see "[Management Console](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)." -## Habilitar o inhabilitar el modo de mantenimientos para todos los nodos de una agrupación +## Enabling or disabling maintenance mode for all nodes in a cluster -Con la herramienta `ghe-cluster-maintenance`, puedes configurar o anular la configuración del modo de mantenimiento para cada nodo de una agrupación. +With the `ghe-cluster-maintenance` utility, you can set or unset maintenance mode for every node in a cluster. ```shell $ ghe-cluster-maintenance -h -# Muestra opciones +# Shows options $ ghe-cluster-maintenance -q -# Consulta el modo actual +# Queries the current mode $ ghe-cluster-maintenance -s -# Configura el modo de mantenimiento +# Sets maintenance mode $ ghe-cluster-maintenance -u -# Anula la configuración del modo de mantenimiento +# Unsets maintenance mode ``` diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/index.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/index.md index aa921c6d45..ff4c39c4da 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/index.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/index.md @@ -2,10 +2,10 @@ title: Configuring your enterprise intro: 'After {% data variables.product.product_name %} is up and running, you can configure your enterprise to suit your organization''s needs.' redirect_from: - - /enterprise/admin/guides/installation/basic-configuration/ - - /enterprise/admin/guides/installation/administrative-tools/ - - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts/ - - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/basic-configuration + - /enterprise/admin/guides/installation/administrative-tools + - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts + - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance - /enterprise/admin/installation/configuring-the-github-enterprise-server-appliance - /enterprise/admin/configuration/configuring-your-enterprise versions: diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md index 9af8604417..5f067794ac 100644 --- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md +++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md @@ -61,38 +61,23 @@ The peak quantity of concurrent jobs running without performance loss depends on {%- ifversion ghes < 3.2 %} -| vCPUs | Memory | Maximum job throughput | -| :--- | :--- | :--- | -| 4 | 32 GB | Demo or light testing | -| 8 | 64 GB | 25 jobs | -| 16 | 160 GB | 35 jobs | -| 32 | 256 GB | 100 jobs | +{% data reusables.actions.hardware-requirements-before %} {%- endif %} {%- ifversion ghes = 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 32 | 128 GB | 1000 jobs | -| 64 | 256 GB | 1300 jobs | -| 96 | 384 GB | 2200 jobs | +{% data reusables.actions.hardware-requirements-3.2 %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} {%- ifversion ghes > 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 8 | 64 GB | 300 jobs | -| 16 | 160 GB | 700 jobs | -| 32 | 128 GB | 1300 jobs | -| 64 | 256 GB | 2000 jobs | -| 96 | 384 GB | 4000 jobs | +{% data reusables.actions.hardware-requirements-after %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} diff --git a/translations/es-ES/content/admin/installation/index.md b/translations/es-ES/content/admin/installation/index.md index f82632e1b7..385c4412e7 100644 --- a/translations/es-ES/content/admin/installation/index.md +++ b/translations/es-ES/content/admin/installation/index.md @@ -1,13 +1,13 @@ --- -title: 'Instalar {% data variables.product.prodname_enterprise %}' -shortTitle: Instalar -intro: 'Los administradores de sistema y los especialistas de seguridad y de operaciones pueden instalar {% data variables.product.prodname_ghe_server %}.' +title: 'Installing {% data variables.product.prodname_enterprise %}' +shortTitle: Installing +intro: 'System administrators and operations and security specialists can install {% data variables.product.prodname_ghe_server %}.' redirect_from: - - /enterprise/admin-guide/ - - /enterprise/admin/guides/installation/ - - /enterprise/admin/categories/customization/ - - /enterprise/admin/categories/general/ - - /enterprise/admin/categories/logging-and-monitoring/ + - /enterprise/admin-guide + - /enterprise/admin/guides/installation + - /enterprise/admin/categories/customization + - /enterprise/admin/categories/general + - /enterprise/admin/categories/logging-and-monitoring - /enterprise/admin/installation versions: ghes: '*' @@ -19,9 +19,8 @@ topics: children: - /setting-up-a-github-enterprise-server-instance --- - -Para obtener más información, o para comprar {% data variables.product.prodname_enterprise %}, consulta [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). +For more information, or to purchase {% data variables.product.prodname_enterprise %}, see [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). {% data reusables.enterprise_installation.request-a-trial %} -Si tienes preguntas sobre el proceso de instalación, consulta "[Trabajar con el soporte {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/enterprise-support/)." +If you have questions about the installation process, see "[Working with {% data variables.product.prodname_enterprise %} Support](/enterprise/admin/guides/enterprise-support/)." diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md index 06e6fbcebd..c1df769365 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: Configurar una instancia del servidor de GitHub Enterprise -intro: 'Puede instalar {% data variables.product.prodname_ghe_server %} en la plataforma de virtualización soportada de tu elección.' +title: Setting up a GitHub Enterprise Server instance +intro: 'You can install {% data variables.product.prodname_ghe_server %} on the supported virtualization platform of your choice.' redirect_from: - /enterprise/admin/installation/getting-started-with-github-enterprise-server - - /enterprise/admin/guides/installation/supported-platforms/ - - /enterprise/admin/guides/installation/provisioning-and-installation/ - - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance/ + - /enterprise/admin/guides/installation/supported-platforms + - /enterprise/admin/guides/installation/provisioning-and-installation + - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance - /enterprise/admin/installation/setting-up-a-github-enterprise-server-instance versions: ghes: '*' @@ -20,6 +20,6 @@ children: - /installing-github-enterprise-server-on-vmware - /installing-github-enterprise-server-on-xenserver - /setting-up-a-staging-instance -shortTitle: Configurar una instancia +shortTitle: Set up an instance --- 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 966a72c9c4..4fbe447d97 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 @@ -1,8 +1,8 @@ --- -title: Instalar el servidor de GitHub Enterprise en AWS -intro: 'Para instalar el {% data variables.product.prodname_ghe_server %} en Amazon Web Services (AWS), debes iniciar una instancia de Amazon Elastic Compute Cloud (EC2) y crear y adjuntar un volumen de datos separado de Amazon Elastic Block Store (EBS).' +title: Installing GitHub Enterprise Server on AWS +intro: 'To install {% data variables.product.prodname_ghe_server %} on Amazon Web Services (AWS), you must launch an Amazon Elastic Compute Cloud (EC2) instance and create and attach a separate Amazon Elastic Block Store (EBS) data volume.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws - /enterprise/admin/installation/installing-github-enterprise-server-on-aws - /admin/installation/installing-github-enterprise-server-on-aws versions: @@ -13,103 +13,103 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar en AWS +shortTitle: Install on AWS --- - -## Prerrequisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Debes tener una cuenta AWS capaz de iniciar instancias EC2 y crear volúmenes EBS. Para obtener más información, consulta el [Sitio web de Amazon Web Services](https://aws.amazon.com/). -- La mayoría de las acciones necesarias para iniciar {% data variables.product.product_location %} también pueden realizarse por medio de la consola de administración de AWS. Sin embargo, recomendamos instalar la interfaz de línea de comando de AWS (CLI) para la configuración inicial. Abajo se incluyen ejemplos que utilizan AWS CLI. Para obtener más información, consulta las guías de Amazon "[Trabajar con la consola de administración de AWS](http://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/getting-started.html)" y "[Qué es la interfaz de línea de comando de AWS](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html)." +- You must have an AWS account capable of launching EC2 instances and creating EBS volumes. For more information, see the [Amazon Web Services website](https://aws.amazon.com/). +- Most actions needed to launch {% data variables.product.product_location %} may also be performed using the AWS management console. However, we recommend installing the AWS command line interface (CLI) for initial setup. Examples using the AWS CLI are included below. For more information, see Amazon's guides "[Working with the AWS Management Console](http://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/getting-started.html)" and "[What is the AWS Command Line Interface](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html)." -Esta guía supone que estás familiarizado con los siguientes conceptos de AWS: +This guide assumes you are familiar with the following AWS concepts: - - [Iniciar instancias de EC2](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/LaunchingAndUsingInstances.html) - - [Administrar volúmenes de EBS](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) - - [Utilizar grupos de seguridad](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) (para administrar el acceso de red a tu instancia) - - [Direcciones IP elásticas (EIP)](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) (altamente recomendadas para los entornos de producción) - - [EC2 y Virtual Private Cloud](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html) (si planeas iniciar dentro de Virtual Private Cloud) - - [Precios de AWS](https://aws.amazon.com/pricing/) (Para calcular y administrar los costos) + - [Launching EC2 Instances](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/LaunchingAndUsingInstances.html) + - [Managing EBS Volumes](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) + - [Using Security Groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) (For managing network access to your instance) + - [Elastic IP Addresses (EIP)](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) (Strongly recommended for production environments) + - [EC2 and Virtual Private Cloud](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html) (If you plan to launch into a Virtual Private Cloud) + - [AWS Pricing](https://aws.amazon.com/pricing/) (For calculating and managing costs) -Para ver un resumen arquitectónico, consulta el [Diagrama de Arquitectura de AWS para Desplegar a GitHub Enterprise Server](/assets/images/installing-github-enterprise-server-on-aws.png)". +For an architectural overview, see the "[AWS Architecture Diagram for Deploying GitHub Enterprise Server](/assets/images/installing-github-enterprise-server-on-aws.png)". -Esta guía te recomienda utilizar el principio del menor privilegio necesario cuando configures {% data variables.product.product_location %} en AWS. Para obtener más información, refiérete a la [Documentación sobre la Administración de Accesos e Identidad (IAM) de AWS](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). +This guide recommends the principle of least privilege when setting up {% data variables.product.product_location %} on AWS. For more information, refer to the [AWS Identity and Access Management (IAM) documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). -## Consideraciones relativas al hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Determinar el tipo de instancia +## Determining the instance type -Antes de iniciar {% data variables.product.product_location %} en AWS, deberás determinar el tipo de máquina que mejor se adapte a las necesidades de tu organización. Para revisar los requisitos mínimos para {% data variables.product.product_name %}, consulta la sección "[Requisitos mínimos](#minimum-requirements)". +Before launching {% data variables.product.product_location %} on AWS, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} {% data reusables.enterprise_installation.aws-instance-recommendation %} -## Seleccionar la AMI del {% data variables.product.prodname_ghe_server %} +## Selecting the {% data variables.product.prodname_ghe_server %} AMI -Puedes seleccionar una Amazon Machine Image (AMI) para el {% data variables.product.prodname_ghe_server %} utilizando el portal del {% data variables.product.prodname_ghe_server %} o la CLI de AWS. +You can select an Amazon Machine Image (AMI) for {% data variables.product.prodname_ghe_server %} using the {% data variables.product.prodname_ghe_server %} portal or the AWS CLI. -Las AMIs para {% data variables.product.prodname_ghe_server %} se encuentran disponibles en la región de AWS GovCloud (EE.UU. Este y EE.UU. Oeste). Esto permite que los clientes de EE. UU. con requisitos reglamentarios específicos ejecuten el {% data variables.product.prodname_ghe_server %} en un entorno de nube que cumpla con los requisitos a nivel federal. Para obtener más información sobre el cumplimiento de AWS de las normas federales y otras normas, consulta la [Página de GovCloud (EE. UU.) de AWS](http://aws.amazon.com/govcloud-us/) y la [Página de cumplimiento de AWS](https://aws.amazon.com/compliance/). +AMIs for {% data variables.product.prodname_ghe_server %} are available in the AWS GovCloud (US-East and US-West) region. This allows US customers with specific regulatory requirements to run {% data variables.product.prodname_ghe_server %} in a federally compliant cloud environment. For more information on AWS's compliance with federal and other standards, see [AWS's GovCloud (US) page](http://aws.amazon.com/govcloud-us/) and [AWS's compliance page](https://aws.amazon.com/compliance/). -### Utilizar el portal {% data variables.product.prodname_ghe_server %} para seleccionar una AMI +### Using the {% data variables.product.prodname_ghe_server %} portal to select an AMI {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-appliance %} -3. En el menú desplegable Select your platform (Selecciona tu plataforma), haz clic en **Amazon Web Services**. -4. En el menú desplegable Select your AWS region (Selecciona tu región AWS), elige tu región deseada. -5. Toma nota de la ID de AMI que se muestra. +3. In the Select your platform drop-down menu, click **Amazon Web Services**. +4. In the Select your AWS region drop-down menu, choose your desired region. +5. Take note of the AMI ID that is displayed. -### Utilizar la CLI de AWS para seleccionar una AMI +### Using the AWS CLI to select an AMI -1. Utilizando una CLI de AWS, obtén una lista de imágenes publicadas del {% data variables.product.prodname_ghe_server %} por ID de propietarios de AWS de {% data variables.product.prodname_dotcom %} (`025577942450` para GovCloud, y `895557238572` para otras regiones). Para obtener más información, consulta "[describe-images](http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html)" en los documentos de AWS. +1. Using the AWS CLI, get a list of {% data variables.product.prodname_ghe_server %} images published by {% data variables.product.prodname_dotcom %}'s AWS owner IDs (`025577942450` for GovCloud, and `895557238572` for other regions). For more information, see "[describe-images](http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html)" in the AWS documentation. ```shell aws ec2 describe-images \ --owners <em>OWNER ID</em> \ --query 'sort_by(Images,&Name)[*].{Name:Name,ImageID:ImageId}' \ --output=text ``` -2. Toma nota del ID de AMI de la última imagen del {% data variables.product.prodname_ghe_server %}. +2. Take note of the AMI ID for the latest {% data variables.product.prodname_ghe_server %} image. -## Crear un grupo de seguridad +## Creating a security group -Si estás configurando tu AMI por primera vez, deberás crear un grupo de seguridad y agregar una nueva regla de grupo de seguridad para cada puerto en la tabla de abajo. Para más información, consulta la guía AWS "[Usar grupos de seguridad](http://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-sg.html)." +If you're setting up your AMI for the first time, you will need to create a security group and add a new security group rule for each port in the table below. For more information, see the AWS guide "[Using Security Groups](http://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-sg.html)." -1. Crea un nuevo grupo de seguridad utilizando la CLI de AWS. Para obtener más información, consulta "[create-security-group](http://docs.aws.amazon.com/cli/latest/reference/ec2/create-security-group.html)" en los documentos de AWS. +1. Using the AWS CLI, create a new security group. For more information, see "[create-security-group](http://docs.aws.amazon.com/cli/latest/reference/ec2/create-security-group.html)" in the AWS documentation. ```shell $ aws ec2 create-security-group --group-name <em>SECURITY_GROUP_NAME</em> --description "<em>SECURITY GROUP DESCRIPTION</em>" ``` -2. Toma nota del ID del grupo de seguridad (`sg-xxxxxxxx`) de tu grupo de seguridad recientemente creado. +2. Take note of the security group ID (`sg-xxxxxxxx`) of your newly created security group. -3. Crea una regla de grupo de seguridad para cada puerto en la tabla de abajo. Para obtener más información, consulta "[authorize-security-group-ingress](http://docs.aws.amazon.com/cli/latest/reference/ec2/authorize-security-group-ingress.html)" en los documentos de AWS. +3. Create a security group rule for each of the ports in the table below. For more information, see "[authorize-security-group-ingress](http://docs.aws.amazon.com/cli/latest/reference/ec2/authorize-security-group-ingress.html)" in the AWS documentation. ```shell $ aws ec2 authorize-security-group-ingress --group-id <em>SECURITY_GROUP_ID</em> --protocol <em>PROTOCOL</em> --port <em>PORT_NUMBER</em> --cidr <em>SOURCE IP RANGE</em> ``` - Esta tabla identifica para qué se utiliza cada puerto. + This table identifies what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## Crear la instancia {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance -Para crear la instancia, deberás lanzar una instancia de EC2 con tu AMI {% data variables.product.prodname_ghe_server %} y adjuntarle volumen de almacenamiento adicional para los datos de tu instancia. Para obtener más información, consulta "[Consideraciones relativas al hardware](#hardware-considerations)." +To create the instance, you'll need to launch an EC2 instance with your {% data variables.product.prodname_ghe_server %} AMI and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." {% note %} -**Nota:** puedes cifrar el disco de datos para obtener un nivel adicional de seguridad y estar seguro de que los datos que escribas en tu instancia están protegidos. Hay un leve impacto de desempeño cuando usas discos encriptados. Si decides cifrar tu volumen, recomendamos firmemente hacerlo **antes** de comenzar tu instancia por primera vez. Para más información, consulta la guía de Amazon [sobre el cifrado EBS](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html). +**Note:** You can encrypt the data disk to gain an extra level of security and ensure that any data you write to your instance is protected. There is a slight performance impact when using encrypted disks. If you decide to encrypt your volume, we strongly recommend doing so **before** starting your instance for the first time. + For more information, see the [Amazon guide on EBS encryption](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html). {% endnote %} {% warning %} -**Advertencia:** si decides habilitar la encriptación después de configurar tu instancia, deberás migrar tus datos al volumen encriptado, que producirá tiempo de inactividad para tus usuarios. +**Warning:** If you decide to enable encryption after you've configured your instance, you will need to migrate your data to the encrypted volume, which will incur some downtime for your users. {% endwarning %} -### Lanzar una instancia de EC2 +### Launching an EC2 instance -En la CLI de AWS, inicia una instancia de EC2 utilizando tu AMI y el grupo de seguridad que has creado. Adjunta un nuevo dispositivo de bloque para utilizarlo como volumen de almacenamiento para tus datos de la instancia y configura el tamaño de acuerdo con la cantidad de licencias de usuario que tengas. Para obtener más información, consulta "[run-instances](http://docs.aws.amazon.com/cli/latest/reference/ec2/run-instances.html)" en los documentos de AWS. +In the AWS CLI, launch an EC2 instance using your AMI and the security group you created. Attach a new block device to use as a storage volume for your instance data, and configure the size based on your user license count. For more information, see "[run-instances](http://docs.aws.amazon.com/cli/latest/reference/ec2/run-instances.html)" in the AWS documentation. ```shell aws ec2 run-instances \ @@ -121,21 +121,21 @@ aws ec2 run-instances \ --ebs-optimized ``` -### Asignar una IP elástica y asociarla con la instancia +### Allocating an Elastic IP and associating it with the instance -Si esta es una instancia de producción, recomendamos firmemente asignar una IP elástica (EIP) y asociarla con la instancia antes de continuar con la configuración del {% data variables.product.prodname_ghe_server %}. De lo contrario, la dirección IP pública de la instancia no se conservará después de que se reinicie la instancia. Para obtener más información, consulta "[Asignar una dirección IP elástica](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-allocating)" y "[Asociar una dirección IP elástica con una instancia en ejecución](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-associating)" en la documentación de Amazon. +If this is a production instance, we strongly recommend allocating an Elastic IP (EIP) and associating it with the instance before proceeding to {% data variables.product.prodname_ghe_server %} configuration. Otherwise, the public IP address of the instance will not be retained after instance restarts. For more information, see "[Allocating an Elastic IP Address](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-allocating)" and "[Associating an Elastic IP Address with a Running Instance](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-associating)" in the Amazon documentation. -Tanto en la instancia principal y en la de réplica deberían asignarse EIP separadas en las configuraciones de alta disponibilidad de producción. Para obtener más información, consulta "[Configurar el {% data variables.product.prodname_ghe_server %} para alta disponibilidad](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability/)." +Both primary and replica instances should be assigned separate EIPs in production High Availability configurations. For more information, see "[Configuring {% data variables.product.prodname_ghe_server %} for High Availability](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability/)." -## Configurar la instancia de {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obtener más información, consulta "[Configurar el aparato de {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leer más +## Further reading -- "[Resumen del sistema](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md index ee09f2f006..514b440f73 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Azure intro: 'To install {% data variables.product.prodname_ghe_server %} on Azure, you must deploy onto a DS-series instance and use Premium-LRS storage.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure - /enterprise/admin/installation/installing-github-enterprise-server-on-azure - /admin/installation/installing-github-enterprise-server-on-azure versions: diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md index 0cf8d69c9a..e8d6a0059e 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md @@ -1,8 +1,8 @@ --- -title: Instalar el servidor de GitHub Enterprise en Google Cloud Platform -intro: 'Para instalar {% data variables.product.prodname_ghe_server %} en Google Cloud Platform, debes implementar un tipo de máquina soportado y utilizar un disco estándar persistente o un SSD persistente.' +title: Installing GitHub Enterprise Server on Google Cloud Platform +intro: 'To install {% data variables.product.prodname_ghe_server %} on Google Cloud Platform, you must deploy onto a supported machine type and use a persistent standard disk or a persistent SSD.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform - /enterprise/admin/installation/installing-github-enterprise-server-on-google-cloud-platform - /admin/installation/installing-github-enterprise-server-on-google-cloud-platform versions: @@ -13,70 +13,69 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar en GCP +shortTitle: Install on GCP --- - -## Prerrequisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Debes tener una cuenta de Google Cloud Platform capaz de iniciar instancias de la máquina virtual (VM) de Google Compute Engine (GCE). Para obtener más información, consulta el [Sitio web de Google Cloud Platform](https://cloud.google.com/) y la [Documentación de Google Cloud Platform](https://cloud.google.com/docs/). -- La mayoría de las acciones necesarias para iniciar tu instancia pueden también realizarse utilizando la [Consola de Google Cloud Platform](https://cloud.google.com/compute/docs/console). Sin embargo, recomendamos instalar la herramienta de línea de comando de gcloud compute para la configuración inicial. Se incluyen abajo ejemplos que utilizan la herramienta de línea de comando de gcloud compute. Para obtener más información, consulta la guía de instalación y configuración en la documentación de Google de "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)". +- You must have a Google Cloud Platform account capable of launching Google Compute Engine (GCE) virtual machine (VM) instances. For more information, see the [Google Cloud Platform website](https://cloud.google.com/) and the [Google Cloud Platform Documentation](https://cloud.google.com/docs/). +- Most actions needed to launch your instance may also be performed using the [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console). However, we recommend installing the gcloud compute command-line tool for initial setup. Examples using the gcloud compute command-line tool are included below. For more information, see the "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)" installation and setup guide in the Google documentation. -## Consideraciones relativas al hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Determinar el tipo de máquina +## Determining the machine type -Antes de iniciar {% data variables.product.product_location %} en Google Cloud Platform, deberás determinar el tipo de máquina que mejor se adapte a las necesidades de tu organización. Para revisar los requisitos mínimos para {% data variables.product.product_name %}, consulta la sección "[Requisitos mínimos](#minimum-requirements)". +Before launching {% data variables.product.product_location %} on Google Cloud Platform, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} -{% data variables.product.company_short %} recomienda una máquina de propósitos generales con memoria alta para {% data variables.product.prodname_ghe_server %}. Para obtener más información, consulta la sección "[Tipos de máquina](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" en la documentación de Google Compute Engine. +{% data variables.product.company_short %} recommends a general-purpose, high-memory machine for {% data variables.product.prodname_ghe_server %}. For more information, see "[Machine types](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" in the Google Compute Engine documentation. -## Seleccionar la imagen {% data variables.product.prodname_ghe_server %} +## Selecting the {% data variables.product.prodname_ghe_server %} image -1. Utilizando la herramienta de línea de comando de [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/), enumera las imágenes públicas{% data variables.product.prodname_ghe_server %}: +1. Using the [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/) command-line tool, list the public {% data variables.product.prodname_ghe_server %} images: ```shell $ gcloud compute images list --project github-enterprise-public --no-standard-images ``` -2. Toma nota del nombre de la imagen para la última imagen de GCE de {% data variables.product.prodname_ghe_server %}. +2. Take note of the image name for the latest GCE image of {% data variables.product.prodname_ghe_server %}. -## Configurar el firewall +## Configuring the firewall -Las máquinas virtuales de GCE se crean como un miembro de la red, que tiene un firewall. Para la red asociada con la VM {% data variables.product.prodname_ghe_server %}, deberás configurar el firewall para permitir los puertos requeridos en la tabla de abajo. Para obtener más información sobre las reglas de firewall en Google Cloud Platform, consulta la guía de Google "[Descripción de las reglas de firewall](https://cloud.google.com/vpc/docs/firewalls)." +GCE virtual machines are created as a member of a network, which has a firewall. For the network associated with the {% data variables.product.prodname_ghe_server %} VM, you'll need to configure the firewall to allow the required ports listed in the table below. For more information about firewall rules on Google Cloud Platform, see the Google guide "[Firewall Rules Overview](https://cloud.google.com/vpc/docs/firewalls)." -1. Crea la red utilizando la herramienta de línea de comando de gcloud compute. Para obtener más información, consulta "[crea redes de gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" en la documentación de Google. +1. Using the gcloud compute command-line tool, create the network. For more information, see "[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" in the Google documentation. ```shell $ gcloud compute networks create <em>NETWORK-NAME</em> --subnet-mode auto ``` -2. Crea una regla de firewall para cada uno de los puertos en la tabla de abajo. Para obtener más información, consulta las "[reglas de firewall de gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" en la documentación de Google. +2. Create a firewall rule for each of the ports in the table below. For more information, see "[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" in the Google documentation. ```shell $ gcloud compute firewall-rules create <em>RULE-NAME</em> \ --network <em>NETWORK-NAME</em> \ --allow tcp:22,tcp:25,tcp:80,tcp:122,udp:161,tcp:443,udp:1194,tcp:8080,tcp:8443,tcp:9418,icmp ``` - Esta tabla identifica los puertos requeridos y para qué se usa cada puerto. + This table identifies the required ports and what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## Asignar una IP estática y atribuirla a una VM +## Allocating a static IP and assigning it to the VM -Si es un aparato de producción, recomendamos firmemente reservar una dirección de IP estática externa y asignarla a la VM {% data variables.product.prodname_ghe_server %}. En caso contrario, la dirección de IP pública de la VM no se mantendrá después de que se reinicie. Para obtener más información, consulta la guía de Google "[Reservar una dirección estática de IP externa](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)." +If this is a production appliance, we strongly recommend reserving a static external IP address and assigning it to the {% data variables.product.prodname_ghe_server %} VM. Otherwise, the public IP address of the VM will not be retained after restarts. For more information, see the Google guide "[Reserving a Static External IP Address](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)." -En las configuraciones de alta disponibilidad de producción, tantos en el aparato principal como en la réplica deberían asignarse direcciones estáticas de IP separadas. +In production High Availability configurations, both primary and replica appliances should be assigned separate static IP addresses. -## Crear la instancia {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance -Para crear la instancia {% data variables.product.prodname_ghe_server %}, deberás crear una instancia de GCE con tu imagen {% data variables.product.prodname_ghe_server %} y adjuntarle volumen de almacenamiento adicional para los datos de tu instancia. Para obtener más información, consulta "[Consideraciones relativas al hardware](#hardware-considerations)." +To create the {% data variables.product.prodname_ghe_server %} instance, you'll need to create a GCE instance with your {% data variables.product.prodname_ghe_server %} image and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." -1. Crea un disco de datos para utilizar como un volumen de almacenamiento adjunto para tu instancia de datos utilizando la herramienta de línea de comandos para cálculo gcloud y configura el tamaño con base en la cantidad de licencias que tengas. Para obtener más información, consulta "[crea discos de gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" en la documentación de Google. +1. Using the gcloud compute command-line tool, create a data disk to use as an attached storage volume for your instance data, and configure the size based on your user license count. For more information, see "[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" in the Google documentation. ```shell $ gcloud compute disks create <em>DATA-DISK-NAME</em> --size <em>DATA-DISK-SIZE</em> --type <em>DATA-DISK-TYPE</em> --zone <em>ZONE</em> ``` -2. Después crea una instancia utilizando el nombre de la imagen {% data variables.product.prodname_ghe_server %} que seleccionaste, y adjunta el disco de datos. Para obtener más información, consulta "[crea instancias de gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" en la documentación de Google. +2. Then create an instance using the name of the {% data variables.product.prodname_ghe_server %} image you selected, and attach the data disk. For more information, see "[gcloud compute instances create](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" in the Google documentation. ```shell $ gcloud compute instances create <em>INSTANCE-NAME</em> \ --machine-type n1-standard-8 \ @@ -88,15 +87,15 @@ Para crear la instancia {% data variables.product.prodname_ghe_server %}, deber --image-project github-enterprise-public ``` -## Configurar la instancia +## Configuring the instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obtener más información, consulta "[Configurar el aparato de {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leer más +## Further reading -- "[Resumen del sistema](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} 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 51fd45b672..7901cb3efd 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 @@ -1,8 +1,8 @@ --- -title: Instalar el servidor de GitHub Enterprise en Hyper-V -intro: 'Para instalar {% data variables.product.prodname_ghe_server %} en Hyper-V, debes implementarlo en una máquina ejecutando Windows Server 2008 a través de Windows Server 2019.' +title: Installing GitHub Enterprise Server on Hyper-V +intro: 'To install {% data variables.product.prodname_ghe_server %} on Hyper-V, you must deploy onto a machine running Windows Server 2008 through Windows Server 2019.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v - /enterprise/admin/installation/installing-github-enterprise-server-on-hyper-v - /admin/installation/installing-github-enterprise-server-on-hyper-v versions: @@ -13,62 +13,61 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar en Hyper-V +shortTitle: Install on Hyper-V --- - -## Prerrequisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Debes tener Windows Server 2008 a través de Windows Server 2019, que admita Hyper-V. -- La mayoría de las acciones necesarias para crear tu máquina virtual (VM) también se pueden realizar utilizando el [Administrador de Hyper-V](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). Sin embargo, recomendamos utilizar la shell de la línea de comando de Windows PowerShell para la configuración inicial. Abajo se incluyen ejemplos que utilizan PowerShell. Para obtener más información, consulta la guía de Microsoft "[Instrucciones para Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)." +- You must have Windows Server 2008 through Windows Server 2019, which support Hyper-V. +- Most actions needed to create your virtual machine (VM) may also be performed using the [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). However, we recommend using the Windows PowerShell command-line shell for initial setup. Examples using PowerShell are included below. For more information, see the Microsoft guide "[Getting Started with Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)." -## Consideraciones relativas al hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Descargar la imagen {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecciona {% data variables.product.prodname_dotcom %} locales, después haz clic en **Hyper-V (VHD)**. -5. Haz clic en **Download for Hyper-V (VHD) (Descarga para Hyper-V (VHD))**. +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **Hyper-V (VHD)**. +5. Click **Download for Hyper-V (VHD)**. -## Crear la instancia {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. Crea una nueva máquina virtual de Generación 1 en PowerShell, configura el tamaño de acuerdo con la cantidad de licencias que tengas, y adjunta la imagen de {% data variables.product.prodname_ghe_server %} que descargaste. Para obtener más información, consulta "[VM nuevo](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" en la documentación de Microsoft. +1. In PowerShell, create a new Generation 1 virtual machine, configure the size based on your user license count, and attach the {% data variables.product.prodname_ghe_server %} image you downloaded. For more information, see "[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VM -Generation 1 -Name <em>VM_NAME</em> -MemoryStartupBytes <em>MEMORY_SIZE</em> -BootDevice VHD -VHDPath <em>PATH_TO_VHD</em> ``` -{% data reusables.enterprise_installation.create-attached-storage-volume %} Reemplaza la `PATH_TO_DATA_DISK` con la ruta a la ubicación donde creas el disco. Para obtener más información, consulta "[VHD nuevo](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" en la documentación de Microsoft. +{% data reusables.enterprise_installation.create-attached-storage-volume %} Replace `PATH_TO_DATA_DISK` with the path to the location where you create the disk. For more information, see "[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VHD -Path <em>PATH_TO_DATA_DISK</em> -SizeBytes <em>DISK_SIZE</em> ``` -3. Adjunta el disco de datos a tu instancia. Para obtener más información, consulta "[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" en la documentación de Microsoft. +3. Attach the data disk to your instance. For more information, see "[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Add-VMHardDiskDrive -VMName <em>VM_NAME</em> -Path <em>PATH_TO_DATA_DISK</em> ``` -4. Inicia la VM. Para obtener más información, consulta "[Iniciar la VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" en la documentación de Microsoft. +4. Start the VM. For more information, see "[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Start-VM -Name <em>VM_NAME</em> ``` -5. Obtén la dirección de IP de tu VM. Para obtener más información, consulta "[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" en la documentación de Microsoft. +5. Get the IP address of your VM. For more information, see "[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> (Get-VMNetworkAdapter -VMName <em>VM_NAME</em>).IpAddresses ``` -6. Copia la dirección de IP de la VM y pégala en el explorador web. +6. Copy the VM's IP address and paste it into a web browser. -## Configurar la instancia de {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obtener más información, consulta "[Configurar el aparato de {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leer más +## Further reading -- "[Resumen del sistema](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} 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 551754d44d..1c1de12f10 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 @@ -1,8 +1,8 @@ --- -title: Instalar el servidor de GitHub Enterprise en OpenStack KVM -intro: 'Para instalar {% data variables.product.prodname_ghe_server %} en OpenStack KVM, debes tener acceso a OpenStack y descargar la imagen QCOW2 {% data variables.product.prodname_ghe_server %}.' +title: Installing GitHub Enterprise Server on OpenStack KVM +intro: 'To install {% data variables.product.prodname_ghe_server %} on OpenStack KVM, you must have OpenStack access and download the {% data variables.product.prodname_ghe_server %} QCOW2 image.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm - /enterprise/admin/installation/installing-github-enterprise-server-on-openstack-kvm - /admin/installation/installing-github-enterprise-server-on-openstack-kvm versions: @@ -13,47 +13,46 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar en OpenStack +shortTitle: Install on OpenStack --- - -## Prerrequisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Debes tener acceso a una instalación de OpenStack Horizon, la interfaz de usuario con base en la web para los servicios de OpenStack. Para obtener más información, consulta la [Documentación de Horizon](https://docs.openstack.org/horizon/latest/). +- You must have access to an installation of OpenStack Horizon, the web-based user interface to OpenStack services. For more information, see the [Horizon documentation](https://docs.openstack.org/horizon/latest/). -## Consideraciones relativas al hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Descargar la imagen {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecciona {% data variables.product.prodname_dotcom %} locales, después haz clic en **OpenStack KVM (QCOW2) (Abrir Stack KVM (QCOW2))**. -5. Haz clic en **Download for OpenStack KVM (QCOW2) (Descargar para OpenStack KVM (QCOW2))**. +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **OpenStack KVM (QCOW2)**. +5. Click **Download for OpenStack KVM (QCOW2)**. -## Crear la instancia {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. En OpenStack Horizon, carga la imagen {% data variables.product.prodname_ghe_server %} que descargaste. Para obtener instrucciones, dirígete a la sección "Cargar una imagen" en la guía de OpenStack "[Cargar y administrar imágenes](https://docs.openstack.org/horizon/latest/user/manage-images.html)". -{% data reusables.enterprise_installation.create-attached-storage-volume %} Para encontrar instrucciones, consulta la guía de OpenStack "[Crear y administrar volúmenes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)". -3. Crea un grupo de seguridad, y agrega una nueva regla de grupo de seguridad para cada puerto en la tabla de abajo. Para obtener instrucciones, consulta la guía de OpenStack "[Configurar acceso y seguridad para instancias](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)." +1. In OpenStack Horizon, upload the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the "Upload an image" section of the OpenStack guide "[Upload and manage images](https://docs.openstack.org/horizon/latest/user/manage-images.html)." +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the OpenStack guide "[Create and manage volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)." +3. Create a security group, and add a new security group rule for each port in the table below. For instructions, see the OpenStack guide "[Configure access and security for instances](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)." {% data reusables.enterprise_installation.necessary_ports %} -4. De forma opcional, asocia una IP flotante a la instancia. Según tu configuración de OpenStack, es posible que necesites asignar una IP flotante al proyecto y asociarla a la instancia. Contacta a tu administrador de sistema para determinar si este es tu caso. Para obtener más información, consulta "[Asignar una dirección de IP flotante a una instancia](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" en la documentación de OpenStack. -5. Inicia {% data variables.product.product_location %} utilizando la imagen, el volumen de datos y el grupo de seguridad creado en los pasos previos. Para obtener instrucciones, consulta la guía OpenStack "[Iniciar y administrar instancias](https://docs.openstack.org/horizon/latest/user/launch-instances.html)." +4. Optionally, associate a floating IP to the instance. Depending on your OpenStack setup, you may need to allocate a floating IP to the project and associate it to the instance. Contact your system administrator to determine if this is the case for you. For more information, see "[Allocate a floating IP address to an instance](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" in the OpenStack documentation. +5. Launch {% data variables.product.product_location %} using the image, data volume, and security group created in the previous steps. For instructions, see the OpenStack guide "[Launch and manage instances](https://docs.openstack.org/horizon/latest/user/launch-instances.html)." -## Configurar la instancia de {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obtener más información, consulta "[Configurar el aparato de {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leer más +## Further reading -- "[Resumen del sistema](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} 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 386457c2ca..e725f7fd72 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 @@ -1,11 +1,11 @@ --- -title: Instalar el servidor de GitHub Enterprise en VMare -intro: 'Para instalar {% data variables.product.prodname_ghe_server %} en VMware, debes descargar el cliente vSphere de VMware, y después descargar y desplegar el software de {% data variables.product.prodname_ghe_server %}.' +title: Installing GitHub Enterprise Server on VMware +intro: 'To install {% data variables.product.prodname_ghe_server %} on VMware, you must download the VMware vSphere client, and then download and deploy the {% data variables.product.prodname_ghe_server %} software.' redirect_from: - - /enterprise/admin/articles/getting-started-with-vmware/ - - /enterprise/admin/articles/installing-vmware-tools/ - - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums/ - - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware/ + - /enterprise/admin/articles/getting-started-with-vmware + - /enterprise/admin/articles/installing-vmware-tools + - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums + - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware - /enterprise/admin/installation/installing-github-enterprise-server-on-vmware - /admin/installation/installing-github-enterprise-server-on-vmware versions: @@ -16,45 +16,44 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar en VMware +shortTitle: Install on VMware --- - -## Prerrequisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Debes tener un VMware vSphere ESXi Hypervisor, aplicado a una máquina de metal expuesto que ejecutará {% data variables.product.product_location %}. Admitimos versiones 5.5 a 6.7. El Hipervisor de ESXi es gratuito y no incluye el vCenter Server (opcional). Para obtener más información, consulta la [Documentación de VMware ESXi](https://www.vmware.com/products/esxi-and-esx.html). -- Deberás acceder a vSphere Client. Si tienes vCenter Server puedes usar vSphere Web Client. Para obtener más información, consulta la guía de VMware "[Registrarse en vCenter Server al utilizar vSphere Web Client](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)." +- You must have a VMware vSphere ESXi Hypervisor, applied to a bare metal machine that will run {% data variables.product.product_location %}s. We support versions 5.5 through 6.7. The ESXi Hypervisor is free and does not include the (optional) vCenter Server. For more information, see [the VMware ESXi documentation](https://www.vmware.com/products/esxi-and-esx.html). +- You will need access to a vSphere Client. If you have vCenter Server you can use the vSphere Web Client. For more information, see the VMware guide "[Log in to vCenter Server by Using the vSphere Web Client](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)." -## Consideraciones relativas al hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Descargar la imagen {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecciona {% data variables.product.prodname_dotcom %} local, después haz clic en **VMware ESXi/vSphere (OVA)**. -5. Haz clic en **Download for VMware ESXi/vSphere (OVA) (Descargar para VMware ESXi/vSphere (OVA))**. +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **VMware ESXi/vSphere (OVA)**. +5. Click **Download for VMware ESXi/vSphere (OVA)**. -## Crear la instancia {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. Por medio de vSphere Windows Client o vCenter Web Client, importa la imagen del {% data variables.product.prodname_ghe_server %} que descargaste. Para obtener instrucciones, consulta la guía de VMware "[Implementar una plantilla OVF u OVA](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)." - - Cuando seleccionas un almacén de datos, elige uno con suficiente espacio para alojar los discos de la VM. Para encontrar las especificaciones mínimas recomendadas de hardware para tu instancia, consulta las "[Consideraciones de hardware](#hardware-considerations)". Te recomendamos un aprovisionamiento robusto con lazy zeroing. - - Deja el casillero **Power on after deployment (Encender después de la implementación)** sin marcar, ya que necesitarás agregar un volumen de almacenamiento adjunto para tus datos del repositorio después de aprovisionar la VM. -{% data reusables.enterprise_installation.create-attached-storage-volume %} Para obtener instrucciones, consulta la guía de VMware "[Agregar un nuevo disco duro a una máquina virtual](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)." +1. Using the vSphere Windows Client or the vCenter Web Client, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the VMware guide "[Deploy an OVF or OVA Template](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)." + - When selecting a datastore, choose one with sufficient space to host the VM's disks. For the minimum hardware specifications recommended for your instance size, see "[Hardware considerations](#hardware-considerations)." We recommend thick provisioning with lazy zeroing. + - Leave the **Power on after deployment** box unchecked, as you will need to add an attached storage volume for your repository data after provisioning the VM. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the VMware guide "[Add a New Hard Disk to a Virtual Machine](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)." -## Configurar la instancia de {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obtener más información, consulta "[Configurar el aparato de {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leer más +## Further reading -- "[Resumen del sistema](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md index 1be5214e08..0f2545636d 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on XenServer intro: 'To install {% data variables.product.prodname_ghe_server %} on XenServer, you must deploy the {% data variables.product.prodname_ghe_server %} disk image to a XenServer host.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver - /enterprise/admin/installation/installing-github-enterprise-server-on-xenserver - /admin/installation/installing-github-enterprise-server-on-xenserver versions: diff --git a/translations/es-ES/content/admin/overview/about-enterprise-accounts.md b/translations/es-ES/content/admin/overview/about-enterprise-accounts.md index fae7b08ba4..8b277fe208 100644 --- a/translations/es-ES/content/admin/overview/about-enterprise-accounts.md +++ b/translations/es-ES/content/admin/overview/about-enterprise-accounts.md @@ -2,7 +2,7 @@ title: About enterprise accounts intro: 'With {% data variables.product.product_name %}, you can use an enterprise account to {% ifversion ghec %}enable collaboration between your organizations, while giving{% elsif ghes or ghae %}give{% endif %} administrators a single point of visibility and management.' redirect_from: - - /articles/about-github-business-accounts/ + - /articles/about-github-business-accounts - /articles/about-enterprise-accounts - /enterprise/admin/installation/about-enterprise-accounts - /enterprise/admin/overview/about-enterprise-accounts diff --git a/translations/es-ES/content/admin/overview/about-the-github-enterprise-api.md b/translations/es-ES/content/admin/overview/about-the-github-enterprise-api.md index a7960b1225..13c1255fff 100644 --- a/translations/es-ES/content/admin/overview/about-the-github-enterprise-api.md +++ b/translations/es-ES/content/admin/overview/about-the-github-enterprise-api.md @@ -1,11 +1,11 @@ --- -title: Acerca de la API de GitHub Enterprise -intro: '{% data variables.product.product_name %} es compatible con las API de REST y de GraphQL.' +title: About the GitHub Enterprise API +intro: '{% data variables.product.product_name %} supports REST and GraphQL APIs.' redirect_from: - /enterprise/admin/installation/about-the-github-enterprise-server-api - - /enterprise/admin/articles/about-the-enterprise-api/ - - /enterprise/admin/articles/using-the-api/ - - /enterprise/admin/categories/api/ + - /enterprise/admin/articles/about-the-enterprise-api + - /enterprise/admin/articles/using-the-api + - /enterprise/admin/categories/api - /enterprise/admin/overview/about-the-github-enterprise-server-api - /admin/overview/about-the-github-enterprise-server-api versions: @@ -13,15 +13,15 @@ versions: ghae: '*' topics: - Enterprise -shortTitle: API de GitHub Enterprise +shortTitle: GitHub Enterprise API --- -Con las API, puedes automatizar muchas tareas administrativas. Algunos ejemplos incluyen los siguientes: +With the APIs, you can automate many administrative tasks. Some examples include: {% ifversion ghes %} -- Realizar cambios en {% data variables.enterprise.management_console %}. Para obtener más información, consulta la secicón "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)". -- Configura la sincronización de LDAP. Para obtener más información, consulta la sección "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)."{% endif %} -- Recolectar estadísticas sobre tu empresa. Para obtener más información, consulta la sección "[Estadísticas administrativas](/rest/reference/enterprise-admin#admin-stats)". -- Administra tu cuenta Enterprise. Para obtener más información, consulta "[Cuentas Enterprise](/graphql/guides/managing-enterprise-accounts)" +- Perform changes to the {% data variables.enterprise.management_console %}. For more information, see "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)." +- Configure LDAP sync. For more information, see "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)."{% endif %} +- Collect statistics about your enterprise. For more information, see "[Admin stats](/rest/reference/enterprise-admin#admin-stats)." +- Manage your enterprise account. For more information, see "[Enterprise accounts](/graphql/guides/managing-enterprise-accounts)." -Para conocer la documentación íntegra de la {% data variables.product.prodname_enterprise_api %}, consulta la [API de REST de {% data variables.product.prodname_dotcom %}](/rest) y la [API de GraphQL de {% data variables.product.prodname_dotcom%}](/graphql). +For the complete documentation for {% data variables.product.prodname_enterprise_api %}, see [{% data variables.product.prodname_dotcom %} REST API](/rest) and [{% data variables.product.prodname_dotcom%} GraphQL API](/graphql). diff --git a/translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md b/translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md index 278395084f..3737d0e572 100644 --- a/translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md +++ b/translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md @@ -1,6 +1,6 @@ --- -title: Migrar datos a tu empresa -intro: 'Después de generar un archivo de migración, puedes importar los datos a tu instancia de destino del {% data variables.product.prodname_ghe_server %}. Podrás revisar los cambios para detectar posibles conflictos antes de aplicar de manera permanente los cambios a tu instancia de destino.' +title: Migrating data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise/ - /enterprise/admin/migrations/applying-the-imported-data-on-github-enterprise-server @@ -18,95 +18,94 @@ type: how_to topics: - Enterprise - Migration -shortTitle: Importar hacia tu empresa +shortTitle: Import to your enterprise --- +## Applying the imported data on {% data variables.product.prodname_ghe_server %} -## Aplicar los datos importados en {% data variables.product.prodname_ghe_server %} - -Before you can migrate data to your enterprise, you must prepare the data and resolve any conflicts. Para obtener más información, consulta la sección "[Cómo prepararte para migrar datos a tu empresa](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)". +Before you can migrate data to your enterprise, you must prepare the data and resolve any conflicts. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." After you prepare the data and resolve conflicts, you can apply the imported data on {% data variables.product.product_name %}. {% data reusables.enterprise_installation.ssh-into-target-instance %} -2. Con el comando `ghe-migrator import`, inicia el proceso de importación. Necesitarás: - * Tu GUID de migración. Para obtener más información, consulta la sección "[Cómo prepararte para migrar datos a tu empresa](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)". - * Tu token de acceso personal para autenticación. El token de acceso personal que utilices es solo para autenticación como administrador de sitio, y no requiere ningún alcance específico. Para obtener más información, consulta la sección "[Crear un token de acceso personal](/github/authenticating-to-github/creating-a-personal-access-token)". +2. Using the `ghe-migrator import` command, start the import process. You'll need: + * Your Migration GUID. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." + * Your personal access token for authentication. The personal access token that you use is only for authentication as a site administrator, and does not require any specific scope. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." ```shell $ ghe-migrator import /home/admin/<em>MIGRATION_GUID</em>.tar.gz -g <em>MIGRATION_GUID</em> -u <em>username</em> -p <em>TOKEN</em> - - > Comenzando con GitHub::Migrador - > Importación 100 % completa / + + > Starting GitHub::Migrator + > Import 100% complete / ``` * {% data reusables.enterprise_migrations.specify-staging-path %} -## Revisar datos de migración +## Reviewing migration data -De forma predeterminada, `ghe-migrator audit` devuelve todos los registros. También te permite filtrar los registros por: +By default, `ghe-migrator audit` returns every record. It also allows you to filter records by: - * Los tipos de registros. - * El estado de los registros. + * The types of records. + * The state of the records. -Los tipos de registro coinciden con los encontrados en los [datos migrados](/enterprise/admin/guides/migrations/about-migrations/#migrated-data). +The record types match those found in the [migrated data](/enterprise/admin/guides/migrations/about-migrations/#migrated-data). -## Filtros de tipo de registro +## Record type filters -| Tipo de registro | Nombre del filtro | -| --------------------------------------------------------------- | --------------------------------------------------- | -| Usuarios | `usuario` | -| Organizaciones | `organization` | -| Repositorios | `repositorio` | -| Equipos | `equipo` | -| Hitos | `hito` | -| Tableros de proyecto | `project` | -| Problemas | `propuesta` | -| Comentarios de propuestas | `comentario_propuesta` | -| Solicitudes de cambios | `solicitud_extracción` | -| Revisiones de solicitudes de extracción | `revisión_solicitud de extracción` | -| Comentarios sobre confirmación de cambios | `comentario_confirmación de cambios` | -| Comentarios sobre revisiones de solicitudes de extracción | `comentarios _revisiones_solicitudes de extracción` | -| Lanzamientos | `lanzamiento` | -| Medidas adoptadas en las solicitudes de extracción o propuestas | `evento_propuesta` | -| Ramas protegidas | `rama_protegida` | +| Record type | Filter name | +|-----------------------|--------| +| Users | `user` +| Organizations | `organization` +| Repositories | `repository` +| Teams | `team` +| Milestones | `milestone` +| Project boards | `project` +| Issues | `issue` +| Issue comments | `issue_comment` +| Pull requests | `pull_request` +| Pull request reviews | `pull_request_review` +| Commit comments | `commit_comment` +| Pull request review comments | `pull_request_review_comment` +| Releases | `release` +| Actions taken on pull requests or issues | `issue_event` +| Protected branches | `protected_branch` -## Filtros de estado de registro +## Record state filters -| Estado de registro | Descripción | -| --------------------- | ---------------------------------- | -| `exportar` | El registro se exportará. | -| `importar` | El registro se importará. | -| `map` | El registro se asignará. | -| `rename (renombrar)` | El registro se renombrará. | -| `fusionar` | El registro se fusionará. | -| `exportado` | El registro se exportó con éxito. | -| `importado` | El registro se importó con éxito. | -| `asignado` | El registro se asignó con éxito. | -| `renombrado` | El registro se renombró con éxito. | -| `fusionado` | El registro se fusionó con éxito. | -| `exportación_fallida` | El registro no se pudo exportar. | -| `importación_fallida` | El registro no se pudo importar. | -| `asignación_fallida` | El registro no se pudo asignar. | -| `renombrar_fallido` | El registro no se pudo renombrar. | -| `fusión_fallida` | El registro no se pudo fusionar. | +| Record state | Description | +|-----------------|----------------| +| `export` | The record will be exported. | +| `import` | The record will be imported. | +| `map` | The record will be mapped. | +| `rename` | The record will be renamed. | +| `merge` | The record will be merged. | +| `exported` | The record was successfully exported. | +| `imported` | The record was successfully imported. | +| `mapped` | The record was successfully mapped. | +| `renamed` | The record was successfully renamed. | +| `merged` | The record was successfully merged. | +| `failed_export` | The record failed to export. | +| `failed_import` | The record failed to be imported. | +| `failed_map` | The record failed to be mapped. | +| `failed_rename` | The record failed to be renamed. | +| `failed_merge` | The record failed to be merged. | -## Filtrar registros auditados +## Filtering audited records -Con el comando de auditoría `ghe-migrator audit` puedes filtrar en función del tipo de registro mediante el indicador `-m`. Del mismo modo, puedes filtrar en el estado de importación mediante el indicador `-s`. El comando se ve de la siguiente manera: +With the `ghe-migrator audit` command, you can filter based on the record type using the `-m` flag. Similarly, you can filter on the import state using the `-s` flag. The command looks like this: ```shell $ ghe-migrator audit -m <em>RECORD_TYPE</em> -s <em>STATE</em> -g <em>MIGRATION_GUID</em> ``` -Por ejemplo, para ver cada organización y equipo importados con éxito, debes ingresar: +For example, to view every successfully imported organization and team, you would enter: ```shell $ ghe-migrator audit -m organization,team -s mapped,renamed -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state > organization,https://gh.source/octo-org/,https://ghe.target/octo-org/,renamed ``` -**Te recomendamos encarecidamente que hagas una auditoría de todas las importaciones que fallaron.** Para ello, ingresa en: +**We strongly recommend auditing every import that failed.** To do that, you will enter: ```shell $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state @@ -114,40 +113,40 @@ $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g < > repository,https://gh.source/octo-org/octo-project,https://ghe.target/octo-org/octo-project,failed ``` -Si tienes alguna duda sobre las importaciones fallidas, comunícate con {% data variables.contact.contact_ent_support %}. +If you have any concerns about failed imports, contact {% data variables.contact.contact_ent_support %}. -## Completar la importación en {% data variables.product.prodname_ghe_server %} +## Completing the import on {% data variables.product.prodname_ghe_server %} -Después de que se aplique tu migración a tu instancia destino y la hayas revisado, desbloquearás los repositorios y los borrarás del origen. Antes de eliminar los datos de origen, se recomienda esperar alrededor de dos semanas para asegurarse de que todo funciona de acuerdo con lo esperado. +After your migration is applied to your target instance and you have reviewed the migration, you''ll unlock the repositories and delete them off the source. Before deleting your source data we recommend waiting around two weeks to ensure that everything is functioning as expected. -## Desbloquear repositorios en la instancia de destino +## Unlocking repositories on the target instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} -## Desbloquear repositorios en el origen +## Unlocking repositories on the source -### Desbloquear los repositorios de una organización en {% data variables.product.prodname_dotcom_the_website %} +### Unlocking repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -Para desbloquear los repositorios en una organización{% data variables.product.prodname_dotcom_the_website %}, debes enviar una solicitud de `DELETE` <a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">al punto final de desbloqueo de migración</a>. Necesitarás: - * Tu token de acceso para autenticación - * El `id` único de la migración - * El nombre del repositorio a desbloquear +To unlock the repositories on a {% data variables.product.prodname_dotcom_the_website %} organization, you'll send a `DELETE` request to <a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">the migration unlock endpoint</a>. You'll need: + * Your access token for authentication + * The unique `id` of the migration + * The name of the repository to unlock ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ -H "Accept: application/vnd.github.wyandotte-preview+json" \ https://api.github.com/orgs/<em>orgname</em>/migrations/<em>id</em>/repos/<em>repo_name</em>/lock ``` -### Borrar los repositorios de una organización en {% data variables.product.prodname_dotcom_the_website %} +### Deleting repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -Después de desbloquear los repositorios de organización de {% data variables.product.prodname_dotcom_the_website %} deberás borrar todos los repositorios que migraste previamente utilizando [la terminal de borrado de repositorios](/rest/reference/repos/#delete-a-repository). Necesitarás tu token de acceso para la autenticación: +After unlocking the {% data variables.product.prodname_dotcom_the_website %} organization's repositories, you should delete every repository you previously migrated using [the repository delete endpoint](/rest/reference/repos/#delete-a-repository). You'll need your access token for authentication: ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ https://api.github.com/repos/<em>orgname</em>/<em>repo_name</em> ``` -### Desbloquear repositorios desde una instancia de {% data variables.product.prodname_ghe_server %} +### Unlocking repositories from a {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} diff --git a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md index 2cd4588167..94f9079075 100644 --- a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md +++ b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md @@ -1,13 +1,11 @@ --- title: About authentication with SAML single sign-on -intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif fpt %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion fpt or ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' -product: '{% data reusables.gated-features.saml-sso %}' +intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif ghec %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' redirect_from: - /articles/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -57,5 +55,5 @@ After an enterprise or organization owner enables or enforces SAML SSO for an or ## Further reading -{% ifversion fpt or ghec %}- "[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)"{% endif %} +{% ifversion ghec %}- "[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)"{% endif %} {% ifversion ghae %}- "[About identity and access management for your enterprise](/admin/authentication/about-identity-and-access-management-for-your-enterprise)"{% endif %} diff --git a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md index 3957e660c3..cd89fcbb59 100644 --- a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md +++ b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md @@ -2,12 +2,11 @@ title: Authorizing a personal access token for use with SAML single sign-on intro: 'To use a personal access token with an organization that uses SAML single sign-on (SSO), you must first authorize the token.' redirect_from: - - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO diff --git a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md index 4a9c0b3218..2bd5cef6ba 100644 --- a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md +++ b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md @@ -2,12 +2,11 @@ title: Authorizing an SSH key for use with SAML single sign-on intro: 'To use an SSH key with an organization that uses SAML single sign-on (SSO), you must first authorize the key.' redirect_from: - - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO diff --git a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/index.md b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/index.md index 2f1ad851c1..c609a547c9 100644 --- a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/index.md +++ b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/index.md @@ -1,13 +1,11 @@ --- -title: Autenticación con inicio de sesión único de SAML -intro: 'Puedes autenticarte en {% ifversion fpt %} una organización de {% data variables.product.product_name %} {% elsif ghae %}{% data variables.product.product_location %} {% endif %}con el inicio de sesión único (SSO) de SAML{% ifversion fpt %} y ver tus sesiones activas{% endif %}.' -product: '{% data reusables.gated-features.saml-sso %}' +title: Authenticating with SAML single sign-on +intro: 'You can authenticate to {% data variables.product.product_name %} with SAML single sign-on (SSO){% ifversion ghec %} and view your active sessions{% endif %}.' redirect_from: - - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on/ + - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on - /articles/authenticating-with-saml-single-sign-on - - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/ + - /github/authenticating-to-github/authenticating-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -17,6 +15,6 @@ children: - /authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /viewing-and-managing-your-active-saml-sessions -shortTitle: Autenticarse con SAML +shortTitle: Authenticate with SAML --- diff --git a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md index a4523735e3..466649aa42 100644 --- a/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md +++ b/translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md @@ -1,30 +1,31 @@ --- -title: Ver y administrar tus sesiones de SAML activas -intro: Puedes ver y revocar tus sesiones de SAML activas en tus parámetros de seguridad. +title: Viewing and managing your active SAML sessions +intro: You can view and revoke your active SAML sessions in your security settings. redirect_from: - /articles/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions versions: - fpt: '*' ghec: '*' topics: - SSO -shortTitle: Sesiones activas de SAML +shortTitle: Active SAML sessions --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.security %} -3. Debajo de "Sesiones" puedes ver tus sesiones activas de SAML. ![Lista de sesiones de SAML activas](/assets/images/help/settings/saml-active-sessions.png) -4. Para ver los detalles de la sesión, da clic en **Ver más**. ![Botón para abrir los detalles de la sesión de SAML](/assets/images/help/settings/saml-expand-session-details.png) -5. Para revocar una sesión, da clic en **Revocar SAML**. ![Botón para revocar una sesión de SAML](/assets/images/help/settings/saml-revoke-session.png) +3. Under "Sessions," you can see your active SAML sessions. + ![List of active SAML sessions](/assets/images/help/settings/saml-active-sessions.png) +4. To see the session details, click **See more**. + ![Button to open SAML session details](/assets/images/help/settings/saml-expand-session-details.png) +5. To revoke a session, click **Revoke SAML**. + ![Button to revoke a SAML session](/assets/images/help/settings/saml-revoke-session.png) {% note %} - **Nota:** Cuando revocas una sesión, puedes eliminar tu autenticación de SAML para esa organización. Para volver a acceder a la organización, tendrás que hacer un inicio de sesión único a través de tu proveedor de identidad. Para obtener más información, consulta "[Acerca de la autenticación con SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)". + **Note:** When you revoke a session, you remove your SAML authentication to that organization. To access the organization again, you will need to single sign-on through your identity provider. For more information, see "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -## Leer más +## Further reading -- "[Acerca de la autenticación con SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" +- "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" diff --git a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/about-ssh.md b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/about-ssh.md index 1d21b7f510..a649ffb628 100644 --- a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/about-ssh.md +++ b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/about-ssh.md @@ -17,7 +17,7 @@ When you set up SSH, you will need to generate a new SSH key and add it to the s You can further secure your SSH key by using a hardware security key, which requires the physical hardware security key to be attached to your computer when the key pair is used to authenticate with SSH. You can also secure your SSH key by adding your key to the ssh-agent and using a passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -{% ifversion fpt or ghec %}To use your SSH key with a repository owned by an organization that uses SAML single sign-on, you must authorize the key. For more information, see "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}To use your SSH key with a repository owned by an organization that uses SAML single sign-on, you must authorize the key. For more information, see "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} To maintain account security, you can regularly review your SSH keys list and revoke any keys that are invalid or have been compromised. For more information, see "[Reviewing your SSH keys](/github/authenticating-to-github/reviewing-your-ssh-keys)." diff --git a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md index 17b3890a45..98e191c19b 100644 --- a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md +++ b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md @@ -2,8 +2,8 @@ title: Generating a new SSH key and adding it to the ssh-agent intro: 'After you''ve checked for existing SSH keys, you can generate a new SSH key to use for authentication, then add it to the ssh-agent.' redirect_from: - - /articles/adding-a-new-ssh-key-to-the-ssh-agent/ - - /articles/generating-a-new-ssh-key/ + - /articles/adding-a-new-ssh-key-to-the-ssh-agent + - /articles/generating-a-new-ssh-key - /articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent @@ -252,6 +252,6 @@ If you are using macOS or Linux, you may need to update your SSH client or insta - "[About SSH](/articles/about-ssh)" - "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)" -{%- ifversion fpt %} -- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)" +{%- ifversion fpt or ghec %} +- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} {%- endif %} diff --git a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/index.md b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/index.md index 98d0f356ec..f052a1f3f4 100644 --- a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/index.md +++ b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/index.md @@ -1,16 +1,16 @@ --- -title: Conectar a GitHub con SSH -intro: 'Puedes conectarte a {% data variables.product.product_name %} utilizando el Protocolo de Secure Shell (SSH), lo cual proporciona un canal seguro sobre una red insegura.' +title: Connecting to GitHub with SSH +intro: 'You can connect to {% data variables.product.product_name %} using the Secure Shell Protocol (SSH), which provides a secure channel over an unsecured network.' redirect_from: - - /key-setup-redirect/ - - /linux-key-setup/ - - /mac-key-setup/ - - /msysgit-key-setup/ - - /articles/ssh-key-setup/ - - /articles/generating-ssh-keys/ - - /articles/generating-an-ssh-key/ + - /key-setup-redirect + - /linux-key-setup + - /mac-key-setup + - /msysgit-key-setup + - /articles/ssh-key-setup + - /articles/generating-ssh-keys + - /articles/generating-an-ssh-key - /articles/connecting-to-github-with-ssh - - /github/authenticating-to-github/connecting-to-github-with-ssh/ + - /github/authenticating-to-github/connecting-to-github-with-ssh versions: fpt: '*' ghes: '*' @@ -25,6 +25,6 @@ children: - /adding-a-new-ssh-key-to-your-github-account - /testing-your-ssh-connection - /working-with-ssh-key-passphrases -shortTitle: Conectarse con SSH +shortTitle: Connect with SSH --- diff --git a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md index fadf80b332..f9dfd3f00c 100644 --- a/translations/es-ES/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md +++ b/translations/es-ES/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md @@ -1,9 +1,9 @@ --- -title: Trabajar con contraseñas de clave SSH -intro: Puedes asegurar tus claves SSH y configurar un agente de autenticación para no tener que volver a ingresar tu contraseña cada vez que uses tus claves SSH. +title: Working with SSH key passphrases +intro: You can secure your SSH keys and configure an authentication agent so that you won't have to reenter your passphrase every time you use your SSH keys. redirect_from: - - /ssh-key-passphrases/ - - /working-with-key-passphrases/ + - /ssh-key-passphrases + - /working-with-key-passphrases - /articles/working-with-ssh-key-passphrases - /github/authenticating-to-github/working-with-ssh-key-passphrases - /github/authenticating-to-github/connecting-to-github-with-ssh/working-with-ssh-key-passphrases @@ -14,14 +14,13 @@ versions: ghec: '*' topics: - SSH -shortTitle: Frases de acceso de llave SSH +shortTitle: SSH key passphrases --- +With SSH keys, if someone gains access to your computer, they also gain access to every system that uses that key. To add an extra layer of security, you can add a passphrase to your SSH key. You can use `ssh-agent` to securely save your passphrase so you don't have to reenter it. -Con las claves SSH, si alguien obtiene acceso a tu computadora, también tiene acceso a cada sistema que usa esa clave. Para agregar una capa extra de seguridad, puedes incluir una contraseña a tu clave SSH. Puedes usar `ssh-agent` para guardar tu contraseña de forma segura y no tener que volver a ingresarla. +## Adding or changing a passphrase -## Agregar o cambiar una contraseña - -Puedes cambiar la contraseña por una llave privada existente sin volver a generar el par de claves al escribir el siguiente comando: +You can change the passphrase for an existing private key without regenerating the keypair by typing the following command: ```shell $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} @@ -32,13 +31,13 @@ $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} > Your identification has been saved with the new passphrase. ``` -Si tu clave ya tiene una contraseña, se te pedirá que la ingreses antes de que puedas cambiar a una nueva contraseña. +If your key already has a passphrase, you will be prompted to enter it before you can change to a new passphrase. {% windows %} -## Auto-lanzamiento `ssh-agent` en Git para Windows +## Auto-launching `ssh-agent` on Git for Windows -Puedes ejecutar el `ssh-agent` automáticamente cuando abres el bash o el Git shell. Copia las siguientes líneas y pégalas en tu `~/.perfil` o archivo `~/.bashrc` en Git Shell: +You can run `ssh-agent` automatically when you open bash or Git shell. Copy the following lines and paste them into your `~/.profile` or `~/.bashrc` file in Git shell: ``` bash env=~/.ssh/agent.env @@ -64,15 +63,15 @@ fi unset env ``` -Si tu llave privada no está almacenada en una de las ubicaciones predeterminadas (como`~/.ssh/id_rsa`), necesitarás indicar a tu agente de autenticación SSH en dónde encontrarla. Para agregar tu clave a ssh-agent, escribe `ssh-add ~/path/to/my_key`. Para obtener más información, consulta "[Generar una nueva clave SSH y agregarla a ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)" +If your private key is not stored in one of the default locations (like `~/.ssh/id_rsa`), you'll need to tell your SSH authentication agent where to find it. To add your key to ssh-agent, type `ssh-add ~/path/to/my_key`. For more information, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)" {% tip %} -**Sugerencias:** si quieres que `ssh-agent` olvide tu clave luego de un tiempo, puedes configurarlo para que lo haga ejecutando `ssh-add -t <seconds>`. +**Tip:** If you want `ssh-agent` to forget your key after some time, you can configure it to do so by running `ssh-add -t <seconds>`. {% endtip %} -Ahora, cuando ejecutas Git Bash por primera vez, se te pedirá tu contraseña: +Now, when you first run Git Bash, you are prompted for your passphrase: ```shell > Initializing new SSH agent... @@ -85,25 +84,25 @@ Ahora, cuando ejecutas Git Bash por primera vez, se te pedirá tu contraseña: > Run 'git help <command>' to display help for specific commands. ``` -El proceso de `ssh-agent` continuará funcionando hasta que cierres sesión, apagues tu computadora o termines el proceso. +The `ssh-agent` process will continue to run until you log out, shut down your computer, or kill the process. {% endwindows %} {% mac %} -## Guardar tu contraseña en keychain +## Saving your passphrase in the keychain -En Mac OS X Leopard y hasta OS X El Capitan, estos archivos de llave privada predeterminada se manejan automáticamente: +On Mac OS X Leopard through OS X El Capitan, these default private key files are handled automatically: - *.ssh/id_rsa* - *.ssh/identity* -La primera vez que usas tu clave, se te pedirá que ingreses tu contraseña. Si eliges guardar la contraseña con tu keychain, no necesitarás ingresarla nuevamente. +The first time you use your key, you will be prompted to enter your passphrase. If you choose to save the passphrase with your keychain, you won't have to enter it again. -De lo contrario, puedes almacenar tu contraseña en la keychain cuando agregues tu clave a ssh-agent. Para obtener más información, consulta "[Agregar tu clave SSH a ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)." +Otherwise, you can store your passphrase in the keychain when you add your key to the ssh-agent. For more information, see "[Adding your SSH key to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)." {% endmac %} -## Leer más +## Further reading -- "[Acerca de SSH](/articles/about-ssh)" +- "[About SSH](/articles/about-ssh)" diff --git a/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md b/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md index 1d89343fd8..91249e7e4e 100644 --- a/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md +++ b/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md @@ -76,7 +76,7 @@ If you authenticate without {% data variables.product.prodname_cli %}, you will ### Authorizing for SAML single sign-on -{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghes > 3.1 or ghae or ghec %} diff --git a/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md b/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md index ccb0b169ea..da65603203 100644 --- a/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md +++ b/translations/es-ES/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md @@ -27,7 +27,7 @@ shortTitle: Create a PAT Personal access tokens (PATs) are an alternative to using passwords for authentication to {% data variables.product.product_name %} when using the [GitHub API](/rest/overview/other-authentication-methods#via-oauth-and-personal-access-tokens) or the [command line](#using-a-token-on-the-command-line). -{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} @@ -65,7 +65,7 @@ A token with no assigned scopes can only access public information. To use your {% endwarning %} -{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML SSO, [authorize the token for use with a SAML single-sign-on organization](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on).{% endif %} +{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML single sign-on, authorize the token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} ## Using a token on the command line diff --git a/translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md b/translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md index 0a0564460c..e369530726 100644 --- a/translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md +++ b/translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md @@ -2,8 +2,8 @@ title: About commit signature verification intro: 'Using GPG or S/MIME, you can sign tags and commits locally. These tags or commits are marked as verified on {% data variables.product.product_name %} so other people can be confident that the changes come from a trusted source.' redirect_from: - - /articles/about-gpg-commit-and-tag-signatures/ - - /articles/about-gpg/ + - /articles/about-gpg-commit-and-tag-signatures + - /articles/about-gpg - /articles/about-commit-signature-verification - /github/authenticating-to-github/about-commit-signature-verification - /github/authenticating-to-github/managing-commit-signature-verification/about-commit-signature-verification diff --git a/translations/es-ES/content/authentication/managing-commit-signature-verification/index.md b/translations/es-ES/content/authentication/managing-commit-signature-verification/index.md index a2c6799b9e..8a3ba49810 100644 --- a/translations/es-ES/content/authentication/managing-commit-signature-verification/index.md +++ b/translations/es-ES/content/authentication/managing-commit-signature-verification/index.md @@ -1,11 +1,11 @@ --- -title: Administrar la verificación de firma de confirmación de cambios -intro: 'Puedes firmar tu trabajo localmente utilizando GPG o S/MIME. {% data variables.product.product_name %} verificará estas firmas para que otras personas sepan que tus confirmaciones de cambios provienen de una fuente confiable.{% ifversion fpt %} {% data variables.product.product_name %} firmará de forma automática las confirmaciones de cambios que realices utilizando la interfaz web {% data variables.product.product_name %}.{% endif %}' +title: Managing commit signature verification +intro: 'You can sign your work locally using GPG or S/MIME. {% data variables.product.product_name %} will verify these signatures so other people will know that your commits come from a trusted source.{% ifversion fpt %} {% data variables.product.product_name %} will automatically sign commits you make using the {% data variables.product.product_name %} web interface.{% endif %}' redirect_from: - - /articles/generating-a-gpg-key/ - - /articles/signing-commits-with-gpg/ + - /articles/generating-a-gpg-key + - /articles/signing-commits-with-gpg - /articles/managing-commit-signature-verification - - /github/authenticating-to-github/managing-commit-signature-verification/ + - /github/authenticating-to-github/managing-commit-signature-verification versions: fpt: '*' ghes: '*' @@ -24,6 +24,6 @@ children: - /associating-an-email-with-your-gpg-key - /signing-commits - /signing-tags -shortTitle: Verificar las firmas de confirmación +shortTitle: Verify commit signatures --- diff --git a/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-commits.md b/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-commits.md index ad03fae2b2..a158f5199a 100644 --- a/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-commits.md +++ b/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-commits.md @@ -2,8 +2,8 @@ title: Signing commits intro: You can sign commits locally using GPG or S/MIME. redirect_from: - - /articles/signing-commits-and-tags-using-gpg/ - - /articles/signing-commits-using-gpg/ + - /articles/signing-commits-and-tags-using-gpg + - /articles/signing-commits-using-gpg - /articles/signing-commits - /github/authenticating-to-github/signing-commits - /github/authenticating-to-github/managing-commit-signature-verification/signing-commits diff --git a/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-tags.md b/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-tags.md index 2dbc5409b9..7d9a38a398 100644 --- a/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-tags.md +++ b/translations/es-ES/content/authentication/managing-commit-signature-verification/signing-tags.md @@ -1,8 +1,8 @@ --- -title: Firmar etiquetas -intro: Puedes firmar las etiquetas localmente utilizando GPG o S/MIME. +title: Signing tags +intro: You can sign tags locally using GPG or S/MIME. redirect_from: - - /articles/signing-tags-using-gpg/ + - /articles/signing-tags-using-gpg - /articles/signing-tags - /github/authenticating-to-github/signing-tags - /github/authenticating-to-github/managing-commit-signature-verification/signing-tags @@ -15,26 +15,25 @@ topics: - Identity - Access management --- - {% data reusables.gpg.desktop-support-for-commit-signing %} -1. Para firmar una etiqueta, agrega `-s` a tu comando `git tag`. +1. To sign a tag, add `-s` to your `git tag` command. ```shell $ git tag -s <em>mytag</em> # Creates a signed tag ``` -2. Verifica tu etiqueta firmada al ejecutar `git tag -v [tag-name]`. +2. Verify your signed tag it by running `git tag -v [tag-name]`. ```shell $ git tag -v <em>mytag</em> # Verifies the signed tag ``` -## Leer más +## Further reading -- [Ver las etiquetas de tu repositorio](/articles/viewing-your-repositorys-tags)" -- "[Comprobar llaves GPG existentes](/articles/checking-for-existing-gpg-keys)" -- "[Generar una llave GPG nueva](/articles/generating-a-new-gpg-key)" -- "[Agregar una nueva llave GPG a tu cuenta de GitHub](/articles/adding-a-new-gpg-key-to-your-github-account)" -- "[Informar a Git sobre tu llave de firma](/articles/telling-git-about-your-signing-key)" -- "[Asociar un correo electrónico con tu llave GPG](/articles/associating-an-email-with-your-gpg-key)" -- "[Firmar confirmaciones](/articles/signing-commits)" +- "[Viewing your repository's tags](/articles/viewing-your-repositorys-tags)" +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Telling Git about your signing key](/articles/telling-git-about-your-signing-key)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" diff --git a/translations/es-ES/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md b/translations/es-ES/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md index 30cf3db239..25275ba5df 100644 --- a/translations/es-ES/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md +++ b/translations/es-ES/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md @@ -1,8 +1,8 @@ --- -title: Informarle a Git acerca de tu clave de firma -intro: 'Para firmar las confirmaciones localmente, necesitas informar a Git que hay una llave de GPG o X.509 que quieres utilizar.' +title: Telling Git about your signing key +intro: 'To sign commits locally, you need to inform Git that there''s a GPG or X.509 key you''d like to use.' redirect_from: - - /articles/telling-git-about-your-gpg-key/ + - /articles/telling-git-about-your-gpg-key - /articles/telling-git-about-your-signing-key - /github/authenticating-to-github/telling-git-about-your-signing-key - /github/authenticating-to-github/managing-commit-signature-verification/telling-git-about-your-signing-key @@ -14,33 +14,32 @@ versions: topics: - Identity - Access management -shortTitle: Decirle tu llave de firma a Git +shortTitle: Tell Git your signing key --- - {% mac %} -## Informarle a Git acerca de tu llave GPG +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -Si no tienes una llave GPG que coincida con la identidad de la persona que confirma el cambio, debes asociar un correo electrónico a una llave existente. Para obtener más información, consulta "[Asociar un correo electrónico a tu llave GPG](/articles/associating-an-email-with-your-gpg-key)". +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -Si tienes múltiples llaves GPG, le debes decir a Git cuál utilizar. +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. Si no estás utilizando la suite de GPG, ejecuta el siguiente comando en el shell de `zsh` para agregar la llave GPG a tu archivo `.zshrc`, si es que existe, o a tu archivo `.zprofile`: +1. If you aren't using the GPG suite, run the following command in the `zsh` shell to add the GPG key to your `.zshrc` file, if it exists, or your `.zprofile` file: ```shell $ if [ -r ~/.zshrc ]; then echo 'export GPG_TTY=$(tty)' >> ~/.zshrc; \ else echo 'export GPG_TTY=$(tty)' >> ~/.zprofile; fi ``` - Como alternativa, si utilizas el shell `bash`, ejecuta este comando: + Alternatively, if you use the `bash` shell, run this command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi @@ -52,17 +51,17 @@ Si tienes múltiples llaves GPG, le debes decir a Git cuál utilizar. {% windows %} -## Informarle a Git acerca de tu llave GPG +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -Si no tienes una llave GPG que coincida con la identidad de la persona que confirma el cambio, debes asociar un correo electrónico a una llave existente. Para obtener más información, consulta "[Asociar un correo electrónico a tu llave GPG](/articles/associating-an-email-with-your-gpg-key)". +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -Si tienes múltiples llaves GPG, le debes decir a Git cuál utilizar. +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} @@ -75,41 +74,41 @@ Si tienes múltiples llaves GPG, le debes decir a Git cuál utilizar. {% linux %} -## Informarle a Git acerca de tu llave GPG +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -Si no tienes una llave GPG que coincida con la identidad de la persona que confirma el cambio, debes asociar un correo electrónico a una llave existente. Para obtener más información, consulta "[Asociar un correo electrónico a tu llave GPG](/articles/associating-an-email-with-your-gpg-key)". +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -Si tienes múltiples llaves GPG, le debes decir a Git cuál utilizar. +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. Para agregar tu llave GPG a tu perfil bash, ejecuta el siguiente comando: +1. To add your GPG key to your bash profile, run the following command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi ``` {% note %} - **Nota:** Si no tienes `.bash_profile`, este comando agrega tu llave GPG al `.profile`. + **Note:** If you don't have `.bash_profile`, this command adds your GPG key to `.profile`. {% endnote %} {% endlinux %} -## Leer más +## Further reading -- "[Comprobar llaves GPG existentes](/articles/checking-for-existing-gpg-keys)" -- "[Generar una llave GPG nueva](/articles/generating-a-new-gpg-key)" -- "[Utilizar una dirección de correo electrónico verificada en tu llave GPG](/articles/using-a-verified-email-address-in-your-gpg-key)" -- "[Agregar una nueva llave GPG a tu cuenta de GitHub](/articles/adding-a-new-gpg-key-to-your-github-account)" -- "[Asociar un correo electrónico con tu llave GPG](/articles/associating-an-email-with-your-gpg-key)" -- "[Firmar confirmaciones](/articles/signing-commits)" -- "[Firmar etiquetas](/articles/signing-tags)" +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Using a verified email address in your GPG key](/articles/using-a-verified-email-address-in-your-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md b/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md index 44ece06b87..38e0b87865 100644 --- a/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md +++ b/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md @@ -1,8 +1,8 @@ --- -title: Comprobar el estado de verificación de firma de la confirmación y de la etiqueta -intro: 'Puedes comprobar el estado de verificación de las firmas de tu confirmación y de la etiqueta en {% data variables.product.product_name %}.' +title: Checking your commit and tag signature verification status +intro: 'You can check the verification status of your commit and tag signatures on {% data variables.product.product_name %}.' redirect_from: - - /articles/checking-your-gpg-commit-and-tag-signature-verification-status/ + - /articles/checking-your-gpg-commit-and-tag-signature-verification-status - /articles/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status @@ -14,26 +14,30 @@ versions: topics: - Identity - Access management -shortTitle: Verificar el estado de verificación +shortTitle: Check verification status --- +## Checking your commit signature verification status -## Comprobar el estado de verificación de firma de la confirmación - -1. En {% data variables.product.product_name %}, desplázate hasta la solicitud de extracción. +1. On {% data variables.product.product_name %}, navigate to your pull request. {% data reusables.repositories.review-pr-commits %} -3. Junto al hash de confirmación abreviado de tu confirmación, hay una casilla que te muestra si tu firma de confirmación se verificó{% ifversion fpt or ghec %}, se verificó parcialmente,{% endif %} o si no se verificó. ![Confirmación firmada](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) -4. Para ver información más detallada sobre la firma de confirmación, haz clic en **Verificada**{% ifversion fpt or ghec %}, **Verificada parcialmente**,{% endif %} o **Sin verificar**. ![Confirmación firmada verificada](/assets/images/help/commits/gpg-signed-commit_verified_details.png) +3. Next to your commit's abbreviated commit hash, there is a box that shows whether your commit signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![Signed commit](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) +4. To view more detailed information about the commit signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed commit](/assets/images/help/commits/gpg-signed-commit_verified_details.png) -## Comprobar el estado de verificación de firma de la etiqueta +## Checking your tag signature verification status {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. En la parte superior de la página de lanzamiento, haz clic en **Tags** (Etiqueta). ![Página de etiquetas](/assets/images/help/releases/tags-list.png) -3. Junto a la descripción de tu etiqueta, hay una caja que muestra si tu firma de etiqueta está verificada{% ifversion fpt or ghec %}, verificada parcialmente,{% endif %} o sin verificar. ![firma de etiqueta verificada](/assets/images/help/commits/gpg-signed-tag-verified.png) -4. Para ver más información detallada sobre la firma de una etiqueta, haz clic en **Verificada**{% ifversion fpt or ghec %},**Verificada parcialmente**,{% endif %} o **Sin verificar**. ![Etiqueta firmada verificada](/assets/images/help/commits/gpg-signed-tag-verified-details.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) +3. Next to your tag description, there is a box that shows whether your tag signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![verified tag signature](/assets/images/help/commits/gpg-signed-tag-verified.png) +4. To view more detailed information about the tag signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed tag](/assets/images/help/commits/gpg-signed-tag-verified-details.png) -## Leer más +## Further reading -- "[Acerca de la verificación de la firma de confirmación](/articles/about-commit-signature-verification)" -- "[Firmar confirmaciones](/articles/signing-commits)" -- "[Firmar etiquetas](/articles/signing-tags)" +- "[About commit signature verification](/articles/about-commit-signature-verification)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/index.md b/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/index.md index a070dae517..46abaa90df 100644 --- a/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/index.md +++ b/translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/index.md @@ -1,10 +1,10 @@ --- -title: Solucionar problemas de verificación de confirmación de firma -intro: 'Puede que debas solucionar problemas imprevistos que surgen cuando se firman confirmaciones de forma local para la verificación en {% data variables.product.product_name %}.' +title: Troubleshooting commit signature verification +intro: 'You may need to troubleshoot unexpected issues that arise when signing commits locally for verification on {% data variables.product.product_name %}.' redirect_from: - - /articles/troubleshooting-gpg/ + - /articles/troubleshooting-gpg - /articles/troubleshooting-commit-signature-verification - - /github/authenticating-to-github/troubleshooting-commit-signature-verification/ + - /github/authenticating-to-github/troubleshooting-commit-signature-verification versions: fpt: '*' ghes: '*' @@ -17,6 +17,6 @@ children: - /checking-your-commit-and-tag-signature-verification-status - /updating-an-expired-gpg-key - /using-a-verified-email-address-in-your-gpg-key -shortTitle: Solucionar los problemas de la verificación +shortTitle: Troubleshoot verification --- diff --git a/translations/es-ES/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md b/translations/es-ES/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md index e2484db45d..1f852e1bcf 100644 --- a/translations/es-ES/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md +++ b/translations/es-ES/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md @@ -1,8 +1,8 @@ --- -title: 'Error: El agente admitió una falla para registrarse' -intro: 'En circunstancias muy poco frecuentes, al conectarse con {% data variables.product.product_name %} mediante SSH en Linux produce el error "El agente admitió una falla para registrarse usando la clave". Sigue los pasos siguientes para resolver el problema.' +title: 'Error: Agent admitted failure to sign' +intro: 'In rare circumstances, connecting to {% data variables.product.product_name %} via SSH on Linux produces the error `"Agent admitted failure to sign using the key"`. Follow these steps to resolve the problem.' redirect_from: - - /articles/error-agent-admitted-failure-to-sign-using-the-key/ + - /articles/error-agent-admitted-failure-to-sign-using-the-key - /articles/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/troubleshooting-ssh/error-agent-admitted-failure-to-sign @@ -13,10 +13,9 @@ versions: ghec: '*' topics: - SSH -shortTitle: El agente no pudo iniciar sesión +shortTitle: Agent failure to sign --- - -Cuando intentes implementar SSH en {% data variables.product.product_location %} en una computadora con Linux, posiblemente veas el siguiente mensaje en tu terminal: +When trying to SSH into {% data variables.product.product_location %} on a Linux computer, you may see the following message in your terminal: ```shell $ ssh -vT git@{% data variables.command_line.codeblock %} @@ -26,11 +25,11 @@ $ ssh -vT git@{% data variables.command_line.codeblock %} > Permission denied (publickey). ``` -Para conocer más detalles, consulta <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>este informe de propuesta</a>. +For more details, see <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>this issue report</a>. -## Resolución +## Resolution -Deberías poder solucionar este error al cargar tus claves en tu agente de SSH con `ssh-add`: +You should be able to fix this error by loading your keys into your SSH agent with `ssh-add`: ```shell # start the ssh-agent in the background @@ -41,7 +40,7 @@ $ ssh-add > Identity added: /home/<em>you</em>/.ssh/id_rsa (/home/<em>you</em>/.ssh/id_rsa) ``` -Si tu clave no tiene el nombre de archivo predeterminado (`/.ssh/id_rsa`), deberás pasar esa ruta a `ssh-add`: +If your key does not have the default filename (`/.ssh/id_rsa`), you'll have to pass that path to `ssh-add`: ```shell # start the ssh-agent in the background diff --git a/translations/es-ES/content/authentication/troubleshooting-ssh/index.md b/translations/es-ES/content/authentication/troubleshooting-ssh/index.md index e237cea30e..b7b79529d9 100644 --- a/translations/es-ES/content/authentication/troubleshooting-ssh/index.md +++ b/translations/es-ES/content/authentication/troubleshooting-ssh/index.md @@ -1,9 +1,9 @@ --- -title: Solucionar problemas de SSH -intro: 'Cuando utilizas SSH para conectarte y autenticarte para {% data variables.product.product_name %}, puede que debas solucionar problemas inesperados que surjan.' +title: Troubleshooting SSH +intro: 'When using SSH to connect and authenticate to {% data variables.product.product_name %}, you may need to troubleshoot unexpected issues that may arise.' redirect_from: - /articles/troubleshooting-ssh - - /github/authenticating-to-github/troubleshooting-ssh/ + - /github/authenticating-to-github/troubleshooting-ssh versions: fpt: '*' ghes: '*' diff --git a/translations/es-ES/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md b/translations/es-ES/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md index d455cc60da..e8e60da730 100644 --- a/translations/es-ES/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md +++ b/translations/es-ES/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md @@ -1,9 +1,9 @@ --- -title: Recuperar tu contraseña de clave SSH -intro: 'Si perdiste tu contraseña de clave SSH, según el sistema operativo que utilices, puedes recuperarla o generar una nueva contraseña de clave SSH.' +title: Recovering your SSH key passphrase +intro: 'If you''ve lost your SSH key passphrase, depending on the operating system you use, you may either recover it or you may need to generate a new SSH key passphrase.' redirect_from: - - /articles/how-do-i-recover-my-passphrase/ - - /articles/how-do-i-recover-my-ssh-key-passphrase/ + - /articles/how-do-i-recover-my-passphrase + - /articles/how-do-i-recover-my-ssh-key-passphrase - /articles/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/troubleshooting-ssh/recovering-your-ssh-key-passphrase @@ -14,30 +14,31 @@ versions: ghec: '*' topics: - SSH -shortTitle: Recuperar la frase deacceso de la llave SSH +shortTitle: Recover SSH key passphrase --- - {% mac %} -Si [configuraste tu contraseña SSH con la keychain de macOS](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain) es posible que la puedas recuperar. +If you [configured your SSH passphrase with the macOS keychain](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain), you may be able to recover it. -1. En Finder (Buscador), busca la aplicación **Keychain Access** (Acceso keychain). ![Barra Spotlight Search (Búsqueda de Spotlight)](/assets/images/help/setup/keychain-access.png) -2. En Keychain Access (Acceso keychain), busca **SSH**. -3. Haz doble clic en la entrada de tu clave SSH para abrir un nuevo cuadro de diálogo. -4. En la esquina inferior izquierda, selecciona **Show password** (Mostrar contraseña). ![Diálogo Keychain access (Acceso keychain)](/assets/images/help/setup/keychain_show_password_dialog.png) -5. Se te solicitará tu contraseña administrativa. Escríbela en el cuadro de diálogo "Keychain Access" (Acceso keychain). -6. Se revelará tu contraseña. +1. In Finder, search for the **Keychain Access** app. + ![Spotlight Search bar](/assets/images/help/setup/keychain-access.png) +2. In Keychain Access, search for **SSH**. +3. Double click on the entry for your SSH key to open a new dialog box. +4. In the lower-left corner, select **Show password**. + ![Keychain access dialog](/assets/images/help/setup/keychain_show_password_dialog.png) +5. You'll be prompted for your administrative password. Type it into the "Keychain Access" dialog box. +6. Your password will be revealed. {% endmac %} {% windows %} -Si pierdes tu contraseña de clave SSH, no hay forma de recuperarla. Tendrás que [generar un nuevo par de claves SSH comercial](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) o [cambiar a la clonación de HTTPS](/github/getting-started-with-github/managing-remote-repositories) para poder utilizar tu contraseña de GitHub en su lugar. +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/managing-remote-repositories) so you can use your GitHub password instead. {% endwindows %} {% linux %} -Si pierdes tu contraseña de clave SSH, no hay forma de recuperarla. Tendrás que [generar un nuevo par de claves SSH comercial](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) o [cambiar a la clonación de HTTPS](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls) para poder utilizar tu contraseña de GitHub en su lugar. +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls) so you can use your GitHub password instead. {% endlinux %} 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 b5e0cae3a2..ae33f9c7f4 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 @@ -1,5 +1,5 @@ --- -title: Bajar de categoría tu suscripción de GitHub +title: Downgrading your GitHub subscription intro: 'You can downgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-your-github-subscription @@ -26,63 +26,71 @@ topics: - Organizations - Repositories - User account -shortTitle: Bajar una suscripción de categoría +shortTitle: Downgrade subscription --- +## Downgrading your {% data variables.product.product_name %} subscription -## Bajar de nivel tu suscripción de {% data variables.product.product_name %} +When you downgrade your user account or organization's subscription, pricing and account feature changes take effect on your next billing date. Changes to your paid user account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. For more information, see "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." -Cuando bajas de nivel tu suscricpión de cuenta de usuario o de organización, los precios y características cambian y toman efecto en tu siguiente fecha de facturación. Los cambios a tu suscripción de cuenta de usuario u organización no afectan aquellas suscripciones o pagos para otras características pagadas de {% data variables.product.prodname_dotcom %}. 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 user account's subscription -## Bajar de nivel tu suscripción de cuenta de usuario - -Si bajas tu cuenta de usuario de nivel desde {% data variables.product.prodname_pro %} a {% data variables.product.prodname_free_user %}, esta perderá acceso a las herramientas avanzadas de revisión de código en los repositorios privados. {% data reusables.gated-features.more-info %} +If you downgrade your user account from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, the account will lose access to advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. Debajo de "Plan actual", utiliza el menú desplegable **Editar** y haz clic en **Bajar de categoría a gratuito**. ![Botón Downgrade to free (Bajar de categoría a gratis)](/assets/images/help/billing/downgrade-to-free.png) -5. Lee la información sobre de las características a las cuales perderá acceso tu cuenta de usuario en tu siguiente fecha de facturación, y luego da clic en **Entiendo. Bajar de nivel**. ![Botón de proceder con la baja de categoría](/assets/images/help/billing/continue-with-downgrade.png) +1. Under "Current plan", use the **Edit** drop-down and click **Downgrade to Free**. + ![Downgrade to free button](/assets/images/help/billing/downgrade-to-free.png) +5. Read the information about the features your user account will no longer have access to on your next billing date, then click **I understand. Continue with downgrade**. + ![Continue with downgrade button](/assets/images/help/billing/continue-with-downgrade.png) -Si publicaste un sitio de {% data variables.product.prodname_pages %} en un repositorio privado y añadiste un dominio personalizado, retira o actualiza tus registros de DNS antes de bajarlo de nivel desde {% data variables.product.prodname_pro %} a {% data variables.product.prodname_free_user %}, para evitar el riesgo de que te ganen el dominio. Para obtener más información, consulta "[Administrar un dominio personalizado para tu sitio de {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". +If you published a {% data variables.product.prodname_pages %} site in a private repository and added a custom domain, remove or update your DNS records before downgrading from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, to avoid the risk of a domain takeover. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -## Bajar de nivel tu suscripción de orgnización +## Downgrading your organization's subscription {% data reusables.dotcom_billing.org-billing-perms %} -Si bajas tu organización de nivel desde {% data variables.product.prodname_team %} a {% data variables.product.prodname_free_team %} para organizaciones, la cuenta perderá acceso a las herramientas de administración y colaboración para equipos. +If you downgrade your organization from {% data variables.product.prodname_team %} to {% data variables.product.prodname_free_team %} for an organization, the account will lose access to advanced collaboration and management tools for teams. -Si bajas a tu organización de nivel desde {% data variables.product.prodname_ghe_cloud %} a {% data variables.product.prodname_team %} o {% data variables.product.prodname_free_team %}, la cuenta perderá acceso a los controles avanzados de seguridad, cumplimiento y despliegue. {% data reusables.gated-features.more-info %} +If you downgrade your organization from {% data variables.product.prodname_ghe_cloud %} to {% data variables.product.prodname_team %} or {% data variables.product.prodname_free_team %}, the account will lose access to advanced security, compliance, and deployment controls. {% data reusables.gated-features.more-info %} {% data reusables.organizations.billing-settings %} -1. Debajo de "Plan actual", utiliza el menú desplegable **Editar** y haz clic en la opción a la que quieras bajar. ![Botón Bajar de categoría](/assets/images/help/billing/downgrade-option-button.png) +1. Under "Current plan", use the **Edit** drop-down and click the downgrade option you want. + ![Downgrade button](/assets/images/help/billing/downgrade-option-button.png) {% data reusables.dotcom_billing.confirm_cancel_org_plan %} -## Bajar de nivel la suscripción de una organización con precios tradicionales por repositorio +## Downgrading an organization's subscription with legacy per-repository pricing {% data reusables.dotcom_billing.org-billing-perms %} -{% data reusables.dotcom_billing.switch-legacy-billing %}Para obtener más información, consulta la sección "[Cambiar a tu organización de precios por repositorio a precios por usuario](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)". +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[Switching your organization from per-repository to per-user pricing](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. Debajo de "Suscripciones", selecciona el menú desplegable de "Editar" y da clic en **Editar plan**. ![Menú desplegable de Editar Plan](/assets/images/help/billing/edit-plan-dropdown.png) -1. Debajo de "Facturación/Planes", a un costado del plan que quieras cambiar, da clic en **Bajar categoría**. ![Botón Bajar de categoría](/assets/images/help/billing/downgrade-plan-option-button.png) -1. Ingresa la razón por la cual estás degradando tu cuenta y luego haz clic en **Degradar plan**. ![Caja de texto para la razón de degradar la versión y botón de degradar](/assets/images/help/billing/downgrade-plan-button.png) +5. Under "Subscriptions", select the "Edit" drop-down, and click **Edit plan**. + ![Edit Plan dropdown](/assets/images/help/billing/edit-plan-dropdown.png) +1. Under "Billing/Plans", next to the plan you want to change, click **Downgrade**. + ![Downgrade button](/assets/images/help/billing/downgrade-plan-option-button.png) +1. Enter the reason you're downgrading your account, then click **Downgrade plan**. + ![Text box for downgrade reason and downgrade button](/assets/images/help/billing/downgrade-plan-button.png) -## Eliminar asientos pagos de tu organización +## Removing paid seats from your organization -Para reducir el número de asientos pagos que usa tu organización, puedes eliminar miembros de tu organización o convertirlos en colaboradores externos y darles acceso únicamente a los repositorios públicos. Para obtener más información, consulta: -- "[Eliminar un miembro de tu organización](/articles/removing-a-member-from-your-organization)" -- "[Convertir a un miembro de la organización en colaborador externo](/articles/converting-an-organization-member-to-an-outside-collaborator)" -- "[Administrar el acceso de un individuo al repositorio de una organización](/articles/managing-an-individual-s-access-to-an-organization-repository)" +To reduce the number of paid seats your organization uses, you can remove members from your organization or convert members to outside collaborators and give them access to only public repositories. For more information, see: +- "[Removing a member from your organization](/articles/removing-a-member-from-your-organization)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" {% data reusables.organizations.billing-settings %} -1. Debajo de "Plan actual", utiliza el menú desplegable **Edit** y haz clic en **Eliminar plazas**. ![menú desplegable para eliminar plazas](/assets/images/help/billing/remove-seats-dropdown.png) -1. En "Eliminar asientos" selecciona el número de asientos pagos de la categoría a la que deseas bajar. ![opción de eliminar plazas](/assets/images/help/billing/remove-seats-amount.png) -1. Revisa la información sobre tu nuevo pago en tu siguiente fecha de facturación, posteriormente, da clic en **Eliminar plazas**. ![botón de eliminar plazas](/assets/images/help/billing/remove-seats-button.png) +1. Under "Current plan", use the **Edit** drop-down and click **Remove seats**. + ![remove seats dropdown](/assets/images/help/billing/remove-seats-dropdown.png) +1. Under "Remove seats", select the number of seats you'd like to downgrade to. + ![remove seats option](/assets/images/help/billing/remove-seats-amount.png) +1. Review the information about your new payment on your next billing date, then click **Remove seats**. + ![remove seats button](/assets/images/help/billing/remove-seats-button.png) -## Leer más +## Further reading -- "Productos de [{% data variables.product.prodname_dotcom %}](/articles/github-s-products)" -- "[¿Cómo afecta subir o bajar de categoría al proceso de facturación?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" -- "[Acerca de la facturación en {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)". -- "[Eliminar un método de pago](/articles/removing-a-payment-method)" -- "[Acerca del precio por usuario](/articles/about-per-user-pricing)" +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +- "[Removing a payment method](/articles/removing-a-payment-method)" +- "[About per-user pricing](/articles/about-per-user-pricing)" diff --git a/translations/es-ES/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md b/translations/es-ES/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md index 688267557d..82e5a8e8b3 100644 --- a/translations/es-ES/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md +++ b/translations/es-ES/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md @@ -1,5 +1,5 @@ --- -title: Subir de categoría tu suscripción de GitHub +title: Upgrading your GitHub subscription intro: 'You can upgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-your-github-subscription @@ -28,26 +28,26 @@ topics: - Troubleshooting - Upgrades - User account -shortTitle: Mejorar tu suscripción +shortTitle: Upgrade your subscription --- +## Upgrading your personal account's subscription -## Subir de categoría la suscripción de tu cuenta personal - -Puedes mejorar tu cuenta personal desde {% data variables.product.prodname_free_user %} a {% data variables.product.prodname_pro %} para obtener herramientas avanzadas de revisión de código en repositorios privados. {% data reusables.gated-features.more-info %} +You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. Junto a "Plan actual", haz clic en **Mejorar**. ![Botón para actualizar](/assets/images/help/billing/settings_billing_user_upgrade.png) -2. Debajo de "Pro" en la página de "Comparar planes", haz clic en **Actualizar a Pro**. +1. Next to "Current plan", click **Upgrade**. + ![Upgrade button](/assets/images/help/billing/settings_billing_user_upgrade.png) +2. Under "Pro" on the "Compare plans" page, click **Upgrade to Pro**. {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.show-plan-details %} {% data reusables.dotcom_billing.enter-billing-info %} {% data reusables.dotcom_billing.enter-payment-info %} {% data reusables.dotcom_billing.finish_upgrade %} -## Subir de categoría la suscripción de tu organización +## Upgrading your organization's subscription -Puedes mejorar a tu organización desde {% data variables.product.prodname_free_team %} para organizaciones a {% data variables.product.prodname_team %} para acceder a herramientas de administración y colaboración avanzadas para equipos, o mejorarla a {% data variables.product.prodname_ghe_cloud %} para tener controles adicionales de seguridad, cumplimiento y despliegue. {% data reusables.gated-features.more-info-org-products %} +You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. {% data reusables.gated-features.more-info-org-products %} {% data reusables.dotcom_billing.org-billing-perms %} @@ -60,39 +60,41 @@ Puedes mejorar a tu organización desde {% data variables.product.prodname_free_ {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -### Próximos pasos para las organizaciones que usan {% data variables.product.prodname_ghe_cloud %} +### Next steps for organizations using {% data variables.product.prodname_ghe_cloud %} -Si mejoras a tu organización a {% data variables.product.prodname_ghe_cloud %}, puedes configurar la administración de accesos e identidad para la misma. Para obtener más información, consulta "[Administrar el inicio de sesión único de SAML para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization)". +If you upgraded your organization to {% data variables.product.prodname_ghe_cloud %}, you can set up identity and access management for your organization. For more information, see "[Managing SAML single sign-on for your organization](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -Si quisieras utilizar una cuenta empresarial con {% data variables.product.prodname_ghe_cloud %}, contacta a {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +If you'd like to use an enterprise account with {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## Agregar asientos a tu organización +## Adding seats to your organization -Si quisieras que usuarios adicionales tengan acceso a los repositorios privados de {% data variables.product.prodname_team %} en tu organización, puedes comprar más plazas en cualquier momento. +If you'd like additional users to have access to your {% data variables.product.prodname_team %} organization's private repositories, you can purchase more seats anytime. {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.add-seats %} {% data reusables.dotcom_billing.number-of-seats %} {% data reusables.dotcom_billing.confirm-add-seats %} -## Cambiar tu organización de precio por repositorio a precio por usuario +## Switching your organization from per-repository to per-user pricing -{% data reusables.dotcom_billing.switch-legacy-billing %}Para obtener más información, consulta "[Acerca de los precios por usuario](/articles/about-per-user-pricing)". +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. A la derecha de tu nombre de plan, utiliza el menú desplegable de **Editar** y selecciona **Editar plan**. ![Menú desplegable de editar](/assets/images/help/billing/per-user-upgrade-button.png) -6. A la derecha de "Herramientas avanzadas para equipos", da clic en **Mejorar ahora**. ![Botón de mejorar ahora](/assets/images/help/billing/per-user-upgrade-now-button.png) +5. To the right of your plan name, use the **Edit** drop-down menu, and select **Edit plan**. + ![Edit drop-down menu](/assets/images/help/billing/per-user-upgrade-button.png) +6. To the right of "Advanced tools for teams", click **Upgrade now**. + ![Upgrade now button](/assets/images/help/billing/per-user-upgrade-now-button.png) {% data reusables.dotcom_billing.choose_org_plan %} {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -## Solucionar problemas de un error 500 al subir de categoría +## Troubleshooting a 500 error when upgrading {% data reusables.dotcom_billing.500-error %} -## Leer más +## Further reading -- "Productos de [{% data variables.product.prodname_dotcom %}](/articles/github-s-products)" -- "[¿Cómo afecta subir o bajar de categoría al proceso de facturación?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" -- "[Acerca de la facturación en {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)". +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." diff --git a/translations/es-ES/content/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account.md b/translations/es-ES/content/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account.md index a1f498a724..8caeb64051 100644 --- a/translations/es-ES/content/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account.md +++ b/translations/es-ES/content/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account.md @@ -1,6 +1,6 @@ --- -title: Ver la suscripción y el uso de tu cuenta de empresa -intro: 'Puedes ver {% ifversion ghec %}la suscripción, {% endif %}el uso de licencia{% ifversion ghec %}, facturas, historial de pagos y otra información de facturación{% endif %} para {% ifversion ghec %}tu cuenta empresarial{% elsif ghes %}{% data variables.product.product_location_enterprise %}{% endif %}.' +title: Viewing the subscription and usage for your enterprise account +intro: 'You can view the current {% ifversion ghec %}subscription, {% endif %}license usage{% ifversion ghec %}, invoices, payment history, and other billing information{% endif %} for {% ifversion ghec %}your enterprise account{% elsif ghes %}{% data variables.product.product_location_enterprise %}{% endif %}.' product: '{% data reusables.gated-features.enterprise-accounts %}' permissions: 'Enterprise owners {% ifversion ghec %}and billing managers {% endif %}can access and manage all billing settings for enterprise accounts.' redirect_from: @@ -13,37 +13,39 @@ versions: ghes: '*' topics: - Enterprise -shortTitle: Ver la suscripción & uso +shortTitle: View subscription & usage --- -## Acerca de la facturación para las cuentas de empresa +## About billing for enterprise accounts -Puedes ver un resumen de {% ifversion ghec %}tu suscripción y uso de tu {% elsif ghes %}licencia pagada{% endif %} para {% ifversion ghec %}tu{% elsif ghes %}la{% endif %} cuenta empresarial en {% ifversion ghec %}{% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}. +You can view an overview of {% ifversion ghec %}your subscription and paid{% elsif ghes %}the license{% endif %} usage for {% ifversion ghec %}your{% elsif ghes %}the{% endif %} enterprise account on {% ifversion ghec %}{% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}. -Para los clientes de {% data variables.product.prodname_enterprise %} a quienes se factura{% ifversion ghes %} quienes usan tanto {% data variables.product.prodname_ghe_cloud %} como {% data variables.product.prodname_ghe_server %}{% endif %}, cada factura incluye detalles sobre los servicios que se cobran de todos los productos. Por ejemplo, adicionalmente a tu uso de {% ifversion ghec %}{% data variables.product.prodname_ghe_cloud %}{% elsif ghes %}{% data variables.product.product_name %}{% endif %}, puedes tener un uso de {% data variables.product.prodname_GH_advanced_security %}{% ifversion ghec %},{% elsif ghes %}. También puedes tener uso en {% data variables.product.prodname_dotcom_the_website %}, como {% endif %}licencias de pago en organizaciones fuera de tu cuenta empresarial, paquetes de datos para {% data variables.large_files.product_name_long %} o suscripciones en apps dentro de {% data variables.product.prodname_marketplace %}. For more information about invoices, see "[Managing invoices for your enterprise]({% ifversion ghes %}/enterprise-cloud@latest{% endif %}/billing/managing-billing-for-your-github-account/managing-invoices-for-your-enterprise){% ifversion ghec %}."{% elsif ghes %}" in the {% data variables.product.prodname_dotcom_the_website %} documentation.{% endif %} +For invoiced {% data variables.product.prodname_enterprise %} customers{% ifversion ghes %} who use both {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %}{% endif %}, each invoice includes details about billed services for all products. For example, in addition to your usage for {% ifversion ghec %}{% data variables.product.prodname_ghe_cloud %}{% elsif ghes %}{% data variables.product.product_name %}{% endif %}, you may have usage for {% data variables.product.prodname_GH_advanced_security %}{% ifversion ghec %}, {% elsif ghes %}. You may also have usage on {% data variables.product.prodname_dotcom_the_website %}, like {% endif %}paid licenses in organizations outside of your enterprise account, data packs for {% data variables.large_files.product_name_long %}, or subscriptions to apps in {% data variables.product.prodname_marketplace %}. For more information about invoices, see "[Managing invoices for your enterprise]({% ifversion ghes %}/enterprise-cloud@latest{% endif %}/billing/managing-billing-for-your-github-account/managing-invoices-for-your-enterprise){% ifversion ghec %}."{% elsif ghes %}" in the {% data variables.product.prodname_dotcom_the_website %} documentation.{% endif %} {% ifversion ghec %} -Adicionalmente a los propietarios de empresas, los gerentes de facturación pueden ver la suscripción y el uso de tu cuenta empresarial. Para obtener más información, consulta las secciones "[Roles en una empresa](/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise#billing-manager)" y "[Invitar a las personas para que administren tu empresa](/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)". +In addition to enterprise owners, billing managers can view the subscription and usage for your enterprise account. For more information, see "[Roles in an enterprise](/github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise#billing-manager)" and "[Inviting people to manage your enterprise](/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)." -{% data reusables.enterprise-accounts.billing-microsoft-ea-overview %} Para obtener más información, consulta la sección "[Conectar una suscripción de Azure a tu empresa](/billing/managing-billing-for-your-github-account/connecting-an-azure-subscription-to-your-enterprise)". +{% data reusables.enterprise-accounts.billing-microsoft-ea-overview %} For more information, see "[Connecting an Azure subscription to your enterprise](/billing/managing-billing-for-your-github-account/connecting-an-azure-subscription-to-your-enterprise)." {% endif %} {% ifversion ghes %} -Si quieres ver un resumen de tu uso y suscripción de {% data variables.product.prodname_enterprise %} y de cualquier servicio relacionado en {% data variables.product.prodname_dotcom_the_website %}, consulta la sección de "[Ver el uso y suscripción de tu cuenta empresarial](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)" en la documentación de {% data variables.product.prodname_ghe_cloud %}. +If you want to view an overview of your subscription and usage for {% data variables.product.prodname_enterprise %} and any related services on {% data variables.product.prodname_dotcom_the_website %}, see "[Viewing the subscription and usage for your enterprise account](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)" in the {% data variables.product.prodname_ghe_cloud %} documentation. {% endif %} -## Ver la suscripción y el uso de tu cuenta de empresa +## Viewing the subscription and usage for your enterprise account {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.license-tab %} -1. En "Licencias de Usuario", ve tus licencias totales, la cantidad de licencias consumidas y la fecha de vencimiento de tu suscripción. +1. Under "User licenses", view your total licenses, number of consumed licenses, and your subscription expiration date. {% ifversion ghec %}![License and subscription information in enterprise billing settings](/assets/images/help/business-accounts/billing-license-info.png){% else %} - ![Información de licencia y suscripción en las configuraciones de facturación de la empresa](/assets/images/enterprise/enterprise-server/enterprise-server-billing-license-info.png){% endif %} -1. Optionally, to view details for license usage or download a {% ifversion ghec %}CSV{% elsif ghes %}JSON{% endif %} file with license details{% ifversion ghec %}, to the right of "User Licenses"{% endif %}, click **View {% ifversion ghec %}details{% elsif ghes %}users{% endif %}** or {% ifversion ghec %}{% octicon "download" aria-label="The download icon" %}{% elsif ghes %}**Export license usage**{% endif %}.{% ifversion ghec %} !["View details" button and button with download icon to the right of "User Licenses"](/assets/images/help/business-accounts/billing-license-info-click-view-details-or-download.png){% endif %}{% ifversion ghec %} -1. Opcionalmente, para ver los detalles de uso de otras características, en la barra lateral izquierda, da clic en **Facturación**. ![Pestaña de facturación en la barra lateral de parámetros de la cuenta de empresa](/assets/images/help/business-accounts/settings-billing-tab.png) + ![License and subscription information in enterprise billing settings](/assets/images/enterprise/enterprise-server/enterprise-server-billing-license-info.png){% endif %} +1. Optionally, to view details for license usage or download a {% ifversion ghec %}CSV{% elsif ghes %}JSON{% endif %} file with license details{% ifversion ghec %}, to the right of "User Licenses"{% endif %}, click **View {% ifversion ghec %}details{% elsif ghes %}users{% endif %}** or {% ifversion ghec %}{% octicon "download" aria-label="The download icon" %}{% elsif ghes %}**Export license usage**{% endif %}.{% ifversion ghec %} + !["View details" button and button with download icon to the right of "User Licenses"](/assets/images/help/business-accounts/billing-license-info-click-view-details-or-download.png){% endif %}{% ifversion ghec %} +1. Optionally, to view usage details for other features, in the left sidebar, click **Billing**. + ![Billing tab in the enterprise account settings sidebar](/assets/images/help/business-accounts/settings-billing-tab.png) {% endif %} diff --git a/translations/es-ES/content/developers/apps/building-github-apps/rate-limits-for-github-apps.md b/translations/es-ES/content/developers/apps/building-github-apps/rate-limits-for-github-apps.md index a73c340777..69254e7f3d 100644 --- a/translations/es-ES/content/developers/apps/building-github-apps/rate-limits-for-github-apps.md +++ b/translations/es-ES/content/developers/apps/building-github-apps/rate-limits-for-github-apps.md @@ -1,5 +1,5 @@ --- -title: Límites de tasa para las GitHub Apps +title: Rate limits for GitHub Apps intro: '{% data reusables.shortdesc.rate_limits_github_apps %}' redirect_from: - /early-access/integrations/rate-limits/ @@ -14,16 +14,15 @@ versions: ghec: '*' topics: - GitHub Apps -shortTitle: Límites de tasa +shortTitle: Rate limits --- - -## Solicitudes de servidor a servidor +## Server-to-server requests {% ifversion ghec %} The rate limits for server-to-server requests made by {% data variables.product.prodname_github_apps %} depend on where the app is installed. If the app is installed on organizations or repositories owned by an enterprise on {% data variables.product.product_location %}, then the rate is higher than for installations outside an enterprise. -### Límites de tasa normales de servidor a servidor +### Normal server-to-server rate limits {% endif %} @@ -31,32 +30,32 @@ The rate limits for server-to-server requests made by {% data variables.product. {% ifversion ghec %} -### Límites de tasa de servidor a servidor de {% data variables.product.prodname_ghe_cloud %} +### {% data variables.product.prodname_ghe_cloud %} server-to-server rate limits {% data variables.product.prodname_github_apps %} that are installed on an organization or repository owned by an enterprise on {% data variables.product.product_location %} have a rate limit of 15,000 requests per hour for server-to-server requests. {% endif %} -## Solicitudes de usuario a servidor +## User-to-server requests -Las {% data variables.product.prodname_github_apps %} también pueden actuar [en nombre de un usuario](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-and-authorizing-users-for-github-apps) al hacer solicitudes de usuario a servidor. +{% data variables.product.prodname_github_apps %} can also act [on behalf of a user](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-and-authorizing-users-for-github-apps), making user-to-server requests. {% ifversion ghec %} The rate limits for user-to-server requests made by {% data variables.product.prodname_github_apps %} depend on where the app is installed. If the app is installed on organizations or repositories owned by an enterprise on {% data variables.product.product_location %}, then the rate is higher than for installations outside an enterprise. -### Límites de tasa normales de usuario a servidor +### Normal user-to-server rate limits {% endif %} -User-to-server requests are rate limited at {% ifversion ghae %}15,000{% else %}5,000{% endif %} requests per hour and per authenticated user. Todas las aplicaciones de OAuth que autorizó éste usuario, los tokens de acceso personal que le pertenecen, y las solicitudes que se autenticaron con su{% ifversion ghae %} token{% else %} nombre de usuario y contraseña{% endif %} comparten la misma cuota de 5,000 solicitudes por hora para dicho usuario. +User-to-server requests are rate limited at {% ifversion ghae %}15,000{% else %}5,000{% endif %} requests per hour and per authenticated user. All OAuth applications authorized by that user, personal access tokens owned by that user, and requests authenticated with that user's{% ifversion ghae %} token{% else %} username and password{% endif %} share the same quota of 5,000 requests per hour for that user. {% ifversion ghec %} -### Límites de tasa de usuario a servidor de {% data variables.product.prodname_ghe_cloud %} +### {% data variables.product.prodname_ghe_cloud %} user-to-server rate limits -When a user belongs to an enterprise on {% data variables.product.product_location %}, user-to-server requests to resources owned by the same enterprise are rate limited at 15,000 requests per hour and per authenticated user. Todas las aplicaciones de OAuth que autorice este usuario, tokens de acceso personal que le pertenezcan y solicitudes autenticadas con su nombre de usuario y contraseña compartirán la misma cuota de 5,000 solicitudes por hora para dicho usuario. +When a user belongs to an enterprise on {% data variables.product.product_location %}, user-to-server requests to resources owned by the same enterprise are rate limited at 15,000 requests per hour and per authenticated user. All OAuth applications authorized by that user, personal access tokens owned by that user, and requests authenticated with that user's username and password share the same quota of 5,000 requests per hour for that user. {% endif %} -Para obtener información más detallada acerca de los límites de tasa, consulta la sección "[Limitaciones a las tasas](/rest/overview/resources-in-the-rest-api#rate-limiting)" para la API de REST y "[Limitaciones a los recursos]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql/overview/resource-limitations)" para la API de GraphQL. +For more detailed information about rate limits, see "[Rate limiting](/rest/overview/resources-in-the-rest-api#rate-limiting)" for REST API and "[Resource limitations]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql/overview/resource-limitations)" for GraphQL API. diff --git a/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md b/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md index 01a187ee02..9b9bc6f646 100644 --- a/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md +++ b/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md @@ -1,6 +1,6 @@ --- -title: Acerca de Mercado GitHub -intro: 'Aprende más sobre {% data variables.product.prodname_marketplace %}, en donde puedes compartir tus apps y acciones públicamente con todos los usuarios de {% data variables.product.product_name %}.' +title: About GitHub Marketplace +intro: 'Learn about {% data variables.product.prodname_marketplace %} where you can share your apps and actions publicly with all {% data variables.product.product_name %} users.' redirect_from: - /apps/marketplace/getting-started/ - /marketplace/getting-started @@ -11,56 +11,55 @@ versions: topics: - Marketplace --- - -[{% data variables.product.prodname_marketplace %}](https://github.com/marketplace) te conecta a los desarrolladores que quieren extender y mejorar sus flujos de trabajo de {% data variables.product.prodname_dotcom %}. Puedes listar herramientas gratuitas y de pago para que las utilicen los desarrolladores en {% data variables.product.prodname_marketplace %}. {% data variables.product.prodname_marketplace %} ofrece dos tipos de herramientas para los desarrolladores: {% data variables.product.prodname_actions %} y Apps, y cada herramienta requiere pasos diferentes para agregarla a {% data variables.product.prodname_marketplace %}. +[{% data variables.product.prodname_marketplace %}](https://github.com/marketplace) connects you to developers who want to extend and improve their {% data variables.product.prodname_dotcom %} workflows. You can list free and paid tools for developers to use in {% data variables.product.prodname_marketplace %}. {% data variables.product.prodname_marketplace %} offers developers two types of tools: {% data variables.product.prodname_actions %} and Apps, and each tool requires different steps for adding it to {% data variables.product.prodname_marketplace %}. ## GitHub Actions {% data reusables.actions.actions-not-verified %} -Para aprender sobre cómo publicar {% data variables.product.prodname_actions %} en {% data variables.product.prodname_marketplace %}, consulta la sección "[Publicar acciones en GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)". +To learn about publishing {% data variables.product.prodname_actions %} in {% data variables.product.prodname_marketplace %}, see "[Publishing actions in GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)." -## Aplicaciones +## Apps -Cualquiera puede compartir las apps con otros usuarios gratuitamente en {% data variables.product.prodname_marketplace %}, pero solo las apps que pertenezcan a las organizaciones pueden venderse. +Anyone can share their apps with other users for free on {% data variables.product.prodname_marketplace %} but only apps owned by organizations can sell their app. -Para publicar planes de pago para tu app y mostrar una insignia de marketplace, debes completar el proceso de verificación del publicador. Para obtener más información, consulta la sección "[Solicitar la verificación del publicador para tu organización](/developers/github-marketplace/applying-for-publisher-verification-for-your-organization)" o "[Requisitos para listar una app](/developers/github-marketplace/requirements-for-listing-an-app)". +To publish paid plans for your app and display a marketplace badge, you must complete the publisher verification process. For more information, see "[Applying for publisher verification for your organization](/developers/github-marketplace/applying-for-publisher-verification-for-your-organization)" or "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app)." -Una vez que la organización cumpla con los requisitos, alguien con permisos de propietario en la organización puede publicar planes de pago para cualquiera de sus apps. Cada app con un plan de pago también llevará un proceso de incorporación financiera para habilitar los pagos. +Once the organization meets the requirements, someone with owner permissions in the organization can publish paid plans for any of their apps. Each app with a paid plan also goes through a financial onboarding process to enable payments. -Para publicar las apps con planes gratuitos, solo necesitas cumplir con los requisitos generales para listar cualquier app. Para obtener más información, consulta la sección "[Requisitos para todos los listados de GitHub Marketplace](/developers/github-marketplace/requirements-for-listing-an-app#requirements-for-all-github-marketplace-listings)". +To publish apps with free plans, you only need to meet the general requirements for listing any app. For more information, see "[Requirements for all GitHub Marketplace listings](/developers/github-marketplace/requirements-for-listing-an-app#requirements-for-all-github-marketplace-listings)." -### ¿Eres nuevo en las apps? +### New to apps? -Si te interesa crear una app para {% data variables.product.prodname_marketplace %}, pero eres nuevo en las {% data variables.product.prodname_github_apps %} o en las {% data variables.product.prodname_oauth_apps %}, consulta la sección "[Crear {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps)" o la sección "[Crear {% data variables.product.prodname_oauth_apps %}](/developers/apps/building-oauth-apps)". +If you're interested in creating an app for {% data variables.product.prodname_marketplace %}, but you're new to {% data variables.product.prodname_github_apps %} or {% data variables.product.prodname_oauth_apps %}, see "[Building {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps)" or "[Building {% data variables.product.prodname_oauth_apps %}](/developers/apps/building-oauth-apps)." ### {% data variables.product.prodname_github_apps %} vs. {% data variables.product.prodname_oauth_apps %} -{% data reusables.marketplace.github_apps_preferred %}, aunque puedes listar tanto las Apps de OAuth como las {% data variables.product.prodname_github_apps %} en {% data variables.product.prodname_marketplace %}. Para obtener más información, consulta las secciones "[Diferencias entre las {% data variables.product.prodname_github_apps %} y las {% data variables.product.prodname_oauth_apps %}](/apps/differences-between-apps/)" y "[Migrar de las {% data variables.product.prodname_oauth_apps %} a las {% data variables.product.prodname_github_apps %}](/apps/migrating-oauth-apps-to-github-apps/)". +{% data reusables.marketplace.github_apps_preferred %}, although you can list both OAuth and {% data variables.product.prodname_github_apps %} in {% data variables.product.prodname_marketplace %}. For more information, see "[Differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %}](/apps/differences-between-apps/)" and "[Migrating {% data variables.product.prodname_oauth_apps %} to {% data variables.product.prodname_github_apps %}](/apps/migrating-oauth-apps-to-github-apps/)." -## Resumen de cómo publicar una app en {% data variables.product.prodname_marketplace %} +## Publishing an app to {% data variables.product.prodname_marketplace %} overview -Cuando termines de crear tu app, puedes compartirla con otros usuarios si la publicas en {% data variables.product.prodname_marketplace %}. En resúmen, el proceso es: +When you have finished creating your app, you can share it with other users by publishing it to {% data variables.product.prodname_marketplace %}. In summary, the process is: -1. Revisa tu app cuidadosamente para garantizar que se comporte en otros repositorios como se espera y que cumpla con los lineamientos de mejores prácticas. Para obtener más información, consulta las secciones "[Mejores prácticas de seguridad para las apps](/developers/github-marketplace/security-best-practices-for-apps)" y "[Requisitos para listar una app](/developers/github-marketplace/requirements-for-listing-an-app#best-practice-for-customer-experience)". +1. Review your app carefully to ensure that it will behave as expected in other repositories and that it follows best practice guidelines. For more information, see "[Security best practices for apps](/developers/github-marketplace/security-best-practices-for-apps)" and "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app#best-practice-for-customer-experience)." -1. Agrega eventos de webhook a la app para rastrear las solicitudes de facturación de los usuarios. Para obtener más información acerca de la API de {% data variables.product.prodname_marketplace %}, los eventos de webhook y las solicitudes de facturación, consulta la sección "[Utilizar la API de {% data variables.product.prodname_marketplace %} en tu app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)". +1. Add webhook events to the app to track user billing requests. For more information about the {% data variables.product.prodname_marketplace %} API, webhook events, and billing requests, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." -1. Crea un borrador de lista de {% data variables.product.prodname_marketplace %}. Para obtener más información, consulta la sección "[Hacer un borrador de lista para tu app](/developers/github-marketplace/drafting-a-listing-for-your-app)". +1. Create a draft {% data variables.product.prodname_marketplace %} listing. For more information, see "[Drafting a listing for your app](/developers/github-marketplace/drafting-a-listing-for-your-app)." -1. Agrega un plan de precios. Para obtener más información, consulta la sección "[Configurar planes de precios para tu listado](/developers/github-marketplace/setting-pricing-plans-for-your-listing)". +1. Add a pricing plan. For more information, see "[Setting pricing plans for your listing](/developers/github-marketplace/setting-pricing-plans-for-your-listing)." -1. Read and accept the terms of the "\[{% data variables.product.prodname_marketplace %} Developer Agreement\](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement." +1. Read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement." -1. Emite tu listado para que se publique en {% data variables.product.prodname_marketplace %}. Para obtener más información, consulta la sección "[Emitir tu lista para su publicación](/developers/github-marketplace/submitting-your-listing-for-publication)". +1. Submit your listing for publication in {% data variables.product.prodname_marketplace %}. For more information, see "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication)." -## Ver el desempeño de tu app +## Seeing how your app is performing -Puedes acceder a las métricas y transacciones de tu lista. Para obtener más información, consulta: +You can access metrics and transactions for your listing. For more information, see: -- "[Visualizar las métricas de tu lista](/developers/github-marketplace/viewing-metrics-for-your-listing)" -- "[Visualizar las transacciones de tu lista](/developers/github-marketplace/viewing-transactions-for-your-listing)" +- "[Viewing metrics for your listing](/developers/github-marketplace/viewing-metrics-for-your-listing)" +- "[Viewing transactions for your listing](/developers/github-marketplace/viewing-transactions-for-your-listing)" -## Contactar a soporte +## Contacting Support -Si tienes preguntas acerca de {% data variables.product.prodname_marketplace %}, por favor contacta directamente a {% data variables.contact.contact_support %}. +If you have questions about {% data variables.product.prodname_marketplace %}, please contact {% data variables.contact.contact_support %} directly. diff --git a/translations/es-ES/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md b/translations/es-ES/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md index 2472495da0..bc383cc73c 100644 --- a/translations/es-ES/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md +++ b/translations/es-ES/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md @@ -1,6 +1,6 @@ --- -title: Asegurar tus webhooks -intro: 'Asegúrate de que tu servidor está recibiendo únicamente las solicitudes de {% data variables.product.prodname_dotcom %} esperadas por razones de seguridad.' +title: Securing your webhooks +intro: 'Ensure your server is only receiving the expected {% data variables.product.prodname_dotcom %} requests for security reasons.' redirect_from: - /webhooks/securing - /developers/webhooks-and-events/securing-your-webhooks @@ -12,42 +12,42 @@ versions: topics: - Webhooks --- - -Una vez que tu servidor se configure para recibir cargas útiles, éste escuchará a cualquiera de ellas que se envíe a la terminal que configuraste. Por razones de seguridad, probablemente quieras limitar las solicitudes a aquellas que vengan de GitHub. Hay algunas formas de solucionar esto, por ejemplo, podrías decidir el permitir las solicitudes que vengan de la dirección IP de GitHub, pero una manera mucho más fácil es configurar un token secreto y validar la información. +Once your server is configured to receive payloads, it'll listen for any payload sent to the endpoint you configured. For security reasons, you probably want to limit requests to those coming from GitHub. There are a few ways to go about this--for example, you could opt to allow requests from GitHub's IP address--but a far easier method is to set up a secret token and validate the information. {% data reusables.webhooks.webhooks-rest-api-links %} -## Configurar tu token secreto +## Setting your secret token -Necesitarás configurar tu token secreto en dos lugares: GitHub y tu servidor. +You'll need to set up your secret token in two places: GitHub and your server. -Para configurar tu token en GitHub: +To set your token on GitHub: -1. Navega al repositorio en donde configuraste tu webhook. -2. Llena la caja de texto del secreto. Utiliza una secuencia aleatoria con entropía alta (por ejemplo, tomando la salida de `ruby -rsecurerandom -e 'puts SecureRandom.hex(20)'` en la terminal). ![Campo de webhook y de token secreto](/assets/images/webhook_secret_token.png) -3. Da clic en **Actualizar Webhook**. +1. Navigate to the repository where you're setting up your webhook. +2. Fill out the Secret textbox. Use a random string with high entropy (e.g., by taking the output of `ruby -rsecurerandom -e 'puts SecureRandom.hex(20)'` at the terminal). +![Webhook secret token field](/assets/images/webhook_secret_token.png) +3. Click **Update Webhook**. -Después, configura una variable de ambiente en tu servidor, la cual almacene este token. Por lo general, esto es tan simple como el ejecutar: +Next, set up an environment variable on your server that stores this token. Typically, this is as simple as running: ```shell $ export SECRET_TOKEN=<em>your_token</em> ``` -¡**Jamás** preprogrames el token en tu app! +**Never** hardcode the token into your app! -## Validar cargas útiles de GitHub +## Validating payloads from GitHub -Cuando se configura tu token secreto, {% data variables.product.product_name %} lo utiliza para crear una firma de hash con cada carga útil. This hash signature is included with the headers of each request as `X-Hub-Signature-256`. +When your secret token is set, {% data variables.product.product_name %} uses it to create a hash signature with each payload. This hash signature is included with the headers of each request as `X-Hub-Signature-256`. {% ifversion fpt or ghes or ghec %} {% note %} -**Nota:** Para tener compatibilidad en versiones anteriores, también incluimos el encabezado `X-Hub-Signature` que se genera utilizando la función de hash SHA-1. De ser posible, te recomendamos que utilices el encabezado de `X-Hub-Signature-256` para mejorar la seguridad. El ejemplo siguiente demuestra cómo utilizar el encabezado `X-Hub-Signature-256`. +**Note:** For backward-compatibility, we also include the `X-Hub-Signature` header that is generated using the SHA-1 hash function. If possible, we recommend that you use the `X-Hub-Signature-256` header for improved security. The example below demonstrates using the `X-Hub-Signature-256` header. {% endnote %} {% endif %} -Por ejemplo, si tienes un servidor básico que escucha a los webhooks, puede configurarse de forma similar a esto: +For example, if you have a basic server that listens for webhooks, it might be configured similar to this: ``` ruby require 'sinatra' @@ -60,7 +60,7 @@ post '/payload' do end ``` -La intención es calcular un hash utilizando tu `SECRET_TOKEN`, y asegurarse de que el resultado empate con el hash de {% data variables.product.product_name %}. {% data variables.product.product_name %} utiliza un resumen hexadecimal de HMAC para calcular el hash, así que podrías reconfigurar tu servidor para que se viera así: +The intention is to calculate a hash using your `SECRET_TOKEN`, and ensure that the result matches the hash from {% data variables.product.product_name %}. {% data variables.product.product_name %} uses an HMAC hex digest to compute the hash, so you could reconfigure your server to look a little like this: ``` ruby post '/payload' do @@ -79,14 +79,14 @@ end {% note %} -**Nota:** Las cargas útiles de los webhooks pueden contener caracteres en unicode. Si tu implementación de idioma y servidor especifican un cifrado de caracteres, asegúrate de que estés manejando la carga útil como UTF-8. +**Note:** Webhook payloads can contain unicode characters. If your language and server implementation specifies a character encoding, ensure that you handle the payload as UTF-8. {% endnote %} -Tus implementaciones de lenguaje y de servidor pueden diferir de esta muestra de código. Sin embargo, hay varias cosas muy importantes que destacar: +Your language and server implementations may differ from this example code. However, there are a number of very important things to point out: * No matter which implementation you use, the hash signature starts with `sha256=`, using the key of your secret token and your payload body. -* **No se recomienda** utilizar un simple operador de `==`. Un método como el de [`secure_compare`][secure_compare] lleva a cabo una secuencia de comparación de "tiempo constante" que ayuda a mitigar algunos ataques de temporalidad en contra de las operaciones de igualdad habituales. +* Using a plain `==` operator is **not advised**. A method like [`secure_compare`][secure_compare] performs a "constant time" string comparison, which helps mitigate certain timing attacks against regular equality operators. [secure_compare]: https://rubydoc.info/github/rack/rack/master/Rack/Utils:secure_compare diff --git a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md index 5bc3b2712b..e99cae3fc8 100644 --- a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md +++ b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md @@ -1,6 +1,6 @@ --- -title: Acerca del Programa del Campus de GitHub -intro: 'el {% data variables.product.prodname_campus_program %} ofrece {% data variables.product.prodname_ghe_cloud %} y {% data variables.product.prodname_ghe_server %} gratuitos para las escuelas que quieran sacar el mayor provecho de {% data variables.product.prodname_dotcom %} para su comunidad.' +title: About GitHub Campus Program +intro: '{% data variables.product.prodname_campus_program %} offers {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} free-of-charge for schools that want to make the most of {% data variables.product.prodname_dotcom %} for their community.' redirect_from: - /education/teach-and-learn-with-github-education/about-github-education - /github/teaching-and-learning-with-github-education/about-github-education @@ -9,39 +9,38 @@ redirect_from: - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/about-github-campus-program versions: fpt: '*' -shortTitle: Programa del Campus de GitHub +shortTitle: GitHub Campus Program --- +{% data variables.product.prodname_campus_program %} is a package of premium {% data variables.product.prodname_dotcom %} access for teaching-focused institutions that grant degrees, diplomas, or certificates. {% data variables.product.prodname_campus_program %} includes: -El {% data variables.product.prodname_campus_program %} es un paquete de acceso premium a {% data variables.product.prodname_dotcom %} para instituciones enfocadas en la enseñanza que otorgan certificados, diplomas y nombramientos. El {% data variables.product.prodname_campus_program %} incluye: +- No-cost access to {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} for all of your technical and academic departments +- 50,000 {% data variables.product.prodname_actions %} minutes and 50 GB {% data variables.product.prodname_registry %} storage +- Teacher training to master Git and {% data variables.product.prodname_dotcom %} with our [Campus Advisor program](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/about-campus-advisors) +- Exclusive access to new features, GitHub Education-specific swag, and free developer tools from {% data variables.product.prodname_dotcom %} partners +- Automated access to premium {% data variables.product.prodname_education %} features, like the {% data variables.product.prodname_student_pack %} -- Acceso sin costo a {% data variables.product.prodname_ghe_cloud %} y {% data variables.product.prodname_ghe_server %} para todos tus departamentos técnicos y académicos -- 50,000 minutos de {% data variables.product.prodname_actions %} y 50 GB de almacenamiento de {% data variables.product.prodname_registry %} -- Capacitación de maestro para dominar Git y {% data variables.product.prodname_dotcom %} con nuestro [Programa de asesor del campus](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/about-campus-advisors) -- Acceso exclusivo a las características nuevas, swag específico de la Educación de GitHub y herramientas de desarrollo gratuitas de los socios de {% data variables.product.prodname_dotcom %} -- Acceso automatizado a las funciones premium de {% data variables.product.prodname_education %}, como {% data variables.product.prodname_student_pack %} +To read about how GitHub is used by educators, see [GitHub Education stories.](https://education.github.com/stories) -Para administrar la forma en la que los educadores utilizan GitHub, consulta las [Historias de los educadores de GitHub](https://education.github.com/stories). +## {% data variables.product.prodname_campus_program %} terms and conditions -## Términos y condiciones de {% data variables.product.prodname_campus_program %} +- The license is free for one year and will automatically renew for free every 2 years. You may continue on the free license so long as you continue to operate within the terms of the agreement. Any school that can agree to the [terms of the program](https://education.github.com/schools/terms) is welcome to join. -- La licencia es gratuita por un año y se renovará automáticamente de forma gratuita cada 2 años. Puedes seguir con la licencia gratuita siempre y cuando sigas operando dentro de las condiciones del acuerdo. Cualquier escuela que acepte las [condiciones del programa](https://education.github.com/schools/terms) puede unirse. +- Please note that the licenses are for use by the whole school. Internal IT departments, academic research groups, collaborators, students, and other non-academic departments are eligible to use the licenses so long as they are not making a profit from its use. Externally funded research groups that are housed at the university may not use the free licenses. -- Por favor, toma en cuenta que las licencias son para que toda la escuela las utilice. Los departamentos internos de TI, grupos de investigación académica, colaboradores, alumnos y otros departamentos no académicos son elegibiles para utilizar las licencias mientras no se estén beneificiando económicamente por utilizarlas. Los grupos de investigación financiados externamente que se hospeden en la universidad no pueden utilizar licencias gratuitas. +- You must offer {% data variables.product.prodname_dotcom %} to all of your technical and academic departments and your school’s logo will be shared on the GitHub Education website as a {% data variables.product.prodname_campus_program %} Partner. -- Debes ofrecer {% data variables.product.prodname_dotcom %} para todos tus departamentos técnicos y académicos y el logo de tu escuela se compartirá con el sitio de educación de Github como un socio del {% data variables.product.prodname_campus_program %}. - -- Las organizaciones nuevas en tu empresa se agregan automáticamente a tu cuenta empresarial. Para agregar organizaciones que existían antes de que tu escuela se uniera al {% data variables.product.prodname_campus_program %}, por favor, contacta al [Soporte de GitHub Education](https://support.github.com/contact/education). For more information about administrating your enterprise, see the [enterprise administrators documentation](/admin). Las organizaciones nuevas en tu empresa se agregan automáticamente a tu cuenta empresarial. Para agregar organizaciones que existían antes de que tu escuela se uniera al {% data variables.product.prodname_campus_program %}, por favor, contacta al Soporte de GitHub Education. +- New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact [GitHub Education Support](https://support.github.com/contact/education). For more information about administrating your enterprise, see the [enterprise administrators documentation](/admin). New organizations in your enterprise are automatically added to your enterprise account. To add organizations that existed before your school joined the {% data variables.product.prodname_campus_program %}, please contact GitHub Education Support. -Para leer más sobre las prácticas de seguridad de {% data variables.product.prodname_dotcom %}, consulta la sección "[Prácticas de privacidad globales"](/github/site-policy/global-privacy-practices) +To read more about {% data variables.product.prodname_dotcom %}'s privacy practices, see ["Global Privacy Practices"](/github/site-policy/global-privacy-practices) -## Eligibilidad de solicitud al {% data variables.product.prodname_campus_program %} +## {% data variables.product.prodname_campus_program %} Application Eligibility -- A menudo, un CTO/CIO del campus, Decano, Jefe de Departamento u Oficial de Tecnología firma las condiciones del programa en nombre del campus. +- Often times, a campus CTO/CIO, Dean, Department Chair, or Technology Officer signs the terms of the program on behalf of the campus. -- Si tu escuela no emite direcciones de correo electrónico, {% data variables.product.prodname_dotcom %} contactará a los administradores de tu cuenta con una opción alternativa para permitirte distribuir el paquete de desarrollo para alumnos a tus alumnos. +- If your school does not issue email addresses, {% data variables.product.prodname_dotcom %} will reach out to your account administrators with an alternative option to allow you to distribute the student developer pack to your students. -Para obtener más información, consulta la página [oficial {% data variables.product.prodname_campus_program %}](https://education.github.com/schools). +For more information, see the [official {% data variables.product.prodname_campus_program %}](https://education.github.com/schools) page. -Si eres un estudiante validado o académico y tu escuela no está asociada con {% data variables.product.prodname_dotcom %} como una escuela {% data variables.product.prodname_campus_program %}, aún puedes solicitar descuentos de forma individual para usar {% data variables.product.prodname_dotcom %}. Para solicitar el paquete de alumno desarrollador, [consulta el formato de solicitud](https://education.github.com/pack/join). +If you're a student or academic faculty and your school isn't partnered with {% data variables.product.prodname_dotcom %} as a {% data variables.product.prodname_campus_program %} school, then you can still individually apply for discounts to use {% data variables.product.prodname_dotcom %}. To apply for the Student Developer Pack, [see the application form](https://education.github.com/pack/join). diff --git a/translations/es-ES/content/get-started/getting-started-with-git/about-remote-repositories.md b/translations/es-ES/content/get-started/getting-started-with-git/about-remote-repositories.md index 6448f9759d..78b6642b52 100644 --- a/translations/es-ES/content/get-started/getting-started-with-git/about-remote-repositories.md +++ b/translations/es-ES/content/get-started/getting-started-with-git/about-remote-repositories.md @@ -73,7 +73,7 @@ SSH URLs provide access to a Git repository via SSH, a secure protocol. To use t When you `git clone`, `git fetch`, `git pull`, or `git push` to a remote repository using SSH URLs, you'll be prompted for a password and must provide your SSH key passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% tip %} diff --git a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md index 895f30fd9d..2f1cf8bcf2 100644 --- a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md +++ b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md @@ -13,7 +13,7 @@ shortTitle: GitHub AE trial You can set up a 90-day trial to evaluate {% data variables.product.prodname_ghe_managed %}. This process allows you to deploy a {% data variables.product.prodname_ghe_managed %} account in your existing Azure region. - **{% data variables.product.prodname_ghe_managed %} account**: The Azure resource that contains the required components, including the instance. -- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at https://portal.azure.com. This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. +- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at [https://portal.azure.com](https://portal.azure.com). This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. ## Setting up your trial of {% data variables.product.prodname_ghe_managed %} diff --git a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md index 8c44c1a59a..cfe1727e12 100644 --- a/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md +++ b/translations/es-ES/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md @@ -23,7 +23,7 @@ shortTitle: Enterprise Cloud trial You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page. -{% data reusables.saml.saml-accounts %} For more information, see "<a href="/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on" class="dotcom-only">About identity and access management with SAML single sign-on</a>." +{% data reusables.saml.saml-accounts %} For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% data reusables.products.which-product-to-use %} diff --git a/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md b/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md index 79d9e372a3..a0bd851731 100644 --- a/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md +++ b/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md @@ -1,6 +1,6 @@ --- -title: Acerca de las integraciones -intro: 'Las integraciones son herramientas y servicios que se conectan con {% data variables.product.product_name %} para complementar y extender tu flujo de trabajo.' +title: About integrations +intro: 'Integrations are tools and services that connect with {% data variables.product.product_name %} to complement and extend your workflow.' redirect_from: - /articles/about-integrations - /github/customizing-your-github-workflow/about-integrations @@ -8,35 +8,34 @@ versions: fpt: '*' ghec: '*' --- +You can install integrations in your personal account or organizations you own. You can also install {% data variables.product.prodname_github_apps %} from a third-party in a specific repository where you have admin permissions or which is owned by your organization. -Puedes instalar integraciones en tu cuenta personal o en las organizaciones que posees. También puedes instalar {% data variables.product.prodname_github_apps %} de un tercero en un repositorio específico donde tengas permisos de administrador o que sea propiedad de tu organización. - -## Diferencias entre las {% data variables.product.prodname_github_apps %} y las {% data variables.product.prodname_oauth_apps %} +## Differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} Integrations can be {% data variables.product.prodname_github_apps %}, {% data variables.product.prodname_oauth_apps %}, or anything that utilizes {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIs or webhooks. -Las {% data variables.product.prodname_github_apps %} ofrecen permisos granulares y solicitan acceso únicamente a lo que necesita la app. Las {% data variables.product.prodname_github_apps %} también ofrecen un permiso a nivel de usuario que cada uno de estos debe autorizar individualmente cuando se instala la app o cuando el integrador cambia los permisos que solicita la app. +{% data variables.product.prodname_github_apps %} offer granular permissions and request access to only what the app needs. {% data variables.product.prodname_github_apps %} also offer specific user-level permissions that each user must authorize individually when an app is installed or when the integrator changes the permissions requested by the app. -Para obtener más información, consulta: -- "[Diferencias entre las {% data variables.product.prodname_github_apps %} y las {% data variables.product.prodname_oauth_apps %}](/apps/differences-between-apps/)" -- "[Acerca de las apps](/apps/about-apps/)" -- "[Permisos a nivel de usario](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#user-level-permissions)" -- "[Autorizar las {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" -- "[Autorizar las {% data variables.product.prodname_github_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-github-apps)" -- "[Revisar tus integraciones autorizadas](/articles/reviewing-your-authorized-integrations/)" +For more information, see: +- "[Differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %}](/apps/differences-between-apps/)" +- "[About apps](/apps/about-apps/)" +- "[User-level permissions](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#user-level-permissions)" +- "[Authorizing {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" +- "[Authorizing {% data variables.product.prodname_github_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-github-apps)" +- "[Reviewing your authorized integrations](/articles/reviewing-your-authorized-integrations/)" -Puedes instalar una {% data variables.product.prodname_github_app %} preconfigurada, si los integradores o los creadores de la aplicación han creado su aplicación con el flujo de manifiesto de {% data variables.product.prodname_github_app %}. Para obtener más información sobre cómo ejecutar tu {% data variables.product.prodname_github_app %} con configuración automatizada, comunícate con el integrador o el creador de la aplicación. +You can install a preconfigured {% data variables.product.prodname_github_app %}, if the integrators or app creators have created their app with the {% data variables.product.prodname_github_app %} manifest flow. For information about how to run your {% data variables.product.prodname_github_app %} with automated configuration, contact the integrator or app creator. -Puedes crear una {% data variables.product.prodname_github_app %} con configuración simplificada si creas tu aplicación con Probot. Para obtener más información, consulta el sitio [Documentos de Probot](https://probot.github.io/docs/). +You can create a {% data variables.product.prodname_github_app %} with simplified configuration if you build your app with Probot. For more information, see the [Probot docs](https://probot.github.io/docs/) site. -## Descubrir integraciones en {% data variables.product.prodname_marketplace %} +## Discovering integrations in {% data variables.product.prodname_marketplace %} -Puedes encontrar una integración para instalar o publicar tu propia integración en {% data variables.product.prodname_marketplace %}. +You can find an integration to install or publish your own integration in {% data variables.product.prodname_marketplace %}. -[{% data variables.product.prodname_marketplace %}](https://github.com/marketplace) contiene a las {% data variables.product.prodname_github_apps %} y las {% data variables.product.prodname_oauth_apps %}. Para obtener más información sobre cómo encontrar una integración o cómo crear tu propia integración, consulta "[Acerca de {% data variables.product.prodname_marketplace %}](/articles/about-github-marketplace)". +[{% data variables.product.prodname_marketplace %}](https://github.com/marketplace) contains {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %}. For more information on finding an integration or creating your own integration, see "[About {% data variables.product.prodname_marketplace %}](/articles/about-github-marketplace)." -## Integraciones compradas directamente a los integradores +## Integrations purchased directly from integrators -También puedes comprar algunas integraciones directamente a los integradores. Como miembro de una organización, si encuentras una {% data variables.product.prodname_github_app %} que te gustaría usar, puedes solicitar que una organización apruebe o instale la aplicación para la organización. +You can also purchase some integrations directly from integrators. As an organization member, if you find a {% data variables.product.prodname_github_app %} that you'd like to use, you can request that an organization approve and install the app for the organization. -Si tienes permisos de administrador para todos los repositorios que son propiedad de una organización en la que la aplicación está instalada, puedes instalar las {% data variables.product.prodname_github_apps %} con los permisos de nivel de repositorio sin tener que solicitar al propietario de la organización que apruebe la aplicación. Cuando un integrador cambia los permisos de la aplicación, si los permisos son solo para un repositorio, los propietarios de la organización y las personas con permisos de administrador para un repositorio con esa aplicación instalada pueden revisar y aceptar los nuevos permisos. +If you have admin permissions for all organization-owned repositories the app is installed on, you can install {% data variables.product.prodname_github_apps %} with repository-level permissions without having to ask an organization owner to approve the app. When an integrator changes an app's permissions, if the permissions are for a repository only, organization owners and people with admin permissions to a repository with that app installed can review and accept the new permissions. diff --git a/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md index ceaaf6c438..621628a074 100644 --- a/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md +++ b/translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md @@ -2,7 +2,7 @@ title: GitHub extensions and integrations intro: 'Use {% data variables.product.product_name %} extensions to work seamlessly in {% data variables.product.product_name %} repositories within third-party applications.' redirect_from: - - /articles/about-github-extensions-for-third-party-applications/ + - /articles/about-github-extensions-for-third-party-applications - /articles/github-extensions-and-integrations - /github/customizing-your-github-workflow/github-extensions-and-integrations versions: diff --git a/translations/es-ES/content/github/extending-github/about-webhooks.md b/translations/es-ES/content/github/extending-github/about-webhooks.md index 427f5d57d0..3ebe391ec7 100644 --- a/translations/es-ES/content/github/extending-github/about-webhooks.md +++ b/translations/es-ES/content/github/extending-github/about-webhooks.md @@ -1,9 +1,9 @@ --- title: About webhooks redirect_from: - - /post-receive-hooks/ - - /articles/post-receive-hooks/ - - /articles/creating-webhooks/ + - /post-receive-hooks + - /articles/post-receive-hooks + - /articles/creating-webhooks - /articles/about-webhooks intro: Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. versions: diff --git a/translations/es-ES/content/github/extending-github/git-automation-with-oauth-tokens.md b/translations/es-ES/content/github/extending-github/git-automation-with-oauth-tokens.md index 281e751809..e22725a212 100644 --- a/translations/es-ES/content/github/extending-github/git-automation-with-oauth-tokens.md +++ b/translations/es-ES/content/github/extending-github/git-automation-with-oauth-tokens.md @@ -1,48 +1,48 @@ --- -title: Automatización Git con tokens de OAuth +title: Git automation with OAuth tokens redirect_from: - - /articles/git-over-https-using-oauth-token/ - - /articles/git-over-http-using-oauth-token/ + - /articles/git-over-https-using-oauth-token + - /articles/git-over-http-using-oauth-token - /articles/git-automation-with-oauth-tokens -intro: 'Puedes utilizar tokens de OAuth para interactuar con {% data variables.product.product_name %} a través de scripts automatizados.' +intro: 'You can use OAuth tokens to interact with {% data variables.product.product_name %} via automated scripts.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' -shortTitle: Automatizar con tokens de OAuth +shortTitle: Automate with OAuth tokens --- -## Paso 1: Obtener un token de OAuth +## Step 1: Get an OAuth token -Crea un token de acceso personal en tu página de configuración de la aplicación. Para obtener más información, consulta la sección "[Crear un token de acceso personal](/github/authenticating-to-github/creating-a-personal-access-token)". +Create a personal access token on your application settings page. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." {% tip %} {% ifversion fpt or ghec %} **Tips:** -- Debes verificar tu dirección de correo electrónico antes de que puedas crer un token de acceso personal. Para obtener más información, consulta "[Verificar tu dirección de correo electrónico](/articles/verifying-your-email-address)". +- You must verify your email address before you can create a personal access token. For more information, see "[Verifying your email address](/articles/verifying-your-email-address)." - {% data reusables.user_settings.review_oauth_tokens_tip %} {% else %} -**Sugerencia:** {% data reusables.user_settings.review_oauth_tokens_tip %} +**Tip:** {% data reusables.user_settings.review_oauth_tokens_tip %} {% endif %} {% endtip %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} -## Paso 2: Clonar un repositorio +## Step 2: Clone a repository {% data reusables.command_line.providing-token-as-password %} -Para evadir estos mensajes, puedes utilizar el almacenamiento de contraseñas en caché de Git. Para obtener más información, consulta la sección "[Almacenar tus credenciales de GitHub en caché dentro de Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)". +To avoid these prompts, you can use Git password caching. For information, see "[Caching your GitHub credentials in Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)." {% warning %} -**Advertencia**: Los tokens tienen acceso de escritura/lectura y deben tratarse como contraseñas. Si ingresas tu token en la URL del clon cuando clonas o agregas un remoto, Git la escribe en tu archivo _.git/config_ como texto plano, lo que representa un riesgo de seguridad. +**Warning**: Tokens have read/write access and should be treated like passwords. If you enter your token into the clone URL when cloning or adding a remote, Git writes it to your _.git/config_ file in plain text, which is a security risk. {% endwarning %} -## Leer más +## Further reading -- "[Autorizar las Apps de OAuth](/developers/apps/authorizing-oauth-apps)" +- "[Authorizing OAuth Apps](/developers/apps/authorizing-oauth-apps)" diff --git a/translations/es-ES/content/github/extending-github/index.md b/translations/es-ES/content/github/extending-github/index.md index 04363aa040..79a03ace00 100644 --- a/translations/es-ES/content/github/extending-github/index.md +++ b/translations/es-ES/content/github/extending-github/index.md @@ -1,8 +1,8 @@ --- -title: Extender GitHub +title: Extending GitHub redirect_from: - - /categories/86/articles/ - - /categories/automation/ + - /categories/86/articles + - /categories/automation - /categories/extending-github versions: fpt: '*' diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 5011d23fb9..575a38144d 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -2,7 +2,7 @@ title: Adding an existing project to GitHub using the command line intro: 'Putting your existing work on {% data variables.product.product_name %} can let you share and collaborate in lots of great ways.' redirect_from: - - /articles/add-an-existing-project-to-github/ + - /articles/add-an-existing-project-to-github - /articles/adding-an-existing-project-to-github-using-the-command-line - /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line versions: diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md index 85148087aa..f453e9e87e 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md @@ -1,6 +1,6 @@ --- -title: Importar un repositorio de Git usando la línea de comando -intro: '{% ifversion fpt %}Si [GitHub Importer](/articles/importing-a-repository-with-github-importer) no se ajusta a tus necesidades, por ejemplo, si tu código existente se hospeda en una red privada, entonces te recomendamos importar utilizando la línea de comandos.{% else %}Importar proyectos de Git utilizando la línea de comandos es adecuado cuando tu código existente se encuentra hospedado en una red privada.{% endif %}' +title: Importing a Git repository using the command line +intro: '{% ifversion fpt %}If [GitHub Importer](/articles/importing-a-repository-with-github-importer) is not suitable for your purposes, such as if your existing code is hosted on a private network, then we recommend importing using the command line.{% else %}Importing Git projects using the command line is suitable when your existing code is hosted on a private network.{% endif %}' redirect_from: - /articles/importing-a-git-repository-using-the-command-line - /github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line @@ -9,38 +9,37 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Importar un repositorio localmente +shortTitle: Import repo locally --- +Before you start, make sure you know: -Antes de comenzar, asegúrate de saber lo siguiente: - -- Tu nombre de usuario {% data variables.product.product_name %} -- La URL del clon del repositorio externo, como `https://external-host.com/user/repo.git` o `git://external-host.com/user/repo.git` (quizás con un `user@` adelante del nombre de dominio `external-host.com`) +- Your {% data variables.product.product_name %} username +- The clone URL for the external repository, such as `https://external-host.com/user/repo.git` or `git://external-host.com/user/repo.git` (perhaps with a `user@` in front of the `external-host.com` domain name) {% tip %} -A los fines de demostración, usaremos lo siguiente: +For purposes of demonstration, we'll use: -- Una cuenta externa llamada **extuser** -- Un host de Git externo llamado `https://external-host.com` -- Una cuenta de usuario personal {% data variables.product.product_name %} llamada **ghuser** +- An external account named **extuser** +- An external Git host named `https://external-host.com` +- A {% data variables.product.product_name %} personal user account named **ghuser** - A repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} named **repo.git** {% endtip %} -1. [Crear un repositorio nuevo en {% data variables.product.product_name %}](/articles/creating-a-new-repository). Importarás tu repositorio de Git externo a este repositorio nuevo. -2. En la línea de comando, haz un clon "en blanco" del repositorio usando la URL del clon externo. Esto crea una copia completa de los datos, pero sin un directorio de trabajo para editar archivos, y asegura una exportación limpia y nueva de todos los datos antiguos. +1. [Create a new repository on {% data variables.product.product_name %}](/articles/creating-a-new-repository). You'll import your external Git repository to this new repository. +2. On the command line, make a "bare" clone of the repository using the external clone URL. This creates a full copy of the data, but without a working directory for editing files, and ensures a clean, fresh export of all the old data. ```shell $ git clone --bare https://external-host.com/<em>extuser</em>/<em>repo.git</em> # Makes a bare clone of the external repository in a local directory ``` -3. Sube el repositorio clonado de forma local a {% data variables.product.product_name %} usando la opción "espejo", que asegura que todas las referencias, como ramas y etiquetas, se copien en el repositorio importado. +3. Push the locally cloned repository to {% data variables.product.product_name %} using the "mirror" option, which ensures that all references, such as branches and tags, are copied to the imported repository. ```shell $ cd <em>repo.git</em> $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>ghuser</em>/<em>repo.git</em> # Pushes the mirror to the new repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} ``` -4. Elimina el repositorio local temporal. +4. Remove the temporary local repository. ```shell $ cd .. $ rm -rf <em>repo.git</em> diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md index ca9d88092b..a559e7393b 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md @@ -1,37 +1,44 @@ --- -title: Importar un repositorio con el Importador GitHub -intro: 'Si tienes un proyecto alojado en otro sistema de control de versión, puedes importarlo automáticamente a GitHub usando la herramienta Importador GitHub.' +title: Importing a repository with GitHub Importer +intro: 'If you have a project hosted on another version control system, you can automatically import it to GitHub using the GitHub Importer tool.' redirect_from: - - /articles/importing-from-other-version-control-systems-to-github/ + - /articles/importing-from-other-version-control-systems-to-github - /articles/importing-a-repository-with-github-importer - /github/importing-your-projects-to-github/importing-a-repository-with-github-importer versions: fpt: '*' ghec: '*' -shortTitle: Utilizar el importador de GitHub +shortTitle: Use GitHub Importer --- - {% tip %} -**Sugerencia:** El Importador GitHub no útil para todas las importaciones. Por ejemplo, si tu código existente está alojado en una red privada, nuestra herramienta no podrá acceder a él. En estos casos, recomendamos [importar usando la línea de comando](/articles/importing-a-git-repository-using-the-command-line) para los repositorios de Git o una [herramienta de migración de código fuente](/articles/source-code-migration-tools) externa para los proyectos importados desde otros sistemas de control de versión. +**Tip:** GitHub Importer is not suitable for all imports. For example, if your existing code is hosted on a private network, our tool won't be able to access it. In these cases, we recommend [importing using the command line](/articles/importing-a-git-repository-using-the-command-line) for Git repositories or an external [source code migration tool](/articles/source-code-migration-tools) for projects imported from other version control systems. {% endtip %} -Si quieres hacer coincidir las confirmaciones de tu repositorio con las cuentas de usuario de GitHub de los autores durante la importación, asegúrate de que cada contribuyente de tu repositorio tenga una cuenta de GitHub antes de comenzar la importación. +If you'd like to match the commits in your repository to the authors' GitHub user accounts during the import, make sure every contributor to your repository has a GitHub account before you begin the import. {% data reusables.repositories.repo-size-limit %} -1. En la esquina superior derecha de cada página, haz clic en {% octicon "plus" aria-label="Plus symbol" %} y luego haz clic en **Import repository** (Importar repositorio). ![Opción de Importar repositorio en el menú del nuevo repositorio](/assets/images/help/importer/import-repository.png) -2. En "La URL del clon de tu repositorio antiguo", escribe la URL del proyecto que quieres importar. ![Campo de texto para la URL del repositorio importado](/assets/images/help/importer/import-url.png) -3. Elige tu cuenta de usuario o una organización como propietaria del repositorio, luego escribe un nombre para el repositorio en GitHub. ![Menú del propietario del repositorio y campo del nombre del repositorio](/assets/images/help/importer/import-repo-owner-name.png) -4. Especifica si el repositorio nuevo debe ser *público* o *privado*. Para obtener más información, consulta "[Configurar la visibilidad de un repositorio](/articles/setting-repository-visibility)". ![Botones Radio para el repositorio público o privado](/assets/images/help/importer/import-public-or-private.png) -5. Revisa la información que ingresaste, luego haz clic en **Begin import** (Comenzar importación). ![Botón Begin import (Comenzar importación)](/assets/images/help/importer/begin-import-button.png) -6. Si tus proyectos antiguos estaban protegidos con contraseña, escribe tu información de inicio de sesión para ese proyecto, luego haz clic en **Submit** (Enviar). ![Formulario de contraseña y botón Submit (Enviar) para proyecto protegido con contraseña](/assets/images/help/importer/submit-old-credentials-importer.png) -7. Si hay múltiples proyectos alojados en la URL del clon de tu proyecto antiguo, elige el proyecto que quieras importar, luego haz clic en **Submit** (Enviar). ![Lista de proyectos para importar y botón Submit (Enviar)](/assets/images/help/importer/choose-project-importer.png) -8. Si tu proyecto contiene archivos mayores a 100 MB, elige si importarás los archivos grandes usando [Git Large File Storage](/articles/versioning-large-files), luego haz clic en **Continue** (Continuar). ![Menú de Git Large File Storage y botón Continue (Continuar)](/assets/images/help/importer/select-gitlfs-importer.png) +1. In the upper-right corner of any page, click {% octicon "plus" aria-label="Plus symbol" %}, and then click **Import repository**. +![Import repository option in new repository menu](/assets/images/help/importer/import-repository.png) +2. Under "Your old repository's clone URL", type the URL of the project you want to import. +![Text field for URL of imported repository](/assets/images/help/importer/import-url.png) +3. Choose your user account or an organization to own the repository, then type a name for the repository on GitHub. +![Repository owner menu and repository name field](/assets/images/help/importer/import-repo-owner-name.png) +4. Specify whether the new repository should be *public* or *private*. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)." +![Public or private repository radio buttons](/assets/images/help/importer/import-public-or-private.png) +5. Review the information you entered, then click **Begin import**. +![Begin import button](/assets/images/help/importer/begin-import-button.png) +6. If your old project was protected by a password, type your login information for that project, then click **Submit**. +![Password form and Submit button for password-protected project](/assets/images/help/importer/submit-old-credentials-importer.png) +7. If there are multiple projects hosted at your old project's clone URL, choose the project you'd like to import, then click **Submit**. +![List of projects to import and Submit button](/assets/images/help/importer/choose-project-importer.png) +8. If your project contains files larger than 100 MB, choose whether to import the large files using [Git Large File Storage](/articles/versioning-large-files), then click **Continue**. +![Git Large File Storage menu and Continue button](/assets/images/help/importer/select-gitlfs-importer.png) -Recibirás un correo electrónico cuando se haya importado todo el repositorio. +You'll receive an email when the repository has been completely imported. -## Leer más +## Further reading -- "[Actualizar la atribución del autor de la confirmación con Importador GitHub ](/articles/updating-commit-author-attribution-with-github-importer)" +- "[Updating commit author attribution with GitHub Importer](/articles/updating-commit-author-attribution-with-github-importer)" diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md index 1e6ffeab73..b4936814c0 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md @@ -1,11 +1,11 @@ --- -title: Importar código fuente a GitHub -intro: 'Puedes importar repositorios a GitHub usando el {% ifversion fpt %}Importador GitHub, la línea de comando,{% else %}la línea de comando{% endif %} o herramientas de migración externas.' +title: Importing source code to GitHub +intro: 'You can import repositories to GitHub using {% ifversion fpt %}GitHub Importer, the command line,{% else %}the command line{% endif %} or external migration tools.' redirect_from: - - /articles/importing-an-external-git-repository/ - - /articles/importing-from-bitbucket/ - - /articles/importing-an-external-git-repo/ - - /articles/importing-your-project-to-github/ + - /articles/importing-an-external-git-repository + - /articles/importing-from-bitbucket + - /articles/importing-an-external-git-repo + - /articles/importing-your-project-to-github - /articles/importing-source-code-to-github versions: fpt: '*' @@ -19,6 +19,6 @@ children: - /importing-a-git-repository-using-the-command-line - /adding-an-existing-project-to-github-using-the-command-line - /source-code-migration-tools -shortTitle: Importar código a GitHub +shortTitle: Import code to GitHub --- diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md index f726b2060a..eaf2788967 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md @@ -1,8 +1,8 @@ --- -title: Herramientas de migración de código fuente -intro: Puedes utilizar herramientas externas para mover tus proyectos a GitHub. +title: Source code migration tools +intro: You can use external tools to move your projects to GitHub. redirect_from: - - /articles/importing-from-subversion/ + - /articles/importing-from-subversion - /articles/source-code-migration-tools - /github/importing-your-projects-to-github/source-code-migration-tools versions: @@ -10,49 +10,48 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Herramientas de migración de código +shortTitle: Code migration tools --- - {% ifversion fpt or ghec %} -Te recomendamos utilizar el [Importador de GitHub](/articles/about-github-importer) para importar proyectos de Subversion, Mercurial, Team Foundation Version Control (TFVC) u otro repositorio de Git. También puedes utilizar estas herramientas externas para convertir tus proyectos a Git. +We recommend using [GitHub Importer](/articles/about-github-importer) to import projects from Subversion, Mercurial, Team Foundation Version Control (TFVC), or another Git repository. You can also use these external tools to convert your project to Git. {% endif %} -## Importar desde Subversion +## Importing from Subversion -En un entorno normal de Subversion, se almacenan varios proyectos en un único repositorio raíz. En GitHub, cada uno de estos proyectos generalmente se mapeará a un repositorio de Git separado para una cuenta de usuario o de organización. Sugerimos importar cada parte de tu repositorio de Subversion a un repositorio de GitHub separado si: +In a typical Subversion environment, multiple projects are stored in a single root repository. On GitHub, each of these projects will usually map to a separate Git repository for a user account or organization. We suggest importing each part of your Subversion repository to a separate GitHub repository if: -* Los colaboradores necesitan revisar o confirmar esa parte del proyecto de forma separada desde las otras partes -* Deseas que distintas partes tengan sus propios permisos de acceso +* Collaborators need to check out or commit to that part of the project separately from the other parts +* You want different parts to have their own access permissions -Recomendamos estas herramientas para convertir repositorio de Subversion a Git: +We recommend these tools for converting Subversion repositories to Git: - [`git-svn`](https://git-scm.com/docs/git-svn) - [svn2git](https://github.com/nirvdrum/svn2git) -## Importar desde Mercurial +## Importing from Mercurial -Recomendamos [hg-fast-export](https://github.com/frej/fast-export) para convertir repositorios de Mercurial a Git. +We recommend [hg-fast-export](https://github.com/frej/fast-export) for converting Mercurial repositories to Git. -## Importar desde TFVC +## Importing from TFVC -Te recomendamos utilizar [git-tfs](https://github.com/git-tfs/git-tfs) para mover los cambios entre TFVC y Git. +We recommend [git-tfs](https://github.com/git-tfs/git-tfs) for moving changes between TFVC and Git. -Para obtener más información acerca de migrarse de TFVC (un sistema de control de versiones centralizado) a Git, consulta la sección "[Planea tu migración a Git](https://docs.microsoft.com/devops/develop/git/centralized-to-git)" del sitio de documentos de Microsoft. +For more information about moving from TFVC (a centralized version control system) to Git, see "[Plan your Migration to Git](https://docs.microsoft.com/devops/develop/git/centralized-to-git)" from the Microsoft docs site. {% tip %} -**Sugerencia:** después de haber convertido con éxito tu proyecto a Git, puedes [subirlo a {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). +**Tip:** After you've successfully converted your project to Git, you can [push it to {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). {% endtip %} {% ifversion fpt or ghec %} -## Leer más +## Further reading -- "[Acerca del Importador GitHub](/articles/about-github-importer)" -- "[Importar un repositorio con Importador GitHub](/articles/importing-a-repository-with-github-importer)" +- "[About GitHub Importer](/articles/about-github-importer)" +- "[Importing a repository with GitHub Importer](/articles/importing-a-repository-with-github-importer)" - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}) {% endif %} diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/index.md b/translations/es-ES/content/github/importing-your-projects-to-github/index.md index 49af91bee8..b2db417ddf 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/index.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/index.md @@ -1,10 +1,10 @@ --- -title: Importar tus proyectos a GitHub -intro: 'Puedes importar tu código fuente a {% data variables.product.product_name %} utilizando diversos métodos diferentes.' -shortTitle: Importar tus proyectos +title: Importing your projects to GitHub +intro: 'You can import your source code to {% data variables.product.product_name %} using a variety of different methods.' +shortTitle: Importing your projects redirect_from: - - /categories/67/articles/ - - /categories/importing/ + - /categories/67/articles + - /categories/importing - /categories/importing-your-projects-to-github versions: fpt: '*' diff --git a/translations/es-ES/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md b/translations/es-ES/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md index 210871bbb5..21d7ded6ac 100644 --- a/translations/es-ES/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md +++ b/translations/es-ES/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md @@ -2,7 +2,7 @@ title: What are the differences between Subversion and Git? intro: 'Subversion (SVN) repositories are similar to Git repositories, but there are several differences when it comes to the architecture of your projects.' redirect_from: - - /articles/what-are-the-differences-between-svn-and-git/ + - /articles/what-are-the-differences-between-svn-and-git - /articles/what-are-the-differences-between-subversion-and-git - /github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git versions: diff --git a/translations/es-ES/content/github/index.md b/translations/es-ES/content/github/index.md index b8c5e0a166..25aee3d946 100644 --- a/translations/es-ES/content/github/index.md +++ b/translations/es-ES/content/github/index.md @@ -1,9 +1,9 @@ --- title: GitHub redirect_from: - - /articles/ - - /common-issues-and-questions/ - - /troubleshooting-common-issues/ + - /articles + - /common-issues-and-questions + - /troubleshooting-common-issues intro: 'Documentation, guides, and help topics for software developers, designers, and project managers. Covers using Git, pull requests, issues, wikis, gists, and everything you need to make the most of GitHub for development.' versions: fpt: '*' diff --git a/translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md b/translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md index e755a01593..3bfef628dd 100644 --- a/translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md +++ b/translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md @@ -1,8 +1,8 @@ --- title: Coordinated Disclosure of Security Vulnerabilities redirect_from: - - /responsible-disclosure/ - - /coordinated-disclosure/ + - /responsible-disclosure + - /coordinated-disclosure - /articles/responsible-disclosure-of-security-vulnerabilities - /site-policy/responsible-disclosure-of-security-vulnerabilities versions: diff --git a/translations/es-ES/content/github/site-policy/dmca-takedown-policy.md b/translations/es-ES/content/github/site-policy/dmca-takedown-policy.md index 415d7cdd3e..05d313d7f4 100644 --- a/translations/es-ES/content/github/site-policy/dmca-takedown-policy.md +++ b/translations/es-ES/content/github/site-policy/dmca-takedown-policy.md @@ -1,10 +1,10 @@ --- -title: Política de retiro de DMCA +title: DMCA Takedown Policy redirect_from: - - /dmca/ - - /dmca-takedown/ - - /dmca-takedown-policy/ - - /articles/dmca-takedown/ + - /dmca + - /dmca-takedown + - /dmca-takedown-policy + - /articles/dmca-takedown - /articles/dmca-takedown-policy versions: fpt: '*' @@ -13,111 +13,111 @@ topics: - Legal --- -Bienvenido a la Guía sobre la Ley de Derechos de Autor del Milenio Digital de GitHub, comúnmente conocida como la "DMCA". Esta página no está pensada como un manual extenso del estatuto. Sin embargo, si has recibido un aviso de retiro de la DMCA orientado al contenido que has publicado en GitHub o si eres un titular de derechos que busca proponer dicho aviso, esperamos que esta página ayude a desmitificar la ley un poco, así como nuestras políticas para cumplirla. +Welcome to GitHub's Guide to the Digital Millennium Copyright Act, commonly known as the "DMCA." This page is not meant as a comprehensive primer to the statute. However, if you've received a DMCA takedown notice targeting content you've posted on GitHub or if you're a rights-holder looking to issue such a notice, this page will hopefully help to demystify the law a bit as well as our policies for complying with it. -(si solo quieres emitir un aviso, puedes saltarte a "[G. Emitir Avisos](#g-submitting-notices)".) +(If you just want to submit a notice, you can skip to "[G. Submitting Notices](#g-submitting-notices).") -Como en todas las cuestiones jurídicas, siempre es mejor consultar con un profesional sobre tus preguntas o situación específicas. Te recomendamos enfáticamente que lo hagas antes de emprender cualquier acción que pueda afectar tus derechos. Esta guía no es asesoramiento legal y no debería ser tomada como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## ¿Qué es la DMCA? +## What Is the DMCA? -Para entender la DMCA y algunas de las orientaciones de la política, tal vez sea útil considerar la duración antes de que se promulgara. +In order to understand the DMCA and some of the policy lines it draws, it's perhaps helpful to consider life before it was enacted. -La DMCA proporciona un puerto seguro para los proveedores de servicios que albergan contenido generado por los usuarios. Dado que incluso una sola reclamación de infracción de derechos de autor puede conllevar daños estatutarios por hasta $150,000, la posibilidad de responsabilizarse de los contenidos generados por los usuarios podría ser muy perjudicial para los proveedores de servicios. Con daños potenciales multiplicados a través de millones de usuarios, la computación en la nube y los sitios de contenido generados por usuarios como YouTube, Facebook, o GitHub probablemente [nunca habrían existido](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) sin la DMCA (o al menos sin pasar parte de ese costo a sus usuarios). +The DMCA provides a safe harbor for service providers that host user-generated content. Since even a single claim of copyright infringement can carry statutory damages of up to $150,000, the possibility of being held liable for user-generated content could be very harmful for service providers. With potential damages multiplied across millions of users, cloud-computing and user-generated content sites like YouTube, Facebook, or GitHub probably [never would have existed](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) without the DMCA (or at least not without passing some of that cost downstream to their users). -La DMCA aborda este problema mediante la creación de un [puerto seguro de responsabilidad de derechos de autor](https://www.copyright.gov/title17/92chap5.html#512) para los proveedores de servicios de Internet que presuntamente infrinjan el contenido generado por los usuarios. Esencialmente, mientras un proveedor de servicios siga las reglas de notificación y retiro de la DMCA, no será responsable de la infracción de derechos de autor con base en el contenido generado por los usuarios. Debido a esto, es importante que GitHub mantenga su estado de puerto seguro de la DMCA. +The DMCA addresses this issue by creating a [copyright liability safe harbor](https://www.copyright.gov/title17/92chap5.html#512) for internet service providers hosting allegedly infringing user-generated content. Essentially, so long as a service provider follows the DMCA's notice-and-takedown rules, it won't be liable for copyright infringement based on user-generated content. Because of this, it is important for GitHub to maintain its DMCA safe-harbor status. -La DMCA también prohibe la [circunvención de medidas técnicas](https://www.copyright.gov/title17/92chap12.html) que controlan efectivamente los accesos a los trabajos protegidos por derechos de autor. +The DMCA also prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. -## Avisos de la DMCA en Nutshell +## DMCA Notices In a Nutshell -La DMCA proporciona dos procedimientos claros y sencillos sobre los que todos los usuarios de GitHub deberían tener conocimiento: (i) un procedimiento [de notificación de retiro](/articles/guide-to-submitting-a-dmca-takedown-notice) para que los titulares de los derechos de autor soliciten que se elimine el contenido; y (ii) una [contra notificación](/articles/guide-to-submitting-a-dmca-counter-notice) para que se reactive el contenido, cuando se elimina por error o identificación incorrecta. +The DMCA provides two simple, straightforward procedures that all GitHub users should know about: (i) a [takedown-notice](/articles/guide-to-submitting-a-dmca-takedown-notice) procedure for copyright holders to request that content be removed; and (ii) a [counter-notice](/articles/guide-to-submitting-a-dmca-counter-notice) procedure for users to get content re-enabled when content is taken down by mistake or misidentification. -Los propietarios de derechos de autor utilizan [notificaciones de retiro de la DMCA](/articles/guide-to-submitting-a-dmca-takedown-notice) para solicitar a GitHub que retire el contenido que consideran infractor. Si eres diseñador de software o desarrollador, creas contenido con derechos de autor todos los días. Si alguien más está utilizando tu contenido con derechos de autor sin autorización dentro de GitHub, puedes enviarnos una notificación de retiro de la DMCA para solicitar que se cambie o elimine el contenido que comete dicha violación. +DMCA [takedown notices](/articles/guide-to-submitting-a-dmca-takedown-notice) are used by copyright owners to ask GitHub to take down content they believe to be infringing. If you are a software designer or developer, you create copyrighted content every day. If someone else is using your copyrighted content in an unauthorized manner on GitHub, you can send us a DMCA takedown notice to request that the infringing content be changed or removed. -Por otro lado, se pueden utilizar [contra notificaciones](/articles/guide-to-submitting-a-dmca-counter-notice) para corregir errores. Quizá la persona que envía la notificación de retiro no tiene los derechos de autor o no se percató que tienes una licencia o cometió algún otro error en su notificación de retiro. Ya que GitHub normalmente no puede saber si ha ocurrido un error, la contra notificación de la DMCA te permite hacernos saber y solicitar que le volvamos a poner el contenido nuevamente. +On the other hand, [counter notices](/articles/guide-to-submitting-a-dmca-counter-notice) can be used to correct mistakes. Maybe the person sending the takedown notice does not hold the copyright or did not realize that you have a license or made some other mistake in their takedown notice. Since GitHub usually cannot know if there has been a mistake, the DMCA counter notice allows you to let us know and ask that we put the content back up. -El proceso de eliminación notificación y retiro de la DMCA debe utilizarse únicamente para reclamaciones sobre violaciones de derechos de autor. Las notificaciones enviadas a través de nuestro proceso DMCA deben identificar obras o trabajos protegidos por derechos de autor que supuestamente están siendo infringidos. El proceso no puede utilizarse para otras reclamaciones, tales como quejas sobre presuntas [infracciones de marcas](/articles/github-trademark-policy/) o [datos sensibles](/articles/github-sensitive-data-removal-policy/); ofrecemos procesos separados para esas situaciones. +The DMCA notice and takedown process should be used only for complaints about copyright infringement. Notices sent through our DMCA process must identify copyrighted work or works that are allegedly being infringed. The process cannot be used for other complaints, such as complaints about alleged [trademark infringement](/articles/github-trademark-policy/) or [sensitive data](/articles/github-sensitive-data-removal-policy/); we offer separate processes for those situations. -## A. ¿Cómo funciona realmente? +## A. How Does This Actually Work? -El marco de la DMCA es un poco como pasar notas en clase. El propietario de los derechos de autor entrega a GitHub una reclamación sobre un usuario. Si está redactado correctamente, pasamos la queja al usuario. Si el usuario cuestiona la reclamación, puede regresar una nota afirmando. GitHub ejerce poca discreción en el proceso aparte de determinar si los avisos cumplen con los requisitos mínimos de la DMCA. Corresponde a las partes (y a sus abogados) evaluar el mérito de sus reclamaciones, teniendo en cuenta que los avisos deben realizarse bajo pena de perjurio. +The DMCA framework is a bit like passing notes in class. The copyright owner hands GitHub a complaint about a user. If it's written correctly, we pass the complaint along to the user. If the user disputes the complaint, they can pass a note back saying so. GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -Aquí están los pasos básicos en el proceso. +Here are the basic steps in the process. -1. **El Propietario de Derechos de Autor investiga.** Un propietario de los derechos de autor siempre debe realizar una investigación inicial para confirmar (a) que son propietarios de los derechos de autor de una obra original y (b) que el contenido de GitHub no está autorizado y es infractor. Esto incluye confirmar que el uso no está protegido como [uso razonable](https://www.lumendatabase.org/topics/22). Un uso particular puede ser justo si solamente utiliza una pequeña cantidad de contenido protegido por derechos de autor, utiliza ese contenido de forma transformativa, lo utiliza para fines educativos, o alguna combinación de lo anterior. Dado que el código naturalmente se presta a dichos usos, cada caso de uso es diferente y debe considerarse por separado. -> **Ejemplo:** Un empleado de Acme Web Company encuentra parte del código de la empresa en un repositorio de GitHub. Acme Web Company otorga licencias de su código fuente a diversos socios de confianza. Antes de enviar una notificación de retiro, Acme debe revisar dichas licencias y sus acuerdos para confirmar que el código en GitHub no esté autorizado bajo ninguna de ellas. +1. **Copyright Owner Investigates.** A copyright owner should always conduct an initial investigation to confirm both (a) that they own the copyright to an original work and (b) that the content on GitHub is unauthorized and infringing. This includes confirming that the use is not protected as [fair use](https://www.lumendatabase.org/topics/22). A particular use may be fair if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +> **Example:** An employee of Acme Web Company finds some of the company's code in a GitHub repository. Acme Web Company licenses its source code out to several trusted partners. Before sending in a take-down notice, Acme should review those licenses and its agreements to confirm that the code on GitHub is not authorized under any of them. -2. **El propietario de los derechos de autor envía una notificación.** Después de realizar una investigación, un propietario de los derechos de autor prepara y envía una [notificación de retiro](/articles/guide-to-submitting-a-dmca-takedown-notice) a GitHub. Suponiendo que la notificación de retiro esté suficientemente detallada de acuerdo con los requisitos legales (como se explica en la [guía práctica](/articles/guide-to-submitting-a-dmca-takedown-notice)), [publicaremos la notificación](#d-transparency) en nuestro [repositorio público](https://github.com/github/dmca) y pasaremos el enlace al usuario afectado. +2. **Copyright Owner Sends A Notice.** After conducting an investigation, a copyright owner prepares and sends a [takedown notice](/articles/guide-to-submitting-a-dmca-takedown-notice) to GitHub. Assuming the takedown notice is sufficiently detailed according to the statutory requirements (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-takedown-notice)), we will [post the notice](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the link along to the affected user. -3. **GitHub solicita a sus usuarios hacer cambios.** Si la notificación declara que todo el contenido de un repositorio o un paquete están cometiendo una violación, saltaremos al Paso 6 e inhabilitaremos todo el repositorio o paquete expeditamente. De lo contrario, debido a que GitHub no puede inhabilitar el acceso a archivos específicos dentro de un repositorio, nos contactaremos con el usuario que creó el repositorio y les daremos aproximadamente 1 día hábil para eliminar o modificar el contenido especificado en el aviso. Notificaremos al propietario de los derechos de autor si y cuando demos al usuario la oportunidad de hacer cambios. Ya que los paquetes son inmutables, si solo una parte de un paquete incurre en una violación, GitHub necesitará inhabilitar todo el paquete, pero permitiremos su restablecimiento una vez que se elimine la parte que comete la violación. +3. **GitHub Asks User to Make Changes.** If the notice alleges that the entire contents of a repository infringe, or a package infringes, we will skip to Step 6 and disable the entire repository or package expeditiously. Otherwise, because GitHub cannot disable access to specific files within a repository, we will contact the user who created the repository and give them approximately 1 business day to delete or modify the content specified in the notice. We'll notify the copyright owner if and when we give the user a chance to make changes. Because packages are immutable, if only part of a package is infringing, GitHub would need to disable the entire package, but we permit reinstatement once the infringing portion is removed. -4. **El usuario notifica a GitHub acerca de los cambios.** Si el usuario opta por realizar los cambios especificados, *Debe* avísanos dentro de la ventana de aproximadamente 1 día hábil. Si no lo hacen, deshabilitaremos el repositorio (como se describe en el paso 6). Si el usuario nos notifica que realizó cambios, verificaremos que los cambios se hayan realizado y posteriormente notificaremos al propietario de los derechos de autor. +4. **User Notifies GitHub of Changes.** If the user chooses to make the specified changes, they *must* tell us so within the window of approximately 1 business day. If they don't, we will disable the repository (as described in Step 6). If the user notifies us that they made changes, we will verify that the changes have been made and then notify the copyright owner. -5. **El titular de los derechos de autor revisa o retrae la notificación.** Si el usuario realiza cambios, el propietario de los derechos de autor debe revisarlos y renovar o revisar su aviso de eliminación si los cambios son insuficientes. GitHub no tomará ninguna acción adicional a menos que el propietario de los derechos de autor se ponga en contacto con nosotros para renovar la notificación de retiro original o presentar uno revisado. Si el propietario de los derechos de autor está satisfecho con los cambios, puede presentar una retracción formal o no hacer nada. GitHub interpretará el silencio durante más de dos semanas como una retracción implícita del aviso de retiro. +5. **Copyright Owner Revises or Retracts the Notice.** If the user makes changes, the copyright owner must review them and renew or revise their takedown notice if the changes are insufficient. GitHub will not take any further action unless the copyright owner contacts us to either renew the original takedown notice or submit a revised one. If the copyright owner is satisfied with the changes, they may either submit a formal retraction or else do nothing. GitHub will interpret silence longer than two weeks as an implied retraction of the takedown notice. -6. **GitHub puede inhabilitar el acceso al contenido.** GitHub inhabilitará el contenido de un usuario si: (i) el propietario de los derechos de autor reclama dichos derechos sobre un paquete o todo el repositorio del usuario (como se explica en el Paso 3); (ii) el usuario no ha realizado cambios después de habérsele proporcionado una oportunidad para hacerlo (de acuerdo con el Paso 4); o (iii) el propietario de los derechos de autor renovó su notificación de retiro después de que el usuario tuvo una oportunidad de realizar los cambios. Si el propietario de los derechos de autor elige *revisar* la notificación, volveremos al paso 2 y repetiremos el proceso como si la notificación revisada fuera un nuevo aviso. +6. **GitHub May Disable Access to the Content.** GitHub will disable a user's content if: (i) the copyright owner has alleged copyright over the user's entire repository or package (as noted in Step 3); (ii) the user has not made any changes after being given an opportunity to do so (as noted in Step 4); or (iii) the copyright owner has renewed their takedown notice after the user had a chance to make changes. If the copyright owner chooses instead to *revise* the notice, we will go back to Step 2 and repeat the process as if the revised notice were a new notice. -7. **El usuario puede enviar una contra notificación.** Alentamos a los usuarios que han deshabilitado contenido a consultar con un abogado sobre sus opciones. Si un usuario considera que su contenido fue deshabilitado como resultado de un error o identificación incorrecta, pueden enviarnos una [contra notificación](/articles/guide-to-submitting-a-dmca-counter-notice). Como en la notificación original, nos aseguraremos de que la contra notificación esté lo suficientemente detallada (como se explica en la [guía práctica](/articles/guide-to-submitting-a-dmca-counter-notice)). Si es así, [lo publicaremos](#d-transparency) en nuestro [repositorio público](https://github.com/github/dmca) y pasaremos el aviso al propietario de los derechos de autor enviándole el enlace. +7. **User May Send A Counter Notice.** We encourage users who have had content disabled to consult with a lawyer about their options. If a user believes that their content was disabled as a result of a mistake or misidentification, they may send us a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). As with the original notice, we will make sure that the counter notice is sufficiently detailed (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-counter-notice)). If it is, we will [post it](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the notice back to the copyright owner by sending them the link. -8. **El propietario de los derechos de autor puede presentar una acción legal.** Si un propietario de derechos de autor desea mantener el contenido deshabilitado después de recibir una contra notificación, tendrán que iniciar una acción legal que busque una orden judicial para impedir que el usuario se implique en actividades relacionadas con el contenido de GitHub. En otras palabras, podrías ser demandado. Si el propietario de los derechos de autor no da aviso a GitHub en un plazo de 10-14 días, enviando una copia de una queja legal válida presentada en un tribunal de jurisdicción competente, GitHub rehabilitará el contenido inhabilitado. +8. **Copyright Owner May File a Legal Action.** If a copyright owner wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain the user from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued. If the copyright owner does not give GitHub notice within 10-14 days, by sending a copy of a valid legal complaint filed in a court of competent jurisdiction, GitHub will re-enable the disabled content. -## B. ¿Qué hay de las bifurcaciones? (o ¿Qué es una bifurcación?) +## B. What About Forks? (or What's a Fork?) -Una de las mejores características de GitHub es la capacidad de los usuarios de "bifurcar" los repositorios de otros. ¿Qué significa esto? En esencia, significa que los usuarios pueden hacer una copia de un proyecto en GitHub en sus propios repositorios. Como la licencia o la ley permite, los usuarios pueden hacer cambios en esa bifurcación para volver al proyecto principal o simplemente mantener como su propia variación de un proyecto. Cada una de estas copias es una "[bifurcación](/articles/github-glossary#fork)" del repositorio original, que a su vez también se puede llamar la "matriz" de la bifurcación. +One of the best features of GitHub is the ability for users to "fork" one another's repositories. What does that mean? In essence, it means that users can make a copy of a project on GitHub into their own repositories. As the license or the law allows, users can then make changes to that fork to either push back to the main project or just keep as their own variation of a project. Each of these copies is a "[fork](/articles/github-glossary#fork)" of the original repository, which in turn may also be called the "parent" of the fork. -GitHub *no deshabilitará automáticamente* las bifurcaciones cuando se deshabilite un repositorio matriz. Esto se debe a que las bifurcaciones pertenecen a diferentes usuarios, pueden haber sido alteradas de manera significativa y pueden ser licenciadas o utilizada de una manera diferente que estén protegidas por la doctrina de uso leal. GitHub no lleva a cabo ninguna investigación independiente sobre las bifucaciones. Esperamos que los propietarios de los derechos de autor lleven a cabo esa investigación y, si creen que las bifurcaciones también están infringiendo, incluyan expresamente bifurcaciones en su notificación de retiro. +GitHub *will not* automatically disable forks when disabling a parent repository. This is because forks belong to different users, may have been altered in significant ways, and may be licensed or used in a different way that is protected by the fair-use doctrine. GitHub does not conduct any independent investigation into forks. We expect copyright owners to conduct that investigation and, if they believe that the forks are also infringing, expressly include forks in their takedown notice. -En pocas ocasiones, puede que alegues que se violaron los derechos de autor en todo un repositorio que se está bifurcando. Si en al momento de enviar tu notificación identificaste todas las bifurcaciones existentes de dicho repositorio como supuestas violaciones, procesaremos un reclamo válido contra todas las bifurcaciones en esa red al momento de procesar la notificación. Haremos esto dada la probabilidad de que todas las bifurcaciones recién creadas contengan lo mismo. Adicionalmente, si la red que se reporta como albergadora del contenido de la supuesta violación es mayor a cien (100) repositorios y, por lo tanto, es difícil de revisar integralmente, podríamos considerar inhabilitar toda la red si declaras en tu notificación que, "Con base en la cantidad representativa de bifurcaciones que revisaste, crees que todas o la mayoría de las bifurcaciones constituyen una violación en la misma medida que el repositorio padre". Tu declaración jurada aplicará a la presente. +In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks I have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -## C. ¿Qué pasa con los reclamos por circunvención? +## C. What about Circumvention Claims? -La DMCA prohibe la [circunvención de medidas técnicas](https://www.copyright.gov/title17/92chap12.html) que controlan efectivamente los accesos a los trabajos protegidos por derechos de autor. Ya que estos tipos de reclamo a menudo son altamente técnicos por su naturaleza, GitHub requiere que los reclamantes proporcionen la [información detallada sobre las mismas](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology) y así llevaremos a cabo una revisión más extensa. +The DMCA prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. Given that these types of claims are often highly technical in nature, GitHub requires claimants to provide [detailed information about these claims](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology), and we undertake a more extensive review. -Un reclamo de evasión debe incluir los siguientes detalles sobre las medidas técnicas puestas en marcha y sobre la forma en la que el proyecto acusado las evade. Específicamente, la notificación a GitHub debe incluir las declaraciones que describan: -1. Cuáles son las medidas técnicas; -2. Cómo controlan el acceso al material con derechos de autor de forma efectiva; y -3. Cómo se diseñó el proyecto actusado para evadir las medidas de protección tecnológica que se describen con anterioridad. +A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -GitHub revisará cuidadosamente los reclamos de evasión, incluyendo a manos de expertos tanto técnicos como legales. En la revisión técnica, buscaremos validar los detalles sobre la forma en la que operan las medidas de protección técnica y la forma en la que se supone que el proyecto las evade. En la revisión legal, buscaremos asegurarnos de que estos reclamos no se extiendan más allá de los límites de la DMCA. En los casos en donde no podemos determinar si algún reclamo es válido, fallaremos a favor del lado del desarrollador y dejaremos el contenido en producción. Si el reclamante desea dar sguimiento con detalles adicionales, iniciaríamos el proceso de revisión nuevamente para evaluar los reclamos revisados. +GitHub will review circumvention claims closely, including by both technical and legal experts. In the technical review, we will seek to validate the details about the manner in which the technical protection measures operate and the way the project allegedly circumvents them. In the legal review, we will seek to ensure that the claims do not extend beyond the boundaries of the DMCA. In cases where we are unable to determine whether a claim is valid, we will err on the side of the developer, and leave the content up. If the claimant wishes to follow up with additional detail, we would start the review process again to evaluate the revised claims. -Siempre que nuestros expertos determinen que un reclamo es completo, legal y técnicamente legítimo, contactaremos al propietrio del repositorio y le daremos oportunidad de responder al reclamo o de hacer cambios al repositorio para evitar una eliminación. Si no responden, intentaremos contactar al propietario del repositorio antes de tomar cualquier acción subsecuente. En otras palabras, no inhabilitaremos un repositorio debido a un reclamo de tecnología de evasión sin antes intentar contactar a algún propietario del repositorio para darles una oportunidad de responder o hacer cambios. Si no pudimos resolver el problema contactando al propietario del repositorio primero, siempre estaremos en la mejor disposición de considerar una respuesta del mismo, incluso después de haber inhabilitado el contenido en caso de que haya una oportunidad de disputar el reclamo, presentarnos evidencia adicional, o hacer cambios para que se restablezca el contenido. Cuando necesitamos inhabilitar el contenido, nos aseguramos que los propietarios del repositorio puedan exportar sus propuestas y solicitudes de cambios y otros datos de sus repositorios que no contengan el código de evasión hasta donde sea legalmente posible. +Where our experts determine that a claim is complete, legal, and technically legitimate, we will contact the repository owner and give them a chance to respond to the claim or make changes to the repo to avoid a takedown. If they do not respond, we will attempt to contact the repository owner again before taking any further steps. In other words, we will not disable a repository based on a claim of circumvention technology without attempting to contact a repository owner to give them a chance to respond or make changes first. If we are unable to resolve the issue by reaching out to the repository owner first, we will always be happy to consider a response from the repository owner even after the content has been disabled if they would like an opportunity to dispute the claim, present us with additional facts, or make changes to have the content restored. When we need to disable content, we will ensure that repository owners can export their issues and pull requests and other repository data that do not contain the alleged circumvention code to the extent legally possible. -Por favor, toma en cuenta que nuestro proceso de revisión para la tecnología de evasión no aplica al contenido que violaría de cualquier otra forma a nuestras restricciones de a la Política de Uso Aceptable contra el compartir claves de licencia de producto no autorizadas, software para generar llaves de licencia de producto no autorizado o software para eludir las verificaciones de las llaves de licencia de producto. Aunque estos tipos de reclamo también violan las provisiones de la DMCA sobre la tecnología de evasión, son habitualmente claros y no implican una revisión técnica o legal adicional. Sin embargo, en cualquier caso donde el reclamo no sea claro, por ejemplo, en el caso de liberación de dispositivos, sí aplicaría el proceso de revision de reclamo por tecnologías de evasión. +Please note, our review process for circumvention technology does not apply to content that would otherwise violate our Acceptable Use Policy restrictions against sharing unauthorized product licensing keys, software for generating unauthorized product licensing keys, or software for bypassing checks for product licensing keys. Although these types of claims may also violate the DMCA provisions on circumvention technology, these are typically straightforward and do not warrant additional technical and legal review. Nonetheless, where a claim is not straightforward, for example in the case of jailbreaks, the circumvention technology claim review process would apply. -Cuando GitHub procesa un derribamiento de DMCA bajo nuestro proceso de revisión de reclamos por tecnología de evasión, ofreceremos al propietario del repositorio una referencia para recibir apoyo legal independiente mediante el [Fondo de Defensa para Desarrolladores de GitHub](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) sin costo alguno. +When GitHub processes a DMCA takedown under our circumvention technology claim review process, we will offer the repository owner a referral to receive independent legal consultation through [GitHub’s Developer Defense Fund](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) at no cost to them. -## D. ¿Qué pasa si perdí inadvertidamente el período para hacer cambios? +## D. What If I Inadvertently Missed the Window to Make Changes? -Reconocemos que existen muchas razones válidas para que no puedas hacer cambios dentro de la ventana de aproximadamente 1 día laborable que proporcionamos antes de que tu repositorio se inhabilite. Quizá nuestro mensaje fue marcado como spam, tal vez estabas de vacaciones, tal vez no revisas esa cuenta de correo electrónico regularmente, o probablemente solo estabas ocupado. Lo entendemos. Si respondes para hacernos saber que te hubiera gustado hacer los cambios, pero de alguna manera faltaste a la primera oportunidad, rehabilitaremos el repositorio un tiempo adicional durante aproximadamente 1 día hábil para permitir que realices los cambios. Nuevamente, debes notificarnos que has realizado los cambios con el fin de mantener el repositorio habilitado después de esa ventana de aproximadamente 1 día hávil, como se mencionó anteriormente en el [Paso A. 4](#a-how-does-this-actually-work). Ten en cuenta que sólo te daremos una oportunidad adicional. +We recognize that there are many valid reasons that you may not be able to make changes within the window of approximately 1 business day we provide before your repository gets disabled. Maybe our message got flagged as spam, maybe you were on vacation, maybe you don't check that email account regularly, or maybe you were just busy. We get it. If you respond to let us know that you would have liked to make the changes, but somehow missed the first opportunity, we will re-enable the repository one additional time for approximately 1 business day to allow you to make the changes. Again, you must notify us that you have made the changes in order to keep the repository enabled after that window of approximately 1 business day, as noted above in [Step A.4](#a-how-does-this-actually-work). Please note that we will only provide this one additional chance. -## E. Transparencia +## E. Transparency -Creemos que la transparencia es una virtud. El público debería saber qué contenido se está eliminando de GitHub y por qué. Un público informado puede notar y descubrir posibles problemas superficiales que de otro modo pasarían desapercibidos en un sistema poco claro. Publicamos copias redactadas de cualquier aviso legal que recibamos (incluyendo notificaciones originales, contra notificaciones o retracciones) en <https://github.com/github/dmca>. No haremos pública tu información de contacto personal; eliminaremos la información personal (excepto los nombres de usuario en las URLs) antes de publicar notificaciones. Sin embargo, no redactaremos ninguna otra información de tu notificación a menos que nos lo solicites específicamente. Estos son algunos ejemplos de una [notificación ](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) publicada y [una contra notificación](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) para que veas cómo son. Cuando eliminemos el contenido, publicaremos un enlace al aviso relacionado en su lugar. +We believe that transparency is a virtue. The public should know what content is being removed from GitHub and why. An informed public can notice and surface potential issues that would otherwise go unnoticed in an opaque system. We post redacted copies of any legal notices we receive (including original notices, counter notices or retractions) at <https://github.com/github/dmca>. We will not publicly publish your personal contact information; we will remove personal information (except for usernames in URLs) before publishing notices. We will not, however, redact any other information from your notice unless you specifically ask us to. Here are some examples of a published [notice](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) and [counter notice](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) for you to see what they look like. When we remove content, we will post a link to the related notice in its place. -Ten también en cuenta que, aunque no publicaremos avisos no modificados, podemos proporcionar una copia completa y no editada de cualquier notificación que recibamos directamente a cualquier parte cuyos derechos se verían afectados por ella. +Please also note that, although we will not publicly publish unredacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. -## F. Retición de una infracción +## F. Repeated Infringement -Es la política de GitHub, en circunstancias apropiadas y a su entera discreción, desactivar y terminar las cuentas de los usuarios que puedan infringir los derechos de autor u otros derechos de propiedad intelectual de GitHub u otros. +It is the policy of GitHub, in appropriate circumstances and in its sole discretion, to disable and terminate the accounts of users who may infringe upon the copyrights or other intellectual property rights of GitHub or others. -## G. Cómo enviar notificaciones +## G. Submitting Notices -Si estás listo para enviar una notificación o una contra notificación: -- [Cómo enviar una notificación de la DMCA](/articles/guide-to-submitting-a-dmca-takedown-notice) -- [Cómo enviar una contra notificación de la DMCA](/articles/guide-to-submitting-a-dmca-counter-notice) +If you are ready to submit a notice or a counter notice: +- [How to Submit a DMCA Notice](/articles/guide-to-submitting-a-dmca-takedown-notice) +- [How to Submit a DMCA Counter Notice](/articles/guide-to-submitting-a-dmca-counter-notice) -## Conoce más y comunícate +## Learn More and Speak Up -Si exploras Internet, no es demasiado difícil encontrar comentarios y críticas sobre el sistema de derechos de autor en general y la DMCA en particular. Mientras que GitHub reconoce y aprecia el importante papel que ha desempeñado la DMCA en la promoción de la innovación en línea creemos que las leyes de derechos de autor probablemente podrían usar un patch o dos, o bien una versión completamente nueva. En software, estamos constantemente mejorando y actualizando nuestro código. Piensa en cuánto ha cambiado la tecnología desde 1998, cuando se redactó la DMCA. ¿No tiene sentido actualizar estas leyes que se aplican al software? +If you poke around the Internet, it is not too hard to find commentary and criticism about the copyright system in general and the DMCA in particular. While GitHub acknowledges and appreciates the important role that the DMCA has played in promoting innovation online, we believe that the copyright laws could probably use a patch or two—if not a whole new release. In software, we are constantly improving and updating our code. Think about how much technology has changed since 1998 when the DMCA was written. Doesn't it just make sense to update these laws that apply to software? -No presumimos de tener todas las respuestas. Pero si eres curioso, aquí tienes algunos enlaces a artículos informativos y entradas de blog que hemos encontrado con opiniones y propuestas para la reforma: +We don't presume to have all the answers. But if you are curious, here are a few links to scholarly articles and blog posts we have found with opinions and proposals for reform: -- [Consecuencias no deseadas: Doce años bajo la DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Constitución de la Frontera Electrónica) -- [Daños y Perjuicios Reglamentarios en la Ley de Derechos de Autor: Un recordatorio en la necesidad de la reforma](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Revisión de la ley María) -- [¿El plazo de protección de los derechos de autor es demasiado largo?](https://the1709blog.blogspot.com/2012/11/is-term-of-protection-of-copyright-too.html) (el 1709 blog) -- [Si vamos a cambiar 'Notificación y Retiro', de la DMCA, centrémonos en su amplio abuso](https://www.techdirt.com/articles/20140314/11350426579/if-were-going-to-change-dmcas-notice-takedown-lets-focus-how-widely-its-abused.shtml) (TechDirt) -- [Oportunidades para la reforma de los derechos de autor](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato sin asociar) -- [Uso Justo de la Doctrina y la Ley de Derechos de Autor del Milenio Digital: ¿Existe un uso justo en Internet bajo la DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Revisión de la Ley de Santa Clara) +- [Unintended Consequences: Twelve Years Under the DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Electronic Frontier Foundation) +- [Statutory Damages in Copyright Law: A Remedy in Need of Reform](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Mary Law Review) +- [Is the Term of Protection of Copyright Too Long?](https://the1709blog.blogspot.com/2012/11/is-term-of-protection-of-copyright-too.html) (The 1709 Blog) +- [If We're Going to Change DMCA's 'Notice & Takedown,' Let's Focus on How Widely It's Abused](https://www.techdirt.com/articles/20140314/11350426579/if-were-going-to-change-dmcas-notice-takedown-lets-focus-how-widely-its-abused.shtml) (TechDirt) +- [Opportunities for Copyright Reform](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato Unbound) +- [Fair Use Doctrine and the Digital Millennium Copyright Act: Does Fair Use Exist on the Internet Under the DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Santa Clara Law Review) -GitHub no necesariamente respalda ninguno de los puntos de vista en esos artículos. Proporcionamos los enlaces para invitarte a conocer más, formar tus propias opiniones y, posteriormente, contactar a tu(s) representante(s) electo(s) (por ejemplo, en el [Congreso de los Estados Unidos ](https://www.govtrack.us/congress/members) o en el [Parlamento de los EE. UU. ](https://www.europarl.europa.eu/meps/en/home)) para buscar los cambios que consideras que deberían llevarse a cabo. +GitHub doesn't necessarily endorse any of the viewpoints in those articles. We provide the links to encourage you to learn more, form your own opinions, and then reach out to your elected representative(s) (e.g, in the [U.S. Congress](https://www.govtrack.us/congress/members) or [E.U. Parliament](https://www.europarl.europa.eu/meps/en/home)) to seek whatever changes you think should be made. diff --git a/translations/es-ES/content/github/site-policy/github-community-guidelines.md b/translations/es-ES/content/github/site-policy/github-community-guidelines.md index 855c186124..7011d661da 100644 --- a/translations/es-ES/content/github/site-policy/github-community-guidelines.md +++ b/translations/es-ES/content/github/site-policy/github-community-guidelines.md @@ -1,7 +1,7 @@ --- -title: Pautas de la comunidad GitHub +title: GitHub Community Guidelines redirect_from: - - /community-guidelines/ + - /community-guidelines - /articles/github-community-guidelines versions: fpt: '*' @@ -10,99 +10,110 @@ topics: - Legal --- -Millones de desarrolladores albergan millones de proyectos en GitHub — tanto de código abierto como de código cerrado — y tenemos el honor de participar en la colaboración de toda la comunidad todos los días. Juntos tenemos una emocionante oportunidad y responsabilidad de hacer de esta una comunidad de la que podemos estar orgullosos. +Millions of developers host millions of projects on GitHub — both open and closed source — and we're honored to play a part in enabling collaboration across the community every day. Together, we all have an exciting opportunity and responsibility to make this a community we can be proud of. -Los usuarios de GitHub en todo el mundo ofrecen perspectivas, ideas y experiencias diferentes y van desde personas que crearon su primer proyecto "Hola Mundo" la semana pasada hasta los desarrolladores de software más conocidos del mundo. Estamos comprometidos a hacer de GitHub un ambiente acogedor para todas las diferentes voces y perspectivas de nuestra comunidad, manteniendo un espacio donde la gente sea libre de expresarse. +GitHub users worldwide bring wildly different perspectives, ideas, and experiences, and range from people who created their first "Hello World" project last week to the most well-known software developers in the world. We are committed to making GitHub a welcoming environment for all the different voices and perspectives in our community, while maintaining a space where people are free to express themselves. -Dependemos de nuestros miembros de la comunidad para que comuniquen las expectativas, [moderen](#what-if-something-or-someone-offends-you) sus proyectos, y {% data variables.contact.report_abuse %} o {% data variables.contact.report_content %}. Al esbozar lo que esperamos ver dentro de nuestra comunidad, esperamos ayudarte a entender cómo colaborar de mejor forma en GitHub y qué tipo de acciones o contenido pueden violar nuestros [Términos de servicio](#legal-notices), que incluyen nuestras [Políticas de uso aceptables](/github/site-policy/github-acceptable-use-policies). Investigaremos cualquier reporte de abuso y podremos moderar el contenido público en nuestro sitio que determinemos que infringe nuestros Términos de Servicio. +We rely on our community members to communicate expectations, [moderate](#what-if-something-or-someone-offends-you) their projects, and {% data variables.contact.report_abuse %} or {% data variables.contact.report_content %}. By outlining what we expect to see within our community, we hope to help you understand how best to collaborate on GitHub, and what type of actions or content may violate our [Terms of Service](#legal-notices), which include our [Acceptable Use Policies](/github/site-policy/github-acceptable-use-policies). We will investigate any abuse reports and may moderate public content on our site that we determine to be in violation of our Terms of Service. -## Construir una comunidad sólida +## Building a strong community -El propósito principal de la comunidad de GitHub es colaborar en proyectos de software. Deseamos que la gente trabaje mejor juntos. Aunque mantenemos el sitio, esta es una comunidad que construimos *juntos* y necesitamos tu ayuda para que sea lo mejor. +The primary purpose of the GitHub community is to collaborate on software projects. +We want people to work better together. Although we maintain the site, this is a community we build *together*, and we need your help to make it the best it can be. -* **Se cordial y de mentalidad abierta** - Otros colaboradores pueden no tener el mismo nivel de experiencia o antecedentes que tú, pero eso no significa que no tengan buenas ideas para aportar. Te invitamos a dar la bienvenida a los nuevos miembros y a los que están empezando a trabajar. +* **Be welcoming and open-minded** - Other collaborators may not have the same experience level or background as you, but that doesn't mean they don't have good ideas to contribute. We encourage you to be welcoming to new collaborators and those just getting started. -* **Respeto unos a otros.** Nada sabotea una conversación saludable como la rudeza. Se cortés y profesional y no publiques nada que una persona razonable consideraría ofensivo, abusivo o un discurso de odio. No acoses ni molestes a nadie. Trato mutuo con dignidad y consideración en todas las interacciones. +* **Respect each other.** Nothing sabotages healthy conversation like rudeness. Be civil and professional, and don’t post anything that a reasonable person would consider offensive, abusive, or hate speech. Don’t harass or grief anyone. Treat each other with dignity and consideration in all interactions. - Es probable que desees responder a algo discrepándolo. Está bien. Pero recuerda criticar las ideas, no a las personas. Evita ataques usando el nombre, ad hominem, respondiendo al tono de un post en lugar de su contenido real y contradicción reactiva. En lugar de ello, proporciona contra-argumentos razonados que mejoran la conversación. + You may wish to respond to something by disagreeing with it. That’s fine. But remember to criticize ideas, not people. Avoid name-calling, ad hominem attacks, responding to a post’s tone instead of its actual content, and knee-jerk contradiction. Instead, provide reasoned counter-arguments that improve the conversation. -* **Comunícate con empatía.** Los desacuerdos o diferencias de opinión son un hecho de la vida. Formar parte de una comunidad significa interactuar con personas de diferentes orígenes y perspectivas, muchas de las cuales pueden no ser propias. Si no estás de acuerdo con alguien, trata de entender y compartir sus sentimientos antes de abordarlos. Esto promoverá un ambiente respetuoso y amistoso donde la gente se sienta cómoda haciendo preguntas, participando en discusiones y haciendo contribuciones. +* **Communicate with empathy** - Disagreements or differences of opinion are a fact of life. Being part of a community means interacting with people from a variety of backgrounds and perspectives, many of which may not be your own. If you disagree with someone, try to understand and share their feelings before you address them. This will promote a respectful and friendly atmosphere where people feel comfortable asking questions, participating in discussions, and making contributions. -* **Se claro y permanece en el tema** -Las personas usan GitHub para hacer el trabajo y ser más productivos. Los comentarios fuera del tema son una distracción (en ocasiones bien recibido, pero generalmente no) sobre realizar el trabajo y ser productivo. Mantener el tema ayuda a producir discusiones positivas y productivas. +* **Be clear and stay on topic** - People use GitHub to get work done and to be more productive. Off-topic comments are a distraction (sometimes welcome, but usually not) from getting work done and being productive. Staying on topic helps produce positive and productive discussions. - Además, comunicarse con extraños en Internet puede ser incómodo. Es difícil transmitir o leer el tono y el sarcasmo es frecuentemente mal entendido. Intenta usar un lenguaje claro y piensa cómo será recibido por la otra persona. + Additionally, communicating with strangers on the Internet can be awkward. It's hard to convey or read tone, and sarcasm is frequently misunderstood. Try to use clear language, and think about how it will be received by the other person. -## ¿Qué pasa si algo o alguien te ofende? +## What if something or someone offends you? -Confiamos en que la comunidad nos comunique cuándo sea necesario abordar una cuestión. No monitoreamos activamente el sitio por contenido ofensivo. Si encuentras algo o alguien en el sitio que sea censurable, aquí hay algunas herramientas que proporciona GitHub para ayudarte a tomar acción inmediatamente: +We rely on the community to let us know when an issue needs to be addressed. We do not actively monitor the site for offensive content. If you run into something or someone on the site that you find objectionable, here are some tools GitHub provides to help you take action immediately: -* **Comunica las expectativas** - Si participas en una comunidad que no haya establecido sus propias pautas específicas de la comunidad, invítalos a realizarlo en el archivo README o [CONTRIBUTING](/articles/setting-guidelines-for-repository-contributors/), o en [un código de conducta dedicado](/articles/adding-a-code-of-conduct-to-your-project/), enviando una solicitud de extracción. +* **Communicate expectations** - If you participate in a community that has not set their own, community-specific guidelines, encourage them to do so either in the README or [CONTRIBUTING file](/articles/setting-guidelines-for-repository-contributors/), or in [a dedicated code of conduct](/articles/adding-a-code-of-conduct-to-your-project/), by submitting a pull request. -* **Modera comentarios** - Si tienes [privilegios de acceso de escritura](/articles/repository-permission-levels-for-an-organization/) para un repositorio, puedes editar, eliminar u ocultar los comentarios de cualquier persona sobre confirmaciones, solicitudes de extracción y propuestas. Cualquier persona con acceso de lectura a un repositorio puede ver el historial de edición del comentario. Los autores del comentario y las personas con acceso de escritura a un repositorio pueden eliminar información confidencial del historial de edición de un comentario. Para obtener más información, consulta "[Seguimiento de cambios en un comentario](/articles/tracking-changes-in-a-comment)" y "[Gestión de comentarios perturbadores](/articles/managing-disruptive-comments)." +* **Moderate Comments** - If you have [write-access privileges](/articles/repository-permission-levels-for-an-organization/) for a repository, you can edit, delete, or hide anyone's comments on commits, pull requests, and issues. Anyone with read access to a repository can view a comment's edit history. Comment authors and people with write access to a repository can delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/articles/tracking-changes-in-a-comment)" and "[Managing disruptive comments](/articles/managing-disruptive-comments)." -* **Bloquea Conversaciones**- Si una discusión en una propuesta o solicitud de extracción sale de control, puedes [bloquear la conversación](/articles/locking-conversations/). +* **Lock Conversations**  - If a discussion in an issue or pull request gets out of control, you can [lock the conversation](/articles/locking-conversations/). -* **Bloquea usuarios** - Si encuentras a un usuario que continúa presentando un mal comportamiento, puedes [bloquear al usuario desde su cuenta personal](/articles/blocking-a-user-from-your-personal-account/) o [bloquear al usuario desde su organización](/articles/blocking-a-user-from-your-organization/). +* **Block Users**  - If you encounter a user who continues to demonstrate poor behavior, you can [block the user from your personal account](/articles/blocking-a-user-from-your-personal-account/) or [block the user from your organization](/articles/blocking-a-user-from-your-organization/). -Claro que siempre podrás contactarnos en {% data variables.contact.report_abuse %} si necesitas más ayuda con alguna situación. +Of course, you can always contact us to {% data variables.contact.report_abuse %} if you need more help dealing with a situation. -## ¿Qué no está permitido? +## What is not allowed? -Estamos comprometidos a mantener una comunidad donde los usuarios sean libres de expresarse y desafiar las ideas de los demás, tanto técnicas como de otro tipo. Sin embargo, es poco probable que dichos debates fomenten un diálogo fructífero cuando se silencian las ideas porque los miembros de la comunidad están siendo bloqueados o tienen miedo de hablar. Esto significa que deberías ser respetuoso y civil en todo momento y que deberías esforzarse por no atacar a los demás considerando quiénes son. No toleramos un comportamiento que cruce la línea de lo siguiente: +We are committed to maintaining a community where users are free to express themselves and challenge one another's ideas, both technical and otherwise. Such discussions, however, are unlikely to foster fruitful dialog when ideas are silenced because community members are being shouted down or are afraid to speak up. That means you should be respectful and civil at all times, and refrain from attacking others on the basis of who they are. We do not tolerate behavior that crosses the line into the following: -- #### Amenaza de violencia - No puedes amenazar con violencia a otros ni usar el sitio para organizar, promover o incitar a actos de violencia o terrorismo en el mundo real. Piensa detenidamente en las palabras que usas, las imágenes que publicas e incluso el software que escribas y cómo lo pueden interpretar otros. Incluso si dices algo como una broma, es posible que no se reciba de esa forma. Si crees que alguien más *podría* interpretar el contenido que publicas como una amenaza o como una promoción de la violencia o el terrorismo, detente. No lo publiques en GitHub. En casos extraordinarios podemos denunciar amenazas de violencia a la aplicación de la ley si creemos que puede haber un verdadero riesgo de daños físicos o una amenaza para la seguridad pública. +- #### Threats of violence + You may not threaten violence towards others or use the site to organize, promote, or incite acts of real-world violence or terrorism. Think carefully about the words you use, the images you post, and even the software you write, and how they may be interpreted by others. Even if you mean something as a joke, it might not be received that way. If you think that someone else *might* interpret the content you post as a threat, or as promoting violence or terrorism, stop. Don't post it on GitHub. In extraordinary cases, we may report threats of violence to law enforcement if we think there may be a genuine risk of physical harm or a threat to public safety. -- #### Discurso de odio y discriminación - Aunque no está prohibido abordar temas como edad, complexión corporal, discapacidad, etnia, identidad de género y expresión, nivel de experiencia, nacionalidad, apariencia personal, raza, religión e identidad y orientación sexual, no toleramos el discurso que ataque a una persona o grupo de personas en función de quiénes son. Sólo date cuenta de que cuando se trata de una forma agresiva o insultante, estos (y otros) temas delicados pueden hacer que otros se sientan no deseados o incluso inseguros. Aunque siempre existe la posibilidad de malentendidos, esperamos que los miembros de nuestra comunidad continúen siendo respetuosos y corteses cuando discutan temas delicados. +- #### Hate speech and discrimination + While it is not forbidden to broach topics such as age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation, we do not tolerate speech that attacks a person or group of people on the basis of who they are. Just realize that when approached in an aggressive or insulting manner, these (and other) sensitive topics can make others feel unwelcome, or perhaps even unsafe. While there's always the potential for misunderstandings, we expect our community members to remain respectful and civil when discussing sensitive topics. -- #### Acosamiento y acoso No toleramos la intimidación o acoso. Esto significa cualquier acoso o intimidación habitual dirigida a una persona o grupo específico de personas. En general, si tus acciones son indeseables y continúas participando en ellas, hay una buena posibilidad de que te dirijas a territorio de intimidación o acoso. +- #### Bullying and harassment + We do not tolerate bullying or harassment. This means any habitual badgering or intimidation targeted at a specific person or group of people. In general, if your actions are unwanted and you continue to engage in them, there's a good chance you are headed into bullying or harassment territory. -- #### Interrumpir la experiencia de otros usuarios Ser parte de una comunidad incluye reconocer cómo afecta tu comportamiento a los demás y tu participación en interacciones significativas y productivas con las personas y la plataforma en la que confían. No están permitidos los comportamientos tales como publicar repetidamente comentarios fuera del tema, abrir asuntos sin contenido o sin sentido o solicitudes de extracción o usar cualquier otra característica de la plataforma de una manera que interrumpa continuamente la experiencia de otros usuarios. Mientras animamos a los mantenedores a moderar sus propios proyectos de forma individual. El personal de GitHub puede tomar medidas más restrictivas contra las cuentas que están participando en este tipo de comportamientos. +- #### Disrupting the experience of other users + Being part of a community includes recognizing how your behavior affects others and engaging in meaningful and productive interactions with people and the platform they rely on. Behaviors such as repeatedly posting off-topic comments, opening empty or meaningless issues or pull requests, or using any other platform feature in a way that continually disrupts the experience of other users are not allowed. While we encourage maintainers to moderate their own projects on an individual basis, GitHub staff may take further restrictive action against accounts that are engaging in these types of behaviors. -- #### Personificación No puedes personificar a alguien más copiando su avatar, publicando contenido bajo su dirección de correo electrónico, utilizando un nombre de usuario similar ni haciéndote pasar por alguien más de cualquier otra forma. La suplantación es una forma de acoso. +- #### Impersonation + You may not impersonate another person by copying their avatar, posting content under their email address, using a similar username or otherwise posing as someone else. Impersonation is a form of harassment. -- #### Doxing e invasión de privacidad - No publiques información personal de otras personas, como números de teléfono, direcciones de correo electrónico privadas, direcciones físicas, números de tarjetas de crédito, números de seguridad social o de identificación nacional o contraseñas. Dependiendo del contexto, como en el caso de intimidación o acoso, podemos considerar otra información, tales como fotos o vídeos que fueron tomados o distribuidos sin el consentimiento de la persona, una invasión de la privacidad, especialmente cuando dicho material representa un riesgo para la seguridad del sujeto. +- #### Doxxing and invasion of privacy + Don't post other people's personal information, such as personal, private email addresses, phone numbers, physical addresses, credit card numbers, Social Security/National Identity numbers, or passwords. Depending on the context, such as in the case of intimidation or harassment, we may consider other information, such as photos or videos that were taken or distributed without the subject's consent, to be an invasion of privacy, especially when such material presents a safety risk to the subject. -- #### Contenido sexualmente obsceno - No publiques contenido pornográfico. Esto no significa que toda la desnudez o todo el código y contenido relacionados con la sexualidad, esté prohibido. Reconocemos que la sexualidad es parte de la vida y que el contenido sexual no pornográfico puede ser parte de su proyecto o puede presentarse con fines educativos o artísticos. No permitimos contenidos sexuales obscenos que puedan implicar la explotación o la sexualización de menores. +- #### Sexually obscene content + Don’t post content that is pornographic. This does not mean that all nudity, or all code and content related to sexuality, is prohibited. We recognize that sexuality is a part of life and non-pornographic sexual content may be a part of your project, or may be presented for educational or artistic purposes. We do not allow obscene sexual content or content that may involve the exploitation or sexualization of minors. -- #### Contenido violento injustificadamente - No publiques imágenes, texto u otro contenido sin un contexto o advertencias razonables. Aunque a menudo es correcto incluir contenido violento en videojuegos, reportes de noticias y descripciones de acontecimientos históricos, no permitimos contenido violento que se publique de forma indiscriminada o que se publique de una manera que dificulte a otros usuarios evitarlo (por ejemplo, un avatar de perfil o un comentario sobre una propuesta). Una clara advertencia o renuncia de responsabilidad en otros contextos ayuda a los usuarios a tomar una decisión educada sobre si quieren participar en dichos contenidos o no. +- #### Gratuitously violent content + Don’t post violent images, text, or other content without reasonable context or warnings. While it's often okay to include violent content in video games, news reports, and descriptions of historical events, we do not allow violent content that is posted indiscriminately, or that is posted in a way that makes it difficult for other users to avoid (such as a profile avatar or an issue comment). A clear warning or disclaimer in other contexts helps users make an educated decision as to whether or not they want to engage with such content. -- #### Información errónea y desinformación - No puedes publicar contenido que presente una visión distorsionada de la realidad, ya sea inexacta o falsa (información errónea) o que sea intencionalmente engañosa (desinformación) donde dicho contenido probablemente resulte en daño al público o que interfiera con oportunidades justas y equitativas para que todos participen en la vida pública. Por ejemplo, no permitimos contenido que pueda poner el bienestar de grupos de personas en riesgo o limitar su capacidad de participar en una sociedad libre y abierta. Fomentamos la participación activa en la expresión de ideas, perspectivas y experiencias y podríamos no estar en posición de disputar cuentas personales u observaciones. Por lo general, permitimos la parodia y la sátira que está en línea con nuestras políticas de uso aceptable y consideramos que el contexto es importante en la manera en que se recibe y se entiende la información; por lo tanto, puede ser adecuado aclarar tus intenciones mediante renuncias u otros medios, así como la fuente(s) de tu información. +- #### Misinformation and disinformation + You may not post content that presents a distorted view of reality, whether it is inaccurate or false (misinformation) or is intentionally deceptive (disinformation) where such content is likely to result in harm to the public or to interfere with fair and equal opportunities for all to participate in public life. For example, we do not allow content that may put the well-being of groups of people at risk or limit their ability to take part in a free and open society. We encourage active participation in the expression of ideas, perspectives, and experiences and may not be in a position to dispute personal accounts or observations. We generally allow parody and satire that is in line with our Acceptable Use Polices, and we consider context to be important in how information is received and understood; therefore, it may be appropriate to clarify your intentions via disclaimers or other means, as well as the source(s) of your information. -- #### Exploits de malware activos El ser parte de una comunidad incluye el no abusar del resto de sus miembros. No permitimos que nadie utilice nuestra plataforma para apoyar directamente los ataques ilícitos que causan daño técnico, tales como utilizar GitHub como medio para entregar ejecutables malintencionados o como infraestructura de ataque, por ejemplo, para organizar ataques de negación del servicio o administrar servidores de control y comando. Los daños técnicos significan el sobreconsumo de recursos, daño físico, tiempo de inactividad, negación del servicio o pérdidad de datos, sin propósito implícito o explícito para uso dual antes de que ocurra el abuso. +- #### Active malware or exploits + Being part of a community includes not taking advantage of other members of the community. We do not allow anyone to use our platform in direct support of unlawful attacks that cause technical harms, such as using GitHub as a means to deliver malicious executables or as attack infrastructure, for example by organizing denial of service attacks or managing command and control servers. Technical harms means overconsumption of resources, physical damage, downtime, denial of service, or data loss, with no implicit or explicit dual-use purpose prior to the abuse occurring. - Toma en cuenta que GitHub permite el contenido de uso dual y apoya la publicación de contenido que se utilice para la investigación de vulnerabilidades, malware o exploits, ya que el publicar o distribuir este tipo de contenido tiene un valor educativo y pñroporciona un beneficio real a la comunidad de seguridad. Asumimos un uso de estos proyectos e intención positivos para promover e impulsar mejoras a lo largo del ecosistema. + Note that GitHub allows dual-use content and supports the posting of content that is used for research into vulnerabilities, malware, or exploits, as the publication and distribution of such content has educational value and provides a net benefit to the security community. We assume positive intention and use of these projects to promote and drive improvements across the ecosystem. - En casos extraordinarios de abuso amplio del contenido de uso dual, podríamos restringir el acceso a esta instancia específica de contenido para parar un ataque ilícito o campaña de malware en curso que esté tomando provecho de la plataforma de GitHub como un exploit o CDN de malware. En la mayoría de estos casos, la restricción toma la forma de poner el contenido bajo autenticación, pero podría, como último recurso, invlucrar la inhabilitación de accesos o la eliminación por completo en donde esto no fuese posible (por ejemplo, cuando se publica como un gist). También contactaremos a los propietarios del proyecto para conocer las restricciones que se pusieron en marcha, cuando sea posible. + In rare cases of very widespread abuse of dual-use content, we may restrict access to that specific instance of the content to disrupt an ongoing unlawful attack or malware campaign that is leveraging the GitHub platform as an exploit or malware CDN. In most of these instances, restriction takes the form of putting the content behind authentication, but may, as an option of last resort, involve disabling access or full removal where this is not possible (e.g. when posted as a gist). We will also contact the project owners about restrictions put in place where possible. - Las restricciones son temporales cuando sea posible y no tienen el propósito de purgar o restringir ningun contenido de uso dual específico ni copias de dicho contenido desde la plataforma perpetuamente. Si bien nos enfocamos en que estos casos extraordinarios de restricción sean un proceso colaborativo con los propietarios de los proyectos, en caso de que sientas que tu contenido se restringió sin razón alguna, tenemos un [proceso de apelación](#appeal-and-reinstatement) instaurado. + Restrictions are temporary where feasible, and do not serve the purpose of purging or restricting any specific dual-use content, or copies of that content, from the platform in perpetuity. While we aim to make these rare cases of restriction a collaborative process with project owners, if you do feel your content was unduly restricted, we have an [appeals process](#appeal-and-reinstatement) in place. - Para facilitar una ruta de resolución de abuso con los mismos mantenedores de proyecto, antes de escalar a un reporte de abuso de GitHub, te recomendamos, mas no requerimos, que los propietarios de los repositorios lleven a cabo los siguientes pasos al publicar contenido de investigación de seguridad potencialmente dañino: + To facilitate a path to abuse resolution with project maintainers themselves, prior to escalation to GitHub abuse reports, we recommend, but do not require, that repository owners take the following steps when posting potentially harmful security research content: - * Identifica y describe claramente cualquier contenido dañino en un aviso legal en el archivo README.md del proyecto o en los comentarios del código fuente. - * Proporciona un método de contacto preferido para cualquier consultas de abuso de terceros a través de un archivo de SECURITY.md en el repositorio (por ejemplo, "Por favor, crea una propuesta en este repositorio para dirigir cualquier pregunta o preocupación"). Dicho método de contacto permite que los terceros contacten a los mantenedores de proyecto directamente y que así resuelvan las preocupaciones potencialmente sin necesidad de emitir reportes de abuso. + * Clearly identify and describe any potentially harmful content in a disclaimer in the project’s README.md file or source code comments. + * Provide a preferred contact method for any 3rd party abuse inquiries through a SECURITY.md file in the repository (e.g. "Please create an issue on this repository for any questions or concerns"). Such a contact method allows 3rd parties to reach out to project maintainers directly and potentially resolve concerns without the need to file abuse reports. - *GitHub considera que el registro de npm es una plataforma que se utiliza principalmente para la instalación y uso de tiempo de ejecución del código y no para investigación.* + *GitHub considers the npm registry to be a platform used primarily for installation and run-time use of code, and not for research.* -## ¿Qué sucede si alguien no comple con las reglas? +## What happens if someone breaks the rules? -Hay una serie de acciones que podemos tomar cuando un usuario reporta un comportamiento o contenido inadecuado. Por lo general, depende de las circunstancias exactas de un caso en particular. Reconocemos que en ocasiones la gente puede decir o hacer cosas inadecuadas por diversas razones. Tal vez no se dieron cuenta de cómo se percibirían sus palabras. O tal vez sólo dejan que sus emociones saquen lo mejor de ellos. Por supuesto, en ocasiones, hay gente que sólo quiere hacer spam o causar problemas. +There are a variety of actions that we may take when a user reports inappropriate behavior or content. It usually depends on the exact circumstances of a particular case. We recognize that sometimes people may say or do inappropriate things for any number of reasons. Perhaps they did not realize how their words would be perceived. Or maybe they just let their emotions get the best of them. Of course, sometimes, there are folks who just want to spam or cause trouble. -Cada caso requiere un enfoque diferente e intentamos adaptar nuestra respuesta para satisfacer las necesidades de la situación que se ha informado. Revisaremos cada informe de abuso caso por caso. En cada caso, tendremos un equipo diverso que investigue el contenido y los hechos relacionados y responda según corresponda, utilizando estas directrices para guiar nuestra decisión. +Each case requires a different approach, and we try to tailor our response to meet the needs of the situation that has been reported. We'll review each abuse report on a case-by-case basis. In each case, we will have a diverse team investigate the content and surrounding facts and respond as appropriate, using these guidelines to guide our decision. -Las acciones que podemos emprender en respuesta a un informe de abuso incluyen, pero no se limitan a: +Actions we may take in response to an abuse report include but are not limited to: -* Eliminación de contenido -* Bloqueo de contenido -* Suspensión de la cuenta -* Terminación de la cuenta +* Content Removal +* Content Blocking +* Account Suspension +* Account Termination -## Apelación y reinstauración +## Appeal and Reinstatement -En algunos casos, podría haber una razón para revertir una acción, por ejempl, con base en la información adicional que proporcionó el usuario o cuando un usuario aborda la violación y acuerda regisrse por nuestras Políticas de Uso Aceptable en lo subsecuente. Si quieres apelar una acción de cumplimiento, por favor, contacta a [soporte](https://support.github.com/contact?tags=docs-policy). +In some cases there may be a basis to reverse an action, for example, based on additional information a user provided, or where a user has addressed the violation and agreed to abide by our Acceptable Use Policies moving forward. If you wish to appeal an enforcement action, please contact [support](https://support.github.com/contact?tags=docs-policy). -## Avisos legales +## Legal Notices -Dedicamos estas Pautas de la Comunidad al dominio público para que cualquiera pueda usar, reutilizar, adaptar o lo que sea, bajo los términos de [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). +We dedicate these Community Guidelines to the public domain for anyone to use, reuse, adapt, or whatever, under the terms of [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). -Estas son solo directrices; no modifican nuestros [Términos de Servicio](/articles/github-terms-of-service/) y no pretenden ser una lista completa. GitHub mantiene total discreción bajo los [Términos de Servicio](/articles/github-terms-of-service/#c-acceptable-use) para eliminar cualquier contenido o cancelar cualquier cuenta por actividad que infrinja nuestros Términos del Uso Aceptable. Estas directrices describen en qué situaciones ejerceremos dicha discreción. +These are only guidelines; they do not modify our [Terms of Service](/articles/github-terms-of-service/) and are not intended to be a complete list. GitHub retains full discretion under the [Terms of Service](/articles/github-terms-of-service/#c-acceptable-use) to remove any content or terminate any accounts for activity that violates our Terms on Acceptable Use. These guidelines describe when we will exercise that discretion. diff --git a/translations/es-ES/content/github/site-policy/github-logo-policy.md b/translations/es-ES/content/github/site-policy/github-logo-policy.md index ad03e18acf..ec874245e8 100644 --- a/translations/es-ES/content/github/site-policy/github-logo-policy.md +++ b/translations/es-ES/content/github/site-policy/github-logo-policy.md @@ -1,8 +1,8 @@ --- -title: Política de logo de GitHub +title: GitHub Logo Policy redirect_from: - - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know/ - - /articles/using-an-octocat-to-link-to-github-or-your-github-profile/ + - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know + - /articles/using-an-octocat-to-link-to-github-or-your-github-profile - /articles/github-logo-policy versions: fpt: '*' @@ -11,6 +11,6 @@ topics: - Legal --- -Puede añadir {% data variables.product.prodname_dotcom %} logos a tu sitio web o aplicación de terceros en algunos escenarios. Para obtener más información y directrices específicas, consulta la[{% data variables.product.prodname_dotcom %} página de Logos y Uso](https://github.com/logos). +You can add {% data variables.product.prodname_dotcom %} logos to your website or third-party application in some scenarios. For more information and specific guidelines on logo usage, see the [{% data variables.product.prodname_dotcom %} Logos and Usage page](https://github.com/logos). -También puedes usar un octocat como tu avatar personal o en tu sitio web para vincular a tu cuenta, {% data variables.product.prodname_dotcom %} pero no para tu empresa o un producto que estás construyendo. {% data variables.product.prodname_dotcom %} tiene una extensa colección de octocats en el [Octodex](https://octodex.github.com/). Para obtener más información sobre cómo usar los octocats de Octodex, consulta las [preguntas frecuentes de Octodex](https://octodex.github.com/faq/). +You can also use an octocat as your personal avatar or on your website to link to your {% data variables.product.prodname_dotcom %} account, but not for your company or a product you're building. {% data variables.product.prodname_dotcom %} has an extensive collection of octocats in the [Octodex](https://octodex.github.com/). For more information on using the octocats from the Octodex, see the [Octodex FAQ](https://octodex.github.com/faq/). diff --git a/translations/es-ES/content/github/site-policy/github-privacy-statement.md b/translations/es-ES/content/github/site-policy/github-privacy-statement.md index c8747f81d1..a9ce688a7e 100644 --- a/translations/es-ES/content/github/site-policy/github-privacy-statement.md +++ b/translations/es-ES/content/github/site-policy/github-privacy-statement.md @@ -1,12 +1,12 @@ --- -title: Declaración de Privacidad de GitHub +title: GitHub Privacy Statement redirect_from: - - /privacy/ - - /privacy-policy/ - - /privacy-statement/ - - /github-privacy-policy/ - - /articles/github-privacy-policy/ - - /articles/github-privacy-statement/ + - /privacy + - /privacy-policy + - /privacy-statement + - /github-privacy-policy + - /articles/github-privacy-policy + - /articles/github-privacy-statement versions: fpt: '*' topics: @@ -14,329 +14,329 @@ topics: - Legal --- -Fecha de entrada en vigor: 19 de diciembre de 2020 +Effective date: December 19, 2020 -Gracias por confiar a GitHub Inc. (“GitHub”, “nosotros”) tu código fuente, tus proyectos y tu información personal. Mantener tu información privada es una responsabilidad importante, y queremos que sepas cómo lo hacemos. +Thanks for entrusting GitHub Inc. (“GitHub”, “we”) with your source code, your projects, and your personal information. Holding on to your private information is a serious responsibility, and we want you to know how we're handling it. -Todos los términos en mayúsculas tienen su definición en las [Condiciones de Servicio de GitHub](/github/site-policy/github-terms-of-service) a menos de que se indique lo contrario. +All capitalized terms have their definition in [GitHub’s Terms of Service](/github/site-policy/github-terms-of-service), unless otherwise noted here. -## La versión corta +## The short version -Utilizamos tu información personal como lo describe la presente Declaración de Privacidad. Sin importar quién seas, dónde vives, o cuál sea tu nacionalidad, proporcionames el mismo estándar alto de protección de la privacidad a todos nuestros usuarios en el mundo, sin importar su país de orígen o su ubicación. +We use your personal information as this Privacy Statement describes. No matter where you are, where you live, or what your citizenship is, we provide the same high standard of privacy protection to all our users around the world, regardless of their country of origin or location. -Por supuesto, la versión corta y el Resumen que aparecen a continuación no informan todos los detalles, por lo tanto, sigue leyendo para acceder a ellos. +Of course, the short version and the Summary below don't tell you everything, so please read on for more details. -## Resumen +## Summary -| Sección | ¿Qué puedes encontrar allí? | -| ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Qué información recopila GitHub](#what-information-github-collects) | GitHub recopila información directamente a partir de tu registro, tus pagos, tus transacciones y del perfil del usuario. También, cuando es necesario, recopilamos automáticamente información de tu uso, cookies e información de dispositivo sujetos, cuando sea necesario, a tu consentimiento. Puede que GitHub también recopile Información personal del usuario a partir de terceros. Solo recopilamos la mínima cantidad de información personal necesaria a través de ti, a menos que decidas proporcionar más. | -| [Qué información GitHub _no_ recopila](#what-information-github-does-not-collect) | No recopilamos intencionalmente información de niños menores de 13 años y no recopilamos [Información personal sensible](https://gdpr-info.eu/art-9-gdpr/). | -| [Cómo utiliza GitHub tu información](#how-github-uses-your-information) | En esta sección, describimos las formas en las que utilizamos tu información, incluyendo el proporcionarte el Servicio, comunicarnos contigo, para propósitos de seguridad y cumplimiento, y para mejorar nuestro Servicio. También describimos la base legal sobre la cual procesamos tu información personal, cuando se exige legalmente. | -| [Cómo compartimos la información que recopilamos](#how-we-share-the-information-we-collect) | Puede que compartamos tu información con terceros en una de las siguientes circunstancias: con tu consentimiento, con nuestros proveedores de servicio, por motivos de seguridad, para cumplir con nuestras obligaciones legales o cuando exista un cambio de control o venta de las entidades corporativas o unidades de negocios. En GitHub, no vendemos tu información personal y no alojamos publicidad. Puedes consultar una lista de los proveedores de servicio que acceden a tu información. | -| [Otra información importante](#other-important-information) | Proporcionamos más información específica sobre los contenidos del repositorio, la información pública y las Organizaciones de GitHub. | -| [Servicios adicionales](#additional-services) | Proporcionamos información sobre las ofertas de servicio adicionales, incluso aplicaciones de terceros, Páginas de GitHub y aplicaciones de GitHub. | -| [Cómo puedes acceder y controlar la información que recopilamos](#how-you-can-access-and-control-the-information-we-collect) | Proporcionamos formas para que accedas, modifiques o elimines tu información personal. | -| [Uso de cookies y seguimiento](#our-use-of-cookies-and-tracking) | Solo utilizamos las cookies estrictamente necesarias para proporcionar, asegurar y mejorar nuestro servicio. Ofrecemos una página que hace que esto sea muy transparente. Consulta esta sección para obtener más información. | -| [Cómo asegura GitHub tu información](#how-github-secures-your-information) | Tomamos todas las medidas razonablemente necesarias para proteger la confidencialidad, integridad y disponibilidad de tu información personal en GitHub y para proteger la resistencia de nuestros servidores. | -| [Prácticas de privacidad mundiales de GitHub](#githubs-global-privacy-practices) | Proporcionamos el mismo estándar alto de protección de la privacidad a todos nuestros usuarios en el mundo entero. | -| [Cómo nos comunicamos contigo](#how-we-communicate-with-you) | Nos comunicamos contigo por correo electrónico. Puedes controlar la manera en que te contactamos en las configuraciones de la cuenta o poniéndote en contacto con nosotros. | -| [Resolver reclamos](#resolving-complaints) | En el caso improbable de que no podamos resolver una inquietud sobre la privacidad de forma rápida y exhaustiva, proporcionaremos un medio de resolución por medio de una disputa. | -| [Cambios en tu Declaración de privacidad](#changes-to-our-privacy-statement) | Te notificamos los cambios importantes en esta Declaración de privacidad 30 días antes de que cualquier cambio entre en vigencia. Puedes rastrear los cambios en nuestro repositorio de Políticas del sitio. | -| [Licencia](#license) | La presente Declaración de privacidad está autorizada por la [licencia Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/). | -| [Contactarse con GitHub](#contacting-github) | Siéntete libre de contactarnos si tienes preguntas acerca de nuestra Declaración de privacidad. | -| [Traducciones](#translations) | Proporcionamos enlaces a algunas traducciones de la Declaración de privacidad. | +| Section | What can you find there? | +|---|---| +| [What information GitHub collects](#what-information-github-collects) | GitHub collects information directly from you for your registration, payment, transactions, and user profile. We also automatically collect from you your usage information, cookies, and device information, subject, where necessary, to your consent. GitHub may also collect User Personal Information from third parties. We only collect the minimum amount of personal information necessary from you, unless you choose to provide more. | +| [What information GitHub does _not_ collect](#what-information-github-does-not-collect) | We don’t knowingly collect information from children under 13, and we don’t collect [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/). | +| [How GitHub uses your information](#how-github-uses-your-information) | In this section, we describe the ways in which we use your information, including to provide you the Service, to communicate with you, for security and compliance purposes, and to improve our Service. We also describe the legal basis upon which we process your information, where legally required. | +| [How we share the information we collect](#how-we-share-the-information-we-collect) | We may share your information with third parties under one of the following circumstances: with your consent, with our service providers, for security purposes, to comply with our legal obligations, or when there is a change of control or sale of corporate entities or business units. We do not sell your personal information and we do not host advertising on GitHub. You can see a list of the service providers that access your information. | +| [Other important information](#other-important-information) | We provide additional information specific to repository contents, public information, and Organizations on GitHub. | +| [Additional services](#additional-services) | We provide information about additional service offerings, including third-party applications, GitHub Pages, and GitHub applications. | +| [How you can access and control the information we collect](#how-you-can-access-and-control-the-information-we-collect) | We provide ways for you to access, alter, or delete your personal information. | +| [Our use of cookies and tracking](#our-use-of-cookies-and-tracking) | We only use strictly necessary cookies to provide, secure and improve our service. We offer a page that makes this very transparent. Please see this section for more information. | +| [How GitHub secures your information](#how-github-secures-your-information) | We take all measures reasonably necessary to protect the confidentiality, integrity, and availability of your personal information on GitHub and to protect the resilience of our servers. | +| [GitHub's global privacy practices](#githubs-global-privacy-practices) | We provide the same high standard of privacy protection to all our users around the world. | +| [How we communicate with you](#how-we-communicate-with-you) | We communicate with you by email. You can control the way we contact you in your account settings, or by contacting us. | +| [Resolving complaints](#resolving-complaints) | In the unlikely event that we are unable to resolve a privacy concern quickly and thoroughly, we provide a path of dispute resolution. | +| [Changes to our Privacy Statement](#changes-to-our-privacy-statement) | We notify you of material changes to this Privacy Statement 30 days before any such changes become effective. You may also track changes in our Site Policy repository. | +| [License](#license) | This Privacy Statement is licensed under the [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). | +| [Contacting GitHub](#contacting-github) | Please feel free to contact us if you have questions about our Privacy Statement. | +| [Translations](#translations) | We provide links to some translations of the Privacy Statement. | -## Declaración de Privacidad de GitHub +## GitHub Privacy Statement -## Qué información recopila GitHub +## What information GitHub collects -La "**Información personal del usuario**" es cualquier información acerca de alguno de nuestros Usuarios que podría, de manera independiente o junto con otra información, identificarlo individualmente, o que está vinculada o conectada de cualquier otra forma con él. Información como un nombre de usuario y contraseña, una dirección de correo electrónico, un nombre real, una dirección de Protocolo de Internet (IP) y una fotografía son ejemplos de "Información personal del usuario". +"**User Personal Information**" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information such as a username and password, an email address, a real name, an Internet protocol (IP) address, and a photograph are examples of “User Personal Information.” -La Información personal del usuario no incluye información agregada, información de carácter no personal que no identifica a un Usuario o que no se puede vincular o conectar de manera razonable con él. Podemos utilizar dicha información agregada que no identifica de manera personal a un usuario con motivos de investigación y para operar, analizar y optimizar nuestro Sitio web y el Servicio. +User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. We may use such aggregated, non-personally identifying information for research purposes and to operate, analyze, improve, and optimize our Website and Service. -### Información que los usuarios proporcionan directamente a GitHub +### Information users provide directly to GitHub -#### Información de registro -Necesitamos cierta información básica al momento de creación de la cuenta. Cuando creas tu propio nombre de usuario y contraseña, te solicitamos una dirección de correo electrónico válida. +#### Registration information +We require some basic information at the time of account creation. When you create your own username and password, we ask you for a valid email address. -#### Información de Pago -Si te registras para una Cuenta paga, envías fondos a través del Programa de patrocinadores de GitHub o compras una aplicación en el Mercado GitHub, recopilamos tu nombre completo y la información de la tarjeta de crédito o la información de PayPal. Ten en cuenta que GitHub no procesa ni almacena tu información de tarjeta de crédito o información de PayPal, pero sí lo hace nuestro procesador de pago subcontratado. +#### Payment information +If you sign on to a paid Account with us, send funds through the GitHub Sponsors Program, or buy an application on GitHub Marketplace, we collect your full name, address, and credit card information or PayPal information. Please note, GitHub does not process or store your credit card information or PayPal information, but our third-party payment processor does. -Si detallas y vendes una aplicación en el [Mercado GitHub](https://github.com/marketplace), te solicitamos la información de tu banco. Si recabas fondos a través del [Programa de Patrocinadores de GitHub](https://github.com/sponsors), necesitamos algo de [información adicional](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) mediante el proceso de registro para que participes y recibas los fondos a través de estos servicios y para propósitos de cumplimiento. +If you list and sell an application on [GitHub Marketplace](https://github.com/marketplace), we require your banking information. If you raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we require some [additional information](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) through the registration process for you to participate in and receive funds through those services and for compliance purposes. -#### Información de perfil -Puedes decidir proporcionarnos más información para tu Perfil de cuenta, como tu nombre completo, un avatar que puede incluir una fotografía, tu biografía, tu ubicación, tu empresa y una URL a un sitio web de terceros. Esta información puede incluir Información personal del usuario. Ten en cuenta que tu información de perfil puede ser visible para otros Usuarios de nuestro Servicio. +#### Profile information +You may choose to give us more information for your Account profile, such as your full name, an avatar which may include a photograph, your biography, your location, your company, and a URL to a third-party website. This information may include User Personal Information. Please note that your profile information may be visible to other Users of our Service. -### Información que GitHub recopila automáticamente a partir del uso del Servicio +### Information GitHub automatically collects from your use of the Service -#### Información transaccional -Si tienes una Cuenta paga con nosotros, vendes una aplicación detallada en el [Mercado GitHub](https://github.com/marketplace) o recaudas fondos a través del [Programa de patrocinadores de GitHub](https://github.com/sponsors), automáticamente recopilamos determinada información acerca de tus transacciones en el Servicio, como la fecha, la hora y el monto cobrado. +#### Transactional information +If you have a paid Account with us, sell an application listed on [GitHub Marketplace](https://github.com/marketplace), or raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we automatically collect certain information about your transactions on the Service, such as the date, time, and amount charged. -#### Información de uso -Si accedes a nuestro Servicio o Sitio web, automáticamente recopilamos la misma información básica que recopila la mayoría de los servicios, sujeto a tu consentimiento cuando resulte necesario. Esto incluye información acerca de cómo utilizas el Servicio, por ejemplo, las páginas que miras, el sitio referido, tu dirección IP e información de sesión, y la fecha y hora de cada solicitud. Recopilamos esta información de todos los visitantes del Sitio web, tengan o no una Cuenta. Esta información puede incluir Información personal del usuario. +#### Usage information +If you're accessing our Service or Website, we automatically collect the same basic information that most services collect, subject, where necessary, to your consent. This includes information about how you use the Service, such as the pages you view, the referring site, your IP address and session information, and the date and time of each request. This is information we collect from every visitor to the Website, whether they have an Account or not. This information may include User Personal information. #### Cookies -De acuerdo a como se describe a continuación, recolectamos automáticamente la información de las cookies (tales como la ID y configuración de éstas) para mantenerte con una sesión iniciada, para recordar tus preferencias, para identificarte tanto a ti como a tu dispositivo y para analizar tu uso de nuestro servicio. +As further described below, we automatically collect information from cookies (such as cookie ID and settings) to keep you logged in, to remember your preferences, to identify you and your device and to analyze your use of our service. -#### Información de dispositivo -Puede que recopilemos determinada información acerca de tu dispositivo, como la dirección IP, el navegador o información de la aplicación del cliente, preferencias de idioma, sistema operativo y versión de la aplicación, tipo e ID del dispositivo y modelo y fabricante del dispositivo. Esta información puede incluir Información personal del usuario. +#### Device information +We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. -### Información que recopilamos de terceros +### Information we collect from third parties -GitHub puede recopilar Información personal del usuario a partir de terceros. Por ejemplo, esto puede ocurrir si inicias sesión para capacitarte o recibir información acerca de GitHub de parte de alguno de nuestros proveedores, socios o subsidiarias. GitHub no compra Información personal del usuario a agentes de datos de terceros. +GitHub may collect User Personal Information from third parties. For example, this may happen if you sign up for training or to receive information about GitHub from one of our vendors, partners, or affiliates. GitHub does not purchase User Personal Information from third-party data brokers. -## Qué información no recopila GitHub +## What information GitHub does not collect -No recopilamos de manera intencional “**[Información personal sensible](https://gdpr-info.eu/art-9-gdpr/)**”, como datos personales que revelan origen racial o étnico, opiniones políticas, creencias religiosas o filosóficas o afiliación sindical, y tampoco procesamos datos genéticos ni datos biométricos con el único fin de identificar a una persona física, datos del estado de salud o datos sobre la vida sexual o la orientación sexual de una persona física. Si decides almacenar alguna Información personal en tus servidores, eres responsable de cumplir con cualquier control regulatorio al respecto de esos datos. +We do not intentionally collect “**[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)**”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. If you choose to store any Sensitive Personal Information on our servers, you are responsible for complying with any regulatory controls regarding that data. -Si eres un niño menor de 13 años, no puedes tener una Cuenta en GitHub. GitHub no recopila intencionalmente información de niños menores de 13 años ni dirige ninguno de nuestros contenidos de manera específica a ellos. Si sabemos o tenemos motivos para sospechar que eres un Usuario menor de 13 años, tendremos que cerrar tu Cuenta. No queremos desalentarte de que aprendas nuestro código, pero esas son las reglas. Por favor, consulta nuestras [Condiciones de Servicio](/github/site-policy/github-terms-of-service) para la información acerca de la cancelación de la cuenta. Puede que los diferentes países tengan diferentes límites de edad mínimos. Si estás por debajo de la edad mínima para brindar consentimiento para la recopilación de datos en tu país, no puedes tener una Cuenta en GitHub. +If you are a child under the age of 13, you may not have an Account on GitHub. GitHub does not knowingly collect information from or direct any of our content specifically to children under 13. If we learn or have reason to suspect that you are a User who is under the age of 13, we will have to close your Account. We don't want to discourage you from learning to code, but those are the rules. Please see our [Terms of Service](/github/site-policy/github-terms-of-service) for information about Account termination. Different countries may have different minimum age limits, and if you are below the minimum age for providing consent for data collection in your country, you may not have an Account on GitHub. -No recopilamos de manera intencional la Información personal del usuario que está **almacenada en tus repositorios** u otros ingresos de contenido de forma libre. Toda información personal dentro del repositorio de un usuario es responsabilidad del propietario del repositorio. +We do not intentionally collect User Personal Information that is **stored in your repositories** or other free-form content inputs. Any personal information within a user's repository is the responsibility of the repository owner. -## Cómo utiliza GitHub tu información +## How GitHub uses your information -Podemos utilizar tu información con los siguientes fines: -- Utilizamos tu [Información de registro](#registration-information) para crear tu cuenta y para proporcionarte el Servicio. -- Utilizamos tu [Información de pago](#payment-information) para proporcionarte el servicio de Cuenta paga, el servicio de Mercado, el Programa de patrocinadores o cualquier otro servicio pago de GitHub que solicites. -- Utilizamos tu Información personal del usuario, específicamente tu nombre de usuario, para identificarte en GitHub. -- Utilizamos tu [Información del perfil](#profile-information) para completar tu perfil de Cuenta y para compartir ese perfil con otros usuarios, si nos pides que lo hagamos. -- Utilizamos tu dirección de correo electrónico para comunicarnos contigo, si estuviste de acuerdo con ello, **y solo por las razones con las que estuviste de acuerdo**. Consulta nuestra sección en [comunicación por correo electrónico](#how-we-communicate-with-you) para obtener más información. -- Utilizamos Información personal del usuario para responder a las solicitudes de soporte técnico. -- Utilizamos Información personal del usuario y otros datos para hacerte recomendaciones, por ejemplo, sugerir proyectos que puedes querer seguir o con los que puedes querer contribuir. Aprendemos de tu comportamiento público en GitHub, por ejemplo, los proyectos a los que les pones estrellas, para determinar tus intereses de codificación y recomendamos proyectos similares. Estas recomendaciones son decisiones automáticas, pero no tienen un impacto legal en tus derechos. -- Podemos utilizar Información personal del usuario para invitarte a formar parte de las encuestas, los programas beta u otros proyectos de investigación, sujeto a tu consentimiento cuando resulte necesario. -- Utilizamos [Información de uso](#usage-information) e [Información del dispositivo](#device-information) para comprender mejor cómo utilizan GitHub nuestros Usuarios y para mejorar nuestro Sitio web y el Servicio. -- Si es necesario, podemos utilizar tu Información personal del usuario por motivos de seguridad o para investigar posibles fraudes o intentos de dañar a GitHub o a nuestros Usuarios. -- Podríamos utilizar tu Información personal de usuario para cumplir con nuestras obligaciones legales, proteger nuestra propiedad intelectual y hacer cumplir nuestras [Condiciones de Servicio](/github/site-policy/github-terms-of-service). -- Restringimos nuestro uso de tu Información personal del Usuario para los fines detallados en esta Declaración de privacidad. Si necesitamos utilizar tu Información personal del usuario para otros fines, te pediremos permiso primero. Siempre puedes ver qué información tenemos, cómo la estamos utilizando y qué permisos nos has dado en tu [perfil de usuario](https://github.com/settings/admin). +We may use your information for the following purposes: +- We use your [Registration Information](#registration-information) to create your account, and to provide you the Service. +- We use your [Payment Information](#payment-information) to provide you with the Paid Account service, the Marketplace service, the Sponsors Program, or any other GitHub paid service you request. +- We use your User Personal Information, specifically your username, to identify you on GitHub. +- We use your [Profile Information](#profile-information) to fill out your Account profile and to share that profile with other users if you ask us to. +- We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. Please see our section on [email communication](#how-we-communicate-with-you) for more information. +- We use User Personal Information to respond to support requests. +- We use User Personal Information and other data to make recommendations for you, such as to suggest projects you may want to follow or contribute to. We learn from your public behavior on GitHub—such as the projects you star—to determine your coding interests, and we recommend similar projects. These recommendations are automated decisions, but they have no legal impact on your rights. +- We may use User Personal Information to invite you to take part in surveys, beta programs, or other research projects, subject, where necessary, to your consent . +- We use [Usage Information](#usage-information) and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and Service. +- We may use your User Personal Information if it is necessary for security purposes or to investigate possible fraud or attempts to harm GitHub or our Users. +- We may use your User Personal Information to comply with our legal obligations, protect our intellectual property, and enforce our [Terms of Service](/github/site-policy/github-terms-of-service). +- We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. You can always see what information we have, how we're using it, and what permissions you have given us in your [user profile](https://github.com/settings/admin). -### Nuestras bases legales para el procesamiento de información +### Our legal bases for processing information -En la medida que el procesamiento de tu Información personal del usuario esté sujeto a determinadas normas internacionales (incluido, entre otros, el Reglamento General de Protección de Datos [RGPD]) de la Unión Europea, se le exige a GitHub que te notifique acerca de la base legal sobre la cual procesamos la Información personal del usuario. GitHub procesa la Información personal del usuario sobre las siguientes bases legales: +To the extent that our processing of your User Personal Information is subject to certain international laws (including, but not limited to, the European Union's General Data Protection Regulation (GDPR)), GitHub is required to notify you about the legal basis on which we process User Personal Information. GitHub processes User Personal Information on the following legal bases: -- Ejecución del contrato: - * Cuando creas una Cuenta de GitHub, proporcionas tu [Información de registro](#registration-information). Solicitamos esta información para que celebres el acuerdo de Términos del Servicio con nosotros y procesamos esa información sobre la base de la ejecución de ese contrato. También procesamos tu nombre de usuario y dirección de correo electrónico sobre otras bases legales, como se describe a continuación. - * Si tienes una Cuenta paga con nosotros, recopilamos y procesamos más [Información de pago](#payment-information) sobre la base de la ejecución de ese contrato. - * Cuando compras o vendes una aplicación listada en nuestro Marketplace o, cuando envías o recibes fondos a través del Programa GitHub Sponsors, procesamos la [Información de pago](#payment-information) y elementos adicionales para realizar el contrato que se aplica a esos servicios. -- Consentimiento: - * Dependemos de tu consentimiento para utilizar tu Información personal del usuario en las siguientes circunstancias: cuando completas la información en tu [perfil de usuario](https://github.com/settings/admin); cuando decides participar en una capacitación de GitHub, proyecto de investigación, programa beta o encuesta; y con fines de marketing cuando corresponda. Toda esta Información personal del Usuario es completamente opcional, y tienes la capacidad de acceder a ella, modificarla y eliminarla en cualquier momento. Aunque no puedes eliminar tu dirección de correo electrónico por completo, puedes volverlo privado. Puedes retirar tu consentimiento en cualquier momento. -- Intereses legítimos: - * En general, el recordatorio del procesamiento de Información personal del usuario que hacemos es necesario con fines de nuestro legítimo interés, por ejemplo, con fines de cumplimiento legal, fines de seguridad o para mantener la permanente confidencialidad, integridad, disponibilidad y resistencia de los sistemas, el sitio web y el Servicio de GitHub. -- Si quieres solicitar la eliminación de datos que procesamos sobre la base del consentimiento u objetar el procesamiento de la información personal que hacemos, utiliza nuestro [Formulario de contacto sobre Privacidad](https://support.github.com/contact/privacy). +- Contract Performance: + * When you create a GitHub Account, you provide your [Registration Information](#registration-information). We require this information for you to enter into the Terms of Service agreement with us, and we process that information on the basis of performing that contract. We also process your username and email address on other legal bases, as described below. + * If you have a paid Account with us, we collect and process additional [Payment Information](#payment-information) on the basis of performing that contract. + * When you buy or sell an application listed on our Marketplace or, when you send or receive funds through the GitHub Sponsors Program, we process [Payment Information](#payment-information) and additional elements in order to perform the contract that applies to those services. +- Consent: + * We rely on your consent to use your User Personal Information under the following circumstances: when you fill out the information in your [user profile](https://github.com/settings/admin); when you decide to participate in a GitHub training, research project, beta program, or survey; and for marketing purposes, where applicable. All of this User Personal Information is entirely optional, and you have the ability to access, modify, and delete it at any time. While you are not able to delete your email address entirely, you can make it private. You may withdraw your consent at any time. +- Legitimate Interests: + * Generally, the remainder of the processing of User Personal Information we perform is necessary for the purposes of our legitimate interest, for example, for legal compliance purposes, security purposes, or to maintain ongoing confidentiality, integrity, availability, and resilience of GitHub’s systems, Website, and Service. +- If you would like to request deletion of data we process on the basis of consent or if you object to our processing of personal information, please use our [Privacy contact form](https://support.github.com/contact/privacy). -## Cómo compartimos la información que recopilamos +## How we share the information we collect -Podemos compartir tu Información personal del usuario con terceros en alguna de las siguientes circunstancias: +We may share your User Personal Information with third parties under one of the following circumstances: -### Con tu consentimiento -Compartimos tu Información Personal del Usuario, si lo consientes, después de dejarte saber qué información será compartida, con quién y por qué. Por ejemplo, si compras una aplicación detallada en nuestro Mercado, compartimos tu nombre de usuario para permitirle al Programador de la aplicación que te proporcione los servicios. Asimismo, te puedes dirigir a nosotros a través de tus acciones en GitHub para compartir tu Información personal del usuario. Por ejemplo, si te unes a una Organización, indicas tu intención de proporcionarle al usuario de la Organización la capacidad de ver tu actividad en el registro de acceso de la Organización. +### With your consent +We share your User Personal Information, if you consent, after letting you know what information will be shared, with whom, and why. For example, if you purchase an application listed on our Marketplace, we share your username to allow the application Developer to provide you with services. Additionally, you may direct us through your actions on GitHub to share your User Personal Information. For example, if you join an Organization, you indicate your willingness to provide the owner of the Organization with the ability to view your activity in the Organization’s access log. -### Con proveedores de servicios -Compartimos información personal del usuario con un número limitado de proveedores de servicios que la procesan en nuestro nombre para proporcionar o mejorar nuestro servicio, y quienes han aceptado restricciones de privacidad similares a las de nuestra Declaración de Privacidad firmando acuerdos de protección de datos o haciendo compromisos similares. Nuestros proveedores de servicio realizan el procesamiento de pagos, la emisión de tickets de soporte técnico del cliente, la transmisión de datos de red, la seguridad y otros servicios similares. Mientras GitHub procesa toda la Información Personal del Usuario en los Estados Unidos, nuestros proveedores de servicios pueden procesar datos fuera de los Estados Unidos o de la Unión Europea. Si te gustaría saber quiénes son nuestros proveedores de servicios, por favor consulta nuestra página sobre nuestros [Subprocesadores](/github/site-policy/github-subprocessors-and-cookies). +### With service providers +We share User Personal Information with a limited number of service providers who process it on our behalf to provide or improve our Service, and who have agreed to privacy restrictions similar to the ones in our Privacy Statement by signing data protection agreements or making similar commitments. Our service providers perform payment processing, customer support ticketing, network data transmission, security, and other similar services. While GitHub processes all User Personal Information in the United States, our service providers may process data outside of the United States or the European Union. If you would like to know who our service providers are, please see our page on [Subprocessors](/github/site-policy/github-subprocessors-and-cookies). -### Con fines de seguridad -Si eres un miembro de una organización, GitHub puede compartir tu nombre de usuario, [Información de Uso](#usage-information), e [Información de Dispositivo](#device-information) asociadas con dicha organización con un propietario y/o administrador de la misma al punto en que tal información se proporcione únicamente para investigar o responder a un incidente de seguridad que afecte o ponga en riesgo la seguridad de esta organización en particular. +### For security purposes +If you are a member of an Organization, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) associated with that Organization with an owner and/or administrator of the Organization, to the extent that such information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -### Para divulgación legal -GitHub se esfuerza por conseguir transparencia en el cumplimiento de los procesos legales y las obligaciones legales. A menos que no lo permita la ley o una orden judicial, o en circunstancias únicas y apremiantes, hacemos un esfuerzo razonable para notificarles a los usuarios cualquier divulgación obligatoria o exigida de su información personal. Si así se requiere, GitHub puede divulgar Información personal del usuario u otra información que recopilamos acerca de ti para cumplir con la ley y responder una citación válida, orden judicial, orden de allanamiento u orden gubernamental similar, o cuando consideremos de buena fe que la divulgación es necesaria para cumplir con nuestras obligaciones legales, para proteger nuestra propiedad o nuestros derechos, los de terceros o los del público en general. +### For legal disclosure +GitHub strives for transparency in complying with legal process and legal obligations. Unless prevented from doing so by law or court order, or in rare, exigent circumstances, we make a reasonable effort to notify users of any legally compelled or required disclosure of their information. GitHub may disclose User Personal Information or other information we collect about you to law enforcement if required in response to a valid subpoena, court order, search warrant, a similar government order, or when we believe in good faith that disclosure is necessary to comply with our legal obligations, to protect our property or rights, or those of third parties or the public at large. -Para obtener más información acerca de la divulgación en respuesta a solicitudes legales, consulta nuestros [Lineamientos para las Solicitudes Legales de Datos de Usuario](/github/site-policy/guidelines-for-legal-requests-of-user-data). +For more information about our disclosure in response to legal requests, see our [Guidelines for Legal Requests of User Data](/github/site-policy/guidelines-for-legal-requests-of-user-data). -### Cambios por control o venta -Podemos compartir Información Personal del Usuario si estamos involucrados en una fusión, venta o adquisición de entidades corporativas o unidades de negocio. Si ocurre cualquier cambio de propiedad, nos aseguraremos de que sea conforme a los términos que preservan la confidencialidad de la Información personal del usuario y, antes de hacer cualquier transferencia de tu Información personal del usuario, lo notificaremos en nuestro Sitio web o por correo electrónico. La organización que reciba alguna Información personal del usuario tendrá que respetar cualquier compromiso que hayamos asumido en nuestra Declaración de privacidad o Términos del Servicio. +### Change in control or sale +We may share User Personal Information if we are involved in a merger, sale, or acquisition of corporate entities or business units. If any such change of ownership happens, we will ensure that it is under terms that preserve the confidentiality of User Personal Information, and we will notify you on our Website or by email before any transfer of your User Personal Information. The organization receiving any User Personal Information will have to honor any promises we made in our Privacy Statement or Terms of Service. -### Información agregada y sin indentificación personal -Compartimos cierta información agregada y no identificativa personal con otros acerca de cómo nuestros usuarios, de forma colectiva, utilice GitHub, o cómo nuestros usuarios responden a nuestras otras ofertas, tales como nuestras conferencias o eventos. +### Aggregate, non-personally identifying information +We share certain aggregated, non-personally identifying information with others about how our users, collectively, use GitHub, or how our users respond to our other offerings, such as our conferences or events. -**No** vendemos tu Información personal del usuario con fines monetarios o en función de consideraciones de otro tipo. +We **do not** sell your User Personal Information for monetary or other consideration. -Tenga en cuenta: La Ley de Privacidad del Consumidor de California de 2018 (“CCPA”) les exige a las empresas que expliciten en su política de seguridad si divulgan o no información personal a cambio de retribuciones monetarias u otras consideraciones de valor. Si bien la CCPA solo cubre a los residentes de California, extenderemos voluntariamente a _todos_ nuestros usuarios los derechos nucleares de ésta para que las personas controlen sus datos, y no solamente a los residentes de California. Puedes conocer más acerca de la CCPA y de cómo cumplimos con sus disposiciones [aquí](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). +Please note: The California Consumer Privacy Act of 2018 (“CCPA”) requires businesses to state in their privacy policy whether or not they disclose personal information in exchange for monetary or other valuable consideration. While CCPA only covers California residents, we voluntarily extend its core rights for people to control their data to _all_ of our users, not just those who live in California. You can learn more about the CCPA and how we comply with it [here](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). -## Contenidos del repositorio +## Repository contents -### Acceso a repositorios privados +### Access to private repositories -Si tu repositorio es privado, tú controlas el acceso a tu Contenido. Si incluyes información personal del usuario o información personal confidencial, dicha información solo GitHub puede ingresar a ella de acuerdo con la presente declaración de privacidad. El personal de GitHub [no ingresa al contenido del repositorio privado](/github/site-policy/github-terms-of-service#e-private-repositories) excepto -- con fines de seguridad -- para ayudar al propietario del repositorio con un asunto de soporte -- para mantener la integridad del Servicio -- para cumplir con nuestras obligaciones legales -- si tenemos motivos para creer que los contenidos están en violación de la ley, o -- con tu consentimiento. +If your repository is private, you control the access to your Content. If you include User Personal Information or Sensitive Personal Information, that information may only be accessible to GitHub in accordance with this Privacy Statement. GitHub personnel [do not access private repository content](/github/site-policy/github-terms-of-service#e-private-repositories) except for +- security purposes +- to assist the repository owner with a support matter +- to maintain the integrity of the Service +- to comply with our legal obligations +- if we have reason to believe the contents are in violation of the law, or +- with your consent. -Sin embargo, si bien generalmente no buscamos contenido en tus repositorios, es posible que exploremos nuestros servidores y contenido para detectar determinados tokens o firmas de seguridad, malware activo conocido, vulnerabilidades conocidas en las dependencias u otro contenido que se sabe que viola nuestros términos de servicio, como contenido violento extremista o terrorista o imágenes de explotación infantil, basada en técnicas de huellas dactilares algorítmicas (colectivamente, "escaneo automatizado"). Nuestros términos de servicio ofrecen más detalles sobre [repositorios privados](/github/site-policy/github-terms-of-service#e-private-repositories). +However, while we do not generally search for content in your repositories, we may scan our servers and content to detect certain tokens or security signatures, known active malware, known vulnerabilities in dependencies, or other content known to violate our Terms of Service, such as violent extremist or terrorist content or child exploitation imagery, based on algorithmic fingerprinting techniques (collectively, "automated scanning"). Our Terms of Service provides more details on [private repositories](/github/site-policy/github-terms-of-service#e-private-repositories). -Ten en cuenta que puedes optar por inhabilitar cierto acceso a tus repositorios privados que están habilitados por defecto como parte de la prestación del servicio (por ejemplo, un escaneo automatizado necesario para habilitar las alertas del gráfico de dependencias y del Dependabot). +Please note, you may choose to disable certain access to your private repositories that is enabled by default as part of providing you with the Service (for example, automated scanning needed to enable Dependency Graph and Dependabot alerts). -GitHub proporcionará un aviso con respecto a nuestro acceso al contenido del repositorio privado, a excepción de [ divulgación legal](/github/site-policy/github-privacy-statement#for-legal-disclosure), para cumplir con nuestras obligaciones legales o cuando se limite a los requisitos de la ley, para el escaneo automatizado o en respuesta a una amenaza de seguridad u otro riesgo para la seguridad. +GitHub will provide notice regarding our access to private repository content, unless [for legal disclosure](/github/site-policy/github-privacy-statement#for-legal-disclosure), to comply with our legal obligations, or where otherwise bound by requirements under law, for automated scanning, or if in response to a security threat or other risk to security. -### Repositorios públicos +### Public repositories -Si tu repositorio es público, cualquier persona puede ver los contenidos. Si incluyes información personal del usuario, [información personal confidencial](https://gdpr-info.eu/art-9-gdpr/)o información confidencial, como direcciones de correo electrónico o contraseñas, en tu repositorio público, esa información puede ser indexada por los motores de búsqueda o utilizada por terceros. +If your repository is public, anyone may view its contents. If you include User Personal Information, [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/), or confidential information, such as email addresses or passwords, in your public repository, that information may be indexed by search engines or used by third parties. -Por favor, consulta más sobre la [Información Personal del Usuario en los repositorios públicos](/github/site-policy/github-privacy-statement#public-information-on-github). +Please see more about [User Personal Information in public repositories](/github/site-policy/github-privacy-statement#public-information-on-github). -## Otra información importante +## Other important information -### Información pública en GitHub +### Public information on GitHub -Muchos de los servicios y características de GitHub están orientados al público. Si tu contenido es público, los terceros pueden acceder y utilizarlo de acuerdo con nuestros Términos de servicio, como ver tu perfil o los repositorios o extraer datos por medio de nuestra API. Nosotros no vendemos ese contenido; es tuyo. Sin embargo, permitimos que terceros, como organizaciones de investigación o archivos, compilen información de GitHub orientada al público. Se ha sabido que otros terceros, como corredores de datos, también han extraído y compilado información de GitHub. +Many of GitHub services and features are public-facing. If your content is public-facing, third parties may access and use it in compliance with our Terms of Service, such as by viewing your profile or repositories or pulling data via our API. We do not sell that content; it is yours. However, we do allow third parties, such as research organizations or archives, to compile public-facing GitHub information. Other third parties, such as data brokers, have been known to scrape GitHub and compile data as well. -Tu Información personal del usuario, asociada con tu contenido, puede ser recopilada por terceros en estas compilaciones de datos de GitHub. Si no quieres que tu información personal de usuario aparezca en las compilaciones de los datos de GitHub de terceros, por favor no hagas tu Información Personal de Usuario disponible públicamente y asegúrate de [configurar tu dirección de correo electrónico en tu perfil de usuario para que sea privada](https://github.com/settings/emails), así como en tu [configuración de confirmaciones de git](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). Actualmente configuramos la dirección de correo electrónico de los usuarios como privada por defecto, pero es posible que los usuarios de GitHub heredados necesiten actualizar sus configuraciones. +Your User Personal Information associated with your content could be gathered by third parties in these compilations of GitHub data. If you do not want your User Personal Information to appear in third parties’ compilations of GitHub data, please do not make your User Personal Information publicly available and be sure to [configure your email address to be private in your user profile](https://github.com/settings/emails) and in your [git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). We currently set Users' email address to private by default, but legacy GitHub Users may need to update their settings. -Si quisieras compilar datos de GitHub, debes cumplir con nuestras condiciones de servicio con respecto al [uso de la información](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) y la [privacidad](/github/site-policy/github-acceptable-use-policies#7-privacy) y solo podrás utilizar la información personal de usuarios de cara al público que obtengas para el propósito para el que nuestro usuario la autorizó. Por ejemplo, cuando un usuario de GitHub ha hecho que una dirección de correo electrónico esté orientada al público con el fin de identificación y atribución, no uses esa dirección de correo electrónico con el fin de enviar correos electrónicos no solicitados a los usuarios o vender información personal del usuario, por ejemplo, reclutadores, cazatalentos y bolsas de trabajo o para publicidad comercial. Esperamos que protejas de manera razonable cualquier Información Personal de Usuario que hayas reunido de GitHub y respondas de inmediato a las quejas, las solicitudes de eliminación y las solicitudes de "no contactar" que haga GitHub u otros usuarios de GitHub. +If you would like to compile GitHub data, you must comply with our Terms of Service regarding [information usage](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) and [privacy](/github/site-policy/github-acceptable-use-policies#7-privacy), and you may only use any public-facing User Personal Information you gather for the purpose for which our user authorized it. For example, where a GitHub user has made an email address public-facing for the purpose of identification and attribution, do not use that email address for the purposes of sending unsolicited emails to users or selling User Personal Information, such as to recruiters, headhunters, and job boards, or for commercial advertising. We expect you to reasonably secure any User Personal Information you have gathered from GitHub, and to respond promptly to complaints, removal requests, and "do not contact" requests from GitHub or GitHub users. -Del mismo modo, los proyectos en GitHub pueden incluir Información Personal de Usuario disponible públicamente como parte del proceso de colaboración. Si tienes alguna queja sobre cualquier tipo de Información Personal de Usuario en GitHub, por favor, consulta nuestra sección de [resolución de quejas](/github/site-policy/github-privacy-statement#resolving-complaints). +Similarly, projects on GitHub may include publicly available User Personal Information collected as part of the collaborative process. If you have a complaint about any User Personal Information on GitHub, please see our section on [resolving complaints](/github/site-policy/github-privacy-statement#resolving-complaints). -### Organizaciones +### Organizations -Puedes indicar, a través de tus acciones en GitHub, que estás dispuesto a compartir tu Información Personal de Usuario. Si colaboras o te conviertes en miembro de una Organización, los propietarios de su cuenta podrán recibir tu Información personal del usuario. Cuando aceptas una invitación a una Organización, se te notificará de los tipos de información que los propietarios pueden ver (para obtener más información, consulta la sección [Acerca de la Membrecía de Organización](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). Si aceptas una invitación a una organización con un [dominio verificado](/organizations/managing-organization-settings/verifying-your-organizations-domain), entonces los propietarios de dicha organización podrán ver tu(s) dirección(es) de correo electrónico completa(s) dentro de l(los) dominio(s) verificado(s) de la organización. +You may indicate, through your actions on GitHub, that you are willing to share your User Personal Information. If you collaborate on or become a member of an Organization, then its Account owners may receive your User Personal Information. When you accept an invitation to an Organization, you will be notified of the types of information owners may be able to see (for more information, see [About Organization Membership](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). If you accept an invitation to an Organization with a [verified domain](/organizations/managing-organization-settings/verifying-your-organizations-domain), then the owners of that Organization will be able to see your full email address(es) within that Organization's verified domain(s). -Por favor, nota que GitHub podría compartir tu nombre de usuario, [información de uso](#usage-information). e [Información de Dispositivo](#device-information) con el(los) propietario(s) de la organización a la cual perteneces, en medida en que tu Información Personal de Usuario se proporcione únicamente para investigar o responder a incidentes de seguridad que afecten o pongan en riesgo la seguridad de esta organización en particular. +Please note, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) with the owner(s) of the Organization you are a member of, to the extent that your User Personal Information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -Si colaboras con, o te conviertes en miembro de una cuenta que ha aceptado las [Condiciones de Servicio Corporativas](/github/site-policy/github-corporate-terms-of-service) y con una Adenda de Protección de Datos (DPA) para esta Declaración de Privacidad, entonces, dicha DPA regirá sobre los otros instrumentos en caso de que haya un conflicto con esta Declaración de Privacidad y con la DPA con respecto a tu actividad en la cuenta. +If you collaborate on or become a member of an Account that has agreed to the [Corporate Terms of Service](/github/site-policy/github-corporate-terms-of-service) and a Data Protection Addendum (DPA) to this Privacy Statement, then that DPA governs in the event of any conflicts between this Privacy Statement and the DPA with respect to your activity in the Account. -Contacta a los propietarios de la cuenta para obtener más información sobre la manera en que procesan tu Información personal del usuario y los modos de acceder, actualizar, modificar o borrar la Información personal del usuario almacenada en esa cuenta. +Please contact the Account owners for more information about how they might process your User Personal Information in their Organization and the ways for you to access, update, alter, or delete the User Personal Information stored in the Account. -## Servicios adicionales +## Additional services -### Aplicaciones de terceros +### Third party applications -Tienes la opción de habilitar o agregar aplicaciones de terceros, conocidas como "Productos de programador", a tu cuenta. Estos Productos de Desarrollador no son necesarios para usar GitHub. Compartirás tu Información personal del usuario a terceros cuando nos lo solicites, como al comprar un Producto de programador de Marketplace; sin embargo, eres responsable del uso del Producto de programador de un tercero y por la cantidad de Información personal del usuario que eliges compartir con este. Puede revisar nuestra [documentación de API](/rest/reference/users) para ver qué información se proporciona cuando te autenticas en un Producto de Desarrollador usando tu perfil de GitHub. +You have the option of enabling or adding third-party applications, known as "Developer Products," to your Account. These Developer Products are not necessary for your use of GitHub. We will share your User Personal Information with third parties when you ask us to, such as by purchasing a Developer Product from the Marketplace; however, you are responsible for your use of the third-party Developer Product and for the amount of User Personal Information you choose to share with it. You can check our [API documentation](/rest/reference/users) to see what information is provided when you authenticate into a Developer Product using your GitHub profile. -### Páginas de GitHub +### GitHub Pages -Si creas un sitio web de Páginas de GitHub, es tu responsabilidad publicar una declaración de privacidad que describa con precisión cómo recolectar, usar y compartir información personal y otra información de visitantes, y cómo cumples con las leyes, normas y reglamentos de privacidad de datos vigentes. Ten en cuenta que GitHub puede recopilar Información personal del usuario de los visitantes a tu sitio web de Páginas de GitHub incluyendo registros de las direcciones IP del visitante, para mantener la seguridad e integridad del sitio web y del servicio. +If you create a GitHub Pages website, it is your responsibility to post a privacy statement that accurately describes how you collect, use, and share personal information and other visitor information, and how you comply with applicable data privacy laws, rules, and regulations. Please note that GitHub may collect User Personal Information from visitors to your GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the security and integrity of the Website and the Service. -### Aplicaciones de GitHub +### GitHub applications -También puedes agregar aplicaciones desde GitHub, tales como nuestra aplicación de Escritorio, nuestra aplicación de Atom, u otras aplicaciones y características de las cuentas, a tu propia cuenta. Estas aplicaciones tienen sus propios términos y pueden recopilar diferentes tipos de Información personal del usuario; sin embargo, todas las aplicaciones de GitHub están sujetas a esta Declaración de Privacidad, y siempre recogeremos la cantidad mínima de Información personal del usuario necesaria y la usaremos únicamente para el propósito por el que nos la diste. +You can also add applications from GitHub, such as our Desktop app, our Atom application, or other application and account features, to your Account. These applications each have their own terms and may collect different kinds of User Personal Information; however, all GitHub applications are subject to this Privacy Statement, and we collect the amount of User Personal Information necessary, and use it only for the purpose for which you have given it to us. -## Cómo puedes acceder y controlar la información que recopilamos +## How you can access and control the information we collect -Si ya eres un Usuario de GitHub, puedes acceder, actualizar, alterar o borrar tu información de perfil de usuario básico si [editas tu perfil de usuario](https://github.com/settings/profile) o contactas al [Soporte de GitHub](https://support.github.com/contact?tags=docs-policy). Puedes controlar la información que recopilamos sobre ti si limitas la información de tu perfil, manteniendo tu información actualizada o contactando al [Soporte de GitHub](https://support.github.com/contact?tags=docs-policy). +If you're already a GitHub user, you may access, update, alter, or delete your basic user profile information by [editing your user profile](https://github.com/settings/profile) or contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). You can control the information we collect about you by limiting what information is in your profile, by keeping your information current, or by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -So GitHub procesa información sobre ti, tal como la información que [GitHub recibe de terceros](#information-we-collect-from-third-parties) y no tienes una cuenta, entonces puedes, de acuerdo con la ley aplicable, acceder, actualizar, alterar, borrar u objetar el procesamiento de tu información personal si contactas al [Soporte de GitHub](https://support.github.com/contact?tags=docs-policy). +If GitHub processes information about you, such as information [GitHub receives from third parties](#information-we-collect-from-third-parties), and you do not have an account, then you may, subject to applicable law, access, update, alter, delete, or object to the processing of your personal information by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -### Portabilidad de datos +### Data portability -Como usuario de GitHub, siempre puedes llevar tus datos contigo. Puedes [clonar tus repositorios en tu escritorio](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop), por ejemplo, o puedes utilizar nuestras [herramientas de portabilidad de datos](https://developer.github.com/changes/2018-05-24-user-migration-api/) para descargar la información que tenemos sobre ti. +As a GitHub User, you can always take your data with you. You can [clone your repositories to your desktop](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop), for example, or you can use our [Data Portability tools](https://developer.github.com/changes/2018-05-24-user-migration-api/) to download information we have about you. -### Retención de datos y eliminación de datos +### Data retention and deletion of data -Generalmente, GitHub conserva la Información personal del usuario mientras tu cuenta esté activa o cuando sea necesaria para brindarte servicios. +Generally, GitHub retains User Personal Information for as long as your account is active or as needed to provide you services. -Si deseas cancelar tu cuenta o eliminar tu Información personal del usuario, puedes hacerlo en tu perfil de usuario [](https://github.com/settings/admin). Conservamos y utilizamos tu información según se necesita para cumplir con nuestras obligaciones legales, resolver disputas y hacer cumplir nuestros acuerdos, pero salvo requisitos legales, eliminaremos tu perfil completo (dentro de lo razonable) dentro de los 90 días siguientes a tu solicitud. Puedes contactar al [Soporte de GitHub](https://support.github.com/contact?tags=docs-policy) para solicitar que se borren los datos que procesamos dentro de los siguientes 30 días con base en el consentimiento. +If you would like to cancel your account or delete your User Personal Information, you may do so in your [user profile](https://github.com/settings/admin). We retain and use your information as necessary to comply with our legal obligations, resolve disputes, and enforce our agreements, but barring legal requirements, we will delete your full profile (within reason) within 90 days of your request. You may contact [GitHub Support](https://support.github.com/contact?tags=docs-policy) to request the erasure of the data we process on the basis of consent within 30 days. -Después de que una cuenta se ha eliminado, ciertos datos, tales como contribuciones a los repositorios de otros usuarios y comentarios en asuntos ajenos, permanecerán. Sin embargo, eliminaremos o desidentificaremos tu Información personal del usuario, incluyendo tu nombre de usuario y dirección de correo electrónico del campo de autor de propuestas, solicitudes de extracción y comentarios al asociarlos con un [usuario fantasma](https://github.com/ghost). +After an account has been deleted, certain data, such as contributions to other Users' repositories and comments in others' issues, will remain. However, we will delete or de-identify your User Personal Information, including your username and email address, from the author field of issues, pull requests, and comments by associating them with a [ghost user](https://github.com/ghost). -Una vez dicho esto, la dirección de correo electrónico que suministraste [a través de tu configuración de confirmaciones de Git](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) siembre se asociará con tus confirmaciones en el sistema de Git. Si eliges hacer tu dirección de correo electrónico privada, también deberías actualizar la configuración de tu confirmación de cambios de Git. No podemos cambiar o eliminar datos en el historial de confirmación de Git (el software de Git está diseñado para mantener un registro) pero te permitimos controlar qué información pones en ese registro. +That said, the email address you have supplied [via your Git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) will always be associated with your commits in the Git system. If you choose to make your email address private, you should also update your Git commit settings. We are unable to change or delete data in the Git commit history — the Git software is designed to maintain a record — but we do enable you to control what information you put in that record. -## Uso de cookies y seguimiento +## Our use of cookies and tracking ### Cookies -GitHub solo utiliza las cookies estrictamente necesarias. Las cookies son pequeños archivos de texto que los sitios web almacenan a menudo en discos duros o dispositivos móviles de los visitantes. +GitHub only uses strictly necessary cookies. Cookies are small text files that websites often store on computer hard drives or mobile devices of visitors. -Utilizamos cookies únicamente para proporcionar, asegurar y mejorar nuestro servicio. Por ejemplo, las utilizamos para mantenerte firmado, recordar tus preferencias, identificar tu dispositivo para propósitos de seguridad, analizar tu uso de nuestro servicio, compilar reportes estadísticos y proporcionar información para el desarrollo futuro de GitHub. Utilizamos nuestras propias cookies para propósitos de analítica, pero no utilizamos ningún proveedor de servicios de analítica tercero. +We use cookies solely to provide, secure, and improve our service. For example, we use them to keep you logged in, remember your preferences, identify your device for security purposes, analyze your use of our service, compile statistical reports, and provide information for future development of GitHub. We use our own cookies for analytics purposes, but do not use any third-party analytics service providers. -Al usar nuestro servicio, aceptas que podamos colocar este tipo de cookies en tu computadora o dispositivo. Si desactivas la capacidad de tu navegador o dispositivo para aceptar estas cookies, no podrás ingresar o utilizar nuestro servicio. +By using our service, you agree that we can place these types of cookies on your computer or device. If you disable your browser or device’s ability to accept these cookies, you will not be able to log in or use our service. -Proporcionamos más información acerca de las [cookies en GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) en nuestra página de [Subprocesadores y cookies de GitHub](/github/site-policy/github-subprocessors-and-cookies), en la cual se describen las cookies que configuramos, las necesidades que tenemos para utilizarlas, y la vigencia de las mismas. +We provide more information about [cookies on GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) on our [GitHub Subprocessors and Cookies](/github/site-policy/github-subprocessors-and-cookies) page that describes the cookies we set, the needs we have for those cookies, and the expiration of such cookies. ### DNT -"[No Rastrear](https://www.eff.org/issues/do-not-track)" (DNT, por sus siglas en inglés) es una preferencia de privacidad que puedes configurar en tu buscador si no quieres que los servicios en línea recolecten y compartan ciertos tipos de información acerca de tu actividad en línea desde los servicios de rastreo de terceros. GitHub responde a las señales DNT del navegador y sigue el estándar [W3C para responder a las señales DNT](https://www.w3.org/TR/tracking-dnt/). Si deseas configurar tu navegador para que indique que no deseas que se rastree, revisa la documentación de tu navegador acerca de cómo habilitar esa señal. También hay buenas aplicaciones que bloquean el seguimiento en línea, como [Privacy Badger](https://privacybadger.org/). +"[Do Not Track](https://www.eff.org/issues/do-not-track)" (DNT) is a privacy preference you can set in your browser if you do not want online services to collect and share certain kinds of information about your online activity from third party tracking services. GitHub responds to browser DNT signals and follows the [W3C standard for responding to DNT signals](https://www.w3.org/TR/tracking-dnt/). If you would like to set your browser to signal that you would not like to be tracked, please check your browser's documentation for how to enable that signal. There are also good applications that block online tracking, such as [Privacy Badger](https://privacybadger.org/). -## Cómo asegura GitHub tu información +## How GitHub secures your information -GitHub toma todas las medidas razonablemente necesarias para proteger la Información personal del usuario contra accesos no autorizados, modificación o destrucción; mantener la exactitud de los datos y ayudar a asegurar el uso adecuado de la Información personal del usuario. +GitHub takes all measures reasonably necessary to protect User Personal Information from unauthorized access, alteration, or destruction; maintain data accuracy; and help ensure the appropriate use of User Personal Information. -GitHub aplica un programa escrito de información de seguridad. Nuestro programa: -- se alinea con los marcos reconocidos de la industria; -- incluye protecciones de seguridad diseñadas de manera razonable para proteger la confidencialidad, la integridad, la disponibilidad y la flexibilidad de los datos de usuarios; -- es adecuado para la naturaleza, el tamaño y la complejidad de las operaciones comerciales de GitHub; -- incluye procesos de respuesta frente a un incidente y notificación de filtración de datos; y -- cumple con las leyes y regulaciones vigentes relacionadas a la seguridad de la información en las regiones geográficas donde GitHub realiza operaciones. +GitHub enforces a written security information program. Our program: +- aligns with industry recognized frameworks; +- includes security safeguards reasonably designed to protect the confidentiality, integrity, availability, and resilience of our Users' data; +- is appropriate to the nature, size, and complexity of GitHub’s business operations; +- includes incident response and data breach notification processes; and +- complies with applicable information security-related laws and regulations in the geographic regions where GitHub does business. -En caso de una filtración de datos que afecte tu Información personal del usuario, actuaremos rápidamente para mitigar el impacto de una infracción y notificar a los usuarios afectados sin demoras indebidas. +In the event of a data breach that affects your User Personal Information, we will act promptly to mitigate the impact of a breach and notify any affected Users without undue delay. -La transmisión de datos en GitHub es cifrada usando SSH, HTTPS (TLS) y el contenido del repositorio de git es cifrado en reposo. Administramos nuestras propias jaulas y racks en centros de datos de alto nivel con un alto nivel de seguridad física y de red, y cuando los datos se almacenan con un proveedor de almacenamiento de terceros se cifran. +Transmission of data on GitHub is encrypted using SSH, HTTPS (TLS), and git repository content is encrypted at rest. We manage our own cages and racks at top-tier data centers with high level of physical and network security, and when data is stored with a third-party storage provider, it is encrypted. -Ningún método de transmisión, o método de almacenamiento electrónico, es 100 % seguro. Por lo tanto, no podemos garantizar su seguridad absoluta. Para obtener más información, consulta nuestras [divulgaciones de seguridad](https://github.com/security). +No method of transmission, or method of electronic storage, is 100% secure. Therefore, we cannot guarantee its absolute security. For more information, see our [security disclosures](https://github.com/security). -## Prácticas de privacidad mundiales de GitHub +## GitHub's global privacy practices -GitHub, Inc. and, for those in the European Economic Area, the United Kingdom, and Switzerland, GitHub B. V. are the controllers responsible for the processing of your personal information in connection with the Service, except (a) with respect to personal information that was added to a repository by its contributors, in which case the owner of that repository is the controller and GitHub is the processor (or, if the owner acts as a processor, GitHub will be the subprocessor); or (b) when you and GitHub have entered into a separate agreement that covers data privacy (such as a Data Processing Agreement). +GitHub, Inc. and, for those in the European Economic Area, the United Kingdom, and Switzerland, GitHub B.V. are the controllers responsible for the processing of your personal information in connection with the Service, except (a) with respect to personal information that was added to a repository by its contributors, in which case the owner of that repository is the controller and GitHub is the processor (or, if the owner acts as a processor, GitHub will be the subprocessor); or (b) when you and GitHub have entered into a separate agreement that covers data privacy (such as a Data Processing Agreement). -Nuestras direcciones físicas son: +Our addresses are: - GitHub, Inc., 88 Colin P. Kelly Jr. Street, San Francisco, CA 94107. - GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdam, The Netherlands. -Almacenamos y procesamos la información que recolectamos en los Estados Unidos de acuerdo con esta Declaración de Privacidad, aunque nuestros proveedores de servicios podrían almacenar y procesar los datos fuera de los Estados Unidos. Sin embargo, entendemos que tenemos usuarios de diferentes países y regiones con diferentes expectativas de privacidad e intentamos satisfacer esas necesidades incluso cuando los Estados Unidos no tienen el mismo marco de privacidad que otros países. +We store and process the information that we collect in the United States in accordance with this Privacy Statement, though our service providers may store and process data outside the United States. However, we understand that we have Users from different countries and regions with different privacy expectations, and we try to meet those needs even when the United States does not have the same privacy framework as other countries. -Proporcionamos el mismo estándar alto de protección de privacidad—como se describe en la presente Declaración de Privacidad—a todos nuestros usuarios en todo el mundo, sin importar su país de origen o ubicación, y estamos orgullosos de los niveles de notificaciones, elección, responsabilidad, seguridad, integridad de datos, acceso y recursos que proporcionamos. Trabajamos duro para cumplir con las leyes vigentes sobre privacidad de datos dondequiera que hagamos negocios, al trabajar con nuestro Oficial de Protección de Datos como parte de un equipo multifuncional que supervisa nuestros esfuerzos de cumplimiento de la privacidad. Además, si nuestros proveedores o afiliados tienen acceso a la Información personal del usuario, deben firmar acuerdos que los obliguen a cumplir con nuestras políticas de privacidad y con las leyes vigentes sobre privacidad de datos. +We provide the same high standard of privacy protection—as described in this Privacy Statement—to all our users around the world, regardless of their country of origin or location, and we are proud of the levels of notice, choice, accountability, security, data integrity, access, and recourse we provide. We work hard to comply with the applicable data privacy laws wherever we do business, working with our Data Protection Officer as part of a cross-functional team that oversees our privacy compliance efforts. Additionally, if our vendors or affiliates have access to User Personal Information, they must sign agreements that require them to comply with our privacy policies and with applicable data privacy laws. -En particular: +In particular: - - GitHub proporciona métodos claros de consentimiento sin ambigüedad, informado, específico y libremente dado en el momento de la recopilación de datos, cuando recopilamos tu Información personal del usuario utilizando el consentimiento como base. - - Solo recopilamos la cantidad mínima de Información personal del usuario necesaria para nuestros propósitos, a menos que decidas proporcionar más. Te animamos a que sólo nos proporciones la cantidad de datos que consideres oportuno compartir. - - Te ofrecemos métodos sencillos de acceso, modificación o eliminación de la Información personal del usuario que hemos recopilado, en los casos legalmente permitidos. - - Proporcionamos a nuestros usuarios aviso, elección, responsabilidad, seguridad y acceso con respecto a su Información personal del usuario y limitamos el propósito por el cual procesarla. También proporcionamos a nuestros usuarios un método de recurso y cumplimiento. + - GitHub provides clear methods of unambiguous, informed, specific, and freely given consent at the time of data collection, when we collect your User Personal Information using consent as a basis. + - We collect only the minimum amount of User Personal Information necessary for our purposes, unless you choose to provide more. We encourage you to only give us the amount of data you are comfortable sharing. + - We offer you simple methods of accessing, altering, or deleting the User Personal Information we have collected, where legally permitted. + - We provide our Users notice, choice, accountability, security, and access regarding their User Personal Information, and we limit the purpose for processing it. We also provide our Users a method of recourse and enforcement. ### Cross-border data transfers -GitHub procesa información personal tanto dentro como fuera de los Estados Unidos y se basa en las Cláusulas Contractuales Estándar como un mecanismo legal para transferir datos legalmente desde el Área Económica Europea, el Reino Unido y Suiza hacia los Estados Unidos. Adicionalmente, GitHub está certificado en los Marcos de Trabajo de Escudo de Privacidad de UE-U. S. A. y Suiza-U. S. A. Para conocer más sobre las transferencias de datos interfronterizas, consulta nuestras [Prácticas de Privacidad Globales](/github/site-policy/global-privacy-practices). +GitHub processes personal information both inside and outside of the United States and relies on Standard Contractual Clauses as the legally provided mechanism to lawfully transfer data from the European Economic Area, the United Kingdom, and Switzerland to the United States. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about our cross-border data transfers, see our [Global Privacy Practices](/github/site-policy/global-privacy-practices). -## Cómo nos comunicamos contigo +## How we communicate with you -Utilizamos tu dirección de correo electrónico para comunicarnos contigo, si estuviste de acuerdo con ello, **y solo por las razones con las que estuviste de acuerdo**. Por ejemplo, si contactas a nuestro equipo de Soporte con una solicitud, te responderemos por correo electrónico. Tienes mucho control sobre cómo se utiliza y comparte tu dirección de correo electrónico en y a través de GitHub. Puedes administrar tus preferencias de comunicación en tu perfil de usuario [](https://github.com/settings/emails). +We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. For example, if you contact our Support team with a request, we respond to you via email. You have a lot of control over how your email address is used and shared on and through GitHub. You may manage your communication preferences in your [user profile](https://github.com/settings/emails). -Por diseño, el sistema de control de versiones de Git asocia muchas acciones con la dirección de correo electrónico de un usuario, como mensajes de confirmación. No podemos cambiar muchos aspectos del sistema Git. Si deseas que tu dirección de correo electrónico siga siendo privada, incluso cuando estés comentando en los repositorios públicos, [puedes crear una dirección de correo electrónico privada en tu perfil de usuario](https://github.com/settings/emails). También deberías [actualizar tu configuración local de Git para utilizar tu dirección de correo electrónico privada](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). Esto no cambiará la forma en que nos pondremos en contacto contigo, pero afectará la manera en que otros te vean. Actualmente configuramos la dirección de correo electrónico de los usuarios de forma privada por defecto, pero es posible que los usuarios de GitHub heredados necesiten actualizar sus configuraciones. Por favor, consulta la información adicional sobre las direcciones de correo electrónico en los mensajes de confirmación [aquí](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). +By design, the Git version control system associates many actions with a User's email address, such as commit messages. We are not able to change many aspects of the Git system. If you would like your email address to remain private, even when you’re commenting on public repositories, [you can create a private email address in your user profile](https://github.com/settings/emails). You should also [update your local Git configuration to use your private email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). This will not change how we contact you, but it will affect how others see you. We set current Users' email address private by default, but legacy GitHub Users may need to update their settings. Please see more about email addresses in commit messages [here](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). -Dependiendo de tu [configuración de correo electrónico](https://github.com/settings/emails), GitHub puede enviar ocasionalmente correos electrónicos de notificación sobre los cambios en un repositorio que estás viendo, nuevas características, solicitudes de comentarios, cambios importantes en la política o para ofrecer asistencia al cliente. También enviamos correos electrónicos de marketing, basados en tus opciones y de acuerdo con las leyes y regulaciones vigentes. Hay un enlace "darse de baja" ubicado en la parte inferior de cada uno de los correos electrónicos de marketing que te enviamos. Ten en cuenta que no puedes optar por no recibir comunicaciones importantes de nosotros, como correos electrónicos de nuestro equipo de soporte o correos electrónicos del sistema, pero puedes configurar la configuración de las notificaciones en tu perfil para optar por no recibir otras comunicaciones. +Depending on your [email settings](https://github.com/settings/emails), GitHub may occasionally send notification emails about changes in a repository you’re watching, new features, requests for feedback, important policy changes, or to offer customer support. We also send marketing emails, based on your choices and in accordance with applicable laws and regulations. There's an “unsubscribe” link located at the bottom of each of the marketing emails we send you. Please note that you cannot opt out of receiving important communications from us, such as emails from our Support team or system emails, but you can configure your notifications settings in your profile to opt out of other communications. -Nuestros correos electrónicos pueden contener una etiqueta de píxeles, que es una pequeña imagen clara que puede decirnos si has abierto o no un correo electrónico y cuál es tu dirección IP. Utilizamos esta etiqueta de píxeles para que nuestro correo electrónico sea más efectivo para ti y para asegurarnos de que no te estamos enviando correo electrónico no deseado. +Our emails may contain a pixel tag, which is a small, clear image that can tell us whether or not you have opened an email and what your IP address is. We use this pixel tag to make our email more effective for you and to make sure we’re not sending you unwanted email. -## Resolver reclamos +## Resolving complaints -Si tienes inquietudes acerca de la forma en que GitHub está manejando tu Información personal del usuario, por favor haznos un comentario inmediatamente. Queremos ayudar. Puedes ponerte en contacto con nosotros completando el [Formulario de contacto de privacidad](https://support.github.com/contact/privacy). También puedes enviarnos un correo electrónico directamente a privacy@github.com con el asunto "Confirmaciones de privacidad". Responderemos rápidamente, dentro de los 45 días a más tardar. +If you have concerns about the way GitHub is handling your User Personal Information, please let us know immediately. We want to help. You may contact us by filling out the [Privacy contact form](https://support.github.com/contact/privacy). You may also email us directly at privacy@github.com with the subject line "Privacy Concerns." We will respond promptly — within 45 days at the latest. -También puedes ponerte en contacto directamente con nuestro Responsable de Protección de Datos. +You may also contact our Data Protection Officer directly. -| Nuestra casa central de los Estados Unidos | Nuestra oficina de la UE | -| ------------------------------------------ | ------------------------ | -| Oficial de Protección de Datos de GitHub | GitHub BV | -| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | -| San Francisco, CA 94107 | 1017 HL Amsterdam | -| Estados Unidos | Países Bajos | -| privacy@github.com | privacy@github.com | +| Our United States HQ | Our EU Office | +|---|---| +| GitHub Data Protection Officer | GitHub BV | +| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | +| San Francisco, CA 94107 | 1017 HL Amsterdam | +| United States | The Netherlands | +| privacy@github.com | privacy@github.com | -### Proceso de resolución de disputas +### Dispute resolution process -En el improbable caso de que surja una disputa entre tú y GitHub con respecto al manejo de tu Información personal del usuario, haremos todo lo posible por resolverla. Adicionalmente, si eres un residente de un estado miembro de la UE, tienes el derecho de emitir una queja con tu autoridad supervisora local, y podrías tener más [opciones](/github/site-policy/global-privacy-practices#dispute-resolution-process). +In the unlikely event that a dispute arises between you and GitHub regarding our handling of your User Personal Information, we will do our best to resolve it. Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority, and you might have more [options](/github/site-policy/global-privacy-practices#dispute-resolution-process). -## Cambios en tu Declaración de privacidad +## Changes to our Privacy Statement -Aunque es probable que la mayoría de los cambios sean mínimos, GitHub puede cambiar nuestra Declaración de privacidad de manera ocasional. Les notificaremos a los Usuarios acerca de los cambios materiales a esta Declaración de privacidad por medio de nuestro Sitio web, al menos, 30 días antes de que el cambio entre en vigencia a través de la publicación de un aviso en nuestra página de inicio o enviando un correo electrónico a la dirección principal de correo electrónico que se especifica en tu cuenta de GitHub. También actualizaremos nuestro [Repositorio de políticas del sitio](https://github.com/github/site-policy/), que realiza un seguimiento de todos los cambios de esta política. Para otros cambios en esta declaración de privacidad, invitamos a los usuarios a [consultar](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) o a revisar el repositorio de nuestra política del sitio con frecuencia. +Although most changes are likely to be minor, GitHub may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page or sending email to the primary email address specified in your GitHub account. We will also update our [Site Policy repository](https://github.com/github/site-policy/), which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to [watch](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) or to check our Site Policy repository frequently. -## Licencia +## License -La presente Declaración de privacidad está autorizada conforme a esta [licencia de Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/). Para obtener más detalles, consulta nuestro [repositorio de políticas del sitio](https://github.com/github/site-policy#license). +This Privacy Statement is licensed under this [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). For details, see our [site-policy repository](https://github.com/github/site-policy#license). -## Contactarse con GitHub -Las preguntas al respecto de la Declaración de privacidad de GitHub o de las prácticas de manejo de la información se deben realizar por medio de nuestro [Formulario de contacto de privacidad](https://support.github.com/contact/privacy). +## Contacting GitHub +Questions regarding GitHub's Privacy Statement or information practices should be directed to our [Privacy contact form](https://support.github.com/contact/privacy). -## Traducciones +## Translations -A continuación, aparecen traducciones de este documento a otros idiomas. En caso de cualquier conflicto, incertidumbre o aparente inconsistencia entre cualquiera de esas versiones y la versión en inglés, la versión en inglés es la versión que prima. +Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. -### Francés -Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(12.20.19)(FR).pdf) +### French +Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(07.22.20)(FR).pdf) -### Otras traducciones +### Other translations -Para las traducciones de esta declaración hacia otros idiomas, por favor visita [https://docs.github.com/](/) y selecciona el idioma desde el menú desplegable debajo de "Inglés". +For translations of this statement into other languages, please visit [https://docs.github.com/](/) and select a language from the drop-down menu under “English.” diff --git a/translations/es-ES/content/github/site-policy/github-subprocessors-and-cookies.md b/translations/es-ES/content/github/site-policy/github-subprocessors-and-cookies.md index 5fa9b40df4..03ca56894a 100644 --- a/translations/es-ES/content/github/site-policy/github-subprocessors-and-cookies.md +++ b/translations/es-ES/content/github/site-policy/github-subprocessors-and-cookies.md @@ -1,10 +1,10 @@ --- -title: Subprocesadores y cookies de GitHub +title: GitHub Subprocessors and Cookies redirect_from: - - /subprocessors/ - - /github-subprocessors/ - - /github-tracking/ - - /github-cookies/ + - /subprocessors + - /github-subprocessors + - /github-tracking + - /github-cookies - /articles/github-subprocessors-and-cookies versions: fpt: '*' @@ -13,68 +13,68 @@ topics: - Legal --- -Fecha de entrada en vigor: **2 de abril de 2021** +Effective date: **April 2, 2021** -GitHub ofrece una gran cantidad de transparencia en cuanto a cómo usamos tus datos, cómo recopilamos tus datos y con quién los compartimos. Para este propósito, proporcionamos esta página, la cual detalla [nuestros subprocesadores](#github-subprocessors) y cómo utilizamos las [cookies](#cookies-on-github). +GitHub provides a great deal of transparency regarding how we use your data, how we collect your data, and with whom we share your data. To that end, we provide this page, which details [our subprocessors](#github-subprocessors), and how we use [cookies](#cookies-on-github). -## Subprocesadores de GitHub +## GitHub Subprocessors -Cuando compartimos tu información con subprocesadores de terceros, como nuestros vendedores y proveedores de servicios, seguimos siendo responsables de ella. Trabajamos arduamente para mantener tu confianza cuando traemos nuevos proveedores y exigimos que todos los proveedores celebren acuerdos de protección de datos con nosotros que restrinjan su procesamiento de la información personal de los usuarios (tal como se define en la [Declaración de Privacidad](/articles/github-privacy-statement/)). +When we share your information with third party subprocessors, such as our vendors and service providers, we remain responsible for it. We work very hard to maintain your trust when we bring on new vendors, and we require all vendors to enter into data protection agreements with us that restrict their processing of Users' Personal Information (as defined in the [Privacy Statement](/articles/github-privacy-statement/)). -| Nombre del subprocesador | Descripción del procesamiento | Ubicación del procesamiento | Ubicación Corporativa | -|:------------------------ |:----------------------------------------------------------------------------------------------- |:--------------------------- |:--------------------- | -| Automattic | Servicio de alojamiento | Estados Unidos | Estados Unidos | -| AWS Amazon | Alojamiento de datos | Estados Unidos | Estados Unidos | -| Braintree (PayPal) | Procesador de pagos de suscripción con tarjeta de crédito | Estados Unidos | Estados Unidos | -| Clearbit | Servicio de enriquecimiento de datos de marketing | Estados Unidos | Estados Unidos | -| Discourse | Proveedor de software del foro de la comunidad | Estados Unidos | Estados Unidos | -| Eloqua | Automatización de campañas de marketing | Estados Unidos | Estados Unidos | -| Google Apps | Infraestructura interna de la empresa | Estados Unidos | Estados Unidos | -| MailChimp | Proveedor de servicios de correo de billetaje de clientes | Estados Unidos | Estados Unidos | -| Mailgun | Proveedor de servicios de correo transaccional | Estados Unidos | Estados Unidos | -| Microsoft | Servicios de Microsoft | Estados Unidos | Estados Unidos | -| Nexmo | Proveedor de notificaciones SMS | Estados Unidos | Estados Unidos | -| Salesforce.com | Gestión de relaciones con clientes | Estados Unidos | Estados Unidos | -| Sentry.io | Proveedor de monitoreo de aplicaciones | Estados Unidos | Estados Unidos | -| Stripe | Proveedor de pagos | Estados Unidos | Estados Unidos | -| Twilio & Twilio Sendgrid | Proveedor de notificaciones por SMS & proveedor de servicio de correo electrónico transaccional | Estados Unidos | Estados Unidos | -| Zendesk | Sistema de tickets de soporte al cliente | Estados Unidos | Estados Unidos | -| Zuora | Sistema de facturación corporativa | Estados Unidos | Estados Unidos | +| Name of Subprocessor | Description of Processing | Location of Processing | Corporate Location +|:---|:---|:---|:---| +| Automattic | Blogging service | United States | United States | +| AWS Amazon | Data hosting | United States | United States | +| Braintree (PayPal) | Subscription credit card payment processor | United States | United States | +| Clearbit | Marketing data enrichment service | United States | United States | +| Discourse | Community forum software provider | United States | United States | +| Eloqua | Marketing campaign automation | United States | United States | +| Google Apps | Internal company infrastructure | United States | United States | +| MailChimp | Customer ticketing mail services provider | United States | United States | +| Mailgun | Transactional mail services provider | United States | United States | +| Microsoft | Microsoft Services | United States | United States | +| Nexmo | SMS notification provider | United States | United States | +| Salesforce.com | Customer relations management | United States | United States | +| Sentry.io | Application monitoring provider | United States | United States | +| Stripe | Payment provider | United States | United States | +| Twilio & Twilio Sendgrid | SMS notification provider & transactional mail service provider | United States | United States | +| Zendesk | Customer support ticketing system | United States | United States | +| Zuora | Corporate billing system | United States | United States | -Cuando traemos un nuevo subprocesador que maneja la información personal de nuestros usuarios o eliminas un subprocesador, o cambiamos la manera en que usamos un subprocesador, actualizaremos esta página. Si tienes preguntas o inquietudes acerca de un nuevo subprocesador, estaremos encantados de ayudarte. Ponte en contacto con nosotros vía{% data variables.contact.contact_privacy %}. +When we bring on a new subprocessor who handles our Users' Personal Information, or remove a subprocessor, or we change how we use a subprocessor, we will update this page. If you have questions or concerns about a new subprocessor, we'd be happy to help. Please contact us via {% data variables.contact.contact_privacy %}. -## Cookies en GitHub +## Cookies on GitHub -GitHub utiliza cookies para proporcionar y asegurar nuestros sitios web, así como para analizar el uso de los mismos, para poder ofrecerte una gran experiencia de usuario. Por favor, echa un vistazo a nuestra [Declaración de privacidad](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) si te gustaría obtener más información sobre las cookies y sobre cómo y por qué las utilizamos. +GitHub uses cookies to provide and secure our websites, as well as to analyze the usage of our websites, in order to offer you a great user experience. Please take a look at our [Privacy Statement](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) if you’d like more information about cookies, and on how and why we use them. + +Since the number and names of cookies may change, the table below may be updated from time to time. -Ya que la cantidad de nombres y cookies puede cambiar, la tabla siguiente se podría actualizar a menudo. +| Service Provider | Cookie Name | Description | Expiration* | +|:---|:---|:---|:---| +| GitHub | `app_manifest_token` | This cookie is used during the App Manifest flow to maintain the state of the flow during the redirect to fetch a user session. | five minutes | +| GitHub | `color_mode` | This cookie is used to indicate the user selected theme preference. | session | +| GitHub | `_device_id` | This cookie is used to track recognized devices for security purposes. | one year | +| GitHub | `dotcom_user` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `_gh_ent` | This cookie is used for temporary application and framework state between pages like what step the customer is on in a multiple step form. | two weeks | +| GitHub | `_gh_sess` | This cookie is used for temporary application and framework state between pages like what step the user is on in a multiple step form. | session | +| GitHub | `gist_oauth_csrf` | This cookie is set by Gist to ensure the user that started the oauth flow is the same user that completes it. | deleted when oauth state is validated | +| GitHub | `gist_user_session` | This cookie is used by Gist when running on a separate host. | two weeks | +| GitHub | `has_recent_activity` | This cookie is used to prevent showing the security interstitial to users that have visited the app recently. | one hour | +| GitHub | `__Host-gist_user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `__Host-user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `logged_in` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `marketplace_repository_ids` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `marketplace_suggested_target_id` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `_octo` | This cookie is used for session management including caching of dynamic content, conditional feature access, support request metadata, and first party analytics. | one year | +| GitHub | `org_transform_notice` | This cookie is used to provide notice during organization transforms. | one hour | +| GitHub | `private_mode_user_session` | This cookie is used for Enterprise authentication requests. | two weeks | +| GitHub | `saml_csrf_token` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_csrf_token_legacy` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to_legacy` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `tz` | This cookie allows us to customize timestamps to your time zone. | session | +| GitHub | `user_session` | This cookie is used to log you in. | two weeks | -| Proveedor de servicios | Nombre de la Cookie | Descripción | Vencimiento* | -|:---------------------- |:------------------------------------ |:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:------------------------------------------------------------------------------------------ | -| GitHub | `app_manifest_token` | Esta cookie se utiliza durante el flujo del manifiesto de la app para mantener su estado durante la redirección para obtener una sesión de usuario. | cinco minutos | -| GitHub | `color_mode` | Esta cookie se utiliza para indicar que el usuario seleccionó la preferencia de tema. | sesión | -| GitHub | `_device_id` | Esta cookie se utiliza para rastrear los dispositivos reconocidos para propósitos de seguridad. | un año | -| GitHub | `dotcom_user` | Esta cookie se utiliza para indicarnos que el usuario ya está registrado. | un año | -| GitHub | `_gh_ent` | Esta cookie se utiliza para la aplicación temporal y el estado del marco de trabajo entre las páginas como en qué paso se encuentra el cliente dentro de un formulario de varios pasos. | dos semanas | -| GitHub | `_gh_sess` | Esta cookie se usa para la aplicación temporal y el estado del marco entre las páginas como para indicar en qué paso está el usuario en un formulario de múltiples pasos. | sesión | -| GitHub | `gist_oauth_csrf` | Esta cookie se establece por Gist para asegurar que el usuario que inició el flujo oauth sea el mismo usuario que lo completa. | se borra al validar el estado de oauth | -| GitHub | `gist_user_session` | Gist utiliza esta cookie cuando se ejecuta en un host por separado. | dos semanas | -| GitHub | `has_recent_activity` | Esta cookie se utiliza para prevenir que se muestre la seguridad que es intersticial a los usuarios que han visitado la app recientemente. | una hora | -| GitHub | `__Host-gist_user_session_same_site` | Esta cookie se configura para asegurar que los navegadores que soportan las cookies de SameSite puedan verificar si una solicitud se origina desde GitHub. | dos semanas | -| GitHub | `__Host-user_session_same_site` | Esta cookie se configura para asegurar que los navegadores que soportan las cookies de SameSite puedan verificar si una solicitud se origina desde GitHub. | dos semanas | -| GitHub | `logged_in` | Esta cookie se utiliza para indicarnos que el usuario ya está registrado. | un año | -| GitHub | `marketplace_repository_ids` | Esta cookie se utiliza para el flujo de instalación de marketplace. | una hora | -| GitHub | `marketplace_suggested_target_id` | Esta cookie se utiliza para el flujo de instalación de marketplace. | una hora | -| GitHub | `_octo` | Esta cookie se utiliza para la administración de sesiones, incluyendo el almacenamiento en caché del contenido dinámico, el acceso de características condicionales, los metadatos de solicitud de soporte y la analítica de las primeras partes. | un año | -| GitHub | `org_transform_notice` | Esta cookie se utiliza para proporcionar notificaciones durante las transformaciones de las organizaciones. | una hora | -| GitHub | `private_mode_user_session` | Esta cookie se utiliza para las solicitudes de autenticación empresarial. | dos semanas | -| GitHub | `saml_csrf_token` | Esta cookie se establece mediante el método de ruta de autenticación de SAML para asociar un token con el cliente. | hasta que el usuario cierre el buscador o hasta que complete la solicitud de autenticación | -| GitHub | `saml_csrf_token_legacy` | Esta cookie se establece mediante el método de ruta de autenticación de SAML para asociar un token con el cliente. | hasta que el usuario cierre el buscador o hasta que complete la solicitud de autenticación | -| GitHub | `saml_return_to` | Esta cookie se establece mediante el método de ruta de autenticación de SAML para mantener el estado durante el bucle de autenticación de SAML. | hasta que el usuario cierre el buscador o hasta que complete la solicitud de autenticación | -| GitHub | `saml_return_to_legacy` | Esta cookie se establece mediante el método de ruta de autenticación de SAML para mantener el estado durante el bucle de autenticación de SAML. | hasta que el usuario cierre el buscador o hasta que complete la solicitud de autenticación | -| GitHub | `tz` | Esta cookie nos permite personalizar las marcas de tiempo a tu zona horaria. | sesión | -| GitHub | `user_session` | Esta cookie se utiliza para que inicies sesión. | dos semanas | +_*_ The **expiration** dates for the cookies listed below generally apply on a rolling basis. -_*_ Las fechas de **vencimiento** para las cookies que se listan a continuación generalmente se aplican permanentemente. - -(i) Por favor, ten encuenta que si bien limitamos nuestro uso de cookies de terceros a aquellas necesarias para proporcionar una funcionalidad externa cuando interpretamos el contenido externo, algunas páginas en nuestro sitio web podrían configurar otras cookies de terceros. Por ejemplo, es posible que insertamos contenido, como vídeos, desde otro sitio que establezca una cookie. Si bien tratamos de minimizar estas cookies de terceros, no siempre podemos controlar qué cookies establece este contenido de terceros. +(!) Please note while we limit our use of third party cookies to those necessary to provide external functionality when rendering external content, certain pages on our website may set other third party cookies. For example, we may embed content, such as videos, from another site that sets a cookie. While we try to minimize these third party cookies, we can’t always control what cookies this third party content sets. diff --git a/translations/es-ES/content/github/site-policy/github-terms-of-service.md b/translations/es-ES/content/github/site-policy/github-terms-of-service.md index a52889b4c1..9ac616977a 100644 --- a/translations/es-ES/content/github/site-policy/github-terms-of-service.md +++ b/translations/es-ES/content/github/site-policy/github-terms-of-service.md @@ -1,10 +1,10 @@ --- title: GitHub Terms of Service redirect_from: - - /tos/ - - /terms/ - - /terms-of-service/ - - /github-terms-of-service-draft/ + - /tos + - /terms + - /terms-of-service + - /github-terms-of-service-draft - /articles/github-terms-of-service versions: fpt: '*' diff --git a/translations/es-ES/content/github/site-policy/github-username-policy.md b/translations/es-ES/content/github/site-policy/github-username-policy.md index ec2f40b705..84c19fe327 100644 --- a/translations/es-ES/content/github/site-policy/github-username-policy.md +++ b/translations/es-ES/content/github/site-policy/github-username-policy.md @@ -1,7 +1,7 @@ --- -title: Política de nombre de usuario de GitHub +title: GitHub Username Policy redirect_from: - - /articles/name-squatting-policy/ + - /articles/name-squatting-policy - /articles/github-username-policy versions: fpt: '*' @@ -10,18 +10,18 @@ topics: - Legal --- -Los nombres de cuentas de GitHub se proporcionan dependiendo de quién los reclame primero, y se pretende que se comiencen a utilizar activamente de inmediato. +GitHub account names are available on a first-come, first-served basis, and are intended for immediate and active use. -## ¿Qué pasa si el nombre de usuario que quiero ya está en uso? +## What if the username I want is already taken? -Ten en mente que no toda la actividad en GitHub está disponible públicamente para su consulta; puede que las cuentas sin actividad visible estén activas. +Keep in mind that not all activity on GitHub is publicly visible; accounts with no visible activity may be in active use. -Si ya han reclamado el nombre de usuario que quieres, considera otros nombres o variaciones únicas de éste. Puedes identificar un nombre de usuario aún disponible si utilizas números, guiones, o una morfología alterna. +If the username you want has already been claimed, consider other names or unique variations. Using a number, hyphen, or an alternative spelling might help you identify a desirable username still available. -## Política de marcas +## Trademark Policy -Si consideras que la cuenta de alguien está violando tus derechos de marca, puedes encontrar más información sobre cómo hacer una queja de marca en nuestra página de [Política de Marca](/articles/github-trademark-policy/). +If you believe someone's account is violating your trademark rights, you can find more information about making a trademark complaint on our [Trademark Policy](/articles/github-trademark-policy/) page. -## Política de ocupación de nombre +## Name Squatting Policy -GitHub prohibe el acaparamiento de nombres de cuenta, y dichos nombres de cuenta no pueden reservarse o mantenerse en inactividad para reclamarse posteriormente. Las cuentas que violen esta política de acaparamiento serán eliminadas o renombradas sin previo aviso. Los intentos de vender, comprar o solicitar otras formas de pago a cambio de nombres de cuenta están prohibidos y pueden resultar en una suspensión de cuenta permanente. +GitHub prohibits account name squatting, and account names may not be reserved or inactively held for future use. Accounts violating this name squatting policy may be removed or renamed without notice. Attempts to sell, buy, or solicit other forms of payment in exchange for account names are prohibited and may result in permanent account suspension. diff --git a/translations/es-ES/content/github/site-policy/global-privacy-practices.md b/translations/es-ES/content/github/site-policy/global-privacy-practices.md index 0a403d7788..4d12086d81 100644 --- a/translations/es-ES/content/github/site-policy/global-privacy-practices.md +++ b/translations/es-ES/content/github/site-policy/global-privacy-practices.md @@ -1,7 +1,7 @@ --- -title: Prácticas de Privacidad Globales +title: Global Privacy Practices redirect_from: - - /eu-safe-harbor/ + - /eu-safe-harbor - /articles/global-privacy-practices versions: fpt: '*' @@ -10,66 +10,66 @@ topics: - Legal --- -Fecha de entrada en vigor: 22 de julio del 2020 +Effective date: July 22, 2020 -GitHub Proporciona el mismo estándar alto de protección de privacidad—tal como se describe en la [Declaración de Privacidad](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices) de GitHub—a todos nuestros usuarios y clientes en todo el mundo, sin importar su país de origen o ubicación, y GitHub se enorgullece del nivel de notificación, elección, responsabilidad, seguridad, integridad de datos, acceso, y recursos que proporcionamos. +GitHub provides the same high standard of privacy protection—as described in GitHub’s [Privacy Statement](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)—to all our users and customers around the world, regardless of their country of origin or location, and GitHub is proud of the level of notice, choice, accountability, security, data integrity, access, and recourse we provide. -GitHub también cumple con ciertos marcos de trabajo relacionados con la transferencia de los datos desde el Área Económica Europea, el Reino Unido y Suiza (colectivamente conocidos como "UE") hacia los Estados Unidos. Cuando GitHub se involucra en dichas transferencias, GitHub se basa en las Cláusulas Contractuales Estándar como el mecanismo legal para ayudarlo a garantizar tus derechos y que tu información personal viaje con la protección adecuada. Adicionalmente, GitHub está certificado en los Marcos de Trabajo de Escudo de Privacidad de UE-U. S. A. y Suiza-U. S. A. Para aprender más sobre las decisiones de la Comisión Europea sobre la transferencia internacioal de datos, consulta este artículo en el [Sitio web de la Comisión Europea](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). +GitHub also complies with certain legal frameworks relating to the transfer of data from the European Economic Area, the United Kingdom, and Switzerland (collectively, “EU”) to the United States. When GitHub engages in such transfers, GitHub relies on Standard Contractual Clauses as the legal mechanism to help ensure your rights and protections travel with your personal information. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about the European Commission’s decisions on international data transfer, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). -## Cláusulas Contractuales Estándar +## Standard Contractual Clauses -GitHub se basa en las Cláusulas Contractuales Estándar aprobadas por la Comisión Europea ("SCCs") como un mecanismo legal para las transferencia de datos desde la UE. Las SCCs son compromisos contractuales entre compañías que transfieren datos personales que las vinculan para proteger la privacidad y seguridad de dichos datos. GitHub adoptó las SCCs para que los flujos de datos necesarios puedan protegerse cuando se transfieren hacia afuera de la UE a países que la Comisión Europea no ha estimado pueden proteger los datos personales adecuadamente, incluyendo el proteger la transferencia de estos hacia los Estados Unidos. +GitHub relies on the European Commission-approved Standard Contractual Clauses (“SCCs”) as a legal mechanism for data transfers from the EU. SCCs are contractual commitments between companies transferring personal data, binding them to protect the privacy and security of such data. GitHub adopted SCCs so that the necessary data flows can be protected when transferred outside the EU to countries which have not been deemed by the European Commission to adequately protect personal data, including protecting data transfers to the United States. -Para aprender más sobre las SCCs, consulta este artículo en el [Sitio web dela Comisión Europea](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). +To learn more about SCCs, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). -## Marco del Escudo de Privacidad +## Privacy Shield Framework -GitHub está certificado en los Marcos de Trabajo de Escudo de Privacidad de UE-U. S. A y U. S. A-Suiza y en los compromisos que éstos conllevan, a pear de que GitHub no se basa en el Marco de Trabajo de Escudo de Privacidad de UE-U. S. A. como una base legal para transferencias de información personal ante el juicio de la Corte de Justicia de la UE en el caso C-311/18. +GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks and the commitments they entail, although GitHub does not rely on the EU-US Privacy Shield Framework as a legal basis for transfers of personal information in light of the judgment of the Court of Justice of the EU in Case C-311/18. -Los Marcos de Trabajo de Escudo de Privacidad de UE-E.U.A. y Suiza-E.U.A. se implementan por el Departamento de Comercio de los E.U.A. de acuerdo con la recoleción, uso, y retención de la Información Personal transferida desde la Unión Europea, el Reino Unido, y Suiza hacia los Estados Unidos. GitHub ha certificado al Departamento de Comercio que se apega a los Principios del Escudo de Privacidad. Si nuestros proveedores o afiliados procesan la Información Personal de los Usuarios en nuestro nombre de forma inconsistente con los principios de cualquiera de los Marcos de Trabajo de Escudo de Privacidad, GitHub seguirá siendo responsable a menos de que provemos que no lo somos para dicho evento que genera el daño. +The EU-US and Swiss-US Privacy Shield Frameworks are set forth by the US Department of Commerce regarding the collection, use, and retention of User Personal Information transferred from the European Union, the UK, and Switzerland to the United States. GitHub has certified to the Department of Commerce that it adheres to the Privacy Shield Principles. If our vendors or affiliates process User Personal Information on our behalf in a manner inconsistent with the principles of either Privacy Shield Framework, GitHub remains liable unless we prove we are not responsible for the event giving rise to the damage. -Para propósitos de nuestras certificaciones bajo los Marcos de Trabajo del Escudo de Privacidad, si hubiese cualquier conflicto entre las condiciones en estas Prácticas de Privacidad Globales y en los Principios del Escudo de Privacidad, los últimos deberán prevalecer. Para obtener más información sobre el programa Escudo de Privacidad y para ver nuestra certificación, visite el sitio web [de Escudo de Privacidad](https://www.privacyshield.gov/). +For purposes of our certifications under the Privacy Shield Frameworks, if there is any conflict between the terms in these Global Privacy Practices and the Privacy Shield Principles, the Privacy Shield Principles shall govern. To learn more about the Privacy Shield program, and to view our certification, visit the [Privacy Shield website](https://www.privacyshield.gov/). -Los Marcos de Trabajo del Escudo de Privacidad se basan en siete principios, y GitHub se apega a ellos de las siguientes formas: +The Privacy Shield Frameworks are based on seven principles, and GitHub adheres to them in the following ways: -- **Notificaciones** - - Te informamos cuando recopilamos tu información personal. - - Te damos a conocer, en nuestra [Declaración de Privacidad](/articles/github-privacy-statement/)de los fines que tenemos para recopilar y utilizar tu información a quién compartimos esa información con y bajo qué restricciones y qué acceso tiene a tus datos. - - Te informamos que estamos participando en el marco del Escudo de Privacidad y lo qué significa para ti. - - Tenemos un {% data variables.contact.contact_privacy %} donde puedes contactarnos con preguntas sobre tu privacidad. - - Te informamos acerca de tu derecho a invocar arbitraje vinculante, sin costo alguno para ti, en el improbable caso de una disputa. - - Te informamos que estamos sujetos a la jurisdicción de la Comisión Federal de Comercio. -- **Opción** - - Te permitimos elegir lo que sucede con tus datos. Antes de que utilicemos tus datos para un propósito distinto para el cual nos los proporcionaste, te avisaremos y obtendremos tu permiso. - - Te proporcionarremos mecanismos razonables para hacer tu elección. -- **Responsabilidad de la transferencia continua** - - Cuando transferimos tu información a proveedores de terceros que la procesan en nuestro nombre, sólo estamos enviando tus datos a terceros, bajo contrato con nosotros, que los salvaguardarán consistentemente con nuestra Declaración de Privacidad. Cuando transferimos tus datos a nuestros proveedores bajo el Escudo de Privacidad, seguimos siendo responsables de ello. - - Compartimos sólo la cantidad de datos con nuestros proveedores de terceros cuando sea necesario para completar tu transacción. -- **Seguridad** - - Protegeremos tu información personal con [todas las medidas de seguridad razonables y apropiadas](https://github.com/security). -- **Limitación de integridad y propósito de datos** - - Solo recopilamos tus datos para las finalidades pertinentes para proporcionarte nuestros servicios. - - Recopilamos tan poca información tuya como podamos, a menos que decidas proporcionarnos más. - - Tomamos medidas razonables para asegurar que tus datos sean exactos, actuales y fiables para su uso previsto. -- **Acceso** - - Siempre puedes acceder a los datos que tenemos sobre ti en tu perfil de usuario [](https://github.com/settings/profile). Puedes ingresar, actualizar, alterar o eliminar tu información allí. -- **Recursos, cumplimiento y responsabilidad** - - Si tienes alguna pregunta sobre nuestras prácticas de privacidad, puedes contactarnos con nuestro {% data variables.contact.contact_privacy %} y responderemos en un plazo máximo de 45 días. - - En el improbable caso de una disputa que no podamos resolver, tienes acceso a un arbitraje vinculante sin coste alguno para ti. Consulta la [Declaración de privacidad](/articles/github-privacy-statement/)para obtener más información. - - Realizaremos auditorías periódicas de nuestras prácticas de privacidad relevantes para verificar el cumplimiento de las promesas que hemos hecho. - - Exigimos a nuestros empleados que respeten nuestras promesas de privacidad y la violación de nuestras políticas de privacidad está sujeta a una acción disciplinaria e inclusive hasta la terminación del empleo. +- **Notice** + - We let you know when we're collecting your personal information. + - We let you know, in our [Privacy Statement](/articles/github-privacy-statement/), what purposes we have for collecting and using your information, who we share that information with and under what restrictions, and what access you have to your data. + - We let you know that we're participating in the Privacy Shield framework, and what that means to you. + - We have a {% data variables.contact.contact_privacy %} where you can contact us with questions about your privacy. + - We let you know about your right to invoke binding arbitration, provided at no cost to you, in the unlikely event of a dispute. + - We let you know that we are subject to the jurisdiction of the Federal Trade Commission. +- **Choice** + - We let you choose what happens to your data. Before we use your data for a purpose other than the one for which you gave it to us, we will let you know and get your permission. + - We will provide you with reasonable mechanisms to make your choices. +- **Accountability for Onward Transfer** + - When we transfer your information to third party vendors that are processing it on our behalf, we are only sending your data to third parties, under contract with us, that will safeguard it consistently with our Privacy Statement. When we transfer your data to our vendors under Privacy Shield, we remain responsible for it. + - We share only the amount of data with our third party vendors as is necessary to complete their transaction. +- **Security** + - We will protect your personal information with [all reasonable and appropriate security measures](https://github.com/security). +- **Data Integrity and Purpose Limitation** + - We only collect your data for the purposes relevant for providing our services to you. + - We collect as little information about you as we can, unless you choose to give us more. + - We take reasonable steps to ensure that the data we have about you is accurate, current, and reliable for its intended use. +- **Access** + - You are always able to access the data we have about you in your [user profile](https://github.com/settings/profile). You may access, update, alter, or delete your information there. +- **Recourse, Enforcement and Liability** + - If you have questions about our privacy practices, you can reach us with our {% data variables.contact.contact_privacy %} and we will respond within 45 days at the latest. + - In the unlikely event of a dispute that we cannot resolve, you have access to binding arbitration at no cost to you. Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. + - We will conduct regular audits of our relevant privacy practices to verify compliance with the promises we have made. + - We require our employees to respect our privacy promises, and violation of our privacy policies is subject to disciplinary action up to and including termination of employment. -### Proceso de resolución de disputas +### Dispute resolution process -Como se explica a detalle en la sección de [Resolución de Quejas](/github/site-policy/github-privacy-statement#resolving-complaints) de nuestra [Declaración de Privacidad](/github/site-policy/github-privacy-statement), te exhortamos a contactarnos en caso de que tengas alguna queja relacionada con el Escudo de Privacidad (o sobre la privacidad en general). Para cualquier queja que no pueda resolverse directamente con GitHub, hemos escogido cooperar con la Autoridad de Protección de datos de la UE reelevante, o con un panel establecido por las autoridades europeas de protección de datos, para resolver disputas con los individuos de la UE, y con la Comisión Federal para la Protección de Datos y la Información (FDPIC, por sus siglas en inglés) para resolver las disputas con los individuos suizos. Por favor contáctanos si deseas que te dirijamos a los contactos de tu autoridad de protección de datos. +As further explained in the [Resolving Complaints](/github/site-policy/github-privacy-statement#resolving-complaints) section of our [Privacy Statement](/github/site-policy/github-privacy-statement), we encourage you to contact us should you have a Privacy Shield-related (or general privacy-related) complaint. For any complaints that cannot be resolved with GitHub directly, we have selected to cooperate with the relevant EU Data Protection Authority, or a panel established by the European data protection authorities, for resolving disputes with EU individuals, and with the Swiss Federal Data Protection and Information Commissioner (FDPIC) for resolving disputes with Swiss individuals. Please contact us if you’d like us to direct you to your data protection authority contacts. -Además, si eres residente de un estado miembro de la UE, tienes derecho a presentar una queja ante tu autoridad supervisora local. +Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority. -### Arbitraje independiente +### Independent arbitration -En determinadas circunstancias limitadas, la UE, el Espacio Económico Europeo (EEE), Suiza y las personas del Reino Unido pueden recurrir al arbitraje vinculante del Escudo de privacidad como último recurso, si todas las demás formas de resolución de disputas no tuvieron éxito. Para obtener más información acerca de este método de resolución y su disponibilidad, consulta más detalles sobre el [Escudo de privacidad](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). El arbitraje no es obligatorio, es una herramienta que puedes utilizar si así lo decides. +Under certain limited circumstances, EU, European Economic Area (EEA), Swiss, and UK individuals may invoke binding Privacy Shield arbitration as a last resort if all other forms of dispute resolution have been unsuccessful. To learn more about this method of resolution and its availability to you, please read more about [Privacy Shield](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). Arbitration is not mandatory; it is a tool you can use if you so choose. -Estamos sujetos a la jurisdicción de la Comisión Federal de Comercio (FTC) de los EE. UU. - -Consulta la [Declaración de privacidad](/articles/github-privacy-statement/)para obtener más información. +We are subject to the jurisdiction of the US Federal Trade Commission (FTC). + +Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. diff --git a/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md b/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md index 8ba2373bb3..e2dbb93740 100644 --- a/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md +++ b/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md @@ -1,8 +1,8 @@ --- -title: Guía para enviar una contranotificación de DMCA +title: Guide to Submitting a DMCA Counter Notice redirect_from: - - /dmca-counter-notice-how-to/ - - /articles/dmca-counter-notice-how-to/ + - /dmca-counter-notice-how-to + - /articles/dmca-counter-notice-how-to - /articles/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' @@ -11,60 +11,72 @@ topics: - Legal --- -Esta guía describe la información que GitHub necesita para procesar una contra notificación de DMCA. Si tienes preguntas más generales sobre qué es la DMCA o cómo procesa GitHub las solicitudes de retiro de DMCA, por favor revisa nuestra [política de retiro de DMCA](/articles/dmca-takedown-policy). +This guide describes the information that GitHub needs in order to process a counter notice to a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -Si consideras que tu contenido en GitHub fue inhabilitado erróneamente por una solicitud de retiro de DMCA. tienes derecho de disputar el retiro enviando una contra notificación. Si lo haces, esperaremos 10-14 días y posteriormente volveremos a habilitar tu contenido a menos que el propietario de los derechos de autor inicie una acción legal contra ti antes de entonces. Nuestro formulario de contra notificación indicado a continuación es coherente con el formulario sugerido por el estatuto DMCA, que se puede encontrar en el sitio web oficial de la Oficina de Derechos de Autor de EE. UU.: <https://www.copyright.gov>. Sitio web oficial de la Oficina de Derechos de Autor: <https://www.copyright.gov>. +If you believe your content on GitHub was mistakenly disabled by a DMCA takedown request, you have the right to contest the takedown by submitting a counter notice. If you do, we will wait 10-14 days and then re-enable your content unless the copyright owner initiates a legal action against you before then. Our counter-notice form, set forth below, is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -Como en todas las cuestiones jurídicas, siempre es mejor consultar con un profesional sobre tus preguntas o situación específicas. Te recomendamos enfáticamente que lo hagas antes de emprender cualquier acción que pueda afectar tus derechos. Esta guía no es asesoramiento legal y no debería ser tomada como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## Antes de comenzar +## Before You Start -***Di la Verdad.*** La DMCA requiere que jures tu contra notificación *bajo pena de perjurio*. Es un crimen federal mentir intencionadamente en una declaración jurada. (*Consulta* [el Código de lso EE.UU. , Título 18, Sección 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) La presentación de información falsa también podría resultar en responsabilidad civil, es decir, podrías ser demandado por daños monetarios. +***Tell the Truth.*** +The DMCA requires that you swear to your counter notice *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability—that is, you could get sued for money damages. -***Investiga.*** Enviar una contra notificación DMCA puede tener consecuencias legales reales. Si la parte que denuncia no está de acuerdo en que tu notificación de retiro fue errónea, podrían decidir presentar una demanda contra ti para mantener el contenido deshabilitado. Deber llevar a cabo una investigación exhaustiva sobre las acusaciones hechas en la notificación de retiro y probablemente hablar con un abogado antes de enviar una contra notificación. +***Investigate.*** +Submitting a DMCA counter notice can have real legal consequences. If the complaining party disagrees that their takedown notice was mistaken, they might decide to file a lawsuit against you to keep the content disabled. You should conduct a thorough investigation into the allegations made in the takedown notice and probably talk to a lawyer before submitting a counter notice. -***Debes tener una razón fundada para emitir una contranotificación.*** Para emitir una contranotificación, deberás tener una "certeza de buena fe de que el material se eliminó o inhabilitó como resultado de un error o mala identificación del material que se quiere eliminar o inhabilitar". ([Código de los EE.UU. Título 17, Sección 512(g)](https://www.copyright.gov/title17/92chap5.html#512)). Ya sea que decidas explicar o no el por qué crees que hubo un error, dependerá de ti y de tu abogado, pero *sí* necesitas identificar un error antes de emitir una contranotificación. En el pasado, recibimos contra notificaciones que citan errores en la notificación de retiro, tales como: La parte que reclama no tiene el derecho de autor; tengo una licencia; el código se liberó bajo una licencia de código abierto que permite mi uso; o la queja no tiene en cuenta el hecho de que mi uso está protegido por la doctrina del uso legal. Por supuesto, podría haber otros defectos con la notificación de retiro. +***You Must Have a Good Reason to Submit a Counter Notice.*** +In order to file a counter notice, you must have "a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled." ([U.S. Code, Title 17, Section 512(g)](https://www.copyright.gov/title17/92chap5.html#512).) Whether you decide to explain why you believe there was a mistake is up to you and your lawyer, but you *do* need to identify a mistake before you submit a counter notice. In the past, we have received counter notices citing mistakes in the takedown notice such as: the complaining party doesn't have the copyright; I have a license; the code has been released under an open-source license that permits my use; or the complaint doesn't account for the fact that my use is protected by the fair-use doctrine. Of course, there could be other defects with the takedown notice. -***Las leyes de derechos de autor son complicadas.*** En ocasiones una notificación de retiro podría hacer referencia a una infracción que parece extraña o indirecta. Las leyes de derechos de autor son complicadas y pueden dar lugar a resultados inesperados. En algunos casos una notificación de retiro podría señalar que su código fuente infringe por lo que puede ocasiones posteriormente que se compile y ejecute. Por ejemplo: - - La notificación podrá reclamar que tu software se utiliza para [evitar los controles de acceso](https://www.copyright.gov/title17/92chap12.html) a los trabajos con derechos de autor. - - [Algunas veces](https://www.copyright.gov/docs/mgm/) la distribución de software puede considerarse como una infracción a los derechos de autor, si induces a los usuarios finales a utilizar el software para infringir el trabajo con derechos de autor. - - Una queja de derechos de autor también podría basarse en [copia no literal](https://en.wikipedia.org/wiki/Substantial_similarity) de elementos de diseño en el software, en lugar del código fuente en sí mismo, en otras palabras, alguien envió una notificación diciendo que piensa que tu *diseño* es demasiado similar al de ellos. +***Copyright Laws Are Complicated.*** +Sometimes a takedown notice might allege infringement in a way that seems odd or indirect. Copyright laws are complicated and can lead to some unexpected results. In some cases a takedown notice might allege that your source code infringes because of what it can do after it is compiled and run. For example: + - The notice may claim that your software is used to [circumvent access controls](https://www.copyright.gov/title17/92chap12.html) to copyrighted works. + - [Sometimes](https://www.copyright.gov/docs/mgm/) distributing software can be copyright infringement, if you induce end users to use the software to infringe copyrighted works. + - A copyright complaint might also be based on [non-literal copying](https://en.wikipedia.org/wiki/Substantial_similarity) of design elements in the software, rather than the source code itself — in other words, someone has sent a notice saying they think your *design* looks too similar to theirs. -Estos son sólo algunos ejemplos de la complejidad de la legislación sobre derechos de autor. Dado que hay muchos matices a la ley y algunas preguntas sin resolver en este tipo de casos, es especialmente importante obtener asesoramiento profesional si las acusaciones de infracción no parecen sencillas. +These are just a few examples of the complexities of copyright law. Since there are many nuances to the law and some unsettled questions in these types of cases, it is especially important to get professional advice if the infringement allegations do not seem straightforward. -***Una contra notificación es una declaración legal.*** Te pedimos que completes todos los campos de una contra notificación en su totalidad, porque una denuncia es una declaración legal — no sólo para nosotros, sino para la parte demandante. Como mencionamos anteriormente, si la parte reclamante desea mantener el contenido desactivado después de recibir una contra notificación, tendrán que iniciar una acción legal que busque una orden judicial para impedirle participar en actividades de infracción relacionadas con el contenido de GitHub. En otras palabras, podrías ser demandado (y das tu consentimiento en la contra notificación). +***A Counter Notice Is A Legal Statement.*** +We require you to fill out all fields of a counter notice completely, because a counter notice is a legal statement — not just to us, but to the complaining party. As we mentioned above, if the complaining party wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain you from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued (and you consent to that in the counter notice). -***Tu contra notificación se publicará.*** Como se indica en nuestra [política de retiro de DMCA](/articles/dmca-takedown-policy#d-transparency), **después de redactar información personal,** publicamos todas las contra notificaciones completas y accionables en [https://github. om/github/dmca](https://github.com/github/dmca). También ten en cuenta que, aunque sólo publicaremos notificaciones rectificadas, podemos proporcionar una copia completa y no editada de cualquier notificación que recibamos directamente para cualquier parte cuyos derechos se verían afectados por esta. Si estás preocupado por tu privacidad, podrías pedir que un abogado u otro representante legal presente la contra notificación en tu nombre. +***Your Counter Notice Will Be Published.*** +As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), **after redacting personal information,** we publish all complete and actionable counter notices at <https://github.com/github/dmca>. Please also note that, although we will only publicly publish redacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. If you are concerned about your privacy, you may have a lawyer or other legal representative file the counter notice on your behalf. -***GitHub no es el juez.*** GitHub ejerce poca discreción en este proceso además de determinar si las notificaciones cumplen con los requisitos mínimos de la DMCA. Corresponde a las partes (y a sus abogados) evaluar el mérito de sus reclamaciones, teniendo en cuenta que los avisos deben realizarse bajo pena de perjurio. +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in this process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -***Recursos Adicionales.*** Si necesitas ayuda adicional, hay muchos recursos de autoayuda en línea. Lumen tiene un conjunto informativo de guías sobre [copyright](https://www.lumendatabase.org/topics/5) y [puerto seguro de DMCA](https://www.lumendatabase.org/topics/14). Si estás implicado con un proyecto de código abierto que necesita asesoramiento legal, puedes ponerse en contacto con el [Centro de asesoramiento legal sobre software libre](https://www.softwarefreedom.org/about/contact/). Y si consideras que tienes un caso especialmente desafiante, organizaciones sin fines de lucro como la [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) también pueden estar dispuestas a ayudarte directamente o a referirte a un abogado. +***Additional Resources.*** +If you need additional help, there are many self-help resources online. Lumen has an informative set of guides on [copyright](https://www.lumendatabase.org/topics/5) and [DMCA safe harbor](https://www.lumendatabase.org/topics/14). If you are involved with an open-source project in need of legal advice, you can contact the [Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/). And if you think you have a particularly challenging case, non-profit organizations such as the [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) may also be willing to help directly or refer you to a lawyer. -## Tu contra notificación debe... +## Your Counter Notice Must... -1. **Incluir la siguiente declaración: "He leído y entendido la guía de GitHub para presentar una contra notificación DMCA.** No nos negaremos a procesar una contra notificación completa si no incluye esta declaración; sin embargo, sabremos que no has leído estas directrices y podríamos solicitarte que lo hagas. +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Counter Notice."** +We won't refuse to process an otherwise complete counter notice if you don't include this statement; however, we will know that you haven't read these guidelines and may ask you to go back and do so. -2. ***Identificar el contenido que fue desactivado y la ubicación donde apareció.*** El contenido deshabilitado debería haber sido identificado por la URL en la notificación de retiro. Simplemente necesitas copiar la(s) URL(s) que deseas cuestionar. +2. ***Identify the content that was disabled and the location where it appeared.*** +The disabled content should have been identified by URL in the takedown notice. You simply need to copy the URL(s) that you want to challenge. -3. **Proporcionar tu información de contacto.** Incluye tu dirección de correo electrónico, nombre, número de teléfono y dirección. +3. **Provide your contact information.** +Include your email address, name, telephone number, and physical address. -4. ***Incluir la siguiente declaración: "Juro, bajo pena de perjurio, que tengo una creencia de buena fe de que el material se eliminó o deshabilitó como resultado de un error o mala identificación del material a ser eliminado o desactivado.*** También puedes elegir comunicar las razones por las que crees que hubo un error o una mala identificación. Si piensas en tu contra notificación como una "nota" a la parte reclamante, Esta es una oportunidad para explicar por qué no deben dar el siguiente paso y presentar una demanda en respuesta. Esta es otra razón más para trabajar con un abogado al enviar una contra notificación. +4. ***Include the following statement: "I swear, under penalty of perjury, that I have a good-faith belief that the material was removed or disabled as a result of a mistake or misidentification of the material to be removed or disabled."*** +You may also choose to communicate the reasons why you believe there was a mistake or misidentification. If you think of your counter notice as a "note" to the complaining party, this is a chance to explain why they should not take the next step and file a lawsuit in response. This is yet another reason to work with a lawyer when submitting a counter notice. -5. ***Incluir la siguiente declaración: "Acepto la jurisdicción del Tribunal Federal de Distrito para el distrito judicial en el que se encuentra mi dirección (si es en los Estados Unidos, de lo contrario el Distrito Norte de California donde se encuentra GitHub) y aceptaré el servicio de trámite de la persona que proporcionó la notificación del DMCA o de un agente de dicha persona."*** +5. ***Include the following statement: "I consent to the jurisdiction of Federal District Court for the judicial district in which my address is located (if in the United States, otherwise the Northern District of California where GitHub is located), and I will accept service of process from the person who provided the DMCA notification or an agent of such person."*** -6. **Incluye tu firma física o electrónica.** +6. **Include your physical or electronic signature.** -## Cómo enviar tu contra notificación +## How to Submit Your Counter Notice -La forma más rápida de obtener una respuesta es ingresar tu información y responder a todas las preguntas de nuestro {% data variables.contact.contact_dmca %}. +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -También puedes enviar una notificación por correo electrónico a <copyright@github.com>. Puedes incluir un archivo adjunto si lo deseas, pero por favor incluye una versión de texto simple de tu carta en el cuerpo de tu mensaje. +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -Si debes enviar tu notificación por correo físico, también puedes hacerlo pero tardaremos *substancialmente* en recibirla y responder a ella y el periodo de espera de 10 a 14 días comienza a partir de cuando *recibamos* tu contra notificación. Las notificaciones que recibimos por correo electrónico de texto plano tienen una respuesta mucho más rápida que los archivos adjuntos PDF o el correo. Si aún deseas enviarnos tu aviso, nuestra dirección es: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it—and the 10-14 day waiting period starts from when we *receive* your counter notice. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc -En atención a: Agente de DMCA +Attn: DMCA Agent 88 Colin P Kelly Jr St San Francisco, CA. 94107 ``` diff --git a/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md b/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md index 18cac131d7..deccf23500 100644 --- a/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md +++ b/translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md @@ -1,8 +1,8 @@ --- -title: Guía para enviar un aviso de retiro de DMCA +title: Guide to Submitting a DMCA Takedown Notice redirect_from: - - /dmca-notice-how-to/ - - /articles/dmca-notice-how-to/ + - /dmca-notice-how-to + - /articles/dmca-notice-how-to - /articles/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' @@ -11,83 +11,84 @@ topics: - Legal --- -Esta guía describe la información que GitHub necesita para procesar una solicitud de retiro de DMCA. Si tienes preguntas más generales sobre qué es la DMCA o cómo procesa GitHub las solicitudes de retiro de DMCA, por favor revisa nuestra [política de retiro de DMCA](/articles/dmca-takedown-policy). +This guide describes the information that GitHub needs in order to process a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -Debido al tipo de contenido de los hosts de GitHub (principalmente de código de software) y a la forma en que se gestiona el contenido (con Git), necesitamos que las demandas sean lo más específicas posible. Estas directrices están diseñadas para que el procesamiento de las notificaciones de supuestas infracciones sea lo más sencillo posible. Nuestra forma de notificación indicada a continuación es coherente con el formulario sugerido por el estatuto DMCA, que se puede encontrar en el sitio web oficial de la Oficina de Derechos de Autor de EE. UU.: <https://www.copyright.gov>. Sitio web oficial de la Oficina de Derechos de Autor: <https://www.copyright.gov>. +Due to the type of content GitHub hosts (mostly software code) and the way that content is managed (with Git), we need complaints to be as specific as possible. These guidelines are designed to make the processing of alleged infringement notices as straightforward as possible. Our form of notice set forth below is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -Como en todas las cuestiones jurídicas, siempre es mejor consultar con un profesional sobre tus preguntas o situación específicas. Te recomendamos enfáticamente que lo hagas antes de emprender cualquier acción que pueda afectar tus derechos. Esta guía no es asesoramiento legal y no debería ser tomada como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## Antes de comenzar +## Before You Start -***Di la Verdad.*** La DMCA requiere que prestes atención a los hechos en tu queja de derechos de autor *bajo pena de perjurio*. Es un crimen federal mentir intencionadamente en una declaración jurada. (*Consulta* [el Código de lso EE.UU. , Título 18, Sección 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) La presentación de información falsa también podría resultar en responsabilidad civil, es decir, podrías ser demandado por daños monetarios. La DMCA por sí misma [proporciona daños](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) contra cualquier persona que, a sabiendas, tergiversa materialmente dicha actividad o material infractor. +***Tell the Truth.*** The DMCA requires that you swear to the facts in your copyright complaint *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability — that is, you could get sued for money damages. The DMCA itself [provides for damages](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) against any person who knowingly materially misrepresents that material or activity is infringing. -***Investiga.*** Millones de usuarios y organizaciones se esfuerzan demasiado en los proyectos que crean y contribuyen en GitHub. La presentación de una queja de DMCA contra un proyecto de este tipo es una acusación legal seria que conlleva consecuencias reales para las personas reales. Por eso, te pedimos que realices una investigación exhaustiva y consultes con un abogado antes de enviar una solicitud de retiro para asegurarte que el uso no sea realmente permisible. +***Investigate.*** Millions of users and organizations pour their hearts and souls into the projects they create and contribute to on GitHub. Filing a DMCA complaint against such a project is a serious legal allegation that carries real consequences for real people. Because of that, we ask that you conduct a thorough investigation and consult with an attorney before submitting a takedown to make sure that the use isn't actually permissible. -***Primero pregunta amablemente.*** Un gran primer paso antes de enviarnos una notificación de retiro es intentar contactar directamente al usuario. Pueden haber enumerado información de contacto en su página de perfil público o en el README del repositorio, o podrías ponerse en contacto abriendo una propuesta o solicitud de extracción en el repositorio. Esto no es estrictamente necesario, pero es común. +***Ask Nicely First.*** A great first step before sending us a takedown notice is to try contacting the user directly. They may have listed contact information on their public profile page or in the repository's README, or you could get in touch by opening an issue or pull request on the repository. This is not strictly required, but it is classy. -***Envia una solicitud de corrección.*** Sólo podemos aceptar notificaciones de retiro de DMCA para obras protegidas por derechos de autor y que identifiquen un trabajo específico con derechos de autor. Si tienes una queja sobre el abuso de la marca registrada, consulta nuestra [política de marcas](/articles/github-trademark-policy/). Si desea eliminar datos sensibles como contraseñas, consulta nuestra [política sobre datos sensibles](/articles/github-sensitive-data-removal-policy/). Si usted está tratando con difamación u otro comportamiento abusivo, por favor consulta nuestras [Directrices de la comunidad](/articles/github-community-guidelines/). +***Send In The Correct Request.*** We can only accept DMCA takedown notices for works that are protected by copyright, and that identify a specific copyrightable work. If you have a complaint about trademark abuse, please see our [trademark policy](/articles/github-trademark-policy/). If you wish to remove sensitive data such as passwords, please see our [policy on sensitive data](/articles/github-sensitive-data-removal-policy/). If you are dealing with defamation or other abusive behavior, please see our [Community Guidelines](/articles/github-community-guidelines/). -***El código es diferente de otro contenido creativo.*** GitHub está construido para colaborar en el código de software. Esto hace que la identificación de una infracción válida de derechos de autor sea más complicada de lo que podría ser de otra manera para, fotos, música o videos, por ejemplo. +***Code Is Different From Other Creative Content.*** GitHub is built for collaboration on software code. This makes identifying a valid copyright infringement more complicated than it might otherwise be for, say, photos, music, or videos. -Existen diversas razones por las que el código es diferente de otros contenidos creativos. Por ejemplo: +There are a number of reasons why code is different from other creative content. For instance: -- Un repositorio puede incluir bits y partes de código de muchas personas diferentes, pero sólo un archivo o incluso una subrutina dentro de un archivo infringe tus derechos de autor. -- El código mezcla funcionalidad con expresión creativa, pero los derechos de autor sólo protegen los elementos expresivos, no las partes que son funcionales. -- A menudo hay licencias a considerar. El hecho de que una parte del código tenga una notificación de derechos de autor no significa necesariamente que sea infractora. Es posible que el código se esté utilizando de acuerdo con una licencia de código abierto. -- Un uso particular puede ser [uso legítimo](https://www.lumendatabase.org/topics/22) si solamente utiliza una pequeña cantidad del contenido protegido por derechos de autor, si utiliza ese contenido de forma transformativa, lo utiliza para fines educativos, o alguna combinación de lo anterior. Dado que el código naturalmente se presta a dichos usos, cada caso de uso es diferente y debe considerarse por separado. -- Se puede alegar que el código infringe de muchas formas diferentes, exigiendo explicaciones detalladas e identificaciones de obras. +- A repository may include bits and pieces of code from many different people, but only one file or even a sub-routine within a file infringes your copyrights. +- Code mixes functionality with creative expression, but copyright only protects the expressive elements, not the parts that are functional. +- There are often licenses to consider. Just because a piece of code has a copyright notice does not necessarily mean that it is infringing. It is possible that the code is being used in accordance with an open-source license. +- A particular use may be [fair-use](https://www.lumendatabase.org/topics/22) if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +- Code may be alleged to infringe in many different ways, requiring detailed explanations and identifications of works. -Esta lista no es exhaustiva, por lo que hablar con un profesional legal sobre tu propuesta de reclamación es doblemente importante cuando se trata de un código. +This list isn't exhaustive, which is why speaking to a legal professional about your proposed complaint is doubly important when dealing with code. -***Sin bots.*** Deberías contar con un profesional capacitado para evaluar los datos de cada notificación de retito que envíes. Si estás subcontratando tus labores a un tercero, asegúrate de saber cómo trabajand y asegúrate que no estén utilizando bots automatizados para presentar quejas en masa. ¡Estas quejas a menudo no son válidas y su procesamiento da lugar a la supresión innecesaria de proyectos! +***No Bots.*** You should have a trained professional evaluate the facts of every takedown notice you send. If you are outsourcing your efforts to a third party, make sure you know how they operate, and make sure they are not using automated bots to submit complaints in bulk. These complaints are often invalid and processing them results in needlessly taking down projects! -***Los temas de derechos de autor son difíciles.*** Puede ser muy difícil determinar si un trabajo en particular está protegido o no por derechos de autor. Por ejemplo, los hechos (incluyendo los datos) generalmente no tienen derechos de autor. Las palabras y las frases cortas generalmente no tienen derechos de autor. Las URLs y los nombres de dominio generalmente no tienen derechos de autor. Dado que sólo puede utilizar el proceso DMCA para abordar contenido protegido por derechos de autor, deberías hablar con un abogado si tienes preguntas sobre si tu contenido es o no protegible. +***Matters of Copyright Are Hard.*** It can be very difficult to determine whether or not a particular work is protected by copyright. For example, facts (including data) are generally not copyrightable. Words and short phrases are generally not copyrightable. URLs and domain names are generally not copyrightable. Since you can only use the DMCA process to target content that is protected by copyright, you should speak with a lawyer if you have questions about whether or not your content is protectable. -***Puedes recibir una contra notificación.*** Cualquier usuario afectado por tu notificación de retiro puede decidir enviar una [contra notificación](/articles/guide-to-submitting-a-dmca-counter-notice). Si lo hacen, reactivaremos tu contenido en un plazo de 10 a 14 días a menos que nos notifique que has iniciado una acción legal encaminada a impedir que el usuario se involucre en infringir la actividad relacionada con el contenido en GitHub. +***You May Receive a Counter Notice.*** Any user affected by your takedown notice may decide to submit a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). If they do, we will re-enable their content within 10-14 days unless you notify us that you have initiated a legal action seeking to restrain the user from engaging in infringing activity relating to the content on GitHub. -***Tu queja se publicará.*** Como se indica en nuestra [política de DMCA](/articles/dmca-takedown-policy#d-transparency), después de modificar la información personal, publicamos todas las notificaciones de retiro completas y accionables en [https://github. om/github/dmca](https://github.com/github/dmca). +***Your Complaint Will Be Published.*** As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), after redacting personal information, we publish all complete and actionable takedown notices at <https://github.com/github/dmca>. -***GitHub no es el juez.*** GitHub ejerce poca discreción en el proceso además de determinar si las notificaciones cumplen con los requisitos mínimos de la DMCA. Corresponde a las partes (y a sus abogados) evaluar el mérito de sus reclamaciones, teniendo en cuenta que los avisos deben realizarse bajo pena de perjurio. +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -## Tu queja debe ... +## Your Complaint Must ... -1. **Incluir la siguiente declaración: "He leído y entendido la guía de GitHub para presentar una notificación de DMCA.** No nos negaremos a procesar una queja completa si no incluye esta declaración. Pero sabremos que no has leído estas directrices y podríamos solicitarte que regreses y lo lleves a cabo. +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Notice."** We won't refuse to process an otherwise complete complaint if you don't include this statement. But we'll know that you haven't read these guidelines and may ask you to go back and do so. -2. **Identifica el trabajo con derechos de autor que consideras que ha sido infringido.** Esta información es importante porque ayuda al usuario afectado a evaluar su reclamación y le da la capacidad de comparar su trabajo con el tuyo. La especificidad de su identificación dependerá de la naturaleza del trabajo que consideras que ha sido infringido. Si has publicado tu trabajo, solo podrás enlazar a una página web donde reside. Si es autónoma y no está publicada, puedes describirlo y explicar que es propietario. Si lo has registrado en la Oficina de Derechos de Autor, debes incluir el número de registro. Si estás alegando que el contenido alojado es una copia directa y literal de tu trabajo, también puedes explicar ese hecho. +2. **Identify the copyrighted work you believe has been infringed.** This information is important because it helps the affected user evaluate your claim and give them the ability to compare your work to theirs. The specificity of your identification will depend on the nature of the work you believe has been infringed. If you have published your work, you might be able to just link back to a web page where it lives. If it is proprietary and not published, you might describe it and explain that it is proprietary. If you have registered it with the Copyright Office, you should include the registration number. If you are alleging that the hosted content is a direct, literal copy of your work, you can also just explain that fact. -3. **Identifica el material al que haces referencia que está infringiendo el trabajo protegido por derechos de autor que aparece en el artículo #2, anterior.** Es importante ser lo más específico posible en tu identificación. Esta identificación debe ser razonablemente suficiente para permitir a GitHub localizar el material. Como mínimo, esto significa que debe incluir la URL del material que supuestamente infringe sus derechos de autor. Si aseguras que se infringe menos de un repositorio completo, identifica el(los) archivo(s) específicos o números de línea dentro de un archivo al que te refieres. Si aseguras que se infringe todo el contenido en una URL, por favor se explícito al respecto también. - - Por favor, toma en cuenta que GitHub *no* inhabilitará automáticamente las [bifurcaciones](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) al inhabilitar un repositorio padre. Si has investigado y analizado los forks de un repositorio y crees que también están infringiendo, por favor identifique explícitamente cada fork supuestamente infractor. Por favor, confirma también que has investigado cada caso individual y que tus declaraciones juradas se aplican a cada fork identificado. En pocas ocasiones, puede que alegues que se violaron los derechos de autor en todo un repositorio que se está bifurcando. Si en al momento de enviar tu notificación identificaste todas las bifurcaciones existentes de dicho repositorio como supuestas violaciones, procesaremos un reclamo válido contra todas las bifurcaciones en esa red al momento de procesar la notificación. Haremos esto dada la probabilidad de que todas las bifurcaciones recién creadas contengan lo mismo. Adicionalmente, si la red que se reporta como albergadora del contenido de la supuesta violación es mayor a cien (100) repositorios y, por lo tanto, es difícil de revisar completamente, podríamos considerar inhabilitar toda la red si declaras en tu notificación que, "Con base en la cantidad representativa de bifurcaciones que revisaste, crees que todas o la mayoría de las bifurcaciones constituyen una violación en la misma medida que el repositorio padre". Tu declaración jurada aplicará a la presente. +3. **Identify the material that you allege is infringing the copyrighted work listed in item #2, above.** It is important to be as specific as possible in your identification. This identification needs to be reasonably sufficient to permit GitHub to locate the material. At a minimum, this means that you should include the URL to the material allegedly infringing your copyright. If you allege that less than a whole repository infringes, identify the specific file(s) or line numbers within a file that you allege infringe. If you allege that all of the content at a URL infringes, please be explicit about that as well. + - Please note that GitHub will *not* automatically disable [forks](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) when disabling a parent repository. If you have investigated and analyzed the forks of a repository and believe that they are also infringing, please explicitly identify each allegedly infringing fork. Please also confirm that you have investigated each individual case and that your sworn statements apply to each identified fork. In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks you have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -4. **Explica lo que el usuario afectado tendría que hacer para remediar la infracción.** De nuevo, la especificidad es importante. Cuando transmitimos su queja al usuario, esto les dirá lo que tienen que hacer para evitar que el resto de su contenido esté desactivado. ¿Necesita el usuario añadir una declaración de atribución? ¿Necesitan eliminar ciertas líneas dentro de su código, o archivos completos? Por supuesto, entendemos en algunos casos, todo el contenido de un usuario puede infringirse presuntamente y no hay nada que puedan hacer más que borrarlo todo. Si ese es el caso, por favor deja esto claro también. +4. **Explain what the affected user would need to do in order to remedy the infringement.** Again, specificity is important. When we pass your complaint along to the user, this will tell them what they need to do in order to avoid having the rest of their content disabled. Does the user just need to add a statement of attribution? Do they need to delete certain lines within their code, or entire files? Of course, we understand that in some cases, all of a user's content may be alleged to infringe and there's nothing they could do short of deleting it all. If that's the case, please make that clear as well. -5. **Proporciona tu información de contacto.** Incluye tu dirección de correo electrónico, nombre, número de teléfono y dirección. +5. **Provide your contact information.** Include your email address, name, telephone number and physical address. -6. **Proporciona información de contacto, si la conoces, para el presunto infractor.** Generalmente esto se realizará proporcionando el nombre de usuario de GitHub asociado con el contenido presuntamente infractor. Sin embargo, puede haber casos en los que tengas conocimientos adicionales sobre el presunto infractor. Si es así, por favor comparte esa información con nosotros. +6. **Provide contact information, if you know it, for the alleged infringer.** Usually this will be satisfied by providing the GitHub username associated with the allegedly infringing content. But there may be cases where you have additional knowledge about the alleged infringer. If so, please share that information with us. -7. **Incluye la siguiente declaración: "Tengo buena fe en que el uso de los materiales protegidos por derechos de autor descritos anteriormente en las páginas web infractoras no está autorizado por el propietario de los derechos de autor, o su agente, o la ley. He tenido en cuenta el uso justo."** +7. **Include the following statement: "I have a good faith belief that use of the copyrighted materials described above on the infringing web pages is not authorized by the copyright owner, or its agent, or the law. I have taken fair use into consideration."** -8. **También incluye la siguiente declaración: "Juro, bajo pena de perjurio, que la información de esta notificación es exacta y que soy el propietario de los derechos de autor, o estoy autorizado para actuar en nombre del propietario, de un derecho exclusivo que se infringe presuntamente".** +8. **Also include the following statement: "I swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright owner, or am authorized to act on behalf of the owner, of an exclusive right that is allegedly infringed."** -9. **Incluye tu firma física o electrónica.** +9. **Include your physical or electronic signature.** -## Quejas sobre Tecnología de Anti Elusión +## Complaints about Anti-Circumvention Technology -La Ley de Derechos de Autor también prohíbe la elusión de medidas tecnológicas que controlen eficazmente el acceso a las obras protegidas por los derechos de autor. Si crees que el contenido que se hospeda en GitHub viola esta prohibición, por favor, envíanos un reporte mediante nuestro {% data variables.contact.contact_dmca %}. Un reclamo de evasión debe incluir los siguientes detalles sobre las medidas técnicas puestas en marcha y sobre la forma en la que el proyecto acusado las evade. Específicamente, la notificación a GitHub debe incluir las declaraciones que describan: -1. Cuáles son las medidas técnicas; -2. Cómo controlan el acceso al material con derechos de autor de forma efectiva; y -3. Cómo se diseñó el proyecto actusado para evadir las medidas de protección tecnológica que se describen con anterioridad. +The Copyright Act also prohibits the circumvention of technological measures that effectively control access to works protected by copyright. If you believe that content hosted on GitHub violates this prohibition, please send us a report through our {% data variables.contact.contact_dmca %}. A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -## Como presentar tu queja +## How to Submit Your Complaint -La forma más rápida de obtener una respuesta es ingresar tu información y responder a todas las preguntas de nuestro {% data variables.contact.contact_dmca %}. +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -También puedes enviar una notificación por correo electrónico a <copyright@github.com>. Puedes incluir un archivo adjunto si lo deseas, pero por favor incluye una versión de texto simple de tu carta en el cuerpo de tu mensaje. +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -Si debes enviar tu aviso por correo físico, también puedes hacerlo pero tardará *substancialmente* en que lo recibamos y respondamos al mismo. Las notificaciones que recibimos por correo electrónico de texto plano tienen una respuesta mucho más rápida que los archivos adjuntos PDF o el correo. Si aún deseas enviarnos tu aviso, nuestra dirección es: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc -En atención a: Agente de DMCA +Attn: DMCA Agent 88 Colin P Kelly Jr St San Francisco, CA. 94107 ``` diff --git a/translations/es-ES/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md b/translations/es-ES/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md index ced72354c6..d78d303584 100644 --- a/translations/es-ES/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md +++ b/translations/es-ES/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md @@ -1,7 +1,7 @@ --- -title: Pautas para las solicitudes legales de los datos del usuario +title: Guidelines for Legal Requests of User Data redirect_from: - - /law-enforcement-guidelines/ + - /law-enforcement-guidelines - /articles/guidelines-for-legal-requests-of-user-data versions: fpt: '*' @@ -10,161 +10,214 @@ topics: - Legal --- -¿Eres un agente de la policía que lleva a cabo una investigación que pueda implicar contenido de usuario alojado en GitHub? O quizá seas una persona consciente de la privacidad y te gustaría saber qué información compartimos con las fuerzas policiales y bajo qué circunstancias. Cualquiera que sea la razón, estás en la página correcta. +Are you a law enforcement officer conducting an investigation that may involve user content hosted on GitHub? +Or maybe you're a privacy-conscious person who would like to know what information we share with law enforcement and under what circumstances. +Either way, you're on the right page. -En estas pautas, proporcionamos algunos antecedentes sobre lo que es GitHub, los tipos de datos que tenemos y las condiciones bajo las cuales divulgaremos información privada del usuario. Sin embargo, antes de entrar en los detalles, aquí se presentan algunos detalles importantes que quizás deseas saber: +In these guidelines, we provide a little background about what GitHub is, the types of data we have, and the conditions under which we will disclose private user information. +Before we get into the details, however, here are a few important details you may want to know: -- [**Notificaremos a los usuarios afectados**](#we-will-notify-any-affected-account-owners) sobre cualquier solicitud de información de su cuenta a menos que se prohíba hacerlo por ley u orden judicial. -- No divulgaremos **datos de seguimiento de ubicación**, tales como registros de direcciones IP, sin una [orden judicial válida o orden de registro](#with-a-court-order-or-a-search-warrant). -- No divulgaremos ningún **contenido privado del usuario**, incluyendo el contenido de repositorios privados, sin una [orden de registro válida](#only-with-a-search-warrant). +- We will [**notify affected users**](#we-will-notify-any-affected-account-owners) about any requests for their account information, unless prohibited from doing so by law or court order. +- We will not disclose **location-tracking data**, such as IP address logs, without a [valid court order or search warrant](#with-a-court-order-or-a-search-warrant). +- We will not disclose any **private user content**, including the contents of private repositories, without a valid [search warrant](#only-with-a-search-warrant). -## Acerca de estas pautas +## About these guidelines -Nuestros usuarios confían en nosotros con sus proyectos de software y código - a menudo algunos de sus activos personales o comerciales más valiosos. Mantener esa confianza es esencial para nosotros, lo que significa mantener los datos de los usuarios seguros y privados. +Our users trust us with their software projects and code—often some of their most valuable business or personal assets. +Maintaining that trust is essential to us, which means keeping user data safe, secure, and private. -Mientras que la abrumadora mayoría de nuestros usuarios utilizan los servicios de GitHub para crear nuevas empresas, para construir nuevas tecnologías y para el mejoramiento general de la humanidad, reconocemos que con millones de usuarios repartidos por todo el mundo, no hay duda de que habrá algunas excepciones. En esos casos, deseamos ayudar a las fuerzas policiales a servir a su legítimo interés de proteger al público. +While the overwhelming majority of our users use GitHub's services to create new businesses, build new technologies, and for the general betterment of humankind, we recognize that with millions of users spread all over the world, there are bound to be a few bad apples in the bunch. +In those cases, we want to help law enforcement serve their legitimate interest in protecting the public. -Al proporcionar pautas para el personal encargado de hacer cumplir la ley, esperamos lograr un equilibrio entre los intereses a menudo contrapuestos de la privacidad y la justicia de los usuarios. Esperamos que estas pautas ayuden a establecer expectativas por ambas partes, así como a añadir transparencia a los procesos internos de GitHub. Nuestros usuarios deben saber que valoramos su información privada y que hacemos nuestro mejor esfuerzo para protegerla. Como mínimo, esto significa la liberación de datos a terceros solo cuando se hayan cumplido los requisitos legales adecuados. Por el mismo token, también esperamos educar a los profesionales de la aplicación de la ley sobre los sistemas de GitHub, para que puedan adaptar de manera más eficiente sus solicitudes de datos y dirigir justo esa información necesaria para llevar a cabo su investigación. +By providing guidelines for law enforcement personnel, we hope to strike a balance between the often competing interests of user privacy and justice. +We hope these guidelines will help to set expectations on both sides, as well as to add transparency to GitHub's internal processes. +Our users should know that we value their private information and that we do what we can to protect it. +At a minimum, this means only releasing data to third-parties when the appropriate legal requirements have been satisfied. +By the same token, we also hope to educate law enforcement professionals about GitHub's systems so that they can more efficiently tailor their data requests and target just that information needed to conduct their investigation. -## Terminología GitHub +## GitHub terminology -Antes de solicitarnos que divulguemos datos, podría ser útil entender cómo se implementa nuestro sistema. GitHub aloja millones de repositorios de datos usando el [sistema de control de versiones Git](https://git-scm.com/video/what-is-version-control). Los repositorios en GitHub—que pueden ser públicos o privados—se utilizan más comúnmente para proyectos de desarrollo de software pero también se utilizan a menudo para trabajar en el contenido de todo tipo. +Before asking us to disclose data, it may be useful to understand how our system is implemented. +GitHub hosts millions of data repositories using the [Git version control system](https://git-scm.com/video/what-is-version-control). +Repositories on GitHub—which may be public or private—are most commonly used for software development projects, but are also often used to work on content of all kinds. -- [**Usuarios**](/articles/github-glossary#user) — Los usuarios están representados en nuestro sistema como cuentas personales de GitHub. Cada usuario tiene un perfil personal y puede tener múltiples repositorios. Los usuarios pueden crear o ser invitados a unirse a organizaciones o a colaborar en el repositorio de otro usuario. +- [**Users**](/articles/github-glossary#user) — +Users are represented in our system as personal GitHub accounts. +Each user has a personal profile, and can own multiple repositories. +Users can create or be invited to join organizations or to collaborate on another user's repository. -- [**Colaboradores**](/articles/github-glossary#collaborator) — Un colaborador es un usuario con acceso de lectura y escritura a un repositorio que ha sido invitado a contribuir por el propietario del repositorio. +- [**Collaborators**](/articles/github-glossary#collaborator) — +A collaborator is a user with read and write access to a repository who has been invited to contribute by the repository owner. -- [**Organizaciones**](/articles/github-glossary#organization) — Las organizaciones son un grupo de dos o más usuarios que normalmente reflejan las organizaciones del mundo real, como empresas o proyectos. Son administrados por usuarios y pueden contener tanto repositorios como equipos de usuarios. +- [**Organizations**](/articles/github-glossary#organization) — +Organizations are a group of two or more users that typically mirror real-world organizations, such as businesses or projects. +They are administered by users and can contain both repositories and teams of users. -- [**Repositorios**](/articles/github-glossary#repository) — Un repositorio es uno de los elementos más básicos de GitHub. Pueden ser los más fáciles de imaginar como una carpeta de un proyecto. Un repositorio contiene todos los archivos del proyecto (incluida la documentación) y almacena cada historial de revisión del archivo. Los repositorios pueden tener múltiples colaboradores y, a discreción de sus administradores, pueden ser públicos o no. +- [**Repositories**](/articles/github-glossary#repository) — +A repository is one of the most basic GitHub elements. +They may be easiest to imagine as a project's folder. +A repository contains all of the project files (including documentation), and stores each file's revision history. +Repositories can have multiple collaborators and, at its administrators' discretion, may be publicly viewable or not. -- [**Páginas**](/articles/what-is-github-pages) — Las páginas de GitHub son páginas web públicas libremente alojadas por GitHub que los usuarios pueden publicar fácilmente a través del código almacenado en sus repositorios. Si un usuario u organización tiene una página de GitHub, generalmente se puede encontrar en una URL como `https://username. ithub.io` o pueden tener la página web mapeada a su propio nombre de dominio personalizado. +- [**Pages**](/articles/what-is-github-pages) — +GitHub Pages are public webpages freely hosted by GitHub that users can easily publish through code stored in their repositories. +If a user or organization has a GitHub Page, it can usually be found at a URL such as `https://username.github.io` or they may have the webpage mapped to their own custom domain name. -- [**Gists**](/articles/creating-gists) — Gists son fragmentos de código fuente u otro texto que los usuarios pueden usar para almacenar ideas o compartir con amigos. Al igual que los repositorios normales de GitHub, las listas se crean con Git, por lo que son automáticamente versionadas, bifurcables y descargables. Las listas pueden ser públicas o secretas (accesibles solo a través de una URL conocida). Los Gists públicos no pueden convertirse en Gists secretos. +- [**Gists**](/articles/creating-gists) — +Gists are snippets of source code or other text that users can use to store ideas or share with friends. +Like regular GitHub repositories, Gists are created with Git, so they are automatically versioned, forkable and downloadable. +Gists can either be public or secret (accessible only through a known URL). Public Gists cannot be converted into secret Gists. -## Datos de usuario en GitHub.com +## User data on GitHub.com -Aquí hay una lista no exhaustiva de los tipos de datos que mantenemos sobre usuarios y proyectos en GitHub. +Here is a non-exhaustive list of the kinds of data we maintain about users and projects on GitHub. - <a name="public-account-data"></a> -**Datos de cuenta pública** — Hay una variedad de información disponible públicamente en GitHub sobre los usuarios y sus repositorios. Los perfiles de usuario se pueden encontrar en una URL como `https://github.com/username`. Los perfiles de usuario muestran información acerca de cuándo creó su cuenta el usuario, así como su actividad pública en GitHub.com e interacciones sociales. Los perfiles de usuario públicos también pueden incluir información adicional que un usuario pudo haber decidido compartir públicamente. Visualización de todos los perfiles públicos del usuario: - - Nombre de usuario - - Los repositorios que el usuario ha marcado - - Los otros usuarios de GitHub que el usuario sigue - - Los usuarios que los siguen +**Public account data** — +There is a variety of information publicly available on GitHub about users and their repositories. +User profiles can be found at a URL such as `https://github.com/username`. +User profiles display information about when the user created their account as well their public activity on GitHub.com and social interactions. +Public user profiles can also include additional information that a user may have chosen to share publicly. +All user public profiles display: + - Username + - The repositories that the user has starred + - The other GitHub users the user follows + - The users that follow them - Opcionalmente, un usuario también puede elegir compartir la siguiente información públicamente: - - Su nombre real - - Un avatar - - Una empresa afiliada - - Su ubicación - - Una dirección de correo electrónico pública - - Su página web personal - - Organizaciones de las que el usuario es miembro (*dependiendo de las preferencias de las organizaciones o de los usuarios*) + Optionally, a user may also choose to share the following information publicly: + - Their real name + - An avatar + - An affiliated company + - Their location + - A public email address + - Their personal web page + - Organizations to which the user is a member (*depending on either the organizations' or the users' preferences*) - <a name="private-account-data"></a> -**Datos privados de la cuenta** — GitHub también recopila y mantiene cierta información privada sobre los usuarios como se describe en nuestra [Política de Privacidad](/articles/github-privacy-statement).+ Puede incluir: - - Direcciones de correo electrónico privadas - - Detalles de pago - - Registros de acceso de seguridad - - Datos sobre interacciones con los repositorios privados +**Private account data** — +GitHub also collects and maintains certain private information about users as outlined in our [Privacy Policy](/articles/github-privacy-statement). +This may include: + - Private email addresses + - Payment details + - Security access logs + - Data about interactions with private repositories - Para obtener un sentido del tipo de información de cuenta privada que recopila GitHub, puedes visitar tu {% data reusables.user_settings.personal_dashboard %} y navegar por las secciones de la barra de menú de la izquierda. + To get a sense of the type of private account information that GitHub collects, you can visit your {% data reusables.user_settings.personal_dashboard %} and browse through the sections in the left-hand menubar. - <a name="organization-account-data"></a> -**Datos de cuenta de la organización** — La información sobre organizaciones, sus usuarios administrativos y repositorios está disponible públicamente en GitHub. Los perfiles de la organización se pueden encontrar en una URL como `https://github.com/organization`. Los perfiles de las organizaciones públicas también pueden incluir información adicional que los propietarios han decidido compartir públicamente. Visualización de todos los perfiles públicos de la organización: - - Nombre de la organización - - Los repositorios que los propietarios han marcado - - Todos los usuarios de GitHub que son propietarios de la organización +**Organization account data** — +Information about organizations, their administrative users and repositories is publicly available on GitHub. +Organization profiles can be found at a URL such as `https://github.com/organization`. +Public organization profiles can also include additional information that the owners have chosen to share publicly. +All organization public profiles display: + - The organization name + - The repositories that the owners have starred + - All GitHub users that are owners of the organization - Opcionalmente, los usuarios administrativos también pueden optar por compartir públicamente la siguiente información: - - Un avatar - - Una empresa afiliada - - Su ubicación - - Miembros directos y equipos - - Colaboradores + Optionally, administrative users may also choose to share the following information publicly: + - An avatar + - An affiliated company + - Their location + - Direct Members and Teams + - Collaborators - <a name="public-repository-data"></a> -**Datos del repositorio público**</strong> — GitHub es el hogar de millones de proyectos públicos de software de código público. Puede navegar casi cualquier repositorio público (por ejemplo, el [Proyecto Atom](https://github.com/atom/atom)) para tener un sentido de la información que GitHub recopila y mantiene sobre repositorios. Puede incluir: +**Public repository data** — +GitHub is home to millions of public, open-source software projects. +You can browse almost any public repository (for example, the [Atom Project](https://github.com/atom/atom)) to get a sense for the information that GitHub collects and maintains about repositories. +This can include: - - El código - - Versiones anteriores del código - - Versiones de lanzamiento estables del proyecto - - Información sobre colaboradores, contibuyentes y miembros del repositorio - - Registros de operaciones de Git como confirmaciones, ramificar, subir, extraer, bifurcar y clonar - - Conversaciones relacionadas con operaciones de Git como comentarios sobre solicitudes de extracción o confirmaciones - - Documentación del proyecto como Cuestiones y páginas Wiki - - Estadísticas y gráficos que muestran contribuciones al proyecto y a la red de colaboradores + - The code itself + - Previous versions of the code + - Stable release versions of the project + - Information about collaborators, contributors and repository members + - Logs of Git operations such as commits, branching, pushing, pulling, forking and cloning + - Conversations related to Git operations such as comments on pull requests or commits + - Project documentation such as Issues and Wiki pages + - Statistics and graphs showing contributions to the project and the network of contributors - <a name="private-repository-data"></a> -**Datos privados del repositorio** — GitHub recopila y mantiene el mismo tipo de datos para los repositorios privados que se pueden ver en los repositorios públicos, excepto que solamente los usuarios invitados específicamente puedan acceder a los datos del repositorio privado. +**Private repository data** — +GitHub collects and maintains the same type of data for private repositories that can be seen for public repositories, except only specifically invited users may access private repository data. - <a name="other-data"></a> -**Otros datos** - Adicionalmente, GitHub recopila datos analíticos tales como visitas de páginas e información ocasionalmente voluntaria por nuestros usuarios (por ejemplo, comunicaciones con nuestro equipo de soporte, información de la encuesta y/o registros del sitio). +**Other data** — +Additionally, GitHub collects analytics data such as page visits and information occasionally volunteered by our users (such as communications with our support team, survey information and/or site registrations). -## Notificaremos a los propietarios de las cuentas afectadas +## We will notify any affected account owners -Es nuestra política notificar a los usuarios sobre cualquier solicitud pendiente con respecto a sus cuentas o repositorios, a menos que se nos prohíba por ley u orden judicial hacerlo. Antes de revelar la información del usuario haremos un esfuerzo razonable para notificar a cualquier dueño de la cuenta afectada enviando un mensaje a su dirección de correo electrónico verificada proporcionándoles una copia de la cita, orden judicial u orden para que puedan tener la oportunidad de impugnar el proceso legal si lo desean. En circunstancias exigentes (raras), podríamos atrasar la notificación si lo creemos necesario para prevenir la muerte o el daño serio o debido a que existe una investigación en curso. +It is our policy to notify users about any pending requests regarding their accounts or repositories, unless we are prohibited by law or court order from doing so. Before disclosing user information, we will make a reasonable effort to notify any affected account owner(s) by sending a message to their verified email address providing them with a copy of the subpoena, court order, or warrant so that they can have an opportunity to challenge the legal process if they wish. In (rare) exigent circumstances, we may delay notification if we determine delay is necessary to prevent death or serious harm or due to an ongoing investigation. -## Divulgación de información no pública +## Disclosure of non-public information -Es nuestra política divulgar información de usuario no pública en relación con una investigación civil o criminal solo con el consentimiento del usuario o tras la recepción de una citación válida, demanda de investigación civil, orden judicial, orden de búsqueda u otro proceso legal válido similar. En ciertas circunstancias exigentes (véase abajo), también podemos compartir información limitada pero sólo correspondiente a la naturaleza de las circunstancias y requeriremos un proceso legal para cualquier tema adicional. GitHub se reserva el derecho de objetar cualquier solicitud de información no pública. Cuando GitHub acuerde producir información no pública en respuesta a una solicitud legal, realizaremos una búsqueda razonable para la información solicitada. Estos son los tipos de información que acordaremos producir, dependiendo del tipo de proceso legal que atendamos: +It is our policy to disclose non-public user information in connection with a civil or criminal investigation only with user consent or upon receipt of a valid subpoena, civil investigative demand, court order, search warrant, or other similar valid legal process. In certain exigent circumstances (see below), we also may share limited information but only corresponding to the nature of the circumstances, and would require legal process for anything beyond that. +GitHub reserves the right to object to any requests for non-public information. +Where GitHub agrees to produce non-public information in response to a lawful request, we will conduct a reasonable search for the requested information. +Here are the kinds of information we will agree to produce, depending on the kind of legal process we are served with: - <a name="with-user-consent"></a> -**Con el consentimiento del usuario** — GitHub proporcionará información de cuenta privada, si se solicita, directamente al usuario (o un propietario, en el caso de una cuenta de organización) o a un tercero designado con el consentimiento por escrito del usuario una vez que GitHub esté satisfecho de que el usuario haya verificado su identidad. +**With user consent** — +GitHub will provide private account information, if requested, directly to the user (or an owner, in the case of an organization account), or to a designated third party with the user's written consent once GitHub is satisfied that the user has verified his or her identity. - <a name="with-a-subpoena"></a> -**Con una citación ** — Si atiende una solicitud de investigación civil válida o un proceso legal similar emitido en relación con una investigación penal o civil oficial, podemos proporcionar cierta información de cuenta no pública, que puede incluir: +**With a subpoena** — +If served with a valid subpoena, civil investigative demand, or similar legal process issued in connection with an official criminal or civil investigation, we can provide certain non-public account information, which may include: - - Nombre(s) asociados con la cuenta - - Dirección(es) de correo electrónico asociada(s) a la cuenta - - Información de facturación - - Fecha de registro y fecha de finalización - - Dirección IP, fecha y hora al momento del registro de la cuenta - - Dirección(es) IP utilizada para acceder a la cuenta en un momento o evento específico relevante para la investigación + - Name(s) associated with the account + - Email address(es) associated with the account + - Billing information + - Registration date and termination date + - IP address, date, and time at the time of account registration + - IP address(es) used to access the account at a specified time or event relevant to the investigation -En el caso de cuentas de organización, podemos proporcionar el(los) nombre(s) y la(s) dirección(es) de correo electrónico del propietario(s) de la cuenta, así como la fecha y la dirección IP en el momento de la creación de la cuenta de la organización. No produciremos información sobre otros miembros o colaboradores, si existen, a la cuenta de la organización o cualquier información adicional relacionada con el propietario o dueño de la cuenta identificada sin una solicitud de seguimiento para esos usuarios específicos. +In the case of organization accounts, we can provide the name(s) and email address(es) of the account owner(s) as well as the date and IP address at the time of creation of the organization account. We will not produce information about other members or contributors, if any, to the organization account or any additional information regarding the identified account owner(s) without a follow-up request for those specific users. -Tenga en cuenta que la información disponible variará de un caso a otro. Parte de la información es opcional para que los usuarios la proporcionen. En otros casos, es posible que no hayamos recopilado ni conservado la información. +Please note that the information available will vary from case to case. Some of the information is optional for users to provide. In other cases, we may not have collected or retained the information. - <a name="with-a-court-order-or-a-search-warrant"></a> -**Con una orden judicial *o* una orden de registro** — No divulgaremos registros de acceso a la cuenta a menos que se nos obligue a hacerlo por (i) una orden judicial emitida bajo 18 U. S.C. Sección 2703(d), sobre una muestra de hechos específicos y articulables que demuestran que existen motivos razonables para creer que la información solicitada es relevante y material para una investigación criminal en curso; o (ii) una orden de búsqueda emitida bajo los procedimientos descritos en las Normas Federales de Procedimiento Penal o procedimientos equivalentes de la orden estatal sobre una muestra de causa probable. Además de la información no pública de la cuenta de usuario listada anteriormente podemos proporcionar registros de acceso a la cuenta en respuesta a una orden judicial o a una orden de registro, que puede incluir: +**With a court order *or* a search warrant** — We will not disclose account access logs unless compelled to do so by either +(i) a court order issued under 18 U.S.C. Section 2703(d), upon a showing of specific and articulable facts showing that there are reasonable grounds to believe that the information sought is relevant and material to an ongoing criminal investigation; or +(ii) a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures, upon a showing of probable cause. +In addition to the non-public user account information listed above, we can provide account access logs in response to a court order or search warrant, which may include: - - Cualquier registro que revele los movimientos de un usuario a lo largo de un período de tiempo - - Configuración de la cuenta o repositorio privado (por ejemplo, qué usuarios tienen ciertos permisos, etc.) - - Datos analíticos específicos del usuario o IP, como el historial de navegación - - Registros de acceso de seguridad distintos a la creación de cuentas o para una fecha y hora específica + - Any logs which would reveal a user's movements over a period of time + - Account or private repository settings (for example, which users have certain permissions, etc.) + - User- or IP-specific analytic data such as browsing history + - Security access logs other than account creation or for a specific time and date - <a name="only-with-a-search-warrant"></a> -**Sólo con una orden de registro** — No divulgaremos el contenido privado de ninguna cuenta de usuario a menos que se lo obligue a hacerlo bajo una orden de registro emitida de acuerdo con los procedimientos descritos en las Normas Federales de Procedimiento Penal o procedimientos equivalentes de la orden estatal al mostrar una causa probable. Además de la información no pública de la cuenta de usuario y los registros de acceso a la cuenta mencionados anteriormente también proporcionaremos contenido privado de la cuenta de usuario en respuesta a una orden de registro, que puede incluir: +**Only with a search warrant** — +We will not disclose the private contents of any user account unless compelled to do so under a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures upon a showing of probable cause. +In addition to the non-public user account information and account access logs mentioned above, we will also provide private user account contents in response to a search warrant, which may include: - - Contenidos de Gists secretos - - Código fuente u otro contenido en los repositorios privados - - Registros de contribución y colaboración para los repositorios privados - - Comunicaciones o documentación (como Cuestiones o Wikis) en depósitos privados - - Cualquier clave de seguridad usada para autenticación o cifrado + - Contents of secret Gists + - Source code or other content in private repositories + - Contribution and collaboration records for private repositories + - Communications or documentation (such as Issues or Wikis) in private repositories + - Any security keys used for authentication or encryption - <a name="in-exigent-circumstances"></a> -**Bajo circunstancias exigentes** — Si recibimos una solicitud de información bajo ciertas circunstancias exigentes (donde creemos que la divulgación es necesaria para prevenir una emergencia que implique peligro de muerte o lesiones físicas graves a una persona), podemos divulgar información limitada que determinamos necesaria para permitir que las fuerzas policiales atiendan la emergencia. Para cualquier información adicional, necesitaríamos una citación, una orden de registro, una orden judicial, como se describe anteriormente. Por ejemplo, no divulgaremos contenidos de repositorios privados sin una orden de registro. Antes de divulgar la información, confirmamos que la solicitud procedía de una agencia policial, que una autoridad haya enviado una notificación oficial resumiendo la emergencia y cómo la información solicitada ayudará a resolver la emergencia. +**Under exigent circumstances** — +If we receive a request for information under certain exigent circumstances (where we believe the disclosure is necessary to prevent an emergency involving danger of death or serious physical injury to a person), we may disclose limited information that we determine necessary to enable law enforcement to address the emergency. For any information beyond that, we would require a subpoena, search warrant, or court order, as described above. For example, we will not disclose contents of private repositories without a search warrant. Before disclosing information, we confirm that the request came from a law enforcement agency, an authority sent an official notice summarizing the emergency, and how the information requested will assist in addressing the emergency. -## Reembolso de costes +## Cost reimbursement -Bajo la ley federal y estatal, GitHub podrá buscar el reembolso de los costos asociados con el cumplimiento con una demanda legal válida, tal como una citación, orden judicial o orden de búsqueda. Solo cobramos la cantidad de los cargos de recuperación y dichos reembolsos solo cubren una parte de los costos que realmente incurrimos para cumplir con las órdenes legales. +Under state and federal law, GitHub can seek reimbursement for costs associated with compliance with a valid legal demand, such as a subpoena, court order or search warrant. We only charge to recover some costs, and these reimbursements cover only a portion of the costs we actually incur to comply with legal orders. -Si bien no hacemos cargos en situaciones de emergencia o en otras circunstancias exigentes, buscamos el reembolso por todo el resto de las solicitudes legales de acuerdo con la siguiente programación, a menos de que se requiera legalmente de otra forma: +While we do not charge in emergency situations or in other exigent circumstances, we seek reimbursement for all other legal requests in accordance with the following schedule, unless otherwise required by law: -- Búsqueda inicial de hasta 25 identificadores: Gratuita -- Información/datos de suscripción o producción hasta 5 cuentas: Gratuito -- Información/datos de suscripción o producción en más de 5 cuentas: $20 por cuenta -- Búsquedas secundarias: $10 por búsqueda +- Initial search of up to 25 identifiers: Free +- Production of subscriber information/data for up to 5 accounts: Free +- Production of subscriber information/data for more than 5 accounts: $20 per account +- Secondary searches: $10 per search -## Conservación de datos +## Data preservation -Tomaremos medidas para preservar los registros de la cuenta por hasta 90 días desde que se tenga una solicitud formal de las autoridades policiales de los EE. UU. en conexión con las investigaciones criminales oficiales, y pendiente de emitir una orden judicial u otro proceso. +We will take steps to preserve account records for up to 90 days upon formal request from U.S. law enforcement in connection with official criminal investigations, and pending the issuance of a court order or other process. -## Cómo enviar solicitudes +## Submitting requests -Envía solicitudes a: +Please serve requests to: ``` GitHub, Inc. @@ -173,23 +226,25 @@ c/o Corporation Service Company Sacramento, CA 95833-3505 ``` -Se pueden enviar copias de cortesía por correo electrónico a legal@support.github.com. +Courtesy copies may be emailed to legal@support.github.com. -Por favor, realiza tus solicitudes lo más específicas y limitadas posible, incluyendo la siguiente información: +Please make your requests as specific and narrow as possible, including the following information: -- Información completa sobre la autoridad que emite la solicitud de información -- El nombre y el gafete/ID del agente responsable -- Una dirección de correo electrónico oficial y número de teléfono de contacto -- El usuario, organización, nombre(s) del repositorio de interés -- Las URLs de cualquier página, lista o archivos de interés -- La descripción de los tipos de registros que necesitas +- Full information about authority issuing the request for information +- The name and badge/ID of the responsible agent +- An official email address and contact phone number +- The user, organization, repository name(s) of interest +- The URLs of any pages, gists or files of interest +- The description of the types of records you need -Por favor, espera al menos dos semanas para que podamos examinar tu solicitud. +Please allow at least two weeks for us to be able to look into your request. -## Solicitudes de aplicación de la ley extranjera +## Requests from foreign law enforcement -Como empresa de Estados Unidos con sede en California, GitHub no está obligada a proporcionar datos a los gobiernos extranjeros en respuesta al proceso legal emitido por autoridades extranjeras. Los funcionarios encargados de hacer cumplir la ley extranjera que deseen solicitar información a GitHub deben ponerse en contacto con la Oficina de Asuntos Internacionales del Departamento de Justicia de los Estados Unidos. GitHub responderá rápidamente a las solicitudes que se emitan a través del tribunal de los Estados Unidos mediante un tratado de asistencia legal mutuo (“MLAT”) o exhorto. mediante un tratado de asistencia legal mutuo (“MLAT”) o exhorto. +As a United States company based in California, GitHub is not required to provide data to foreign governments in response to legal process issued by foreign authorities. +Foreign law enforcement officials wishing to request information from GitHub should contact the United States Department of Justice Criminal Division's Office of International Affairs. +GitHub will promptly respond to requests that are issued via U.S. court by way of a mutual legal assistance treaty (“MLAT”) or letter rogatory. -## Preguntas +## Questions -¿Tiene otras preguntas, comentarios o sugerencias? Ponte en contacto con {% data variables.contact.contact_support %}. +Do you have other questions, comments or suggestions? Please contact {% data variables.contact.contact_support %}. diff --git a/translations/es-ES/content/github/site-policy/index.md b/translations/es-ES/content/github/site-policy/index.md index abb63c7a33..1496ee8035 100644 --- a/translations/es-ES/content/github/site-policy/index.md +++ b/translations/es-ES/content/github/site-policy/index.md @@ -1,7 +1,7 @@ --- title: Site policy redirect_from: - - /categories/61/articles/ + - /categories/61/articles - /categories/site-policy versions: fpt: '*' diff --git a/translations/es-ES/content/github/working-with-github-support/github-enterprise-cloud-support.md b/translations/es-ES/content/github/working-with-github-support/github-enterprise-cloud-support.md index 7c198a59d3..972f708b78 100644 --- a/translations/es-ES/content/github/working-with-github-support/github-enterprise-cloud-support.md +++ b/translations/es-ES/content/github/working-with-github-support/github-enterprise-cloud-support.md @@ -1,8 +1,8 @@ --- title: GitHub Enterprise Cloud support redirect_from: - - /articles/business-plan-support/ - - /articles/github-business-cloud-support/ + - /articles/business-plan-support + - /articles/github-business-cloud-support - /articles/github-enterprise-cloud-support intro: '{% data variables.product.prodname_ghe_cloud %} includes a target eight-hour response time for priority support requests, Monday to Friday in your local time zone.' versions: diff --git a/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md b/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md index 15d5a901f2..d52fb36e48 100644 --- a/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md +++ b/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md @@ -1,11 +1,11 @@ --- -title: Crear gists -intro: 'Puedes crear dos tipos de gists: {% ifversion ghae %}internos{% else %}públicos{% endif %} y secretos. Crea un gist {% ifversion ghae %}interno{% else %}público{% endif %} si estás listo para compartir tus ideas con {% ifversion ghae %}los miembros de la emrpesa{% else %}el mundo{% endif %} o, de lo contrario, un gist secreto.' +title: Creating gists +intro: 'You can create two kinds of gists: {% ifversion ghae %}internal{% else %}public{% endif %} and secret. Create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist if you''re ready to share your ideas with {% ifversion ghae %}enterprise members{% else %}the world{% endif %} or a secret gist if you''re not.' permissions: '{% data reusables.enterprise-accounts.emu-permission-gist %}' redirect_from: - - /articles/about-gists/ - - /articles/cannot-delete-an-anonymous-gist/ - - /articles/deleting-an-anonymous-gist/ + - /articles/about-gists + - /articles/cannot-delete-an-anonymous-gist + - /articles/deleting-an-anonymous-gist - /articles/creating-gists - /github/writing-on-github/creating-gists versions: @@ -14,68 +14,71 @@ versions: ghae: '*' ghec: '*' --- +## About gists -## Acerca de los gists +Every gist is a Git repository, which means that it can be forked and cloned. {% ifversion not ghae %}If you are signed in to {% data variables.product.product_name %} when{% else %}When{% endif %} you create a gist, the gist will be associated with your account and you will see it in your list of gists when you navigate to your {% data variables.gists.gist_homepage %}. -Todo gist es un repositorio Git, lo que significa que se puede bifurcar y clonar. {% ifversion not ghae %}Si iniciaste sesión en {% data variables.product.product_name %} cuando{% else %}Cuando{% endif %} creas un gist, este se asociará con tu cuenta y lo verás en tu lista de gists cuando navegues a tu {% data variables.gists.gist_homepage %}. +Gists can be {% ifversion ghae %}internal{% else %}public{% endif %} or secret. {% ifversion ghae %}Internal{% else %}Public{% endif %} gists show up in {% data variables.gists.discover_url %}, where {% ifversion ghae %}enterprise members{% else %}people{% endif %} can browse new gists as they're created. They're also searchable, so you can use them if you'd like other people to find and see your work. -Los gists pueden ser {% ifversion ghae %}internos{% else %}públicos{% endif %} o secretos. Los gists {% ifversion ghae %}internos{% else %}públicos{% endif %} se muestran en {% data variables.gists.discover_url %}, en donde {% ifversion ghae %}los miembros empresariales{% else %}las personas{% endif %} pueden buscar gists nuevos conforme estos se creen. También se los puede buscar, para que puedas usarlos si deseas que otras personas encuentren tu trabajo y lo vean. - -Los gists secretos no se muestran en {% data variables.gists.discover_url %} y no se pueden buscar. Los gists no son privados. Si envías la URL de un gist secreto a {% ifversion ghae %}otro miembro de la empresa{% else %}un amigo {% endif %}, podrán verlo. Sin embargo, si {% ifversion ghae %}cualquier otro miembro de la empresa{% else %}alguien que no conozcas{% endif %} descubre la URL, también podrán ver tu gist. Si deseas mantener tu código a salvo de las miradas curiosas, puedes optar por [crear un repositorio privado](/articles/creating-a-new-repository) en lugar de un gist. +Secret gists don't show up in {% data variables.gists.discover_url %} and are not searchable. Secret gists aren't private. If you send the URL of a secret gist to {% ifversion ghae %}another enterprise member{% else %}a friend{% endif %}, they'll be able to see it. However, if {% ifversion ghae %}any other enterprise member{% else %}someone you don't know{% endif %} discovers the URL, they'll also be able to see your gist. If you need to keep your code away from prying eyes, you may want to [create a private repository](/articles/creating-a-new-repository) instead. {% data reusables.gist.cannot-convert-public-gists-to-secret %} {% ifversion ghes %} -Si el administrador de tu sitio ha inhabilitado el modo privado, también puedes usar gists anónimos, que pueden ser públicos o privados. +If your site administrator has disabled private mode, you can also use anonymous gists, which can be public or secret. {% data reusables.gist.anonymous-gists-cannot-be-deleted %} {% endif %} -Recibirás una notificación si: -- Seas el autor de un gist. -- Alguien te mencione en un gist. -- Puedes suscribirte a un gist haciendo clic en **Suscribir** en la parte superior de cualquier gist. +You'll receive a notification when: +- You are the author of a gist. +- Someone mentions you in a gist. +- You subscribe to a gist, by clicking **Subscribe** at the top of any gist. {% ifversion fpt or ghes or ghec %} -Puedes fijar los gists a tu perfil para que otras personas los puedan ver fácilmente. Para obtener más información, consulta "[A nclar elementos a tu perfil](/articles/pinning-items-to-your-profile)". +You can pin gists to your profile so other people can see them easily. For more information, see "[Pinning items to your profile](/articles/pinning-items-to-your-profile)." {% endif %} -Puedes descubrir gists {% ifversion ghae %}internos{% else %}públicos{% endif %} que hayan creado otras personas si vas a la {% data variables.gists.gist_homepage %} y das clic en **Todos los gists**. Esto te llevará a una página en la que aparecen todos los gists clasificados y presentados por fecha de creación o actualización. También puedes buscar los gists por idioma con {% data variables.gists.gist_search_url %}. La búsqueda de gists usa la misma sintaxis de búsqueda que la [búsqueda de código](/search-github/searching-on-github/searching-code). +You can discover {% ifversion ghae %}internal{% else %}public{% endif %} gists others have created by going to the {% data variables.gists.gist_homepage %} and clicking **All Gists**. This will take you to a page of all gists sorted and displayed by time of creation or update. You can also search gists by language with {% data variables.gists.gist_search_url %}. Gist search uses the same search syntax as [code search](/search-github/searching-on-github/searching-code). -Dado que los gists son repositorios Git, puedes ver su historial de confirmaciones completo, que incluye todas las diferencias que existan. También puedes bifurcar o clonar gists. Para obtener más información, consulta "[Bifurcar y clonar gists"](/articles/forking-and-cloning-gists). +Since gists are Git repositories, you can view their full commit history, complete with diffs. You can also fork or clone gists. For more information, see ["Forking and cloning gists"](/articles/forking-and-cloning-gists). -Puedes descargar un archivo ZIP de un gist haciendo clic en el botón **Descargar ZIP** en la parte superior del gist. Puedes insertar un gist en cualquier campo de texto compatible con Javascript, como una publicación en un blog. Para insertar el código, haz clic en el icono del portapapeles junto a la URL **Insertar** de un gist. Para insertar un archivo de gist específico, anexa la URL **Insertar** con `?file=FILENAME`. +You can download a ZIP file of a gist by clicking the **Download ZIP** button at the top of the gist. You can embed a gist in any text field that supports Javascript, such as a blog post. To get the embed code, click the clipboard icon next to the **Embed** URL of a gist. To embed a specific gist file, append the **Embed** URL with `?file=FILENAME`. {% ifversion fpt or ghec %} -Git admite la asignación de archivos GeoJSON. Estas asignaciones se muestran como gists insertos, para que las asignaciones se puedan compartir e insertar fácilmente. Para obtener más información, consulta la sección "[Trabajar con archivos que no sean de código](/repositories/working-with-files/using-files/working-with-non-code-files#mapping-geojson-files-on-github)". +Gist supports mapping GeoJSON files. These maps are displayed in embedded gists, so you can easily share and embed maps. For more information, see "[Working with non-code files](/repositories/working-with-files/using-files/working-with-non-code-files#mapping-geojson-files-on-github)." {% endif %} -## Crear un gist +## Creating a gist -Sigue estos pasos para crear un gist. +Follow the steps below to create a gist. {% ifversion fpt or ghes or ghae or ghec %} {% note %} -También puedes crear un gist si utilizas el {% data variables.product.prodname_cli %}. Para obtener más información, consulta "[`gh gist create`](https://cli.github.com/manual/gh_gist_create)" en el {% data variables.product.prodname_cli %}. +You can also create a gist using the {% data variables.product.prodname_cli %}. For more information, see "[`gh gist create`](https://cli.github.com/manual/gh_gist_create)" in the {% data variables.product.prodname_cli %} documentation. -Como alternativa, puedes arrastrar y soltar un archivo de texto desde tu escritorio directamente en el editor. +Alternatively, you can drag and drop a text file from your desktop directly into the editor. {% endnote %} {% endif %} -1. Inicia sesión en {% data variables.product.product_name %}. -2. Dirígete a tu {% data variables.gists.gist_homepage %}. -3. Escribe una descripción opcional y un nombre para tu gist. ![Descripción del nombre del gist](/assets/images/help/gist/gist_name_description.png) +1. Sign in to {% data variables.product.product_name %}. +2. Navigate to your {% data variables.gists.gist_homepage %}. +3. Type an optional description and name for your gist. +![Gist name description](/assets/images/help/gist/gist_name_description.png) -4. Teclea el texto de tu gist en la caja de texto de este. ![Cuadro de texto para el gist](/assets/images/help/gist/gist_text_box.png) +4. Type the text of your gist into the gist text box. +![Gist text box](/assets/images/help/gist/gist_text_box.png) -5. Opcionalmente, para crear un gist {% ifversion ghae %}interno{% else %}público{% endif %}, da clic en {% octicon "triangle-down" aria-label="The downwards triangle icon" %} y luego en **Crear gist {% ifversion ghae %}interno{% else %}público{% endif %}**. ![Menú desplegable para seleccionar la visibilidad de un gist]{% ifversion ghae %}(/assets/images/help/gist/gist-visibility-drop-down-ae.png){% else %}(/assets/images/help/gist/gist-visibility-drop-down.png){% endif %} +5. Optionally, to create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist, click {% octicon "triangle-down" aria-label="The downwards triangle icon" %}, then click **Create {% ifversion ghae %}internal{% else %}public{% endif %} gist**. +![Drop-down menu to select gist visibility]{% ifversion ghae %}(/assets/images/help/gist/gist-visibility-drop-down-ae.png){% else %}(/assets/images/help/gist/gist-visibility-drop-down.png){% endif %} -6. Da clic en **Crear Gist Secreto** o en **Crear gist {% ifversion ghae %}interno{% else %}público{% endif %}**. ![Botón para crear gist](/assets/images/help/gist/create-secret-gist-button.png) +6. Click **Create secret Gist** or **Create {% ifversion ghae %}internal{% else %}public{% endif %} gist**. + ![Button to create gist](/assets/images/help/gist/create-secret-gist-button.png) diff --git a/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md b/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md index a990a2c6e8..cbc1fe7c11 100644 --- a/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md +++ b/translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md @@ -1,9 +1,9 @@ --- -title: Editar y compartir contenido con gists +title: Editing and sharing content with gists intro: '' redirect_from: - - /categories/23/articles/ - - /categories/gists/ + - /categories/23/articles + - /categories/gists - /articles/editing-and-sharing-content-with-gists versions: fpt: '*' @@ -13,6 +13,6 @@ versions: children: - /creating-gists - /forking-and-cloning-gists -shortTitle: Compartir el contenido con gists +shortTitle: Share content with gists --- diff --git a/translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md b/translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md index 333cedb3fb..568196ac4e 100644 --- a/translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md +++ b/translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md @@ -1,10 +1,10 @@ --- -title: Introducción a la escritura y el formato en GitHub +title: Getting started with writing and formatting on GitHub redirect_from: - - /articles/markdown-basics/ - - /articles/things-you-can-do-in-a-text-area-on-github/ + - /articles/markdown-basics + - /articles/things-you-can-do-in-a-text-area-on-github - /articles/getting-started-with-writing-and-formatting-on-github -intro: 'Puedes usar características simples para darles formato a tus comentarios e interactuar con otros en propuestas, solicitudes de extracción y wikis en GitHub.' +intro: 'You can use simple features to format your comments and interact with others in issues, pull requests, and wikis on GitHub.' versions: fpt: '*' ghes: '*' @@ -13,6 +13,6 @@ versions: children: - /about-writing-and-formatting-on-github - /basic-writing-and-formatting-syntax -shortTitle: Comenzar a escribir en GitHub +shortTitle: Start writing on GitHub --- diff --git a/translations/es-ES/content/github/writing-on-github/index.md b/translations/es-ES/content/github/writing-on-github/index.md index 637272c5e1..e53ef2f32b 100644 --- a/translations/es-ES/content/github/writing-on-github/index.md +++ b/translations/es-ES/content/github/writing-on-github/index.md @@ -1,11 +1,11 @@ --- -title: Escribir en GitHub +title: Writing on GitHub redirect_from: - - /categories/88/articles/ - - /articles/github-flavored-markdown/ - - /articles/writing-on-github/ + - /categories/88/articles + - /articles/github-flavored-markdown + - /articles/writing-on-github - /categories/writing-on-github -intro: 'Puedes estructurar la información que se comparte en {% data variables.product.product_name %} con varias opciones de formateo.' +intro: 'You can structure the information shared on {% data variables.product.product_name %} with various formatting options.' versions: fpt: '*' ghes: '*' diff --git a/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md index 2464279e9e..5f8e3d33ce 100644 --- a/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -3,7 +3,7 @@ title: Attaching files intro: You can convey information by attaching a variety of file types to your issues and pull requests. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/file-attachments-on-issues-and-pull-requests - - /articles/issue-attachments/ + - /articles/issue-attachments - /articles/file-attachments-on-issues-and-pull-requests - /github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests versions: diff --git a/translations/es-ES/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md b/translations/es-ES/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md index d2ccdafa2c..45ee882eba 100644 --- a/translations/es-ES/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md +++ b/translations/es-ES/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md @@ -1,8 +1,8 @@ --- -title: Editar una respuesta guardada -intro: Puedes editar el título y el cuerpo de una respuesta guardada. +title: Editing a saved reply +intro: You can edit the title and body of a saved reply. redirect_from: - - /articles/changing-a-saved-reply/ + - /articles/changing-a-saved-reply - /articles/editing-a-saved-reply - /github/writing-on-github/editing-a-saved-reply versions: @@ -11,16 +11,17 @@ versions: ghae: '*' ghec: '*' --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.saved_replies %} -3. En "Respuestas guardadas", junto a la respuesta guardada que deseas editar, haz clic en {% octicon "pencil" aria-label="The pencil" %}. - ![Editar una respuesta guardada](/assets/images/help/settings/saved-replies-edit-existing.png) -4. En "Editar una respuesta guardada", puedes editar el título y el contenido de la respuesta guardada. ![Editar título y contenido](/assets/images/help/settings/saved-replies-edit-existing-content.png) -5. Haz clic en **Actualizar una respuesta guardada**. ![Actualizar una respuesta guardada](/assets/images/help/settings/saved-replies-save-edit.png) +3. Under "Saved replies", next to the saved reply you want to edit, click {% octicon "pencil" aria-label="The pencil" %}. +![Edit a saved reply](/assets/images/help/settings/saved-replies-edit-existing.png) +4. Under "Edit saved reply", you can edit the title and the content of the saved reply. +![Edit title and content](/assets/images/help/settings/saved-replies-edit-existing-content.png) +5. Click **Update saved reply**. +![Update saved reply](/assets/images/help/settings/saved-replies-save-edit.png) -## Leer más +## Further reading -- "[Crear una respuesta guardada](/articles/creating-a-saved-reply)" -- "[Eliminar una respuesta guardada](/articles/deleting-a-saved-reply)" -- "[Usar respuestas guardadas](/articles/using-saved-replies)" +- "[Creating a saved reply](/articles/creating-a-saved-reply)" +- "[Deleting a saved reply](/articles/deleting-a-saved-reply)" +- "[Using saved replies](/articles/using-saved-replies)" diff --git a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md index 0700665093..84fdefa98d 100644 --- a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md +++ b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md @@ -1,12 +1,10 @@ --- title: About two-factor authentication and SAML single sign-on intro: Organizations administrators can enable both SAML single sign-on and two-factor authentication to add additional authentication measures for their organization members. -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/about-two-factor-authentication-and-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-two-factor-authentication-and-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md index f6c6d5772a..3b715c25de 100644 --- a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md +++ b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md @@ -1,11 +1,10 @@ --- -title: Conceder acceso a tu organización con el inicio de sesión único SAML -intro: 'Los administradores de la organización pueden conceder acceso con el inicio de sesión único SAML. Este acceso se les puede conceder a los miembros de la organización, a los bots y a las cuentas de servicio.' +title: Granting access to your organization with SAML single sign-on +intro: 'Organization administrators can grant access to their organization with SAML single sign-on. This access can be granted to organization members, bots, and service accounts.' redirect_from: - /articles/granting-access-to-your-organization-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/granting-access-to-your-organization-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -14,6 +13,6 @@ children: - /managing-bots-and-service-accounts-with-saml-single-sign-on - /viewing-and-managing-a-members-saml-access-to-your-organization - /about-two-factor-authentication-and-saml-single-sign-on -shortTitle: Otorgar acceso con SAML +shortTitle: Grant access with SAML --- diff --git a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md index d340cd6f8f..0b6a234588 100644 --- a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md +++ b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md @@ -1,27 +1,25 @@ --- -title: Administrar bot y cuentas de servicio con inicio de sesión único de SAML -intro: Las organizaciones que han habilitado el inicio de sesión único de SAML pueden conservar el acceso para los bot y las cuentas de servicio. -product: '{% data reusables.gated-features.saml-sso %}' +title: Managing bots and service accounts with SAML single sign-on +intro: Organizations that have enabled SAML single sign-on can retain access for bots and service accounts. redirect_from: - /articles/managing-bots-and-service-accounts-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/managing-bots-and-service-accounts-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Administrar bots & cuentas de servicio +shortTitle: Manage bots & service accounts --- -Para conservar el acceso a los bot y a las cuentas de servicio, los administradores de la organización pueden [habilitar](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization), pero **no** [implementar](/articles/enforcing-saml-single-sign-on-for-your-organization) el inicio de sesión único de SAML para sus organizaciones. Si debes implementar el inicio de sesión único de SAML para tu organización, puedes crear una identidad externa para el bot o la cuenta de servicio con tu proveedor de identidad (IdP). +To retain access for bots and service accounts, organization administrators can [enable](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization), but **not** [enforce](/articles/enforcing-saml-single-sign-on-for-your-organization) SAML single sign-on for their organization. If you need to enforce SAML single sign-on for your organization, you can create an external identity for the bot or service account with your identity provider (IdP). {% warning %} -**Nota:** Si implementas el inicio de sesión único de SAML para tu organización y **no** tienes identidades externas configuradas para bots y cuentas de servicio con tu IdP, estas se eliminarán de tu organización. +**Note:** If you enforce SAML single sign-on for your organization and **do not** have external identities set up for bots and service accounts with your IdP, they will be removed from your organization. {% endwarning %} -## Leer más +## Further reading -- "[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)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" 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 6e2afcadba..8845f4c7cb 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 @@ -2,13 +2,11 @@ title: Viewing and managing a member's SAML access to your organization intro: 'You can view and revoke an organization member''s linked identity, active sessions, and authorized credentials.' permissions: Organization owners can view and manage a member's SAML access to an organization. -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-managing-a-members-saml-access-to-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md b/translations/es-ES/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md index f222e7b6c4..08a2b3eb70 100644 --- a/translations/es-ES/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md +++ b/translations/es-ES/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md @@ -56,7 +56,7 @@ To search for specific events, use the `action` qualifier in your query. Actions | [`marketplace_agreement_signature`](#marketplace_agreement_signature-category-actions) | Contains all activities related to signing the {% data variables.product.prodname_marketplace %} Developer Agreement. | [`marketplace_listing`](#marketplace_listing-category-actions) | Contains all activities related to listing apps in {% data variables.product.prodname_marketplace %}.{% endif %}{% ifversion fpt or ghes > 3.0 or ghec %} | [`members_can_create_pages`](#members_can_create_pages-category-actions) | Contains all activities related to managing the publication of {% data variables.product.prodname_pages %} sites for repositories in the organization. For more information, see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | {% endif %} -| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion fpt or ghec %} +| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion ghec %} | [`org_credential_authorization`](#org_credential_authorization-category-actions) | Contains all activities related to authorizing credentials for use with SAML single sign-on.{% endif %}{% ifversion fpt or ghes or ghae or ghec %} | [`organization_label`](#organization_label-category-actions) | Contains all activities related to default labels for repositories in your organization.{% endif %} | [`oauth_application`](#oauth_application-category-actions) | Contains all activities related to OAuth Apps.{% ifversion fpt or ghes > 3.0 or ghec %} @@ -423,12 +423,12 @@ For more information, see "[Managing the publication of {% data variables.produc | `block_user` | Triggered when an organization owner [blocks a user from accessing the organization's repositories](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization). | `cancel_invitation` | Triggered when an organization invitation has been revoked. {% endif %}{% ifversion fpt or ghes or ghec %} | `create_actions_secret` | Triggered when a {% data variables.product.prodname_actions %} secret is 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 %} {% ifversion fpt or ghec %} -| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %} +| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %}{% endif %} | `disable_member_team_creation_permission` | Triggered when an organization owner limits team creation to owners. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `disable_two_factor_requirement` | Triggered when an owner disables a two-factor authentication requirement for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} -| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %} +| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %}{% endif %} | `enable_member_team_creation_permission` | Triggered when an organization owner allows members to create teams. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `enable_two_factor_requirement` | Triggered when an owner requires two-factor authentication for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} | `invite_member` | Triggered when [a new user was invited to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization). @@ -440,7 +440,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `remove_billing_manager` | Triggered when an [owner removes a billing manager from an organization](/articles/removing-a-billing-manager-from-your-organization/) or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and a billing manager doesn't use 2FA or disables 2FA. |{% endif %} | `remove_member` | Triggered when an [owner removes a member from an organization](/articles/removing-a-member-from-your-organization/){% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an organization member doesn't use 2FA or disables 2FA{% endif %}. Also triggered when an [organization member removes themselves](/articles/removing-yourself-from-an-organization/) from an organization.| | `remove_outside_collaborator` | Triggered when an owner removes an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an outside collaborator does not use 2FA or disables 2FA{% endif %}. | -| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion fpt or ghec %} +| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion ghec %} | `revoke_external_identity` | Triggered when an organization owner revokes 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)." | `revoke_sso_session` | Triggered when an organization owner revokes 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 %} | `runner_group_created` | Triggered when a self-hosted runner group is 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)." @@ -464,7 +464,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `update_saml_provider_settings` | Triggered when an organization's SAML provider settings are updated. | `update_terms_of_service` | Triggered when an organization changes between the Standard Terms of Service and the Corporate Terms of Service. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ### `org_credential_authorization` category actions | Action | Description 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 babe034772..c08a2a1e4e 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 @@ -19,7 +19,9 @@ shortTitle: Create accounts for people Because you access an organization by logging in to a user account, each of your team members needs to create their own user account. After you have usernames for each person you'd like to add to your organization, you can add the users to teams. {% ifversion fpt or ghec %} -If you need greater control over the user accounts of your organization members, consider {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} +{% 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 user accounts have to the organization's resources through an identity provider (IdP). 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){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} + +You can also consider {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} {% endif %} ## Adding users to your organization diff --git a/translations/es-ES/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/translations/es-ES/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index e59468af96..fac88da5ef 100644 --- a/translations/es-ES/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/translations/es-ES/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -1,6 +1,6 @@ --- title: Inviting users to join your organization -intro: 'You can invite anyone to become a member of your organization using their {% data variables.product.product_name %} username or email address.' +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/ @@ -23,6 +23,8 @@ If your organization has a paid per-user subscription, an unused license must be 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 %}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](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim){% 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 %} diff --git a/translations/es-ES/content/organizations/managing-organization-settings/renaming-an-organization.md b/translations/es-ES/content/organizations/managing-organization-settings/renaming-an-organization.md index 0af0a54c8d..9fd78a8735 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -36,7 +36,7 @@ After changing your organization's name, your old organization name becomes avai After changing your organization's name: - Links to your previous organization profile page, such as `https://{% data variables.command_line.backticks %}/previousorgname`, will return a 404 error. We recommend you update links to your organization from other sites{% ifversion fpt or ghec %}, such as your LinkedIn or Twitter profiles{% endif %}. - API requests that use the old organization's name will return a 404 error. We recommend you update the old organization name in your API requests. -- There are no automatic [@mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) redirects for teams that use the old organization's name.{% ifversion fpt or ghec %} +- There are no automatic [@mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) redirects for teams that use the old organization's name.{% ifversion ghec %} - If SAML single sign-on (SSO) is enabled for the organization, you must update the organization name in the application for {% data variables.product.prodname_ghe_cloud %} on your identity provider (IdP). If you don't update the organization name on your IdP, members of the organization will no longer be able to authenticate with your IdP to access the organization's resources. For more information, see "[Connecting your identity provider to your organization](/github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization)."{% endif %} ## Changing your organization's name diff --git a/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 03a6516b82..f7caf78b8b 100644 --- a/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -90,6 +90,8 @@ You can only choose an additional permission if it's not already included in the - **View {% data variables.product.prodname_code_scanning %} results**: Ability to view {% data variables.product.prodname_code_scanning %} alerts. - **Dismiss or reopen {% data variables.product.prodname_code_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_code_scanning %} alerts. - **Delete {% data variables.product.prodname_code_scanning %} results**: Ability to delete {% data variables.product.prodname_code_scanning %} alerts. +- **View {% data variables.product.prodname_secret_scanning %} results**: Ability to view {% data variables.product.prodname_secret_scanning %} alerts. +- **Dismiss or reopen {% data variables.product.prodname_secret_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_secret_scanning %} alerts. ## Precedence for different levels of access 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 f45688150f..58b849aac4 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 @@ -108,10 +108,10 @@ Some of the features listed below are limited to organizations using {% data var | Attribute your sponsorships to another organization (see "[Attributing sponsorships to your organization](/sponsors/sponsoring-open-source-contributors/attributing-sponsorships-to-your-organization)" for details ) | **X** | | | | | Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | | | | | Manage security and analysis settings (see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" for details) | **X** | | | **X** | -| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** | +| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** |{% ifversion ghec %} | Enable and enforce [SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on) | **X** | | | | | [Manage a user'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) | **X** | | | | -| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | | +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | |{% endif %} | Transfer repositories | **X** | | | | | Purchase, install, manage billing for, and cancel {% data variables.product.prodname_marketplace %} apps | **X** | | | | | List apps in {% data variables.product.prodname_marketplace %} | **X** | | | | @@ -125,8 +125,8 @@ Some of the features listed below are limited to organizations using {% data var | [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | | | | [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | | | Manage the default branch name (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)") | **X** | | | | -| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | | -| Enable team synchronization (see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" for details) | **X** | | | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | |{% ifversion ghec %} +| Enable team synchronization (see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" for details) | **X** | | | |{% endif %} {% elsif ghes > 3.2 or ghae-issue-4999 %} <!--GHES 3.3+ and eventual GHAE release don't have the extra column for Billing managers, but have security managers--> 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 6642a02c8d..5839c6e333 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 @@ -1,12 +1,10 @@ --- title: About identity and access management with SAML single sign-on intro: 'If you centrally manage your users'' identities and applications with an identity provider (IdP), you can configure Security Assertion Markup Language (SAML) single sign-on (SSO) to protect your organization''s resources on {% data variables.product.prodname_dotcom %}.' -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/about-identity-and-access-management-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-identity-and-access-management-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -24,8 +22,6 @@ shortTitle: IAM with SAML SSO Organization owners can enforce SAML SSO for an individual organization, or enterprise owners can enforce SAML SSO for all organizations in an enterprise account. For more information, see "[Configuring SAML single sign-on for your enterprise](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)." -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} - {% data reusables.saml.outside-collaborators-exemption %} Before enabling SAML SSO for your organization, you'll need to connect your IdP to your organization. For more information, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md index 25f9aa8301..b4df5f9aec 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md @@ -1,12 +1,10 @@ --- title: About SCIM intro: 'With System for Cross-domain Identity Management (SCIM), administrators can automate the exchange of user identity information between systems.' -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/about-scim - /github/setting-up-and-managing-organizations-and-teams/about-scim versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -19,7 +17,7 @@ If you use [SAML SSO](/articles/about-identity-and-access-management-with-saml-s If you use SAML SSO without implementing SCIM, you won't have automatic deprovisioning. When organization members' sessions expire after their access is removed from the IdP, they aren't automatically removed from the organization. Authorized tokens grant access to the organization even after their sessions expire. To remove access, organization administrators can either manually remove the authorized token from the organization or automate its removal with SCIM. -These identity providers are compatible with the {% data variables.product.product_name %} SCIM API for organizations. For more information, see [SCIM](/rest/reference/scim) in the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API documentation. +These identity providers are compatible with the {% data variables.product.product_name %} SCIM API for organizations. For more information, see [SCIM](/rest/reference/scim) in the {% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API documentation. - Azure AD - Okta - OneLogin diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md index 0592bfd940..61ab67a115 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md @@ -1,33 +1,34 @@ --- -title: Acceder a tu organización si tu proveedor de identidad no está disponible -intro: 'Los administradores de la organización pueden iniciar sesión en {% data variables.product.product_name %} incluso si su proveedor de identidad no está disponible al saltear el inicio de sesión único y usar sus códigos de recuperación.' -product: '{% data reusables.gated-features.saml-sso %}' +title: Accessing your organization if your identity provider is unavailable +intro: 'Organization administrators can sign into {% data variables.product.product_name %} even if their identity provider is unavailable by bypassing single sign-on and using their recovery codes.' redirect_from: - /articles/accessing-your-organization-if-your-identity-provider-is-unavailable - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organization-if-your-identity-provider-is-unavailable versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Proveedor de identidad no disponible +shortTitle: Unavailable identity provider --- -Los administradores de la organización pueden usar [uno de los códigos de reuperación descargados o guardados](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)para saltear un inicio de sesión único. Puedes haber guardado esto en un administrador de contraseñas tal como [LastPass](https://lastpass.com/) o [1Password](https://1password.com/). +Organization administrators can use [one of their downloaded or saved recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes) to bypass single sign-on. You may have saved these to a password manager, such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% note %} -**Nota:** Solo puedes usar los códigos de recuperación una vez y debes usarlos en un orden consecutivo. Los códigos de recuperación garantizan el acceso durante 24 horas. +**Note:** You can only use recovery codes once and you must use them in consecutive order. Recovery codes grant access for 24 hours. {% endnote %} -1. En la parte inferior del diálogo de inicio de sesión único, haz clic en **Use a recovery code** (Usar un código de recuperación) para saltear el inicio de sesión único. ![Enlace para ingresar tu código de recuperación](/assets/images/help/saml/saml_use_recovery_code.png) -2. En el campo "Recovery Code" (Código de recuperación), escribe tu código de recuperación. ![Código para ingresar tu código de recuperación](/assets/images/help/saml/saml_recovery_code_entry.png) -3. Da clic en **Verificar**. ![Botón para verificar tu código de recuperación](/assets/images/help/saml/saml_verify_recovery_codes.png) +1. At the bottom of the single sign-on dialog, click **Use a recovery code** to bypass single sign-on. +![Link to enter your recovery code](/assets/images/help/saml/saml_use_recovery_code.png) +2. In the "Recovery Code" field, type your recovery code. +![Field to enter your recovery code](/assets/images/help/saml/saml_recovery_code_entry.png) +3. Click **Verify**. +![Button to verify your recovery code](/assets/images/help/saml/saml_verify_recovery_codes.png) -Una vez que has usado un código de verificación, asegúrate de anotar que ya no es válido. No podrás volver a usar el código de recuperación. +After you've used a recovery code, make sure to note that it's no longer valid. You will not be able to reuse the recovery code. -## Leer más +## Further reading -- [Acerca de la administración de acceso e identidad con SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[About identity and access management with SAML SSO](/articles/about-identity-and-access-management-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 a6df072b79..0c2dba8ac3 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 @@ -1,59 +1,59 @@ --- -title: Cofnigurar SCIM y el inicio de sesión único de SAML con Okta -intro: 'Puedes utilizar el inicio de sesión único (SSO) del Lenguaje de Marcado para Confirmaciones de Seguridad (SAML) y un Sistema para la Administración de Identidad a través de los Dominios (SCIM) con Okta para administrar automáticamente el acceso a tu organización en {% data variables.product.prodname_dotcom %}.' +title: Configuring SAML single sign-on and SCIM using Okta +intro: 'You can use Security Assertion Markup Language (SAML) single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) with Okta to automatically manage access to your organization on {% data variables.product.product_location %}.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/configuring-saml-single-sign-on-and-scim-using-okta -product: '{% data reusables.gated-features.saml-sso %}' permissions: Organization owners can configure SAML SSO and SCIM using Okta for an organization. versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Configurar SAML & SCIM con Okta +shortTitle: Configure SAML & SCIM with Okta --- -## Acerca de SAML y SCIM con Okta +## About SAML and SCIM with Okta -Puedes controlar el acceso a tu organización de {% data variables.product.prodname_dotcom %} y a otras aplicaciones web desde una interface central si configuras la organización para que utilice el SSO de SAML con Okta, un Proveedor de Identidad (IdP). +You can control access to your organization on {% data variables.product.product_location %} and other web applications from one central interface by configuring the organization to use SAML SSO and SCIM with Okta, an Identity Provider (IdP). -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 automáticamente, administra y elimina el acceso de los miembros a tu organización de {% data variables.product.prodname_dotcom %} cuando haces cambios en Okta. Para obtener más información, consulta la sección "[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](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)". +SAML SSO controls and secures access to organization resources like repositories, issues, and pull requests. SCIM automatically adds, manages, and removes members' access to your organization on {% data variables.product.product_location %} when you make changes in 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](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." -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. +After you enable SCIM, the following provisioning features are available for any users that you assign your {% data variables.product.prodname_ghe_cloud %} application to in Okta. -| Característica | Descripción | -| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Subir Usuarios Nuevos | Cuando creas un usuario nuevo en Okta, éste recibirá un correo electrónico para unirse a tu organización de {% data variables.product.prodname_dotcom %}. | -| Subir Desactivaciones de Usuarios | Cuando desactivas un usuario en Okta, Okta lo eliminará de tu organización de {% data variables.product.prodname_dotcom %}. | -| Subir Actualizaciones de Perfil | Cuando actualizas el perfil de un usuario en Okta, Okta actualizará los metadatos de su membrecía en tu organización de {% data variables.product.prodname_dotcom %}. | -| Reactivar Usuarios | Cuando reactivas un usuario en Okta, Okta le enviará una invitación por correo electrónico para que vuelva a unirse a tu organización de {% data variables.product.prodname_dotcom %}. | +| Feature | Description | +| --- | --- | +| Push New Users | When you create a new user in Okta, the user will receive an email to join your organization on {% data variables.product.product_location %}. | +| Push User Deactivation | When you deactivate a user in Okta, Okta will remove the user from your organization on {% data variables.product.product_location %}. | +| Push Profile Updates | When you update a user's profile in Okta, Okta will update the metadata for the user's membership in your organization on {% data variables.product.product_location %}. | +| Reactivate Users | When you reactivate a user in Okta, Okta will send an email invitation for the user to rejoin your organization on {% data variables.product.product_location %}. | -## Prerrequisitos +## Prerequisites {% data reusables.saml.use-classic-ui %} -## Agregar la aplicación {% data variables.product.prodname_ghe_cloud %} en Okta +## Adding the {% data variables.product.prodname_ghe_cloud %} application in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.add-okta-application %} {% data reusables.saml.search-ghec-okta %} -4. Da clic en **Agregar** a la derecha de "Github Enterprise Cloud - Organization". ![Dar clic en "Agregar" para la aplicación de {% data variables.product.prodname_ghe_cloud %}](/assets/images/help/saml/okta-add-ghec-application.png) +4. To the right of "Github Enterprise Cloud - Organization", click **Add**. + ![Clicking "Add" for the {% data variables.product.prodname_ghe_cloud %} application](/assets/images/help/saml/okta-add-ghec-application.png) -5. En el campo **Organizaciòn de GitHub**, teclea el nombre de tu organizaciòn de {% data variables.product.prodname_dotcom %}. Por ejemplo, si la URL de de tu organizaciòn es https://github.com/octo-org, el nombre de organizaciòn serìa `octo-org`. ![Teclear el nombre de organización de GitHub](/assets/images/help/saml/okta-github-organization-name.png) +5. In the **GitHub Organization** field, type the name of your organization on {% data variables.product.product_location %}. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`. + ![Type GitHub organization name](/assets/images/help/saml/okta-github-organization-name.png) -6. Haz clic en **Done** (listo). +6. Click **Done**. -## Habilitar y probar el SSO de SAML +## Enabling and testing SAML SSO {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.assign-yourself-to-okta %} {% data reusables.saml.okta-sign-on-tab %} {% data reusables.saml.okta-view-setup-instructions %} -6. Habilita y prueba el SSO de SAML en {% data variables.product.prodname_dotcom %} utilizando la URL de registro, URL del emisor, y certificados pùblicos de la guìa "Còmo configurar SAML 2.0". 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)". +6. Enable and test SAML SSO on {% data variables.product.prodname_dotcom %} using the sign on URL, issuer URL, and public certificates from the "How to Configure SAML 2.0" guide. For more information, see "[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)." -## Configurar el aprovisionamiento de acceso con SCIM en Okta +## Configuring access provisioning with SCIM in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} @@ -62,22 +62,25 @@ Después de que habilites SCIM, las siguientes características de aprovisionami {% data reusables.saml.okta-enable-api-integration %} -6. Da clic en **Autenticar con Github Enterprise Cloud - Ortanizaction**. ![Botón "Autenticar con GitHub Enterprise Cloud - Organization" para la aplicación de Okta](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) +6. Click **Authenticate with Github Enterprise Cloud - Organization**. + !["Authenticate with Github Enterprise Cloud - Organization" button for Okta application](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) -7. A la derecha del nombre de tu organizaciòn, da clic en **Otorgar**. ![Botón "Otorgar" para autorizar la integración de SCIM de Okta para acceder a la organización](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) +7. To the right of your organization's name, click **Grant**. + !["Grant" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) {% note %} - **Nota**: si no ves tu organización en la lista, dirígete a `https://github.com/orgs/ORGANIZATION-NAME/sso` en tu buscador y autentícate con ella a través del SSO de SAML utilizando tu cuenta de administrador en el IdP. Por ejemplo, si tu nombre de organización es `octo-org`, La URL sería `https://github.com/orgs/octo-org/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](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)". + **Note**: If you don't see your organization in the list, go to `https://github.com/orgs/ORGANIZATION-NAME/sso` in your browser and authenticate with your organization via SAML SSO using your administrator account on the IdP. For example, if your organization's name is `octo-org`, the URL would be `https://github.com/orgs/octo-org/sso`. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -1. Da clic en **Autorizar OktaOAN**. ![Botón "Autorizar a OktaOAN" para autorizar la integración de SCIM de Okta para acceder a la organización](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) +1. Click **Authorize OktaOAN**. + !["Authorize OktaOAN" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) {% data reusables.saml.okta-save-provisioning %} {% data reusables.saml.okta-edit-provisioning %} -## Leer más +## Further reading -- "[Configurar el inicio de sesión único de SAML para tu cuenta empresarial utilizando Okta](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" -- "[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#enabling-team-synchronization-for-okta)" -- [Understanding SAML](https://developer.okta.com/docs/concepts/saml/) en la documentación de Okta -- [Understanding SCIM](https://developer.okta.com/docs/concepts/scim/) en la documentación de Okta +- "[Configuring SAML single sign-on for your enterprise account using Okta](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" +- "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization#enabling-team-synchronization-for-okta)" +- [Understanding SAML](https://developer.okta.com/docs/concepts/saml/) in the Okta documentation +- [Understanding SCIM](https://developer.okta.com/docs/concepts/scim/) in the Okta documentation 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 4523b72527..6917f58951 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,31 +1,29 @@ --- -title: Conectar tu proveedor de identidad con tu organización -intro: 'Para usar el inicio de sesión único de SAML y SCIM, debes conectar tu proveedor de identidad con tu organización {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' +title: Connecting your identity provider to your organization +intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider to your {% 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 versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Conectar un IdP +shortTitle: Connect an IdP --- -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)". +When you enable SAML SSO for your {% data variables.product.product_name %} organization, you connect your identity provider (IdP) to your organization. For more information, see "[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)." -Puedes encontrar los detalles de implementación de SAML y de SCIM para tu IdP en la documentación de este. +You can find the SAML and SCIM implementation details for your IdP in the IdP's documentation. - Active Directory Federation Services (AD FS) [SAML](https://docs.microsoft.com/windows-server/identity/active-directory-federation-services) -- Azure Active Directory (Azure AD) [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) y [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) -- Okta [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) y [SCIM](http://developer.okta.com/standards/SCIM/) -- OneLogin [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) y [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) +- Azure Active Directory (Azure AD) [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) and [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) +- Okta [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) and [SCIM](http://developer.okta.com/standards/SCIM/) +- OneLogin [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) and [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) - PingOne [SAML](https://support.pingidentity.com/s/marketplace-integration/a7i1W0000004ID3QAM/github-connector) - Shibboleth [SAML](https://wiki.shibboleth.net/confluence/display/IDP30/Home) {% note %} -**Nota:** Los proveedores de identidad que soportan {% data variables.product.product_name %} SCIM son Azure AD, Okta y OneLogin. {% data reusables.scim.enterprise-account-scim %} Para obtener más información sobre SCIM, consulta la sección "[Acerca de SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)". +**Note:** {% data variables.product.product_name %} supported identity providers for SCIM are Azure AD, Okta, and OneLogin. {% data reusables.scim.enterprise-account-scim %} For more information about SCIM, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% endnote %} diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md index fee31c297f..01040de16f 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md @@ -1,37 +1,37 @@ --- -title: Descargar los códigos de recuperación de inicio de sesión único SAML de tu organización -intro: 'Los administradores de la organización deben descargar los códigos de recuperación de inicio de sesión único SAML de la organización para asegurarse de poder acceder a {% data variables.product.product_name %} aun cuando el proveedor de identidad no se encuentre disponible para la organización.' +title: Downloading your organization's SAML single sign-on recovery codes +intro: 'Organization administrators should download their organization''s SAML single sign-on recovery codes to ensure that they can access {% data variables.product.product_name %} even if the identity provider for the organization is unavailable.' redirect_from: - /articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes - /articles/downloading-your-organizations-saml-single-sign-on-recovery-codes - /github/setting-up-and-managing-organizations-and-teams/downloading-your-organizations-saml-single-sign-on-recovery-codes -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Descargar los códigos de recuperación de SAML +shortTitle: Download SAML recovery codes --- -Los códigos de recuperación no se deben compartir ni distribuir. Te recomendamos guardarlos con un administrador de contraseñas como [LastPass](https://lastpass.com/) o [1Password](https://1password.com/). +Recovery codes should not be shared or distributed. We recommend saving them with a password manager such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. En "Inicio de sesión único SAML", en la nota acerca de los códigos de recuperación, haz clic en **Guardar tus códigos de recuperación**. ![Enlace para ver y guardar tus códigos de recuperación](/assets/images/help/saml/saml_recovery_codes.png) -6. Guarda tus códigos de recuperación haciendo clic en **Download** (Descargar), **Print** (Imprimir) o **Copy** (Copiar). ![Botones para descargar, imprimir o copiar tus códigos de recuperación](/assets/images/help/saml/saml_recovery_code_options.png) +5. Under "SAML single sign-on", in the note about recovery codes, click **Save your recovery codes**. +![Link to view and save your recovery codes](/assets/images/help/saml/saml_recovery_codes.png) +6. Save your recovery codes by clicking **Download**, **Print**, or **Copy**. +![Buttons to download, print, or copy your recovery codes](/assets/images/help/saml/saml_recovery_code_options.png) {% note %} - **Nota:** Tus códigos de recuperación te ayudarán a acceder nuevamente a {% data variables.product.product_name %} si tu IdP no está disponible. Si generas nuevos códigos de recuperación, los códigos de recuperación que se muestran en la página "Códigos de recuperación de inicio de sesión único" se actualizarán automáticamente. + **Note:** Your recovery codes will help get you back into {% data variables.product.product_name %} if your IdP is unavailable. If you generate new recovery codes the recovery codes displayed on the "Single sign-on recovery codes" page are automatically updated. {% endnote %} -7. Una vez que usas un código de recuperación para obtener acceso nuevamente a {% data variables.product.product_name %}, no puedes volver a usarlo. El acceso a {% data variables.product.product_name %} solo estará disponible durante 24 horas antes de que se te solicite que inicies sesión usando inicio de sesión único. +7. Once you use a recovery code to regain access to {% data variables.product.product_name %}, it cannot be reused. Access to {% data variables.product.product_name %} will only be available for 24 hours before you'll be asked to sign in using single sign-on. -## Leer más +## Further reading -- "[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)" -- "[Acceder a tu organización cuando tu proveedor de identidad no está disponible](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[Accessing your organization if your identity provider is unavailable](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)" 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 d914d30397..00cc0a8af6 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 @@ -1,61 +1,63 @@ --- -title: Habilitar y probar el inicio de sesión único SAML para tu organización -intro: Los administradores y los propietarios de la organización pueden habilitar el inicio de sesión único SAML para agregar una capa más de seguridad a su organización. -product: '{% data reusables.gated-features.saml-sso %}' +title: Enabling and testing SAML single sign-on for your organization +intro: Organization owners and admins can enable SAML single sign-on to add an extra layer of security to their organization. redirect_from: - /articles/enabling-and-testing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-and-testing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Habilitar & probar el SSO de SAML +shortTitle: Enable & test SAML SSO --- -## Acerca del inicio de sesión único de SAML +## About SAML single sign-on -Puedes habilitar SAML SSO (inicio de sesión único) en tu organización sin requerir que todos los miembros lo usen. Habilitar pero no exigir SAML SSO en tu organización puede facilitar la adopción de SAML SSO por parte de la organización. Una vez que la mayoría de los miembros usen SAML SSO, podrás exigirlo en toda la organización. +You can enable SAML SSO in your organization without requiring all members to use it. Enabling but not enforcing SAML SSO in your organization can help smooth your organization's SAML SSO adoption. Once a majority of your organization's members use SAML SSO, you can enforce it within your organization. -Si habilitas pero no exiges SAML SSO, los miembros de la organización que elijan no usar SAML SSO pueden seguir siendo miembros de esta. Para obtener más información acerca de la exigencia de SAML SSO, consulta "[Exigir inicio de sesión único SAML para tu organización](/articles/enforcing-saml-single-sign-on-for-your-organization)". +If you enable but don't enforce SAML SSO, organization members who choose not to use SAML SSO can still be members of the organization. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} -## Habilitar y probar el inicio de sesión único SAML para tu organización +## Enabling and testing SAML single sign-on for your organization -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +Before your enforce SAML SSO in your organization, ensure that you've prepared the organization. For more information, see "[Preparing to enforce SAML single sign-on in your organization](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)." -Antes de requerir el SSO de SAML en tu organización, asegúrate de que la hayas preparado. Para obtener más información, consulta "[Preparación para exigir inicio de sesión único SAML en tu organización](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)". - -Para obtener más información sobre los proveedores de identidad (IdP) que son compatibles con {% data variables.product.company_short %} para el SSO de SAML, consulta la sección "[Conectar tu proveedor de identidad a tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)". +For more information about the identity providers (IdPs) that {% data variables.product.company_short %} supports for SAML SSO, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. En "inicio de sesión único SAML", selecciona **Habilitar autenticación SAML**. ![Casilla de verificación para habilitar SAML SSO](/assets/images/help/saml/saml_enable.png) +5. Under "SAML single sign-on", select **Enable SAML authentication**. +![Checkbox for enabling SAML SSO](/assets/images/help/saml/saml_enable.png) {% note %} - **Nota:** Luego de habilitar SAML SSO, puedes descargar tus códigos de recuperación de inicio de sesión único para poder acceder a tu organización aun cuando tu IdP no se encuentre disponible. Para obtener más información, consulta "[Descargar los códigos de recuperación de inicio de sesión único SAML de tu organización](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)". + **Note:** After enabling SAML SSO, you can download your single sign-on recovery codes so that you can access your organization even if your IdP is unavailable. For more information, see "[Downloading your organization's SAML single sign-on recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)." {% endnote %} -6. En el campo "URL de inicio de sesión único", escribe el extremo del HTTPS de tu IdP para las solicitudes de inicio de sesión único. Este valor se encuentra en la configuración de tu IdP. ![Campo para la URL a la que los miembros serán redireccionados cuando inicien sesión](/assets/images/help/saml/saml_sign_on_url.png) -7. También puedes escribir tu nombre de emisor SAML en el campo "Emisor". Esto verifica la autenticidad de los mensajes enviados. ![Campo para el nombre del emisor SAML](/assets/images/help/saml/saml_issuer.png) -8. En "Certificado público", copia un certificado para verificar las respuestas SAML. ![Campo para el certificado público de tu proveedor de identidad](/assets/images/help/saml/saml_public_certificate.png) -9. Haz clic en {% octicon "pencil" aria-label="The edit icon" %} y luego en los menús desplegables de Método de firma y Método de resumen y elige el algoritmo de hash que usa tu emisor SAML para verificar la integridad de las solicitudes. ![Menús desplegables para los algoritmos de hash del Método de firma y del Método de resumen usados por tu emisor SAML](/assets/images/help/saml/saml_hashing_method.png) -10. Antes de habilitar SAML SSO para tu organización, haz clic en **Probar la configuración de SAML** para asegurarte de que la información que has ingresado sea correcta. ![Botón para probar la configuración de SAML antes de exigir el inicio de sesión único](/assets/images/help/saml/saml_test.png) +6. In the "Sign on URL" field, type the HTTPS endpoint of your IdP for single sign-on requests. This value is available in your IdP configuration. +![Field for the URL that members will be forwarded to when signing in](/assets/images/help/saml/saml_sign_on_url.png) +7. Optionally, in the "Issuer" field, type your SAML issuer's name. This verifies the authenticity of sent messages. +![Field for the SAML issuer's name](/assets/images/help/saml/saml_issuer.png) +8. Under "Public Certificate," paste a certificate to verify SAML responses. +![Field for the public certificate from your identity provider](/assets/images/help/saml/saml_public_certificate.png) +9. Click {% octicon "pencil" aria-label="The edit icon" %} and then in the Signature Method and Digest Method drop-downs, choose the hashing algorithm used by your SAML issuer to verify the integrity of the requests. +![Drop-downs for the Signature Method and Digest method hashing algorithms used by your SAML issuer](/assets/images/help/saml/saml_hashing_method.png) +10. Before enabling SAML SSO for your organization, click **Test SAML configuration** to ensure that the information you've entered is correct. ![Button to test SAML configuration before enforcing](/assets/images/help/saml/saml_test.png) {% tip %} - **Sugerencia:**{% data reusables.saml.testing-saml-sso %} + **Tip:** {% data reusables.saml.testing-saml-sso %} {% endtip %} -11. Para implementar SAML SSO y eliminar a todos los miembros de la organización que no se hayan autenticado mediante tu IdP, selecciona **Require SAML SSO authentication for all members of the _organization name_ organization**.** (Requerir autenticación SAML SSO a todos los miembros de la organización [nombre de la organización]). Para obtener más información acerca de la exigencia de SAML SSO, consulta "[Exigir inicio de sesión único SAML para tu organización](/articles/enforcing-saml-single-sign-on-for-your-organization)". ![Casilla de verificación para requerir SAML SSO para tu organización ](/assets/images/help/saml/saml_require_saml_sso.png)</p></li> -12 -Haz clic en **Save ** (guardar). ![Botón para guardar la configuración de SAML SSO](/assets/images/help/saml/saml_save.png)</ol> +11. To enforce SAML SSO and remove all organization members who haven't authenticated via your IdP, select **Require SAML SSO authentication for all members of the _organization name_ organization**. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." +![Checkbox to require SAML SSO for your organization ](/assets/images/help/saml/saml_require_saml_sso.png) +12. Click **Save**. +![Button to save SAML SSO settings](/assets/images/help/saml/saml_save.png) -## Leer más +## Further reading -- "[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)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md index 9e115e8c93..667d5251a9 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md @@ -1,12 +1,10 @@ --- title: Enforcing SAML single sign-on for your organization intro: Organization owners and admins can enforce SAML SSO so that all organization members must authenticate via an identity provider (IdP). -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/enforcing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enforcing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md index 420131782e..4a825c5770 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md @@ -1,12 +1,11 @@ --- title: Managing SAML single sign-on for your organization -intro: Organization administrators can manage organization members' identities and access to the organization with SAML single sign-on (SSO). +intro: Organization owners can manage organization members' identities and access to the organization with SAML single sign-on (SSO). redirect_from: - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on/ - /articles/managing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md index c963c89bb7..353f17c351 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md @@ -1,7 +1,6 @@ --- title: Managing team synchronization for your organization intro: 'You can enable and disable team synchronization between your identity provider (IdP) and your organization on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.team-synchronization %}' redirect_from: - /articles/synchronizing-teams-between-your-identity-provider-and-github - /github/setting-up-and-managing-organizations-and-teams/synchronizing-teams-between-your-identity-provider-and-github @@ -10,7 +9,6 @@ redirect_from: permissions: Organization owners can manage team synchronization for an organization. miniTocMaxHeadingLevel: 3 versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md index ff778ddc1d..8af5f30451 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md @@ -1,27 +1,25 @@ --- -title: Prepararse para aplicar el inicio de sesión único SAML en tu organización -intro: 'Antes de aplicar el inicio de sesión único de SAML en tu organización, deberías verificar la membresía de tu organización y configurar las configuraciones de conexión para tu proveedor de identidad.' -product: '{% data reusables.gated-features.saml-sso %}' +title: Preparing to enforce SAML single sign-on in your organization +intro: 'Before you enforce SAML single sign-on in your organization, you should verify your organization''s membership and configure the connection settings to your identity provider.' redirect_from: - /articles/preparing-to-enforce-saml-single-sign-on-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/preparing-to-enforce-saml-single-sign-on-in-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: Prepararse para requerir el SSO de SAML +shortTitle: Prepare to enforce SAML SSO --- -{% data reusables.saml.when-you-enforce %} Antes de requerir el SSO de SAML en tu organización, debes revisar la membrecía de la misma, habilitar el SSO de SAML y revisar el acceso de SAML de los miembros de esta. Para obtener más información, consulta lo siguiente. +{% data reusables.saml.when-you-enforce %} Before enforcing SAML SSO in your organization, you should review organization membership, enable SAML SSO, and review organization members' SAML access. For more information, see the following. -| Tarea | Más información | -|:--------------------------------------------------------------------------------------------------------- |:------------------------- | -| Agregar o eliminar miembros de tu organización | <ul><li>"[Invitar a los usuarios para que se unan a tu organización](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[Eliminar a un miembro de tu organización](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | -| Conecta tu IdP a tu organización habilitando el SSO de SAML | <ul><li>"[Conectar tu proveedor de identidad a tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[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)"</li></ul> | -| Asegurar que los miembros de tu organización se hayan registrado y hayan vinculado sus cuentas con tu IdP | <ul><li>"[Visualizar y administrar el acceso de SAML de un miembro en tu organización](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)"</li></ul> | +| Task | More information | +| :- | :- | +| Add or remove members from your organization | <ul><li>"[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[Removing a member from your organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | +| Connect your IdP to your organization by enabling SAML SSO | <ul><li>"[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[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)"</li></ul> | +| Ensure that your organization members have signed in and linked their accounts with the IdP | <ul><li>"[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)"</li></ul> | -Después de que termines con estas tareas, puedes requerir el SSO de SAML en tu organización. Para obtener más información, consulta la sección "[Requerir el inicio de sesión único de SAML en tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)". +After you finish these tasks, you can enforce SAML SSO for your organization. For more information, see "[Enforcing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md index dffddfadae..5e33eb9458 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md @@ -1,9 +1,7 @@ --- title: Troubleshooting identity and access management intro: 'Review and resolve common troubleshooting errors for managing your organization''s SAML SSO, team synchronization, or identity provider (IdP) connection.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/organizing-members-into-teams/creating-a-team.md b/translations/es-ES/content/organizations/organizing-members-into-teams/creating-a-team.md index f414f5cdd9..9224f9ceec 100644 --- a/translations/es-ES/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/translations/es-ES/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -1,6 +1,6 @@ --- -title: Crear un equipo -intro: Puedes crear equipos independientes o anidados para administrar los permisos del repositorio y las menciones de grupos de personas. +title: Creating a team +intro: You can create independent or nested teams to manage repository permissions and mentions for groups of people. redirect_from: - /articles/creating-a-team-early-access-program/ - /articles/creating-a-team @@ -15,7 +15,7 @@ topics: - Teams --- -Solo los propietarios y mantenedores de la organización en un equipo padre pueden crear un nuevo equipo hijo debajo del padre. Los propietarios también pueden restringir los permisos de creación para todos los equipos en una organización. Para obtener más información, consulta "[Configurar los permisos de creación de equipo en tu organización](/articles/setting-team-creation-permissions-in-your-organization)." +Only organization owners and maintainers of a parent team can create a new child team under a parent. Owners can also restrict creation permissions for all teams in an organization. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." {% data reusables.organizations.team-synchronization %} @@ -25,17 +25,18 @@ Solo los propietarios y mantenedores de la organización en un equipo padre pued {% data reusables.organizations.team_name %} {% data reusables.organizations.team_description %} {% data reusables.organizations.create-team-choose-parent %} -{% ifversion fpt or ghec %} -1. Opcionalmente, si tu cuenta organizacional o empresarial utiliza la sincronización de equipos o si tu empresa utiliza {% data variables.product.prodname_emus %}, conecta un grupo de proveedor de identidad a tu equipo. - * Si tu empresa utiliza {% data variables.product.prodname_emus %}, utiliza el menú desplegable de "Grupos de Proveedor de Identidad" y selecciona un solo grupo de proveedor de identidad para conectarlo al equipo nuevo. Para obtener más información, consulta la sección "[Administrar las membrecías de equipo con grupos de proveedor de identidad](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)". - * Si tu cuenta organizacional o empresarial utiliza la sincronización de equipos, utiliza el menú desplegable de "Grupo de Proveedor de Identidad" y selecciona hasta cinco grupos de proveedor de identidad para conectar al equipo nuevo. Para obtener más información, consulta la sección "[Sincronizar a un equipo con un grupo de proveedor de identidad](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)". ![Menú desplegable para elegir los grupos de proveedor de identidad](/assets/images/help/teams/choose-an-idp-group.png) +{% ifversion ghec %} +1. Optionally, if your organization or enterprise account uses team synchronization or your enterprise uses {% data variables.product.prodname_emus %}, connect an identity provider group to your team. + * If your enterprise uses {% data variables.product.prodname_emus %}, use the "Identity Provider Groups" drop-down menu, and select a single identity provider group to connect to the new team. For more information, "[Managing team memberships with identity provider groups](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)." + * If your organization or enterprise account uses team synchronization, use the "Identity Provider Groups" drop-down menu, and select up to five identity provider groups to connect to the new team. For more information, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." + ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png) {% endif %} {% data reusables.organizations.team_visibility %} {% data reusables.organizations.create_team %} -1. También puede [darle acceso al equipo a los repositorios de la organización](/articles/managing-team-access-to-an-organization-repository). +1. Optionally, [give the team access to organization repositories](/articles/managing-team-access-to-an-organization-repository). -## Leer más +## Further reading -- [Acerca de los equipos](/articles/about-teams)" -- "[Cambiar la visibilidad del equipo](/articles/changing-team-visibility)" -- [Mover un equipo dentro de la jerarquía de tu organización](/articles/moving-a-team-in-your-organization-s-hierarchy)" +- "[About teams](/articles/about-teams)" +- "[Changing team visibility](/articles/changing-team-visibility)" +- "[Moving a team in your organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy)" 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 1c53bcbdc8..1e2fc70a8f 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 @@ -3,10 +3,8 @@ title: Synchronizing a team with an identity provider group intro: 'You can synchronize a {% data variables.product.product_name %} team with an identity provider (IdP) group to automatically add and remove team members.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/synchronizing-a-team-with-an-identity-provider-group -product: '{% data reusables.gated-features.team-synchronization %} ' permissions: 'Organization owners and team maintainers can synchronize a {% data variables.product.prodname_dotcom %} team with an IdP group.' versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -21,15 +19,15 @@ shortTitle: Synchronize with an IdP {% data reusables.identity-and-permissions.about-team-sync %} -{% ifversion fpt or ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. +{% ifversion ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. -{% ifversion fpt or ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} +{% ifversion ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} -Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion fpt or ghec %} or using the API{% endif %}. +Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion ghec %} or using the API{% endif %}. -{% ifversion fpt or ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} +{% ifversion ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} All team membership changes made through your IdP will appear in the audit log on {% data variables.product.product_name %} as changes made by the team synchronization bot. Your IdP will send team membership data to {% data variables.product.prodname_dotcom %} once every hour. Connecting a team to an IdP group may remove some team members. For more information, see "[Requirements for members of synchronized teams](#requirements-for-members-of-synchronized-teams)." {% endif %} @@ -42,9 +40,9 @@ Parent teams cannot synchronize with IdP groups. If the team you want to connect To manage repository access for any {% data variables.product.prodname_dotcom %} team, including teams connected to an IdP group, you must make changes with {% data variables.product.product_name %}. For more information, see "[About teams](/articles/about-teams)" and "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)." -{% ifversion fpt or ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} +{% ifversion ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ## Requirements for members of synchronized teams After you connect a team to an IdP group, team synchronization will add each member of the IdP group to the corresponding team on {% data variables.product.product_name %} only if: @@ -62,7 +60,7 @@ To avoid unintentionally removing team members, we recommend enforcing SAML SSO ## Prerequisites -{% ifversion fpt or ghec %} +{% ifversion ghec %} Before you can connect a {% data variables.product.product_name %} team with an identity provider group, an organization or enterprise owner must enable team synchronization for your organization or enterprise account. 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 account](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." To avoid unintentionally removing team members, visit the administrative portal for your IdP and confirm that each current team member is also in the IdP groups that you want to connect to this team. If you don't have this access to your identity provider, you can reach out to your IdP administrator. @@ -83,7 +81,7 @@ When you connect an IdP group to a {% data variables.product.product_name %} tea {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", use the drop-down menu, and select up to 5 identity provider groups. ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", use the drop-down menu, and select an identity provider group from the list. @@ -98,7 +96,7 @@ If you disconnect an IdP group from a {% data variables.product.prodname_dotcom {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. ![Unselect a connected IdP group from the GitHub team](/assets/images/help/teams/unselect-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. 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 8b051b2888..293248895a 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 @@ -152,7 +152,7 @@ You can choose the visibility of containers that organization members can publis 6. Under "Container creation", choose whether you want to enable the creation of public, private, or internal container images. - To enable organization members to create public container images, click **Public**. - To enable organization members to create private container images that are only visible to other organization members, click **Private**. You can further customize the visibility of private container images. - - **For {% data variables.product.prodname_ghe_cloud %} only:** To enable organization members to create internal container images that are only visible to other organization members, click **Internal**. + - To enable organization members to create internal container images that are visible to all organization members, click **Internal**. If the organization belongs to an enterprise, the container images will be visible to all enterprise members. ![Visibility options for container images published by organization members](/assets/images/help/package-registry/container-creation-org-settings.png) ## Configuring visibility of container images for an organization diff --git a/translations/es-ES/content/repositories/archiving-a-github-repository/index.md b/translations/es-ES/content/repositories/archiving-a-github-repository/index.md index f9d7b2462e..753b40a4bf 100644 --- a/translations/es-ES/content/repositories/archiving-a-github-repository/index.md +++ b/translations/es-ES/content/repositories/archiving-a-github-repository/index.md @@ -1,8 +1,8 @@ --- -title: Archivar un repositorio de GitHub -intro: 'Puedes archivar, respaldar y mencionar tu trabajo mediante {% data variables.product.product_name %}, la API o herramientas y servicios de terceros.' +title: Archiving a GitHub repository +intro: 'You can archive, back up, and cite your work using {% data variables.product.product_name %}, the API, or third-party tools and services.' redirect_from: - - /articles/can-i-archive-a-repository/ + - /articles/can-i-archive-a-repository - /articles/archiving-a-github-repository - /enterprise/admin/user-management/archiving-and-unarchiving-repositories - /github/creating-cloning-and-archiving-repositories/archiving-a-github-repository @@ -18,6 +18,6 @@ children: - /about-archiving-content-and-data-on-github - /referencing-and-citing-content - /backing-up-a-repository -shortTitle: Archivar un repositorio +shortTitle: Archive a repository --- diff --git a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md index 1dfc6b4c8e..fbef6893f4 100644 --- a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md +++ b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md @@ -1,8 +1,8 @@ --- -title: Definir la capacidad de fusión de las solicitudes de extracción -intro: 'Puedes requerir que las solicitudes de extracción superen un conjunto de verificaciones antes de que se las pueda fusionar. Por ejemplo, puedes bloquear las solicitudes de extracción que no superan las verificaciones de estado o puedes requerir que las solicitudes de extracción tengan un número específico de revisiones aprobadas antes de que las pueda fusionar.' +title: Defining the mergeability of pull requests +intro: 'You can require pull requests to pass a set of checks before they can be merged. For example, you can block pull requests that don''t pass status checks or require that pull requests have a specific number of approving reviews before they can be merged.' redirect_from: - - /articles/defining-the-mergeability-of-a-pull-request/ + - /articles/defining-the-mergeability-of-a-pull-request - /articles/defining-the-mergeability-of-pull-requests - /enterprise/admin/developer-workflow/establishing-pull-request-merge-conditions - /github/administering-a-repository/defining-the-mergeability-of-pull-requests @@ -18,6 +18,6 @@ children: - /about-protected-branches - /managing-a-branch-protection-rule - /troubleshooting-required-status-checks -shortTitle: Capacidad de fusión de las solicitudes de cambios +shortTitle: Mergeability of PRs --- diff --git a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md index df2d0c2956..807c0c5aa5 100644 --- a/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md +++ b/translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md @@ -1,10 +1,10 @@ --- -title: Eliminar y restaurar ramas en una solicitud de extracción -intro: 'Si tienes acceso de escritura en un repositorio, puedes eliminar las ramas asociadas con solicitudes de extracción cerradas o fusionadas. No puedes eliminar las ramas asociadas con solicitudes de extracción abiertas.' +title: Deleting and restoring branches in a pull request +intro: 'If you have write access in a repository, you can delete branches that are associated with closed or merged pull requests. You cannot delete branches that are associated with open pull requests.' redirect_from: - - /articles/tidying-up-pull-requests/ - - /articles/restoring-branches-in-a-pull-request/ - - /articles/deleting-unused-branches/ + - /articles/tidying-up-pull-requests + - /articles/restoring-branches-in-a-pull-request + - /articles/deleting-unused-branches - /articles/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request @@ -15,32 +15,33 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Borrar & restablecer las ramas +shortTitle: Delete & restore branches --- +## Deleting a branch used for a pull request -## Borrar la rama utilizada para una solicitud de extracción - -Puedes borrar la rama que se asocia con una solicitud de extracción si la han fusionado o cerrado y no hay ninguna otra solicitud de extracción abierta que haga referencia a dicha rama. Para obtener información sobre cerrar ramas que no están asociadas con solicitudes de extracción, consulta la sección "[Crear y borrar ramas dentro de tu repositorio](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)". +You can delete a branch that is associated with a pull request if the pull request has been merged or closed and there are no other open pull requests referencing the branch. For information on closing branches that are not associated with pull requests, see "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. En la lista de solicitudes de extracción, haz clic en la solicitud de extracción que se asocie con la rama que deseas eliminar. -5. Junto a la parte inferior de la solicitud de extracción, haz clic en **Eliminar rama**. ![Botón Eliminar rama](/assets/images/help/pull_requests/delete_branch_button.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to delete. +5. Near the bottom of the pull request, click **Delete branch**. + ![Delete branch button](/assets/images/help/pull_requests/delete_branch_button.png) - Este botón no se muestra si hay alguna solicitud de extracción abierta para esta rama actualmente. + This button isn't displayed if there's currently an open pull request for this branch. -## Restaurar una rama eliminada +## Restoring a deleted branch -Puedes restaurar la rama de encabezado de una solicitud de extracción cerrada. +You can restore the head branch of a closed pull request. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. En la lista de solicitudes de extracción, haz clic en la solicitud de extracción que se asocie con la rama que deseas restaurar. -5. Junto a la parte inferior de la solicitud de extracción, haz clic en **Restaurar rama**. ![Botón Restaurar rama eliminada](/assets/images/help/branches/branches-restore-deleted.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to restore. +5. Near the bottom of the pull request, click **Restore branch**. + ![Restore deleted branch button](/assets/images/help/branches/branches-restore-deleted.png) -## Leer más +## Further reading -- "[Crear y borrar ramas dentro de tu repositorio](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)" -- "[Administrar el borrado automático de ramas](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)" +- "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)" +- "[Managing the automatic deletion of branches](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)" diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/about-repositories.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/about-repositories.md index 6a27e9ea41..46012a30d4 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -48,7 +48,7 @@ You can restrict who has access to a repository by choosing a repository's visib {% ifversion fpt or ghec or ghes %} -When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} can also be created with internal visibility. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} and are owned by an enterprise account can also be created with internal visibility. For more information, see [the {% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/repositories/creating-and-managing-repositories/about-repositories). {% elsif ghae %} diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md index 71d38adb8d..a8a463dce3 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md @@ -1,10 +1,10 @@ --- -title: Crear un repositorio nuevo -intro: Puedes crear un repositorio nuevo en tu cuenta personal o la cuenta de cualquier organización en la que tengas los permisos suficientes. +title: Creating a new repository +intro: You can create a new repository on your personal account or any organization where you have sufficient permissions. redirect_from: - - /creating-a-repo/ - - /articles/creating-a-repository-in-an-organization/ - - /articles/creating-a-new-organization-repository/ + - /creating-a-repo + - /articles/creating-a-repository-in-an-organization + - /articles/creating-a-new-organization-repository - /articles/creating-a-new-repository - /articles/creating-an-internal-repository - /github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository @@ -19,39 +19,41 @@ versions: topics: - Repositories --- - {% tip %} -**Sugerencia:** Los propietarios pueden restringir los permisos 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](/articles/restricting-repository-creation-in-your-organization)". +**Tip:** Owners can restrict repository creation permissions in an organization. For more information, see "[Restricting repository creation in your organization](/articles/restricting-repository-creation-in-your-organization)." {% endtip %} {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**Tip**: También puedes crear un repositorio utilizando el {% data variables.product.prodname_cli %}. Para obtener más información, consulta "[`gh repo create`](https://cli.github.com/manual/gh_repo_create)" en la documentación de {% data variables.product.prodname_cli %}. +**Tip**: You can also create a repository using the {% data variables.product.prodname_cli %}. For more information, see "[`gh repo create`](https://cli.github.com/manual/gh_repo_create)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} {% data reusables.repositories.create_new %} -2. Otra opción para crear un repositorio con la estructura del directorio y los archivos de un repositorio existente es usar el menú desplegable **Elegir una plantilla** y seleccionar un repositorio de plantillas. Verás repositorios de plantillas que te pertenecen a ti y a las organizaciones de las que eres miembro o bien repositorios de plantillas que has usado anteriormente. Para obtener más información, consulta "[Crear un repositorio a partir de una plantilla](/articles/creating-a-repository-from-a-template)". ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} -3. De manera opcional, si decides utilizar una plantilla, para incluir la estructura del directorio y los archivos de todas las ramas en la misma y no solo la rama predeterminada, selecciona **Incluir todas las ramas**. ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} -3. En el menú desplegable de Propietario, selecciona la cuenta en la cual quieres crear el repositorio. ![Menú desplegable Propietario](/assets/images/help/repository/create-repository-owner.png) +2. Optionally, to create a repository with the directory structure and files of an existing repository, use the **Choose a template** drop-down and select a template repository. You'll see template repositories that are owned by you and organizations you're a member of or that you've used before. For more information, see "[Creating a repository from a template](/articles/creating-a-repository-from-a-template)." + ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} +3. Optionally, if you chose to use a template, to include the directory structure and files from all branches in the template, and not just the default branch, select **Include all branches**. + ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} +3. In the Owner drop-down, select the account you wish to create the repository on. + ![Owner drop-down menu](/assets/images/help/repository/create-repository-owner.png) {% data reusables.repositories.repo-name %} {% data reusables.repositories.choose-repo-visibility %} -6. Si no estás utilizando una plantilla, hay varios elementos opcionales que puedes pre-cargar en tu repositorio. Si estás importando un repositorio existente a {% data variables.product.product_name %}, no elijas ninguna de estas opciones, ya que producirás un conflicto de fusión. Puedes agregar o crear nuevos archivos usando la interfaz de usuario o elegir agregar nuevos archivos usando luego la línea de comando. Para obtener más información, consulta las secciones "[Importar un repositorio de Git utilizando la línea de comandos](/articles/importing-a-git-repository-using-the-command-line/)", "[Agregar un archivo a un repositorio](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)" y "[Abordar los conflictos de fusión](/articles/addressing-merge-conflicts/)". - - Puedes crear un README, que es un documento que describe tu proyecto. Para obtener más información, consulta "[Acerca de los README](/articles/about-readmes/)". - - Puedes crear un archivo *.gitignore*, que es un conjunto de reglas de ignorar. Para obtener más información, consulta "[Ignorar archivos](/github/getting-started-with-github/ignoring-files)".{% ifversion fpt or ghec %} - - Puedes elegir agregar una licencia de software a tu proyecto. Para más información, consulta "[Licenciando un repositorio](/articles/licensing-a-repository)."{% endif %} +6. If you're not using a template, there are a number of optional items you can pre-populate your repository with. If you're importing an existing repository to {% data variables.product.product_name %}, don't choose any of these options, as you may introduce a merge conflict. You can add or create new files using the user interface or choose to add new files using the command line later. For more information, see "[Importing a Git repository using the command line](/articles/importing-a-git-repository-using-the-command-line/)," "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)," and "[Addressing merge conflicts](/articles/addressing-merge-conflicts/)." + - You can create a README, which is a document describing your project. For more information, see "[About READMEs](/articles/about-readmes/)." + - You can create a *.gitignore* file, which is a set of ignore rules. For more information, see "[Ignoring files](/github/getting-started-with-github/ignoring-files)."{% ifversion fpt or ghec %} + - You can choose to add a software license for your project. For more information, see "[Licensing a repository](/articles/licensing-a-repository)."{% endif %} {% data reusables.repositories.select-marketplace-apps %} {% data reusables.repositories.create-repo %} {% ifversion fpt or ghec %} -9. En la parte inferior de la página de Configuración rápida resultante, en "Importar el código del repositorio anterior", puedes elegir importar un proyecto en tu nuevo repositorio. Para hacerlo, haz clic en **Importar código**. +9. At the bottom of the resulting Quick Setup page, under "Import code from an old repository", you can choose to import a project to your new repository. To do so, click **Import code**. {% endif %} -## Leer más +## Further reading -- [Administrar el acceso a los repositorios de tu organización](/articles/managing-access-to-your-organization-s-repositories)" -- [Guías de código abierto](https://opensource.guide/){% ifversion fpt or ghec %} +- "[Managing access to your organization's repositories](/articles/managing-access-to-your-organization-s-repositories)" +- [Open Source Guides](https://opensource.guide/){% ifversion fpt or ghec %} - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}){% endif %} diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md index 314cb1e407..e5428dc4c8 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md @@ -1,9 +1,9 @@ --- -title: Crear un repositorio solo para propuestas -intro: '{% data variables.product.product_name %} no otorga permisos de acceso solo para propuestas, pero puedes cumplir con este requisito usando un segundo repositorio que contenga solo las propuestas.' +title: Creating an issues-only repository +intro: '{% data variables.product.product_name %} does not provide issues-only access permissions, but you can accomplish this using a second repository which contains only the issues.' redirect_from: - - /articles/issues-only-access-permissions/ - - /articles/is-there-issues-only-access-to-organization-repositories/ + - /articles/issues-only-access-permissions + - /articles/is-there-issues-only-access-to-organization-repositories - /articles/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-an-issues-only-repository @@ -14,14 +14,13 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Repositorio exclusivo para propuestas +shortTitle: Issues-only repository --- +1. Create a **private** repository to host the source code from your project. +2. Create a second repository with the permissions you desire to host the issue tracker. +3. Add a README file to the issues repository explaining the purpose of this repository and linking to the issues section. +4. Set your collaborators or teams to give access to the repositories as you desire. -1. Crea un repositorio **privado** para alojar el código fuente de tu proyecto. -2. Crea un segundo repositorio con los permisos que deseas alojar para el usuario a cargo del seguimiento de la propuesta. -3. Agrega un archivo README al repositorio de propuestas que explique el propósito de este repositorio y establezca un enlace con la sección de las propuestas. -4. Indica a tus colaboradores o equipos que den acceso a los repositorios que desees. +Users with write access to both can reference and close issues back and forth across the repositories, but those without the required permissions will see references that contain a minimum of information. -Los usuarios con acceso de escritura a ambos pueden referenciar y cerrar las propuestas a través de los repositorios, pero los usuarios que no tengan los permisos requeridos verán referencias que contienen información mínima. - -Por ejemplo, si subiste una confirmación a la rama predeterminada del repositorio privado con un mensaje que dice `Fixes organization/public-repo#12`, la propuesta se cerrará, pero solo los usuarios con los permisos adecuados verán la referencia entre los repositorios que indica la confirmación que determinó que se cerrara la propuesta. Sin los permisos sigue apareciendo una referencia, pero se omiten los detalles. +For example, if you pushed a commit to the private repository's default branch with a message that read `Fixes organization/public-repo#12`, the issue would be closed, but only users with the proper permissions would see the cross-repository reference indicating the commit that closed the issue. Without the permissions, a reference still appears, but the details are omitted. diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/deleting-a-repository.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/deleting-a-repository.md index 5fb2fd7aea..f9f2013c0c 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/deleting-a-repository.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/deleting-a-repository.md @@ -2,8 +2,8 @@ title: Deleting a repository intro: You can delete any repository or fork if you're either an organization owner or have admin permissions for the repository or fork. Deleting a forked repository does not delete the upstream repository. redirect_from: - - /delete-a-repo/ - - /deleting-a-repo/ + - /delete-a-repo + - /deleting-a-repo - /articles/deleting-a-repository - /github/administering-a-repository/deleting-a-repository - /github/administering-a-repository/managing-repository-settings/deleting-a-repository diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md index fe81a4601c..0cbb49c85b 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md @@ -2,7 +2,7 @@ title: Duplicating a repository intro: 'To maintain a mirror of a repository without forking it, you can run a special clone command, then mirror-push to the new repository.' redirect_from: - - /articles/duplicating-a-repo/ + - /articles/duplicating-a-repo - /articles/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/duplicating-a-repository 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 651ec1b4dd..82edf7150d 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 @@ -2,15 +2,15 @@ title: Transferring a repository intro: You can transfer repositories to other users or organization accounts. redirect_from: - - /articles/about-repository-transfers/ - - /move-a-repo/ - - /moving-a-repo/ - - /articles/what-is-transferred-with-a-repository/ - - /articles/what-is-transferred-with-a-repo/ - - /articles/how-to-transfer-a-repo/ - - /articles/how-to-transfer-a-repository/ - - /articles/transferring-a-repository-owned-by-your-personal-account/ - - /articles/transferring-a-repository-owned-by-your-organization/ + - /articles/about-repository-transfers + - /move-a-repo + - /moving-a-repo + - /articles/what-is-transferred-with-a-repository + - /articles/what-is-transferred-with-a-repo + - /articles/how-to-transfer-a-repo + - /articles/how-to-transfer-a-repository + - /articles/transferring-a-repository-owned-by-your-personal-account + - /articles/transferring-a-repository-owned-by-your-organization - /articles/transferring-a-repository - /github/administering-a-repository/transferring-a-repository - /github/administering-a-repository/managing-repository-settings/transferring-a-repository diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md index 0371d81e62..d5d45325ef 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md @@ -2,7 +2,7 @@ title: About code owners intro: You can use a CODEOWNERS file to define individuals or teams that are responsible for code in a repository. redirect_from: - - /articles/about-codeowners/ + - /articles/about-codeowners - /articles/about-code-owners - /github/creating-cloning-and-archiving-repositories/about-code-owners - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md index a6ad2effcd..bd1c73488f 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md @@ -2,8 +2,8 @@ title: About READMEs intro: 'You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.' redirect_from: - - /articles/section-links-on-readmes-and-blob-pages/ - - /articles/relative-links-in-readmes/ + - /articles/section-links-on-readmes-and-blob-pages + - /articles/relative-links-in-readmes - /articles/about-readmes - /github/creating-cloning-and-archiving-repositories/about-readmes - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-readmes diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md index 04a1561be4..be5c459c90 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md @@ -1,12 +1,12 @@ --- -title: Acerca de los idiomas del repositorio -intro: Los archivos y los directorios dentro de un repositorio determinan los idiomas que componen el repositorio. Puedes ver los idiomas de un repositorio para obtener una descripción general rápida del repositorio. +title: About repository languages +intro: The files and directories within a repository determine the languages that make up the repository. You can view a repository's languages to get a quick overview of the repository. redirect_from: - - /articles/my-repository-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-my-favorite-language-recognized/ - - /articles/my-repo-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-sql-recognized-as-a-language/ - - /articles/why-isn-t-my-favorite-language-recognized-by-github/ + - /articles/my-repository-is-marked-as-the-wrong-language + - /articles/why-isn-t-my-favorite-language-recognized + - /articles/my-repo-is-marked-as-the-wrong-language + - /articles/why-isn-t-sql-recognized-as-a-language + - /articles/why-isn-t-my-favorite-language-recognized-by-github - /articles/about-repository-languages - /github/creating-cloning-and-archiving-repositories/about-repository-languages - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-repository-languages @@ -17,14 +17,13 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Lenguajes del repositorio +shortTitle: Repository languages --- +{% data variables.product.product_name %} uses the open source [Linguist library](https://github.com/github/linguist) to +determine file languages for syntax highlighting and repository statistics. Language statistics will update after you push changes to your default branch. -{% data variables.product.product_name %} utiliza la [biblioteca de Linguist](https://github.com/github/linguist) de código abierto para -determinar los lenguajes de un archivo para resaltar la sintaxis y obtener la estadística del repositorio. Las estadísticas de lenguaje se actualizarán después de que subas los cambios a tu rama predeterminada. +Some files are hard to identify, and sometimes projects contain more library and vendor files than their primary code. If you're receiving incorrect results, please consult the Linguist [troubleshooting guide](https://github.com/github/linguist/blob/master/docs/troubleshooting.md) for help. -Algunos archivos son difíciles de identificar y, a veces, los proyectos contienen más archivos de biblioteca y de proveedor que su código primario. Si estás recibiendo resultados incorrectos, consulta la [Guía de solución de problemas](https://github.com/github/linguist/blob/master/docs/troubleshooting.md) del Lingüista para obtener ayuda. +## Markup languages -## Lenguaje Markup - -Los lenguajes Markup están representados para HTML y mostrados en línea usando nuestra [Biblioteca Markup](https://github.com/github/markup) de código abierto. En este momento, no estamos aceptando nuevos lenguajes para mostrar dentro de {% data variables.product.product_name %}. Sin embargo, mantenemos activamente nuestros lengujes Markup actuales. Si encuentras un problema, [crea una propuesta](https://github.com/github/markup/issues/new). +Markup languages are rendered to HTML and displayed inline using our open-source [Markup library](https://github.com/github/markup). At this time, we are not accepting new markup languages to show within {% data variables.product.product_name %}. However, we do actively maintain our current markup languages. If you see a problem, [please create an issue](https://github.com/github/markup/issues/new). diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md index 2aa2f07f4f..48c0c4d4bf 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md @@ -2,7 +2,7 @@ title: Classifying your repository with topics intro: 'To help other people find and contribute to your project, you can add topics to your repository related to your project''s intended purpose, subject area, affinity groups, or other important qualities.' redirect_from: - - /articles/about-topics/ + - /articles/about-topics - /articles/classifying-your-repository-with-topics - /github/administering-a-repository/classifying-your-repository-with-topics - /github/administering-a-repository/managing-repository-settings/classifying-your-repository-with-topics diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md index c719bbebe9..3ac3c54bdd 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md @@ -2,7 +2,7 @@ title: Licensing a repository intro: 'Public repositories on GitHub are often used to share open source software. For your repository to truly be open source, you''ll need to license it so that others are free to use, change, and distribute the software.' redirect_from: - - /articles/open-source-licensing/ + - /articles/open-source-licensing - /articles/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/licensing-a-repository diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md index b027483903..0181b7ae84 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md @@ -3,8 +3,8 @@ title: Managing security and analysis settings for your repository intro: 'You can control features that secure and analyze the code in your project on {% data variables.product.prodname_dotcom %}.' permissions: People with admin permissions to a repository can manage security and analysis settings for the repository. redirect_from: - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories/ - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories/ + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/managing-security-vulnerabilities/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md index 709799ef0f..67c8fece20 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md @@ -1,11 +1,11 @@ --- -title: Acerca de las notificaciones por correo electrónico para las inserciones en tu repositorio -intro: Puedes elegir enviar notificaciones por correo electrónico automáticamente a una dirección en específico cuando alguien suba información a tu repositorio. +title: About email notifications for pushes to your repository +intro: You can choose to automatically send email notifications to a specific email address when anyone pushes to the repository. permissions: People with admin permissions in a repository can enable email notifications for pushes to your repository. redirect_from: - - /articles/managing-notifications-for-pushes-to-a-repository/ - - /articles/receiving-email-notifications-for-pushes-to-a-repository/ - - /articles/about-email-notifications-for-pushes-to-your-repository/ + - /articles/managing-notifications-for-pushes-to-a-repository + - /articles/receiving-email-notifications-for-pushes-to-a-repository + - /articles/about-email-notifications-for-pushes-to-your-repository - /github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository @@ -16,37 +16,39 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Enviar notificaciones por correo electrónico para las subidas +shortTitle: Email notifications for pushes --- - {% data reusables.notifications.outbound_email_tip %} -Cada notificación por correo electrónico para una subida a un repositorio enumera las confirmaciones nuevas y las vincula a una diferencia que solo contenga esas confirmaciones. En la notificación por correo electrónico verás: +Each email notification for a push to a repository lists the new commits and links to a diff containing just those commits. In the email notification you'll see: -- El nombre del repositorio donde se realizó la confirmación. -- La rama en la que se realizó la confirmación. -- El SHA1 de la confirmación, incluido un enlace a la diferencia en {% data variables.product.product_name %}. -- El autor de la confirmación. -- La fecha en que se realizó la confirmación. -- Los archivos que fueron modificados como parte de la confirmación. -- El mensaje de confirmación +- The name of the repository where the commit was made +- The branch a commit was made in +- The SHA1 of the commit, including a link to the diff in {% data variables.product.product_name %} +- The author of the commit +- The date when the commit was made +- The files that were changed as part of the commit +- The commit message -Puedes filtrar las notificaciones por correo electrónico que recibes para las inserciones en un repositorio. Para obtener más información, consulta la sección {% ifversion fpt or ghae or ghes or ghec %}"[Configurar notificaciones](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}"[Acerca de los mensajes de notificación por correo electrónico](/github/receiving-notifications-about-activity-on-github/about-email-notifications)". También puedes apagar las notificaciones por correo electrónico para las cargas de información. Para obtener más información, consulta la sección "[Escoger el método de entrega para las notificaciones](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}". +You can filter email notifications you receive for pushes to a repository. For more information, see {% ifversion fpt or ghae or ghes or ghec %}"[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}"[About notification emails](/github/receiving-notifications-about-activity-on-github/about-email-notifications)." You can also turn off email notifications for pushes. For more information, see "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}." -## Habilitar las notificaciones por correo electrónico para las subidas de información en tu repositorio +## Enabling email notifications for pushes to your repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.sidebar-notifications %} -5. Escribe hasta dos direcciones de correo electrónico, separadas por espacio en blanco, donde quieras que se envíen las notificaciones. Si quieres enviar los correos electrónicos a más de dos cuentas, configura una de las direcciones de correo electrónico a una dirección de correo electrónico del grupo. ![Cuadro de texto dirección de correo electrónico](/assets/images/help/settings/email_services_addresses.png) -1. Si operas tu propio servidor, puedes verificar la integridad de los correos electrónicos a través del **Encabezado aprobado**. El **Encabezado aprobado** es un token o un secreto que tecleas en este campo y que se envía con el correo electrónico. Si el encabezado que está como `Approved` en un correo electrónico empata con el token, puedes confiar en que dicho correo es de {% data variables.product.product_name %}. ![Caja de texto de correo de encabezado aprobado](/assets/images/help/settings/email_services_approved_header.png) -7. Da clic en **Configurar notificaciones**. ![Botón de configurar notificaciones](/assets/images/help/settings/setup_notifications_settings.png) +5. Type up to two email addresses, separated by whitespace, where you'd like notifications to be sent. If you'd like to send emails to more than two accounts, set one of the email addresses to a group email address. +![Email address textbox](/assets/images/help/settings/email_services_addresses.png) +1. If you operate your own server, you can verify the integrity of emails via the **Approved header**. The **Approved header** is a token or secret that you type in this field, and that is sent with the email. If the `Approved` header of an email matches the token, you can trust that the email is from {% data variables.product.product_name %}. +![Email approved header textbox](/assets/images/help/settings/email_services_approved_header.png) +7. Click **Setup notifications**. +![Setup notifications button](/assets/images/help/settings/setup_notifications_settings.png) -## Leer más +## Further reading {% ifversion fpt or ghae or ghes or ghec %} -- "[Acerca de las notificaciones](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" +- "[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" {% else %} -- "[Acerca de las notificaciones](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)" -- "[Escoger el método de entrega para tus notificaciones](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications)" -- "[Acerca de las notificaciones por correo electrónico](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)" -- "[Acerca de las notificaciones web](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)"{% endif %} +- "[About notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)" +- "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications)" +- "[About email notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)" +- "[About web notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)"{% endif %} diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md index 1841cf3ab9..60c27fc359 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md @@ -2,9 +2,9 @@ title: Setting repository visibility intro: You can choose who can view your repository. redirect_from: - - /articles/making-a-private-repository-public/ - - /articles/making-a-public-repository-private/ - - /articles/converting-a-public-repo-to-a-private-repo/ + - /articles/making-a-private-repository-public + - /articles/making-a-public-repository-private + - /articles/converting-a-public-repo-to-a-private-repo - /articles/setting-repository-visibility - /github/administering-a-repository/setting-repository-visibility - /github/administering-a-repository/managing-repository-settings/setting-repository-visibility diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md b/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md index 883c2fc595..b4e5fce59b 100644 --- a/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md +++ b/translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md @@ -2,8 +2,8 @@ title: About releases intro: 'You can create a release to package software, along with release notes and links to binary files, for other people to use.' redirect_from: - - /articles/downloading-files-from-the-command-line/ - - /articles/downloading-files-with-curl/ + - /articles/downloading-files-from-the-command-line + - /articles/downloading-files-with-curl - /articles/about-releases - /articles/getting-the-download-count-for-your-releases - /github/administering-a-repository/getting-the-download-count-for-your-releases diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/index.md b/translations/es-ES/content/repositories/releasing-projects-on-github/index.md index 497feaf87a..feb05945b2 100644 --- a/translations/es-ES/content/repositories/releasing-projects-on-github/index.md +++ b/translations/es-ES/content/repositories/releasing-projects-on-github/index.md @@ -1,9 +1,9 @@ --- -title: Lanzar proyectos en GitHub -intro: 'Puedes crear un lanzamiento para consolidad software, notas de lanzamiento y archivos binarios para que los demás lo descarguen.' +title: Releasing projects on GitHub +intro: 'You can create a release to package software, release notes, and binary files for other people to download.' redirect_from: - - /categories/85/articles/ - - /categories/releases/ + - /categories/85/articles + - /categories/releases - /github/administering-a-repository/releasing-projects-on-github versions: fpt: '*' @@ -21,6 +21,6 @@ children: - /comparing-releases - /automatically-generated-release-notes - /automation-for-release-forms-with-query-parameters -shortTitle: Liberar proyectos +shortTitle: Release projects --- diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md index f03d82caf8..eff47a5b08 100644 --- a/translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md +++ b/translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md @@ -3,7 +3,7 @@ title: Managing releases in a repository intro: You can create releases to bundle and deliver iterations of a project to users. redirect_from: - /articles/creating-releases - - /articles/listing-and-editing-releases/ + - /articles/listing-and-editing-releases - /articles/editing-and-deleting-releases - /articles/managing-releases-in-a-repository - /github/administering-a-repository/creating-releases diff --git a/translations/es-ES/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md b/translations/es-ES/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md index a7b7dcf81c..393e6eb56c 100644 --- a/translations/es-ES/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md +++ b/translations/es-ES/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md @@ -1,8 +1,8 @@ --- -title: Visualizar los lanzamientos y etiquetas de tu repositorio -intro: 'Puedes ver el historial cronológico de tu repositorio por lanzamiento, nombre o número de versión de la etiqueta.' +title: Viewing your repository's releases and tags +intro: You can view the chronological history of your repository by release name or tag version number. redirect_from: - - /articles/working-with-tags/ + - /articles/working-with-tags - /articles/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-releases-and-tags @@ -14,29 +14,29 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Visualizar lanzamientos & etiquetas +shortTitle: View releases & tags --- - {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**Tip**: También puedes ver un lanzamientos utilizando el {% data variables.product.prodname_cli %}. Para obtener más información, consulta la sección "[`gh release view`](https://cli.github.com/manual/gh_release_view)" en la documentación de {% data variables.product.prodname_cli %}. +**Tip**: You can also view a release using the {% data variables.product.prodname_cli %}. For more information, see "[`gh release view`](https://cli.github.com/manual/gh_release_view)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} -## Visualizar lanzamientos +## Viewing releases {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. En la parte superior de la página de lanzamientos, da clic en **Lanzamientos**. +2. At the top of the Releases page, click **Releases**. -## Visualizar etiquetas +## Viewing tags {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. En la parte superior de la página de lanzamiento, haz clic en **Tags** (Etiqueta). ![Página de etiquetas](/assets/images/help/releases/tags-list.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) -## Leer más +## Further reading -- "[Firmar etiquetas](/articles/signing-tags)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md b/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md index 5cf26e1d3a..2a5f059245 100644 --- a/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md +++ b/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md @@ -1,8 +1,8 @@ --- -title: Acerca de los gráficos del repositorio -intro: Los gráficos del repositorio te ayudan a ver y analizar datos para tu repositorio. +title: About repository graphs +intro: Repository graphs help you view and analyze data for your repository. redirect_from: - - /articles/using-graphs/ + - /articles/using-graphs - /articles/about-repository-graphs - /github/visualizing-repository-data-with-graphs/about-repository-graphs - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/about-repository-graphs @@ -14,19 +14,18 @@ versions: topics: - Repositories --- - -Los gráficos de un repositorio te dan información sobre el tráfico de {% ifversion fpt or ghec %}, los proyectos que dependen del repositorio, {% endif %} los colaboradores y las confirmaciones para el repositorio y la red y las bifurcaciones de un repositorio. Si tú mantienes un repositorio, puedes usar estos datos para comprender mejor quién está usando tu repositorio y por qué lo están usando. +A repository's graphs give you information on {% ifversion fpt or ghec %} traffic, projects that depend on the repository,{% endif %} contributors and commits to the repository, and a repository's forks and network. If you maintain a repository, you can use this data to get a better understanding of who's using your repository and why they're using it. {% ifversion fpt or ghec %} -Algunos gráficos del repositorio solo están disponibles en repositorios públicos con {% data variables.product.prodname_free_user %}: -- Pulso -- Colaboradores -- Tráfico -- Confirmaciones -- Frecuencia de código -- Red +Some repository graphs are available only in public repositories with {% data variables.product.prodname_free_user %}: +- Pulse +- Contributors +- Traffic +- Commits +- Code frequency +- Network -Todos los otros gráficos del repositorio están disponibles en todos los repositorios. Cada gráfico del repositorio está disponible en repositorios públicos y privados con {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %} y {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} +All other repository graphs are available in all repositories. Every repository graph is available in public and private repositories with {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %}, and {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} {% endif %} diff --git a/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md b/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md index 0035e6e331..02ea78541a 100644 --- a/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md +++ b/translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md @@ -2,8 +2,8 @@ title: Viewing a project's contributors intro: 'You can see who contributed commits to a repository{% ifversion fpt or ghec %} and its dependencies{% endif %}.' redirect_from: - - /articles/i-don-t-see-myself-in-the-contributions-graph/ - - /articles/viewing-contribution-activity-in-a-repository/ + - /articles/i-don-t-see-myself-in-the-contributions-graph + - /articles/viewing-contribution-activity-in-a-repository - /articles/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/viewing-a-projects-contributors diff --git a/translations/es-ES/content/repositories/working-with-files/index.md b/translations/es-ES/content/repositories/working-with-files/index.md index c80815935b..1e874875f7 100644 --- a/translations/es-ES/content/repositories/working-with-files/index.md +++ b/translations/es-ES/content/repositories/working-with-files/index.md @@ -1,9 +1,9 @@ --- -title: Trabajar con los archivos -intro: Aprende cómo adminstrar y utilizar los archivos en los repositorios. +title: Working with files +intro: Learn how to manage and use files in repositories. redirect_from: - - /categories/81/articles/ - - /categories/manipulating-files/ + - /categories/81/articles + - /categories/manipulating-files - /categories/managing-files-in-a-repository - /github/managing-files-in-a-repository versions: @@ -17,6 +17,6 @@ children: - /managing-files - /using-files - /managing-large-files -shortTitle: Trabajar con los archivos +shortTitle: Work with files --- diff --git a/translations/es-ES/content/repositories/working-with-files/managing-files/editing-files.md b/translations/es-ES/content/repositories/working-with-files/managing-files/editing-files.md index 475af1063a..b52562a21b 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-files/editing-files.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-files/editing-files.md @@ -1,8 +1,8 @@ --- -title: Editar archivos -intro: 'Puedes editar archivos directamente en {% data variables.product.product_name %} en cualquiera de tus repositorios usando el editor de archivos.' +title: Editing files +intro: 'You can edit files directly on {% data variables.product.product_name %} in any of your repositories using the file editor.' redirect_from: - - /articles/editing-files/ + - /articles/editing-files - /articles/editing-files-in-your-repository - /github/managing-files-in-a-repository/editing-files-in-your-repository - /articles/editing-files-in-another-user-s-repository @@ -16,42 +16,47 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Editar archivos +shortTitle: Edit files --- -## Editar archivos en tu repositorio +## Editing files in your repository {% tip %} -**Sugerencia**:{% data reusables.repositories.protected-branches-block-web-edits-uploads %} +**Tip**: {% data reusables.repositories.protected-branches-block-web-edits-uploads %} {% endtip %} {% note %} -**Nota:** El editor de archivos de {% data variables.product.product_name %} usa [CodeMirror](https://codemirror.net/). +**Note:** {% data variables.product.product_name %}'s file editor uses [CodeMirror](https://codemirror.net/). {% endnote %} -1. En tu repositorio, dirígete al archivo que deseas editar. +1. In your repository, browse to the file you want to edit. {% data reusables.repositories.edit-file %} -3. En la pestaña **Editar archivo**, realiza todos los cambios que sean necesarios. ![Nuevo contenido en el archivo](/assets/images/help/repository/edit-readme-light.png) +3. On the **Edit file** tab, make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## Editar archivos en el repositorio de otro usuario +## Editing files in another user's repository -Cuando editas un archivo en el repositorio de otro usuario, automáticamente [bifurcaremos el repositorio](/articles/fork-a-repo) y [abriremos una solicitud de cambios](/articles/creating-a-pull-request) para ti. +When you edit a file in another user's repository, we'll automatically [fork the repository](/articles/fork-a-repo) and [open a pull request](/articles/creating-a-pull-request) for you. -1. En el repositorio de otro usuario, dirígete a la carpeta que contiene el archivo que deseas editar. Haz clic en el nombre del archivo que deseas editar. -2. Sobre el contenido del archivo, haz clic en {% octicon "pencil" aria-label="The edit icon" %}. En este punto del proceso, GitHub bifurca el repositorio por ti. -3. Realiza todos los cambios que necesites en el archivo. ![Nuevo contenido en el archivo](/assets/images/help/repository/edit-readme-light.png) +1. In another user's repository, browse to the folder that contains the file you want to edit. Click the name of the file you want to edit. +2. Above the file content, click {% octicon "pencil" aria-label="The edit icon" %}. At this point, GitHub forks the repository for you. +3. Make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} -6. Haz clic en **Proponer cambio en el archivo**. ![Botón Confirmar cambios](/assets/images/help/repository/propose_file_change_button.png) -7. Escribe un título y una descripción para tu solicitud de extracción. ![Página de descripción de la solicitud de extracción](/assets/images/help/pull_requests/pullrequest-description.png) -8. Haz clic en **Create Pull Request** (Crear solicitud de extracción). ![Botón Solicitud de extracción](/assets/images/help/pull_requests/pullrequest-send.png) +6. Click **Propose file change**. +![Commit Changes button](/assets/images/help/repository/propose_file_change_button.png) +7. Type a title and description for your pull request. +![Pull Request description page](/assets/images/help/pull_requests/pullrequest-description.png) +8. Click **Create pull request**. +![Pull Request button](/assets/images/help/pull_requests/pullrequest-send.png) diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md index 5dbc2028e6..284c0fc933 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: Acerca de Large File Storage de Git -intro: '{% data variables.product.product_name %} limita el tamaño de los archivos permitidos en los repositorios. Para rastrear los archivos más allá de este límite, puedes utilizar {% data variables.large_files.product_name_long %}.' +title: About Git Large File Storage +intro: '{% data variables.product.product_name %} limits the size of files allowed in repositories. To track files beyond this limit, you can use {% data variables.large_files.product_name_long %}.' redirect_from: - - /articles/about-large-file-storage/ + - /articles/about-large-file-storage - /articles/about-git-large-file-storage - /github/managing-large-files/about-git-large-file-storage - /github/managing-large-files/versioning-large-files/about-git-large-file-storage @@ -11,32 +11,32 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Almacenamiento de archivos de gran tamaño Git +shortTitle: Git Large File Storage --- -## Acerca de {% data variables.large_files.product_name_long %} +## About {% data variables.large_files.product_name_long %} -{% data variables.large_files.product_name_short %} maneja archivos grandes almacenando referencias del archivo en el repositorio, pero no el archivo real. Para trabajar en la arquitectura de Git, {% data variables.large_files.product_name_short %} crea un archivo puntero que actúa como una referencia del archivo real (que se almacena en otro lugar). {% data variables.product.product_name %} administra este archivo puntero en tu repositorio. Cuando clonas el repositorio, {% data variables.product.product_name %} usa el archivo puntero como un mapa para ir y buscar el archivo grande por ti. +{% data variables.large_files.product_name_short %} handles large files by storing references to the file in the repository, but not the actual file itself. To work around Git's architecture, {% data variables.large_files.product_name_short %} creates a pointer file which acts as a reference to the actual file (which is stored somewhere else). {% data variables.product.product_name %} manages this pointer file in your repository. When you clone the repository down, {% data variables.product.product_name %} uses the pointer file as a map to go and find the large file for you. {% ifversion fpt or ghec %} -Con {% data variables.large_files.product_name_short %} puedes subier archivos de hasta: +Using {% data variables.large_files.product_name_short %}, you can store files up to: -| Producto | Tamaño máximo de archivo | -| ------------------------------------------------- | ------------------------ | -| {% data variables.product.prodname_free_user %} | 2 GB | -| {% data variables.product.prodname_pro %} | 2 GB | -| {% data variables.product.prodname_team %} | 4 GB | +| Product | Maximum file size | +|------- | ------- | +| {% data variables.product.prodname_free_user %} | 2 GB | +| {% data variables.product.prodname_pro %} | 2 GB | +| {% data variables.product.prodname_team %} | 4 GB | | {% data variables.product.prodname_ghe_cloud %} | 5 GB |{% else %} - Si utilizas {% data variables.large_files.product_name_short %}, puedes almacenar archivos de hasta 5 GB en tu repositorio. -{% endif %} +Using {% data variables.large_files.product_name_short %}, you can store files up to 5 GB in your repository. +{% endif %} -Tambié puedes usar {% data variables.large_files.product_name_short %} con {% data variables.product.prodname_desktop %}. Para obtener más información acerca de cómo clonar repositorios LFS de Git en {% data variables.product.prodname_desktop %}, consulta "[Cómo clonar un repositorio desde GitHub hasta GitHub Desktop](/desktop/guides/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop)". +You can also use {% data variables.large_files.product_name_short %} with {% data variables.product.prodname_desktop %}. For more information about cloning Git LFS repositories in {% data variables.product.prodname_desktop %}, see "[Cloning a repository from GitHub to GitHub Desktop](/desktop/guides/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop)." {% data reusables.large_files.can-include-lfs-objects-archives %} -## Formato de archivo puntero +## Pointer file format -El archivo puntero de {% data variables.large_files.product_name_short %} se ve así: +{% data variables.large_files.product_name_short %}'s pointer file looks like this: ``` version {% data variables.large_files.version_name %} @@ -44,16 +44,16 @@ oid sha256:4cac19622fc3ada9c0fdeadb33f88f367b541f38b89102a3f1261ac81fd5bcb5 size 84977953 ``` -Hace un seguimiento de la `version` de {% data variables.large_files.product_name_short %} que estás usando, seguido de un identificador único para el archivo (`oid`). También almacena el `size` del archivo final. +It tracks the `version` of {% data variables.large_files.product_name_short %} you're using, followed by a unique identifier for the file (`oid`). It also stores the `size` of the final file. {% note %} -**Notas**: -- {% data variables.large_files.product_name_short %} no puede utilizarse con los sitios de {% data variables.product.prodname_pages %}. -- {% data variables.large_files.product_name_short %} no se puede utilizar con repositorios de plantilla. - +**Notes**: +- {% data variables.large_files.product_name_short %} cannot be used with {% data variables.product.prodname_pages %} sites. +- {% data variables.large_files.product_name_short %} cannot be used with template repositories. + {% endnote %} -## Leer más +## Further reading -- "[Colaborar con {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage)" +- "[Collaboration with {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage)" diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md index 98c91a49c5..575108e57e 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md @@ -1,6 +1,6 @@ --- -title: Acerca de los archivos grandes en GitHub -intro: '{% data variables.product.product_name %} limita el tamaño de los archivos que puedes rastrear en los repositorios regulares de Git. Aprende cómo rastrear o eliminar archivos que sobrepasan el límite.' +title: About large files on GitHub +intro: '{% data variables.product.product_name %} limits the size of files you can track in regular Git repositories. Learn how to track or remove files that are beyond the limit.' redirect_from: - /articles/distributing-large-binaries - /github/managing-large-files/distributing-large-binaries @@ -12,7 +12,7 @@ redirect_from: - /articles/conditions-for-large-files - /github/managing-large-files/conditions-for-large-files - /github/managing-large-files/working-with-large-files/conditions-for-large-files - - /articles/what-is-the-size-limit-for-a-repository/ + - /articles/what-is-the-size-limit-for-a-repository - /articles/what-is-my-disk-quota - /github/managing-large-files/what-is-my-disk-quota - /github/managing-large-files/working-with-large-files/what-is-my-disk-quota @@ -21,86 +21,86 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Archivos grandes +shortTitle: Large files --- -## Acerca de los límites de tamaño en {% data variables.product.product_name %} +## About size limits on {% data variables.product.product_name %} {% ifversion fpt or ghec %} -{% data variables.product.product_name %} intenta proporcionar almacenamiento abundante para todos los repositorios de Git, aunque existen límites físicos para los tamaños de los archivos y repositorios. Para garantizar el rendimiento y la legibilidad para nuestros usuarios, monitoreamos activamente las señales de la salud general de los repositorios. La salud de los repositorios es una función de varios factores de interacción, incluyendo el tamaño, frecuencia de confirmaciones y estructura. +{% data variables.product.product_name %} tries to provide abundant storage for all Git repositories, although there are hard limits for file and repository sizes. To ensure performance and reliability for our users, we actively monitor signals of overall repository health. Repository health is a function of various interacting factors, including size, commit frequency, contents, and structure. -### Límites de tamaño de archivos +### File size limits {% endif %} -{% data variables.product.product_name %} limita el tamaño de los archivos permitidos en los repositorios. Recibirás una advertencia de Git si intentas añadir o actualizar un archivo mayor a {% data variables.large_files.warning_size %}. Los cambios aún se subirán a tu repositorio, pero puedes considerar eliminar la confirmación para minimizar el impacto en el rendimiento. Para obtener información, consulta [Eliminar archivos del historial de un repositorio](#removing-files-from-a-repositorys-history)" +{% data variables.product.product_name %} limits the size of files allowed in repositories. If you attempt to add or update a file that is larger than {% data variables.large_files.warning_size %}, you will receive a warning from Git. The changes will still successfully push to your repository, but you can consider removing the commit to minimize performance impact. For more information, see "[Removing files from a repository's history](#removing-files-from-a-repositorys-history)." {% note %} -**Nota:** si agregas un archivo a un repositorio por medio de un navegador, el archivo no puede ser mayor de {% data variables.large_files.max_github_browser_size %}. Para obtener más información, consulta la sección "[Agregar un archivo a un repositorio](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)." +**Note:** If you add a file to a repository via a browser, the file can be no larger than {% data variables.large_files.max_github_browser_size %}. For more information, see "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)." {% endnote %} -{% ifversion ghes %}Predeterminadamente, {% endif %}{% data variables.product.product_name %} bloquea las subidas que excedan {% data variables.large_files.max_github_size %}. {% ifversion ghes %}Sin embargo, un administrador de sitio puede configurar un límite diferente para {% data variables.product.product_location %}. Para obtener más información, consulta la sección "[Configurar los límites de subida de Git](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)".{% endif %} +{% ifversion ghes %}By default, {% endif %}{% data variables.product.product_name %} blocks pushes that exceed {% data variables.large_files.max_github_size %}. {% ifversion ghes %}However, a site administrator can configure a different limit for {% data variables.product.product_location %}. For more information, see "[Setting Git push limits](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)."{% endif %} -Para rastrear archivos que sobrepasen este límite, debes utilizar {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}). Para obtener más información, consulta la sección "[Acerca de {% data variables.large_files.product_name_long %}](/repositories/working-with-files/managing-large-files/about-git-large-file-storage)". +To track files beyond this limit, you must use {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}). For more information, see "[About {% data variables.large_files.product_name_long %}](/repositories/working-with-files/managing-large-files/about-git-large-file-storage)." -Si necesitas distribuir archivos grandes dentro de tu repositorio, puedes crear lanzamientos en {% data variables.product.product_location %} en vez de rastrear los archivos. Para obtener más información, consulta la sección "[Distribuir archivos binarios grandes](#distributing-large-binaries)". +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %} instead of tracking the files. For more information, see "[Distributing large binaries](#distributing-large-binaries)." -Git no se diseñó para manejar archivos grandes de SQL. Para compartir bases de datos grandes con otros desarrolladores, te recomendamos utilizar [Dropbox](https://www.dropbox.com/). +Git is not designed to handle large SQL files. To share large databases with other developers, we recommend using [Dropbox](https://www.dropbox.com/). {% ifversion fpt or ghec %} -### Límites de tamaño de repositorio +### Repository size limits -Te recomendamos que los repositorios sean siempre pequeños, idealmente, de menos de 1 GB, y se recomienda ampliamente que sean de menos de 5GB. Los repositorios más pequeños se clonan más rápido y se puede mantenerlos mejor y trabajar en ellos más fácilmente. Si tu repositorio impacta excesivamente nuestra infraestructura, puede que recibas un mensaje de correo electrónico de {% data variables.contact.github_support %}, el cual te solicitará que tomes acciones correctivas. Intentamos ser flexibles, especialmente con proyectos grandes que tienen muchos colaboradores, y trabajaremos junto contigo para encontrar una resolución cada que sea posible. Puedes prevenir que tu repositorio impacte nuestra infraestructura si administras el tamaño de tu repositorio y su salud general con eficacia. Puedes encontrar consejos y una herramienta para análisis de repositorios en el repositorio [`github/git-sizer`](https://github.com/github/git-sizer). +We recommend repositories remain small, ideally less than 1 GB, and less than 5 GB is strongly recommended. Smaller repositories are faster to clone and easier to work with and maintain. If your repository excessively impacts our infrastructure, you might receive an email from {% data variables.contact.github_support %} asking you to take corrective action. We try to be flexible, especially with large projects that have many collaborators, and will work with you to find a resolution whenever possible. You can prevent your repository from impacting our infrastructure by effectively managing your repository's size and overall health. You can find advice and a tool for repository analysis in the [`github/git-sizer`](https://github.com/github/git-sizer) repository. -Las dependencias externas pueden causar que los repositorios de Git se hagan muy grandes. Para evitar llenar un repositorio con dependencias externas, te recomendamos utilizar un administrador de paquetes. Los administradores de paquetes populares para lenguajes (de programación) comunes incluyen a [Bundler](http://bundler.io/), [Node's Package Manager](http://npmjs.org/), y [Maven](http://maven.apache.org/). Estos administradores de paquetes soportan la utilización directa de repositorios de Git para que no dependas de fuentes pre-empacadas. +External dependencies can cause Git repositories to become very large. To avoid filling a repository with external dependencies, we recommend you use a package manager. Popular package managers for common languages include [Bundler](http://bundler.io/), [Node's Package Manager](http://npmjs.org/), and [Maven](http://maven.apache.org/). These package managers support using Git repositories directly, so you don't need pre-packaged sources. -Git no está diseñado para fungir como una herramienta de respaldo. Sin embargo, existen muchas soluciones diseñadas específicamente para realizar respaldos, tales como [Arq](https://www.arqbackup.com/), [Carbonite](http://www.carbonite.com/), y [CrashPlan](https://www.crashplan.com/en-us/). +Git is not designed to serve as a backup tool. However, there are many solutions specifically designed for performing backups, such as [Arq](https://www.arqbackup.com/), [Carbonite](http://www.carbonite.com/), and [CrashPlan](https://www.crashplan.com/en-us/). {% endif %} -## Eliminar archivos del historial de un repositorio +## Removing files from a repository's history {% warning %} -**Advertencia**: Estos procedimientos eliminarán archivos de manera permanente del repositorio de tu computadora y de {% data variables.product.product_location %}. Si el archivo es importante, haz una copia de seguridad local en un directorio por fuera del repositorio. +**Warning**: These procedures will permanently remove files from the repository on your computer and {% data variables.product.product_location %}. If the file is important, make a local backup copy in a directory outside of the repository. {% endwarning %} -### Eliminar un archivo agregado en la confirmación más reciente no subida +### Removing a file added in the most recent unpushed commit -Si el archivo se agregó con tu confirmación más reciente, y no lo subiste a {% data variables.product.product_location %}, puedes eliminar el archivo y modificar la confirmación: +If the file was added with your most recent commit, and you have not pushed to {% data variables.product.product_location %}, you can delete the file and amend the commit: {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.command_line.switching_directories_procedural %} -3. Para eliminar el archivo, ingresa a `git rm --cached`: +3. To remove the file, enter `git rm --cached`: ```shell $ git rm --cached <em>giant_file</em> # Stage our giant file for removal, but leave it on disk ``` -4. Confirma este cambio usando `--amend -CHEAD`: +4. Commit this change using `--amend -CHEAD`: ```shell $ git commit --amend -CHEAD # Amend the previous commit with your change # Simply making a new commit won't work, as you need # to remove the file from the unpushed history as well ``` -5. Sube tus confirmaciones a {% data variables.product.product_location %}: +5. Push your commits to {% data variables.product.product_location %}: ```shell $ git push # Push our rewritten, smaller commit ``` -### Eliminar un archivo que se añadió en una confirmación de cambios previa +### Removing a file that was added in an earlier commit -Si añadiste un archivo en una confirmación previa, necesitas eliminarlo del historial del repositorio. Para eliminar archivos de la historia del repositorio, puedes utilizar BFG Repo-Cleaner o el comando `git filter-branch`. Para obtener más información, consulta la sección "[Eliminar datos sensibles de un repositorio](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)". +If you added a file in an earlier commit, you need to remove it from the repository's history. To remove files from the repository's history, you can use the BFG Repo-Cleaner or the `git filter-branch` command. For more information see "[Removing sensitive data from a repository](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)." -## Distribuir binarios grandes +## Distributing large binaries -Si necesitas distribuir archivos grandes dentro de tu repositorio, puedes crear lanzamientos en {% data variables.product.product_location %}. Los lanzamientos te permiten empaquetar el software, notas de lanzamiento y enlaces a los archivos binarios para que otras personas puedan utilizarlos. Para obtener más información, consulta la sección "[Acerca de los lanzamientos](/github/administering-a-repository/about-releases)". +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %}. Releases allow you to package software, release notes, and links to binary files, for other people to use. For more information, visit "[About releases](/github/administering-a-repository/about-releases)." {% ifversion fpt or ghec %} -No limitamos el tamaño total de los archivos binarios en los lanzamientos o anchos de banda que se utilizan para entregarlos. Sin embargo, cada archivo individual debe ser menor a {% data variables.large_files.max_lfs_size %}. +We don't limit the total size of the binary files in the release or the bandwidth used to deliver them. However, each individual file must be smaller than {% data variables.large_files.max_lfs_size %}. {% endif %} diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md index f66940266f..d8b8b08de9 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md @@ -1,31 +1,30 @@ --- -title: Acerca del uso de ancho de banda y del almacenamiento +title: About storage and bandwidth usage intro: '{% data reusables.large_files.free-storage-bandwidth-amount %}' redirect_from: - - /articles/billing-plans-for-large-file-storage/ - - /articles/billing-plans-for-git-large-file-storage/ + - /articles/billing-plans-for-large-file-storage + - /articles/billing-plans-for-git-large-file-storage - /articles/about-storage-and-bandwidth-usage - /github/managing-large-files/about-storage-and-bandwidth-usage - /github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage versions: fpt: '*' ghec: '*' -shortTitle: Almacenamiento & ancho de banda +shortTitle: Storage & bandwidth --- +{% data variables.large_files.product_name_short %} is available for every repository on {% data variables.product.product_name %}, whether or not your account or organization has a paid subscription. -{% data variables.large_files.product_name_short %} está disponible para cada repositorio en {% data variables.product.product_name %}, ya sea que tu cuenta u organización tenga o no una suscripción paga. +## Tracking storage and bandwidth use -## Hacer un seguimiento del uso de ancho de banda y del almacenamiento +When you commit and push a change to a file tracked with {% data variables.large_files.product_name_short %}, a new version of the entire file is pushed and the total file size is counted against the repository owner's storage limit. When you download a file tracked with {% data variables.large_files.product_name_short %}, the total file size is counted against the repository owner's bandwidth limit. {% data variables.large_files.product_name_short %} uploads do not count against the bandwidth limit. -Cuando confirmas y subes un cambio a un archivo seguido con {% data variables.large_files.product_name_short %}, se sube una nueva versión del archivo completo y el tamaño total del archivo cuenta para el límite de almacenamiento del propietario del repositorio. Cuando descargas un archivo seguido con {% data variables.large_files.product_name_short %}, el tamaño total del archivo cuenta para el límite de ancho de banda del propietario del repositorio. Las cargas de {% data variables.large_files.product_name_short %} no cuentan para el lpimite de ancho de banda. - -Por ejemplo: -- Si subes un archivo de 500 MB a {% data variables.large_files.product_name_short %}, usarás 500 MB de tu almacenamiento asignado y nada de tu ancho de banda. Si realizas un cambio de 1 byte y subes el archivo de nuevo, usarás otros 500 MB de almacenamiento y no de ancho de banda, llevando tu uso total por esas dos subidas a 1 GB de almacenamiento y cero ancho de banda. -- Si descargas un archivo de 500 MB que es seguido con LFS, usarás 500 MB del ancho de banda asignado del propietario del repositorio. Si un colaborador sube un cambio al archivo y extraes la versión nueva a tu repositorio local, usarás otros 500 MB de ancho de banda, llevando el uso total por esas dos descargas a 1 GB de ancho de banda. -- Si {% data variables.product.prodname_actions %} descarga un archivo de 500 MB que se rastree con LFS, este utilizará 500 MB del ancho de banda asignado al repositorio del propietario. +For example: +- If you push a 500 MB file to {% data variables.large_files.product_name_short %}, you'll use 500 MB of your allotted storage and none of your bandwidth. If you make a 1 byte change and push the file again, you'll use another 500 MB of storage and no bandwidth, bringing your total usage for these two pushes to 1 GB of storage and zero bandwidth. +- If you download a 500 MB file that's tracked with LFS, you'll use 500 MB of the repository owner's allotted bandwidth. If a collaborator pushes a change to the file and you pull the new version to your local repository, you'll use another 500 MB of bandwidth, bringing the total usage for these two downloads to 1 GB of bandwidth. +- If {% data variables.product.prodname_actions %} downloads a 500 MB file that is tracked with LFS, it will use 500 MB of the repository owner's allotted bandwidth. {% ifversion fpt or ghec %} -Si los objetos de {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) se incluyen en los archivos de código fuente para tu repositorio, las descargas de estos archivos contarán en el uso de ancho de banda para el repositorio. Para obtener más información, consulta la sección "[Administrar los objetos de {% data variables.large_files.product_name_short %} en los archivos de tu repositorio](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)". +If {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in source code archives for your repository, downloads of those archives will count towards bandwidth usage for the repository. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% tip %} @@ -36,15 +35,15 @@ Si los objetos de {% data variables.large_files.product_name_long %} ({% data va {% endtip %} -## Cuota de almacenamiento +## Storage quota -Si utilizas más de {% data variables.large_files.initial_storage_quota %} de almacenamiento sin comprar un paquete de datos, aún puedes clonar repositorios con elementos grandes, pero solo podrás descargar los archivos puntero, y no podrás subir archivos nuevos otra vez. Para obtener más información acerca de los archivos puntero, consulta la sección "[Acerca de{% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)". +If you use more than {% data variables.large_files.initial_storage_quota %} of storage without purchasing a data pack, you can still clone repositories with large assets, but you will only retrieve the pointer files, and you will not be able to push new files back up. For more information about pointer files, see "[About {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)." -## Cuota de ancho de banda +## Bandwidth quota -Si usas más de {% data variables.large_files.initial_bandwidth_quota %} de ancho de banda por mes sin comprar un paquete de datos, el soporte de {% data variables.large_files.product_name_short %} se desactiva en tu cuenta hasta el próximo mes. +If you use more than {% data variables.large_files.initial_bandwidth_quota %} of bandwidth per month without purchasing a data pack, {% data variables.large_files.product_name_short %} support is disabled on your account until the next month. -## Leer más +## Further reading -- "[Ver tu uso de {% data variables.large_files.product_name_long %}](/articles/viewing-your-git-large-file-storage-usage)" -- "[Administrar la facturación para {% data variables.large_files.product_name_long %}](/articles/managing-billing-for-git-large-file-storage)" +- "[Viewing your {% data variables.large_files.product_name_long %} usage](/articles/viewing-your-git-large-file-storage-usage)" +- "[Managing billing for {% data variables.large_files.product_name_long %}](/articles/managing-billing-for-git-large-file-storage)" diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md index 773630514c..f1cd37622a 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md @@ -2,7 +2,7 @@ title: Collaboration with Git Large File Storage intro: 'With {% data variables.large_files.product_name_short %} enabled, you''ll be able to fetch, modify, and push large files just as you would expect with any file that Git manages. However, a user that doesn''t have {% data variables.large_files.product_name_short %} will experience a different workflow.' redirect_from: - - /articles/collaboration-with-large-file-storage/ + - /articles/collaboration-with-large-file-storage - /articles/collaboration-with-git-large-file-storage - /github/managing-large-files/collaboration-with-git-large-file-storage - /github/managing-large-files/versioning-large-files/collaboration-with-git-large-file-storage 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 42efde5722..6569c30f30 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 @@ -1,8 +1,8 @@ --- -title: Configurar el almacenamiento de archivos Git de gran tamaño -intro: 'Una vez que {[{% data variables.large_files.product_name_short %} está instalado], (/articles/installing-git-large-file-storage/), deberás asociarlo con un archivo de gran tamaño en tu repositorio.' +title: Configuring Git Large File Storage +intro: 'Once [{% data variables.large_files.product_name_short %} is installed](/articles/installing-git-large-file-storage/), you need to associate it with a large file in your repository.' redirect_from: - - /articles/configuring-large-file-storage/ + - /articles/configuring-large-file-storage - /articles/configuring-git-large-file-storage - /github/managing-large-files/configuring-git-large-file-storage - /github/managing-large-files/versioning-large-files/configuring-git-large-file-storage @@ -11,10 +11,9 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Configurar el LFS de Git +shortTitle: Configure Git LFS --- - -Si hay archivos existentes en tu repositorio con los que te gustaría usar {% data variables.product.product_name %}, primero debes eliminarlos del repositorio y luego agregarlas a {% data variables.large_files.product_name_short %} localmente. Para obtener más información, consulta "[Mover un archivo en tu repositorio a {% data variables.large_files.product_name_short %}](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)". +If there are existing files in your repository that you'd like to use {% data variables.product.product_name %} with, you need to first remove them from the repository and then add them to {% data variables.large_files.product_name_short %} locally. For more information, see "[Moving a file in your repository to {% data variables.large_files.product_name_short %}](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)." {% data reusables.large_files.resolving-upload-failures %} @@ -22,46 +21,46 @@ Si hay archivos existentes en tu repositorio con los que te gustaría usar {% da {% tip %} -**Nota:** Antes de que intentes subir un archivo grande a {% data variables.product.product_name %}, asegúrate de haber habilitado {% data variables.large_files.product_name_short %} en tu empresa. Para obtener más información, consulta "[Configurar almacenamiento de archivos Git de gran tamaño en GitHub Enterprise Server](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)". +**Note:** Before trying to push a large file to {% data variables.product.product_name %}, make sure that you've enabled {% data variables.large_files.product_name_short %} on your enterprise. For more information, see "[Configuring Git Large File Storage on GitHub Enterprise Server](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)." {% endtip %} {% endif %} {% data reusables.command_line.open_the_multi_os_terminal %} -2. Cambia tu directorio de trabajo actual a un repositorio existente que desees usar con {% data variables.large_files.product_name_short %}. -3. Para asociar un tipo de archivo en tu repositorio con {% data variables.large_files.product_name_short %}, escribe `git {% data variables.large_files.command_name %} track` seguido por el nombre de la extensión de archivo a la que deseas cargar automáticamente {% data variables.large_files.product_name_short %}. +2. Change your current working directory to an existing repository you'd like to use with {% data variables.large_files.product_name_short %}. +3. To associate a file type in your repository with {% data variables.large_files.product_name_short %}, enter `git {% data variables.large_files.command_name %} track` followed by the name of the file extension you want to automatically upload to {% data variables.large_files.product_name_short %}. - Por ejemplo, para asociar un archivo _.psd_, escribe el siguiente comando: + For example, to associate a _.psd_ file, enter the following command: ```shell $ git {% data variables.large_files.command_name %} track "*.psd" > Adding path *.psd ``` - Cada tipo de archivo que desees asociar con {% data variables.large_files.product_name_short %} deberá agregarse con `got{% data variables.large_files.command_name %} track`. Este comando enmienda tu archivo *.gitattributes* del repositorio y asocia archivos de gran tamaño {% data variables.large_files.product_name_short %}. + Every file type you want to associate with {% data variables.large_files.product_name_short %} will need to be added with `git {% data variables.large_files.command_name %} track`. This command amends your repository's *.gitattributes* file and associates large files with {% data variables.large_files.product_name_short %}. {% tip %} - **Sugerencia:** Sugerimos enfáticamente que confirmes el archivo *.gitattributes* local 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. + **Tip:** We strongly suggest that you commit your local *.gitattributes* file into your repository. Relying on a global *.gitattributes* file associated with {% data variables.large_files.product_name_short %} may cause conflicts when contributing to other Git projects. {% endtip %} -4. Agrega un archivo al repositorio que coincide con la extensión que has asociado: +4. Add a file to the repository matching the extension you've associated: ```shell $ git add path/to/file.psd ``` -5. Confirma el archivo y súbelo a {% data variables.product.product_name %}: +5. Commit the file and push it to {% data variables.product.product_name %}: ```shell $ git commit -m "add file.psd" $ git push ``` - Deberías ver información de diagnóstico sobre la carga del archivo: + You should see some diagnostic information about your file upload: ```shell > Sending file.psd > 44.74 MB / 81.04 MB 55.21 % 14s > 64.74 MB / 81.04 MB 79.21 % 3s ``` -## Leer más +## Further reading -- "[Colaboración con {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage/)"{% ifversion fpt or ghec %} -- "[Administrar objetos de {% data variables.large_files.product_name_short %} en los archivos de tu repositorio](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)"{% endif %} +- "[Collaboration with {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage/)"{% ifversion fpt or ghec %} +- "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)"{% endif %} diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md index 5a2d1b854a..744ea932b5 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: Instalar Git Large File Storage -intro: 'Para utilizar {% data variables.large_files.product_name_short %}, tendrás que descargar e instalar un programa nuevo, además de Git.' +title: Installing Git Large File Storage +intro: 'In order to use {% data variables.large_files.product_name_short %}, you''ll need to download and install a new program that''s separate from Git.' redirect_from: - - /articles/installing-large-file-storage/ + - /articles/installing-large-file-storage - /articles/installing-git-large-file-storage - /github/managing-large-files/installing-git-large-file-storage - /github/managing-large-files/versioning-large-files/installing-git-large-file-storage @@ -11,107 +11,106 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Instalar el LFS de Git +shortTitle: Install Git LFS --- - {% mac %} -1. Navega hasta [git-lfs.github.com](https://git-lfs.github.com) y haz clic en **Download** (Descargar). También puedes instalar {% data variables.large_files.product_name_short %} utilizando un administrador de paquete: - - Para utilizar [Homebrew](http://brew.sh/), ejecuta `brew install git-lfs`. - - Para utilizar [MacPorts](https://www.macports.org/), ejecuta `port install git-lfs`. +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. Alternatively, you can install {% data variables.large_files.product_name_short %} using a package manager: + - To use [Homebrew](http://brew.sh/), run `brew install git-lfs`. + - To use [MacPorts](https://www.macports.org/), run `port install git-lfs`. - Si instalas {% data variables.large_files.product_name_short %} con Homebrew o MacPorts, dirígete al paso seis. + If you install {% data variables.large_files.product_name_short %} with Homebrew or MacPorts, skip to step six. -2. En tu computadora, ubica y descomprime el archivo descargado. +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. Cambia el directorio de trabajo actual por la carpeta en la que descargaste y descomprimiste el archivo. +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **Nota:** La ruta de archivo que utilices después de `cd` depende de tu sistema operativo, de la versión de Git LFS que descargaste y de dónde guardaste la descarga {% data variables.large_files.product_name_short %}. + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. Para instalar el archivo, ejecuta este comando: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **Nota:** Puede que tengas que usar `sudo ./install.sh` para instalar el archivo. + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. Verifica que la instalación haya sido exitosa: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. Si no ves un mensaje que indique que `git {% data variables.large_files.command_name %} install` fue exitoso, contáctate con {% data variables.contact.contact_support %}. Asegúrate de incluir el nombre de tu sistema operativo. +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endmac %} {% windows %} -1. Navega hasta [git-lfs.github.com](https://git-lfs.github.com) y haz clic en **Download** (Descargar). +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **Sugerencia:** Para obtener más información acerca de otras formas de instalar {% data variables.large_files.product_name_short %} para Windows, consulta esta [Guía de introducción](https://github.com/github/git-lfs#getting-started). + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Windows, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. En tu computadora, ubica el archivo descargado. -3. Haz doble clic en el archivo llamado *git-lfs-windows-1.X.X.exe*, donde 1.X.X se reemplazará con la versión LFS de Git que descargaste. Cuando abras este archivo, Windows ejecutará un asistente de configuración para instalar {% data variables.large_files.product_name_short %}. +2. On your computer, locate the downloaded file. +3. Double click on the file called *git-lfs-windows-1.X.X.exe*, where 1.X.X is replaced with the Git LFS version you downloaded. When you open this file Windows will run a setup wizard to install {% data variables.large_files.product_name_short %}. {% data reusables.command_line.open_the_multi_os_terminal %} -5. Verifica que la instalación haya sido exitosa: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. Si no ves un mensaje que indique que `git {% data variables.large_files.command_name %} install` fue exitoso, contáctate con {% data variables.contact.contact_support %}. Asegúrate de incluir el nombre de tu sistema operativo. +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endwindows %} {% linux %} -1. Navega hasta [git-lfs.github.com](https://git-lfs.github.com) y haz clic en **Download** (Descargar). +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **Sugerencia:** Para obtener más información acerca de otras formas de instalar {% data variables.large_files.product_name_short %} para Linux, consulta esta [Guía de introducción](https://github.com/github/git-lfs#getting-started). + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Linux, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. En tu computadora, ubica y descomprime el archivo descargado. +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. Cambia el directorio de trabajo actual por la carpeta en la que descargaste y descomprimiste el archivo. +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **Nota:** La ruta de archivo que utilices después de `cd` depende de tu sistema operativo, de la versión de Git LFS que descargaste y de dónde guardaste la descarga {% data variables.large_files.product_name_short %}. + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. Para instalar el archivo, ejecuta este comando: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **Nota:** Puede que tengas que usar `sudo ./install.sh` para instalar el archivo. + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. Verifica que la instalación haya sido exitosa: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. Si no ves un mensaje que indique que `git {% data variables.large_files.command_name %} install` fue exitoso, contáctate con {% data variables.contact.contact_support %}. Asegúrate de incluir el nombre de tu sistema operativo. +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endlinux %} -## Leer más +## Further reading -- "[Configurar {% data variables.large_files.product_name_long %}](/articles/configuring-git-large-file-storage)" +- "[Configuring {% data variables.large_files.product_name_long %}](/articles/configuring-git-large-file-storage)" diff --git a/translations/es-ES/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md b/translations/es-ES/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md index b072a17af8..e634289eb4 100644 --- a/translations/es-ES/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md +++ b/translations/es-ES/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md @@ -1,9 +1,9 @@ --- -title: Obtener enlaces permanentes a archivos -intro: 'Cuando ves un archivo en {% data variables.product.product_location %}, puedes presionar la tecla "y" para actualizar la URL y obtener un enlace permanente para la versión exacta del archivo que estás viendo.' +title: Getting permanent links to files +intro: 'When viewing a file on {% data variables.product.product_location %}, you can press the "y" key to update the URL to a permalink to the exact version of the file you see.' redirect_from: - - /articles/getting-a-permanent-link-to-a-file/ - - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url/ + - /articles/getting-a-permanent-link-to-a-file + - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url - /articles/getting-permanent-links-to-files - /github/managing-files-in-a-repository/getting-permanent-links-to-files - /github/managing-files-in-a-repository/managing-files-on-github/getting-permanent-links-to-files @@ -14,45 +14,44 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Enlaces permanentes a los archivos +shortTitle: Permanent links to files --- - {% tip %} -**Sugerencia**: Presiona "?" en cualquier página en {% data variables.product.product_name %} para ver todos los atajos del teclado disponibles. +**Tip**: Press "?" on any page in {% data variables.product.product_name %} to see all available keyboard shortcuts. {% endtip %} -## Vistas del archivo que muestran la versión más reciente en una rama +## File views show the latest version on a branch -Cuando ves un archivo en {% data variables.product.product_location %}, por lo general, accedes a la versión en el encabezado actual de una rama. Por ejemplo: +When viewing a file on {% data variables.product.product_location %}, you usually see the version at the current head of a branch. For example: * [https://github.com/github/codeql/blob/**main**/README.md](https://github.com/github/codeql/blob/main/README.md) -se refiere al repositorio `codeql` de GitHub, y muestra la versión más reciente de la rama `main` del archivo `README.md`. +refers to GitHub's `codeql` repository, and shows the `main` branch's current version of the `README.md` file. -La versión de un archivo en el encabezado de una rama puede cambiar cuando se realizan nuevas confirmaciones, por eso si copias la URL normal, el contenido del archivo puede no ser el mismo cuando alguien lo vea más tarde. +The version of a file at the head of branch can change as new commits are made, so if you were to copy the normal URL, the file contents might not be the same when someone looks at it later. -## Presiona <kbd>y</kbd> para obtener un enlace permanente en archivo en una confirmación específica +## Press <kbd>y</kbd> to permalink to a file in a specific commit -Para encontrar un enlace permanente a la versión específica de un archivo que veas, en vez de utilizar el nombre de la rama en la URL (por ejemplo, la parte de `main` en el ejemplo anterior), coloca una id de confirmación. Esto generará un enlace permanente a la versión exacta del archivo en esa confirmación. Por ejemplo: +For a permanent link to the specific version of a file that you see, instead of using a branch name in the URL (i.e. the `main` part in the example above), put a commit id. This will permanently link to the exact version of the file in that commit. For example: * [https://github.com/github/codeql/blob/**b212af08a6cffbb434f3c8a2795a579e092792fd**/README.md](https://github.com/github/codeql/blob/b212af08a6cffbb434f3c8a2795a579e092792fd/README.md) -reemplaza `main` con la id de confirmación específica y el contenido del archivo no cambiará. +replaces `main` with a specific commit id and the file content will not change. -Buscar de manera manual el SHA de confirmación es muy poco práctico. No obstante, a modo de atajo, puedes escribir <kbd>y</kbd> para actualizar automáticamente la URL para la versión del enlace permanente. Luego puedes copiar la URL sabiendo que todas las personas con quienes la compartas verán exactamente lo mismo que tú viste. +Looking up the commit SHA by hand is inconvenient, however, so as a shortcut you can type <kbd>y</kbd> to automatically update the URL to the permalink version. Then you can copy the URL knowing that anyone you share it with will see exactly what you saw. {% tip %} -**Sugerencia**: Puedes colocar un identificador que se puede resolver para una confirmación en la URL, incluidos los nombres de las ramas, los SHA de confirmación específicos o las etiquetas. +**Tip**: You can put any identifier that can be resolved to a commit in the URL, including branch names, specific commit SHAs, or tags! {% endtip %} -## Crear un enlace permanente a un fragmento de código +## Creating a permanent link to a code snippet -Puedes crear un enlace permanente a una línea específica o a un rango de líneas de código en una versión específica de un archivo o de una solicitud de extracción. Para obtener más información, consulta "[Crear un enlace permanente al fragmento de código](/articles/creating-a-permanent-link-to-a-code-snippet/)". +You can create a permanent link to a specific line or range of lines of code in a specific version of a file or pull request. For more information, see "[Creating a permanent link to a code snippet](/articles/creating-a-permanent-link-to-a-code-snippet/)." -## Leer más +## Further reading -- "[Archivar un repositorio de GitHub](/articles/archiving-a-github-repository)" +- "[Archiving a GitHub repository](/articles/archiving-a-github-repository)" diff --git a/translations/es-ES/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md b/translations/es-ES/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md index 25ae1ed5a1..2aa33de78a 100644 --- a/translations/es-ES/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md +++ b/translations/es-ES/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md @@ -1,9 +1,9 @@ --- -title: Rastrear cambios en un archivo -intro: Puedes rastrear cambios de líneas en un archivo y descubrir la manera en que las partes del archivo fueron evolucionando. +title: Tracking changes in a file +intro: You can trace changes to lines in a file and discover how parts of the file evolved over time. redirect_from: - - /articles/using-git-blame-to-trace-changes-in-a-file/ - - /articles/tracing-changes-in-a-file/ + - /articles/using-git-blame-to-trace-changes-in-a-file + - /articles/tracing-changes-in-a-file - /articles/tracking-changes-in-a-file - /github/managing-files-in-a-repository/tracking-changes-in-a-file - /github/managing-files-in-a-repository/managing-files-on-github/tracking-changes-in-a-file @@ -14,24 +14,25 @@ versions: ghec: '*' topics: - Repositories -shortTitle: Rastrar cambios en los archivos +shortTitle: Track file changes --- +With the blame view, you can view the line-by-line revision history for an entire file, or view the revision history of a single line within a file by clicking {% octicon "versions" aria-label="The prior blame icon" %}. Each time you click {% octicon "versions" aria-label="The prior blame icon" %}, you'll see the previous revision information for that line, including who committed the change and when. -Con la vista de último responsable, puedes ver el historial de revisión línea por línea para todo un archivo o ver el historial de revisión de una única línea dentro de un archivo haciendo clic en {% octicon "versions" aria-label="The prior blame icon" %}. Cada vez que hagas clic en {% octicon "versions" aria-label="The prior blame icon" %}, verás la información de revisión anterior para esa línea, incluido quién y cuándo confirmó el cambio. +![Git blame view](/assets/images/help/repository/git_blame.png) -![Vista de último responsable de Git](/assets/images/help/repository/git_blame.png) +In a file or pull request, you can also use the {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} menu to view Git blame for a selected line or range of lines. -En un archivo o solicitud de extracción, también puedes utilizar el menú {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} para ver el último responsable de Git para una línea o rango de líneas seleccionado. - -![Menú Kebab con opciones para ver el último responsable de Git para una línea seleccionada](/assets/images/help/repository/view-git-blame-specific-line.png) +![Kebab menu with option to view Git blame for a selected line](/assets/images/help/repository/view-git-blame-specific-line.png) {% tip %} -**Sugerencia:** En la línea de comando, también puedes utilizar `git blame` para ver el historial de revisión de líneas dentro de un archivo. Para obtener más información, consulta la documentación de [ `git blame`](https://git-scm.com/docs/git-blame) de Git. +**Tip:** On the command line, you can also use `git blame` to view the revision history of lines within a file. For more information, see [Git's `git blame` documentation](https://git-scm.com/docs/git-blame). {% endtip %} {% data reusables.repositories.navigate-to-repo %} -2. Haz clic para abrir el archivo cuyo historial de líneas quieres ver. -3. En la esquina superior derecha de la vista del archivo, haz clic en **Blame** (Último responsable) para abrir la vista del último responsable. ![Botón Blame (Último responsable)](/assets/images/help/repository/blame-button.png) -4. Para ver versiones anteriores de una línea específica, o el siguiente último responsable, haz clic en {% octicon "versions" aria-label="The prior blame icon" %} hasta que hayas encontrado los cambios que quieres ver. ![Botón Prior blame (Último responsable anterior)](/assets/images/help/repository/prior-blame-button.png) +2. Click to open the file whose line history you want to view. +3. In the upper-right corner of the file view, click **Blame** to open the blame view. +![Blame button](/assets/images/help/repository/blame-button.png) +4. To see earlier revisions of a specific line, or reblame, click {% octicon "versions" aria-label="The prior blame icon" %} until you've found the changes you're interested in viewing. +![Prior blame button](/assets/images/help/repository/prior-blame-button.png) diff --git a/translations/es-ES/content/rest/reference/packages.md b/translations/es-ES/content/rest/reference/packages.md index 72b91cab3b..8af15e78f9 100644 --- a/translations/es-ES/content/rest/reference/packages.md +++ b/translations/es-ES/content/rest/reference/packages.md @@ -19,7 +19,7 @@ To use this API, you must authenticate using a personal access token. If your `package_type` is `npm`, `maven`, `rubygems`, or `nuget`, then your token must also include the `repo` scope since your package inherits permissions from a {% data variables.product.prodname_dotcom %} repository. If your package is in the {% data variables.product.prodname_container_registry %}, then your `package_type` is `container` and your token does not need the `repo` scope to access or manage this `package_type`. `container` packages offer granular permissions separate from a repository. For more information, see "[About permissions for {% data variables.product.prodname_registry %}](/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries)." -If you want to use the {% data variables.product.prodname_registry %} API to access resources in an organization with SSO enabled, then you must enable SSO for your personal access token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)." +If you want to use the {% data variables.product.prodname_registry %} API to access resources in an organization with SSO enabled, then you must enable SSO for your personal access token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} diff --git a/translations/es-ES/data/learning-tracks/README.md b/translations/es-ES/data/learning-tracks/README.md index c28e0df344..8535835ab3 100644 --- a/translations/es-ES/data/learning-tracks/README.md +++ b/translations/es-ES/data/learning-tracks/README.md @@ -6,7 +6,7 @@ Los enfoques de aprendizaje son una recolección de artículos que te ayudan a d El aprender a rastrear datos de un producto se define en dos lugares: -1. A simple array of learning track names is defined in the product guides index page frontmatter. +1. Un arreglo siempre para aprender a rastrear nombres se define en el índice de las guías de la página preliminar de llegada del producto. Por ejemplo, en `content/actions/guides/index.md`: ``` @@ -23,13 +23,13 @@ El aprender a rastrear datos de un producto se define en dos lugares: Por ejemplo, en `data/learning-tracks/actions.yml`, cada uno de los elementos del arreglo `learningTracks` del archivo de contenido se representa con datos adicionales tales como `title`, `description` y un arreglo de enlaces de `guides`. - One learning track in this YAML **per version** must be designated as a "featured" learning track via `featured_track: true`, which will set it to appear at the top of the product guides page. Las pruebas fallaràn si falta esta propiedad. + Una pista de aprendizaje en este YAML **por versión** se debe designar como una pista de aprendizaje "destacada" a través de `featured_track: true`, la cual lo configurará para mostrarse en la parte superior de la página de guías del producto. Las pruebas fallaràn si falta esta propiedad. La propiedad `featured_track` puede ser un valor booleano simple (por ejemplo, `featured_track: true`) o puede ser una secuencia que incluya declaraciones de versión (por ejemplo, `featured_track: '{% ifversion fpt %}true{% else %}false{% endif %}'`). Si utilizas versionamiento, tendrás `featured_track`s múltiples por archivo YML, pero asegúrate de que solo uno se interprete en cada versión compatible actual. Las pruebas fallarán si hay más o menos de un enlace destacado para cada versión. ## Control de versiones -El versionamiento para aprender pistas se procesa en l ahora interpretada de la página. El código vive en [`lib/learning-tracks.js`](lib/learning-tracks.js), al cual llama `page.render()`. The processed learning tracks are then rendered by `components/guides`. +El versionamiento para aprender pistas se procesa en l ahora interpretada de la página. El código vive en [`lib/learning-tracks.js`](lib/learning-tracks.js), al cual llama `page.render()`. Entonces, `components/guides` interpreta los rastros de aprendizaje procesados. Las condicionales líquidas **no** deben utilizarse para versionar en el archivo YAML para las guías. Solo las guías de pistas de aprendizaje que aplican a la versión actual se interpretarán automáticamente. Si no hay pistas con guías que pertenezcan a la versión actual, la sección de pistas de aprendizaje no se interpretará en lo absoluto. diff --git a/translations/es-ES/data/release-notes/enterprise-server/2-21/17.yml b/translations/es-ES/data/release-notes/enterprise-server/2-21/17.yml index e6507dbffe..6cceb5570d 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/2-21/17.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/2-21/17.yml @@ -18,8 +18,8 @@ sections: - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. - Las alertas de seguridad no se reportan cuando se sube a un repositorio en la línea de comandos. - | - Log rotation may fail to signal services to transition to new log files, leading to older log files continuing to be used, and eventual root disk space exhaustion. - To remedy and/or prevent this issue, run the following commands in the [administrative shell](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), or contact [GitHub Enterprise Support](https://support.github.com/contact) for assistance: + La rotación de bitácoras podría fallar en señalar los servicios para hacer la transición a archivos de bitácora nuevos, lo cual ocasiona que se utilicen los archivos de bitácora antiguos y, periódicamente, un agotamiento del espacio en el disco raíz. + Para remediar o prevenir este problema, ejecuta los siguientes comandos en el [shell administrativo](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), o contacta al [Soporte Empresarial de GitHub](https://support.github.com/contact) para obtener ayuda: ``` printf "PATH=/usr/local/sbin:/usr/local/bin:/usr/local/share/enterprise:/usr/sbin:/usr/bin:/sbin:/bin\n29,59 * * * * root /usr/sbin/logrotate /etc/logrotate.conf\n" | sudo sponge /etc/cron.d/logrotate diff --git a/translations/es-ES/data/release-notes/enterprise-server/2-22/9.yml b/translations/es-ES/data/release-notes/enterprise-server/2-22/9.yml index 804d717530..90a9277283 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/2-22/9.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/2-22/9.yml @@ -24,8 +24,8 @@ sections: - Las propuestas no pudieron cerrarse si contenían un permalink a un blob en el mismo repositorio en donde la ruta de archvio era más grande a 255 caracteres. - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. - | - Log rotation may fail to signal services to transition to new log files, leading to older log files continuing to be used, and eventual root disk space exhaustion. - To remedy and/or prevent this issue, run the following commands in the [administrative shell](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), or contact [GitHub Enterprise Support](https://support.github.com/contact) for assistance: + La rotación de bitácoras podría fallar en señalar los servicios para hacer la transición a archivos de bitácora nuevos, lo cual ocasiona que se utilicen los archivos de bitácora antiguos y, periódicamente, un agotamiento del espacio en el disco raíz. + Para remediar o prevenir este problema, ejecuta los siguientes comandos en el [shell administrativo](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), o contacta al [Soporte Empresarial de GitHub](https://support.github.com/contact) para obtener ayuda: ``` printf "PATH=/usr/local/sbin:/usr/local/bin:/usr/local/share/enterprise:/usr/sbin:/usr/bin:/sbin:/bin\n29,59 * * * * root /usr/sbin/logrotate /etc/logrotate.conf\n" | sudo sponge /etc/cron.d/logrotate diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-0/22.yml b/translations/es-ES/data/release-notes/enterprise-server/3-0/22.yml new file mode 100644 index 0000000000..6bfb77cd5d --- /dev/null +++ b/translations/es-ES/data/release-notes/enterprise-server/3-0/22.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - En una instalación nueva de {% data variables.product.prodname_ghe_server %} que no tenga ningún usuario, cualquier atacante podría crear el primer usuario administrativo. + - Las reglas de cortafuegos personalizadas se eliminan durante el proceso de actualización. + - Los archivos rastreados del LFS de Git que se [cargaron mediante la interface web](https://github.com/blog/2105-upload-files-to-your-repositories) se agregaron incorrecta y directamente al repositorio. + - Las propuestas no pudieron cerrarse si contenían un permalink a un blob en el mismo repositorio en donde la ruta de archvio del blob era más grande a 255 caracteres. + - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. + - Cuando un nodo de réplica está fuera de línea en una configuración de disponibilidad alta, {% data variables.product.product_name %} aún podría enrutar las solicitudes a {% data variables.product.prodname_pages %} para el nodo fuera de línea, reduciendo la disponibilidad de {% data variables.product.prodname_pages %} para los usuarios. + - Los límites de recursos que son específicos para procesar ganchos de pre-recepción podrían ocasionar que fallen algunos ganchos de pre-recepción. diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-0/3.yml b/translations/es-ES/data/release-notes/enterprise-server/3-0/3.yml index d697530387..7205c6b3d3 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-0/3.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-0/3.yml @@ -32,8 +32,8 @@ sections: - Las compilaciones antiguas de las páginas no se limpiaron, lo cual pudo haber llenado el disco del usuario (`/data/user/`). - Cuando borras una rama después de fusionar una solicitud de cambios, se mostrará un mensaje de error aunque el borrado de la rama sea exitoso. - | - Log rotation may fail to signal services to transition to new log files, leading to older log files continuing to be used, and eventual root disk space exhaustion. - To remedy and/or prevent this issue, run the following commands in the [administrative shell](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), or contact [GitHub Enterprise Support](https://support.github.com/) for assistance: + La rotación de bitácoras podría fallar en señalar los servicios para hacer la transición a archivos de bitácora nuevos, lo cual ocasiona que se utilicen los archivos de bitácora antiguos y, periódicamente, un agotamiento del espacio en el disco raíz. + Para remediar o prevenir este problema, ejecuta los siguientes comandos en el [shell administrativo](https://docs.github.com/en/enterprise-server/admin/configuration/accessing-the-administrative-shell-ssh) (SSH), o contacta al [Soporte Empresarial de GitHub](https://support.github.com/)para obtener ayuda: ``` printf "PATH=/usr/local/sbin:/usr/local/bin:/usr/local/share/enterprise:/usr/sbin:/usr/bin:/sbin:/bin\n29,59 * * * * root /usr/sbin/logrotate /etc/logrotate.conf\n" | sudo sponge /etc/cron.d/logrotate diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-1/0.yml b/translations/es-ES/data/release-notes/enterprise-server/3-1/0.yml index 8ad038ea19..f37b8ac998 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-1/0.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-1/0.yml @@ -25,7 +25,7 @@ sections: - "Puedes personalizar los tipos de notificaciones que quieres recibir de repositorios individuales. Para obtener más información, consulta la sección \"[Configurar las notificaciones](/enterprise-server@3.1/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)\".\n" - heading: 'Filtrado de GitHub Mobile' notes: - - "El filtrado con [{% data variables.product.prodname_mobile %}](https://github.com/mobile) te permite buscar y encontrar propuestas, solicitudes de cambio y debates desde tu dispositivo. Los metadatos nuevos para los elementos de lista de las propuestas y solicitudes de cambio te permiten filtrar por asignados, estado de verificación, estados de revisión y conteo de comentarios.\n\n{% data variables.product.prodname_mobile %} beta está disponible para {% data variables.product.prodname_ghe_server %}. Inicia sesión con nuestras apps para [Android](https://play.google.com/store/apps/details?id=com.github.android) y [iOS](https://apps.apple.com/app/github/id1477376905) para clasificar las notificaciones y administrar las propuestas y solicitudes de cambio al momento. Los administradores pueden inhabilitar la compatibilidad móvil para sus empresas utilizando la consola de administración o ejecutando `ghe-config app.mobile.enabled false`. Para obtener más información, consulta la sección \"[GitHub móvil](/github/getting-started-with-github/using-github/github-mobile)\".\n" + - "El filtrado con [{% data variables.product.prodname_mobile %}](https://github.com/mobile) te permite buscar y encontrar propuestas, solicitudes de cambio y debates desde tu dispositivo. Los metadatos nuevos para los elementos de lista de las propuestas y solicitudes de cambio te permiten filtrar por asignados, estado de verificación, estados de revisión y conteo de comentarios.\n\n{% data variables.product.prodname_mobile %} beta está disponible para {% data variables.product.prodname_ghe_server %}. Inicia sesión con nuestras apps para [Android](https://play.google.com/store/apps/details?id=com.github.android) y [iOS](https://apps.apple.com/app/github/id1477376905) para clasificar las notificaciones y administrar las propuestas y solicitudes de cambio al momento. Los administradores pueden inhabilitar la compatibilidad móvil para sus empresas utilizando la consola de administración o ejecutando `ghe-config app.mobile.enabled false`. Para obtener más información, consulta la sección \"[GitHub Móvil](/get-started/using-github/github-mobile)\".\n" changes: - heading: 'Cambios en la administración' notes: diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-1/14.yml b/translations/es-ES/data/release-notes/enterprise-server/3-1/14.yml new file mode 100644 index 0000000000..77c1c368bc --- /dev/null +++ b/translations/es-ES/data/release-notes/enterprise-server/3-1/14.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - El registor de npm del {% data variables.product.prodname_registry %} ya no regresa un valor de tiempo en las respuestas de metadatos. Esto se hizo para permitir mejoras de rendimiento sustanciales. Seguimos teniendo todos los datos necesarios para devolver un valor de tiempo como parte de la respuesta de metadatos y terminaremos de devolver este valor ene l futuro una vez que hayamos resuelto los problemas de rendimiento existentes. + - En una instalación nueva de {% data variables.product.prodname_ghe_server %} que no tenga ningún usuario, cualquier atacante podría crear el primer usuario administrativo. + - Las reglas de cortafuegos personalizadas se eliminan durante el proceso de actualización. + - Los archivos rastreados del LFS de Git que se [cargaron mediante la interface web](https://github.com/blog/2105-upload-files-to-your-repositories) se agregaron incorrecta y directamente al repositorio. + - Las propuestas no pudieron cerrarse si contenían un permalink a un blob en el mismo repositorio en donde la ruta de archvio del blob era más grande a 255 caracteres. + - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. + - Si se habilitan las {% data variables.product.prodname_actions %} para {% data variables.product.prodname_ghe_server %}, el desmontar un nodo de réplica con `ghe-repl-teardown` tendrá éxito, pero podría devolver un `ERROR:Running migrations`. + - Los límites de recursos que son específicos para procesar ganchos de pre-recepción podrían ocasionar que fallen algunos ganchos de pre-recepción. diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-2/6.yml b/translations/es-ES/data/release-notes/enterprise-server/3-2/6.yml new file mode 100644 index 0000000000..287e5e86f6 --- /dev/null +++ b/translations/es-ES/data/release-notes/enterprise-server/3-2/6.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - En una instalación nueva de {% data variables.product.prodname_ghe_server %} que no tenga ningún usuario, cualquier atacante podría crear el primer usuario administrativo. + - Las reglas de cortafuegos personalizadas se eliminan durante el proceso de actualización. + - Los archivos rastreados del LFS de Git que se [cargaron mediante la interface web](https://github.com/blog/2105-upload-files-to-your-repositories) se agregaron incorrecta y directamente al repositorio. + - Las propuestas no pudieron cerrarse si contenían un permalink a un blob en el mismo repositorio en donde la ruta de archvio del blob era más grande a 255 caracteres. + - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. + - El registor de npm del {% data variables.product.prodname_registry %} ya no regresa un valor de tiempo en las respuestas de metadatos. Esto se hizo para permitir mejoras de rendimiento sustanciales. Seguimos teniendo todos los datos necesarios para devolver un valor de tiempo como parte de la respuesta de metadatos y terminaremos de devolver este valor ene l futuro una vez que hayamos resuelto los problemas de rendimiento existentes. + - Los límites de recursos que son específicos para procesar ganchos de pre-recepción podrían ocasionar que fallen algunos ganchos de pre-recepción. diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-3/0.yml b/translations/es-ES/data/release-notes/enterprise-server/3-3/0.yml index 99bf26343c..9ff8cee7e2 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-3/0.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-3/0.yml @@ -52,7 +52,7 @@ sections: - 'You can now create "composite actions" which combine multiple workflow steps into one action, and includes the ability to reference other actions. This makes it easier to reduce duplication in workflows. Previously, an action could only use scripts in its YAML definition. For more information, see "[Creating a composite action](/actions/creating-actions/creating-a-composite-action)."' - 'Managing self-hosted runners at the enterprise level no longer requires using personal access tokens with the `admin:enterprise` scope. You can instead use the new `manage_runners:enterprise` scope to restrict the permissions on your tokens. Tokens with this scope can authenticate to [many REST API endpoints](/rest/reference/enterprise-admin#list-self-hosted-runner-groups-for-an-enterprise) to manage your enterprise''s self-hosted runners.' - "The audit log now includes additional events for {% data variables.product.prodname_actions %}. Audit log entries are now recorded for the following events:\n\n* A self-hosted runner is registered or removed.\n* A self-hosted runner is added to a runner group, or removed from a runner group.\n* A runner group is created or removed.\n* A workflow run is created or completed.\n* A workflow job is prepared. Importantly, this log includes the list of secrets that were provided to the runner.\n\nFor more information, see \"[Security hardening for {% data variables.product.prodname_actions %}](/actions/security-guides/security-hardening-for-github-actions#auditing-github-actions-events).\"\n" - - '{% data variables.product.prodname_ghe_server %} 3.3 contains performance improvements for job concurrency with {% data variables.product.prodname_actions %}. For more information about the new performance targets for a range of CPU and memory configurations, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server#review-hardware-considerations)."' + - '{% data variables.product.prodname_ghe_server %} 3.3 contiene mejoras de rendimiento para la concurrencia de los jobs con {% data variables.product.prodname_actions %}. Para obtener más información acerca de las metas de rendimiento nuevas conforme a los rangos de configuraciones de CPU y memoria, consulta la sección "[Iniciar con las {% data variables.product.prodname_actions %} para {% data variables.product.prodname_ghe_server %}](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server#review-hardware-considerations)".' - 'To mitigate insider man in the middle attacks when using actions resolved through {% data variables.product.prodname_github_connect %} to {% data variables.product.prodname_dotcom_the_website %} from {% data variables.product.prodname_ghe_server %}, the actions namespace (`owner/name`) is retired on use. Retiring the namespace prevents that namespace from being created on your {% data variables.product.prodname_ghe_server %} instance, and ensures all workflows referencing the action will download it from {% data variables.product.prodname_dotcom_the_website %}.' - heading: 'Cambios a los GitHub packages' notes: diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-3/1.yml b/translations/es-ES/data/release-notes/enterprise-server/3-3/1.yml new file mode 100644 index 0000000000..435f2d86a7 --- /dev/null +++ b/translations/es-ES/data/release-notes/enterprise-server/3-3/1.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - After upgrading to {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_actions %} may fail to start automatically. To resolve this issue, connect to the appliance via SSH and run the `ghe-actions-start` command. + - On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user. + - Las reglas de cortafuegos personalizadas se eliminan durante el proceso de actualización. + - Los archivos rastreados del LFS de Git que se [cargaron mediante la interface web](https://github.com/blog/2105-upload-files-to-your-repositories) se agregaron incorrecta y directamente al repositorio. + - Las propuestas no pudieron cerrarse si contenían un permalink a un blob en el mismo repositorio en donde la ruta de archvio del blob era más grande a 255 caracteres. + - Cuando se habilita "Los usuarios pueden buscar en GitHub.com" con GitHub Connect, las propuestas en los repositorios privados e internos no se incluirán en los resultados de búsqueda de GitHub.com. + - El registor de npm del {% data variables.product.prodname_registry %} ya no regresa un valor de tiempo en las respuestas de metadatos. Esto se hizo para permitir mejoras de rendimiento sustanciales. Seguimos teniendo todos los datos necesarios para devolver un valor de tiempo como parte de la respuesta de metadatos y terminaremos de devolver este valor ene l futuro una vez que hayamos resuelto los problemas de rendimiento existentes. + - Los límites de recursos que son específicos para procesar ganchos de pre-recepción podrían ocasionar que fallen algunos ganchos de pre-recepción. diff --git a/translations/es-ES/data/reusables/actions/about-artifact-log-retention.md b/translations/es-ES/data/reusables/actions/about-artifact-log-retention.md index 1942045b68..42d816b4f0 100644 --- a/translations/es-ES/data/reusables/actions/about-artifact-log-retention.md +++ b/translations/es-ES/data/reusables/actions/about-artifact-log-retention.md @@ -4,6 +4,6 @@ Predeterminadamente, los artefactos y archivos de bitácora que generan los fluj - Para los repositorios públicos: puedes cambiar este periodo de retención a cualquier cantidad entre 1 o 90 días. {%- endif %} -- For private{% ifversion ghec or ghes or ghae %} and internal{% endif %} repositories: you can change this retention period to anywhere between 1 day or 400 days. +- En el caso de los repositorios privados {% ifversion ghec or ghes or ghae %} e internos{% endif %}: puedes cambiar este periodo de retención a cualquier valor entre 1 y 400 días. Cuando personalizas el periodo de retención, esto aplicará solamente a los artefactos y archivos de bitácora nuevos, y no aplicará retroactivamente a los objetos existentes. Para los repositorios y organizaciones administrados, el periodo de retención máximo no puede exceder el límite que configuró la organización o empresa administradora. diff --git a/translations/es-ES/data/reusables/actions/actions-audit-events-workflow.md b/translations/es-ES/data/reusables/actions/actions-audit-events-workflow.md index 2006e4fe69..f617c6c9fa 100644 --- a/translations/es-ES/data/reusables/actions/actions-audit-events-workflow.md +++ b/translations/es-ES/data/reusables/actions/actions-audit-events-workflow.md @@ -1,12 +1,12 @@ -| Acción | Descripción | -| ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +| Acción | Descripción | +| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |{% ifversion fpt or ghes > 3.1 or ghae or ghec %} | `cancel_workflow_run` | Se activa cuando se cancela una ejecución de flujo de trabajo. Para obtener más información, consulta la sección "[Cancelar un flujo de trabajo](/actions/managing-workflow-runs/canceling-a-workflow)".{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} | `completed_workflow_run` | Se activa cuando el estado de un flujo de trabajo cambia a `completed`. Solo se puede visualizar utilizando la API de REST; no se puede visualizar en la IU ni en la exportación de JSON/CSV. Para obtener más información, consulta la sección "[Visualizar el historial de ejecuciones de un flujo de trabajo](/actions/managing-workflow-runs/viewing-workflow-run-history)".{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} | `created_workflow_run` | Se activa cuando se crea una ejecución de flujo de trabajo. Solo se puede visualizar utilizando la API de REST; no se puede visualizar en la IU ni en la exportación de JSON/CSV. Para obtener más información, consulta la sección "[Crear un flujo de trabajo de ejemplo](/actions/learn-github-actions/introduction-to-github-actions#create-an-example-workflow)".{% endif %}{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -| `delete_workflow_run` | Se activa cuando se borra una ejecución de flujo de trabajo. Para obtener más información, consulta la sección "[Borrar una ejecución de flujo de trabajo](/actions/managing-workflow-runs/deleting-a-workflow-run)". | -| `disable_workflow` | Se activa cuando se inhabilita un flujo de trabajo. | -| `enable_workflow` | Se activa cuando se habilita un flujo de trabajo después de que `disable_workflow` lo inhabilitó previamente. | +| `delete_workflow_run` | Se activa cuando se borra una ejecución de flujo de trabajo. Para obtener más información, consulta la sección "[Borrar una ejecución de flujo de trabajo](/actions/managing-workflow-runs/deleting-a-workflow-run)". | +| `disable_workflow` | Se activa cuando se inhabilita un flujo de trabajo. | +| `enable_workflow` | Se activa cuando se habilita un flujo de trabajo después de que `disable_workflow` lo inhabilitó previamente. | | `rerun_workflow_run` | Se activa cuando se vuelve a ejecutar una ejecución de flujo de trabajo. Para obtener más información, consulta la sección "[Volver a ejecutar un flujo de trabajo](/actions/managing-workflow-runs/re-running-a-workflow)".{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} -| `prepared_workflow_job` | Se activa cuando se inicia un job de flujo de trabajo. Incluye la lista de secretos que se proporcionaron al job. Can only be viewed using the REST API. It is not visible in the the {% data variables.product.prodname_dotcom %} web interface or included in the JSON/CSV export. Para obtener más información, consulta la sección "[Eventos que activan flujos de trabajo](/actions/reference/events-that-trigger-workflows)".{% endif %}{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -| `approve_workflow_job` | Se activa cuando se aprueba el job de un flujo de trabajo. Para obtener más información, consulta la sección "[Revisar los despliegues](/actions/managing-workflow-runs/reviewing-deployments)". | +| `prepared_workflow_job` | Se activa cuando se inicia un job de flujo de trabajo. Incluye la lista de secretos que se proporcionaron al job. Solo puede verse utilizando la API de REST. No es visible en la interfaz web de {% data variables.product.prodname_dotcom %} ni se incluye en la exportación de JSON/CSV. Para obtener más información, consulta la sección "[Eventos que activan flujos de trabajo](/actions/reference/events-that-trigger-workflows)".{% endif %}{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +| `approve_workflow_job` | Se activa cuando se aprueba el job de un flujo de trabajo. Para obtener más información, consulta la sección "[Revisar los despliegues](/actions/managing-workflow-runs/reviewing-deployments)". | | `reject_workflow_job` | Se activa cuando se rechaza el job de un flujo de trabajo. Para obtener más información, consulta la sección "[Revisar los despliegues](/actions/managing-workflow-runs/reviewing-deployments)".{% endif %} diff --git a/translations/es-ES/data/reusables/actions/ae-self-hosted-runners-notice.md b/translations/es-ES/data/reusables/actions/ae-self-hosted-runners-notice.md index 09b656c396..6bf02e8c14 100644 --- a/translations/es-ES/data/reusables/actions/ae-self-hosted-runners-notice.md +++ b/translations/es-ES/data/reusables/actions/ae-self-hosted-runners-notice.md @@ -2,7 +2,7 @@ {% warning %} -**Warning:** Self-hosted runners are long-lived, and any compromise to the host machine could leak secrets or credentials or enable other attacks. Para obtener más información sobre los riesgos de utilizar ejecutores auto-hospedados, consulta la sección "[Fortalecimiento de seguridad para las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/security-hardening-for-github-actions#potential-impact-of-a-compromised-runner)". For more information about the management of access to {% data variables.product.prodname_actions %} for {% data variables.product.product_location %}, see "[Enforcing {% data variables.product.prodname_actions %} policies for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-github-actions-policies-for-your-enterprise)." +**Advertencia:** Los ejecutores auto-hospedados son de vida larga y cualquier situación que ponga en riesgo a la máquina que los hospeda podría filtrar secretos o credenciales o habilitar otros ataques. Para obtener más información sobre los riesgos de utilizar ejecutores auto-hospedados, consulta la sección "[Fortalecimiento de seguridad para las {% data variables.product.prodname_actions %}](/actions/learn-github-actions/security-hardening-for-github-actions#potential-impact-of-a-compromised-runner)". Para obtener más información sobre la administración del acceso a {% data variables.product.prodname_actions %} para {% data variables.product.product_location %}, consulta la sección "[Requerir políticas de {% data variables.product.prodname_actions %} para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-github-actions-policies-for-your-enterprise)". {% endwarning %} diff --git a/translations/es-ES/data/reusables/actions/hardware-requirements-3.2.md b/translations/es-ES/data/reusables/actions/hardware-requirements-3.2.md new file mode 100644 index 0000000000..a11676340d --- /dev/null +++ b/translations/es-ES/data/reusables/actions/hardware-requirements-3.2.md @@ -0,0 +1,5 @@ +| vCPU | Memoria | Simultaneidad máxima | +|:---- |:------- |:----------------------- | +| 32 | 128 GB | 1000 puestos de trabajo | +| 64 | 256 GB | 1300 puestos de trabajo | +| 96 | 384 GB | 2200 puestos de trabajo | \ No newline at end of file diff --git a/translations/es-ES/data/reusables/actions/hardware-requirements-after.md b/translations/es-ES/data/reusables/actions/hardware-requirements-after.md new file mode 100644 index 0000000000..9394983637 --- /dev/null +++ b/translations/es-ES/data/reusables/actions/hardware-requirements-after.md @@ -0,0 +1,7 @@ +| vCPU | Memoria | Simultaneidad máxima | +|:---- |:------- |:----------------------- | +| 8 | 64 GB | 300 puestos de trabajo | +| 16 | 160 GB | 700 puestos de trabajo | +| 32 | 128 GB | 1300 puestos de trabajo | +| 64 | 256 GB | 2000 puestos de trabajo | +| 96 | 384 GB | 4000 puestos de trabajo | \ No newline at end of file diff --git a/translations/es-ES/data/reusables/actions/hardware-requirements-before.md b/translations/es-ES/data/reusables/actions/hardware-requirements-before.md new file mode 100644 index 0000000000..0552e72f49 --- /dev/null +++ b/translations/es-ES/data/reusables/actions/hardware-requirements-before.md @@ -0,0 +1,6 @@ +| vCPU | Memoria | Rendimiento máximo del job | +|:---- |:------- |:-------------------------- | +| 4 | 32 GB | Demo o pruebas leves | +| 8 | 64 GB | 25 puestos de trabajo | +| 16 | 160 GB | 35 puestos de trabajo | +| 32 | 256 GB | 100 puestos de trabajo | \ No newline at end of file diff --git a/translations/es-ES/data/reusables/advanced-security/license-overview.md b/translations/es-ES/data/reusables/advanced-security/license-overview.md index 2812d4cc53..642023598d 100644 --- a/translations/es-ES/data/reusables/advanced-security/license-overview.md +++ b/translations/es-ES/data/reusables/advanced-security/license-overview.md @@ -1,12 +1,12 @@ -Cada licencia de {% data variables.product.prodname_GH_advanced_security %} especifica una cantidad máxima de cuentas o de plazas que pueden utilizar estas características. Cada confirmante activo en por lo menos un repositorio con la característica habilitada utilizará una plaza. A committer is considered active if one of their commits has been pushed to the repository within the last 90 days, regardless of when it was originally authored. +Cada licencia de {% data variables.product.prodname_GH_advanced_security %} especifica una cantidad máxima de cuentas o de plazas que pueden utilizar estas características. Cada confirmante activo en por lo menos un repositorio con la característica habilitada utilizará una plaza. Un confirmante se considera como activo si una de sus confirmaciones se subió al repositorio dentro de los últimos 90 días, sin importar de cuándo se escribió originalmente. {% note %} -**Note:** Active committers are calculated using both the commit author information and the timestamp for when the code was pushed to {% data variables.product.product_name %}. +**Nota:** Los confirmantes activos se calculan utilizando la información del autor de las confirmaciones y la marca de tiempo de cuando el código se subió a {% data variables.product.product_name %}. -- When a user pushes code to {% data variables.product.prodname_dotcom %}, every user who authored code in that push counts towards {% data variables.product.prodname_GH_advanced_security %} seats, even if the code is not new to {% data variables.product.prodname_dotcom %}. +- Cuando un usuario sube código a {% data variables.product.prodname_dotcom %}, cada usuario que fue el autor de dicho código en esa subida contará como una plaza de {% data variables.product.prodname_GH_advanced_security %}, incluso si el código no es nuevo en {% data variables.product.prodname_dotcom %}. -- Users should always create branches from a recent base, or rebase them before pushing. This will ensure that users who have not committed in the last 90 days do not take up {% data variables.product.prodname_GH_advanced_security %} seats. +- Los usuarios siempre deben crear ramas desde una base reciente, o rebasarlas antes de subirlas. Esto garantizará que los usuarios que no hayan hecho confirmaciones en los últimos 90 días no utilicen plazas de {% data variables.product.prodname_GH_advanced_security %}. {% endnote %} diff --git a/translations/es-ES/data/reusables/code-scanning/codeql-languages-bullets.md b/translations/es-ES/data/reusables/code-scanning/codeql-languages-bullets.md index ca9fe8da51..8aebc51c65 100644 --- a/translations/es-ES/data/reusables/code-scanning/codeql-languages-bullets.md +++ b/translations/es-ES/data/reusables/code-scanning/codeql-languages-bullets.md @@ -9,9 +9,9 @@ {% note %} -**Note**: {% data variables.product.prodname_codeql %} analysis for Ruby is currently in beta. During the beta, analysis of Ruby will be less comprehensive than {% data variables.product.prodname_codeql %} analysis of other languages. +**Nota**: El análisis de {% data variables.product.prodname_codeql %} para Ruby se encuentra actualmente en beta. Durante el beta, el análisis para Ruby será menos exhaustivo que el análisis de {% data variables.product.prodname_codeql %} para otros lenguajes. {% endnote %} -For more information, see the documentation on the {% data variables.product.prodname_codeql %} website: "[Supported languages and frameworks](https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/)." +Para obtener más información, consulta la documentación del sitio web de {% data variables.product.prodname_codeql %}: "[Lenguajes y marcos de trabajo compatibles](https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/)". {% endif %} diff --git a/translations/es-ES/data/reusables/enterprise-accounts/team-sync-override.md b/translations/es-ES/data/reusables/enterprise-accounts/team-sync-override.md index d4e1b8f8ce..ef695ca81f 100644 --- a/translations/es-ES/data/reusables/enterprise-accounts/team-sync-override.md +++ b/translations/es-ES/data/reusables/enterprise-accounts/team-sync-override.md @@ -1,3 +1,3 @@ {% ifversion ghec %} -Si tu organización pertenece a una cuenta empresarial, el habilitar la sincronización de equipo o el aprovisionamiento de SCIM para la cuenta empresarial anulará tus ajustes de sincronización de equipos a nivel organizacional. For more information, see "[Managing team synchronization for organizations in your enterprise account](/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)" and "[Configuring SCIM provisioning for Enterprise Managed Users](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/configuring-scim-provisioning-for-enterprise-managed-users)." +Si tu organización pertenece a una cuenta empresarial, el habilitar la sincronización de equipo o el aprovisionamiento de SCIM para la cuenta empresarial anulará tus ajustes de sincronización de equipos a nivel organizacional. Para obtener más información, consulta las secciones "[Administrar la sincronización de equipos para las organizaciones de tu cuenta empresarial](/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)" y "[Configurar el aprovisionamiento de SCIM para los Usuarios Administrados Empresariales](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/configuring-scim-provisioning-for-enterprise-managed-users)". {% endif %} diff --git a/translations/es-ES/data/reusables/enterprise/upgrade-ghes-for-actions.md b/translations/es-ES/data/reusables/enterprise/upgrade-ghes-for-actions.md index 6833ff6dc0..39022493db 100644 --- a/translations/es-ES/data/reusables/enterprise/upgrade-ghes-for-actions.md +++ b/translations/es-ES/data/reusables/enterprise/upgrade-ghes-for-actions.md @@ -1,3 +1,3 @@ {% ifversion ghes < 3.3 %} -{% data variables.product.prodname_actions %} is available in {% data variables.product.prodname_ghe_server %} 3.0 or higher. If you're using an earlier version of {% data variables.product.prodname_ghe_server %}, you'll have to upgrade to use {% data variables.product.prodname_actions %}. For more information about upgrading your {% data variables.product.prodname_ghe_server %} instance, see "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)." +{% data variables.product.prodname_actions %} is available in {% data variables.product.prodname_ghe_server %} 3.0 or higher. If you're using an earlier version of {% data variables.product.prodname_ghe_server %}, you'll have to upgrade to use {% data variables.product.prodname_actions %}. Para obtener más información sobre cómo mejorar tu instancia de {% data variables.product.prodname_ghe_server %}, consulta la sección "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)". {% endif %} diff --git a/translations/es-ES/data/reusables/enterprise_installation/hardware-rec-table.md b/translations/es-ES/data/reusables/enterprise_installation/hardware-rec-table.md index 0d5b348f97..edf53a3f46 100644 --- a/translations/es-ES/data/reusables/enterprise_installation/hardware-rec-table.md +++ b/translations/es-ES/data/reusables/enterprise_installation/hardware-rec-table.md @@ -22,7 +22,27 @@ {% ifversion ghes %} -Si planeas habilitar las {% data variables.product.prodname_actions %} para los usuarios de tu instancia, revisa los requisitos de hardware, almacenamiento externo y ejecutores que se encuentran en "[Iniciar con {% data variables.product.prodname_actions %} para {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server)". +Si planeas habilitar las {% data variables.product.prodname_actions %} para los usuarios de tu instancia, se necesitarán más recursos. + +{%- ifversion ghes < 3.2 %} + +{% data reusables.actions.hardware-requirements-before %} + +{%- endif %} + +{%- ifversion ghes = 3.2 %} + +{% data reusables.actions.hardware-requirements-3.2 %} + +{%- endif %} + +{%- ifversion ghes > 3.2 %} + +{% data reusables.actions.hardware-requirements-after %} + +{%- endif %} + +Para obtener más información sobre estos requisitos, consulta la sección "[Iniciar con las {% 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#review-hardware-considerations)". {% endif %} diff --git a/translations/es-ES/data/reusables/enterprise_management_console/advanced-security-license.md b/translations/es-ES/data/reusables/enterprise_management_console/advanced-security-license.md index 89c87fd54b..1a6d244543 100644 --- a/translations/es-ES/data/reusables/enterprise_management_console/advanced-security-license.md +++ b/translations/es-ES/data/reusables/enterprise_management_console/advanced-security-license.md @@ -1 +1 @@ -Si no puedes ver la **{% data variables.product.prodname_advanced_security %}** en la barra lateral, esto significa que tu licencia no incluye soporte para las características de {% data variables.product.prodname_advanced_security %}, incluyendo el {% data variables.product.prodname_code_scanning %} y el {% data variables.product.prodname_secret_scanning %}. La licencia de {% data variables.product.prodname_advanced_security %} te permite acceder, a ti y a tus usuarios, a las características que te permiten añadir seguridad a tus repositorios ya tu código. For more information, see "[About GitHub Advanced Security](/github/getting-started-with-github/about-github-advanced-security)" or contact {% data variables.contact.contact_enterprise_sales %}. +Si no puedes ver la **{% data variables.product.prodname_advanced_security %}** en la barra lateral, esto significa que tu licencia no incluye soporte para las características de {% data variables.product.prodname_advanced_security %}, incluyendo el {% data variables.product.prodname_code_scanning %} y el {% data variables.product.prodname_secret_scanning %}. La licencia de {% data variables.product.prodname_advanced_security %} te permite acceder, a ti y a tus usuarios, a las características que te permiten añadir seguridad a tus repositorios ya tu código. Para obtener más información, consulta la sección "[Acerca de GitHub Advanced Security](/github/getting-started-with-github/about-github-advanced-security)" o contacta a {% data variables.contact.contact_enterprise_sales %}. diff --git a/translations/es-ES/data/reusables/gated-features/environments.md b/translations/es-ES/data/reusables/gated-features/environments.md index 971ac29cd5..09f7a978ab 100644 --- a/translations/es-ES/data/reusables/gated-features/environments.md +++ b/translations/es-ES/data/reusables/gated-features/environments.md @@ -1 +1 @@ -Los ambientes, las reglas de protección de ambiente y los secretos de ambiente se encuentran disponibles en los repositorios **públicos** para todos los productos. For access to environments in **private** repositories, you must use {% data variables.product.prodname_enterprise %}. {% data reusables.gated-features.more-info %} +Los ambientes, las reglas de protección de ambiente y los secretos de ambiente se encuentran disponibles en los repositorios **públicos** para todos los productos. Para tener acceso a los ambientes en los repositorios **privados**, debes utilizar {% data variables.product.prodname_enterprise %}. {% data reusables.gated-features.more-info %} diff --git a/translations/es-ES/data/reusables/gated-features/internal-repos.md b/translations/es-ES/data/reusables/gated-features/internal-repos.md deleted file mode 100644 index 3f499eedc5..0000000000 --- a/translations/es-ES/data/reusables/gated-features/internal-repos.md +++ /dev/null @@ -1,7 +0,0 @@ -{% ifversion fpt %} -Los repositorios internos se encuentran disponibles en -{% data variables.product.prodname_ghe_cloud %} para las organizaciones que pertenezcan a una cuenta empresarial y en {% data variables.product.prodname_ghe_server %} 2.20+. Para obtener más información, consulta las secciones "[Productos de {% data variables.product.company_short %}](/get-started/learning-about-github/githubs-products) y "[Acerca de las cuentas empresariales](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" en la documentación de {% data variables.product.prodname_ghe_cloud %}. -{% else %} -Los repositorios internos se encuentran disponibles en -{% data variables.product.prodname_ghe_cloud %} para organizaciones que pertenezcan a una cuenta empresarial{% ifversion ghae %}, {% data variables.product.prodname_ghe_managed %}m {% endif %} y {% data variables.product.prodname_ghe_server %} 2.20+. Para obtener más información, consulta las secciones "[Productos de {% data variables.product.company_short %}](/get-started/learning-about-github/githubs-products)" y "[Acerca de las cuentas empresariales](/admin/overview/about-enterprise-accounts)". -{% endif %} diff --git a/translations/es-ES/data/reusables/gated-features/saml-sso.md b/translations/es-ES/data/reusables/gated-features/saml-sso.md deleted file mode 100644 index 00d7e7e5ce..0000000000 --- a/translations/es-ES/data/reusables/gated-features/saml-sso.md +++ /dev/null @@ -1 +0,0 @@ -El inicio de sesión único de SAML se encuentra disponible con {% data variables.product.prodname_ghe_cloud %}{% ifversion ghae %} y {% data variables.product.prodname_ghe_managed %}{% endif %}. Para obtener más información, consulta la sección "[Productos de GitHub](/articles/githubs-products)". diff --git a/translations/es-ES/data/reusables/gated-features/team-synchronization.md b/translations/es-ES/data/reusables/gated-features/team-synchronization.md deleted file mode 100644 index 1ae226b418..0000000000 --- a/translations/es-ES/data/reusables/gated-features/team-synchronization.md +++ /dev/null @@ -1 +0,0 @@ -{% ifversion fpt or ghec %}Team synchronization is available for organizations and enterprise accounts using {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info-org-products %}{% elsif ghae %}La sincronización de equipos con grupos de SCIM se encuentra disponible para las organizaciones que utilizan {% data variables.product.prodname_ghe_managed %}. Para obtener más información, consulta la sección "[Productos de GitHub](/github/getting-started-with-github/githubs-products)".{% endif %} diff --git a/translations/es-ES/data/reusables/github-actions/artifact-log-retention-statement.md b/translations/es-ES/data/reusables/github-actions/artifact-log-retention-statement.md index 816927b973..fd82398d3c 100644 --- a/translations/es-ES/data/reusables/github-actions/artifact-log-retention-statement.md +++ b/translations/es-ES/data/reusables/github-actions/artifact-log-retention-statement.md @@ -1 +1 @@ -By default, {% data variables.product.product_name %} stores build logs and artifacts for 90 days, and this retention period can be customized.{% ifversion fpt or ghec or ghes %} For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy)."{% endif %} +Predeterminadamente, {% data variables.product.product_name %} almacena las bitácoras de compilación y los artefactos durante 90 días y este periodo de retención se puede personalizar.{% 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#artifact-and-log-retention-policy)".{% endif %} diff --git a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md index 085ae92c05..1d0b00ba07 100644 --- a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md +++ b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-groups-navigate-to-repo-org-enterprise.md @@ -13,5 +13,5 @@ 3. In the enterprise sidebar, click {% octicon "law" aria-label="The law icon" %} **Policies**.{% endif %} 2. Navega a los ajustes de los "Grupos de ejecutores": * **In an organization**: Click **Actions** in the left sidebar{% ifversion fpt or ghec %}, then click **Runner groups** below it{% endif %}.{% ifversion ghec or ghes or ghae %} - * {% ifversion ghec %}**If using an enterprise account**:{% elsif ghes or ghae %}**If using an enterprise-level runner**:{% endif %} Click **Actions** under "{% octicon "law" aria-label="The law icon" %} Policies"{% ifversion ghec %}, then click the **Runners groups** tab{% endif %}.{% endif %} + * {% ifversion ghec %}**Si estás utilizand una cuenta empresarial**:{% elsif ghes or ghae %}**Si estás utilizando un ejecutor a nivel empresarial**:{% endif %} Haz clic en **Acciones** debajo de "{% octicon "law" aria-label="The law icon" %} Políticas"{% ifversion ghec %}, y luego en la pestaña de **Grupos de ejecutores** {% endif %}.{% endif %} {% endif %} diff --git a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-navigate-to-repo-org-enterprise.md b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-navigate-to-repo-org-enterprise.md index c8f28605ee..08b5ea7d4c 100644 --- a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-navigate-to-repo-org-enterprise.md +++ b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-navigate-to-repo-org-enterprise.md @@ -1,5 +1,5 @@ {% ifversion fpt %} -1. Navigate to the main page of the organization or repository where your self-hosted runner group is registered. +1. Navega a la página principal de la organización o repositorio en donde se registró tu grupo de ejecutores auto-hospedados. 2. Click {% octicon "gear" aria-label="The Settings gear" %} **Settings**. 3. En la barra lateral izquierda, da clic en **Acciones**. 4. Click **Runners**. @@ -12,6 +12,6 @@ 2. En la barra lateral izquierda, da clic en **Resumen empresarial**. 3. In the enterprise sidebar, click {% octicon "law" aria-label="The law icon" %} **Policies**.{% endif %} 2. Navega a los ajustes de {% data variables.product.prodname_actions %}: - * **In an organization or repository**: Click **Actions** in the left sidebar{% ifversion fpt or ghes > 3.1 or ghae or ghec %}, then click **Runners**{% endif %}.{% ifversion ghec or ghae or ghes %} - * {% ifversion ghec %}**If using an enterprise account**:{% elsif ghes or ghae %}**If using an enterprise-level runner**:{% endif %} Click **Actions** under "{% octicon "law" aria-label="The law icon" %} Policies"{% ifversion ghes > 3.1 or ghae or ghec %}, then click the **Runners** tab{% endif %}.{% endif %} + * **En una organización o repositorio**: Haz clic **Actions** en la barra lateral izquierda{% ifversion fpt or ghes > 3.1 or ghae or ghec %} y luego en **Ejecutores**{% endif %}.{% ifversion ghec or ghae or ghes %} + * {% ifversion ghec %}**Si estás utilizand una cuenta empresarial**:{% elsif ghes or ghae %}**Si estás utilizando un ejecutor a nivel empresarial**:{% endif %} Haz clic en **Acciones** debajo de "{% octicon "law" aria-label="The law icon" %} Políticas"{% ifversion ghes > 3.1 or ghae or ghec %}, y luego en la pestaña de **Ejecutores** {% endif %}.{% endif %} {% endif %} diff --git a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-reusing.md b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-reusing.md index cc3b662ebc..9d04255728 100644 --- a/translations/es-ES/data/reusables/github-actions/self-hosted-runner-reusing.md +++ b/translations/es-ES/data/reusables/github-actions/self-hosted-runner-reusing.md @@ -1 +1 @@ -Alternatively, if you don't have access to the repository{% ifversion fpt %} or organization{% elsif ghes or ghec or ghae %}, organization, or enterprise{% endif %} on {% data variables.product.product_name %} to remove a runner, but you would like to re-use the runner machine, then you can delete the `.runner` file inside the self-hosted runner application directory. Esto permite que el ejecutor se registre sin tener que volver a descargar la aplicación del ejecutor auto-hospedado. +Como alternativa, si no tienes acceso al repositorio{% ifversion fpt %} u organización{% elsif ghes or ghec or ghae %}, organización o empresa{% endif %} en {% data variables.product.product_name %} para eliminar un ejecutor, pero te gustaría volver a utilizar la máquina de ejecutores, entonces puedes borrar el archivo `.runner` dentro del directorio de aplicaciones de ejecutores auto-hospedados. Esto permite que el ejecutor se registre sin tener que volver a descargar la aplicación del ejecutor auto-hospedado. diff --git a/translations/es-ES/data/reusables/github-connect/sync-frequency.md b/translations/es-ES/data/reusables/github-connect/sync-frequency.md index 0905f58853..d210788250 100644 --- a/translations/es-ES/data/reusables/github-connect/sync-frequency.md +++ b/translations/es-ES/data/reusables/github-connect/sync-frequency.md @@ -1 +1 @@ -{% ifversion fpt or ghec %}{% data variables.product.prodname_enterprise %}{% elsif ghes or ghae %}{% data variables.product.product_name %}{% endif %} sends updates hourly. +{% ifversion fpt or ghec %}{% data variables.product.prodname_enterprise %}{% elsif ghes or ghae %}{% data variables.product.product_name %}{% endif %} envía actualizaciones cada hora. diff --git a/translations/es-ES/data/reusables/identity-and-permissions/team-sync-confirm-saml.md b/translations/es-ES/data/reusables/identity-and-permissions/team-sync-confirm-saml.md index 9915cd7a8a..e1344c4cb0 100644 --- a/translations/es-ES/data/reusables/identity-and-permissions/team-sync-confirm-saml.md +++ b/translations/es-ES/data/reusables/identity-and-permissions/team-sync-confirm-saml.md @@ -1 +1 @@ -3. Confirm that SAML SSO is enabled for your organization. Para obtener más información, consulta "[Administrar el inicio de sesión único de SAML para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/)". +3. Confirma que se habilitó el SSO de SAML en tu organización. Para obtener más información, consulta "[Administrar el inicio de sesión único de SAML para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/)". diff --git a/translations/es-ES/data/reusables/identity-and-permissions/team-sync-okta-requirements.md b/translations/es-ES/data/reusables/identity-and-permissions/team-sync-okta-requirements.md index 91ee85cc7d..fa1a0b18f6 100644 --- a/translations/es-ES/data/reusables/identity-and-permissions/team-sync-okta-requirements.md +++ b/translations/es-ES/data/reusables/identity-and-permissions/team-sync-okta-requirements.md @@ -1,5 +1,5 @@ -Before you enable team synchronization for Okta, you or your IdP administrator must: +Antes de habilitar la sincronización de equipos para Okta, tú o tu administrador de IdP deben: -- Configure the SAML, SSO, and SCIM integration for your organization using Okta. Para obtener más información, consulta la sección "[Configurar el inicio de sesión único de SAML y SCIM utilizando Okta](/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta)". +- Configurar la integración con SAML, SSO y SCIM en tu organización utilizando Okta. Para obtener más información, consulta la sección "[Configurar el inicio de sesión único de SAML y SCIM utilizando Okta](/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta)". - Proporcionar la URL del inquilino para tu instancia de Okta. - Generar un token de SSWS válido con permisos administrativos de solo lectura para tu instalación de Okta como usuario de servicio. Para obtener más información, consulta la sección [Crear el token](https://developer.okta.com/docs/guides/create-an-api-token/create-the-token/) y [Usuarios de servicio](https://help.okta.com/en/prod/Content/Topics/Adv_Server_Access/docs/service-users.htm) en la documentación de Okta. diff --git a/translations/es-ES/data/reusables/notifications/vulnerable-dependency-notification-options.md b/translations/es-ES/data/reusables/notifications/vulnerable-dependency-notification-options.md index da5e9656ae..5d98776ef2 100644 --- a/translations/es-ES/data/reusables/notifications/vulnerable-dependency-notification-options.md +++ b/translations/es-ES/data/reusables/notifications/vulnerable-dependency-notification-options.md @@ -5,7 +5,7 @@ - en la interface de usuario, se muestra una advertencia en tu archivo de repositorio y vistas de código si hay dependencias vulnerables (opción de **Alertas de la IU**). - en la línea de comandos, las advertencias se muestran como rellamados cuando subes información a los repositorios con dependencias vulnerables (opción de **Línea de comandos**). - en tu bandeja de entrada, como notificaciones web. Se enviará una notificación web cuando se habilite el {% data variables.product.prodname_dependabot %} en un repositorio cada que se confirme un archivo de manifiesto nuevo en dicho repositorio y cuando se encuentre una vulnerabilidad nueva con severidad crítica o alta (opción **Web**).{% ifversion not ghae %} -- en {% data variables.product.prodname_mobile %}, como notificaciones web. For more information, see "[Enabling push notifications with GitHub Mobile](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#enabling-push-notifications-with-github-mobile)."{% endif %} +- en {% data variables.product.prodname_mobile %}, como notificaciones web. Para obtener más información, consulta la sección [Habilitar las notificaciones de subida con GitHub Móvil](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#enabling-push-notifications-with-github-mobile)".{% endif %} {% note %} diff --git a/translations/es-ES/data/reusables/organizations/organizations_include.md b/translations/es-ES/data/reusables/organizations/organizations_include.md index a2fd3eb92b..78368e0a5b 100644 --- a/translations/es-ES/data/reusables/organizations/organizations_include.md +++ b/translations/es-ES/data/reusables/organizations/organizations_include.md @@ -3,14 +3,14 @@ Las organizaciones incluyen: - La capacidad de otorgarles a los miembros [un rango de permisos de acceso a los repositorios de la organización](/articles/repository-permission-levels-for-an-organization) - [Los elementos anidados que reflejan la estructura de tu grupo o compañía](/articles/about-teams) con permisos de acceso y menciones en cascada{% ifversion not ghae %} - La posibilidad de que los propietarios de la organización vean el [estado de autenticación de dos factores(2FA)](/articles/about-two-factor-authentication) de los miembros -- The option to [require all organization members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} -- The ability to [create and administer classrooms with GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} +- La opción de [requerir que todos los miembros de la organización utilicen autenticación bifactorial](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} +- La capacidad de [crear y administrar aulas con GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} {% ifversion fpt or ghec %} Puedes utilizar las organizaciones de forma gratuita con {% data variables.product.prodname_free_team %}, el cual incluye colaboradores ilimitados en repositorios públicos ilimitados con características completas y repositorios privados ilimitados con características limitadas. -Para encontrar características adicionales, incluyendo la autenticación y administración de usuarios sofisticada y una cobertura de soporte mejorada, puedes mejorar a {% data variables.product.prodname_team %} o a {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} +Para encontrar características adicionales, incluyendo el inicio de sesión único de SAML y la cobertura de soporte mejorada, puedes mejorar a {% data variables.product.prodname_team %} o {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} Si utilizas {% data variables.product.prodname_ghe_cloud %}, tendrás la opción de comprar una licencia para {% data variables.product.prodname_GH_advanced_security %} y utilizar las características en los repositorios privados. {% data reusables.advanced-security.more-info-ghas %} diff --git a/translations/es-ES/data/reusables/organizations/team-synchronization.md b/translations/es-ES/data/reusables/organizations/team-synchronization.md index 4afe601916..204d116413 100644 --- a/translations/es-ES/data/reusables/organizations/team-synchronization.md +++ b/translations/es-ES/data/reusables/organizations/team-synchronization.md @@ -1,3 +1,3 @@ {% ifversion fpt or ghae or ghec %} -Puedes utilizar la sincronización de equipos para eliminar y agregar automáticamente a los miembros de la organización a los equipos mediante un proveedor de identidad. Para obtener más información, consulta la sección "[Sincronizar a un equipo con un grupo de proveedor de identidad](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)". +{% ifversion fpt %}Organizaciones que utilizan {% data variables.product.prodname_ghe_cloud%}{% else %}Puedes{% endif %} utilizar la sincronización de equipos para agregar y eliminar automáticamente a los miembros o equipos de la organización mediante un proveedor de identidad. Para obtener más información, consulta la sección "[Sincronizar a un equipo con un grupo de proveedor de identidad]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group){% ifversion fpt %}" en la documentación de {% data variables.product.prodname_ghe_cloud %}.{% else %}."{% endif %} {% endif %} diff --git a/translations/es-ES/data/reusables/repositories/about-internal-repos.md b/translations/es-ES/data/reusables/repositories/about-internal-repos.md index e81d31241f..2c664c345c 100644 --- a/translations/es-ES/data/reusables/repositories/about-internal-repos.md +++ b/translations/es-ES/data/reusables/repositories/about-internal-repos.md @@ -1 +1 @@ -Puedes utilizar los repositorios internos para practivar el "innersource" dentro de tu empresa. Los miembros de tu empresa pueden colaborar utilizando metodologías de código abierto sin compartir información propietaria al público{% ifversion ghes %}, aún cuando se inhabilite el modo privado{% endif %}. +{% ifversion ghec %}Si tu organización pertenece a una cuenta empresarial, puedes{% else %}Puedes{% endif %} utilizar repositorios internos para practicar el "innersource" dentro de tu empresa. Los miembros de tu empresa pueden colaborar utilizando metodologías de código abierto sin compartir información propietaria al público{% ifversion ghes %}, aún cuando se inhabilite el modo privado{% endif %}. diff --git a/translations/es-ES/data/reusables/repositories/enable-security-alerts.md b/translations/es-ES/data/reusables/repositories/enable-security-alerts.md index 566bf5cd47..3bef173dbb 100644 --- a/translations/es-ES/data/reusables/repositories/enable-security-alerts.md +++ b/translations/es-ES/data/reusables/repositories/enable-security-alerts.md @@ -1,4 +1,4 @@ {% ifversion ghes or ghae-issue-4864 %} Los propietarios de empresas deben habilitar -{% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies for {% data variables.product.product_location %} before you can use this feature. Para obtener más información, consulta la sección "[Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} en tu cuenta empresarial](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)". +las {% data variables.product.prodname_dependabot_alerts %} para las dependencias vulnerables de {% data variables.product.product_location %} antes de que puedas utilizar esta característica. Para obtener más información, consulta la sección "[Habilitar la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %} en tu cuenta empresarial](/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account)". {% endif %} diff --git a/translations/es-ES/data/reusables/repositories/security-alerts-x-github-severity.md b/translations/es-ES/data/reusables/repositories/security-alerts-x-github-severity.md index 2741a8f189..b09c1d304e 100644 --- a/translations/es-ES/data/reusables/repositories/security-alerts-x-github-severity.md +++ b/translations/es-ES/data/reusables/repositories/security-alerts-x-github-severity.md @@ -1 +1 @@ -Email notifications for {% data variables.product.prodname_dependabot_alerts %} that affect one or more repositories include the `X-GitHub-Severity` header field. You can use the value of the `X-GitHub-Severity` header field to filter email notifications for {% data variables.product.prodname_dependabot_alerts %}. +Las notificaciones por correo electrónico de las {% data variables.product.prodname_dependabot_alerts %} que afectan uno o más repositorios, incluyen el campo de encabezado `X-GitHub-Severity`. Puedes utilizar el valor del campo de encabezado `X-GitHub-Severity` para filtrar las notificaciones por correo electrónico de las {% data variables.product.prodname_dependabot_alerts %}. diff --git a/translations/es-ES/data/reusables/saml/dotcom-saml-explanation.md b/translations/es-ES/data/reusables/saml/dotcom-saml-explanation.md index 5b92a97ddc..ffd406e5f6 100644 --- a/translations/es-ES/data/reusables/saml/dotcom-saml-explanation.md +++ b/translations/es-ES/data/reusables/saml/dotcom-saml-explanation.md @@ -1 +1 @@ -El inicio de sesión único (SSO) de SAML proporciona a los propietarios de las organizaciones y empresas en {% data variables.product.prodname_dotcom %} una forma de controlar y asegurar el acceso a los recursos organizacionales como los repositorios, propuestas y solicitudes de cambios. +El inicio de sesión único (SSO) de SAML proporciona a los propietarios de las organizaciones y empresas que utilizan {% data variables.product.product_name %} una forma de controlar y asegurar el acceso a los recursos organizacionales como los repositorios, propuestas y solicitudes de cambios. diff --git a/translations/es-ES/data/reusables/saml/okta-edit-provisioning.md b/translations/es-ES/data/reusables/saml/okta-edit-provisioning.md index 17dbe8b96c..0780486868 100644 --- a/translations/es-ES/data/reusables/saml/okta-edit-provisioning.md +++ b/translations/es-ES/data/reusables/saml/okta-edit-provisioning.md @@ -1,4 +1,4 @@ -9. To avoid syncing errors and confirm that your users have SAML enabled and SCIM linked identities, we recommend you audit your organization's users. For more information, see "[Auditing users for missing SCIM metadata](/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management#auditing-users-for-missing-scim-metadata)." +9. Para evitar sincronizar los errores y confirmar que tus usuarios tienen habilitado SAML y las identidades enlazadas de SCIM, te recomendamos que audites a los usuarios de tu organizción. Para obtener más información, consulta la sección "[Auditar a los usuarios para conocer los metadatos de SCIM faltantes](/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management#auditing-users-for-missing-scim-metadata)". 10. A la derecha de "Aprovisionar a la App", da clic en **Editar**. ![Botón "Editar" para las opciones de aprovisionamiento de la aplicación de Okta](/assets/images/help/saml/okta-provisioning-to-app-edit-button.png) 11. A la derecha de "Crear Usuarios", selecciona **Habilitar**. ![Casilla "Habilitar" para la opción de "Crear Usuarios" de la aplicación de Okta](/assets/images/help/saml/okta-provisioning-enable-create-users.png) 12. A la derecha de "Actualizar Atributos de Usuario", selecciona **Habilitar**. ![Casilla "Habilitar" para la opción de "Actualizar Atributos de Usuario" de la aplicación de Okta](/assets/images/help/saml/okta-provisioning-enable-update-user-attributes.png) diff --git a/translations/es-ES/data/reusables/saml/saml-accounts.md b/translations/es-ES/data/reusables/saml/saml-accounts.md index b42e11e893..dbdc5fc671 100644 --- a/translations/es-ES/data/reusables/saml/saml-accounts.md +++ b/translations/es-ES/data/reusables/saml/saml-accounts.md @@ -1 +1 @@ -Si configuras el SSO de SAML, los miembros de tu organización de {% data variables.product.prodname_dotcom %} continuarán ingresando en sus cuentas de usuario en {% data variables.product.prodname_dotcom %}. Cuando un miembro accede a recursos dentro de tu organización que utiliza el SSO de SAML, {% data variables.product.prodname_dotcom %} lo redirecciona a tu IdP para autenticarse. Después de autenticarse exitosamente, tu IdP redirecciona a este miembro a {% data variables.product.prodname_dotcom %}, en donde puede acceder a los recursos de tu organización. +If you configure SAML SSO, members of your organization will continue to log into their user accounts on {% data variables.product.prodname_dotcom_the_website %}. Cuando un miembro accede a recursos dentro de tu organización que utiliza el SSO de SAML, {% data variables.product.prodname_dotcom %} lo redirecciona a tu IdP para autenticarse. Después de autenticarse exitosamente, tu IdP redirecciona a este miembro a {% data variables.product.prodname_dotcom %}, en donde puede acceder a los recursos de tu organización. diff --git a/translations/es-ES/data/reusables/saml/saml-session-oauth.md b/translations/es-ES/data/reusables/saml/saml-session-oauth.md index edfd3436b4..aeebb060cd 100644 --- a/translations/es-ES/data/reusables/saml/saml-session-oauth.md +++ b/translations/es-ES/data/reusables/saml/saml-session-oauth.md @@ -1 +1 @@ -Si perteneces a cualquier organización que requiera el inicio de sesión único de SAML, puede que se te pida autenticarte a través de tu proveedor de identidad antes de que se te autorice un {% data variables.product.prodname_oauth_app %}. Para obtener más información acerca de SAML, consulta la sección "[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)". +Si perteneces a cualquier organización que requiera el inicio de sesión único de SAML, puede que se te pida autenticarte a través de tu proveedor de identidad antes de que se te autorice un {% data variables.product.prodname_oauth_app %}. Para obtener más información sobre SAML, consulta la sección "[Acerca de la autenticación con el inicio de sesión único de SAML](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" en la documentación de {% data variables.product.prodname_ghe_cloud %}.{% else %}".{% endif %} diff --git a/translations/es-ES/data/reusables/scim/supported-idps.md b/translations/es-ES/data/reusables/scim/supported-idps.md index 87ae59bdf0..627243defc 100644 --- a/translations/es-ES/data/reusables/scim/supported-idps.md +++ b/translations/es-ES/data/reusables/scim/supported-idps.md @@ -2,5 +2,5 @@ Los siguientes IdP pueden aprovisionar o desaprovisionar las cuentas de usuario {% ifversion ghae %} - Azure AD -- Okta (currently in beta) +- Okta (actualmente en beta) {% endif %} diff --git a/translations/es-ES/data/reusables/secret-scanning/beta.md b/translations/es-ES/data/reusables/secret-scanning/beta.md index 5f4cae48b4..8d760527f6 100644 --- a/translations/es-ES/data/reusables/secret-scanning/beta.md +++ b/translations/es-ES/data/reusables/secret-scanning/beta.md @@ -3,7 +3,7 @@ **Nota:** Las {% data variables.product.prodname_secret_scanning_caps %} para los repositorios que pertenecen a organizaciones se encuentra actualmente en beta y está sujeta a cambios. -If you're using an earlier version of {% data variables.product.prodname_ghe_server %}, you'll have to upgrade to use {% data variables.product.prodname_secret_scanning %}. For more information about upgrading your {% data variables.product.prodname_ghe_server %} instance, see "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)" and refer to the [{% data variables.enterprise.upgrade_assistant %}](https://support.github.com/enterprise/server-upgrade) to find the upgrade path from your current release version. +Si estás utilizando una versión anterior de {% data variables.product.prodname_ghe_server %}, tendrás que mejorarla para utilizar el {% data variables.product.prodname_secret_scanning %}. Para obtener más información sobre cómo actualizar tu instancia de {% data variables.product.prodname_ghe_server %}, consulta la sección "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)" y refiérete al [{% data variables.enterprise.upgrade_assistant %}](https://support.github.com/enterprise/server-upgrade) para encontrar la ruta de mejora desde tu versión de lanzamiento actual. {% endnote %} @@ -13,7 +13,7 @@ If you're using an earlier version of {% data variables.product.prodname_ghe_ser {% note %} -**Nota:** El {% data variables.product.prodname_secret_scanning_caps %} estaba en beta en {% data variables.product.prodname_ghe_server %} 3.0. Para encontrar el lanzamiento del {% data variables.product.prodname_secret_scanning %} que está generalmente disponible, mejora al último lanzamiento de {% data variables.product.prodname_ghe_server %}. For more information about upgrading your {% data variables.product.prodname_ghe_server %} instance, see "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)" and refer to the [{% data variables.enterprise.upgrade_assistant %}](https://support.github.com/enterprise/server-upgrade) to find the upgrade path from your current release version. +**Nota:** El {% data variables.product.prodname_secret_scanning_caps %} estaba en beta en {% data variables.product.prodname_ghe_server %} 3.0. Para encontrar el lanzamiento del {% data variables.product.prodname_secret_scanning %} que está generalmente disponible, mejora al último lanzamiento de {% data variables.product.prodname_ghe_server %}. Para obtener más información sobre cómo actualizar tu instancia de {% data variables.product.prodname_ghe_server %}, consulta la sección "[Acerca de las mejoras a los lanzamientos nuevos](/admin/overview/about-upgrades-to-new-releases)" y refiérete al [{% data variables.enterprise.upgrade_assistant %}](https://support.github.com/enterprise/server-upgrade) para encontrar la ruta de mejora desde tu versión de lanzamiento actual. {% endnote %} diff --git a/translations/es-ES/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/translations/es-ES/data/reusables/secret-scanning/partner-secret-list-private-repo.md index bee4e10bce..3737b0057e 100644 --- a/translations/es-ES/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/translations/es-ES/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -16,7 +16,9 @@ Amazon Web Services (AWS) | ID de Llave de Acceso Temporal de Amazon AWS | aws_t {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Asana | Token de Acceso Personal de Asana | asana_personal_access_token{% endif %} Atlassian | Token de la API de Atlassian | atlassian_api_token Atlassian | Token Web JSON de Atlassian | atlassian_jwt {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -Atlassian | Token de Acceso Personal al Servidor de Bitbucket | bitbucket_server_personal_access_token{% endif %} Azure | Token de Acceso Personal a Azure DevOps | azure_devops_personal_access_token Azure | Token SAS de Azure | azure_sas_token Azure | Certificado de Administración de Servicios de Azure | azure_management_certificate +Atlassian | Token de Acceso Personal de Bitbucket Server | bitbucket_server_personal_access_token{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Azure | Llave del Caché de Azure para Redis | azure_cache_for_redis_access_key{% endif %} Azure | Token de Acceso Personal de Azure DevOps | azure_devops_personal_access_token Azure | Token de SAS de Azure | azure_sas_token Azure | Certificado de Azure Service Management | azure_management_certificate {%- ifversion ghes < 3.4 or ghae or ghae-issue-5342 %} Azure | Secuencia de Conexión SQL de Azure | azure_sql_connection_string{% endif %} Azure | Llave de Cuenta de Almacenamiento de Azure | azure_storage_account_key {%- ifversion fpt or ghec or ghes > 3.2 %} @@ -64,9 +66,9 @@ GitHub | Token de Acceso de OAuth de GitHub | github_oauth_access_token{% endif {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} GitHub | Token de Actualización de GitHub | github_refresh_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -GitHub | GitHub App Installation Access Token | github_app_installation_access_token{% endif %} GitHub | GitHub SSH Private Key | github_ssh_private_key +GitHub | Token de Acceso a la Instalación de GitHub App | github_app_installation_access_token{% endif %} GitHub | Llave Privada SSH de GitHub | github_ssh_private_key {%- ifversion fpt or ghec or ghes > 3.3 %} -GitLab | GitLab Access Token | gitlab_access_token{% endif %} GoCardless | GoCardless Live Access Token | gocardless_live_access_token GoCardless | GoCardless Sandbox Access Token | gocardless_sandbox_access_token +GitLab | Token de Acceso a GitLab | gitlab_access_token{% endif %} GoCardless | Toekn de Acceso en Vivo a GoCardless | gocardless_live_access_token GoCardless | Token de Acceso de Prueba a GoCardless | gocardless_sandbox_access_token {%- ifversion fpt or ghec or ghes > 3.2 %} Google | Llave del Servidor de Mensajería de Firebase Cloud | firebase_cloud_messaging_server_key{% endif %} Google | Llave de la API de Google | google_api_key Google | ID de Llave Privada de Google Cloud | google_cloud_private_key_id {%- ifversion fpt or ghec or ghes > 3.2 %} @@ -76,13 +78,13 @@ Google | ID de la Llave de Acceso de la Cuenta de Servicio de Almacenamiento de {%- ifversion fpt or ghec or ghes > 3.2 %} Google | ID de la Llave de Acceso de Usuario de Almacenamiento de Google Cloud | google_cloud_storage_user_access_key_id{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} -Google | Google OAuth Access Token | google_oauth_access_token{% endif %} +Google | Token de Acceso OAuth a Google | google_oauth_access_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} Google | ID de Cliente OAuth de Google | google_oauth_client_id{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} Google | Secreto de Cliente OAuth de Google | google_oauth_client_secret{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} -Google | Google OAuth Refresh Token | google_oauth_refresh_token{% endif %} +Google | Token de Actualización OAuth a Google | google_oauth_refresh_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Grafana | Llave de la API de Grafana | grafana_api_key{% endif %} Hashicorp Terraform | API del Token de Terraform Cloud / Enterprise | terraform_api_token Hubspot | Llave de la API de Hubspot | hubspot_api_key {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} @@ -118,9 +120,9 @@ New Relic | Llave de Consulta de Perspectivas de New Relic | new_relic_insights_ {%- ifversion fpt or ghec or ghes > 3.2 %} New Relic | Llave de Licencia de New Relic | new_relic_license_key{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} -Notion | Notion Integration Token | notion_integration_token{% endif %} +Notion | Token de Integración a Notion | notion_integration_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} -Notion | Notion OAuth Client Secret | notion_oauth_client_secret{% endif %} npm | npm Access Token | npm_access_token NuGet | NuGet API Key | nuget_api_key +Notion | Secreto de Cliente OAuth a Notion | notion_oauth_client_secret{% endif %} npm | Token de Acceso a npm | npm_access_token NuGet | Llave de la API de NuGet | nuget_api_key {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Onfido | Token de la API de Onfido Live | onfido_live_api_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} @@ -152,7 +154,7 @@ Shippo | Token de la API de Shippo Live | shippo_live_api_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Shippo | Token de la API de Pruebas de Shippo | shippo_test_api_token{% endif %} Shopify | Secreto Compartido de la App de Shopify | shopify_app_shared_secret Shopify | Token de Acceso a Shopify | shopify_access_token Shopify | Token de Acceso a la App Personalizada de Shopify | shopify_custom_app_access_token Shopify | Contraseña de la App Privada de Shopify | shopify_private_app_password Slack | Token de la API de Slack | slack_api_token Slack | URL del Webhook Entrante de Slack | slack_incoming_webhook_url Slack | URL del Webhook del Flujo de Trabajo de Slack | slack_workflow_webhook_url {%- ifversion fpt or ghec or ghes > 3.3 %} -Square | Square Access Token | square_access_token{% endif %} +Square | Token de Acceso a Square | square_access_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} Square | Secreto de la Aplicación de Producción de Square | square_production_application_secret{% endif %} {%- ifversion fpt or ghec or ghes > 3.3 %} @@ -169,7 +171,7 @@ Stripe | Llave Restringida de la API de Prueba de Stripe | stripe_test_restricte Stripe | Secreto de Firmado de Webhook de Stripe | stripe_webhook_signing_secret{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} {%- ifversion fpt or ghec or ghes > 3.3 %} -Supabase | Supabase Service Key | supabase_service_key{% endif %} Tableau | Tableau Personal Access Token | tableau_personal_access_token{% endif %} +Supabase | Llave de Servicio de Supabase | supabase_service_key{% endif %} Tableau | Token de Acceso Personal a Tableau | tableau_personal_access_token{% endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Telegram | Token del Bot de Telegram | telegram_bot_token{% endif %} Tencent Cloud | ID Secreta de Tencent Cloud | tencent_cloud_secret_id {%- ifversion fpt or ghec or ghes > 3.3 %} diff --git a/translations/ja-JP/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md b/translations/ja-JP/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md index 57084beb98..baf34206bf 100644 --- a/translations/ja-JP/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md +++ b/translations/ja-JP/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md @@ -20,6 +20,12 @@ shortTitle: Merge multiple user accounts {% endtip %} +{% warning %} + +**Warning:** Organization and repository access permissions aren't transferable between accounts. If the account you want to delete has an existing access permission, an organization owner or repository administrator will need to invite the account that you want to keep. + +{% endwarning %} + 1. [Transfer any repositories](/articles/how-to-transfer-a-repository) from the account you want to delete to the account you want to keep. Issues, pull requests, and wikis are transferred as well. Verify the repositories exist on the account you want to keep. 2. [Update the remote URLs](/github/getting-started-with-github/managing-remote-repositories) in any local clones of the repositories that were moved. 3. [Delete the account](/articles/deleting-your-user-account) you no longer want to use. diff --git a/translations/ja-JP/content/actions/creating-actions/metadata-syntax-for-github-actions.md b/translations/ja-JP/content/actions/creating-actions/metadata-syntax-for-github-actions.md index 4b23257b33..4e9757aec3 100644 --- a/translations/ja-JP/content/actions/creating-actions/metadata-syntax-for-github-actions.md +++ b/translations/ja-JP/content/actions/creating-actions/metadata-syntax-for-github-actions.md @@ -260,9 +260,9 @@ For more information, see "[`github context`](/actions/reference/context-and-exp #### `runs.steps[*].shell` {% ifversion fpt or ghes > 3.2 or ghae-issue-4853 or ghec %} -**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% else %} -**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% endif %} #### `runs.steps[*].name` diff --git a/translations/ja-JP/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md b/translations/ja-JP/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md index a940a03bc6..17ecdbe875 100644 --- a/translations/ja-JP/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md +++ b/translations/ja-JP/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md @@ -24,6 +24,6 @@ To view current and past deployments, click **Environments** on the home page of The deployments page displays the last active deployment of each environment for your repository. If the deployment includes an environment URL, a **View deployment** button that links to the URL is shown next to the deployment. -The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/repos#inactive-deployments)." +The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/deployments#inactive-deployments)." You can also use the REST API to get information about deployments. For more information, see "[Repositories](/rest/reference/repos#deployments)." diff --git a/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 1b90750003..0ae07c935f 100644 --- a/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/translations/ja-JP/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service actions.runner.octo-org-octo-repo.runner01.service ``` +If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command: + +```shell +$ systemctl --type=service | grep actions.runner +actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname) +``` + You can use `journalctl` to monitor the real-time activity of the self-hosted runner: ```shell diff --git a/translations/ja-JP/content/actions/learn-github-actions/events-that-trigger-workflows.md b/translations/ja-JP/content/actions/learn-github-actions/events-that-trigger-workflows.md index d21e833b8c..56e92056f6 100644 --- a/translations/ja-JP/content/actions/learn-github-actions/events-that-trigger-workflows.md +++ b/translations/ja-JP/content/actions/learn-github-actions/events-that-trigger-workflows.md @@ -307,7 +307,7 @@ on: ### `deployment_status` -Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/repos#create-a-deployment-status)." +Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/deployments#create-a-deployment-status)." | Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` | | --------------------- | -------------- | ------------ | -------------| @@ -701,7 +701,7 @@ on: {% note %} -**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/repos#get-a-commit)". +**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/commits#get-a-commit)". {% endnote %} diff --git a/translations/ja-JP/content/actions/learn-github-actions/understanding-github-actions.md b/translations/ja-JP/content/actions/learn-github-actions/understanding-github-actions.md index 61b4d91686..6e69efdfbc 100644 --- a/translations/ja-JP/content/actions/learn-github-actions/understanding-github-actions.md +++ b/translations/ja-JP/content/actions/learn-github-actions/understanding-github-actions.md @@ -30,7 +30,7 @@ topics: ## The components of {% data variables.product.prodname_actions %} -You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify in your workflow. +You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify your workflow. ![Workflow overview](/assets/images/help/images/overview-actions-simple.png) diff --git a/translations/ja-JP/content/admin/advanced-security/index.md b/translations/ja-JP/content/admin/advanced-security/index.md index b90c255c0a..9bb979a9eb 100644 --- a/translations/ja-JP/content/admin/advanced-security/index.md +++ b/translations/ja-JP/content/admin/advanced-security/index.md @@ -15,8 +15,6 @@ children: - /enabling-github-advanced-security-for-your-enterprise - /configuring-code-scanning-for-your-appliance - /configuring-secret-scanning-for-your-appliance - - /viewing-your-github-advanced-security-usage - /overview-of-github-advanced-security-deployment - /deploying-github-advanced-security-in-your-enterprise --- - diff --git a/translations/ja-JP/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md b/translations/ja-JP/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md deleted file mode 100644 index 9e7c1ef0c2..0000000000 --- a/translations/ja-JP/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Viewing your GitHub Advanced Security usage -intro: 'You can view usage of your {% data variables.product.prodname_GH_advanced_security %} license.' -permissions: 'Enterprise owners can view usage for {% data variables.product.prodname_GH_advanced_security %}.' -product: '{% data reusables.gated-features.ghas %}' -versions: - ghes: '>=3.1' -type: how_to -topics: - - Advanced Security - - Enterprise - - Licensing -shortTitle: View Advanced Security usage ---- - -## About licenses for {% data variables.product.prodname_GH_advanced_security %} - -{% data reusables.advanced-security.about-ghas-license-seats %} For more information, see "[About billing for {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)." - -## Viewing license usage for {% data variables.product.prodname_GH_advanced_security %} - -You can check how many seats your license includes and how many seats are currently in use. - -{% data reusables.enterprise-accounts.access-enterprise %} -{% data reusables.enterprise-accounts.settings-tab %} -{% data reusables.enterprise-accounts.license-tab %} - The "{% data variables.product.prodname_GH_advanced_security %}" section shows details of the current usage. You can see the total number of seats used, as well as a table with the number of committers and unique committers for each organization. - ![{% data variables.product.prodname_GH_advanced_security %} section of Enterprise license](/assets/images/help/billing/ghas-orgs-list-enterprise-ghes.png) -5. Optionally, click the name of an organization where you are an owner to display the security and analysis settings for the organization. - ![Owned organization in {% data variables.product.prodname_GH_advanced_security %} section of enterprise billing settings](/assets/images/help/billing/ghas-orgs-list-enterprise-click-org.png) -6. On the "Security & analysis" settings page, scroll to the "{% data variables.product.prodname_GH_advanced_security %} repositories" section to see a detailed breakdown of usage by repository for this organization. - ![{% data variables.product.prodname_GH_advanced_security %} repositories section](/assets/images/help/enterprises/settings-security-analysis-ghas-repos-list.png) - 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)." diff --git a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md index 98825fdc57..3711fe5ef6 100644 --- a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md +++ b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md @@ -1,11 +1,11 @@ --- -title: 認証のないサインアップの無効化 +title: Disabling unauthenticated sign-ups redirect_from: - - /enterprise/admin/articles/disabling-sign-ups/ + - /enterprise/admin/articles/disabling-sign-ups - /enterprise/admin/user-management/disabling-unauthenticated-sign-ups - /enterprise/admin/authentication/disabling-unauthenticated-sign-ups - /admin/authentication/disabling-unauthenticated-sign-ups -intro: ビルトイン認証を使っている場合、認証されていない人がアカウントを作成するのをブロックできます。 +intro: 'If you''re using built-in authentication, you can block unauthenticated people from being able to create an account.' versions: ghes: '*' type: how_to @@ -15,9 +15,9 @@ topics: - Enterprise shortTitle: Block account creation --- - {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -3. **Enable sign-up(サインアップの有効化)**の選択を外してください。 ![[Enable sign-up] チェックボックス](/assets/images/enterprise/management-console/enable-sign-up.png) +3. Unselect **Enable sign-up**. +![Enable sign-up checkbox](/assets/images/enterprise/management-console/enable-sign-up.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md index 57b99c5b36..5d51187af0 100644 --- a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md +++ b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: GitHub Enterprise Server インスタンスでユーザを認証する -intro: '{% data variables.product.prodname_ghe_server %} のビルトイン認証を使うか、CAS、LDAP、SAML のいずれかを選択して既存のアカウントを統合し、{% data variables.product.product_location %} へのユーザアクセスを集中管理できます。' +title: Authenticating users for your GitHub Enterprise Server instance +intro: 'You can use {% data variables.product.prodname_ghe_server %}''s built-in authentication, or choose between CAS, LDAP, or SAML to integrate your existing accounts and centrally manage user access to {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/categories/authentication/ - - /enterprise/admin/guides/installation/user-authentication/ - - /enterprise/admin/articles/inviting-users/ - - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance/ + - /enterprise/admin/categories/authentication + - /enterprise/admin/guides/installation/user-authentication + - /enterprise/admin/articles/inviting-users + - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance - /enterprise/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance - /enterprise/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance versions: diff --git a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md index 1d2495dcb6..b1276f2de7 100644 --- a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md +++ b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md @@ -1,12 +1,12 @@ --- -title: CASの利用 +title: Using CAS redirect_from: - - /enterprise/admin/articles/configuring-cas-authentication/ - - /enterprise/admin/articles/about-cas-authentication/ + - /enterprise/admin/articles/configuring-cas-authentication + - /enterprise/admin/articles/about-cas-authentication - /enterprise/admin/user-management/using-cas - /enterprise/admin/authentication/using-cas - /admin/authentication/using-cas -intro: 'CAS は、複数の Web アプリケーションのためのシングルサインオン (SSO) プロトコルです。 CASのユーザアカウントは、ユーザがサインインするまで{% ifversion ghes %}ユーザライセンス{% else %}シート{% endif %}を消費しません。' +intro: 'CAS is a single sign-on (SSO) protocol for multiple web applications. A CAS user account does not take up a {% ifversion ghes %}user license{% else %}seat{% endif %} until the user signs in.' versions: ghes: '*' type: how_to @@ -17,10 +17,9 @@ topics: - Identity - SSO --- - {% data reusables.enterprise_user_management.built-in-authentication %} -## CASでのユーザ名についての考慮 +## Username considerations with CAS {% data reusables.enterprise_management_console.username_normalization %} @@ -29,24 +28,25 @@ topics: {% data reusables.enterprise_user_management.two_factor_auth_header %} {% data reusables.enterprise_user_management.external_auth_disables_2fa %} -## CASの属性 +## CAS attributes -以下の属性が利用できます。 +The following attributes are available. -| 属性名 | 種類 | 説明 | -| ------ | -- | -------------------------------------------------------- | -| `ユーザ名` | 必須 | {% data variables.product.prodname_ghe_server %} のユーザ名 | +| Attribute name | Type | Description | +|--------------------------|----------|-------------| +| `username` | Required | The {% data variables.product.prodname_ghe_server %} username. | -## CASの設定 +## Configuring CAS {% warning %} -**警告:**{% data variables.product.product_location %}でCASを設定するまでは、ユーザはCASのユーザ名とパスワードをAPIリクエストの認証やHTTP/HTTPS経由のGit操作に使えないことに注意してください。 その代わりに、ユーザは[アクセストークンを作成](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use)しなければなりません。 +**Warning:** Before configuring CAS on {% data variables.product.product_location %}, note that users will not be able to use their CAS usernames and passwords to authenticate API requests or Git operations over HTTP/HTTPS. Instead, they will need to [create an access token](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use). {% endwarning %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.authentication %} -3. **CAS**を選択してください。 ![CAS の選択](/assets/images/enterprise/management-console/cas-select.png) -4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![CAS ビルトイン認証の選択チェックボックス](/assets/images/enterprise/management-console/cas-built-in-authentication.png) -5. **Server URL(サーバのURL)**フィールドにCASサーバの完全なURLを入力してください。 CAS サーバが {% data variables.product.prodname_ghe_server %} が検証できない証明書を使っているなら、`ghe-ssl-ca-certificate-install` を使えばその証明書を信頼済みの証明書としてインストールできます。 +3. Select **CAS**. +![CAS select](/assets/images/enterprise/management-console/cas-select.png) +4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![Select CAS built-in authentication checkbox](/assets/images/enterprise/management-console/cas-built-in-authentication.png) +5. In the **Server URL** field, type the full URL of your CAS server. If your CAS server uses a certificate that can't be validated by {% data variables.product.prodname_ghe_server %}, you can use the `ghe-ssl-ca-certificate-install` command to install it as a trusted certificate. diff --git a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md index a7d55a8a16..77d922b9e8 100644 --- a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md +++ b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md @@ -1,11 +1,11 @@ --- title: Using LDAP redirect_from: - - /enterprise/admin/articles/configuring-ldap-authentication/ - - /enterprise/admin/articles/about-ldap-authentication/ - - /enterprise/admin/articles/viewing-ldap-users/ - - /enterprise/admin/hidden/enabling-ldap-sync/ - - /enterprise/admin/hidden/ldap-sync/ + - /enterprise/admin/articles/configuring-ldap-authentication + - /enterprise/admin/articles/about-ldap-authentication + - /enterprise/admin/articles/viewing-ldap-users + - /enterprise/admin/hidden/enabling-ldap-sync + - /enterprise/admin/hidden/ldap-sync - /enterprise/admin/user-management/using-ldap - /enterprise/admin/authentication/using-ldap - /admin/authentication/using-ldap diff --git a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md index b7f582ffcb..33cd83f62b 100644 --- a/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md +++ b/translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md @@ -1,8 +1,8 @@ --- title: Using SAML redirect_from: - - /enterprise/admin/articles/configuring-saml-authentication/ - - /enterprise/admin/articles/about-saml-authentication/ + - /enterprise/admin/articles/configuring-saml-authentication + - /enterprise/admin/articles/about-saml-authentication - /enterprise/admin/user-management/using-saml - /enterprise/admin/authentication/using-saml - /admin/authentication/using-saml diff --git a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md index 962e16d58a..21fc4b65db 100644 --- a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md +++ b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md @@ -1,9 +1,8 @@ --- -title: Azure AD を使用して Enterprise の認証とプロビジョニングを設定する -shortTitle: Azure AD を使用しての設定 -intro: 'Azure Active Directory (Azure AD) のテナントをアイデンティティプロバイダ (IdP) として使用して、{% data variables.product.product_location %} の認証とユーザプロビジョニングを一元管理できます。' +title: Configuring authentication and provisioning for your enterprise using Azure AD +shortTitle: Configuring with Azure AD +intro: 'You can use a tenant in Azure Active Directory (Azure AD) as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.product_location %}.' permissions: 'Enterprise owners can configure authentication and provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to @@ -16,42 +15,41 @@ topics: redirect_from: - /admin/authentication/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad --- +## About authentication and user provisioning with Azure AD -## Azure AD を使用した認証とユーザプロビジョニングについて +Azure Active Directory (Azure AD) is a service from Microsoft that allows you to centrally manage user accounts and access to web applications. For more information, see [What is Azure Active Directory?](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis) in the Microsoft Docs. -Azure Active Directory (Azure AD) は、ユーザアカウントと Web アプリケーションへのアクセスを一元管理できる Microsoft のサービスです。 詳しい情報については、Microsoft Docs の「[Azure Active Directory とは](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis)」を参照してください。 +To manage identity and access for {% data variables.product.product_name %}, you can use an Azure AD tenant as a SAML IdP for authentication. You can also configure Azure AD to automatically provision accounts and access membership with SCIM, which allows you to create {% data variables.product.prodname_ghe_managed %} users and manage team and organization membership from your Azure AD tenant. -{% data variables.product.product_name %} のアイデンティティとアクセスを管理するために、Azure AD テナントを認証用の SAML IdP として使用できます。 アカウントを自動的にプロビジョニングし、SCIM でメンバーシップにアクセスするように Azure AD を設定することもできます。これにより、{% data variables.product.prodname_ghe_managed %} ユーザを作成し、Azure AD テナントから Team と Organization のメンバーシップを管理できます。 +After you enable SAML SSO and SCIM for {% data variables.product.prodname_ghe_managed %} using Azure AD, you can accomplish the following from your Azure AD tenant. -Azure AD を使用して {% data variables.product.prodname_ghe_managed %} に対して SAML SSO と SCIM を有効にした後、Azure AD テナントから以下を実行できます。 +* Assign the {% data variables.product.prodname_ghe_managed %} application on Azure AD to a user account to automatically create and grant access to a corresponding user account on {% data variables.product.product_name %}. +* Unassign the {% data variables.product.prodname_ghe_managed %} application to a user account on Azure AD to deactivate the corresponding user account on {% data variables.product.product_name %}. +* Assign the {% data variables.product.prodname_ghe_managed %} application to an IdP group on Azure AD to automatically create and grant access to user accounts on {% data variables.product.product_name %} for all members of the IdP group. In addition, the IdP group is available on {% data variables.product.prodname_ghe_managed %} for connection to a team and its parent organization. +* Unassign the {% data variables.product.prodname_ghe_managed %} application from an IdP group to deactivate the {% data variables.product.product_name %} user accounts of all IdP users who had access only through that IdP group and remove the users from the parent organization. The IdP group will be disconnected from any teams on {% data variables.product.product_name %}. -* Azure AD の {% data variables.product.prodname_ghe_managed %} アプリケーションをユーザアカウントに割り当てて、{% data variables.product.product_name %} の対応するユーザアカウントを自動的に作成し、アクセスを許可します。 -* {% data variables.product.prodname_ghe_managed %} アプリケーションの Azure AD のユーザアカウントへの割り当てを解除して、{% data variables.product.product_name %} の対応するユーザアカウントを非アクティブ化します。 -* {% data variables.product.prodname_ghe_managed %} アプリケーションを Azure AD の IdP グループに割り当てて、IdP グループのすべてのメンバーの {% data variables.product.product_name %} 上のユーザアカウントを自動的に作成し、アクセスを許可します。 さらに、IdP グループは {% data variables.product.prodname_ghe_managed %} で利用でき、Team とその親 Organization に接続できます。 -* IdP グループから {% data variables.product.prodname_ghe_managed %} アプリケーションの割り当てを解除して、その IdP グループを介してのみアクセスできるすべての IdP ユーザの {% data variables.product.product_name %} ユーザアカウントを非アクティブ化し、親 Organization からユーザを削除します。 IdP グループは {% data variables.product.product_name %} のどの Team からも切断されます +For more information about managing identity and access for your enterprise on {% data variables.product.product_location %}, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)." For more information about synchronizing teams with IdP groups, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." -{% data variables.product.product_location %} での Enterprise のアイデンティティとアクセスの管理の詳細については、「[Enterprise のアイデンティティとアクセスを管理する](/admin/authentication/managing-identity-and-access-for-your-enterprise)」を参照してください。 Team を IdP グループと同期する方法について詳しくは、「[アイデンティティプロバイダグループとTeamの同期](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)」を参照してください。 +## Prerequisites -## 必要な環境 +To configure authentication and user provisioning for {% data variables.product.product_name %} using Azure AD, you must have an Azure AD account and tenant. For more information, see the [Azure AD website](https://azure.microsoft.com/free/active-directory) and [Quickstart: Create an Azure Active Directory tenant](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant) in the Microsoft Docs. -Azure AD を使用して {% data variables.product.product_name %} の認証とユーザプロビジョニングを設定するには、Azure AD アカウントとテナントが必要です。 詳しい情報については、「[Azure AD Web サイト](https://azure.microsoft.com/free/active-directory)」および Microsoft Docs の「[クイックスタート: Azure Active Directory テナントを作成する](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant)」を参照してください。 - -{% data reusables.saml.assert-the-administrator-attribute %} Azure AD からの SAML 要求に `administrator` 属性を含める方法について詳しくは、Microsoft Docs の「[方法: Enterprise アプリケーション向けに SAML トークンで発行された要求をカスタマイズする](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization)」を参照してください。 +{% data reusables.saml.assert-the-administrator-attribute %} For more information about including the `administrator` attribute in the SAML claim from Azure AD, see [How to: customize claims issued in the SAML token for enterprise applications](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization) in the Microsoft Docs. {% data reusables.saml.create-a-machine-user %} -## Azure AD を使用して認証とユーザプロビジョニングを設定する +## Configuring authentication and user provisioning with Azure AD {% ifversion ghae %} -1. Azure AD で、{% data variables.product.ae_azure_ad_app_link %} をテナントに追加し、シングルサインオンを設定します。 詳しい情報については、Microsoft Docs の「[チュートリアル: Azure Active Directory シングルサインオン (SSO) と {% data variables.product.prodname_ghe_managed %} の統合](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial)」を参照してください。 +1. In Azure AD, add {% data variables.product.ae_azure_ad_app_link %} to your tenant and configure single sign-on. For more information, see [Tutorial: Azure Active Directory single sign-on (SSO) integration with {% data variables.product.prodname_ghe_managed %}](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial) in the Microsoft Docs. -1. {% data variables.product.prodname_ghe_managed %} に、Azure AD テナントの詳細を入力します。 +1. In {% data variables.product.prodname_ghe_managed %}, enter the details for your Azure AD tenant. - {% data reusables.saml.ae-enable-saml-sso-during-bootstrapping %} - - 別の IdP を使用して {% data variables.product.product_location %} の SAML SSO を既に設定していて、代わりに Azure AD を使用する場合は、設定を編集できます。 詳しい情報については、「[Enterprise 向けのSAML シングルサインオンを設定する](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)」を参照してください。 + - If you've already configured SAML SSO for {% data variables.product.product_location %} using another IdP and you want to use Azure AD instead, you can edit your configuration. For more information, see "[Configuring SAML single sign-on for your enterprise](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)." -1. {% data variables.product.product_name %} でユーザプロビジョニングを有効化し、Azure AD でユーザプロビジョニングを設定します。 詳しい情報については、「[Enterprise 向けのユーザプロビジョニングを設定する](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)」を参照してください。 +1. Enable user provisioning in {% data variables.product.product_name %} and configure user provisioning in Azure AD. For more information, see "[Configuring user provisioning for your enterprise](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)." {% endif %} diff --git a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md index 6d26e290e4..fbe74e7c94 100644 --- a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md +++ b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md @@ -3,9 +3,8 @@ title: Configuring authentication and provisioning for your enterprise using Okt shortTitle: Configuring with Okta intro: 'You can use Okta as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.prodname_ghe_managed %}.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md index 8dafb03fa5..bf03a67c91 100644 --- a/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md +++ b/translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md @@ -2,9 +2,8 @@ title: Mapping Okta groups to teams intro: 'You can map your Okta groups to teams on {% data variables.product.prodname_ghe_managed %} to automatically add and remove team members.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md index 0d5ef218e8..3da45be1af 100644 --- a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md @@ -2,7 +2,6 @@ title: About identity and access management for your enterprise shortTitle: About identity and access management intro: 'You can use SAML single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) to centrally manage access {% ifversion ghec %}to organizations owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}{% endif %}{% ifversion ghae %}to {% data variables.product.product_location %}{% endif %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghec: '*' ghae: '*' diff --git a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md index 3a5178de56..e3b193572b 100644 --- a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md @@ -2,7 +2,6 @@ title: Configuring SAML single sign-on for your enterprise shortTitle: Configure SAML SSO intro: 'You can control and secure access to {% ifversion ghec %}resources like repositories, issues, and pull requests within your enterprise''s organizations{% elsif ghae %}your enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %} by {% ifversion ghec %}enforcing{% elsif ghae %}configuring{% endif %} SAML single sign-on (SSO) through your identity provider (IdP).' -product: '{% data reusables.gated-features.saml-sso %}' permissions: 'Enterprise owners can configure SAML SSO for an enterprise on {% data variables.product.product_name %}.' versions: ghec: '*' diff --git a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md index a1c6d63a4c..2f2984bc97 100644 --- a/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md @@ -3,7 +3,6 @@ title: Configuring user provisioning for your enterprise shortTitle: Configuring user provisioning intro: 'You can configure System for Cross-domain Identity Management (SCIM) for your enterprise, which automatically provisions user accounts on {% data variables.product.product_location %} when you assign the application for {% data variables.product.product_location %} to a user on your identity provider (IdP).' permissions: 'Enterprise owners can configure user provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to diff --git a/translations/ja-JP/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md b/translations/ja-JP/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md index d41f097870..c82069b7a4 100644 --- a/translations/ja-JP/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md +++ b/translations/ja-JP/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md @@ -4,7 +4,7 @@ shortTitle: Manage users with your IdP product: '{% data reusables.gated-features.emus %}' intro: You can manage identity and access with your identity provider and provision accounts that can only contribute to your enterprise. redirect_from: - - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/ + - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider versions: ghec: '*' topics: diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md index 5b30214ee0..2727ae6ddc 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md @@ -1,8 +1,8 @@ --- -title: ホスト名の設定 -intro: アプライアンスには、ハードコードされたIPアドレスを使うのではなくホスト名を設定することをおすすめします。 +title: Configuring a hostname +intro: We recommend setting a hostname for your appliance instead of using a hard-coded IP address. redirect_from: - - /enterprise/admin/guides/installation/configuring-hostnames/ + - /enterprise/admin/guides/installation/configuring-hostnames - /enterprise/admin/installation/configuring-a-hostname - /enterprise/admin/configuration/configuring-a-hostname - /admin/configuration/configuring-a-hostname @@ -14,19 +14,20 @@ topics: - Fundamentals - Infrastructure --- +If you configure a hostname instead of a hard-coded IP address, you will be able to change the physical hardware that {% data variables.product.product_location %} runs on without affecting users or client software. -ハードコードされたIPアドレスの代わりにホスト名を設定すれば、ユーザやクライアントソフトウェアに影響を与えることなく{% data variables.product.product_location %}を動作させる物理ハードウェアを変更できるようになります。 - -{% data variables.enterprise.management_console %} のホスト名の設定は、適切な完全修飾ドメイン名 (FQDN) に設定して、インターネット上または内部ネットワーク内で解決できるようにしてください。 たとえば、ホスト名の設定は `github.companyname.com` であるかもしれません。 また、選択したホスト名に対して Subdomain Isolation を有効にして、いくつかのクロスサイトスクリプティングスタイルの脆弱性を軽減することもおすすめします。 ホスト名の設定に関する詳しい情報については、[HTTP RFC の Section 2.1](https://tools.ietf.org/html/rfc1123#section-2) を参照してください。 +The hostname setting in the {% data variables.enterprise.management_console %} should be set to an appropriate fully qualified domain name (FQDN) which is resolvable on the internet or within your internal network. For example, your hostname setting could be `github.companyname.com.` We also recommend enabling subdomain isolation for the chosen hostname to mitigate several cross-site scripting style vulnerabilities. For more information on hostname settings, see [Section 2.1 of the HTTP RFC](https://tools.ietf.org/html/rfc1123#section-2). {% data reusables.enterprise_installation.changing-hostname-not-supported %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. {% data variables.product.product_location %} に設定するホスト名を入力します。 ![ホスト名を設定するためのフィールド](/assets/images/enterprise/management-console/hostname-field.png) -5. 新しいホスト名のためのDNS及びSSLの設定をテストするには**Test domain settings(ドメイン設定のテスト)**をクリックしてください。 ![[Test domain settings] ボタン](/assets/images/enterprise/management-console/test-domain-settings.png) +4. Type the hostname you'd like to set for {% data variables.product.product_location %}. + ![Field for setting a hostname](/assets/images/enterprise/management-console/hostname-field.png) +5. To test the DNS and SSL settings for the new hostname, click **Test domain settings**. + ![Test domain settings button](/assets/images/enterprise/management-console/test-domain-settings.png) {% data reusables.enterprise_management_console.test-domain-settings-failure %} {% data reusables.enterprise_management_console.save-settings %} -ホスト名を設定したら、{% data variables.product.product_location %}のSubdomain Isolationを有効化することをお勧めします。 詳しい情報については"[Subdomain Isolationの有効化](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)"を参照してください。 +After you configure a hostname, we recommend that you enable subdomain isolation for {% data variables.product.product_location %}. For more information, see "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)." diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md index de124e0d39..efcd3a1f2d 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md @@ -1,8 +1,8 @@ --- -title: アウトバウンドのWebプロキシサーバの設定 -intro: 'プロキシサーバは、{% data variables.product.product_location %}に追加のセキュリティのレベルをもたらしてくれます。' +title: Configuring an outbound web proxy server +intro: 'A proxy server provides an additional level of security for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-a-proxy-server/ + - /enterprise/admin/guides/installation/configuring-a-proxy-server - /enterprise/admin/installation/configuring-an-outbound-web-proxy-server - /enterprise/admin/configuration/configuring-an-outbound-web-proxy-server - /admin/configuration/configuring-an-outbound-web-proxy-server @@ -19,23 +19,25 @@ shortTitle: Configure an outbound proxy ## About proxies with {% data variables.product.product_name %} -{% data variables.product.product_location %} に対してプロキシサーバーが有効である場合、送信先ホストが HTTP プロキシ除外として追加されていない限り、{% data variables.product.prodname_ghe_server %} によって送信されたアウトバウンドメッセージがプロキシサーバーを経由してまず最初に送信されます。 アウトバウンドのメッセージの種類には、webhook、Bundleのアップロード、レガシーのアバターのフェッチが含まれます。 プロキシサーバのURLは、たとえば`http://127.0.0.1:8123`といったように、プロトコル、ドメインもしくはIPアドレスにポート番号を加えたものです。 +When a proxy server is enabled for {% data variables.product.product_location %}, outbound messages sent by {% data variables.product.prodname_ghe_server %} are first sent through the proxy server, unless the destination host is added as an HTTP proxy exclusion. Types of outbound messages include outgoing webhooks, uploading bundles, and fetching legacy avatars. The proxy server's URL is the protocol, domain or IP address, plus the port number, for example `http://127.0.0.1:8123`. {% note %} -**メモ:** {% data variables.product.product_location %} を {% data variables.product.prodname_dotcom_the_website %} に接続するには、`github.com` と `api.github.com` への接続がプロキシ設定で許可されている必要があります。 For more information, see "[Connecting your enterprise account to {% data variables.product.prodname_dotcom_the_website %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)." +**Note:** To connect {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %}, your proxy configuration must allow connectivity to `github.com` and `api.github.com`. For more information, see "[Connecting your enterprise account to {% data variables.product.prodname_dotcom_the_website %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)." {% endnote %} {% data reusables.actions.proxy-considerations %} For more information about using {% data variables.product.prodname_actions %} with {% data variables.product.prodname_ghe_server %}, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server)." -## アウトバウンドのWebプロキシサーバの設定 +## Configuring an outbound web proxy server {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -1. **HTTP Proxy Server(HTTPプロキシサーバ)**の下に、プロキシサーバのURLを入力してください。 ![HTTP プロキシサーバーのURLを入力するためのフィールド](/assets/images/enterprise/management-console/http-proxy-field.png) - -5. オプションで、プロキシのアクセスを要しないホストがあれば**HTTP Proxy Exclusion(HTTPプロキシの除外)**の下にカンマ区切りで入力してください。 ドメイン内のすべてのホストをプロキシアクセスの要求から除外するには `.` をワイルドカードプレフィックスとして使用できます。 たとえば、`.octo-org.tentacle` などです。 ![HTTP プロキシの除外を入力するためのフィールド](/assets/images/enterprise/management-console/http-proxy-exclusion-field.png) +1. Under **HTTP Proxy Server**, type the URL of your proxy server. + ![Field to type the HTTP Proxy Server URL](/assets/images/enterprise/management-console/http-proxy-field.png) + +5. Optionally, under **HTTP Proxy Exclusion**, type any hosts that do not require proxy access, separating hosts with commas. To exclude all hosts in a domain from requiring proxy access, you can use `.` as a wildcard prefix. For example: `.octo-org.tentacle` + ![Field to type any HTTP Proxy Exclusions](/assets/images/enterprise/management-console/http-proxy-exclusion-field.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md index 1ff199294d..b6f5cbfb9d 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md @@ -1,8 +1,8 @@ --- -title: 組み込みファイアウォールのルール設定 -intro: '{% data variables.product.product_location %}のデフォルトのファイアウォールのルールとカスタマイズされたルールを見ることができます。' +title: Configuring built-in firewall rules +intro: 'You can view default firewall rules and customize rules for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-firewall-settings/ + - /enterprise/admin/guides/installation/configuring-firewall-settings - /enterprise/admin/installation/configuring-built-in-firewall-rules - /enterprise/admin/configuration/configuring-built-in-firewall-rules - /admin/configuration/configuring-built-in-firewall-rules @@ -16,19 +16,18 @@ topics: - Networking shortTitle: Configure firewall rules --- +## About {% data variables.product.product_location %}'s firewall -## {% data variables.product.product_location %}のファイアウォールについて +{% data variables.product.prodname_ghe_server %} uses Ubuntu's Uncomplicated Firewall (UFW) on the virtual appliance. For more information see "[UFW](https://help.ubuntu.com/community/UFW)" in the Ubuntu documentation. {% data variables.product.prodname_ghe_server %} automatically updates the firewall allowlist of allowed services with each release. -{% data variables.product.prodname_ghe_server %} は、仮想アプライアンスで Ubuntu の Uncomplicated Firewall (UFW) を使用します。 詳しい情報についてはUbuntuのドキュメンテーションの"[UFW](https://help.ubuntu.com/community/UFW)"を参照してください。 {% data variables.product.prodname_ghe_server %} は、許可されたサービスのファイアウォールのホワイトリストをリリースごとに自動的に更新します。 +After you install {% data variables.product.prodname_ghe_server %}, all required network ports are automatically opened to accept connections. Every non-required port is automatically configured as `deny`, and the default outgoing policy is configured as `allow`. Stateful tracking is enabled for any new connections; these are typically network packets with the `SYN` bit set. For more information, see "[Network ports](/enterprise/admin/guides/installation/network-ports)." -{% data variables.product.prodname_ghe_server %} をインストールすると、接続を受け入れるために必要なすべてのネットワークポートが自動的に開かれます。 不必要なすべてのポートは自動的に`deny`に設定され、デフォルトの送信ポリシーは`allow`に設定されます。 ステートフルな追跡は、任意の新しいコネクションに対して有効化されます。それらは通常、`SYN`ビットが立てられているネットワークパケットです。 詳しい情報については"[ネットワークポート](/enterprise/admin/guides/installation/network-ports)"を参照してください。 +The UFW firewall also opens several other ports that are required for {% data variables.product.prodname_ghe_server %} to operate properly. For more information on the UFW rule set, see [the UFW README](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213). -UFW ファイアウォールは、{% data variables.product.prodname_ghe_server %} が正しく動作するのに必要となる他のいくつかのポートも開きます。 UFW のルールセットに関する詳しい情報については、[the UFW README](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213) を参照してください。 - -## デフォルトのファイアウォールルールの表示 +## Viewing the default firewall rules {% data reusables.enterprise_installation.ssh-into-instance %} -2. デフォルトのファイアウォールルールを表示するには、`sudo ufw status` コマンドを使用します。 以下と同じような出力が表示されるでしょう: +2. To view the default firewall rules, use the `sudo ufw status` command. You should see output similar to this: ```shell $ sudo ufw status > Status: active @@ -56,46 +55,46 @@ UFW ファイアウォールは、{% data variables.product.prodname_ghe_server > ghe-9418 (v6) ALLOW Anywhere (v6) ``` -## カスタムのファイアウォールルールの追加 +## Adding custom firewall rules {% warning %} -**警告:** 既知の作業状態にリセットする必要が生じた場合に備えて、カスタムのファイアウォールルールを追加する前に、現在のルールをバックアップしてください。 サーバーからロックアウトされている場合には、{% data variables.contact.contact_ent_support %}に問い合わせて、元のファイアウォールルールを再設定してください。 元のファイアウォールルールを復元すると、サーバーでダウンタイムが発生します。 +**Warning:** Before you add custom firewall rules, back up your current rules in case you need to reset to a known working state. If you're locked out of your server, contact {% data variables.contact.contact_ent_support %} to reconfigure the original firewall rules. Restoring the original firewall rules involves downtime for your server. {% endwarning %} -1. カスタムのファイアウォールルールを設定する。 -2. `status numbered`コマンドを使って、新しいルールそれぞれのステータスをチェックします。 +1. Configure a custom firewall rule. +2. Check the status of each new rule with the `status numbered` command. ```shell $ sudo ufw status numbered ``` -3. カスタムのファイアウォールルールをバックアップするには、`cp` コマンドを使用してルールを新しいファイルに移動します。 +3. To back up your custom firewall rules, use the `cp`command to move the rules to a new file. ```shell $ sudo cp -r /etc/ufw ~/ufw.backup ``` -{% data variables.product.product_location %}をアップグレードした後は、カスタムのファイアウォールルールを再適用しなければなりません。 ファイアウォールのカスタムルールを再適用するためのスクリプトを作成することをお勧めします。 +After you upgrade {% data variables.product.product_location %}, you must reapply your custom firewall rules. We recommend that you create a script to reapply your firewall custom rules. -## デフォルトのファイアウォールルールのリストア +## Restoring the default firewall rules -ファイアウォールルールの変更後に何か問題が生じたなら、オリジナルのバックアップからルールをリセットできます。 +If something goes wrong after you change the firewall rules, you can reset the rules from your original backup. {% warning %} -**警告:** ファイアウォールに変更を加える前にオリジナルのルールをバックアップしていなかった場合は、{% data variables.contact.contact_ent_support %} にお問い合わせください。 +**Warning:** If you didn't back up the original rules before making changes to the firewall, contact {% data variables.contact.contact_ent_support %} for further assistance. {% endwarning %} {% data reusables.enterprise_installation.ssh-into-instance %} -2. 以前のバックアップルールを復元するには、`cp` コマンドでそれらをファイアウォールにコピーして戻します。 +2. To restore the previous backup rules, copy them back to the firewall with the `cp` command. ```shell $ sudo cp -f ~/ufw.backup/*rules /etc/ufw ``` -3. `systemctl` コマンドでファイアウォールを再起動します。 +3. Restart the firewall with the `systemctl` command. ```shell $ sudo systemctl restart ufw ``` -4. `ufw status` コマンドで、ルールがデフォルトに戻っていることを確認します。 +4. Confirm that the rules are back to their defaults with the `ufw status` command. ```shell $ sudo ufw status > Status: active diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md index 9282ecde8a..0080d55693 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md @@ -1,8 +1,8 @@ --- -title: DNSネームサーバの設定 -intro: '{% data variables.product.prodname_ghe_server %} は、動的ホスト構成プロトコル (DHCP) のリースがネームサーバーを提供するときに、DNS 設定に対して DHCP を使用します。 ネームサーバがDHCPのリースで提供されない場合、あるいは特定のDNS設定を使う必要がある場合は、手動でネームサーバを指定できます。' +title: Configuring DNS nameservers +intro: '{% data variables.product.prodname_ghe_server %} uses the dynamic host configuration protocol (DHCP) for DNS settings when DHCP leases provide nameservers. If nameservers are not provided by a dynamic host configuration protocol (DHCP) lease, or if you need to use specific DNS settings, you can specify the nameservers manually.' redirect_from: - - /enterprise/admin/guides/installation/about-dns-nameservers/ + - /enterprise/admin/guides/installation/about-dns-nameservers - /enterprise/admin/installation/configuring-dns-nameservers - /enterprise/admin/configuration/configuring-dns-nameservers - /admin/configuration/configuring-dns-nameservers @@ -16,26 +16,25 @@ topics: - Networking shortTitle: Configure DNS servers --- - -指定するネームサーバは、{% data variables.product.product_location %}のホスト名を解決できなければなりません。 +The nameservers you specify must resolve {% data variables.product.product_location %}'s hostname. {% data reusables.enterprise_installation.changing-hostname-not-supported %} -## 仮想マシンのコンソールを使ったネームサーバの設定 +## Configuring nameservers using the virtual machine console {% data reusables.enterprise_installation.open-vm-console-start %} -2. インスタンスに対してネームサーバーを設定します。 +2. Configure nameservers for your instance. {% data reusables.enterprise_installation.vm-console-done %} -## 管理シェルを使ったネームサーバの設定 +## Configuring nameservers using the administrative shell {% data reusables.enterprise_installation.ssh-into-instance %} -2. ネームサーバーを編集するには、次を入力します: +2. To edit your nameservers, enter: ```shell $ sudo vim /etc/resolvconf/resolv.conf.d/head ``` -3. `nameserver` エントリを追加し、続いてファイルを保存します。 -4. 変更を確認したら、ファイルを保存します。 +3. Append any `nameserver` entries, then save the file. +4. After verifying your changes, save the file. 5. To add your new nameserver entries to {% data variables.product.product_location %}, run the following: ```shell $ sudo service resolvconf restart diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-tls.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-tls.md index 48293c4994..e3a251095c 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-tls.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-tls.md @@ -1,9 +1,9 @@ --- -title: TLSの設定 -intro: '信頼できる認証機関によって署名された証明書を使用できるように、{% data variables.product.product_location %} で Transport Layer Security (TLS) を設定できます。' +title: Configuring TLS +intro: 'You can configure Transport Layer Security (TLS) on {% data variables.product.product_location %} so that you can use a certificate that is signed by a trusted certificate authority.' redirect_from: - - /enterprise/admin/articles/ssl-configuration/ - - /enterprise/admin/guides/installation/about-tls/ + - /enterprise/admin/articles/ssl-configuration + - /enterprise/admin/guides/installation/about-tls - /enterprise/admin/installation/configuring-tls - /enterprise/admin/configuration/configuring-tls - /admin/configuration/configuring-tls @@ -17,53 +17,55 @@ topics: - Networking - Security --- +## About Transport Layer Security -## Transport Layer Securityについて +TLS, which replaced SSL, is enabled and configured with a self-signed certificate when {% data variables.product.prodname_ghe_server %} is started for the first time. As self-signed certificates are not trusted by web browsers and Git clients, these clients will report certificate warnings until you disable TLS or upload a certificate signed by a trusted authority, such as Let's Encrypt. -SSL に代わる TLS は、{% data variables.product.prodname_ghe_server %} の初回起動時に有効になり、自己署名証明書で設定されます。 自己署名証明書は Web ブラウザや Git クライアントから信頼されていないため、TLS を無効にするか、Let's Encrypt などの信頼できる機関によって署名された証明書をアップロードするまで、これらのクライアントは証明書の警告を報告します。 - -SSL が有効な場合、{% data variables.product.prodname_ghe_server %} アプライアンスは HTTP Strict Transport Security ヘッダーを送信します。 TLSを無効化すると、ブラウザはHTTPへのプロトコルダウングレードを許さないので、ユーザはアプライアンスにアクセスできなくなります。 詳しい情報についてはWikipediaの"[HTTP Strict Transport Security](https://ja.wikipedia.org/wiki/HTTP_Strict_Transport_Security)"を参照してください。 +The {% data variables.product.prodname_ghe_server %} appliance will send HTTP Strict Transport Security headers when SSL is enabled. Disabling TLS will cause users to lose access to the appliance, because their browsers will not allow a protocol downgrade to HTTP. For more information, see "[HTTP Strict Transport Security (HSTS)](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security)" on Wikipedia. {% data reusables.enterprise_installation.terminating-tls %} -ユーザが2要素認証のFIDO U2Fを利用できるようにするには、インスタンスでTLSを有効化しなければなりません。 詳しい情報については「[2 要素認証の設定](/articles/configuring-two-factor-authentication)」を参照してください。 +To allow users to use FIDO U2F for two-factor authentication, you must enable TLS for your instance. For more information, see "[Configuring two-factor authentication](/articles/configuring-two-factor-authentication)." -## 必要な環境 +## Prerequisites -プロダクションでTLSを利用するには、暗号化されていないPEMフォーマットで、信頼済みの証明書認証局によって署名された証明書がなければなりません。 +To use TLS in production, you must have a certificate in an unencrypted PEM format signed by a trusted certificate authority. -また、証明書には"[Subdomain Isolationの有効化](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation#about-subdomain-isolation)"のリストにあるサブドメインに設定されたSubject Alternative Namesが必要で、中間証明書認証局によって署名されたものであれば、完全な証明書チェーンを含んでいる必要があります。 詳しい情報についてはWikipediaの"[Subject Alternative Name](http://en.wikipedia.org/wiki/SubjectAltName)"を参照してください。 +Your certificate will also need Subject Alternative Names configured for the subdomains listed in "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation#about-subdomain-isolation)" and will need to include the full certificate chain if it has been signed by an intermediate certificate authority. For more information, see "[Subject Alternative Name](http://en.wikipedia.org/wiki/SubjectAltName)" on Wikipedia. -`ghe-ssl-generate-csr` コマンドを使用すれば、インスタンス用の証明書署名要求 (CSR) を生成できます。 詳細は「[コマンドラインユーティリティ](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities/#ghe-ssl-generate-csr)」を参照してください。 +You can generate a certificate signing request (CSR) for your instance using the `ghe-ssl-generate-csr` command. For more information, see "[Command-line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities/#ghe-ssl-generate-csr)." -## カスタムのTLS証明書のアップロード +## Uploading a custom TLS certificate {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} {% data reusables.enterprise_management_console.select-tls-only %} -4. [TLS Protocol support] で、許可するプロトコルを選択します。 ![TLS プロトコルを選択するオプションを備えたラジオボタン](/assets/images/enterprise/management-console/tls-protocol-support.png) -5. "Certificate(証明書)"の下で**Choose File(ファイルの選択)**をクリックし、インストールしたいTLS証明書もしくは証明書チェーン(PEMフォーマット)を選択してください。 このファイルは通常、*.pem*、*.crt*、*.cer* といった拡張子を持ちます。 ![TLS 証明書ファイルを見つけるためのボタン](/assets/images/enterprise/management-console/install-tls-certificate.png) -6. Under "Unencrypted key", click **Choose File** to choose an RSA key (in PEM format) to install. このファイルは通常*.key*という拡張子を持ちます。 ![TLS鍵ファイルを見つけるためのボタン](/assets/images/enterprise/management-console/install-tls-key.png) +4. Under "TLS Protocol support", select the protocols you want to allow. + ![Radio buttons with options to choose TLS protocols](/assets/images/enterprise/management-console/tls-protocol-support.png) +5. Under "Certificate", click **Choose File** to choose a TLS certificate or certificate chain (in PEM format) to install. This file will usually have a *.pem*, *.crt*, or *.cer* extension. + ![Button to find TLS certificate file](/assets/images/enterprise/management-console/install-tls-certificate.png) +6. Under "Unencrypted key", click **Choose File** to choose an RSA key (in PEM format) to install. This file will usually have a *.key* extension. + ![Button to find TLS key file](/assets/images/enterprise/management-console/install-tls-key.png) {% warning %} - **Warning**: Your key must be an RSA key and must not have a passphrase. 詳しい情報については"[キーファイルからのパスフレーズの除去](/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)"を参照してください。 + **Warning**: Your key must be an RSA key and must not have a passphrase. For more information, see "[Removing the passphrase from your key file](/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)". {% endwarning %} {% data reusables.enterprise_management_console.save-settings %} -## Let's Encryptのサポートについて +## About Let's Encrypt support -Let's Encryptは公開の証明書認証者で、ACMEプロトコルを使ってブラウザが信頼するTLS証明書を、無料で自動的に発行してくれます。 アプライアンスのためのLet's Encryptの証明書は、手動のメンテナンスを必要とせず自動的に取得及び更新できます。 +Let's Encrypt is a public certificate authority that issues free, automated TLS certificates that are trusted by browsers using the ACME protocol. You can automatically obtain and renew Let's Encrypt certificates on your appliance without any required manual maintenance. {% data reusables.enterprise_installation.lets-encrypt-prerequisites %} -Let's Encryptを使ったTLS証明書管理の自動化を有効にすると、{% data variables.product.product_location %}はLet's Encryptのサーバに接続して証明書を取得します。 証明書を更新するには、Let's EncryptのサーバはインバウンドのHTTPリクエストで設定されたドメイン名の制御を検証しなければなりません。 +When you enable automation of TLS certificate management using Let's Encrypt, {% data variables.product.product_location %} will contact the Let's Encrypt servers to obtain a certificate. To renew a certificate, Let's Encrypt servers must validate control of the configured domain name with inbound HTTP requests. -また、{% data variables.product.product_location %}上でコマンドラインユーティリティの`ghe-ssl-acme`を使っても、自動的にLet's Encryptの証明書を生成できます。 詳細は「[コマンドラインユーティリティ](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-ssl-acme)」を参照してください。 +You can also use the `ghe-ssl-acme` command line utility on {% data variables.product.product_location %} to automatically generate a Let's Encrypt certificate. For more information, see "[Command-line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-ssl-acme)." -## Let's Encryptを使ったTLSの設定 +## Configuring TLS using Let's Encrypt {% data reusables.enterprise_installation.lets-encrypt-prerequisites %} @@ -71,9 +73,12 @@ Let's Encryptを使ったTLS証明書管理の自動化を有効にすると、{ {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} {% data reusables.enterprise_management_console.select-tls-only %} -5. **Enable automation of TLS certificate management using Let's Encrypt(Let's Encryptを使った自動的なTLS証明書管理の有効化)**を選択してください。 ![[Let's Encrypt] を有効化するチェックボックス](/assets/images/enterprise/management-console/lets-encrypt-checkbox.png) +5. Select **Enable automation of TLS certificate management using Let's Encrypt**. + ![Checkbox to enable Let's Encrypt](/assets/images/enterprise/management-console/lets-encrypt-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} {% data reusables.enterprise_management_console.privacy %} -7. **Request TLS certificate(TLS証明書のリクエスト)**をクリックしてください。 ![[Request TLS certificate] ボタン](/assets/images/enterprise/management-console/request-tls-button.png) -8. Wait for the "Status" to change from "STARTED" to "DONE". ![Let's Encrypt status](/assets/images/enterprise/management-console/lets-encrypt-status.png) -9. **Save configuration(設定の保存)**をクリックしてください。 +7. Click **Request TLS certificate**. + ![Request TLS certificate button](/assets/images/enterprise/management-console/request-tls-button.png) +8. Wait for the "Status" to change from "STARTED" to "DONE". + ![Let's Encrypt status](/assets/images/enterprise/management-console/lets-encrypt-status.png) +9. Click **Save configuration**. diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md index 73d5675949..24d09e4f83 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md @@ -1,8 +1,8 @@ --- -title: Subdomain Isolationの有効化 -intro: 'Subdomain Isolation をセットアップすれば、ユーザーが提供したコンテンツを {% data variables.product.prodname_ghe_server %} アプライアンスの他の部分から安全に分離できるようになります。' +title: Enabling subdomain isolation +intro: 'You can set up subdomain isolation to securely separate user-supplied content from other portions of your {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - - /enterprise/admin/guides/installation/about-subdomain-isolation/ + - /enterprise/admin/guides/installation/about-subdomain-isolation - /enterprise/admin/installation/enabling-subdomain-isolation - /enterprise/admin/configuration/enabling-subdomain-isolation - /admin/configuration/enabling-subdomain-isolation @@ -17,49 +17,49 @@ topics: - Security shortTitle: Enable subdomain isolation --- +## About subdomain isolation -## Subdomain Isolationについて +Subdomain isolation mitigates cross-site scripting and other related vulnerabilities. For more information, see "[Cross-site scripting](http://en.wikipedia.org/wiki/Cross-site_scripting)" on Wikipedia. We highly recommend that you enable subdomain isolation on {% data variables.product.product_location %}. -Subdomain Isolationは、クロスサイトスクリプティングや関連するその他の脆弱性を緩和します。 詳しい情報については"Wikipediaの[クロスサイトスクリプティング](http://en.wikipedia.org/wiki/Cross-site_scripting)"を参照してください。 {% data variables.product.product_location %}ではSubdomain Isolationを有効化することを強くお勧めします。 +When subdomain isolation is enabled, {% data variables.product.prodname_ghe_server %} replaces several paths with subdomains. After enabling subdomain isolation, attempts to access the previous paths for some user-supplied content, such as `http(s)://HOSTNAME/raw/`, may return `404` errors. -Subdomain Isolation が有効な場合、{% data variables.product.prodname_ghe_server %} はいくつかのパスをサブドメインで置き換えます。 After enabling subdomain isolation, attempts to access the previous paths for some user-supplied content, such as `http(s)://HOSTNAME/raw/`, may return `404` errors. +| Path without subdomain isolation | Path with subdomain isolation | +| --- | --- | +| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | +| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | +| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | +| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | +| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | +| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | +| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | +| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | +| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | +| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` | {% ifversion ghes %} +| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} +| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` +| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` +| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` +| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} -| Subdomain Isolationなしのパス | Subdomain Isolationされたパス | -| -------------------------------------- | ----------------------------------------------------------- | -| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | -| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | -| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | -| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | -| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | -| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | -| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | -| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | -| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | -| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` |{% ifversion ghes %} -| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} -| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` | -| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` | -| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` | -| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} - -## 必要な環境 +## Prerequisites {% data reusables.enterprise_installation.disable-github-pages-warning %} -Subdomain Isolationを有効化する前に、新しいドメインに合わせてネットワークを設定しなければなりません。 +Before you enable subdomain isolation, you must configure your network settings for your new domain. -- 有効なドメイン名を、IP アドレスではなくホスト名として指定します。 詳しい情報については、「[ホスト名を設定する](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)」を参照してください。 +- Specify a valid domain name as your hostname, instead of an IP address. For more information, see "[Configuring a hostname](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)." {% data reusables.enterprise_installation.changing-hostname-not-supported %} -- 上記のサブドメインに対して、ワイルドカードのドメインネームシステム (DNS) レコードまたは個々の DNS レコードをセットアップします。 各サブドメイン用に複数のレコードを作成せずに済むよう、サーバのIPアドレスを指す`*.HOSTNAME`のAレコードを作成することをおすすめします。 -- `HOSTNAME` とワイルドカードのドメイン `*.HOSTNAME` の両方に対するサブジェクト代替名 (SAN) が記載された、`*.HOSTNAME` に対するワイルドカードの Transport Layer Security (TLS) 証明書を取得します。 たとえば、ホスト名が `github.octoinc.com` である場合は、Common Name の値が `*.github.octoinc.com` に設定され、SAN の値が `github.octoinc.com` と `*.github.octoinc.com` の両方に設定された証明書を取得します。 -- アプライアンスで TLS を有効にします。 詳しい情報については"[TLSの設定](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)"を参照してください +- Set up a wildcard Domain Name System (DNS) record or individual DNS records for the subdomains listed above. We recommend creating an A record for `*.HOSTNAME` that points to your server's IP address so you don't have to create multiple records for each subdomain. +- Get a wildcard Transport Layer Security (TLS) certificate for `*.HOSTNAME` with a Subject Alternative Name (SAN) for both `HOSTNAME` and the wildcard domain `*.HOSTNAME`. For example, if your hostname is `github.octoinc.com`, get a certificate with the Common Name value set to `*.github.octoinc.com` and a SAN value set to both `github.octoinc.com` and `*.github.octoinc.com`. +- Enable TLS on your appliance. For more information, see "[Configuring TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)." -## Subdomain Isolationの有効化 +## Enabling subdomain isolation {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. **Subdomain isolation (recommended)(Subdomain Isolation(推奨))**を選択してください。 ![Subdomain Isolation を有効化するチェックボックス](/assets/images/enterprise/management-console/subdomain-isolation.png) +4. Select **Subdomain isolation (recommended)**. + ![Checkbox to enable subdomain isolation](/assets/images/enterprise/management-console/subdomain-isolation.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/index.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/index.md index a29b1da297..e3a5d06573 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/index.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/index.md @@ -1,13 +1,13 @@ --- -title: ネットワークを設定する +title: Configuring network settings redirect_from: - - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl/ - - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings/ + - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl + - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings + - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings + - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings - /enterprise/admin/installation/configuring-your-github-enterprise-server-network-settings - /enterprise/admin/configuration/configuring-network-settings -intro: 'ネットワークで必要な DNS ネームサーバーとホスト名を使用して {% data variables.product.prodname_ghe_server %} を設定します。 プロキシサーバあるいはファイアウォールルールを設定することもできます。 管理及びユーザのために特定のポートへのアクセスを許可しなければなりません。' +intro: 'Configure {% data variables.product.prodname_ghe_server %} with the DNS nameservers and hostname required in your network. You can also configure a proxy server or firewall rules. You must allow access to certain ports for administrative and user purposes.' versions: ghes: '*' topics: diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/network-ports.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/network-ports.md index 4fcd17c1a7..80cfbb860b 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/network-ports.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/network-ports.md @@ -1,10 +1,10 @@ --- title: Network ports redirect_from: - - /enterprise/admin/articles/configuring-firewalls/ - - /enterprise/admin/articles/firewall/ - - /enterprise/admin/guides/installation/network-configuration/ - - /enterprise/admin/guides/installation/network-ports-to-open/ + - /enterprise/admin/articles/configuring-firewalls + - /enterprise/admin/articles/firewall + - /enterprise/admin/guides/installation/network-configuration + - /enterprise/admin/guides/installation/network-ports-to-open - /enterprise/admin/installation/network-ports - /enterprise/admin/configuration/network-ports - /admin/configuration/network-ports diff --git a/translations/ja-JP/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md b/translations/ja-JP/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md index 8f8fdadc5a..b720b6c9a0 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md +++ b/translations/ja-JP/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md @@ -2,7 +2,7 @@ title: Using GitHub Enterprise Server with a load balancer intro: 'Use a load balancer in front of a single {% data variables.product.prodname_ghe_server %} appliance or a pair of appliances in a High Availability configuration.' redirect_from: - - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer/ + - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer - /enterprise/admin/installation/using-github-enterprise-server-with-a-load-balancer - /enterprise/admin/configuration/using-github-enterprise-server-with-a-load-balancer - /admin/configuration/using-github-enterprise-server-with-a-load-balancer diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md index eb3a59140b..c0e8a764c7 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md @@ -1,13 +1,13 @@ --- -title: 管理シェル (SSH) にアクセスする +title: Accessing the administrative shell (SSH) redirect_from: - - /enterprise/admin/articles/ssh-access/ - - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access/ - - /enterprise/admin/guides/installation/administrative-shell-ssh-access/ - - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey/ + - /enterprise/admin/articles/ssh-access + - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access + - /enterprise/admin/guides/installation/administrative-shell-ssh-access + - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey - /enterprise/admin/installation/accessing-the-administrative-shell-ssh - /enterprise/admin/configuration/accessing-the-administrative-shell-ssh - /admin/configuration/accessing-the-administrative-shell-ssh @@ -21,29 +21,29 @@ topics: - SSH shortTitle: Access the admin shell (SSH) --- +## About administrative shell access -## 管理シェルでのアクセスについて +If you have SSH access to the administrative shell, you can run {% data variables.product.prodname_ghe_server %}'s command line utilities. SSH access is also useful for troubleshooting, running backups, and configuring replication. Administrative SSH access is managed separately from Git SSH access and is accessible only via port 122. -管理シェルへの SSH アクセスがある場合は、{% data variables.product.prodname_ghe_server %} のコマンドラインユーティリティを実行できます。 SSHでのアクセスは、トラブルシューティングやバックアップの実行、レプリケーションの設定にも役立ちます。 管理のためのSSHアクセスはGitのSSHアクセスとは別に管理され、ポート122を通じてのみアクセスできます。 +## Enabling access to the administrative shell via SSH -## SSH経由での管理シェルへのアクセスの有効化 - -管理のためのSSHアクセスを有効化するには、SSHの公開鍵をインスタンスの認証済みキーのリストに追加しなければなりません。 +To enable administrative SSH access, you must add your SSH public key to your instance's list of authorized keys. {% tip %} -**Tip:**認証済みSSH鍵への変更は、すぐに有効になります。 +**Tip:** Changes to authorized SSH keys take effect immediately. {% endtip %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -3. "SSH access(SSHでのアクセス)"の下のテキストボックスに鍵を貼り付け、**Add key(鍵の追加)**をクリックしてください。 ![SSHキーを追加するためのテキストボックスおよびボタン](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) +3. Under "SSH access", paste your key into the text box, then click **Add key**. + ![Text box and button for adding an SSH key](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) {% data reusables.enterprise_management_console.save-settings %} -## SSH経由での管理シェルへの接続 +## Connecting to the administrative shell over SSH -SSH鍵をリストに追加したら、`admin`ユーザとしてインスタンスのポート122にSSHで接続してください。 +After you've added your SSH key to the list, connect to the instance over SSH as the `admin` user on port 122. ```shell $ ssh -p 122 admin@github.example.com @@ -51,17 +51,17 @@ Last login: Sun Nov 9 07:53:29 2014 from 169.254.1.1 admin@github-example-com:~$ █ ``` -### SSH 接続問題のトラブルシューティング +### Troubleshooting SSH connection problems -SSH 経由で {% data variables.product.product_location %} に接続しようとしたときに、`Permission denied (publickey)` というエラーが発生した場合は、ポート 122 経由で接続していることを確認してください。 使用するプライベートな SSH キーを明確に指定することが必要になる場合があります。 +If you encounter the `Permission denied (publickey)` error when you try to connect to {% data variables.product.product_location %} via SSH, confirm that you are connecting over port 122. You may need to explicitly specify which private SSH key to use. -コマンドラインでプライベートな SSH キーを指定するには、`-i` 引数を付けて `ssh` を実行します。 +To specify a private SSH key using the command line, run `ssh` with the `-i` argument. ```shell ssh -i /path/to/ghe_private_key -p 122 admin@<em>hostname</em> ``` -SSH 設定ファイル (`~/.ssh/config`) を使用して SSH 秘密キーを指定することもできます。 +You can also specify a private SSH key using the SSH configuration file (`~/.ssh/config`). ```shell Host <em>hostname</em> @@ -70,10 +70,10 @@ Host <em>hostname</em> Port 122 ``` -## ローカルコンソールを使った管理シェルへのアクセス +## Accessing the administrative shell using the local console -たとえばSSHが利用でいないような緊急時には、管理シェルにローカルでアクセスできます。 `admin` ユーザーとしてサインインし、{% data variables.product.prodname_ghe_server %} の初期セットアップ中に設定されたパスワードを使用します。 +In an emergency situation, for example if SSH is unavailable, you can access the administrative shell locally. Sign in as the `admin` user and use the password established during initial setup of {% data variables.product.prodname_ghe_server %}. -## 管理シェルへのアクセス制限 +## Access limitations for the administrative shell -管理シェルへのアクセスは、トラブルシューティングとドキュメント化された運用手順の実行時のみ許されます。 システムやアプリケーションのファイル変更、プログラムの実行、サポートされていないソフトウェアパッケージのインストールは、サポート契約を無効にすることがあります。 サポート契約の下で許されているアクティビティについて質問があれば、{% data variables.contact.contact_ent_support %} に連絡してください。 +Administrative shell access is permitted for troubleshooting and performing documented operations procedures only. Modifying system and application files, running programs, or installing unsupported software packages may void your support contract. Please contact {% data variables.contact.contact_ent_support %} if you have a question about the activities allowed by your support contract. diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md index ffc53c7878..d78d9ed5dd 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md @@ -2,12 +2,12 @@ title: Accessing the management console intro: '{% data reusables.enterprise_site_admin_settings.about-the-management-console %}' redirect_from: - - /enterprise/admin/articles/about-the-management-console/ - - /enterprise/admin/articles/management-console-for-emergency-recovery/ - - /enterprise/admin/articles/web-based-management-console/ - - /enterprise/admin/categories/management-console/ - - /enterprise/admin/articles/accessing-the-management-console/ - - /enterprise/admin/guides/installation/web-based-management-console/ + - /enterprise/admin/articles/about-the-management-console + - /enterprise/admin/articles/management-console-for-emergency-recovery + - /enterprise/admin/articles/web-based-management-console + - /enterprise/admin/categories/management-console + - /enterprise/admin/articles/accessing-the-management-console + - /enterprise/admin/guides/installation/web-based-management-console - /enterprise/admin/installation/accessing-the-management-console - /enterprise/admin/configuration/accessing-the-management-console - /admin/configuration/accessing-the-management-console diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md index 2e8a16c345..2c3a6f3bb8 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md @@ -2,8 +2,8 @@ title: Command-line utilities intro: '{% data variables.product.prodname_ghe_server %} includes a variety of utilities to help resolve particular problems or perform specific tasks.' redirect_from: - - /enterprise/admin/articles/viewing-all-services/ - - /enterprise/admin/articles/command-line-utilities/ + - /enterprise/admin/articles/viewing-all-services + - /enterprise/admin/articles/command-line-utilities - /enterprise/admin/installation/command-line-utilities - /enterprise/admin/configuration/command-line-utilities - /admin/configuration/command-line-utilities diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md index 3b90a9cf47..7a347ea3ce 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md @@ -2,15 +2,15 @@ title: Configuring backups on your appliance shortTitle: Configuring backups redirect_from: - - /enterprise/admin/categories/backups-and-restores/ - - /enterprise/admin/articles/backup-and-recovery/ - - /enterprise/admin/articles/backing-up-github-enterprise/ - - /enterprise/admin/articles/restoring-github-enterprise/ - - /enterprise/admin/articles/backing-up-repository-data/ - - /enterprise/admin/articles/restoring-enterprise-data/ - - /enterprise/admin/articles/restoring-repository-data/ - - /enterprise/admin/articles/backing-up-enterprise-data/ - - /enterprise/admin/guides/installation/backups-and-disaster-recovery/ + - /enterprise/admin/categories/backups-and-restores + - /enterprise/admin/articles/backup-and-recovery + - /enterprise/admin/articles/backing-up-github-enterprise + - /enterprise/admin/articles/restoring-github-enterprise + - /enterprise/admin/articles/backing-up-repository-data + - /enterprise/admin/articles/restoring-enterprise-data + - /enterprise/admin/articles/restoring-repository-data + - /enterprise/admin/articles/backing-up-enterprise-data + - /enterprise/admin/guides/installation/backups-and-disaster-recovery - /enterprise/admin/installation/configuring-backups-on-your-appliance - /enterprise/admin/configuration/configuring-backups-on-your-appliance - /admin/configuration/configuring-backups-on-your-appliance diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md index 908386931e..e0987ad337 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md @@ -2,10 +2,10 @@ title: Configuring email for notifications intro: 'To make it easy for users to respond quickly to activity on {% data variables.product.product_name %}, you can configure {% data variables.product.product_location %} to send email notifications for issue, pull request, and commit comments.' redirect_from: - - /enterprise/admin/guides/installation/email-configuration/ - - /enterprise/admin/articles/configuring-email/ - - /enterprise/admin/articles/troubleshooting-email/ - - /enterprise/admin/articles/email-configuration-and-troubleshooting/ + - /enterprise/admin/guides/installation/email-configuration + - /enterprise/admin/articles/configuring-email + - /enterprise/admin/articles/troubleshooting-email + - /enterprise/admin/articles/email-configuration-and-troubleshooting - /enterprise/admin/user-management/configuring-email-for-notifications - /admin/configuration/configuring-email-for-notifications versions: diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md index d5d41ee13a..d341653ffe 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md @@ -2,12 +2,12 @@ title: Configuring GitHub Pages for your enterprise intro: 'You can enable or disable {% data variables.product.prodname_pages %} for your enterprise{% ifversion ghes %} and choose whether to make sites publicly accessible{% endif %}.' redirect_from: - - /enterprise/admin/guides/installation/disabling-github-enterprise-pages/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-pages/ + - /enterprise/admin/guides/installation/disabling-github-enterprise-pages + - /enterprise/admin/guides/installation/configuring-github-enterprise-pages - /enterprise/admin/installation/configuring-github-pages-on-your-appliance - /enterprise/admin/configuration/configuring-github-pages-on-your-appliance - /admin/configuration/configuring-github-pages-on-your-appliance - - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise/ + - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise - /admin/configuration/configuring-github-pages-for-your-enterprise versions: ghes: '*' diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md index e5059a4bca..0d0af44dc0 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md @@ -1,11 +1,11 @@ --- -title: 時間の同期の設定 -intro: '{% data variables.product.prodname_ghe_server %} は、NTP サーバーに接続することによって自動的に時刻を同期させます。 時刻の同期に使われるNTPサーバは設定できます。あるいはデフォルトのNTPサーバを利用することもできます。' +title: Configuring time synchronization +intro: '{% data variables.product.prodname_ghe_server %} automatically synchronizes its clock by connecting to NTP servers. You can set the NTP servers that are used to synchronize the clock, or you can use the default NTP servers.' redirect_from: - - /enterprise/admin/articles/adjusting-the-clock/ - - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings/ - - /enterprise/admin/articles/setting-ntp-servers/ - - /enterprise/admin/categories/time/ + - /enterprise/admin/articles/adjusting-the-clock + - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings + - /enterprise/admin/articles/setting-ntp-servers + - /enterprise/admin/categories/time - /enterprise/admin/installation/configuring-time-synchronization - /enterprise/admin/configuration/configuring-time-synchronization - /admin/configuration/configuring-time-synchronization @@ -19,29 +19,31 @@ topics: - Networking shortTitle: Configure time settings --- - -## デフォルトのNTPサーバの変更 +## Changing the default NTP servers {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. 左のサイドバーで**Time(時間)**をクリックしてください。 ![{% data variables.enterprise.management_console %} サイドバーでの [Time] ボタン](/assets/images/enterprise/management-console/sidebar-time.png) -3. "Primary NTP server(プライマリのNTPサーバ)"の下で、プライマリNTPサーバのホスト名を入力してください。 "Secondary NTP server(セカンダリのNTPサーバ)"の下で、セカンダリのNTPサーバのホスト名を入力してください。 ![{% data variables.enterprise.management_console %} でのプライマリとセカンダリの NTP サーバーのためのフィールド](/assets/images/enterprise/management-console/ntp-servers.png) -4. ページの下部で **Save settings(設定の保存)**をクリックしてください。 ![{% data variables.enterprise.management_console %} での [Save settings] ボタン](/assets/images/enterprise/management-console/save-settings.png) -5. 設定が完了するのを待ってください。 +2. In the left sidebar, click **Time**. + ![The Time button in the {% data variables.enterprise.management_console %} sidebar](/assets/images/enterprise/management-console/sidebar-time.png) +3. Under "Primary NTP server," type the hostname of the primary NTP server. Under "Secondary NTP server," type the hostname of the secondary NTP server. + ![The fields for primary and secondary NTP servers in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/ntp-servers.png) +4. At the bottom of the page, click **Save settings**. + ![The Save settings button in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/save-settings.png) +5. Wait for the configuration run to complete. -## 大きな時間の乱れの修正 +## Correcting a large time drift -NTP プロトコルは小さな時間同期の不一致を継続的に修正します。 管理シェルを使用すれば、時間を直ちに同期させることができます。 +The NTP protocol continuously corrects small time synchronization discrepancies. You can use the administrative shell to synchronize time immediately. {% note %} -**ノート:** - - 協定世界時 (UTC) ゾーンは変更できません。 - - ハイパーバイザーが仮想マシンの時刻を設定しようとするのを回避しなければなりません。 詳しい情報については、仮想化プロバイダが提供しているドキュメンテーションを参照してください。 +**Notes:** + - You can't modify the Coordinated Universal Time (UTC) zone. + - You should prevent your hypervisor from trying to set the virtual machine's clock. For more information, see the documentation provided by the virtualization provider. {% endnote %} -- `chronyc` コマンドを使用して、サーバーを設定済みの NTP サーバーと同期させます。 例: +- Use the `chronyc` command to synchronize the server with the configured NTP server. For example: ```shell $ sudo chronyc -a makestep diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md index 6f75ed428e..8444f9199d 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md @@ -1,13 +1,13 @@ --- -title: メンテナンスモードの有効化とスケジューリング -intro: '標準的なメンテナンス手順のうち、{% data variables.product.product_location %} のアップグレードやバックアップの復元などは、通常の使用のためにインスタンスをオフラインにしなければならないものがあります。' +title: Enabling and scheduling maintenance mode +intro: 'Some standard maintenance procedures, such as upgrading {% data variables.product.product_location %} or restoring backups, require the instance to be taken offline for normal use.' redirect_from: - - /enterprise/admin/maintenance-mode/ - - /enterprise/admin/categories/maintenance-mode/ - - /enterprise/admin/articles/maintenance-mode/ - - /enterprise/admin/articles/enabling-maintenance-mode/ - - /enterprise/admin/articles/disabling-maintenance-mode/ - - /enterprise/admin/guides/installation/maintenance-mode/ + - /enterprise/admin/maintenance-mode + - /enterprise/admin/categories/maintenance-mode + - /enterprise/admin/articles/maintenance-mode + - /enterprise/admin/articles/enabling-maintenance-mode + - /enterprise/admin/articles/disabling-maintenance-mode + - /enterprise/admin/guides/installation/maintenance-mode - /enterprise/admin/installation/enabling-and-scheduling-maintenance-mode - /enterprise/admin/configuration/enabling-and-scheduling-maintenance-mode - /admin/configuration/enabling-and-scheduling-maintenance-mode @@ -21,50 +21,53 @@ topics: - Upgrades shortTitle: Configure maintenance mode --- +## About maintenance mode -## メンテナンスモードについて +Some types of operations require that you take {% data variables.product.product_location %} offline and put it into maintenance mode: +- Upgrading to a new version of {% data variables.product.prodname_ghe_server %} +- Increasing CPU, memory, or storage resources allocated to the virtual machine +- Migrating data from one virtual machine to another +- Restoring data from a {% data variables.product.prodname_enterprise_backup_utilities %} snapshot +- Troubleshooting certain types of critical application issues -操作の種類によっては、{% data variables.product.product_location %} をオフラインにしてメンテナンスモードにする必要があります。 -- {% data variables.product.prodname_ghe_server %} の新規バージョンにアップグレードする -- 仮想マシンに割り当てられている CPU、メモリ、またはストレージリソースを拡大する -- ある仮想マシンから別の仮想マシンへデータを移行する -- {% data variables.product.prodname_enterprise_backup_utilities %} スナップショットからデータを復元する -- 特定の種類の重要なアプリケーション問題のトラブルシューティング +We recommend that you schedule a maintenance window for at least 30 minutes in the future to give users time to prepare. When a maintenance window is scheduled, all users will see a banner when accessing the site. -メンテナンスウィンドウのスケジュールは、ユーザに準備時間を与えるために少なくとも30分は先にすることをおすすめします。 メンテナンスウィンドウがスケジューリングされると、すべてのユーザにはサイトにアクセスしたときにバナーが表示されます。 +![End user banner about scheduled maintenance](/assets/images/enterprise/maintenance/maintenance-scheduled.png) -![スケジューリングされたメンテナンスに関するエンドユーザ向けバナー](/assets/images/enterprise/maintenance/maintenance-scheduled.png) +When the instance is in maintenance mode, all normal HTTP and Git access is refused. Git fetch, clone, and push operations are also rejected with an error message indicating that the site is temporarily unavailable. GitHub Actions jobs will not be executed. Visiting the site in a browser results in a maintenance page. -インスタンスがメンテナンスモードに入ると、通常のHTTP及びGitアクセスはすべて拒否されます。 Git fetch、clone、pushの操作も、サイトが一時的に利用できなくなっていることを示すエラーメッセージと共に拒否されます。 GitHub Actions jobs will not be executed. サイトにブラウザーでアクセスすると、メンテナンスページが表示されます。 +![The maintenance mode splash screen](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) -![メンテナンスモードのスプラッシュスクリーン](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) - -## メンテナンスモードの即時有効化あるいは後のためのメンテナンスウィンドウのスケジューリング +## Enabling maintenance mode immediately or scheduling a maintenance window for a later time {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. {% data variables.enterprise.management_console %}の上部で**Maintenance(メンテナンス)**をクリックしてください ![[Maintenance] タブ](/assets/images/enterprise/management-console/maintenance-tab.png) -3. "Enable and schedule(有効化とスケジュール)"の下で、即時にメンテナンスモードを有効化するか、将来にメンテナンスウィンドウをスケジューリングするかを決めてください。 - - メンテナンスモードを直ちに有効にするには、プルダウンメニューを使用して [**now**] をクリックします。 ![メンテナンスモードを有効にするオプションが選択されたドロップダウンメニュー](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) - - 今後のメンテナンス時間枠をスケジュール設定するには、ドロップダウンメニューを使用して開始時間をクリックします。 ![メンテナンス時間枠を 2 時間でスケジュール設定するオプションが選択されたドロップダウンメニュー](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) -4. **Enable maintenance mode(メンテナンスモードの有効化)**を選択してください。 ![メンテナンスモードの有効化とスケジューリングのためのチェックボックス](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) +2. At the top of the {% data variables.enterprise.management_console %}, click **Maintenance**. + ![Maintenance tab](/assets/images/enterprise/management-console/maintenance-tab.png) +3. Under "Enable and schedule", decide whether to enable maintenance mode immediately or to schedule a maintenance window for a future time. + - To enable maintenance mode immediately, use the drop-down menu and click **now**. + ![Drop-down menu with the option to enable maintenance mode now selected](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) + - To schedule a maintenance window for a future time, use the drop-down menu and click a start time. + ![Drop-down menu with the option to schedule a maintenance window in two hours selected](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) +4. Select **Enable maintenance mode**. + ![Checkbox for enabling or scheduling maintenance mode](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} -## {% data variables.product.prodname_enterprise_api %}でのメンテナンスモードのスケジューリング +## Scheduling maintenance mode with {% data variables.product.prodname_enterprise_api %} -{% data variables.product.prodname_enterprise_api %}では、様々な時間や日付にメンテナンスをスケジューリングできます。 詳しい情報については、「[Management Console](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)」を参照してください。 +You can schedule maintenance for different times or dates with {% data variables.product.prodname_enterprise_api %}. For more information, see "[Management Console](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)." -## クラスタ内の全ノードでのメンテナンスモードの有効化もしくは無効化 +## Enabling or disabling maintenance mode for all nodes in a cluster -`ghe-cluster-maintenance`ユーティリティを使えば、クラスタ内のすべてのノードでメンテナンスモードの設定や解除ができます。 +With the `ghe-cluster-maintenance` utility, you can set or unset maintenance mode for every node in a cluster. ```shell $ ghe-cluster-maintenance -h -# オプションの表示 +# Shows options $ ghe-cluster-maintenance -q -# 現在のモードの問い合わせ +# Queries the current mode $ ghe-cluster-maintenance -s -# メンテナンスモードの設定 +# Sets maintenance mode $ ghe-cluster-maintenance -u -# メンテナンスモードの解除 +# Unsets maintenance mode ``` diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md index 2d12b5589a..a4343fa9a8 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md @@ -1,10 +1,10 @@ --- -title: プライベートモードの有効化 -intro: 'プライベートモードでは、{% data variables.product.prodname_ghe_server %} はインストールにアクセスするすべてのユーザーにサインインを求めます。' +title: Enabling private mode +intro: 'In private mode, {% data variables.product.prodname_ghe_server %} requires every user to sign in to access the installation.' redirect_from: - - /enterprise/admin/articles/private-mode/ - - /enterprise/admin/guides/installation/security/ - - /enterprise/admin/guides/installation/securing-your-instance/ + - /enterprise/admin/articles/private-mode + - /enterprise/admin/guides/installation/security + - /enterprise/admin/guides/installation/securing-your-instance - /enterprise/admin/installation/enabling-private-mode - /enterprise/admin/configuration/enabling-private-mode - /admin/configuration/enabling-private-mode @@ -21,15 +21,15 @@ topics: - Privacy - Security --- - -{% data variables.product.product_location %}がインターネット経由でパブリックにアクセス可能になっている場合、プライベートモードを有効化しなければなりません。 プライベートモードでは、ユーザは`git://`経由でリポジトリを匿名クローンすることはできません。 ビルトイン認証も有効化されている場合、新しいユーザがインスタンスにアカウントを作成するには管理者が招待しなければなりません。 詳しい情報については"[ビルトイン認証の利用](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)"を参照してください。 +You must enable private mode if {% data variables.product.product_location %} is publicly accessible over the Internet. In private mode, users cannot anonymously clone repositories over `git://`. If built-in authentication is also enabled, an administrator must invite new users to create an account on the instance. For more information, see "[Using built-in authentication](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)." {% data reusables.enterprise_installation.image-urls-viewable-warning %} -プライベートモードを有効にすると、認証されていない Git 操作 (および {% data variables.product.product_location %} へのネットワークアクセス権を所有する人) に、匿名 Git 読み取りアクセスを有効にしたインスタンスで、パブリックリポジトリのコードの読み取りを許可できます。 詳しい情報については[管理者にパブリックリポジトリの匿名Git読み取りアクセスの有効化を許可する](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)を参照してください。 +With private mode enabled, you can allow unauthenticated Git operations (and anyone with network access to {% data variables.product.product_location %}) to read a public repository's code on your instance with anonymous Git read access enabled. For more information, see "[Allowing admins to enable anonymous Git read access to public repositories](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)." {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -4. **Private mode(プライベートモード)**を選択してください。 ![プライベートモードを有効にするためのチェックボックス](/assets/images/enterprise/management-console/private-mode-checkbox.png) +4. Select **Private mode**. + ![Checkbox for enabling private mode](/assets/images/enterprise/management-console/private-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/index.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/index.md index aa921c6d45..ff4c39c4da 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/index.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/index.md @@ -2,10 +2,10 @@ title: Configuring your enterprise intro: 'After {% data variables.product.product_name %} is up and running, you can configure your enterprise to suit your organization''s needs.' redirect_from: - - /enterprise/admin/guides/installation/basic-configuration/ - - /enterprise/admin/guides/installation/administrative-tools/ - - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts/ - - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/basic-configuration + - /enterprise/admin/guides/installation/administrative-tools + - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts + - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance - /enterprise/admin/installation/configuring-the-github-enterprise-server-appliance - /enterprise/admin/configuration/configuring-your-enterprise versions: diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md index 610a1878cc..36e474e3e2 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md @@ -2,7 +2,7 @@ title: Site admin dashboard intro: '{% data reusables.enterprise_site_admin_settings.about-the-site-admin-dashboard %}' redirect_from: - - /enterprise/admin/articles/site-admin-dashboard/ + - /enterprise/admin/articles/site-admin-dashboard - /enterprise/admin/installation/site-admin-dashboard - /enterprise/admin/configuration/site-admin-dashboard - /admin/configuration/site-admin-dashboard diff --git a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md index 160da34288..40a22785f7 100644 --- a/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md +++ b/translations/ja-JP/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md @@ -1,9 +1,9 @@ --- -title: SSLのエラーのトラブルシューティング -intro: アプライアンスでSSLの問題が生じたなら、解決のためのアクションを取ってください。 +title: Troubleshooting SSL errors +intro: 'If you run into SSL issues with your appliance, you can take actions to resolve them.' redirect_from: - - /enterprise/admin/articles/troubleshooting-ssl-errors/ - - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration/ + - /enterprise/admin/articles/troubleshooting-ssl-errors + - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration - /enterprise/admin/installation/troubleshooting-ssl-errors - /enterprise/admin/configuration/troubleshooting-ssl-errors - /admin/configuration/troubleshooting-ssl-errors @@ -19,64 +19,63 @@ topics: - Troubleshooting shortTitle: Troubleshoot SSL errors --- +## Removing the passphrase from your key file -## 鍵ファイルからのパスフレーズの除去 +If you have a Linux machine with OpenSSL installed, you can remove your passphrase. -OpenSSLがインストールされたLinuxマシンを使うなら、パスフレーズを除去できます。 - -1. オリジナルの鍵ファイルの名前を変えてください。 +1. Rename your original key file. ```shell $ mv yourdomain.key yourdomain.key.orig ``` -2. パスフレーズなしで新しい鍵を生成してください。 +2. Generate a new key without a passphrase. ```shell $ openssl rsa -in yourdomain.key.orig -out yourdomain.key ``` -このコマンドを実行すると、鍵のパスフレーズを入力するようプロンプトが表示されます。 +You'll be prompted for the key's passphrase when you run this command. -OpenSSL に関する詳しい情報については、[OpenSSL のドキュメンテーション](https://www.openssl.org/docs/)を参照してください。 +For more information about OpenSSL, see [OpenSSL's documentation](https://www.openssl.org/docs/). -## SSL証明書あるいは鍵のPEMフォーマットへの変換 +## Converting your SSL certificate or key into PEM format -OpenSSL をインストールしている場合、`openssl` コマンドを使って鍵を PEM フォーマットに変換できます。 たとえば鍵を DER フォーマットから PEM フォーマットに変換できます。 +If you have OpenSSL installed, you can convert your key into PEM format by using the `openssl` command. For example, you can convert a key from DER format into PEM format. ```shell $ openssl rsa -in yourdomain.der -inform DER -out yourdomain.key -outform PEM ``` -あるいは SSL Converter ツールを使って証明書を PEM フォーマットに変換することもできます。 詳しい情報については [SSL Converter ツールのドキュメンテーション](https://www.sslshopper.com/ssl-converter.html)を参照してください。 +Otherwise, you can use the SSL Converter tool to convert your certificate into the PEM format. For more information, see the [SSL Converter tool's documentation](https://www.sslshopper.com/ssl-converter.html). -## 鍵のアップロード後の反応のない環境 +## Unresponsive installation after uploading a key -SSL 鍵のアップロード後に {% data variables.product.product_location %} の反応がない場合、SSL 証明書のコピーを含む詳細事項と合わせて [{% data variables.product.prodname_enterprise %} Support に連絡](https://enterprise.github.com/support)してください。 +If {% data variables.product.product_location %} is unresponsive after uploading an SSL key, please [contact {% data variables.product.prodname_enterprise %} Support](https://enterprise.github.com/support) with specific details, including a copy of your SSL certificate. -## 証明書の検証エラー +## Certificate validity errors -Web ブラウザやコマンドラインの Git などのクライアントは、SSL 証明書の正当性が検証できなければエラーメッセージを表示します。 これはしばしば自己署名証明書の場合や、クライアントが認識しない中間ルート証明書から発行された "チェーンドルート" 証明書の場合に生じます。 +Clients such as web browsers and command-line Git will display an error message if they cannot verify the validity of an SSL certificate. This often occurs with self-signed certificates as well as "chained root" certificates issued from an intermediate root certificate that is not recognized by the client. -証明書認証局 (CA) によって署名された証明書を使っている場合は、{% data variables.product.prodname_ghe_server %} にアップロードする証明書ファイルには CA のルート証明を持つ証明書チェーンが含まれていなければなりません。 そのようなファイルを作成するには、証明書チェーン全体 (「証明書バンドル」とも呼ばれます) を証明書の終わりにつなげ、プリンシパル証明書の先頭にホスト名が来るようにしてください。 ほとんどのシステムでは、以下のようなコマンドでこの処理を行えます: +If you are using a certificate signed by a certificate authority (CA), the certificate file that you upload to {% data variables.product.prodname_ghe_server %} must include a certificate chain with that CA's root certificate. To create such a file, concatenate your entire certificate chain (or "certificate bundle") onto the end of your certificate, ensuring that the principal certificate with your hostname comes first. On most systems you can do this with a command similar to: ```shell $ cat yourdomain.com.crt bundle-certificates.crt > yourdomain.combined.crt ``` -証明書バンドル (たとえば `bundle-certificates.crt`) は、証明書認証局もしくは SSL のベンダーからダウンロードできるはずです。 +You should be able to download a certificate bundle (for example, `bundle-certificates.crt`) from your certificate authority or SSL vendor. -## 自己署名もしくは信頼されない証明書認証者(CA)ルート証明書のインストール +## Installing self-signed or untrusted certificate authority (CA) root certificates -{% data variables.product.prodname_ghe_server %} アプライアンスが、自己署名もしくは信頼されない証明書を使うネットワーク上の他のマシンとやりとりするのであれば、それらのシステムに HTTPS でアクセスできるようにするために、署名をした CA のルート証明書をシステム全体の証明書ストアにインポートしなければなりません。 +If your {% data variables.product.prodname_ghe_server %} appliance interacts with other machines on your network that use a self-signed or untrusted certificate, you will need to import the signing CA's root certificate into the system-wide certificate store in order to access those systems over HTTPS. -1. CA のルート証明書をローカルの証明書認証局から取得し、それが PEM フォーマットになっていることを確認してください。 -2. そのファイルを {% data variables.product.prodname_ghe_server %} アプライアンスにポート 122 の SSH 経由で "admin" ユーザとしてコピーしてください。 +1. Obtain the CA's root certificate from your local certificate authority and ensure it is in PEM format. +2. Copy the file to your {% data variables.product.prodname_ghe_server %} appliance over SSH as the "admin" user on port 122. ```shell $ scp -P 122 rootCA.crt admin@HOSTNAME:/home/admin ``` -3. {% data variables.product.prodname_ghe_server %} の管理シェルにポート 122 の SSH 経由で "admin" ユーザとして接続します。 +3. Connect to the {% data variables.product.prodname_ghe_server %} administrative shell over SSH as the "admin" user on port 122. ```shell $ ssh -p 122 admin@HOSTNAME ``` -4. 証明書をシステム全体の証明書ストアにインポートします。 +4. Import the certificate into the system-wide certificate store. ```shell $ ghe-ssl-ca-certificate-install -c rootCA.crt ``` diff --git a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md index 5a1202b892..ac01707283 100644 --- a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md +++ b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md @@ -3,9 +3,9 @@ title: Connecting your enterprise account to GitHub Enterprise Cloud shortTitle: Connect enterprise accounts intro: 'After you enable {% data variables.product.prodname_github_connect %}, you can share specific features and workflows between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom/ + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom - /enterprise/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud - /enterprise/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud - /admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud @@ -34,15 +34,19 @@ To configure a connection, your proxy configuration must allow connectivity to ` After enabling {% data variables.product.prodname_github_connect %}, you will be able to enable features such as unified search and unified contributions. For more information about all of the features available, see "[Managing connections between your enterprise accounts](/admin/configuration/managing-connections-between-your-enterprise-accounts)." -When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: +When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, or enable {% data variables.product.prodname_github_connect %} features, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: {% ifversion ghes %} - The public key portion of your {% data variables.product.prodname_ghe_server %} license - A hash of your {% data variables.product.prodname_ghe_server %} license - The customer name on your {% data variables.product.prodname_ghe_server %} license - The version of {% data variables.product.product_location_enterprise %}{% endif %} -- The hostname of your {% data variables.product.product_name %} instance +- The hostname of {% data variables.product.product_location %} - The organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %} that's connected to {% data variables.product.product_location %} - The authentication token that's used by {% data variables.product.product_location %} to make requests to {% data variables.product.prodname_dotcom_the_website %} +- If Transport Layer Security (TLS) is enabled and configured on {% data variables.product.product_location %}{% ifversion ghes %} +- The {% data variables.product.prodname_github_connect %} features that are enabled on {% data variables.product.product_location %}, and the date and time of enablement{% endif %} + +{% data variables.product.prodname_github_connect %} syncs the above connection data between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %} weekly, from the day and approximate time that {% data variables.product.prodname_github_connect %} was enabled. Enabling {% data variables.product.prodname_github_connect %} also creates a {% data variables.product.prodname_github_app %} owned by your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account. {% data variables.product.product_name %} uses the {% data variables.product.prodname_github_app %}'s credentials to make requests to {% data variables.product.prodname_dotcom_the_website %}. {% ifversion ghes %} diff --git a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md index 2691561e8b..cc41266506 100644 --- a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md +++ b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md @@ -70,19 +70,23 @@ You can enable the dependency graph via the {% data variables.enterprise.managem {% endif %} {% data reusables.enterprise_site_admin_settings.sign-in %} 1. In the administrative shell, enable the dependency graph on {% data variables.product.product_location %}: - ``` shell - $ {% ifversion ghes > 3.1 %}ghe-config app.dependency-graph.enabled true{% else %}ghe-config app.github.dependency-graph-enabled true{% endif %} + {% ifversion ghes > 3.1 %}```shell + ghe-config app.dependency-graph.enabled true ``` + {% else %}```shell + ghe-config app.github.dependency-graph-enabled true + ghe-config app.github.vulnerability-alerting-and-settings-enabled true + ```{% endif %} {% note %} **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)." {% endnote %} -1. Apply the configuration. +2. Apply the configuration. ```shell $ ghe-config-apply ``` -1. Return to {% data variables.product.prodname_ghe_server %}. +3. Return to {% data variables.product.prodname_ghe_server %}. {% endif %} ### Enabling {% data variables.product.prodname_dependabot_alerts %} diff --git a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md index 22ccd67d2e..dd4e7113c3 100644 --- a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md +++ b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified contributions between your enterprise account and GitHub shortTitle: Enable unified contributions intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow {% data variables.product.prodname_ghe_cloud %} members to highlight their work on {% data variables.product.product_name %} by sending the contribution counts to their {% data variables.product.prodname_dotcom_the_website %} profiles.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom diff --git a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md index e857470482..0235337178 100644 --- a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md +++ b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified search between your enterprise account and GitHub.com shortTitle: Enable unified search intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow search of {% data variables.product.prodname_dotcom_the_website %} for members of your enterprise on {% data variables.product.product_name %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom diff --git a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md index c5a822c47a..f46553f059 100644 --- a/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md +++ b/translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md @@ -3,9 +3,9 @@ title: Managing connections between your enterprise accounts intro: 'With {% data variables.product.prodname_github_connect %}, you can share certain features and data between {% data variables.product.product_location %} and your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %}.' redirect_from: - /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom - /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud diff --git a/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/about-clustering.md b/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/about-clustering.md index b96897a617..77aa3f9b25 100644 --- a/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/about-clustering.md +++ b/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/about-clustering.md @@ -1,10 +1,10 @@ --- -title: クラスタリングについて -intro: '{% data variables.product.prodname_ghe_server %} クラスタリングを利用することで、{% data variables.product.prodname_ghe_server %} を構成するサービス群を複数のノードにまたがってスケールアウトできるようになります。' +title: About clustering +intro: '{% data variables.product.prodname_ghe_server %} clustering allows services that make up {% data variables.product.prodname_ghe_server %} to be scaled out across multiple nodes.' redirect_from: - /enterprise/admin/clustering/overview - /enterprise/admin/clustering/about-clustering - - /enterprise/admin/clustering/clustering-overview/ + - /enterprise/admin/clustering/clustering-overview - /enterprise/admin/enterprise-management/about-clustering - /admin/enterprise-management/about-clustering versions: @@ -14,23 +14,22 @@ topics: - Clustering - Enterprise --- +## Clustering architecture -## クラスタリングのアーキテクチャ +{% data variables.product.prodname_ghe_server %} is comprised of a set of services. In a cluster, these services run across multiple nodes and requests are load balanced between them. Changes are automatically stored with redundant copies on separate nodes. Most of the services are equal peers with other instances of the same service. The exceptions to this are the `mysql-server` and `redis-server` services. These operate with a single _primary_ node with one or more _replica_ nodes. -{% data variables.product.prodname_ghe_server %}は、一連のサービスから構成されています。 クラスタでは、これらのサービスは複数のノードにまたがって動作し、リクエストはそれらのノード間でロードバランスされます。 変更は、冗長なコピーと共に個別のノードに自動的に保存されます。 ほとんどのサービスは、同じサービスの他のインスタンスと同等のピア群です。 ただし`mysql-server`と`redis-server`サービスは例外です。 これらは1つの_プライマリ_ノードと、1つ以上の_レプリカ_ノード上で動作します。 +Learn more about [services required for clustering](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering). -[クラスタリングに必要なサービスの詳細](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering)をご覧ください。 +## Is clustering right for my organization? -## クラスタリングは組織に適切か? +{% data reusables.enterprise_clustering.clustering-scalability %} However, setting up a redundant and scalable cluster can be complex and requires careful planning. This additional complexity will need to be planned for during installation, disaster recovery scenarios, and upgrades. -{% data reusables.enterprise_clustering.clustering-scalability %}とはいえ、冗長性のあるスケーラブルなクラスタのセットアップは複雑であり、かつ、注意深い計画が必要です。 この追加の複雑さによって、インストール、システム災害復旧およびアップグレードについて計画することが必要となります。 +{% data variables.product.prodname_ghe_server %} requires low latency between nodes and is not intended for redundancy across geographic locations. -{% data variables.product.prodname_ghe_server %} ではノード間のレイテンシが低いことが必要であり、地理的に離れた場所にまたがる冗長性を意図したものではありません。 - -クラスタリングは冗長性を提供しますが、High Availability構成を置き換えることを意図したものではありません。 詳細は「[High Availability 構成](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability)」を参照してください。 プライマリ/セカンダリフェイルオーバー設定はクラスタリングよりもはるかにシンプルであり、多くの組織の要求に応えます。 詳しくは[クラスタリングと高可用性との違い](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/)を参照してください。 +Clustering provides redundancy, but it is not intended to replace a High Availability configuration. For more information, see [High Availability configuration](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability). A primary/secondary failover configuration is far simpler than clustering and will serve the needs of many organizations. For more information, see [Differences between Clustering and High Availability](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/). {% data reusables.package_registry.packages-cluster-support %} -## クラスタリングを利用するには? +## How do I get access to clustering? -クラスタリングは特定のスケーリングの状況のために設計されており、すべての組織を対象としたものではありません。 クラスタリングをご検討される場合は、専任の担当者または {% data variables.contact.contact_enterprise_sales %} にお問い合わせください。 +Clustering is designed for specific scaling situations and is not intended for every organization. If clustering is something you'd like to consider, please contact your dedicated representative or {% data variables.contact.contact_enterprise_sales %}. diff --git a/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/index.md b/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/index.md index 0cd21559db..3738fe80e6 100644 --- a/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/index.md +++ b/translations/ja-JP/content/admin/enterprise-management/configuring-clustering/index.md @@ -1,10 +1,10 @@ --- -title: クラスタリングの設定 -intro: クラスタリングについて、そしてHigh Availabilityとの差異にについて学んでください。 +title: Configuring clustering +intro: Learn about clustering and differences with high availability. redirect_from: - /enterprise/admin/clustering/setting-up-the-cluster-instances - /enterprise/admin/clustering/managing-a-github-enterprise-server-cluster - - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster/ + - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster - /enterprise/admin/enterprise-management/configuring-clustering versions: ghes: '*' diff --git a/translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/index.md b/translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/index.md index e42f86a7fb..f2287f14df 100644 --- a/translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/index.md +++ b/translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/index.md @@ -1,12 +1,12 @@ --- -title: High Availability の設定 +title: Configuring high availability redirect_from: - /enterprise/admin/installation/configuring-github-enterprise-server-for-high-availability - - /enterprise/admin/guides/installation/high-availability-cluster-configuration/ - - /enterprise/admin/guides/installation/high-availability-configuration/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability/ + - /enterprise/admin/guides/installation/high-availability-cluster-configuration + - /enterprise/admin/guides/installation/high-availability-configuration + - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability - /enterprise/admin/enterprise-management/configuring-high-availability -intro: '{% data variables.product.prodname_ghe_server %} は、プライマリアプライアンスに影響を及ぼすハードウェア障害や重大なネットワーク障害が発生した場合に、サービスの中断を最小限に抑えるように設計された、運用の High Availability モードをサポートしています。' +intro: '{% data variables.product.prodname_ghe_server %} supports a high availability mode of operation designed to minimize service disruption in the event of hardware failure or major network outage affecting the primary appliance.' versions: ghes: '*' topics: diff --git a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md index b6cff63494..8d39fdb11a 100644 --- a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md +++ b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md @@ -1,9 +1,9 @@ --- -title: collectd のコンフィグレーション -intro: '{% data variables.product.prodname_enterprise %}は、`collectd` でデータを収集し、外部の `collectd` に送信することができます。 CPU の使用率やメモリーとディスクの消費、ネットワークインタフェーストラフィックとエラー、仮想マシンの全体的な負荷などのデータを収集しています。' +title: Configuring collectd +intro: '{% data variables.product.prodname_enterprise %} can gather data with `collectd` and send it to an external `collectd` server. Among other metrics, we gather a standard set of data such as CPU utilization, memory and disk consumption, network interface traffic and errors, and the VM''s overall load.' redirect_from: - /enterprise/admin/installation/configuring-collectd - - /enterprise/admin/articles/configuring-collectd/ + - /enterprise/admin/articles/configuring-collectd - /enterprise/admin/enterprise-management/configuring-collectd - /admin/enterprise-management/configuring-collectd versions: @@ -16,15 +16,14 @@ topics: - Monitoring - Performance --- +## Set up an external `collectd` server -## 外部 `collectd` サーバーを設置 +If you haven't already set up an external `collectd` server, you will need to do so before enabling `collectd` forwarding on {% data variables.product.product_location %}. Your `collectd` server must be running `collectd` version 5.x or higher. -{% data variables.product.product_location %}に`collectd` の転送をまだ有効にしていない場合は、外部の `collectd` サーバを設置する必要があります。 `collectd` サーバは、`collectd` 5.x 以降のバージョンを実行している必要があります。 +1. Log into your `collectd` server. +2. Create or edit the `collectd` configuration file to load the network plugin and populate the server and port directives with the proper values. On most distributions, this is located at `/etc/collectd/collectd.conf` -1. `collectd` サーバにログインする -2. `collectd` を作成、または編集することで、ネットワークプラグインをロードし、適切な値をサーバとポートのディレクティブに追加する。 たいていのディストリビューションでは、これは `/etc/collectd/collectd.conf` にあります。 - -`collectd` サーバを実行するための見本の*collectd.conf* +An example *collectd.conf* to run a `collectd` server: LoadPlugin network ... @@ -33,34 +32,34 @@ topics: Listen "0.0.0.0" "25826" </Plugin> -## {% data variables.product.prodname_enterprise %}でcollectd転送を有効にする +## Enable collectd forwarding on {% data variables.product.prodname_enterprise %} -デフォルトでは、`collectd` 転送は {% data variables.product.prodname_enterprise %} で無効になっています。 次の手順に従って、`collectd` 転送を有効にして設定します。 +By default, `collectd` forwarding is disabled on {% data variables.product.prodname_enterprise %}. Follow the steps below to enable and configure `collectd` forwarding: {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -1. ログの転送設定の下にある、**Enable collectd forwarding** を選択する -1. **Server address** の欄には {% data variables.product.prodname_enterprise %}のアプライアンスの統計を転送したい`collectd` サーバのアドレスを入力する。 -1. **Port**の欄には、`collectd` サーバーに接続するためのポートを入力する。 (デフォルトは 25826) -1. **Cryptographic setup** のドロップダウンメニューでは、`collectd` サーバーとのコミュニケーションのセキュリティーレベルを選択する。 (なし、署名付きパケット、または暗号化されたパケット。) +1. Below the log forwarding settings, select **Enable collectd forwarding**. +1. In the **Server address** field, type the address of the `collectd` server to which you'd like to forward {% data variables.product.prodname_enterprise %} appliance statistics. +1. In the **Port** field, type the port used to connect to the `collectd` server. (Defaults to 25826) +1. In the **Cryptographic setup** dropdown menu, select the security level of communications with the `collectd` server. (None, signed packets, or encrypted packets.) {% data reusables.enterprise_management_console.save-settings %} -## collectd データの `ghe-export-graphs`でのエクスポート +## Exporting collectd data with `ghe-export-graphs` -`ghe-export-graphs` のコマンドラインツールは、`collectd` が RRD データベースに保存するデータをエクスポートします。 このコマンドは、データを XML にして、1つのTAR書庫(.tgz)にエクスポートします。 +The command-line tool `ghe-export-graphs` will export the data that `collectd` stores in RRD databases. This command turns the data into XML and exports it into a single tarball (.tgz). -その主な用途は、Support Bundleを一括ダウンロードする必要なく、{% data variables.contact.contact_ent_support %}のチームに仮想マシンのパフォーマンスに関するデータ提供することです。 定期的なバックアップエクスポートに含めてはなりません。また、その逆のインポートもありません。 {% data variables.contact.contact_ent_support %}に連絡したとき、問題解決を容易にするため、このデータが必要となる場合があります。 +Its primary use is to provide the {% data variables.contact.contact_ent_support %} team with data about a VM's performance, without the need for downloading a full Support Bundle. It shouldn't be included in your regular backup exports and there is no import counterpart. If you contact {% data variables.contact.contact_ent_support %}, we may ask for this data to assist with troubleshooting. -### 使い方 +### Usage ```shell ssh -p 122 admin@[hostname] -- 'ghe-export-graphs' && scp -P 122 admin@[hostname]:~/graphs.tar.gz . ``` -## トラブルシューティング +## Troubleshooting -### 中心の collectd サーバはデータを受信していない +### Central collectd server receives no data -{% data variables.product.prodname_enterprise %} は `collectd` バージョン 5.x に付属しています。 `collectd` 5.x は、4.x リリースシリーズとの下位互換性がありません。 {% data variables.product.product_location %}から送られるデータを受信するには、中心の`collectd`サーバは 5.x 以上のバージョンでなければなりません。 +{% data variables.product.prodname_enterprise %} ships with `collectd` version 5.x. `collectd` 5.x is not backwards compatible with the 4.x release series. Your central `collectd` server needs to be at least version 5.x to accept data sent from {% data variables.product.product_location %}. -他に質問や問題がある場合、{% data variables.contact.contact_ent_support %}までお問い合わせください。 +For help with further questions or issues, contact {% data variables.contact.contact_ent_support %}. diff --git a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/index.md b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/index.md index 658aea41ee..bb04a0812b 100644 --- a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/index.md +++ b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/index.md @@ -1,9 +1,9 @@ --- -title: アプライアンスを監視する -intro: '{% data variables.product.product_location %} インスタンスの使用が時間とともに増加するにつれて、CPU、メモリ、ストレージなどのシステムリソースの利用率も増加します。 アプリケーションのパフォーマンスや可用性にマイナスの影響を及ぼすほど重大になる前に潜在的な問題に気づけるよう、モニタリングやアラートを設定することができます。' +title: Monitoring your appliance +intro: 'As use of {% data variables.product.product_location %} increases over time, the utilization of system resources, like CPU, memory, and storage will also increase. You can configure monitoring and alerting so that you''re aware of potential issues before they become critical enough to negatively impact application performance or availability.' redirect_from: - - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting/ - - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting + - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance - /enterprise/admin/installation/monitoring-your-github-enterprise-server-appliance - /enterprise/admin/enterprise-management/monitoring-your-appliance versions: diff --git a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md index 2f83806ce8..83d8dda6b5 100644 --- a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md +++ b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md @@ -1,9 +1,9 @@ --- -title: SNMP での監視 -intro: '{% data variables.product.prodname_enterprise %}は、SNMP経由でディスクの使用や CPU の使用率、メモリーの使用などのデータを提供します。' +title: Monitoring using SNMP +intro: '{% data variables.product.prodname_enterprise %} provides data on disk usage, CPU utilization, memory usage, and more over SNMP.' redirect_from: - /enterprise/admin/installation/monitoring-using-snmp - - /enterprise/admin/articles/monitoring-using-snmp/ + - /enterprise/admin/articles/monitoring-using-snmp - /enterprise/admin/enterprise-management/monitoring-using-snmp - /admin/enterprise-management/monitoring-using-snmp versions: @@ -15,60 +15,66 @@ topics: - Monitoring - Performance --- +SNMP is a common standard for monitoring devices over a network. We strongly recommend enabling SNMP so you can monitor the health of {% data variables.product.product_location %} and know when to add more memory, storage, or processor power to the host machine. -SNMP とは、ネットワーク経由でデバイスを監視するための一般的基準です。 {% data variables.product.product_location %}のj状態を監視可能にし、いつホストのマシンにメモリやストレージ、処理能力を追加すべきかを知るために、SNMP を有効にすることを強くおすすめします。 +{% data variables.product.prodname_enterprise %} has a standard SNMP installation, so you can take advantage of the [many plugins](http://www.monitoring-plugins.org/doc/man/check_snmp.html) available for Nagios or for any other monitoring system. -{% data variables.product.prodname_enterprise %} には標準の SNMP がインストールされているので、Nagios などのモニタリングシステムに対して利用可能な[数多くのプラグイン](http://www.monitoring-plugins.org/doc/man/check_snmp.html)を活用できます。 - -## SNMP v2c を設定 +## Configuring SNMP v2c {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. **Community string** の欄では、新しいコミュニティ文字列を入力する。 空白のままだと、`public`という設定になります。 ![コミュニティ文字列型を追加するためのフィールド](/assets/images/enterprise/management-console/community-string.png) +4. In the **Community string** field, enter a new community string. If left blank, this defaults to `public`. +![Field to add the community string](/assets/images/enterprise/management-console/community-string.png) {% data reusables.enterprise_management_console.save-settings %} -5. SNMP に対応している別のワークステーションで次のコマンドを実行して、SNMP のコンフィグレーションをテストする。 +5. Test your SNMP configuration by running the following command on a separate workstation with SNMP support in your network: ```shell # community-string is your community string # hostname is the IP or domain of your Enterprise instance $ snmpget -v 2c -c <em>community-string</em> -O e <em>hostname</em> hrSystemDate.0 ``` -これにより、{% data variables.product.product_location %} ホストでのシステム時刻が返されます。 +This should return the system time on {% data variables.product.product_location %} host. -## ユーザベースのセキュリティ +## User-based security -SNMP v3 を有効にすると、ユーザセキュリティモデル (USM) により、強化されたユーザベースのセキュリティを利用できます。 ユーザごとに、以下のセキュリティレベルを指定できます: -- `noAuthNoPriv`: このセキュリティレベルは認証もプライバシーも提供しません。 -- `authNoPriv`: このセキュリティレベルは認証を提供しますがプライバシーは提供しません。 アプライアンスを照会するには、ユーザ名とパスワード (最低 8 文字) が必要です。 SNMPv2 と同様に、情報は暗号化されずに送信されます。 可能な認証プロトコルは MD5 または SHA であり、デフォルトは SHA です。 -- `authPriv`: このセキュリティレベルはプライバシーと共に認証を提供します。 8 文字以上の認証パスワードを含む認証が必要であり、返信は暗号化されます。 プライバシーパスワードは必須ではありませんが、指定する場合は 8 文字以上でなければなりません。 プライバシーパスワードが指定されない場合は、認証パスワードが使用されます。 プライバシープロトコルは DES または AES のいずれかが可能であり、デフォルトは AES です。 +If you enable SNMP v3, you can take advantage of increased user based security through the User Security Model (USM). For each unique user, you can specify a security level: +- `noAuthNoPriv`: This security level provides no authentication and no privacy. +- `authNoPriv`: This security level provides authentication but no privacy. To query the appliance you'll need a username and password (that must be at least eight characters long). Information is sent without encryption, similar to SNMPv2. The authentication protocol can be either MD5 or SHA and defaults to SHA. +- `authPriv`: This security level provides authentication with privacy. Authentication, including a minimum eight-character authentication password, is required and responses are encrypted. A privacy password is not required, but if provided it must be at least eight characters long. If a privacy password isn't provided, the authentication password is used. The privacy protocol can be either DES or AES and defaults to AES. -## SNMP v3 用にユーザーを設定する +## Configuring users for SNMP v3 {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. [**SNMP v3**] を選択します。 ![SNMP v3 を有効化するボタン](/assets/images/enterprise/management-console/enable-snmpv3.png) -5. [Username] に、SNMP v3 ユーザの固有なユーザ名を入力します。 ![SNMP v3 ユーザ名を入力するためのフィールド](/assets/images/enterprise/management-console/snmpv3-username.png) -6. [**Security Level**] ドロップダウンメニューで、SNMP v3 ユーザ ー用のセキュリティレベルをクリックします。 ![SNMP v3 ユーザのセキュリティレベルを指定するためのドロップダウンメニュー](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) -7. セキュリティレベルが `authnopriv` である SNMP v3 ユーザの場合: ![セキュリティレベル authnopriv の設定](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) +4. Select **SNMP v3**. +![Button to enable SNMP v3](/assets/images/enterprise/management-console/enable-snmpv3.png) +5. In "Username", type the unique username of your SNMP v3 user. +![Field to type the SNMP v3 username](/assets/images/enterprise/management-console/snmpv3-username.png) +6. In the **Security Level** dropdown menu, click the security level for your SNMP v3 user. +![Dropdown menu for the SNMP v3 user's security level](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) +7. For SNMP v3 users with the `authnopriv` security level: + ![Settings for the authnopriv security level](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} -8. セキュリティレベルが `authpriv` である SNMP v3 ユーザの場合: ![セキュリティレベル authpriv の設定](/assets/images/enterprise/management-console/snmpv3-authpriv.png) +8. For SNMP v3 users with the `authpriv` security level: + ![Settings for the authpriv security level](/assets/images/enterprise/management-console/snmpv3-authpriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} - - 任意で、[Privacy password] にプライバシーパスワードを入力します。 - - [Privacy password] の右側にある [**Protocol**] ドロップダウンメニューで、使用するプライバシープロトコル方式をクリックします。 -9. [**Add user**] をクリックします。 ![SNMP v3 ユーザを追加するボタン](/assets/images/enterprise/management-console/snmpv3-adduser.png) + - Optionally, in "Privacy password", type the privacy password. + - On the right side of "Privacy password", in the **Protocol** dropdown menu, click the privacy protocol method you want to use. +9. Click **Add user**. +![Button to add SNMP v3 user](/assets/images/enterprise/management-console/snmpv3-adduser.png) {% data reusables.enterprise_management_console.save-settings %} -#### SNMP データの照会 +#### Querying SNMP data -アプライアンスに関するハードウェアレベルとソフトウェアレベルの両方の情報が SNMP v3 で利用できます。 `noAuthNoPriv` と `authNoPriv` のセキュリティレベルでは暗号化とプライバシーが欠如しているため、結果の SNMP レポートから `hrSWRun` の表 (1.3.6.1.2.1.25.4) は除外されます。 セキュリティレベル `authPriv` を使用している場合は、この表が掲載されます。 詳しい情報については、「[OID のリファレンスドキュメンテーション](http://oidref.com/1.3.6.1.2.1.25.4)」を参照してください。 +Both hardware and software-level information about your appliance is available with SNMP v3. Due to the lack of encryption and privacy for the `noAuthNoPriv` and `authNoPriv` security levels, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports. We include this table if you're using the `authPriv` security level. For more information, see the "[OID reference documentation](http://oidref.com/1.3.6.1.2.1.25.4)." -SNMP v2c では、アプライアンスに関するハードウェアレベルの情報のみが利用できます。 {% data variables.product.prodname_enterprise %} 内のアプリケーションとサービスには、メトリックスを報告するように設定された OID がありません。 いくつかの MIB が利用できます。ネットワーク内において SNMP をサポートしている別のワークステーションで `snmpwalk` を実行することで、利用できる MIB を確認できます。 +With SNMP v2c, only hardware-level information about your appliance is available. The applications and services within {% data variables.product.prodname_enterprise %} do not have OIDs configured to report metrics. Several MIBs are available, which you can see by running `snmpwalk` on a separate workstation with SNMP support in your network: ```shell # community-string is your community string @@ -76,40 +82,40 @@ SNMP v2c では、アプライアンスに関するハードウェアレベル $ snmpwalk -v 2c -c <em>community-string</em> -O e <em>hostname</em> ``` -SNMP に対して利用可能な MIB のうち、最も有用なものは `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25) です。 この MIB のいくつかの重要なオブジェクトについては、以下の表を参照してください: +Of the available MIBs for SNMP, the most useful is `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25). See the table below for some important objects in this MIB: -| 名前 | OID | 説明 | -| -------------------------- | ------------------------ | ---------------------------------------- | -| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | ホストから見たローカルの日付と時間。 | -| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | 前回ホストが起動してからの時間。 | -| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | ホストが持っているRAMの容量。 | -| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | 現在、ホストでロードされている、または作動しているプロセスのコンテキストの数。 | -| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | hrStorageAllocationUnits のホストの使用ストレージ領域。 | -| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | hrStorageAllocationUnit のバイトでのサイズ | +| Name | OID | Description | +| ---- | --- | ----------- | +| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | The hosts notion of the local date and time of day. | +| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | How long it's been since the host was last initialized. | +| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | The amount of RAM on the host. | +| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | The number of process contexts currently loaded or running on the host. | +| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | The amount of storage space consumed on the host, in hrStorageAllocationUnits. | +| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | The size, in bytes, of an hrStorageAllocationUnit | -たとえば、SNMP v3 で `hrMemorySize` を照会するには、ネットワークで SNMP をサポートしている別のワークステーションで次のコマンドを実行します: +For example, to query for `hrMemorySize` with SNMP v3, run the following command on a separate workstation with SNMP support in your network: ```shell -# username はあなたの SNMP v3 ユーザの一意のユーザ名 -# auth password は認証パスワード -# privacy password はプライバシーパスワード -# hostname はあなたの Enterprise インスタンスの IP またはドメイン +# username is the unique username of your SNMP v3 user +# auth password is the authentication password +# privacy password is the privacy password +# hostname is the IP or domain of your Enterprise instance $ snmpget -v 3 -u <em>username</em> -l authPriv \ -A "<em>auth password</em>" -a SHA \ -X "<em>privacy password</em>" -x AES \ -O e <em>hostname</em> HOST-RESOURCES-MIB::hrMemorySize.0 ``` -SNMP v2c で `hrMemorySize` を照会するには、ネットワークで SNMP をサポートしている別のワークステーションで次のコマンドを実行します: +With SNMP v2c, to query for `hrMemorySize`, run the following command on a separate workstation with SNMP support in your network: ```shell -# community-string はあなたのコミュニティ文字列 -# hostname はあなたの Enterprise インスタンスの IP またはドメイン +# community-string is your community string +# hostname is the IP or domain of your Enterprise instance snmpget -v 2c -c <em>community-string</em> <em>hostname</em> HOST-RESOURCES-MIB::hrMemorySize.0 ``` {% tip %} -**注釈:** アプライアンスで実行中のサービスに関する情報の漏洩を防ぐために、SNMP v3 でセキュリティレベル `authPriv` を使用していない限り、結果の SNMP レポートから `hrSWRun` の表 (1.3.6.1.2.1.25.4) は除外されます。 セキュリティレベル `authPriv` を使用している場合は、`hrSWRun` の表が掲載されます。 +**Note:** To prevent leaking information about services running on your appliance, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports unless you're using the `authPriv` security level with SNMP v3. If you're using the `authPriv` security level, we include the `hrSWRun` table. {% endtip %} -SNMP での一般的なシステム属性に対する OID マッピングの詳しい情報については、「[CPU、メモリ、ディスクの統計情報に対する Linux SNMP OID](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)」を参照してください。 +For more information on OID mappings for common system attributes in SNMP, see "[Linux SNMP OID’s for CPU, Memory and Disk Statistics](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)". diff --git a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md index 50f80f425f..fff12c9155 100644 --- a/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md +++ b/translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md @@ -1,8 +1,8 @@ --- -title: アラートの推奨閾値 -intro: '{% data variables.product.prodname_ghe_server %} アプライアンスのパフォーマンスに影響を与える前に、システムリソースの問題を通知するようにアラートを設定できます。' +title: Recommended alert thresholds +intro: 'You can configure an alert to notify you of system resource issues before they affect your {% data variables.product.prodname_ghe_server %} appliance''s performance.' redirect_from: - - /enterprise/admin/guides/installation/about-recommended-alert-thresholds/ + - /enterprise/admin/guides/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/recommended-alert-thresholds - /enterprise/admin/enterprise-management/recommended-alert-thresholds @@ -16,38 +16,37 @@ topics: - Monitoring - Performance - Storage -shortTitle: アラートの推奨閾値 +shortTitle: Recommended alert thresholds --- +## Monitoring storage -## ストレージのモニタリング +We recommend that you monitor both the root and user storage devices and configure an alert with values that allow for ample response time when available disk space is low. -ルート及びユーザストレージデバイスの両方をモニタリングし、利用可能なディスク領域が少なくなったときに十分な対応時間が持てるような値でアラートを設定することをおすすめします。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Disk use exceeds 70% of total available | +| **Critical** | Disk use exceeds 85% of total available | -| 重要度 | 閾値 | -| ------------ | -------------------- | -| **Warning** | ディスクの使用量が総容量の70%を超えた | -| **Critical** | ディスクの使用量が総容量の85%を超えた | +You can adjust these values based on the total amount of storage allocated, historical growth patterns, and expected time to respond. We recommend over-allocating storage resources to allow for growth and prevent the downtime required to allocate additional storage. -これらの値は、割り当てられたストレージの総量、過去の増大パターン、対応が求められる時間に基づいて調整できます。 ストレージリソースは、増加を許容し、追加ストレージの割り当てに必要なダウンタイムを回避するために、多めに割り当てておくことをおすすめします。 +## Monitoring CPU and load average usage -## CPUとロードアベレージのモニタリング +Although it is normal for CPU usage to fluctuate based on resource-intense Git operations, we recommend configuring an alert for abnormally high CPU utilization, as prolonged spikes can mean your instance is under-provisioned. We recommend monitoring the fifteen-minute system load average for values nearing or exceeding the number of CPU cores allocated to the virtual machine. -リソース集約的なGitの操作によってCPUの利用状況が変動するのは通常のことですが、異常に高いCPU利用状況にはアラートを設定することをおすすめします。これは、長引くスパイクはインスタンスのプロビジョニングが不足しているということかもしれないためです。 15分間のシステムロードアベレージが、仮想マシンに割り当てられたCPUコア数に近いかそれを超える値になっていないかをモニタリングすることをおすすめします。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Fifteen minute load average exceeds 1x CPU cores | +| **Critical** | Fifteen minute load average exceeds 2x CPU cores | -| 重要度 | 閾値 | -| ------------ | -------------------------- | -| **Warning** | 15分間のロードアベレージが1x CPUコアを超える | -| **Critical** | 15分間のロードアベレージが2x CPUコアを超える | +We also recommend that you monitor virtualization "steal" time to ensure that other virtual machines running on the same host system are not using all of the instance's resources. -また、仮想化の"steal"時間をモニタリングして、同一ホスト上で動作している他の仮想マシンがインスタンスのリソースをすべて使ってしまっていることがないことを確認するようおすすめします。 +## Monitoring memory usage -## メモリの利用状況のモニタリング +The amount of physical memory allocated to {% data variables.product.product_location %} can have a large impact on overall performance and application responsiveness. The system is designed to make heavy use of the kernel disk cache to speed up Git operations. We recommend that the normal RSS working set fit within 50% of total available RAM at peak usage. -{% data variables.product.product_location %}に割り当てられている物理メモリの量は、全体的なパフォーマンスとアプリケーションの反応性に大きな影響があります。 システムは、Gitの処理を高速化するためにカーネルのディスクキャッシュを頻繁に利用するよう設計されています。 ピークの利用状況で、通常のRSSワーキングセットがRAMの総容量の50%以内に収まるようにすることをおすすめします。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Sustained RSS usage exceeds 50% of total available memory | +| **Critical** | Sustained RSS usage exceeds 70% of total available memory | -| 重要度 | 閾値 | -| ------------ | ------------------------------- | -| **Warning** | 持続的にRSSの利用状況が利用可能なメモリ総量の50%を超える | -| **Critical** | 持続的にRSSの利用状況が利用可能なメモリ総量の70%を超える | - -メモリが使い切られると、カーネルOOMキラーはRAMを大量に使っているアプリケーションプロセスを強制的にkillしてメモリリソースを解放しようとします。これは、サービスの中断につながることがあります。 通常の処理の状況で必要になる以上のメモリを仮想マシンに割り当てることをおすすめします。 +If memory is exhausted, the kernel OOM killer will attempt to free memory resources by forcibly killing RAM heavy application processes, which could result in a disruption of service. We recommend allocating more memory to the virtual machine than is required in the normal course of operations. diff --git a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md index 5653ca1770..126dce06e2 100644 --- a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md +++ b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md @@ -1,9 +1,9 @@ --- -title: 仮想マシンと物理リソースのアップデート -intro: 仮想ソフトウェアと仮想ハードウェアをアップグレードするためには、インスタンスのダウンタイムが必要になるので、事前にアップグレードについて計画をしておいてください。 +title: Updating the virtual machine and physical resources +intro: 'Upgrading the virtual software and virtual hardware requires some downtime for your instance, so be sure to plan your upgrade in advance.' redirect_from: - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm/' - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources/' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources' - /enterprise/admin/installation/updating-the-virtual-machine-and-physical-resources - /enterprise/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources versions: diff --git a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md index 3f02b0725d..912f655881 100644 --- a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md +++ b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md @@ -1,16 +1,16 @@ --- -title: GitHub Enterprise 11.10.xから2.1.23への移行 +title: Migrating from GitHub Enterprise 11.10.x to 2.1.23 redirect_from: - /enterprise/admin/installation/migrating-from-github-enterprise-1110x-to-2123 - - /enterprise/admin-guide/migrating/ - - /enterprise/admin/articles/migrating-github-enterprise/ - - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x/ - - /enterprise/admin/articles/upgrading-to-a-newer-release/ - - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x/ + - /enterprise/admin-guide/migrating + - /enterprise/admin/articles/migrating-github-enterprise + - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x + - /enterprise/admin/articles/upgrading-to-a-newer-release + - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x - /enterprise/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23 - /enterprise/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 - /admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 -intro: '{% data variables.product.prodname_enterprise %}11.10.xから2.1.23へ移行するには、新しいアプライアンスのインスタンスをセットアップし、以前のインスタンスからデータを移行しなければなりません。' +intro: 'To migrate from {% data variables.product.prodname_enterprise %} 11.10.x to 2.1.23, you''ll need to set up a new appliance instance and migrate data from the previous instance.' versions: ghes: '*' type: how_to @@ -20,50 +20,52 @@ topics: - Upgrades shortTitle: Migrate from 11.10.x to 2.1.23 --- +Migrations from {% data variables.product.prodname_enterprise %} 11.10.348 and later are supported. Migrating from {% data variables.product.prodname_enterprise %} 11.10.348 and earlier is not supported. You must first upgrade to 11.10.348 in several upgrades. For more information, see the 11.10.348 upgrading procedure, "[Upgrading to the latest release](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)." -{% data variables.product.prodname_enterprise %}11.10.348以降からの移行がサポートされています。 {% data variables.product.prodname_enterprise %}11.10.348以前からの移行はサポートされていません。 いくつかのアップグレードを経て、まず11.10.348にアップグレードしなければなりません。 詳しい情報については11.10.348のアップグレード手順"[最新リリースへのアップグレード](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)"を参照してください。 +To upgrade to the latest version of {% data variables.product.prodname_enterprise %}, you must first migrate to {% data variables.product.prodname_ghe_server %} 2.1, then you can follow the normal upgrade process. For more information, see "[Upgrading {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)". -最新バージョンの {% data variables.product.prodname_enterprise %} にアップグレードするには、まず {% data variables.product.prodname_ghe_server %} 2.1 に移行する必要があります。その後、通常のアップグレードプロセスに従うことができます。 詳細は「[{% data variables.product.prodname_enterprise %} をアップグレードする](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)」参照してください。 +## Prepare for the migration -## 移行の準備 - -1. プロビジョニング及びインストールガイドをレビューし、{% data variables.product.prodname_enterprise %}2.1.23を自分の環境にプロビジョニングして設定するのに必要な条件が満たされているかを確認してください。 詳しい情報については"[プロビジョニングとインストール](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)"を参照してください。 -2. 現在のインスタンスがサポートされているアップグレードバージョンを動作させていることを確認してください。 -3. 最新バージョンの {% data variables.product.prodname_enterprise_backup_utilities %} をセットアップします。 詳細は [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils) を参照してください。 - - {% data variables.product.prodname_enterprise_backup_utilities %}を使ってすでにスケジューリングされたバックアップを設定しているなら、最新バージョンにアップデートしたことを確認してください。 - - 現時点でスケジューリングされたバックアップを動作させていないなら、{% data variables.product.prodname_enterprise_backup_utilities %}をセットアップしてください。 -4. `ghe-backup`コマンドを使って、現在のインスタンスの初めてのフルバックアップスナップショットを取ってください。 現在のインスタンスですでにスケジューリングされたバックアップを設定しているなら、インスタンスのスナップショットを取る必要はありません。 +1. Review the Provisioning and Installation guide and check that all prerequisites needed to provision and configure {% data variables.product.prodname_enterprise %} 2.1.23 in your environment are met. For more information, see "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)." +2. Verify that the current instance is running a supported upgrade version. +3. Set up the latest version of the {% data variables.product.prodname_enterprise_backup_utilities %}. For more information, see [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils). + - If you have already configured scheduled backups using {% data variables.product.prodname_enterprise_backup_utilities %}, make sure you have updated to the latest version. + - If you are not currently running scheduled backups, set up {% data variables.product.prodname_enterprise_backup_utilities %}. +4. Take an initial full backup snapshot of the current instance using the `ghe-backup` command. If you have already configured scheduled backups for your current instance, you don't need to take a snapshot of your instance. {% tip %} - **Tip:**スナップショットを取る間は、インスタンスをオンラインのままにして利用し続けられます。 移行作業のメンテナンスモードの間、別のスナップショットを取ることができます。 バックアップはインクリメンタルなので、この初期スナップショットは最終のスナップショットへのデータ転送量を減らしてくれます。それによって、メンテナンスウィンドウが短くなるかもしれません。 + **Tip:** You can leave the instance online and in active use during the snapshot. You'll take another snapshot during the maintenance portion of the migration. Since backups are incremental, this initial snapshot reduces the amount of data transferred in the final snapshot, which may shorten the maintenance window. {% endtip %} -5. ユーザーネットワークトラフィックを新しいインスタンスに切り替える方法を決定します。 移行した後に、すべての HTTP と Git のネットワークトラフィックは新しいインスタンスに送信されます。 - - **DNS** - この方法はシンプルであり、あるデータセンターから他のデータセンターへの移行であってもうまく働くことから、この方法はすべての環境でおすすめします。 移行を開始する前に、既存のDNSレコードのTTLを5分以下にして、変更が伝播するようにしてください。 移行が完了したら、DNSレコードを新しいインスタンスのIPアドレスを指すように更新してください。 - - **IPアドレスの割り当て** - この方法が利用できるのはVMWareからVMWareへの移行の場合のみであり、DNSを使う方法が利用できない場合以外にはおすすめできません。 移行を始める前に、古いインスタンスをシャットダウンしてそのIPアドレスを新しいインスタンスに割り当てる必要があります。 -6. メンテナンスウィンドウをスケジューリングしてください。 メンテナンスウィンドウには、データをバックアップホストから新しいインスタンスに転送するのに十分な時間が含まれていなければならず、その長さはバックアップスナップショットのサイズと利用可能なネットワーク帯域に基づいて変化します。 この間、現在のインスタンスは利用できなくなり、新しいインスタンスへの移行の間はメンテナンスモードになります。 +5. Determine the method for switching user network traffic to the new instance. After you've migrated, all HTTP and Git network traffic directs to the new instance. + - **DNS** - We recommend this method for all environments, as it's simple and works well even when migrating from one datacenter to another. Before starting migration, reduce the existing DNS record's TTL to five minutes or less and allow the change to propagate. Once the migration is complete, update the DNS record(s) to point to the IP address of the new instance. + - **IP address assignment** - This method is only available on VMware to VMware migration and is not recommended unless the DNS method is unavailable. Before starting the migration, you'll need to shut down the old instance and assign its IP address to the new instance. +6. Schedule a maintenance window. The maintenance window should include enough time to transfer data from the backup host to the new instance and will vary based on the size of the backup snapshot and available network bandwidth. During this time your current instance will be unavailable and in maintenance mode while you migrate to the new instance. -## 移行の実施 +## Perform the migration -1. 新しい{% data variables.product.prodname_enterprise %}2.1インスタンスをプロビジョニングしてください。 詳しい情報については、ターゲットのプラットフォームの"[プロビジョニングとインストール](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)"ガイドを参照してください。 -2. ブラウザで新しいレプリカアプライアンスのIPアドレスにアクセスして、所有する{% data variables.product.prodname_enterprise %}のライセンスをアップロードしてください。 -3. 管理者パスワードを設定してください。 -5. **Migrate(移行)**をクリックしてください。 ![インストールタイプの選択](/assets/images/enterprise/migration/migration-choose-install-type.png) -6. バックアップホストへのアクセス用のSSHキーを"Add new SSH key(新しいSSHキーの追加)"に貼り付けてください。 ![バックアップの認証](/assets/images/enterprise/migration/migration-authorize-backup-host.png) -7. [**Add key**] をクリックしてから、[**Continue**] をクリックします。 -8. 新しいインスタンスへデータを移行するためにバックアップホストで実行する`ghe-restore`コマンドをコピーしてください。 ![移行の開始](/assets/images/enterprise/migration/migration-restore-start.png) -9. 古いインスタンスでメンテナンスモードを有効化し、すべてのアクティブなプロセスが完了するのを待ってください。 詳しい情報については"[メンテナンスモードの有効化とスケジューリング](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)"を参照してください。 +1. Provision a new {% data variables.product.prodname_enterprise %} 2.1 instance. For more information, see the "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)" guide for your target platform. +2. In a browser, navigate to the new replica appliance's IP address and upload your {% data variables.product.prodname_enterprise %} license. +3. Set an admin password. +5. Click **Migrate**. +![Choosing install type](/assets/images/enterprise/migration/migration-choose-install-type.png) +6. Paste your backup host access SSH key into "Add new SSH key". +![Authorizing backup](/assets/images/enterprise/migration/migration-authorize-backup-host.png) +7. Click **Add key** and then click **Continue**. +8. Copy the `ghe-restore` command that you'll run on the backup host to migrate data to the new instance. +![Starting a migration](/assets/images/enterprise/migration/migration-restore-start.png) +9. Enable maintenance mode on the old instance and wait for all active processes to complete. For more information, see "[Enabling and scheduling maintenance mode](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)." {% note %} - **ノート:** この時点から、インスタンスは通常の利用ができなくなります。 + **Note:** The instance will be unavailable for normal use from this point forward. {% endnote %} -10. バックアップホストで、`ghe-backup` コマンドを実行して最終的なバックアップスナップショットを作成します。 これにより、古いインスタンスからすべてのデータが確実にキャプチャされます。 -11. バックアップホストで、新しいインスタンスの復元ステータス画面でコピーした `ghe-restore` コマンドを実行して、最新のスナップショットを復元します。 +10. On the backup host, run the `ghe-backup` command to take a final backup snapshot. This ensures that all data from the old instance is captured. +11. On the backup host, run the `ghe-restore` command you copied on the new instance's restore status screen to restore the latest snapshot. ```shell $ ghe-restore 169.254.1.1 The authenticity of host '169.254.1.1:122' can't be established. @@ -84,15 +86,17 @@ shortTitle: Migrate from 11.10.x to 2.1.23 Visit https://169.254.1.1/setup/settings to review appliance configuration. ``` -12. 新しいインスタンスの復元ステータス画面に戻って、復元が完了したことを確認します。![復元完了画面](/assets/images/enterprise/migration/migration-status-complete.png) -13. [**Continue to settings**] をクリックして、前のインスタンスからインポートされた設定情報を確認して調整します。 ![インポートされた設定をレビュー](/assets/images/enterprise/migration/migration-status-complete.png) -14. **Save settings(設定の保存)**をクリックしてください。 +12. Return to the new instance's restore status screen to see that the restore completed. +![Restore complete screen](/assets/images/enterprise/migration/migration-status-complete.png) +13. Click **Continue to settings** to review and adjust the configuration information and settings that were imported from the previous instance. +![Review imported settings](/assets/images/enterprise/migration/migration-status-complete.png) +14. Click **Save settings**. {% note %} - **メモ:** 設定を適用してサーバーを再起動した後は、新しいインスタンスを使用できます。 + **Note:** You can use the new instance after you've applied configuration settings and restarted the server. {% endnote %} -15. DNS または IP アドレスの割り当てのどちらかを使用して、ユーザーのネットワークトラフィックを古いインスタンスから新しいインスタンスに切り替えます。 -16. 最新のパッチリリース {{ currentVersion }} にアップグレードします。 詳細は「[{% data variables.product.prodname_ghe_server %} をアップグレードする](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)」を参照してください。 +15. Switch user network traffic from the old instance to the new instance using either DNS or IP address assignment. +16. Upgrade to the latest patch release of {{ currentVersion }}. For more information, see "[Upgrading {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)." diff --git a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md index 2111abfe4f..67ec886148 100644 --- a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md +++ b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md @@ -3,7 +3,7 @@ title: Upgrade requirements intro: 'Before upgrading {% data variables.product.prodname_ghe_server %}, review these recommendations and requirements to plan your upgrade strategy.' redirect_from: - /enterprise/admin/installation/upgrade-requirements - - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release/ + - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release - /enterprise/admin/enterprise-management/upgrade-requirements - /admin/enterprise-management/upgrade-requirements versions: diff --git a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md index 4f60cb3784..7d618961ca 100644 --- a/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md +++ b/translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md @@ -3,15 +3,15 @@ title: Upgrading GitHub Enterprise Server intro: 'Upgrade {% data variables.product.prodname_ghe_server %} to get the latest features and security updates.' redirect_from: - /enterprise/admin/installation/upgrading-github-enterprise-server - - /enterprise/admin/articles/upgrading-to-the-latest-release/ - - /enterprise/admin/articles/migrations-and-upgrades/ - - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine/ - - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases/ - - /enterprise/admin/articles/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch/ - - /enterprise/admin/guides/installation/upgrading-github-enterprise/ + - /enterprise/admin/articles/upgrading-to-the-latest-release + - /enterprise/admin/articles/migrations-and-upgrades + - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine + - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases + - /enterprise/admin/articles/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch + - /enterprise/admin/guides/installation/upgrading-github-enterprise - /enterprise/admin/enterprise-management/upgrading-github-enterprise-server - /admin/enterprise-management/upgrading-github-enterprise-server versions: diff --git a/translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md b/translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md index c26d306359..19b17f289b 100644 --- a/translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md +++ b/translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md @@ -2,8 +2,8 @@ title: About GitHub Premium Support for GitHub Enterprise Server intro: '{% data variables.contact.premium_support %} is a paid, supplemental support offering for {% data variables.product.prodname_enterprise %} customers.' redirect_from: - - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise/ - - /enterprise/admin/guides/enterprise-support/about-premium-support/ + - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise + - /enterprise/admin/guides/enterprise-support/about-premium-support - /enterprise/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server - /admin/enterprise-support/about-github-premium-support-for-github-enterprise-server versions: diff --git a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/index.md b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/index.md index 1bb8a2e3d8..68f0cb423b 100644 --- a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/index.md +++ b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/index.md @@ -1,8 +1,8 @@ --- -title: GitHub Support からの支援を受ける -intro: 'Enterprise のさまざまな問題をレポートするには{% data variables.contact.enterprise_support %} に連絡してください。' +title: Receiving help from GitHub Support +intro: 'You can contact {% data variables.contact.enterprise_support %} to report a range of issues for your enterprise.' redirect_from: - - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support - /enterprise/admin/enterprise-support/receiving-help-from-github-support versions: ghes: '*' diff --git a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md index 2e6d49cb05..66c4f8ca9d 100644 --- a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md +++ b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md @@ -2,9 +2,9 @@ title: Providing data to GitHub Support intro: 'Since {% data variables.contact.github_support %} doesn''t have access to your environment, we require some additional information from you.' redirect_from: - - /enterprise/admin/guides/installation/troubleshooting/ - - /enterprise/admin/articles/support-bundles/ - - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support/ + - /enterprise/admin/guides/installation/troubleshooting + - /enterprise/admin/articles/support-bundles + - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support - /enterprise/admin/enterprise-support/providing-data-to-github-support - /admin/enterprise-support/providing-data-to-github-support versions: diff --git a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md index 70b1836838..9e60d8c73a 100644 --- a/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md +++ b/translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md @@ -2,7 +2,7 @@ title: Reaching GitHub Support intro: 'Contact {% data variables.contact.enterprise_support %} using the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or{% endif %} the support portal.' redirect_from: - - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support - /enterprise/admin/enterprise-support/reaching-github-support - /admin/enterprise-support/reaching-github-support versions: diff --git a/translations/ja-JP/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md b/translations/ja-JP/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md index 9af8604417..5f067794ac 100644 --- a/translations/ja-JP/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md +++ b/translations/ja-JP/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md @@ -61,38 +61,23 @@ The peak quantity of concurrent jobs running without performance loss depends on {%- ifversion ghes < 3.2 %} -| vCPUs | Memory | Maximum job throughput | -| :--- | :--- | :--- | -| 4 | 32 GB | Demo or light testing | -| 8 | 64 GB | 25 jobs | -| 16 | 160 GB | 35 jobs | -| 32 | 256 GB | 100 jobs | +{% data reusables.actions.hardware-requirements-before %} {%- endif %} {%- ifversion ghes = 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 32 | 128 GB | 1000 jobs | -| 64 | 256 GB | 1300 jobs | -| 96 | 384 GB | 2200 jobs | +{% data reusables.actions.hardware-requirements-3.2 %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} {%- ifversion ghes > 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 8 | 64 GB | 300 jobs | -| 16 | 160 GB | 700 jobs | -| 32 | 128 GB | 1300 jobs | -| 64 | 256 GB | 2000 jobs | -| 96 | 384 GB | 4000 jobs | +{% data reusables.actions.hardware-requirements-after %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} diff --git a/translations/ja-JP/content/admin/installation/index.md b/translations/ja-JP/content/admin/installation/index.md index e2e2e7519b..385c4412e7 100644 --- a/translations/ja-JP/content/admin/installation/index.md +++ b/translations/ja-JP/content/admin/installation/index.md @@ -1,13 +1,13 @@ --- -title: '{% data variables.product.prodname_enterprise %}のインストール' -shortTitle: インストール -intro: 'システム管理者、運用およびセキュリティスペシャリストは、{% data variables.product.prodname_ghe_server %} をインストールできます。' +title: 'Installing {% data variables.product.prodname_enterprise %}' +shortTitle: Installing +intro: 'System administrators and operations and security specialists can install {% data variables.product.prodname_ghe_server %}.' redirect_from: - - /enterprise/admin-guide/ - - /enterprise/admin/guides/installation/ - - /enterprise/admin/categories/customization/ - - /enterprise/admin/categories/general/ - - /enterprise/admin/categories/logging-and-monitoring/ + - /enterprise/admin-guide + - /enterprise/admin/guides/installation + - /enterprise/admin/categories/customization + - /enterprise/admin/categories/general + - /enterprise/admin/categories/logging-and-monitoring - /enterprise/admin/installation versions: ghes: '*' @@ -19,9 +19,8 @@ topics: children: - /setting-up-a-github-enterprise-server-instance --- - -詳しい情報または {% data variables.product.prodname_enterprise %} の購入については [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise) を参照してください。 +For more information, or to purchase {% data variables.product.prodname_enterprise %}, see [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). {% data reusables.enterprise_installation.request-a-trial %} -インストールプロセスについて質問がある場合は、「[{% data variables.product.prodname_enterprise %} Support への相談](/enterprise/admin/guides/enterprise-support/)」を参照してください。 +If you have questions about the installation process, see "[Working with {% data variables.product.prodname_enterprise %} Support](/enterprise/admin/guides/enterprise-support/)." diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md index f0a6707eb0..c1df769365 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: GitHub Enterprise Server インスタンスをセットアップする -intro: 'サポートされている任意の仮想化プラットフォームに、{% data variables.product.prodname_ghe_server %} をインストールできます。' +title: Setting up a GitHub Enterprise Server instance +intro: 'You can install {% data variables.product.prodname_ghe_server %} on the supported virtualization platform of your choice.' redirect_from: - /enterprise/admin/installation/getting-started-with-github-enterprise-server - - /enterprise/admin/guides/installation/supported-platforms/ - - /enterprise/admin/guides/installation/provisioning-and-installation/ - - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance/ + - /enterprise/admin/guides/installation/supported-platforms + - /enterprise/admin/guides/installation/provisioning-and-installation + - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance - /enterprise/admin/installation/setting-up-a-github-enterprise-server-instance versions: ghes: '*' diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md index d857ebcd73..4fbe447d97 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on AWS intro: 'To install {% data variables.product.prodname_ghe_server %} on Amazon Web Services (AWS), you must launch an Amazon Elastic Compute Cloud (EC2) instance and create and attach a separate Amazon Elastic Block Store (EBS) data volume.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws - /enterprise/admin/installation/installing-github-enterprise-server-on-aws - /admin/installation/installing-github-enterprise-server-on-aws versions: diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md index ee09f2f006..514b440f73 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Azure intro: 'To install {% data variables.product.prodname_ghe_server %} on Azure, you must deploy onto a DS-series instance and use Premium-LRS storage.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure - /enterprise/admin/installation/installing-github-enterprise-server-on-azure - /admin/installation/installing-github-enterprise-server-on-azure versions: diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md index 53f1013468..e8d6a0059e 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md @@ -1,8 +1,8 @@ --- -title: Google Cloud Platform で GitHub Enterprise Server をインストールする -intro: '{% data variables.product.prodname_ghe_server %} を Google Cloud Platform にインストールするには、サポートされているマシンタイプにデプロイし、永続的な標準ディスクまたは永続的な SSD を使用する必要があります。' +title: Installing GitHub Enterprise Server on Google Cloud Platform +intro: 'To install {% data variables.product.prodname_ghe_server %} on Google Cloud Platform, you must deploy onto a supported machine type and use a persistent standard disk or a persistent SSD.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform - /enterprise/admin/installation/installing-github-enterprise-server-on-google-cloud-platform - /admin/installation/installing-github-enterprise-server-on-google-cloud-platform versions: @@ -15,68 +15,67 @@ topics: - Set up shortTitle: Install on GCP --- - -## 必要な環境 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Google Compute Engine(GCE)仮想マシン(VM)インスタンスを起動できるGoogle Cloud Platformのアカウントが必要です。 詳しい情報については[Google Cloud PlatformのWebサイト](https://cloud.google.com/)及び[Google Cloud Platformドキュメンテーション](https://cloud.google.com/docs/)を参照してください。 -- インスタンスを起動するのに必要なアクションのほとんどは、[Google Cloud Platform Console](https://cloud.google.com/compute/docs/console)を使っても行えます。 とはいえ、初期セットアップのためにgcloud computeコマンドラインツールをインストールすることをお勧めします。 以下の例では、gcloud computeコマンドラインツールを使用しています。 詳しい情報についてはGoogleのドキュメンテーション中の"[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)"のインストール及びセットアップガイドを参照してください。 +- You must have a Google Cloud Platform account capable of launching Google Compute Engine (GCE) virtual machine (VM) instances. For more information, see the [Google Cloud Platform website](https://cloud.google.com/) and the [Google Cloud Platform Documentation](https://cloud.google.com/docs/). +- Most actions needed to launch your instance may also be performed using the [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console). However, we recommend installing the gcloud compute command-line tool for initial setup. Examples using the gcloud compute command-line tool are included below. For more information, see the "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)" installation and setup guide in the Google documentation. -## ハードウェアについて +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## マシンタイプの決定 +## Determining the machine type -Google Cloud Platformde{% data variables.product.product_location %}を起動する前に、組織の要求に最も適したマシンタイプを決定する必要があります。 {% data variables.product.product_name %} の最小要件を確認するには、「[最小要件](#minimum-requirements)」を参照してください。 +Before launching {% data variables.product.product_location %} on Google Cloud Platform, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} -{% data variables.product.company_short %} は、{% data variables.product.prodname_ghe_server %} に汎用のハイメモリマシンを推奨しています。 詳しい情報については、Google Compute Engine のドキュメント「[マシンタイプ](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)」を参照してください。 +{% data variables.product.company_short %} recommends a general-purpose, high-memory machine for {% data variables.product.prodname_ghe_server %}. For more information, see "[Machine types](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" in the Google Compute Engine documentation. -## {% data variables.product.prodname_ghe_server %} イメージを選択する +## Selecting the {% data variables.product.prodname_ghe_server %} image -1. [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)コマンドラインツールを使用して、パブリックな {% data variables.product.prodname_ghe_server %} イメージを一覧表示します。 +1. Using the [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/) command-line tool, list the public {% data variables.product.prodname_ghe_server %} images: ```shell $ gcloud compute images list --project github-enterprise-public --no-standard-images ``` -2. {% data variables.product.prodname_ghe_server %} の最新の GCE イメージのイメージ名をメモしておきます。 +2. Take note of the image name for the latest GCE image of {% data variables.product.prodname_ghe_server %}. -## ファイアウォールの設定 +## Configuring the firewall -GCE 仮想マシンは、ファイアウォールが存在するネットワークのメンバーとして作成されます。 {% data variables.product.prodname_ghe_server %} VMに関連付けられているネットワークの場合、下記の表に一覧表示されている必要なポートを許可するようにファイアウォールを設定する必要があります。 Google Cloud Platform でのファイアウォールルールに関する詳しい情報については、Google ガイドの「[ファイアウォールルールの概要](https://cloud.google.com/vpc/docs/firewalls)」を参照してください。 +GCE virtual machines are created as a member of a network, which has a firewall. For the network associated with the {% data variables.product.prodname_ghe_server %} VM, you'll need to configure the firewall to allow the required ports listed in the table below. For more information about firewall rules on Google Cloud Platform, see the Google guide "[Firewall Rules Overview](https://cloud.google.com/vpc/docs/firewalls)." -1. gcloud compute コマンドラインツールを使用して、ネットワークを作成します。 詳しい情報については、Google ドキュメンテーションの「[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)」を参照してください。 +1. Using the gcloud compute command-line tool, create the network. For more information, see "[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" in the Google documentation. ```shell $ gcloud compute networks create <em>NETWORK-NAME</em> --subnet-mode auto ``` -2. 下記の表にある各ポートに関するファイアウォールルールを作成します。 詳しい情報については、Googleドキュメンテーションの「[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)」を参照してください。 +2. Create a firewall rule for each of the ports in the table below. For more information, see "[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" in the Google documentation. ```shell $ gcloud compute firewall-rules create <em>RULE-NAME</em> \ --network <em>NETWORK-NAME</em> \ --allow tcp:22,tcp:25,tcp:80,tcp:122,udp:161,tcp:443,udp:1194,tcp:8080,tcp:8443,tcp:9418,icmp ``` - 次の表に、必要なポートと各ポートの使用目的を示します。 + This table identifies the required ports and what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## スタティックIPの取得とVMへの割り当て +## Allocating a static IP and assigning it to the VM -これが稼働状態のアプライアンスである場合は、静的な外部 IP アドレスを予約し、それを {% data variables.product.prodname_ghe_server %} VM に割り当てることを強くおすすめします。 そうしなければ、VM のパブリックな IP アドレスは再起動後に保持されません。 詳しい情報については、Google ガイドの「[静的外部 IP アドレスを予約する](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)」を参照してください。 +If this is a production appliance, we strongly recommend reserving a static external IP address and assigning it to the {% data variables.product.prodname_ghe_server %} VM. Otherwise, the public IP address of the VM will not be retained after restarts. For more information, see the Google guide "[Reserving a Static External IP Address](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)." -稼働状態の High Availability 設定では、プライマリアプライアンスとレプリカアプライアンスの両方に別々の静的 IP アドレスを割り当ててください。 +In production High Availability configurations, both primary and replica appliances should be assigned separate static IP addresses. -## {% data variables.product.prodname_ghe_server %} インスタンスを作成する +## Creating the {% data variables.product.prodname_ghe_server %} instance -{% data variables.product.prodname_ghe_server %} インスタンスを作成するには、{% data variables.product.prodname_ghe_server %} イメージを使用して GCE インスタンスを作成し、インスタンスデータ用の追加のストレージボリュームをアタッチする必要があります。 詳細は「[ハードウェアについて](#hardware-considerations)」を参照してください。 +To create the {% data variables.product.prodname_ghe_server %} instance, you'll need to create a GCE instance with your {% data variables.product.prodname_ghe_server %} image and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." -1. gcloud computeコマンドラインツールを使い、インスタンスデータのためのストレージボリュームとしてアタッチして使うデータディスクを作成し、そのサイズをユーザライセンス数に基づいて設定してください。 詳しい情報については、Google ドキュメンテーションの「[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)」を参照してください。 +1. Using the gcloud compute command-line tool, create a data disk to use as an attached storage volume for your instance data, and configure the size based on your user license count. For more information, see "[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" in the Google documentation. ```shell $ gcloud compute disks create <em>DATA-DISK-NAME</em> --size <em>DATA-DISK-SIZE</em> --type <em>DATA-DISK-TYPE</em> --zone <em>ZONE</em> ``` -2. 次に、選択した {% data variables.product.prodname_ghe_server %} イメージの名前を使用してインスタンスを作成し、データディスクをアタッチします。 詳しい情報については、Googleドキュメンテーションの「[gcloud compute instances create](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)」を参照してください。 +2. Then create an instance using the name of the {% data variables.product.prodname_ghe_server %} image you selected, and attach the data disk. For more information, see "[gcloud compute instances create](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" in the Google documentation. ```shell $ gcloud compute instances create <em>INSTANCE-NAME</em> \ --machine-type n1-standard-8 \ @@ -88,15 +87,15 @@ GCE 仮想マシンは、ファイアウォールが存在するネットワー --image-project github-enterprise-public ``` -## インスタンスの設定 +## Configuring the instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %}詳しい情報については、「[{% data variables.product.prodname_ghe_server %} アプライアンスを設定する](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)」を参照してください。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 参考リンク +## Further reading -- 「[システム概要](/enterprise/admin/guides/installation/system-overview)」{% ifversion ghes %} -- 「[新しいリリースへのアップグレードについて](/admin/overview/about-upgrades-to-new-releases)」{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md index d9603f0f38..7901cb3efd 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md @@ -1,8 +1,8 @@ --- -title: Hyper-V で GitHub Enterprise Server をインストールする -intro: '{% data variables.product.prodname_ghe_server %} を Hyper-V にインストールするには、Windows Server 2008 から Windows Server 2019 までを実行しているマシンに配備する必要があります。' +title: Installing GitHub Enterprise Server on Hyper-V +intro: 'To install {% data variables.product.prodname_ghe_server %} on Hyper-V, you must deploy onto a machine running Windows Server 2008 through Windows Server 2019.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v - /enterprise/admin/installation/installing-github-enterprise-server-on-hyper-v - /admin/installation/installing-github-enterprise-server-on-hyper-v versions: @@ -15,60 +15,59 @@ topics: - Set up shortTitle: Install on Hyper-V --- - -## 必要な環境 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Hyper-VをサポートしているWindows Server 2008からWindows Server 2019を持っている必要があります。 -- 仮想マシン(VM)の作成に必要なほとんどのアクションは、 [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts)を使っても行えます。 とはいえ、初期セットアップのためにはWindows PowerShellコマンドラインシェルを使うことをおすすめします。 以下の例ではPowerShellを使っています。 詳細については、Microsoft ガイド「[Windows PowerShell 入門](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)」を参照してください。 +- You must have Windows Server 2008 through Windows Server 2019, which support Hyper-V. +- Most actions needed to create your virtual machine (VM) may also be performed using the [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). However, we recommend using the Windows PowerShell command-line shell for initial setup. Examples using PowerShell are included below. For more information, see the Microsoft guide "[Getting Started with Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)." -## ハードウェアについて +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## {% data variables.product.prodname_ghe_server %} イメージをダウンロードする +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. {% data variables.product.prodname_dotcom %}オンプレミスを選択し、**Hyper-V (VHD)**をクリックしてください。 -5. **Download for Hyper-V (VHD)**をクリックしてください。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **Hyper-V (VHD)**. +5. Click **Download for Hyper-V (VHD)**. -## {% data variables.product.prodname_ghe_server %} インスタンスを作成する +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. PowerShell で、新しい第1世代の仮想マシンを作成し、ユーザライセンス数に基づいてサイズを設定し、ダウンロードした{% data variables.product.prodname_ghe_server %}イメージをアタッチします。 詳しい情報については、Microsoft ドキュメンテーションの「[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)」を参照してください。 +1. In PowerShell, create a new Generation 1 virtual machine, configure the size based on your user license count, and attach the {% data variables.product.prodname_ghe_server %} image you downloaded. For more information, see "[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VM -Generation 1 -Name <em>VM_NAME</em> -MemoryStartupBytes <em>MEMORY_SIZE</em> -BootDevice VHD -VHDPath <em>PATH_TO_VHD</em> ``` -{% data reusables.enterprise_installation.create-attached-storage-volume %} `PATH_TO_DATA_DISK` をディスクを作成した場所へのパスに置き換えます。 詳しい情報については、Microsoft ドキュメンテーションの「[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)」を参照してください。 +{% data reusables.enterprise_installation.create-attached-storage-volume %} Replace `PATH_TO_DATA_DISK` with the path to the location where you create the disk. For more information, see "[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VHD -Path <em>PATH_TO_DATA_DISK</em> -SizeBytes <em>DISK_SIZE</em> ``` -3. データディスクをインスタンスにアタッチします。 詳しい情報については、Microsoftドキュメンテーションの「[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)」を参照してください。 +3. Attach the data disk to your instance. For more information, see "[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Add-VMHardDiskDrive -VMName <em>VM_NAME</em> -Path <em>PATH_TO_DATA_DISK</em> ``` -4. VM を起動します。 詳しい情報については、Microsoftドキュメンテーションの「[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)」を参照してください。 +4. Start the VM. For more information, see "[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Start-VM -Name <em>VM_NAME</em> ``` -5. VM の IP アドレスを入手します。 詳しい情報については、Microsoftドキュメンテーションの「[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)」を参照してください。 +5. Get the IP address of your VM. For more information, see "[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> (Get-VMNetworkAdapter -VMName <em>VM_NAME</em>).IpAddresses ``` -6. VM の IP アドレスをコピーし、Web ブラウザに貼り付けます。 +6. Copy the VM's IP address and paste it into a web browser. -## {% data variables.product.prodname_ghe_server %} インスタンスを設定する +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %}詳しい情報については、「[{% data variables.product.prodname_ghe_server %} アプライアンスを設定する](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)」を参照してください。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 参考リンク +## Further reading -- 「[システム概要](/enterprise/admin/guides/installation/system-overview)」{% ifversion ghes %} -- 「[新しいリリースへのアップグレードについて](/admin/overview/about-upgrades-to-new-releases)」{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md index 048379abc8..1c1de12f10 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md @@ -1,8 +1,8 @@ --- -title: OpenStack KVM で GitHub Enterprise Server をインストールする -intro: '{% data variables.product.prodname_ghe_server %} を OpenStack KVM 上にインストールするには、OpenStack にアクセスでき、{% data variables.product.prodname_ghe_server %} QCOW2 イメージをダウンロードすることが必要です。' +title: Installing GitHub Enterprise Server on OpenStack KVM +intro: 'To install {% data variables.product.prodname_ghe_server %} on OpenStack KVM, you must have OpenStack access and download the {% data variables.product.prodname_ghe_server %} QCOW2 image.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm - /enterprise/admin/installation/installing-github-enterprise-server-on-openstack-kvm - /admin/installation/installing-github-enterprise-server-on-openstack-kvm versions: @@ -15,45 +15,44 @@ topics: - Set up shortTitle: Install on OpenStack --- - -## 必要な環境 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- OpenStackのサービス群へのWebベースのユーザインターフェースであるOpenStack Horizonの環境へのアクセスが必要です。 詳しい情報については[Horizonのドキュメンテーション](https://docs.openstack.org/horizon/latest/)を参照してください。 +- You must have access to an installation of OpenStack Horizon, the web-based user interface to OpenStack services. For more information, see the [Horizon documentation](https://docs.openstack.org/horizon/latest/). -## ハードウェアについて +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## {% data variables.product.prodname_ghe_server %} イメージをダウンロードする +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. {% data variables.product.prodname_dotcom %}オンプレミスを選択し、続いて**OpenStack KVM (QCOW2)**をクリックしてください。 -5. **Download for OpenStack KVM (QCOW2)**をクリックしてください。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **OpenStack KVM (QCOW2)**. +5. Click **Download for OpenStack KVM (QCOW2)**. -## {% data variables.product.prodname_ghe_server %} インスタンスを作成する +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. OpenStack Horizon で、ダウンロードした {% data variables.product.prodname_ghe_server %} のイメージをアップロードします。 手順については、OpenStack ガイドの「[Upload and manage images](https://docs.openstack.org/horizon/latest/user/manage-images.html)」の 「Upload an image」セクションを参照してください。 -{% data reusables.enterprise_installation.create-attached-storage-volume %} 手順については、OpenStack ガイドの「[Create and manage volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)」を参照してください。 -3. セキュリティグループを作成し、下の表の各ポートについて新しいセキュリティグループルールを追加してください。 その方法についてはOpenStackのガイド"[Configure access and security for instances](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)"を参照してください。 +1. In OpenStack Horizon, upload the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the "Upload an image" section of the OpenStack guide "[Upload and manage images](https://docs.openstack.org/horizon/latest/user/manage-images.html)." +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the OpenStack guide "[Create and manage volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)." +3. Create a security group, and add a new security group rule for each port in the table below. For instructions, see the OpenStack guide "[Configure access and security for instances](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)." {% data reusables.enterprise_installation.necessary_ports %} -4. フローティングIPをインスタンスに関連づけることもできます。 使用しているOpenStackのセットアップによっては、フローティングIPをプロジェクトに割り当て、それをインスタンスに関連づける必要があるかもしれません、 そうする必要があるかどうかは、システム管理者に連絡を取って判断してください。 詳しい情報については、OpenStackのドキュメンテーション中の"[Allocate a floating IP address to an instance](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)"を参照してください。 -5. これまでのステップで作成したイメージ、データボリューム、セキュリティグループを使って{% data variables.product.product_location %}を起動してください。 その方法についてはOpenStackのガイド"[Launch and manage instances](https://docs.openstack.org/horizon/latest/user/launch-instances.html)"を参照してください。 +4. Optionally, associate a floating IP to the instance. Depending on your OpenStack setup, you may need to allocate a floating IP to the project and associate it to the instance. Contact your system administrator to determine if this is the case for you. For more information, see "[Allocate a floating IP address to an instance](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" in the OpenStack documentation. +5. Launch {% data variables.product.product_location %} using the image, data volume, and security group created in the previous steps. For instructions, see the OpenStack guide "[Launch and manage instances](https://docs.openstack.org/horizon/latest/user/launch-instances.html)." -## {% data variables.product.prodname_ghe_server %} インスタンスを設定する +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %}詳しい情報については、「[{% data variables.product.prodname_ghe_server %} アプライアンスを設定する](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)」を参照してください。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 参考リンク +## Further reading -- 「[システム概要](/enterprise/admin/guides/installation/system-overview)」{% ifversion ghes %} -- 「[新しいリリースへのアップグレードについて](/admin/overview/about-upgrades-to-new-releases)」{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md index eeaf9cbdf9..e725f7fd72 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md @@ -1,11 +1,11 @@ --- -title: VMware で GitHub Enterprise Server をインストールする -intro: '{% data variables.product.prodname_ghe_server %} を VMware にインストールするには、VMware vSphere クライアントをダウンロードしてから、{% data variables.product.prodname_ghe_server %} ソフトウェアをダウンロードしてデプロイする必要があります。' +title: Installing GitHub Enterprise Server on VMware +intro: 'To install {% data variables.product.prodname_ghe_server %} on VMware, you must download the VMware vSphere client, and then download and deploy the {% data variables.product.prodname_ghe_server %} software.' redirect_from: - - /enterprise/admin/articles/getting-started-with-vmware/ - - /enterprise/admin/articles/installing-vmware-tools/ - - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums/ - - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware/ + - /enterprise/admin/articles/getting-started-with-vmware + - /enterprise/admin/articles/installing-vmware-tools + - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums + - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware - /enterprise/admin/installation/installing-github-enterprise-server-on-vmware - /admin/installation/installing-github-enterprise-server-on-vmware versions: @@ -18,43 +18,42 @@ topics: - Set up shortTitle: Install on VMware --- - -## 必要な環境 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- {% data variables.product.product_location %}を動作させるベアメタルマシンに適用されたVMware vSphere ESXi Hypervisorが必要です。 バージョン 5.5 から 6.7 までをサポートしています。 ESXi Hypervisor は無料で、オプションの vCenter Server は含まれていません。 詳しい情報については、[VMware ESXiのドキュメンテーション](https://www.vmware.com/products/esxi-and-esx.html)を参照してください。 -- vSphere Clientへのアクセスが必要です。 vCenter Serverがあるなら、vSphere Web Clientが利用できます。 詳しい情報については、VMWareのガイド "[vSphere Web Client を使用した、vCenter Server へのログイン](https://docs.vmware.com/jp/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)"を参照してください。 +- You must have a VMware vSphere ESXi Hypervisor, applied to a bare metal machine that will run {% data variables.product.product_location %}s. We support versions 5.5 through 6.7. The ESXi Hypervisor is free and does not include the (optional) vCenter Server. For more information, see [the VMware ESXi documentation](https://www.vmware.com/products/esxi-and-esx.html). +- You will need access to a vSphere Client. If you have vCenter Server you can use the vSphere Web Client. For more information, see the VMware guide "[Log in to vCenter Server by Using the vSphere Web Client](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)." -## ハードウェアについて +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## {% data variables.product.prodname_ghe_server %} イメージをダウンロードする +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. {% data variables.product.prodname_dotcom %}オンプレミスを選択し、**VMware ESXi/vSphere (OVA)**をクリックしてください。 -5. **Download for VMware ESXi/vSphere (OVA)**をクリックしてください。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **VMware ESXi/vSphere (OVA)**. +5. Click **Download for VMware ESXi/vSphere (OVA)**. -## {% data variables.product.prodname_ghe_server %} インスタンスを作成する +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. vSphere Windows Client または vCenter Web Client を使用して、ダウンロードした {% data variables.product.prodname_ghe_server %} イメージをインポートします。 詳しい情報については、VMware ガイドの「[Deploy an OVF or OVA Template ](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)」を参照してください。 - - データストアを選択する際には、VMのディスクをホストするのに十分な領域があるものを選択してください。 インスタンスサイズに応じた最小の推奨ハードウェア仕様については「[ハードウェアについて](#hardware-considerations)」を参照してください。 lazy zeroing のシックプロビジョニングをお勧めします。 - - **Power on after deployment**のチェックは外したままにしておいてください。これは、VMをプロビジョニングした後にリポジトリデータのためのアタッチされたストレージボリュームを追加する必要があるためです。 -{% data reusables.enterprise_installation.create-attached-storage-volume %}その方法については、VMWareのガイド "[仮想マシンへの新しいハード ディスクの追加](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)"を参照してください。 +1. Using the vSphere Windows Client or the vCenter Web Client, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the VMware guide "[Deploy an OVF or OVA Template](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)." + - When selecting a datastore, choose one with sufficient space to host the VM's disks. For the minimum hardware specifications recommended for your instance size, see "[Hardware considerations](#hardware-considerations)." We recommend thick provisioning with lazy zeroing. + - Leave the **Power on after deployment** box unchecked, as you will need to add an attached storage volume for your repository data after provisioning the VM. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the VMware guide "[Add a New Hard Disk to a Virtual Machine](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)." -## {% data variables.product.prodname_ghe_server %} インスタンスを設定する +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %}詳しい情報については、「[{% data variables.product.prodname_ghe_server %} アプライアンスを設定する](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)」を参照してください。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 参考リンク +## Further reading -- 「[システム概要](/enterprise/admin/guides/installation/system-overview)」{% ifversion ghes %} -- 「[新しいリリースへのアップグレードについて](/admin/overview/about-upgrades-to-new-releases)」{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md index a9536d02a5..0f2545636d 100644 --- a/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md +++ b/translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md @@ -1,12 +1,12 @@ --- -title: XenServer で GitHub Enterprise Server をインストールする -intro: '{% data variables.product.prodname_ghe_server %} を XenServer にインストールするには、{% data variables.product.prodname_ghe_server %} のディスクイメージを XenServer ホストに配備する必要があります。' +title: Installing GitHub Enterprise Server on XenServer +intro: 'To install {% data variables.product.prodname_ghe_server %} on XenServer, you must deploy the {% data variables.product.prodname_ghe_server %} disk image to a XenServer host.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver - /enterprise/admin/installation/installing-github-enterprise-server-on-xenserver - /admin/installation/installing-github-enterprise-server-on-xenserver versions: - ghes: <=3.2 + ghes: '<=3.2' type: tutorial topics: - Administrator @@ -22,42 +22,42 @@ shortTitle: Install on XenServer {% endnote %} -## 必要な環境 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- {% data variables.product.prodname_ghe_server %} の仮想マシン (VM) を実行するマシンに、XenServer Hypervisor をインストールする必要があります。 バージョン 6.0 から 7.0 までをサポートしています。 -- 初期セットアップには、XenCenter Windows Management Consoleを使うことをおすすめします。 以下にXenCenter Windows Management Consoleの使い方を示します。 詳しい情報については、Citrixのガイド"[How to Download and Install a New Version of XenCenter](https://support.citrix.com/article/CTX118531)"を参照してください。 +- You must install the XenServer Hypervisor on the machine that will run your {% data variables.product.prodname_ghe_server %} virtual machine (VM). We support versions 6.0 through 7.0. +- We recommend using the XenCenter Windows Management Console for initial setup. Instructions using the XenCenter Windows Management Console are included below. For more information, see the Citrix guide "[How to Download and Install a New Version of XenCenter](https://support.citrix.com/article/CTX118531)." -## ハードウェアについて +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## {% data variables.product.prodname_ghe_server %} イメージをダウンロードする +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. {% data variables.product.prodname_dotcom %}オンプレミスを選択し、続いて**XenServer (VHD)**をクリックしてください。 -5. ライセンスファイルをダウンロードするには**Download license(ライセンスのダウンロード)**をクリックしてください。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **XenServer (VHD)**. +5. To download your license file, click **Download license**. -## {% data variables.product.prodname_ghe_server %} インスタンスを作成する +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. XenCenter で、ダウンロードした {% data variables.product.prodname_ghe_server %} のイメージをインポートします。 手順については、XenCenter ガイドの「[ディスクイメージをインポートする](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)」を参照してください。 - - "Enable Operating System Fixup"のステップでは、**Don't use Operating System Fixup**を選択してください。 - - 終了したら、VMの電源をオフのままにしておいてください。 -{% data reusables.enterprise_installation.create-attached-storage-volume %} 手順については、XenCenter ガイドの「[仮想ディスクを追加する](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)」を参照してください。 +1. In XenCenter, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the XenCenter guide "[Import Disk Images](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)." + - For the "Enable Operating System Fixup" step, select **Don't use Operating System Fixup**. + - Leave the VM powered off when you're finished. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the XenCenter guide "[Add Virtual Disks](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)." -## {% data variables.product.prodname_ghe_server %} インスタンスを設定する +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %}詳しい情報については、「[{% data variables.product.prodname_ghe_server %} アプライアンスを設定する](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)」を参照してください。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 参考リンク +## Further reading -- 「[システム概要](/enterprise/admin/guides/installation/system-overview)」{% ifversion ghes %} -- 「[新しいリリースへのアップグレードについて](/admin/overview/about-upgrades-to-new-releases)」{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/ja-JP/content/admin/overview/about-enterprise-accounts.md b/translations/ja-JP/content/admin/overview/about-enterprise-accounts.md index f4b42215c9..8b277fe208 100644 --- a/translations/ja-JP/content/admin/overview/about-enterprise-accounts.md +++ b/translations/ja-JP/content/admin/overview/about-enterprise-accounts.md @@ -1,8 +1,8 @@ --- -title: Enterprise アカウントについて +title: About enterprise accounts intro: 'With {% data variables.product.product_name %}, you can use an enterprise account to {% ifversion ghec %}enable collaboration between your organizations, while giving{% elsif ghes or ghae %}give{% endif %} administrators a single point of visibility and management.' redirect_from: - - /articles/about-github-business-accounts/ + - /articles/about-github-business-accounts - /articles/about-enterprise-accounts - /enterprise/admin/installation/about-enterprise-accounts - /enterprise/admin/overview/about-enterprise-accounts @@ -24,7 +24,7 @@ topics: {% ifversion ghec %} -Your enterprise account on {% data variables.product.prodname_dotcom_the_website %} allows you to manage multiple organizations. Enterprise アカウントは、{% data variables.product.prodname_dotcom %} 上の Organization や個人アカウントのようにハンドルを持たなければなりません。 +Your enterprise account on {% data variables.product.prodname_dotcom_the_website %} allows you to manage multiple organizations. Your enterprise account must have a handle, like an organization or personal account on {% data variables.product.prodname_dotcom %}. {% elsif ghes or ghae %} @@ -36,7 +36,7 @@ Organizations are shared accounts where enterprise members can collaborate acros {% ifversion ghec %} -Enterprise owners can create organizations and link the organizations to the enterprise. Alternatively, you can invite an existing organization to join your enterprise account. After you add organizations to your enterprise account, you can manage and enforce policies for the organizations. 特定の強制の選択肢は、設定によって異なります。概して、Enterprise アカウント内のすべての Organization に単一のポリシーを強制するか、Organization レベルでオーナーがポリシーを設定することを許可するかを選択できます。 For more information, see "[Setting policies for your enterprise](/admin/policies)." +Enterprise owners can create organizations and link the organizations to the enterprise. Alternatively, you can invite an existing organization to join your enterprise account. After you add organizations to your enterprise account, you can manage and enforce policies for the organizations. Specific enforcement options vary by setting; generally, you can choose to enforce a single policy for every organization in your enterprise account or allow owners to set policy on the organization level. For more information, see "[Setting policies for your enterprise](/admin/policies)." {% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account](/admin/overview/creating-an-enterprise-account)." @@ -74,17 +74,17 @@ From your enterprise account on {% ifversion ghae %}{% data variables.product.pr If you use both {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %}, you can also manage the following for {% data variables.product.prodname_ghe_server %} from your enterprise account on {% data variables.product.prodname_dotcom_the_website %}. - Billing and usage for {% data variables.product.prodname_ghe_server %} instances -- {% data variables.contact.enterprise_support %} とのリクエストおよび Support Bundle の共有 +- Requests and support bundle sharing with {% data variables.contact.enterprise_support %} You can also connect the enterprise account on {% data variables.product.product_location_enterprise %} to your enterprise account on {% data variables.product.prodname_dotcom_the_website %} to see license usage details for your {% data variables.product.prodname_enterprise %} subscription from {% data variables.product.prodname_dotcom_the_website %}. For more information, see {% ifversion ghec %}"[Syncing license usage between {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %}](/enterprise-server/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud)" in the {% data variables.product.prodname_ghe_server %} documentation.{% elsif ghes %}"[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 %} -{% data variables.product.prodname_ghe_cloud %} と {% data variables.product.prodname_ghe_server %} の違いについては、「[{% data variables.product.prodname_dotcom %} の製品](/get-started/learning-about-github/githubs-products)」を参照してください。 {% data reusables.enterprise-accounts.to-upgrade-or-get-started %} +For more information about the differences between {% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %}, see "[{% data variables.product.prodname_dotcom %}'s products](/get-started/learning-about-github/githubs-products)." {% data reusables.enterprise-accounts.to-upgrade-or-get-started %} {% endif %} {% ifversion ghec %} -## {% data variables.product.prodname_emus %}について +## About {% data variables.product.prodname_emus %} {% data reusables.enterprise-accounts.emu-short-summary %} @@ -114,6 +114,6 @@ For more information about billing for {% ifversion ghec %}{% data variables.pro {% endif %} -## 参考リンク +## Further reading - "[Enterprise accounts](/graphql/guides/managing-enterprise-accounts)" in the GraphQL API documentation diff --git a/translations/ja-JP/content/admin/overview/about-the-github-enterprise-api.md b/translations/ja-JP/content/admin/overview/about-the-github-enterprise-api.md index 1a27cf5f4b..13c1255fff 100644 --- a/translations/ja-JP/content/admin/overview/about-the-github-enterprise-api.md +++ b/translations/ja-JP/content/admin/overview/about-the-github-enterprise-api.md @@ -1,11 +1,11 @@ --- -title: GitHub Enterprise API について -intro: '{% data variables.product.product_name %} は、REST および GraphQL API をサポートしています。' +title: About the GitHub Enterprise API +intro: '{% data variables.product.product_name %} supports REST and GraphQL APIs.' redirect_from: - /enterprise/admin/installation/about-the-github-enterprise-server-api - - /enterprise/admin/articles/about-the-enterprise-api/ - - /enterprise/admin/articles/using-the-api/ - - /enterprise/admin/categories/api/ + - /enterprise/admin/articles/about-the-enterprise-api + - /enterprise/admin/articles/using-the-api + - /enterprise/admin/categories/api - /enterprise/admin/overview/about-the-github-enterprise-server-api - /admin/overview/about-the-github-enterprise-server-api versions: @@ -16,12 +16,12 @@ topics: shortTitle: GitHub Enterprise API --- -API を使用すると、さまざまなタスクを自動化できます。 例えば、 +With the APIs, you can automate many administrative tasks. Some examples include: {% ifversion ghes %} -- {% data variables.enterprise.management_console %} に変更を加える。 詳しい情報については、「[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)」を参照してください。 -- LDAP 同期を設定する。 詳しい情報については、「[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)」を参照してください。{% endif %} -- 自分の Enterprise に関する統計を収集する。 詳しい情報については、「[管理統計](/rest/reference/enterprise-admin#admin-stats)」を参照してください。 -- Enterpriseアカウントの管理。 詳しい情報については「[Enterprise アカウント](/graphql/guides/managing-enterprise-accounts)」を参照してください。 +- Perform changes to the {% data variables.enterprise.management_console %}. For more information, see "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)." +- Configure LDAP sync. For more information, see "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)."{% endif %} +- Collect statistics about your enterprise. For more information, see "[Admin stats](/rest/reference/enterprise-admin#admin-stats)." +- Manage your enterprise account. For more information, see "[Enterprise accounts](/graphql/guides/managing-enterprise-accounts)." -{% data variables.product.prodname_enterprise_api %} の完全なドキュメントについては、[{% data variables.product.prodname_dotcom %}REST API](/rest) および [{% data variables.product.prodname_dotcom%}GraphQL API](/graphql) を参照してください。 +For the complete documentation for {% data variables.product.prodname_enterprise_api %}, see [{% data variables.product.prodname_dotcom %} REST API](/rest) and [{% data variables.product.prodname_dotcom%} GraphQL API](/graphql). diff --git a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md index 76756a757e..3756eb9670 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: 'You can enforce policies for dependency insights within your enterprise' permissions: Enterprise owners can enforce policies for dependency insights in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-a-policy-on-dependency-insights/ + - /articles/enforcing-a-policy-on-dependency-insights - /articles/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account @@ -22,14 +22,16 @@ shortTitle: Policies for dependency insights ## About policies for dependency insights in your enterprise -Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. 詳細は「[Organization のインサイトを表示する](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)」を参照してください。 +Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. For more information, see "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)." ## Enforcing a policy for visibility of dependency insights -Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. 詳細は「[Organization dependency insights の可視性を変更する](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)」を参照してください。 +Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. For more information, see "[Changing the visibility of your organization's dependency insights](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. In the left sidebar, click **Organizations**. ![Organizations tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-policies-org-tab.png) -4. [Organization projects] で、設定変更についての情報を確認します。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. [Organization policies] で、ドロップダウンメニューを使用してポリシーを選択します。 ![Organization ポリシーオプションのドロップダウンメニュー](/assets/images/help/business-accounts/organization-policy-drop-down.png) +3. In the left sidebar, click **Organizations**. + ![Organizations tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-policies-org-tab.png) +4. Under "Organization policies", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization policies", use the drop-down menu and choose a policy. + ![Drop-down menu with organization policies options](/assets/images/help/business-accounts/organization-policy-drop-down.png) diff --git a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md index 5e3c5e4bc6..580c1dcf78 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md @@ -5,8 +5,8 @@ permissions: Enterprise owners can enforce policies for security settings in an product: '{% data reusables.gated-features.enterprise-accounts %}' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/enforcing-security-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-security-settings-for-organizations-in-your-business-account + - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account - /articles/enforcing-security-settings-in-your-enterprise-account - /github/articles/managing-allowed-ip-addresses-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-security-settings-in-your-enterprise-account @@ -34,27 +34,29 @@ You can enforce policies to control the security settings for organizations owne 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 personal accounts. -Before you can require 2FA for all organizations owned by your enterprise, you must enable two-factor authentication for your own account. 詳細は「[2 要素認証 (2FA) でアカウントを保護する](/articles/securing-your-account-with-two-factor-authentication-2fa/)」を参照してください。 +Before you can require 2FA for all organizations owned by your enterprise, you must enable two-factor authentication for your own account. For more information, see "[Securing your account with two-factor authentication (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa/)." {% warning %} -**警告:** +**Warnings:** -- When you require two-factor authentication for your enterprise, members, outside collaborators, and billing managers (including bot accounts) in all organizations owned by your enterprise who do not use 2FA will be removed from the organization and lose access to its repositories. Organization のプライベートリポジトリのフォークへのアクセスも失います。 Organization から削除されてから 3 か月以内に、削除されたユーザが自分の個人アカウントで 2 要素認証を有効にすれば、そのユーザのアクセス権限および設定を復元できます。 詳しい情報については、「[Organization の以前のメンバーを回復する](/articles/reinstating-a-former-member-of-your-organization)」を参照してください。 +- When you require two-factor authentication for your enterprise, members, outside collaborators, and billing managers (including bot accounts) in all organizations owned by your enterprise who do not use 2FA will be removed from the organization and lose access to its repositories. They will also lose access to their forks of the organization's private repositories. You can reinstate their access privileges and settings if they enable two-factor authentication for their personal account within three months of their removal from your organization. For more information, see "[Reinstating a former member of 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 personal 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 personal account without disabling required two-factor authentication for the enterprise. {% endwarning %} -2 要素認証の使用を義務化する前に、Organization のメンバー、外部コラボレーター、支払いマネージャーに通知をして、各自に自分のアカウントで 2 要素認証をセットアップしてもらってください。 Organization のオーナーは、メンバーと外部コラボレーターがすでに 2 要素認証を使用しているかどうかを、各 Organization の [People] ページで確認できます。 詳細は「[Organization 内のユーザが 2 要素認証を有効にしているか確認する](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)」を参照してください。 +Before you require use of two-factor authentication, we recommend notifying organization members, outside collaborators, and billing managers and asking them to set up 2FA for their accounts. Organization owners can see if members and outside collaborators already use 2FA on each organization's People page. For more information, see "[Viewing whether users in your organization have 2FA enabled](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -4. [Two-factor authentication] で、設定変更に関する情報を確認します。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. [Two-factor authentication] で、[**Require two-factor authentication for all organizations in your business**] を選択し、[**Save**] をクリックします。 ![2 要素認証を義務化するチェックボックス](/assets/images/help/business-accounts/require-2fa-checkbox.png) -6. If prompted, read the information about members and outside collaborators who will be removed from the organizations owned by your enterprise. To confirm the change, type your enterprise's name, then click **Remove members & require two-factor authentication**. ![2 要素の施行の確定ボックス](/assets/images/help/business-accounts/confirm-require-2fa.png) -7. Optionally, if any members or outside collaborators are removed from the organizations owned by your enterprise, we recommend sending them an invitation to reinstate their former privileges and access to your organization. 彼らが招待状を受け取ることができるようにするには、まず各ユーザーが 2 要素認証を有効にする必要があります。 +4. Under "Two-factor authentication", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Two-factor authentication", select **Require two-factor authentication for all organizations in your business**, then click **Save**. + ![Checkbox to require two-factor authentication](/assets/images/help/business-accounts/require-2fa-checkbox.png) +6. If prompted, read the information about members and outside collaborators who will be removed from the organizations owned by your enterprise. To confirm the change, type your enterprise's name, then click **Remove members & require two-factor authentication**. + ![Confirm two-factor enforcement box](/assets/images/help/business-accounts/confirm-require-2fa.png) +7. Optionally, if any members or outside collaborators are removed from the organizations owned by your enterprise, we recommend sending them an invitation to reinstate their former privileges and access to your organization. Each person must enable two-factor authentication before they can accept your invitation. {% endif %} @@ -64,7 +66,7 @@ Before you can require 2FA for all organizations owned by your enterprise, you m {% ifversion ghae %} -You can restrict network traffic to your enterprise on {% data variables.product.product_name %}. 詳しい情報については、「[Enterprise へのネットワークトラフィックを制限する](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)」を参照してください。 +You can restrict network traffic to your enterprise on {% data variables.product.product_name %}. For more information, see "[Restricting network traffic to your enterprise](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)." {% elsif ghec %} @@ -72,11 +74,11 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-cidr-notation %} -{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} +{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} -許可 IP アドレスを、Organization ごとに設定することもできます。 詳細は「[ Organization に対する許可 IP アドレスを管理する](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)」を参照してください。 +You can also configure allowed IP addresses for an individual organization. For more information, see "[Managing allowed IP addresses for your organization](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)." -### 許可 IP アドレスを追加する +### Adding an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -85,19 +87,20 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-add-description %} {% data reusables.identity-and-permissions.ip-allow-lists-add-entry %} -### {% data variables.product.prodname_github_apps %}によるアクセスの許可 +### Allowing access by {% data variables.product.prodname_github_apps %} {% data reusables.identity-and-permissions.ip-allow-lists-githubapps-enterprise %} -### 許可 IP アドレスを有効化する +### Enabling allowed IP addresses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -3. [IP allow list] で、「**Enable IP allow list**」を選択します。 ![IP アドレスを許可するチェックボックス](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) -4. [**Save**] をクリックします。 +3. Under "IP allow list", select **Enable IP allow list**. + ![Checkbox to allow IP addresses](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) +4. Click **Save**. -### 許可 IP アドレスを編集する +### Editing an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -105,9 +108,9 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-edit-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-ip %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-description %} -8. [**Update**] をクリックします。 +8. Click **Update**. -### 許可 IP アドレスを削除する +### Deleting an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -115,7 +118,7 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-delete-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-confirm-deletion %} -### IP許可リストで {% data variables.product.prodname_actions %} を使用する +### Using {% data variables.product.prodname_actions %} with an IP allow list {% data reusables.github-actions.ip-allow-list-self-hosted-runners %} @@ -125,9 +128,9 @@ Enterprise owners can restrict access to assets owned by organizations in an ent ## Managing SSH certificate authorities for your enterprise -You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %}詳しい情報については、「[SSS 認証局について](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)」を参照してください。 +You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %} For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)." -### SSH 認証局を追加する +### Adding an SSH certificate authority {% data reusables.organizations.add-extension-to-cert %} @@ -137,9 +140,9 @@ You can use a SSH certificate authorities (CA) to allow members of any organizat {% data reusables.organizations.new-ssh-ca %} {% data reusables.organizations.require-ssh-cert %} -### SSH認証局を削除する +### Deleting an SSH certificate authority -CAを削除すると、元に戻すことはできません。 同じCAを使用したくなった場合には、そのCAを再びアップロードする必要があります。 +Deleting a CA cannot be undone. If you want to use the same CA in the future, you'll need to upload the CA again. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -148,7 +151,7 @@ CAを削除すると、元に戻すことはできません。 同じCAを使用 {% ifversion ghec or ghae %} -## 参考リンク +## Further reading - "[About identity and access management for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise)" diff --git a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md index b6b9fc82d5..251c60ac98 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for projects within your enterprise''s organiza permissions: Enterprise owners can enforce policies for project boards in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account + - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-project-board-policies-in-your-enterprise-account @@ -24,24 +24,26 @@ shortTitle: Project board policies ## About policies for project boards in your enterprise -You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. 詳細は「[プロジェクトボードについて](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)」を参照してください。 +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. For more information, see "[About project boards](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)." -## Organization 全体のプロジェクトボードでポリシーを施行する +## Enforcing a policy for organization-wide project boards Across all organizations owned by your enterprise, you can enable or disable organization-wide project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. [Organization projects] で、設定変更についての情報を読みます。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. [Organization projects] で、ドロップダウンメニューを使用してポリシーを選択します。 ![Organization プロジェクトボード ポリシー オプションのドロップダウンメニュー](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) +4. Under "Organization projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization projects", use the drop-down menu and choose a policy. + ![Drop-down menu with organization project board policy options](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) -## リポジトリのプロジェクトボードでのポリシーを施行する +## Enforcing a policy for repository project boards Across all organizations owned by your enterprise, you can enable or disable repository-level project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. [Repository projects で、設定変更についての情報を確認します。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. [Repository projects] で、ドロップダウンメニューを使用してポリシーを選択します。 ![リポジトリのプロジェクトボード ポリシー オプションのドロップダウンメニュー](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) +4. Under "Repository projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Repository projects", use the drop-down menu and choose a policy. + ![Drop-down menu with repository project board policy options](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) diff --git a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md index 68e7fb8975..be790e0250 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md @@ -10,26 +10,26 @@ redirect_from: - /enterprise/admin/user-management/restricting-repository-creation-in-your-instance - /enterprise/admin/user-management/preventing-users-from-deleting-organization-repositories - /enterprise/admin/installation/setting-git-push-limits - - /enterprise/admin/guides/installation/git-server-settings/ - - /enterprise/admin/articles/setting-git-push-limits/ + - /enterprise/admin/guides/installation/git-server-settings + - /enterprise/admin/articles/setting-git-push-limits - /enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories - /enterprise/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories - /enterprise/admin/developer-workflow/blocking-force-pushes-on-your-appliance - /enterprise/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes-to-a-repository - - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance/ - - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository/ + - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance + - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository - /enterprise/admin/user-management/preventing-users-from-changing-anonymous-git-read-access - - /enterprise/admin/articles/blocking-force-pushes-to-a-repository/ - - /enterprise/admin/articles/block-force-pushes/ - - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account/ - - /enterprise/admin/articles/blocking-force-pushes-for-an-organization/ - - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization/ + - /enterprise/admin/articles/blocking-force-pushes-to-a-repository + - /enterprise/admin/articles/block-force-pushes + - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account + - /enterprise/admin/articles/blocking-force-pushes-for-an-organization + - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes - /enterprise/admin/policies/enforcing-repository-management-policies-in-your-enterprise - /admin/policies/enforcing-repository-management-policies-in-your-enterprise - - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account + - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-repository-management-policies-in-your-enterprise-account diff --git a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md index 1b7cff8c01..14860a36f6 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for teams in your enterprise''s organizations, permissions: Enterprise owners can enforce policies for teams in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-team-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-team-settings-for-organizations-in-your-business-account + - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-team-policies-in-your-enterprise-account @@ -24,14 +24,16 @@ shortTitle: Team policies ## About policies for teams in your enterprise -You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. 詳細は「[Team について](/organizations/organizing-members-into-teams/about-teams)」を参照してください。 +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." -## Team ディスカッションでポリシーを施行する +## Enforcing a policy for team discussions -Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. 詳しい情報については[Team ディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions/)を参照してください。 +Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. For more information, see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions/)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. 左サイトバーで [**Teams**] をクリックします。 ![Teams tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-teams-tab.png) -4. [Team discussions] で、設定変更に関する情報を確認します。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. [Team discussions] で、ドロップダウンメニューを使用してポリシーを選択します。 ![Team ディスカッション ポリシー オプションのドロップダウンメニュー](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) +3. In the left sidebar, click **Teams**. + ![Teams tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-teams-tab.png) +4. Under "Team discussions", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Team discussions", use the drop-down menu and choose a policy. + ![Drop-down menu with team discussion policy options](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) diff --git a/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md b/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md index 9b74d60545..48b09b3704 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md @@ -82,14 +82,14 @@ The `$GITHUB_VIA` variable is available in the pre-receive hook environment when | Value | Action | More information | | :- | :- | :- | -| <pre>auto-merge deployment api</pre> | Automatic merge of the base branch via a deployment created with the API | "[Repositories](/rest/reference/repos#create-a-deployment)" in the REST API documentation | +| <pre>auto-merge deployment api</pre> | Automatic merge of the base branch via a deployment created with the API | "[Create a deployment](/rest/reference/deployments#create-a-deployment)" in the REST API documentation | | <pre>blob#save</pre> | Change to a file's contents in the web interface | "[Editing files](/repositories/working-with-files/managing-files/editing-files)" | -| <pre>branch merge api</pre> | Merge of a branch via the API | "[Repositories](/rest/reference/repos#merge-a-branch)" in the REST API documentation | +| <pre>branch merge api</pre> | Merge of a branch via the API | "[Merge a branch](/rest/reference/branches#merge-a-branch)" in the REST API documentation | | <pre>branches page delete button</pre> | Deletion of a branch in the web interface | "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)" | | <pre>git refs create api</pre> | Creation of a ref via the API | "[Git database](/rest/reference/git#create-a-reference)" in the REST API documentation | | <pre>git refs delete api</pre> | Deletion of a ref via the API | "[Git database](/rest/reference/git#delete-a-reference)" in the REST API documentation | | <pre>git refs update api</pre> | Update of a ref via the API | "[Git database](/rest/reference/git#update-a-reference)" in the REST API documentation | -| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Repositories](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | +| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Create or update file contents](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | | <pre>merge base into head</pre> | Update of the topic branch from the base branch when the base branch requires strict status checks (via **Update branch** in a pull request, for example) | "[About protected branches](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" | | <pre>pull request branch delete button</pre> | Deletion of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" | | <pre>pull request branch undo button</pre> | Restoration of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" | diff --git a/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md b/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md index f3457669b2..1a2e868839 100644 --- a/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md +++ b/translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md @@ -3,7 +3,7 @@ title: Managing pre-receive hooks on the GitHub Enterprise Server appliance intro: 'Configure how people will use pre-receive hooks within their {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - /enterprise/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance/ + - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance - /enterprise/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - /admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance versions: diff --git a/translations/ja-JP/content/admin/user-management/index.md b/translations/ja-JP/content/admin/user-management/index.md index 125066d5c7..5e5f8682b2 100644 --- a/translations/ja-JP/content/admin/user-management/index.md +++ b/translations/ja-JP/content/admin/user-management/index.md @@ -1,9 +1,9 @@ --- -title: ユーザ、Organization、リポジトリデータを管理する -shortTitle: ユーザ、Organization、リポジトリデータを管理する -intro: このガイドでは、Enterprise にサインインするユーザの認証方式、リポジトリへのアクセスとコラボレーションのための Organization と Team を作成する方法、およびユーザセキュリティで推奨されるベストプラクティスについて説明します。 +title: 'Managing users, organizations, and repositories' +shortTitle: 'Managing users, organizations, and repositories' +intro: 'This guide describes authentication methods for users signing in to your enterprise, how to create organizations and teams for repository access and collaboration, and suggested best practices for user security.' redirect_from: - - /enterprise/admin/categories/user-management/ + - /enterprise/admin/categories/user-management - /enterprise/admin/developer-workflow/using-webhooks-for-continuous-integration - /enterprise/admin/migrations - /enterprise/admin/clustering diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md index 56c00d03b5..f02cedf911 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md @@ -1,12 +1,12 @@ --- -title: Teamへの人の追加 +title: Adding people to teams redirect_from: - - /enterprise/admin/articles/adding-teams/ - - /enterprise/admin/articles/adding-or-inviting-people-to-teams/ - - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams/ + - /enterprise/admin/articles/adding-teams + - /enterprise/admin/articles/adding-or-inviting-people-to-teams + - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams - /enterprise/admin/user-management/adding-people-to-teams - /admin/user-management/adding-people-to-teams -intro: 'Team が作成されると、Organization の管理者はユーザを {% data variables.product.product_location %} から Team に追加し、どのリポジトリにアクセスできるようにするかを決定できます。' +intro: 'Once a team has been created, organization admins can add users from {% data variables.product.product_location %} to the team and determine which repositories they have access to.' versions: ghes: '*' type: how_to @@ -16,13 +16,12 @@ topics: - Teams - User account --- +Each team has its own individually defined [access permissions for repositories owned by your organization](/articles/permission-levels-for-an-organization). -各Teamには、それぞれに定義された[Organizatinが所有するリポジトリへのアクセス権限](/articles/permission-levels-for-an-organization)があります。 +- Members with the owner role can add or remove existing organization members from all teams. +- Members of teams that give admin permissions can only modify team membership and repositories for that team. -- オーナー権限を持つメンバーは、すべてのTeamから既存のOrganizationのメンバーを追加したり削除したりできます。 -- 管理者権限を与えるTeamのメンバーは、TeamのメンバーシップとそのTeamのリポジトリだけを変更できます。 - -## チームのセットアップ +## Setting up a team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -30,8 +29,8 @@ topics: {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} -## TeamのLDAPグループへのマッピング(たとえばLDAP Syncをユーザ認証に使って) +## Mapping teams to LDAP groups (for instances using LDAP Sync for user authentication) {% data reusables.enterprise_management_console.badge_indicator %} -LDAPグループに同期されているTeamに新しいメンバーを追加するには、そのユーザをLDAPグループのメンバーとして追加するか、LDAPの管理者に連絡してください。 +To add a new member to a team synced to an LDAP group, add the user as a member of the LDAP group, or contact your LDAP administrator. diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/index.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/index.md index 11ee5f9dd3..9df1581688 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/index.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/index.md @@ -1,8 +1,8 @@ --- title: Managing organizations in your enterprise redirect_from: - - /enterprise/admin/articles/adding-users-and-teams/ - - /enterprise/admin/categories/admin-bootcamp/ + - /enterprise/admin/articles/adding-users-and-teams + - /enterprise/admin/categories/admin-bootcamp - /enterprise/admin/user-management/organizations-and-teams - /enterprise/admin/user-management/managing-organizations-in-your-enterprise - /articles/managing-organizations-in-your-enterprise-account diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md index ac33aeed84..10a117009a 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md @@ -2,8 +2,8 @@ title: Managing projects using Jira intro: 'You can integrate Jira with {% data variables.product.prodname_enterprise %} for project management.' redirect_from: - - /enterprise/admin/guides/installation/project-management-using-jira/ - - /enterprise/admin/articles/project-management-using-jira/ + - /enterprise/admin/guides/installation/project-management-using-jira + - /enterprise/admin/articles/project-management-using-jira - /enterprise/admin/developer-workflow/managing-projects-using-jira - /enterprise/admin/developer-workflow/customizing-your-instance-with-integrations - /enterprise/admin/user-management/managing-projects-using-jira @@ -16,10 +16,9 @@ topics: - Project management shortTitle: Project management with Jira --- - ## Connecting Jira to a {% data variables.product.prodname_enterprise %} organization -1. http[s]://[hostname]/login で {% data variables.product.prodname_enterprise %}のアカウントにサインインする。 If already signed in, click on the {% data variables.product.prodname_dotcom %} logo in the top left corner. +1. Sign into your {% data variables.product.prodname_enterprise %} account at http[s]://[hostname]/login. If already signed in, click on the {% data variables.product.prodname_dotcom %} logo in the top left corner. 2. Click on your profile icon under the {% data variables.product.prodname_dotcom %} logo and select the organization you would like to connect with Jira. ![Select an organization](/assets/images/enterprise/orgs-and-teams/profile-select-organization.png) @@ -36,12 +35,12 @@ shortTitle: Project management with Jira ![Register new application button](/assets/images/enterprise/orgs-and-teams/register-oauth-application-button.png) -6. アプリケーションの設定を次のように記入する。 +6. Fill in the application settings: - In the **Application name** field, type "Jira" or any name you would like to use to identify the Jira instance. - In the **Homepage URL** field, type the full URL of your Jira instance. - In the **Authorization callback URL** field, type the full URL of your Jira instance. -7. **Register application** をクリックする。 -8. ページの上部の [**Client ID**] と [**Client Secret**] をメモしてください。 You will need these for configuring your Jira instance. +7. Click **Register application**. +8. At the top of the page, note the **Client ID** and **Client Secret**. You will need these for configuring your Jira instance. ## Jira instance configuration @@ -58,13 +57,13 @@ shortTitle: Project management with Jira ![Link GitHub account to Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-link-github-account.png) -5. [**Add New Account**] (新規アカウントを追加) モーダルで、{% data variables.product.prodname_enterprise %} の設定を記入してください。 +5. In the **Add New Account** modal, fill in your {% data variables.product.prodname_enterprise %} settings: - From the **Host** dropdown menu, choose **{% data variables.product.prodname_enterprise %}**. - - **Team or User Account** の欄には、{% data variables.product.prodname_enterprise %}のOrganization、または個人アカウントの名前を入力する。 - - **OAuth Key** の欄には、{% data variables.product.prodname_enterprise %}のディベロッパーアプリケーションのClient ID を入力する。 - - **OAuth Secret** の欄には、{% data variables.product.prodname_enterprise %}のデベロッパーアプリケーションの Client Secret を入力する。 + - In the **Team or User Account** field, type the name of your {% data variables.product.prodname_enterprise %} organization or personal account. + - In the **OAuth Key** field, type the Client ID of your {% data variables.product.prodname_enterprise %} developer application. + - In the **OAuth Secret** field, type the Client Secret for your {% data variables.product.prodname_enterprise %} developer application. - If you don't want to link new repositories owned by your {% data variables.product.prodname_enterprise %} organization or personal account, deselect **Auto Link New Repositories**. - If you don't want to enable smart commits, deselect **Enable Smart Commits**. - - [**Add**] をクリックします。 -6. {% data variables.product.prodname_enterprise %}に対して与えるアクセス権を確認して、**Authorize application** をクリックする。 -7. 必要であれば、パスワードを入力する。 + - Click **Add**. +6. Review the permissions you are granting to your {% data variables.product.prodname_enterprise %} account and click **Authorize application**. +7. If necessary, type your password to continue. diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md index 05d4f1301f..41cbf9b46b 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md @@ -1,11 +1,11 @@ --- -title: ユーザによるOrganizationの作成の禁止 +title: Preventing users from creating organizations redirect_from: - - /enterprise/admin/articles/preventing-users-from-creating-organizations/ - - /enterprise/admin/hidden/preventing-users-from-creating-organizations/ + - /enterprise/admin/articles/preventing-users-from-creating-organizations + - /enterprise/admin/hidden/preventing-users-from-creating-organizations - /enterprise/admin/user-management/preventing-users-from-creating-organizations - /admin/user-management/preventing-users-from-creating-organizations -intro: ユーザが Enterprise 内に Organization を作成できないようにすることができます。 +intro: You can prevent users from creating organizations in your enterprise. versions: ghes: '*' ghae: '*' @@ -16,7 +16,6 @@ topics: - Policies shortTitle: Prevent organization creation --- - {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} {% data reusables.enterprise-accounts.policies-tab %} @@ -24,4 +23,5 @@ shortTitle: Prevent organization creation {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -4. [Users can create organizations(ユーザによるOrganizationの作成可能)] の下で、ドロップダウンメニューを使って [**Enabled(有効化)**] あるいは [**Disabled(無効化)**] を選択してください。 ![[Users can create organizations] ドロップダウン](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) +4. Under "Users can create organizations", use the drop-down menu and click **Enabled** or **Disabled**. +![Users can create organizations drop-down](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md index 373f4381fc..8ee2d906ec 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: Enterprise owners can view aggregated actions from all of the organizatio product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account/ + - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account - /articles/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise-account diff --git a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md index ff100011d4..96c09af594 100644 --- a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md @@ -2,15 +2,15 @@ title: Configuring Git Large File Storage for your enterprise intro: '{% data reusables.enterprise_site_admin_settings.configuring-large-file-storage-short-description %}' redirect_from: - - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise/ + - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise - /enterprise/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server - /enterprise/admin/installation/configuring-git-large-file-storage - /enterprise/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server - /enterprise/admin/installation/migrating-to-a-different-git-large-file-storage-server - - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance/ - - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server/ + - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository + - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization + - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance + - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server - /enterprise/admin/user-management/configuring-git-large-file-storage-for-your-enterprise - /admin/user-management/configuring-git-large-file-storage-for-your-enterprise versions: diff --git a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md index 93361d3577..e02538d16a 100644 --- a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md @@ -1,20 +1,20 @@ --- -title: Enterprise で Git SSH アクセスを無効化する +title: Disabling Git SSH access on your enterprise redirect_from: - - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/articles/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/articles/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise/ + - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account + - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account + - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance + - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance + - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization + - /enterprise/admin/articles/disabling-ssh-access-for-an-organization + - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository + - /enterprise/admin/articles/disabling-ssh-access-to-a-repository + - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise - /enterprise/admin/installation/disabling-git-ssh-access-on-github-enterprise-server - /enterprise/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-your-enterprise -intro: Enterprise 内の特定のリポジトリまたはすべてのリポジトリで、ユーザが SSH 経由で Git を使用できないようにすることができます。 +intro: You can prevent people from using Git over SSH for certain or all repositories on your enterprise. versions: ghes: '*' ghae: '*' @@ -26,8 +26,7 @@ topics: - SSH shortTitle: Disable SSH for Git --- - -## 特定のリポジトリへのGit SSHアクセスの無効化 +## Disabling Git SSH access to a specific repository {% data reusables.enterprise_site_admin_settings.override-policy %} @@ -37,9 +36,10 @@ shortTitle: Disable SSH for Git {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -1. [Git SSH access] で、ドロップダウンメニューを使用して [**Disabled**] を選択します。 ![無効化オプションが選択されたGit SSHアクセスドロップダウンメニュー](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) +1. Under "Git SSH access", use the drop-down menu, and click **Disabled**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) -## ユーザもしくは組織が所有するすべてのリポジトリへのGit SSHアクセスの無効化 +## Disabling Git SSH access to all repositories owned by a user or organization {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user-or-org %} @@ -47,9 +47,10 @@ shortTitle: Disable SSH for Git {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -7. [Git SSH access] で、ドロップダウンメニューを使用して [**Disabled**] を選択します。 続いて、**Enforce on all repositories(すべてのリポジトリで強制)**を選択してください。 ![無効化オプションが選択されたGit SSHアクセスドロップダウンメニュー](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) -## Enterprise 内のすべてのリポジトリへの Git SSH アクセスを無効化する +## Disabling Git SSH access to all repositories in your enterprise {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} @@ -58,4 +59,5 @@ shortTitle: Disable SSH for Git {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -7. [Git SSH access] で、ドロップダウンメニューを使用して [**Disabled**] を選択します。 続いて、**Enforce on all repositories(すべてのリポジトリで強制)**を選択してください。 ![無効化オプションが選択されたGit SSHアクセスドロップダウンメニュー](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) diff --git a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md index f322c84dcb..90b442a4b8 100644 --- a/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md +++ b/translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md @@ -1,8 +1,8 @@ --- -title: サービスフックのトラブルシューティング -intro: ペイロードが配信されない場合、以下の一般的な問題をチェックしてください。 +title: Troubleshooting service hooks +intro: 'If payloads aren''t being delivered, check for these common problems.' redirect_from: - - /enterprise/admin/articles/troubleshooting-service-hooks/ + - /enterprise/admin/articles/troubleshooting-service-hooks - /enterprise/admin/developer-workflow/troubleshooting-service-hooks - /enterprise/admin/user-management/troubleshooting-service-hooks - /admin/user-management/troubleshooting-service-hooks @@ -13,31 +13,36 @@ topics: - Enterprise shortTitle: Troubleshoot service hooks --- +## Getting information on deliveries -## デリバリーについての情報を入手 - -任意のリポジトリのすべてのサービスフックのデリバリに対する最後のレスポンスに関する情報を調べることができます。 +You can find information for the last response of all service hooks deliveries on any repository. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 調べるリポジトリを開ける。 -3. ナビゲーションサイドバーで **Hooks** のリンクをクリックする。 ![フックのサイドバー](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 問題が発生しているサービスフックで、**Latest Delivery** へのリンクをクリックする。 ![フックの詳細](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) -5. [**Remote Calls**] (リモート呼び出し) の下に、リモートサーバーへの POST の際に使われたヘッダと、リモートサーバーがあなたの環境に返信したレスポンスを見ることができます。 +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. + ![Hook Details](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) +5. Under **Remote Calls**, you'll see the headers that were used when POSTing to the remote server along with the response that the remote server sent back to your installation. -## ペイロードの表示 +## Viewing the payload {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 調べるリポジトリを開ける。 -3. ナビゲーションサイドバーで **Hooks** のリンクをクリックする。 ![フックのサイドバー](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 問題が発生しているサービスフックで、**Latest Delivery** へのリンクをクリックする。 -5. [**Delivery**] をクリックします。 ![ペイロードの表示](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. Click **Delivery**. + ![Viewing the payload](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) -## 過去のデリバリーの表示 +## Viewing past deliveries -デリバリーは 15 日間保存されます。 +Deliveries are stored for 15 days. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 調べるリポジトリを開ける。 -3. ナビゲーションサイドバーで **Hooks** のリンクをクリックする。 ![フックのサイドバー](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 問題が発生しているサービスフックで、**Latest Delivery** へのリンクをクリックする。 -5. その特定のフックに対する他のデリバリーを見るには、[**More for this Hook ID**] をクリックします。 ![デリバリーをさらに表示](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. To view other deliveries to that specific hook, click **More for this Hook ID**: + ![Viewing more deliveries](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md index e900f4851f..b7fb055a49 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md @@ -1,8 +1,8 @@ --- -title: SSHキーの監査 -intro: サイト管理者は SSH キーのインスタンス全体に対する監査を始めることができます。 +title: Auditing SSH keys +intro: Site administrators can initiate an instance-wide audit of SSH keys. redirect_from: - - /enterprise/admin/articles/auditing-ssh-keys/ + - /enterprise/admin/articles/auditing-ssh-keys - /enterprise/admin/user-management/auditing-ssh-keys - /admin/user-management/auditing-ssh-keys versions: @@ -15,52 +15,51 @@ topics: - Security - SSH --- +Once initiated, the audit disables all existing SSH keys and forces users to approve or reject them before they're able to clone, pull, or push to any repositories. An audit is useful in situations where an employee or contractor leaves the company and you need to ensure that all keys are verified. -監査が開始されると、現在の SSHキーがすべて無効となります。リポジトリのクローン、プル、プッシュといった操作をするためには、ユーザは SSH キーの承認または拒否をしなければなりません。 監査は、従業員の退職時や請負業者の撤収時など、すべてのキーを検証する必要があるときに役立ちます。 +## Initiating an audit -## 監査を開始する +You can initiate an SSH key audit from the "All users" tab of the site admin dashboard: -SSH キーの監査は、サイト管理ダッシュボードの [All users] タブから開始できます。 +![Starting a public key audit](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) -![公開鍵の監査の開始](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) +After you click the "Start public key audit" button, you'll be taken to a confirmation screen explaining what will happen next: -"Start public key audit(公開鍵の監査の開始)" のボタンをクリックしたら、その後の流れを説明する確認画面に移動します。 +![Confirming the audit](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) -![監査の確認](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) +After you click the "Begin audit" button, all SSH keys are invalidated and will require approval. You'll see a notification indicating the audit has begun. -\[Begin audit\] (監査を開始) ボタンをクリックすると、すべての SSH キーは無効となり、承認が必要になります。 監査が始まったことを示す通知が表示されます。 +## What users see -## ユーザに対する表示 - -ユーザがSSH経由で Git のオペレーションを実行した場合は、オペレーションが失敗し、次のメッセージが表示されます。 +If a user attempts to perform any git operation over SSH, it will fail and provide them with the following message: ```shell -ERROR: Hi <em>ユーザ名</em>. We're doing an SSH key audit. +ERROR: Hi <em>username</em>. We're doing an SSH key audit. Please visit http(s)://<em>hostname</em>/settings/ssh/audit/2 to approve this key so we know it's safe. Fingerprint: ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 fatal: The remote end hung up unexpectedly ``` -ユーザがリンクをたどると、アカウントのキーを承認するよう要求されます。 +When they follow the link, they're asked to approve the keys on their account: -![キーの監査](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) +![Auditing keys](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) -キーを承認または拒否したら、今まで通りリポジトリを使えるようになります。 +After they approve or reject their keys, they'll be able interact with repositories as usual. -## SSH キーを追加する +## Adding an SSH key -新規ユーザは、SSHキーを追加する際にパスワードを要求されます。 +New users will be prompted for their password when adding an SSH key: -![パスワードの確認](/assets/images/help/settings/sudo_mode_popup.png) +![Password confirmation](/assets/images/help/settings/sudo_mode_popup.png) -ユーザがキーを追加したら、次のような通知メールが届きます。 +When a user adds a key, they'll receive a notification email that will look something like this: The following SSH key was added to your account: - + [title] ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 - + If you believe this key was added in error, you can remove the key and disable access at the following location: - + http(s)://HOSTNAME/settings/ssh diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md index 6450f05e2f..b73c09ee99 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md @@ -1,8 +1,8 @@ --- -title: Enterprise にわたるユーザの監査 +title: Auditing users across your enterprise intro: 'The audit log dashboard shows site administrators the actions performed by all users and organizations across your enterprise within the current month and previous six months. The audit log includes details such as who performed the action, what the action was, and when the action was performed.' redirect_from: - - /enterprise/admin/guides/user-management/auditing-users-across-an-organization/ + - /enterprise/admin/guides/user-management/auditing-users-across-an-organization - /enterprise/admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-enterprise @@ -18,103 +18,102 @@ topics: - User account shortTitle: Audit users --- +## Accessing the audit log -## Audit log にアクセスする +The audit log dashboard gives you a visual display of audit data across your enterprise. -Audit log ダッシュボードには、Enterprise 全体の監査データが表示されます。 - -![インスタンスにわたるAudit logのダッシュボード](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) +![Instance wide audit log dashboard](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -地図内では、世界中のイベントを見るためにパンやズームができます。 国にカーソルを合わせれば、その国のイベントの簡単な集計が表示されます。 +Within the map, you can pan and zoom to see events around the world. Hover over a country to see a quick count of events from that country. -## Enterprise にわたるイベントの検索 +## Searching for events across your enterprise -Audit log には、Enterprise 内で行われたアクションに関する次の情報が一覧表示されます。 +The audit log lists the following information about actions made within your enterprise: -* アクションが行われた[リポジトリ](#search-based-on-the-repository) -* アクションを行った[ユーザ](#search-based-on-the-user) -* アクションに関係する[Organization](#search-based-on-the-organization) -* 行われた[アクション](#search-based-on-the-action-performed) -* アクションが行われた[国](#search-based-on-the-location) -* アクションが生じた[日時](#search-based-on-the-time-of-action) +* [The repository](#search-based-on-the-repository) an action was performed in +* [The user](#search-based-on-the-user) who performed the action +* [Which organization](#search-based-on-the-organization) an action pertained to +* [The action](#search-based-on-the-action-performed) that was performed +* [Which country](#search-based-on-the-location) the action took place in +* [The date and time](#search-based-on-the-time-of-action) the action occurred {% warning %} -**ノート:** +**Notes:** -- Audit logのエントリはテキストを使った検索はできませんが、様々なフィルタを使って検索クエリを構築できます。 {% data variables.product.product_name %} は、{% data variables.product.product_name %} 全体を検索するための多くの演算子をサポートしています。 詳細は「[{% data variables.product.prodname_dotcom %} での検索について](/github/searching-for-information-on-github/about-searching-on-github)」を参照してください。 +- While you can't use text to search for audit entries, you can construct search queries using a variety of filters. {% data variables.product.product_name %} supports many operators for searching across {% data variables.product.product_name %}. For more information, see "[About searching on {% data variables.product.prodname_dotcom %}](/github/searching-for-information-on-github/about-searching-on-github)." - Audit records are available for the current month and every day of the previous six months. {% endwarning %} -### リポジトリに基づく検索 +### Search based on the repository -`repo` 修飾子は、Organization が所有する特定のリポジトリにアクションを制限します。 例: +The `repo` qualifier limits actions to a specific repository owned by your organization. For example: -* `repo:my-org/our-repo`は`my-org` Organization内の`our-repo`リポジトリで起きたすべてのイベントを検索します。 -* `repo:my-org/our-repo repo:my-org/another-repo`は、`my-org` Organization内の`our-repo`及び`another-repo`の両リポジトリ内で起きたすべてのイベントを検索します。 -* `-repo:my-org/not-this-repo`は、`my-org` Organization内の`not-this-repo`リポジトリで起きたすべてのイベントを除外します。 +* `repo:my-org/our-repo` finds all events that occurred for the `our-repo` repository in the `my-org` organization. +* `repo:my-org/our-repo repo:my-org/another-repo` finds all events that occurred for both the `our-repo` and `another-repo` repositories in the `my-org` organization. +* `-repo:my-org/not-this-repo` excludes all events that occurred for the `not-this-repo` repository in the `my-org` organization. -`repo`修飾子内には、Organizationの名前を含めなければなりません。単に`repo:our-repo`として検索することはできません。 +You must include your organization's name within the `repo` qualifier; searching for just `repo:our-repo` will not work. -### ユーザーに基づく検索 +### Search based on the user -`actor` 修飾子は、アクションを実行した Organization のメンバーに基づいてイベントの範囲を設定します。 例: +The `actor` qualifier scopes events based on the member of your organization that performed the action. For example: -* `actor:octocat`は`octocat`が行ったすべてのイベントを検索します。 -* `actor:octocat actor:hubot`は、`octocat`及び`hubot`が行ったすべてのイベントを検索します。 -* `-actor:hubot`は、`hubot`が行ったすべてのイベントを除外します。 +* `actor:octocat` finds all events performed by `octocat`. +* `actor:octocat actor:hubot` finds all events performed by both `octocat` and `hubot`. +* `-actor:hubot` excludes all events performed by `hubot`. -使用できるのは {% data variables.product.product_name %} ユーザ名のみで、個人の本当の名前ではありません。 +You can only use a {% data variables.product.product_name %} username, not an individual's real name. -### Organizationに基づく検索 +### Search based on the organization -`org` 修飾子は、特定の Organization にアクションを限定します。 例: +The `org` qualifier limits actions to a specific organization. For example: -* `org:my-org` は `my-org` という Organization で生じたすべてのイベントを検索します。 -* `org:my-org action:team`は`my-org`というOrganization内で行われたすべてのteamイベントを検索します。 -* `-org:my-org` は `my-org` という Organization で生じたすべてのイベントを除外します。 +* `org:my-org` finds all events that occurred for the `my-org` organization. +* `org:my-org action:team` finds all team events performed within the `my-org` organization. +* `-org:my-org` excludes all events that occurred for the `my-org` organization. -### 実行されたアクションに基づく検索 +### Search based on the action performed -`action`修飾子は、特定のイベントをカテゴリ内でグループ化して検索します。 以下のカテゴリに関連するイベントの詳しい情報については「[監査済みのアクション](/admin/user-management/audited-actions)」を参照してください。 +The `action` qualifier searches for specific events, grouped within categories. For information on the events associated with these categories, see "[Audited actions](/admin/user-management/audited-actions)". -| カテゴリ名 | 説明 | -| ------ | -------------------------------------------- | -| `フック` | webhookに関連するすべてのアクティビティを含みます。 | -| `org` | Organizationのメンバーシップに関連するすべてのアクティビティを含みます。 | -| `repo` | Organizationが所有するリポジトリに関連するすべてのアクティビティを含みます。 | -| `Team` | Organization内のチームに関連するすべてのアクティビティを含みます。 | +| Category name | Description +|------------------|------------------- +| `hook` | Contains all activities related to webhooks. +| `org` | Contains all activities related organization membership +| `repo` | Contains all activities related to the repositories owned by your organization. +| `team` | Contains all activities related to teams in your organization. -次の用語を使用すれば、特定の一連の行動を検索できます。 例: +You can search for specific sets of actions using these terms. For example: -* `action:team`はteamカテゴリ内でグループ化されたすべてのイベントを検索します。 -* `-action:billing`はbillingカテゴリ内のすべてのイベントを除外します。 +* `action:team` finds all events grouped within the team category. +* `-action:billing` excludes all events in the billing category. -各カテゴリには、フィルタリングできる一連の関連イベントがあります。 例: +Each category has a set of associated events that you can filter on. For example: -* `action:team.create`はTeamが作成されたすべてのイベントを検索します。 -* `-action:billing.change_email`は課金のメールが変更されたすべてのイベントを検索します。 +* `action:team.create` finds all events where a team was created. +* `-action:billing.change_email` excludes all events where the billing email was changed. -### 場所に基づく検索 +### Search based on the location -`country`修飾子は、発生元の国によってアクションをフィルタリングします。 -- 国の 2 文字のショートコードまたはフル ネームを使用できます。 -- 名前に空白を含む国は、引用符で囲まなければなりません。 例: - * `country:de` は、ドイツで発生したイベントをすべて検索します。 - * `country:Mexico` はメキシコで発生したすべてのイベントを検索します。 - * `country:"United States"` はアメリカ合衆国で発生したすべてのイベントを検索します。 +The `country` qualifier filters actions by the originating country. +- You can use a country's two-letter short code or its full name. +- Countries with spaces in their name must be wrapped in quotation marks. For example: + * `country:de` finds all events that occurred in Germany. + * `country:Mexico` finds all events that occurred in Mexico. + * `country:"United States"` all finds events that occurred in the United States. -### アクションの時刻に基づく検索 +### Search based on the time of action -`created`修飾子は、発生した時刻でアクションをフィルタリングします。 -- 日付には `YYYY-MM-DD` という形式を使います。これは、年の後に月、その後に日が続きます。 -- 日付では[大なり、小なりおよび範囲指定](/enterprise/{{ currentVersion }}/user/articles/search-syntax)を使用できます。 例: - * `created:2014-07-08` は、2014 年 7 月 8 日に発生したイベントをすべて検索します。 - * `created:>=2014-07-01` は、2014 年 7 月 1 日かそれ以降に生じたすべてのイベントを検索します。 - * `created:<=2014-07-01`は、2014 年 7 月 1 日かそれ以前に生じたすべてのイベントを検索します。 - * `created:2014-07-01..2014-07-31`は、2014 年 7 月に起きたすべてのイベントを検索します。 +The `created` qualifier filters actions by the time they occurred. +- Define dates using the format of `YYYY-MM-DD`--that's year, followed by month, followed by day. +- Dates support [greater than, less than, and range qualifiers](/enterprise/{{ currentVersion }}/user/articles/search-syntax). For example: + * `created:2014-07-08` finds all events that occurred on July 8th, 2014. + * `created:>=2014-07-01` finds all events that occurred on or after July 8th, 2014. + * `created:<=2014-07-01` finds all events that occurred on or before July 8th, 2014. + * `created:2014-07-01..2014-07-31` finds all events that occurred in the month of July 2014. diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md index a6c6136f9b..f6396f94cc 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Enterprise のユーザメッセージをカスタマイズする +title: Customizing user messages for your enterprise shortTitle: Customizing user messages redirect_from: - - /enterprise/admin/user-management/creating-a-custom-sign-in-message/ + - /enterprise/admin/user-management/creating-a-custom-sign-in-message - /enterprise/admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-for-your-enterprise -intro: '{% data variables.product.product_location %} でユーザに表示されるカスタムメッセージを作成できます。' +intro: 'You can create custom messages that users will see on {% data variables.product.product_location %}.' versions: ghes: '*' ghae: '*' @@ -15,64 +15,69 @@ topics: - Enterprise - Maintenance --- +## About user messages -## ユーザメッセージについて - -ユーザメッセージにはいくつかの種類があります。 -- {% ifversion ghes %}サインインまたは{% endif %}サインアウトページ{% ifversion ghes or ghae %}に表示されるメッセージ +There are several types of user messages. +- Messages that appear on the {% ifversion ghes %}sign in or {% endif %}sign out page{% ifversion ghes or ghae %} - Mandatory messages, which appear once in a pop-up window that must be dismissed{% endif %}{% ifversion ghes or ghae %} -- すべてのページの上部に表示されるアナウンスバナー{% endif %} +- Announcement banners, which appear at the top of every page{% endif %} {% ifversion ghes %} {% note %} -**メモ:** 認証に SAML を使っている場合は、サインインページはアイデンティティプロバイダによって提示されるため、{% data variables.product.prodname_ghe_server %} でカスタマイズすることはできません。 +**Note:** If you are using SAML for authentication, the sign in page is presented by your identity provider and is not customizable via {% data variables.product.prodname_ghe_server %}. {% endnote %} -メッセージの書式設定には Markdown を使用できます。 詳しい情報については、「[{% data variables.product.prodname_dotcom %}での執筆とフォーマットについて](/articles/about-writing-and-formatting-on-github/)」を参照してください。 +You can use Markdown to format your message. For more information, see "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github/)." -## カスタムサインインメッセージの作成 +## Creating a custom sign in message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes %}[Sign in page] の右側{% else %}下{% endif %}にある [**Add message**] または [**Edit message**] をクリックします。 ![{% ifversion ghes %}[Add]{% else %}[Edit]{% endif %} メッセージボタン](/assets/images/enterprise/site-admin-settings/edit-message.png) -6. [**Sign in message**] の下に、ユーザに見せたいメッセージを入力します。 ![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} +5. {% ifversion ghes %}To the right of{% else %}Under{% endif %} "Sign in page", click **Add message** or **Edit message**. +![{% ifversion ghes %}Add{% else %}Edit{% endif %} message button](/assets/images/enterprise/site-admin-settings/edit-message.png) +6. Under **Sign in message**, type the message you'd like users to see. +![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![プレビューボタン](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) -8. 表示されたメッセージを確認します。 ![サインインメッセージの表示](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) +8. Review the rendered message. +![Sign in message rendered](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% endif %} -## カスタムサインアウトメッセージを作成する +## Creating a custom sign out message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes or ghae %}[Sign in page] の右側{% else %}下{% endif %}にある [**Add message**] または [**Edit message**] をクリックします。 ![[Add message] ボタン](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) -6. [**Sign out message**] の下に、ユーザに見せたいメッセージを入力します。 ![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} +5. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Sign out page", click **Add message** or **Edit message**. +![Add message button](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) +6. Under **Sign out message**, type the message you'd like users to see. +![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![プレビューボタン](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) -8. 表示されたメッセージを確認します。 ![サインアウトメッセージの表示](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) +8. Review the rendered message. +![Sign out message rendered](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% ifversion ghes or ghae %} -## 必須メッセージを作成する +## Creating a mandatory message -メッセージを保存した後に初めてサインインしたときに、すべてのユーザに表示される必須メッセージを {% data variables.product.product_name %} で作成できます。 メッセージはポップアップウィンドウ内に表示され、ユーザは {% data variables.product.product_location %} を使用する前に閉じる必要があります。 +You can create a mandatory message that {% data variables.product.product_name %} will show to all users the first time they sign in after you save the message. The message appears in a pop-up window that the user must dismiss before the user can use {% data variables.product.product_location %}. -必須メッセージにはさまざまな用途があります。 +Mandatory messages have a variety of uses. -- 新入社員にオンボーディング情報を提供する -- {% data variables.product.product_location %} のヘルプの取得方法をユーザに伝える -- すべてのユーザが {% data variables.product.product_location %} を使用時の利用規約を確実に読むようにする +- Providing onboarding information for new employees +- Telling users how to get help with {% data variables.product.product_location %} +- Ensuring that all users read your terms of service for using {% data variables.product.product_location %} -メッセージに Markdown チェックボックスを含める場合、ユーザがメッセージを閉じる前に、すべてのチェックボックスを選択する必要があります。 たとえば、必須メッセージに利用規約を含める場合、各ユーザにチェックボックスを選択して、ユーザが利用規約を読んだことを確認するように要求できます。 +If you include Markdown checkboxes in the message, all checkboxes must be selected before the user can dismiss the message. For example, if you include your terms of service in the mandatory message, you can require that each user selects a checkbox to confirm the user has read the terms. -ユーザに必須メッセージが表示されるたびに、監査ログイベントが作成されます。 イベントには、ユーザが表示したメッセージのバージョンが含まれます。 詳しい情報については、「[監査されたアクション](/admin/user-management/audited-actions)」を参照してください。 +Each time a user sees a mandatory message, an audit log event is created. The event includes the version of the message that the user saw. For more information see "[Audited actions](/admin/user-management/audited-actions)." {% note %} @@ -83,30 +88,35 @@ topics: {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. [Mandatory message] の右側にある [**Add message**] をクリックします。 ![Add mandatory message button](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) -1. [Mandatory message] の下のテキストボックスに、メッセージを入力します。 ![Mandatory message text box](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) +1. To the right of "Mandatory message", click **Add message**. + ![Add mandatory message button](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) +1. Under "Mandatory message", in the text box, type your message. + ![Mandatory message text box](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} {% ifversion ghes or ghae %} -## グローバルアナウンスバナーを作成する +## Creating a global announcement banner -各ページの上部にグローバルアナウンスバナーを設定し、すべてのユーザに対して表示できます。 +You can set a global announcement banner to be displayed to all users at the top of every page. {% ifversion ghae or ghes %} -You can also set an announcement banner{% ifversion ghes %} in the administrative shell using a command line utility or{% endif %} using the API. 詳しい情報については、{% ifversion ghes %}「[コマンドラインユーティリティ](/enterprise/admin/configuration/command-line-utilities#ghe-announce)」および{% endif %}「[{% data variables.product.prodname_enterprise %} 管理](/rest/reference/enterprise-admin#announcements)」を参照してください。 +You can also set an announcement banner{% ifversion ghes %} in the administrative shell using a command line utility or{% endif %} using the API. For more information, see {% ifversion ghes %}"[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)" and {% endif %}"[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#announcements)." {% else %} -コマンドラインユーティリティを使用して、管理シェルでアナウンスバナーを設定することもできます。 詳しい情報については、「[コマンドラインユーティリティ](/enterprise/admin/configuration/command-line-utilities#ghe-announce)」を参照してください。 +You can also set an announcement banner in the administrative shell using a command line utility. For more information, see "[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)." {% endif %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. {% ifversion ghes or ghae %}[Announcement] の右側{% else %}下{% endif %}にある [**Add announcement**] をクリックします。 ![[Add message] ボタン](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) -1. [Announcement] のテキストフィールドに、バナーに表示するお知らせを入力します。 ![アナウンスを入力するテキストフィールド](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) -1. 必要に応じて、[Expires on] でカレンダーのドロップダウンメニューを選択し、有効期限をクリックします。 ![有効期限を選択するためのカレンダードロップダウンメニュー](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) +1. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Announcement", click **Add announcement**. + ![Add announcement button](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) +1. Under "Announcement", in the text field, type the announcement you want displayed in a banner. + ![Text field to enter announcement](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) +1. Optionally, under "Expires on", select the calendar drop-down menu and click an expiration date. + ![Calendar drop-down menu to choose expiration date](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/index.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/index.md index 5e489654da..4b8443a834 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/index.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: Enterprise のユーザを管理する -intro: ユーザアクティビティを監査し、ユーザ設定を管理できます。 +title: Managing users in your enterprise +intro: You can audit user activity and manage user settings. redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise - - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons/ + - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons - /enterprise/admin/user-management/basic-account-settings - /enterprise/admin/user-management/user-security - /enterprise/admin/user-management/managing-users-in-your-enterprise @@ -35,4 +35,3 @@ children: - /rebuilding-contributions-data shortTitle: Manage users --- - diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md index f1ca02ce02..bdb7d0b4f9 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Enterprise を管理するようユーザを招待する +title: Inviting people to manage your enterprise intro: 'You can {% ifversion ghec %}invite people to become enterprise owners or billing managers for{% elsif ghes %}add enterprise owners to{% endif %} your enterprise account. You can also remove enterprise owners {% ifversion ghec %}or billing managers {% endif %}who no longer need access to the enterprise account.' product: '{% data reusables.gated-features.enterprise-accounts %}' permissions: 'Enterprise owners can {% ifversion ghec %}invite other people to become{% elsif ghes %}add{% endif %} additional enterprise administrators.' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise - /github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account - - /articles/inviting-people-to-collaborate-in-your-business-account/ + - /articles/inviting-people-to-collaborate-in-your-business-account - /articles/inviting-people-to-manage-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise versions: @@ -38,7 +38,7 @@ If your enterprise uses {% data variables.product.prodname_emus %}, enterprise o {% tip %} -**ヒント:** Enterprise アカウントが所有する Organization 内のユーザを管理する方法に関する詳しい情報については、「[Organization でメンバーシップを管理する](/articles/managing-membership-in-your-organization)」および「[Organization への人々のアクセスをロールで管理する](/articles/managing-peoples-access-to-your-organization-with-roles)」を参照してください。 +**Tip:** For more information on managing users within an organization owned by your enterprise account, see "[Managing membership in your organization](/articles/managing-membership-in-your-organization)" and "[Managing people's access to your organization with roles](/articles/managing-peoples-access-to-your-organization-with-roles)." {% endtip %} @@ -48,28 +48,33 @@ If your enterprise uses {% data variables.product.prodname_emus %}, enterprise o {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} -1. 左サイドバーで [**Administrators**] をクリックします。 ![左サイドバーの [Administrators] タブ](/assets/images/help/business-accounts/administrators-tab.png) +1. In the left sidebar, click **Administrators**. + ![Administrators tab in the left sidebar](/assets/images/help/business-accounts/administrators-tab.png) 1. Above the list of administrators, click {% ifversion ghec %}**Invite admin**{% elsif ghes %}**Add owner**{% endif %}. {% ifversion ghec %} !["Invite admin" button above the list of enterprise owners](/assets/images/help/business-accounts/invite-admin-button.png) {% elsif ghes %} !["Add owner" button above the list of enterprise owners](/assets/images/help/business-accounts/add-owner-button.png) {% endif %} -1. Enterprise 管理者として招待する人のユーザ名、フルネーム、またはメール アドレスを入力して、表示された結果から適切な人を選びます。 ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} -1. [**Owner**] または [**Billing Manager**] を選択します。 ![ロールの選択肢が表示されたモーダルボックス](/assets/images/help/business-accounts/invite-admins-roles.png) -1. [**Send Invitation**] をクリックします。 ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} -1. [**Add**] をクリックします。 !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} +1. Type the username, full name, or email address of the person you want to invite to become an enterprise administrator, then select the appropriate person from the results. + ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} +1. Select **Owner** or **Billing Manager**. + ![Modal box with role choices](/assets/images/help/business-accounts/invite-admins-roles.png) +1. Click **Send Invitation**. + ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} +1. Click **Add**. + !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} -## Enterprise アカウントから Enterprise 管理者を削除する +## Removing an enterprise administrator from your enterprise account -Enterprise アカウントから他の Enterprise 管理者を削除できるのは、Enterprise オーナーだけです。 +Only enterprise owners can remove other enterprise administrators from the enterprise account. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} 1. Next to the username of the person you'd like to remove, click {% octicon "gear" aria-label="The Settings gear" %}, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. {% ifversion ghec %} - ![Enterprise 管理者を削除するためのメニュー オプション付きの設定「歯車」アイコン](/assets/images/help/business-accounts/remove-admin.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/remove-admin.png) {% elsif ghes %} - ![Enterprise 管理者を削除するためのメニュー オプション付きの設定「歯車」アイコン](/assets/images/help/business-accounts/ghes-remove-owner.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/ghes-remove-owner.png) {% endif %} 1. Read the confirmation, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md index d0bf2fe0a0..ce92ba1dc4 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md @@ -1,9 +1,9 @@ --- -title: 休眠ユーザの管理 +title: Managing dormant users redirect_from: - - /enterprise/admin/articles/dormant-users/ - - /enterprise/admin/articles/viewing-dormant-users/ - - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant/ + - /enterprise/admin/articles/dormant-users + - /enterprise/admin/articles/viewing-dormant-users + - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant - /enterprise/admin/user-management/managing-dormant-users - /admin/user-management/managing-dormant-users intro: '{% data reusables.enterprise-accounts.dormant-user-activity-threshold %}' @@ -17,26 +17,29 @@ topics: - Enterprise - Licensing --- - {% data reusables.enterprise-accounts.dormant-user-activity %} {% ifversion ghes or ghae%} -## 休眠ユーザの表示 +## Viewing dormant users {% data reusables.enterprise-accounts.viewing-dormant-users %} {% data reusables.enterprise_site_admin_settings.access-settings %} -3. 左のサイドバーで**Dormant users(休眠ユーザ)**をクリックしてください。 ![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} -4. このリスト中のすべての休眠ユーザをサスペンドするには、ページの上部で**Suspend all(全員をサスペンド)**をクリックしてください。 ![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} +3. In the left sidebar, click **Dormant users**. +![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} +4. To suspend all the dormant users in this list, at the top of the page, click **Suspend all**. +![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} -## ユーザアカウントが休眠状態かの判断 +## Determining whether a user account is dormant {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user %} {% data reusables.enterprise_site_admin_settings.click-user %} -5. **User info(ユーザ情報)**セクションで"Dormant(休眠)"という語の付いた赤い点は、そのユーザアカウントが休眠状態であることを示し、"Active(アクティブ)"という語の付いた緑の点はそのユーザアカウントがアクティブであることを示します。 ![休眠ユーザアカウント](/assets/images/enterprise/stafftools/dormant-user.png) ![アクティブなユーザアカウント](/assets/images/enterprise/stafftools/active-user.png) +5. In the **User info** section, a red dot with the word "Dormant" indicates the user account is dormant, and a green dot with the word "Active" indicates the user account is active. +![Dormant user account](/assets/images/enterprise/stafftools/dormant-user.png) +![Active user account](/assets/images/enterprise/stafftools/active-user.png) -## 休眠の閾値の設定 +## Configuring the dormancy threshold {% data reusables.enterprise_site_admin_settings.dormancy-threshold %} @@ -44,7 +47,8 @@ topics: {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.options-tab %} -4. [Dormancy threshold] の下で、ドロップダウンメニューを使って、希望する休眠閾値をクリックします。 ![休眠の閾値のドロップダウンメニュー](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) +4. Under "Dormancy threshold", use the drop-down menu, and click the desired dormancy threshold. +![The Dormancy threshold drop-down menu](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) {% endif %} @@ -62,6 +66,7 @@ topics: {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.enterprise-accounts-compliance-tab %} -1. To download your Dormant Users (beta) report as a CSV file, under "Other", click {% octicon "download" aria-label="The Download icon" %} **Download**. ![Download button under "Other" on the Compliance page](/assets/images/help/business-accounts/dormant-users-download-button.png) +1. To download your Dormant Users (beta) report as a CSV file, under "Other", click {% octicon "download" aria-label="The Download icon" %} **Download**. + ![Download button under "Other" on the Compliance page](/assets/images/help/business-accounts/dormant-users-download-button.png) {% endif %} diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md index 780a4f4191..0227145d68 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md @@ -1,8 +1,8 @@ --- title: Promoting or demoting a site administrator redirect_from: - - /enterprise/admin/articles/promoting-a-site-administrator/ - - /enterprise/admin/articles/demoting-a-site-administrator/ + - /enterprise/admin/articles/promoting-a-site-administrator + - /enterprise/admin/articles/demoting-a-site-administrator - /enterprise/admin/user-management/promoting-or-demoting-a-site-administrator - /admin/user-management/promoting-or-demoting-a-site-administrator intro: 'Site administrators can promote any normal user account to a site administrator, as well as demote other site administrators to regular users.' diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md index 760f69d022..fc57c1bf12 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md @@ -1,8 +1,8 @@ --- -title: コントリビューションデータの再構築 -intro: 既存のコミットをユーザアカウントにリンクするために、コントリビューションデータの再構築が必要になることがあります。 +title: Rebuilding contributions data +intro: You may need to rebuild contributions data to link existing commits to a user account. redirect_from: - - /enterprise/admin/articles/rebuilding-contributions-data/ + - /enterprise/admin/articles/rebuilding-contributions-data - /enterprise/admin/user-management/rebuilding-contributions-data - /admin/user-management/rebuilding-contributions-data versions: @@ -14,13 +14,14 @@ topics: - User account shortTitle: Rebuild contributions --- +Whenever a commit is pushed to {% data variables.product.prodname_enterprise %}, it is linked to a user account if they are both associated with the same email address. However, existing commits are *not* retroactively linked when a user registers a new email address or creates a new account. -コミットは、{% data variables.product.prodname_enterprise %}にプッシュされるたびに、プッシュのメールアドレスとユーザのメールアドレスが同じ場合は、ユーザアカウントに関連付けられます。 しかし、ユーザが新規メールアドレスの登録や新規アカウントの作成をした場合、既存のコミットは、遡及的には関連付けられ*ません*。 - -1. ユーザのプロフィールページにアクセスします。 +1. Visit the user's profile page. {% data reusables.enterprise_site_admin_settings.access-settings %} -3. ページ左にある、**Admin** をクリックする。 ![[Admin] タブ](/assets/images/enterprise/site-admin-settings/admin-tab.png) -4. **Contributions data** で、**Rebuild** をクリックする。 ![[Rebuild] ボタン](/assets/images/enterprise/site-admin-settings/rebuild-button.png) +3. On the left side of the page, click **Admin**. + ![Admin tab](/assets/images/enterprise/site-admin-settings/admin-tab.png) +4. Under **Contributions data**, click **Rebuild**. +![Rebuild button](/assets/images/enterprise/site-admin-settings/rebuild-button.png) -{% data variables.product.prodname_enterprise %} は、コミットをユーザアカウントに再度リンクするためのバックグラウンドジョブを開始します。 - ![待ち行列に入っている再構築ジョブ](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) +{% data variables.product.prodname_enterprise %} will now start background jobs to re-link commits with that user's account. + ![Queued rebuild jobs](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md index 653d27e13a..e1586d12d0 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md @@ -1,11 +1,11 @@ --- -title: Enterprise におけるロール -intro: Enterprise 内の全員が Enterprise のメンバーです。 Enterprise の設定とデータへのアクセスを制御するために、Enterprise のメンバーにさまざまなロールを割り当てることができます。 +title: Roles in an enterprise +intro: 'Everyone in an enterprise is a member of the enterprise. To control access to your enterprise''s settings and data, you can assign different roles to members of your enterprise.' product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise - /github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account - - /articles/permission-levels-for-a-business-account/ + - /articles/permission-levels-for-a-business-account - /articles/roles-for-an-enterprise-account - /github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise versions: @@ -16,9 +16,9 @@ topics: - Enterprise --- -## Enterprise のロールについて +## About roles in an enterprise -Enterprise 内の全員が Enterprise のメンバーです。 Enterprise のメンバーに管理者のロールを割り当てることもできます。 各管理者ロールはビジネス機能にマップされ、Enterprise 内の特定のタスクを行う権限を与えます。 +Everyone in an enterprise is a member of the enterprise. You can also assign administrative roles to members of your enterprise. Each administrator role maps to business functions and provides permissions to do specific tasks within the enterprise. {% data reusables.enterprise-accounts.enterprise-administrators %} @@ -31,46 +31,46 @@ For more information about adding people to your enterprise, see "[Authenticatio {% endif %} -## Enterprise オーナー +## Enterprise owner -Enterprise オーナーは、Enterprise の完全な管理権限を持ち、以下を含むすべての操作を行うことができます。 -- 管理者を管理する -- {% ifversion ghec %}追加と削除 {% elsif ghae or ghes %} Enterprise {% endif %}{% ifversion ghec %}内および {% elsif ghae or ghes %}Enterprise{% endif %} 内から Organization を管理する -- Enterprise 設定を管理する -- Organization にポリシーを強制する -{% ifversion ghec %}- 支払い設定を管理する{% endif %} +Enterprise owners have complete control over the enterprise and can take every action, including: +- Managing administrators +- {% ifversion ghec %}Adding and removing {% elsif ghae or ghes %}Managing{% endif %} organizations {% ifversion ghec %}to and from {% elsif ghae or ghes %} in{% endif %} the enterprise +- Managing enterprise settings +- Enforcing policy across organizations +{% ifversion ghec %}- Managing billing settings{% endif %} -Enterprise オーナーは、Organization のオーナーになるか、Organization が所有するリポジトリに直接アクセスする権限を与えられない限り、Organization の設定またはコンテンツにはアクセスできません。 同様に、Enterprise の Organization のオーナーは、Enterprise のオーナーにならない限り、Enterprise にはアクセスできません。 +Enterprise owners cannot access organization settings or content unless they are made an organization owner or given direct access to an organization-owned repository. Similarly, owners of organizations in your enterprise do not have access to the enterprise itself unless you make them enterprise owners. -Enterprise のオーナーは、Enterprise 内の少なくとも 1 つの Organization のオーナーまたはメンバーである場合にのみ、ライセンスを消費できます。 {% ifversion ghec %}Enterprise のオーナーは {% data variables.product.prodname_dotcom %} に個人アカウントを持っている必要があります。{% endif %} ベストプラクティスとして、ビジネスへのリスクを軽減するために、Enterprise のオーナーを数人にすることをお勧めします。 +An enterprise owner will only consume a license if they are an owner or member of at least one organization within the enterprise. {% ifversion ghec %}Enterprise owners must have a personal account on {% data variables.product.prodname_dotcom %}.{% endif %} As a best practice, we recommend making only a few people in your company enterprise owners, to reduce the risk to your business. -## Enterprise メンバー +## Enterprise members -Enterprise が所有する Organization のメンバーも、自動的に Enterprise のメンバーになります。 メンバーは Organization 内でコラボレートできます。Organization のオーナーになることも可能です。メンバーは支払い設定を含む Enterprise 設定{% ifversion ghec %}にアクセスまたは設定することはできません。{% endif %} +Members of organizations owned by your enterprise are also automatically members of the enterprise. Members can collaborate in organizations and may be organization owners, but members cannot access or configure enterprise settings{% ifversion ghec %}, including billing settings{% endif %}. -Enterprise 内のユーザは、Enterprise が所有するさまざまな Organization およびそれらの Organization 内のリポジトリへのあらゆるレベルのアクセス権を持つことができます。 各個人がアクセスできるリソースを確認することができます。 詳しい情報については、「[Enterprise の人を表示する](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)」を参照してください。 +People in your enterprise may have different levels of access to the various organizations owned by your enterprise and to repositories within those organizations. You can view the resources that each person has access to. For more information, see "[Viewing people in your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)." For more information about organization-level permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -Organization が所有するリポジトリへの外部のコラボレータアクセス権を持つユーザも、Enterprise の [People] タブに一覧表示されますが、Enterprise メンバーではなく、Enterprise へのアクセス権はありません。 For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +People with outside collaborator access to repositories owned by your organization are also listed in your enterprise's People tab, but are not enterprise members and do not have any access to the enterprise. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." {% ifversion ghec %} -## 支払いマネージャー +## Billing manager -支払いマネージャーは、Enterprise の支払い設定にのみアクセスできます。 Enterprise の支払いマネージャーは次の操作ができます。 -- ユーザライセンス、{% data variables.large_files.product_name_short %} パック、およびその他の支払い設定の閲覧および管理 -- 支払いマネージャーのリストを閲覧 -- 他の支払いマネージャーの追加または削除 +Billing managers only have access to your enterprise's billing settings. Billing managers for your enterprise can: +- View and manage user licenses, {% data variables.large_files.product_name_short %} packs and other billing settings +- View a list of billing managers +- Add or remove other billing managers -支払いマネージャーは、Enterprise 内の少なくとも 1 つの Organization のオーナーまたはメンバーである場合にのみ、ライセンスを消費できます。 支払いマネージャーは、Enterprise の Organization またはリポジトリにアクセスすることはできません。また、Enterprise のオーナーを追加または削除することもできません。 支払いマネージャーは、{% data variables.product.prodname_dotcom %} 上に個人アカウントを持っていなければなりません。 +Billing managers will only consume a license if they are an owner or member of at least one organization within the enterprise. Billing managers do not have access to organizations or repositories in your enterprise, and cannot add or remove enterprise owners. Billing managers must have a personal account on {% data variables.product.prodname_dotcom %}. ## About support entitlements {% data reusables.enterprise-accounts.support-entitlements %} -## 参考リンク +## Further reading -- 「[Enterprise アカウントについて](/admin/overview/about-enterprise-accounts)」 +- "[About enterprise accounts](/admin/overview/about-enterprise-accounts)" {% endif %} diff --git a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md index 08148b0c9f..f64cdf6334 100644 --- a/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md +++ b/translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md @@ -1,11 +1,11 @@ --- title: Suspending and unsuspending users redirect_from: - - /enterprise/admin/articles/suspending-a-user/ - - /enterprise/admin/articles/unsuspending-a-user/ - - /enterprise/admin/articles/viewing-suspended-users/ - - /enterprise/admin/articles/suspended-users/ - - /enterprise/admin/articles/suspending-and-unsuspending-users/ + - /enterprise/admin/articles/suspending-a-user + - /enterprise/admin/articles/unsuspending-a-user + - /enterprise/admin/articles/viewing-suspended-users + - /enterprise/admin/articles/suspended-users + - /enterprise/admin/articles/suspending-and-unsuspending-users - /enterprise/admin/user-management/suspending-and-unsuspending-users - /admin/user-management/suspending-and-unsuspending-users intro: 'If a user leaves or moves to a different part of the company, you should remove or modify their ability to access {% data variables.product.product_location %}.' diff --git a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md index 16e63c47a3..f3d8b48da6 100644 --- a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md @@ -2,12 +2,12 @@ title: Exporting migration data from your enterprise intro: 'To change platforms or move from a trial instance to a production instance, you can export migration data from a {% data variables.product.prodname_ghe_server %} instance by preparing the instance, locking the repositories, and generating a migration archive.' redirect_from: - - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise/ + - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise - /enterprise/admin/migrations/exporting-migration-data-from-github-enterprise-server - /enterprise/admin/migrations/preparing-the-github-enterprise-server-source-instance - /enterprise/admin/migrations/exporting-the-github-enterprise-server-source-repositories - - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance/ - - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories/ + - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance + - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories - /enterprise/admin/user-management/exporting-migration-data-from-your-enterprise - /admin/user-management/exporting-migration-data-from-your-enterprise versions: diff --git a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md index 3f9bc55727..2b27547b72 100644 --- a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md +++ b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: Enterprise との間でデータを移行する -intro: '{% data variables.product.prodname_ghe_server %} または {% data variables.product.prodname_dotcom_the_website %} からユーザ、Organization、およびリポジトリデータをエクスポートして、そのデータを {% data variables.product.product_location %} にインポートできます。' +title: Migrating data to and from your enterprise +intro: 'You can export user, organization, and repository data from {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_dotcom_the_website %}, then import that data into {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise/ - - /enterprise/admin/categories/migrations-and-upgrades/ + - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise + - /enterprise/admin/categories/migrations-and-upgrades - /enterprise/admin/migrations/overview - /enterprise/admin/user-management/migrating-data-to-and-from-your-enterprise versions: diff --git a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md index 3737d0e572..e6eedafa28 100644 --- a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md @@ -2,14 +2,14 @@ title: Migrating data to your enterprise intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise/ + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise - /enterprise/admin/migrations/applying-the-imported-data-on-github-enterprise-server - /enterprise/admin/migrations/reviewing-migration-data - /enterprise/admin/migrations/completing-the-import-on-github-enterprise-server - - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise/ - - /enterprise/admin/guides/migrations/reviewing-the-imported-data/ - - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise/ - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server/ + - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise + - /enterprise/admin/guides/migrations/reviewing-the-imported-data + - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server - /enterprise/admin/user-management/migrating-data-to-your-enterprise - /admin/user-management/migrating-data-to-your-enterprise versions: diff --git a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md index 6096278f78..12b0ae88e1 100644 --- a/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Enterprise へのデータ移行の準備 -intro: '移行アーカイブを作成すると、ターゲットの {% data variables.product.prodname_ghe_server %} インスタンスにデータをインポートできます。 変更を恒久的にターゲットのインスタンスに適用する前に、潜在的なコンフリクトがないか変更をレビューできます。' +title: Preparing to migrate data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - /enterprise/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server - /enterprise/admin/migrations/generating-a-list-of-migration-conflicts - /enterprise/admin/migrations/reviewing-migration-conflicts - /enterprise/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings - - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise/ + - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise - /enterprise/admin/user-management/preparing-to-migrate-data-to-your-enterprise - /admin/user-management/preparing-to-migrate-data-to-your-enterprise versions: @@ -17,10 +17,9 @@ topics: - Migration shortTitle: Prepare to migrate data --- +## Preparing the migrated data for import to {% data variables.product.prodname_ghe_server %} -## 移行したデータを {% data variables.product.prodname_ghe_server %} にインポートするための準備 - -1. [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) コマンドを使って、ソースインスタンスまたは Organization から生成された移行アーカイブを {% data variables.product.prodname_ghe_server %} ターゲットにコピーします: +1. Using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy the migration archive generated from your source instance or organization to your {% data variables.product.prodname_ghe_server %} target: ```shell $ scp -P 122 <em>/path/to/archive/MIGRATION_GUID.tar.gz</em> admin@<em>hostname</em>:/home/admin/ @@ -28,122 +27,122 @@ shortTitle: Prepare to migrate data {% data reusables.enterprise_installation.ssh-into-target-instance %} -3. `ghe-migrator prepare` コマンドを使ってターゲットインスタンスにインポートするためのアーカイブを準備し、次のステップで使用する新たな移行 GUID を生成します。 +3. Use the `ghe-migrator prepare` command to prepare the archive for import on the target instance and generate a new Migration GUID for you to use in subsequent steps: ```shell ghe-migrator prepare /home/admin/<em>MIGRATION_GUID</em>.tar.gz ``` - * 新たにインポートを試みるには、再び `ghe-migrator prepare` を実行して、新しい Migration GUID を取得します。 + * To start a new import attempt, run `ghe-migrator prepare` again and get a new Migration GUID. * {% data reusables.enterprise_migrations.specify-staging-path %} -## 移行のコンフリクトのリストの生成 +## Generating a list of migration conflicts -1. `ghe-migrator conflicts` コマンドに移行 GUID を付けて実行し、*conflicts.csv* ファイルを生成します。 +1. Using the `ghe-migrator conflicts` command with the Migration GUID, generate a *conflicts.csv* file: ```shell $ ghe-migrator conflicts -g <em>MIGRATION_GUID</em> > conflicts.csv ``` - - コンフリクトが報告されなければ、「[Enterprise にデータを移行する](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)」のステップに従って安全にデータをインポートできます。 -2. コンフリクトがある場合は、[`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) コマンドを使って *conflicts.csv* をローカルコンピュータにコピーします。 + - If no conflicts are reported, you can safely import the data by following the steps in "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)". +2. If there are conflicts, using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy *conflicts.csv* to your local computer: ```shell $ scp -P 122 admin@<em>hostname</em>:conflicts.csv ~/Desktop ``` -3. 「[移行コンフリクトの解決もしくはカスタムマッピングのセットアップ](#resolving-migration-conflicts-or-setting-up-custom-mappings)」に進みます。 +3. Continue to "[Resolving migration conflicts or setting up custom mappings](#resolving-migration-conflicts-or-setting-up-custom-mappings)". -## 移行コンフリクトのレビュー +## Reviewing migration conflicts -1. テキストエディタもしくは[CSV互換のスプレッドシートソフトウェア](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support)を使って*conflicts.csv*をオープンしてください。 -2. 以下の例とリファレンスのガイダンスと共に*conflicts.csv*ファイルをレビューし、インポートの際に適切なアクションが取られることを確認してください。 +1. Using a text editor or [CSV-compatible spreadsheet software](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support), open *conflicts.csv*. +2. With guidance from the examples and reference tables below, review the *conflicts.csv* file to ensure that the proper actions will be taken upon import. -*conflicts.csv*ファイルには、コンフリクトの*移行マップ*と推奨アクションが含まれています。 移行マップは、ソースから移行されるデータと、そのデータがどのようにターゲットに適用されるかのリストです。 +The *conflicts.csv* file contains a *migration map* of conflicts and recommended actions. A migration map lists out both what data is being migrated from the source, and how the data will be applied to the target. -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| -------------- | ------------------------------------------------------ | ------------------------------------------------------ | -------------------- | -| `ユーザ` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | -| `Organization` | `https://example-gh.source/octo-org` | `https://example-gh.target/octo-org` | `map` | -| `リポジトリ` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/widgets` | `rename` | -| `Team` | `https://example-gh.source/orgs/octo-org/teams/admins` | `https://example-gh.target/orgs/octo-org/teams/admins` | `マージ` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | +| `organization` | `https://example-gh.source/octo-org` | `https://example-gh.target/octo-org` | `map` | +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/widgets` | `rename` | +| `team` | `https://example-gh.source/orgs/octo-org/teams/admins` | `https://example-gh.target/orgs/octo-org/teams/admins` | `merge` | -*conflicts.csv*の各行には以下の情報があります。 +Each row in *conflicts.csv* provides the following information: -| 名前 | 説明 | -| -------------------- | --------------------------------------- | -| `model_name` | 変更されるデータの種類。 | -| `source_url` | データのソースURL。 | -| `target_url` | 期待されるデータのターゲットURL。 | -| `recommended_action` | データをインポートする際に`ghe-migrator`が行う推奨のアクション。 | +| Name | Description | +|--------------|---------------| +| `model_name` | The type of data being changed. | +| `source_url` | The source URL of the data. | +| `target_url` | The expected target URL of the data. | +| `recommended_action` | The preferred action `ghe-migrator` will take when importing the data. | -### 各レコードタイプで可能なマッピング +### Possible mappings for each record type -データの転送時に`ghe-migrator`が行えるマッピングアクションは複数あります。 +There are several different mapping actions that `ghe-migrator` can take when transferring data: -| `action` | 説明 | 適用可能なモデル | -| --------------- | ---------------------------------------------------------- | -------------------------------- | -| `import` | (デフォルト)ソースからのデータがターゲットにインポートされます。 | すべてのレコードタイプ | -| `map` | ソースからのデータがターゲット上の既存のデータで置き換えられます。 | Users、organizations、repositories | -| `rename` | ソースからのデータは名前が変更されてターゲットにコピーされます。 | Users、organizations、repositories | -| `map_or_rename` | ターゲットが存在する場合、そのターゲットにマップします。 そうでない場合はインポートされたモデルの名前を変更します。 | ユーザ | -| `マージ` | ソースからのデータはターゲット上の既存のデータと組み合わされます。 | Team | +| `action` | Description | Applicable models | +|------------------------|-------------|-------------------| +| `import` | (default) Data from the source is imported to the target. | All record types +| `map` | Data from the source is replaced by existing data on the target. | Users, organizations, repositories +| `rename` | Data from the source is renamed, then copied over to the target. | Users, organizations, repositories +| `map_or_rename` | If the target exists, map to that target. Otherwise, rename the imported model. | Users +| `merge` | Data from the source is combined with existing data on the target. | Teams -***conflicts.csv* ファイルを見直し、[`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) を使って適切なアクションがとられることを確認するよう強くお勧めします。**問題がないようであれば、「[Enterprise へのデータの移行](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)」に進むことができます。 +**We strongly suggest you review the *conflicts.csv* file and use [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) to ensure that the proper actions are being taken.** If everything looks good, you can continue to "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)". -## 移行コンフリクトの解決もしくはカスタムマッピングのセットアップ +## Resolving migration conflicts or setting up custom mappings -`ghe-migrator`が正しくない変更を行うと考えられるときは、*conflicts.csv*内でデータを変更することによって修正をかけられます。 *conflicts.csv*内の任意の行を変更できます。 +If you believe that `ghe-migrator` will perform an incorrect change, you can make corrections by changing the data in *conflicts.csv*. You can make changes to any of the rows in *conflicts.csv*. -たとえばソースの`octocat`ユーザがターゲットの`octocat`にマップされていることに気づいたとしましょう。 +For example, let's say you notice that the `octocat` user from the source is being mapped to `octocat` on the target: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | ----------------------------------- | ----------------------------------- | -------------------- | -| `ユーザ` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` -このユーザをターゲット上の他のユーザにマップさせることができます。 `octocat`が実際にはターゲットの`monalisa`だということを知っているとしましょう。 *conflicts.csv*の `target_url`を`monalisa`を指すように変更できます。 +You can choose to map the user to a different user on the target. Suppose you know that `octocat` should actually be `monalisa` on the target. You can change the `target_url` column in *conflicts.csv* to refer to `monalisa`: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | ----------------------------------- | ------------------------------------ | -------------------- | -| `ユーザ` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `map` -もう1つの例として、もしも`octo-org/widgets`リポジトリをターゲットインスタンス上では`octo-org/amazing-widgets`に名前を変えたいとすれば、`target_url`を`octo-org/amazing-widgets`に、`recommend_action`を`rename`に変更してください。 +As another example, if you want to rename the `octo-org/widgets` repository to `octo-org/amazing-widgets` on the target instance, change the `target_url` to `octo-org/amazing-widgets` and the `recommend_action` to `rename`: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | -------------------------------------------- | ---------------------------------------------------- | -------------------- | -| `リポジトリ` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/amazing-widgets` | `rename` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/amazing-widgets` | `rename` | -### カスタムマッピングの追加 +### Adding custom mappings -移行における一般的なシナリオは、移行されたユーザがターゲット上ではソース上とは異なるユーザ名を持つことです。 +A common scenario during a migration is for migrated users to have different usernames on the target than they have on the source. -ソースのユーザ名のリストとターゲットのユーザー名のリストがあれば、カスタムマッピングのCSVファイルを構築し、各ユーザのユーザ名とコンテンツが移行の終了時点で正しく割り当てられているようにそのファイルを適用できます。 +Given a list of usernames from the source and a list of usernames on the target, you can build a CSV file with custom mappings and then apply it to ensure each user's username and content is correctly attributed to them at the end of a migration. -[`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data)を使えば、カスタムマッピングを適用するのに必要なCSV形式で、移行されるユーザのCSVを素早く生成できます。 +You can quickly generate a CSV of users being migrated in the CSV format needed to apply custom mappings by using the [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) command: ```shell $ ghe-migrator audit -m user -g <em>MIGRATION_GUID</em> > users.csv ``` -これで、このCSVを編集してマップあるいは名前を変更したい各ユーザに新しいURLを入力し、4番目の列を`map`あるいは`rename`を適切に更新できます。 +Now, you can edit that CSV and enter the new URL for each user you would like to map or rename, and then update the fourth column to have `map` or `rename` as appropriate. -たとえばユーザ`octocat`の名前をターゲット`https://example-gh.target`上で`monalisa`に変更したいのであれば、以下の内容の行を作成します。 +For example, to rename the user `octocat` to `monalisa` on the target `https://example-gh.target` you would create a row with the following content: -| `model_name` | `source_url` | `target_url` | `state` | -| ------------ | ----------------------------------- | ------------------------------------ | -------- | -| `ユーザ` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `rename` | +| `model_name` | `source_url` | `target_url` | `state` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `rename` -同じプロセスは、カスタムマッピングをサポートする各レコードのマッピングを作成するために使うことができます。 詳しい情報については[レコードに可能なマッピング上のテーブル](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type)を参照してください。 +The same process can be used to create mappings for each record that supports custom mappings. For more information, see [our table on the possible mappings for records](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type). -### 修正された移行データの適用 +### Applying modified migration data -1. 変更を加えた後、修正された *conflicts.csv* (または適切な形式のその他のマッピング *.csv*) を [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) コマンドを使ってターゲットインスタンスに適用します。 +1. After making changes, use the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command to apply your modified *conflicts.csv* (or any other mapping *.csv* file in the correct format) to the target instance: ```shell $ scp -P 122 ~/Desktop/conflicts.csv admin@<em>hostname</em>:/home/admin/ ``` -2. 修正された *.csv* ファイルへのパスと移行 GUID を渡して、`ghe-migrator map` を使い、移行データを再マップします。 +2. Re-map the migration data using the `ghe-migrator map` command, passing in the path to your modified *.csv* file and the Migration GUID: ```shell $ ghe-migrator map -i conflicts.csv -g <em>MIGRATION_GUID</em> ``` -3. `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` がまだコンフリクトがあると報告してきた場合、移行のコンフリクト解決のプロセスをもう一度行ってください。 +3. If the `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` command reports that conflicts still exist, run through the migration conflict resolution process again. diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md index 885f9422cb..edc50c6daa 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md @@ -1,8 +1,8 @@ --- -title: アクティビティダッシュボード -intro: アクティビティダッシュボードで、Enterprise 内のすべてのアクティビティの概要を確認できます。 +title: Activity dashboard +intro: The Activity dashboard gives you an overview of all the activity in your enterprise. redirect_from: - - /enterprise/admin/articles/activity-dashboard/ + - /enterprise/admin/articles/activity-dashboard - /enterprise/admin/installation/activity-dashboard - /enterprise/admin/user-management/activity-dashboard - /admin/user-management/activity-dashboard @@ -12,21 +12,22 @@ versions: topics: - Enterprise --- +The Activity dashboard provides weekly, monthly, and yearly graphs of the number of: +- New pull requests +- Merged pull requests +- New issues +- Closed issues +- New issue comments +- New repositories +- New user accounts +- New organizations +- New teams -アクティビティダッシュボードには、次の数値の週次、月次、年次のグラフが表示されます。 -- 新規プルリクエスト -- マージされたプルリクエスト -- 新規 Issue -- 解決された Issue -- 新規 Issue コメント -- 新規リポジトリ -- 新規ユーザアカウント -- 新規 Organization -- 新規 Team +![Activity dashboard](/assets/images/enterprise/activity/activity-dashboard-yearly.png) -![アクティビティダッシュボード](/assets/images/enterprise/activity/activity-dashboard-yearly.png) +## Accessing the Activity dashboard -## アクティビティダッシュボードへのアクセス - -1. ページの上部で [**Explore**] をクリックします。 ![[Explore] タブ](/assets/images/enterprise/settings/ent-new-explore.png) -2. 右上にある **Activity** をクリックする。 ![Activity ボタン](/assets/images/enterprise/activity/activity-button.png) +1. At the top of any page, click **Explore**. +![Explore tab](/assets/images/enterprise/settings/ent-new-explore.png) +2. In the upper-right corner, click **Activity**. +![Activity button](/assets/images/enterprise/activity/activity-button.png) diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md index fc17c13ff7..0b39b98872 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md @@ -1,8 +1,8 @@ --- -title: 監査ログ -intro: '{% data variables.product.product_name %} は、{% ifversion ghes %}監査対象システム、{% endif %}ユーザ、Organization、リポジトリのイベントのログを保持します。 ログはデバッグや内部および外部のコンプライアンスに役立ちます。' +title: Audit logging +intro: '{% data variables.product.product_name %} keeps logs of audited{% ifversion ghes %} system,{% endif %} user, organization, and repository events. Logs are useful for debugging and internal and external compliance.' redirect_from: - - /enterprise/admin/articles/audit-logging/ + - /enterprise/admin/articles/audit-logging - /enterprise/admin/installation/audit-logging - /enterprise/admin/user-management/audit-logging - /admin/user-management/audit-logging @@ -16,31 +16,30 @@ topics: - Logging - Security --- +For a full list, see "[Audited actions](/admin/user-management/audited-actions)." For more information on finding a particular action, see "[Searching the audit log](/admin/user-management/searching-the-audit-log)." -完全なリストについては、「[監査済みのアクション](/admin/user-management/audited-actions)」を参照してください。 特定のアクションを見つける方法について詳しくは、「[Audit log を検索する](/admin/user-management/searching-the-audit-log)」を参照してください。 +## Push logs -## プッシュのログ - -Git プッシュ操作はすべてログに記録されます。 詳しい情報については、「[プッシュログを表示する](/admin/user-management/viewing-push-logs)」を参照してください。 +Every Git push operation is logged. For more information, see "[Viewing push logs](/admin/user-management/viewing-push-logs)." {% ifversion ghes %} -## システムイベント +## System events -すべてのプッシュとプルを含む監査されたすべてのシステムイベントは、`/var/log/github/audit.log` に記録されます。 ログは 24 時間ごとに自動的に交換され、7 日間保持されます。 +All audited system events, including all pushes and pulls, are logged to `/var/log/github/audit.log`. Logs are automatically rotated every 24 hours and are retained for seven days. -Support Bundle にはシステムログが含まれています。 詳しい情報については、「[{% data variables.product.prodname_dotcom %} Support にデータを提供する](/admin/enterprise-support/providing-data-to-github-support)」を参照してください。 +The support bundle includes system logs. For more information, see "[Providing data to {% data variables.product.prodname_dotcom %} Support](/admin/enterprise-support/providing-data-to-github-support)." -## Support Bundle +## Support bundles -すべての監査情報は、Support Bundle の `github-logs` ディレクトリにある `audit.log` ファイルに記録されます。 ログの転送が有効な場合、[Splunk](http://www.splunk.com/) や [Logstash](http://logstash.net/) などの外部の syslog ストリーミングコンシューマに、このデータをストリーミングすることができます。 このログからのすべてのエントリは、`github_audit` キーワードでフィルタリングできます。 詳しい情報については、「[ログの転送](/admin/user-management/log-forwarding)」を参照してください。 +All audit information is logged to the `audit.log` file in the `github-logs` directory of any support bundle. If log forwarding is enabled, you can stream this data to an external syslog stream consumer such as [Splunk](http://www.splunk.com/) or [Logstash](http://logstash.net/). All entries from this log use and can be filtered with the `github_audit` keyword. For more information see "[Log forwarding](/admin/user-management/log-forwarding)." -たとえば、次のエントリは新規リポジトリが作成されたことを示しています。 +For example, this entry shows that a new repository was created. ``` Oct 26 01:42:08 github-ent github_audit: {:created_at=>1351215728326, :actor_ip=>"10.0.0.51", :data=>{}, :user=>"some-user", :repo=>"some-user/some-repository", :actor=>"some-user", :actor_id=>2, :user_id=>2, :action=>"repo.create", :repo_id=>1, :from=>"repositories#create"} ``` -次の例は、コミットがリポジトリにプッシュされたことを示しています。 +This example shows that commits were pushed to a repository. ``` Oct 26 02:19:31 github-ent github_audit: { "pid":22860, "ppid":22859, "program":"receive-pack", "git_dir":"/data/repositories/some-user/some-repository.git", "hostname":"github-ent", "pusher":"some-user", "real_ip":"10.0.0.51", "user_agent":"git/1.7.10.4", "repo_id":1, "repo_name":"some-user/some-repository", "transaction_id":"b031b7dc7043c87323a75f7a92092ef1456e5fbaef995c68", "frontend_ppid":1, "repo_public":true, "user_name":"some-user", "user_login":"some-user", "frontend_pid":18238, "frontend":"github-ent", "user_email":"some-user@github.example.com", "user_id":2, "pgroup":"github-ent_22860", "status":"post_receive_hook", "features":" report-status side-band-64k", "received_objects":3, "receive_pack_size":243, "non_fast_forward":false, "current_ref":"refs/heads/main" } diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md index 2c57090629..87a3c98508 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md @@ -3,7 +3,7 @@ title: Audited actions intro: You can search the audit log for a wide variety of actions. miniTocMaxHeadingLevel: 3 redirect_from: - - /enterprise/admin/articles/audited-actions/ + - /enterprise/admin/articles/audited-actions - /enterprise/admin/installation/audited-actions - /enterprise/admin/user-management/audited-actions - /admin/user-management/audited-actions diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md index 2eada513c4..7f6e8c800e 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md @@ -1,8 +1,8 @@ --- -title: ログの転送 -intro: '{% data variables.product.product_name %} は `syslog-ng` を使用して、{% ifversion ghes %} システム {% elsif ghae %} Git{% endif %} とアプリケーションログを指定したサーバーに転送します。' +title: Log forwarding +intro: '{% data variables.product.product_name %} uses `syslog-ng` to forward {% ifversion ghes %}system{% elsif ghae %}Git{% endif %} and application logs to the server you specify.' redirect_from: - - /enterprise/admin/articles/log-forwarding/ + - /enterprise/admin/articles/log-forwarding - /enterprise/admin/installation/log-forwarding - /enterprise/admin/enterprise-management/log-forwarding - /admin/enterprise-management/log-forwarding @@ -20,33 +20,40 @@ topics: ## About log forwarding -syslog-style 式のログストリームに対応するログ回収システムは、サポートしています。(例えば、[Logstash](http://logstash.net/) や [Splunk](http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports)など) +Any log collection system that supports syslog-style log streams is supported (e.g., [Logstash](http://logstash.net/) and [Splunk](http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports)). When you enable log forwarding, you must upload a CA certificate to encrypt communications between syslog endpoints. Your appliance and the remote syslog server will perform two-way SSL, each providing a certificate to the other and validating the certificate which is received. -## ログの転送を有効化 +## Enabling log forwarding {% ifversion ghes %} -1. {% data variables.enterprise.management_console %}の設定ページの左サイドバーで**Monitoring**をクリックする。 -1. **Enable log forwarding** を選択する。 -1. [**Server address**] フィールドに、ログの転送先となるサーバーのアドレスを入力します。 コンマ区切りリストで複数のアドレスを指定できます。 -1. [Protocol] ドロップダウンメニューで、ログサーバーとの通信に使用するプロトコルを選択します。 そのプロトコルは指定されたすべてのログ送信先に適用されます。 -1. Optionally, select **Enable TLS**. We recommend enabling TLS according to your local security policies, especially if there are untrusted networks between the appliance and any remote log servers. -1. To encrypt communication between syslog endpoints, click **Choose File** and choose a CA certificate for the remote syslog server. You should upload a CA bundle containing a concatenation of the certificates of the CAs involved in signing the certificate of the remote log server. 一連の証明書の全体が確認され、ルート証明書で終了しなければなりません。 詳しくは、[syslog-ng のドキュメントのTLSオプション](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599)を参照してください。 +1. On the {% data variables.enterprise.management_console %} settings page, in the left sidebar, click **Monitoring**. +1. Select **Enable log forwarding**. +1. In the **Server address** field, type the address of the server to which you want to forward logs. You can specify multiple addresses in a comma-separated list. +1. In the Protocol drop-down menu, select the protocol to use to communicate with the log server. The protocol will apply to all specified log destinations. +1. Optionally, select **Enable TLS**. We recommend enabling TLS according to your local security policies, especially if there are untrusted networks between the appliance and any remote log servers. +1. To encrypt communication between syslog endpoints, click **Choose File** and choose a CA certificate for the remote syslog server. You should upload a CA bundle containing a concatenation of the certificates of the CAs involved in signing the certificate of the remote log server. The entire certificate chain will be validated, and must terminate in a root certificate. For more information, see [TLS options in the syslog-ng documentation](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599). {% elsif ghae %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} -1. {% octicon "gear" aria-label="The Settings gear" %} [**Settings**] の下で、[**Log forwarding**] をクリックします。 ![[Log forwarding] タブ](/assets/images/enterprise/business-accounts/log-forwarding-tab.png) -1. [Log forwarding] の下で、[**Enable log forwarding**] を選択します。 ![ログ転送を有効にするチェックボックス](/assets/images/enterprise/business-accounts/enable-log-forwarding-checkbox.png) -1. [Server address] の下に、ログを転送するサーバーのアドレスを入力します。 ![[Server address] フィールド](/assets/images/enterprise/business-accounts/server-address-field.png) -1. [Protocol] ドロップダウンメニューを使用して、プロトコルを選択します。 ![[Protocol] ドロップダウンメニュー](/assets/images/enterprise/business-accounts/protocol-drop-down-menu.png) -1. 必要に応じて、syslog エンドポイント間の TLS 暗号化通信を有効にするには、[**Enable TLS**] を選択します。 ![TLS を有効にするチェックボックス](/assets/images/enterprise/business-accounts/enable-tls-checkbox.png) -1. [Public certificate] の下に、x509 証明書を貼り付けます。 ![公開証明書のテキストボックス](/assets/images/enterprise/business-accounts/public-certificate-text-box.png) -1. [**Save**] をクリックします。 ![ログ転送用の [Save] ボタン](/assets/images/enterprise/business-accounts/save-button-log-forwarding.png) +1. Under {% octicon "gear" aria-label="The Settings gear" %} **Settings**, click **Log forwarding**. + ![Log forwarding tab](/assets/images/enterprise/business-accounts/log-forwarding-tab.png) +1. Under "Log forwarding", select **Enable log forwarding**. + ![Checkbox to enable log forwarding](/assets/images/enterprise/business-accounts/enable-log-forwarding-checkbox.png) +1. Under "Server address", enter the address of the server you want to forward logs to. + ![Server address field](/assets/images/enterprise/business-accounts/server-address-field.png) +1. Use the "Protocol" drop-down menu, and select a protocol. + ![Protocol drop-down menu](/assets/images/enterprise/business-accounts/protocol-drop-down-menu.png) +1. Optionally, to enable TLS encrypted communication between syslog endpoints, select **Enable TLS**. + ![Checkbox to enable TLS](/assets/images/enterprise/business-accounts/enable-tls-checkbox.png) +1. Under "Public certificate", paste your x509 certificate. + ![Text box for public certificate](/assets/images/enterprise/business-accounts/public-certificate-text-box.png) +1. Click **Save**. + ![Save button for log forwarding](/assets/images/enterprise/business-accounts/save-button-log-forwarding.png) {% endif %} {% ifversion ghes %} -## トラブルシューティング +## Troubleshooting -ログ転送で問題が発生した場合、 `http(s)://[hostname]/setup/diagnostics` のアウトプットファイルをメールに添付し、{% data variables.contact.contact_ent_support %}に連絡してください。 +If you run into issues with log forwarding, contact {% data variables.contact.contact_ent_support %} and attach the output file from `http(s)://[hostname]/setup/diagnostics` to your email. {% endif %} diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md index aeba3f8641..589354bd37 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md @@ -1,5 +1,5 @@ --- -title: グローバルwebhookの管理 +title: Managing global webhooks shortTitle: Manage global webhooks intro: You can configure global webhooks to notify external web servers when events occur within your enterprise. permissions: Enterprise owners can manage global webhooks for an enterprise account. @@ -9,7 +9,7 @@ redirect_from: - /admin/user-management/managing-global-webhooks - /admin/user-management/managing-users-in-your-enterprise/managing-global-webhooks - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - - /articles/configuring-webhooks-for-organization-events-in-your-business-account/ + - /articles/configuring-webhooks-for-organization-events-in-your-business-account - /articles/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/configuring-webhooks-for-organization-events-in-your-enterprise-account @@ -23,65 +23,77 @@ topics: - Webhooks --- -## グローバルwebhookについて +## About global webhooks -You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. 詳しい情報については、「[webhook](/developers/webhooks-and-events/webhooks)」を参照してください。 +You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. For more information, see "[Webhooks](/developers/webhooks-and-events/webhooks)." For example, you can configure {% data variables.product.product_location %} to send a webhook when someone creates, deletes, or modifies a repository or organization within your enterprise. You can configure the server to automatically perform a task after receiving the webhook. -![グローバル webhook のリスト](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) +![List of global webhooks](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) {% data reusables.enterprise_user_management.manage-global-webhooks-api %} -## グローバルwebhookの追加 +## Adding a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. **Add webhook(webhookの追加)**をクリックしてください。 ![Admin center の webhook ページ上の webhook 追加ボタン](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) -6. ペイロードの受信に使用する URL を入力します。 ![ペイロード URL を入力するフィールド](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) -7. **Content type(コンテントタイプ)**ドロップダウンメニューを使ってペイロードの形式をクリックすることもできます。 ![コンテンツタイプのオプションが並ぶドロップダウンメニュー](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) -8. **Secret(秘密)**フィールドに、`secret`キーとして使う文字列を入力することもできます。 ![シークレットキーとして使う文字列を入力するフィールド](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) -9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. SSLの検証に関する情報を読んで、 **I understand my webhooks may not be secure(webhookがセキュアではないかもしれないことを理解しました)**をクリックしてください。 ![Checkbox for disabling SSL verification](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) +5. Click **Add webhook**. + ![Add webhook button on Webhooks page in Admin center](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) +6. Type the URL where you'd like to receive payloads. + ![Field to type a payload URL](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) +7. Optionally, use the **Content type** drop-down menu, and click a payload format. + ![Drop-down menu listing content type options](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) +8. Optionally, in the **Secret** field, type a string to use as a `secret` key. + ![Field to type a string to use as a secret key](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) +9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. Read the information about SSL verification, then click **I understand my webhooks may not be secure**. + ![Checkbox for disabling SSL verification](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) {% warning %} - **警告:** SSL 検証は、フックのペイロードがセキュアにデリバリされることを保証するのに役立ちます。 SSL 検証を無効化することはおすすめしません。 + **Warning:** SSL verification helps ensure that hook payloads are delivered securely. We do not recommend disabling SSL verification. {% endwarning %} -10. Decide if you'd like this webhook to trigger for every event or for selected events. ![ペイロードをすべてのイベントあるいは選択されたイベントで受け取る選択肢のラジオボタン](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) - - すべてのイベントの場合は [**Send me everything**] を選択します。 - - 特定のイベントを選択するには [**Let me select individual events**] を選択します。 +10. Decide if you'd like this webhook to trigger for every event or for selected events. + ![Radio buttons with options to receive payloads for every event or selected events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) + - For every event, select **Send me everything**. + - To choose specific events, select **Let me select individual events**. 11. If you chose to select individual events, select the events that will trigger the webhook. {% ifversion ghec %} ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events.png) {% elsif ghes or ghae %} ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events-ghes-and-ae.png) {% endif %} -12. Confirm that the **Active** checkbox is selected. ![選択されたアクティブチェックボックス](/assets/images/help/business-accounts/webhook-active.png) -13. **Add webhook(webhookの追加)**をクリックしてください。 +12. Confirm that the **Active** checkbox is selected. + ![Selected Active checkbox](/assets/images/help/business-accounts/webhook-active.png) +13. Click **Add webhook**. -## グローバルwebhookの編集 +## Editing a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 編集したいwebhookの隣の**Edit(編集)**をクリックしてください。 ![webhook の隣の編集ボタン](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) -6. webhookの設定の更新。 -7. **Update webhook(webhookの更新)**をクリックしてください。 +5. Next to the webhook you'd like to edit, click **Edit**. + ![Edit button next to a webhook](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) +6. Update the webhook's settings. +7. Click **Update webhook**. -## グローバルwebhookの削除 +## Deleting a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 削除したいwebhookの隣の**Delete(削除)**をクリックしてください。 ![webhook の隣の削除ボタン](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) -6. webhookの削除に関する情報を読んで、**Yes, delete webhook(はい、webhookを削除します)**をクリックしてください。 ![警告情報のポップアップボックスとwebhookの削除ボタン](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) +5. Next to the webhook you'd like to delete, click **Delete**. + ![Delete button next to a webhook](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) +6. Read the information about deleting a webhook, then click **Yes, delete webhook**. + ![Pop-up box with warning information and button to confirm deleting the webhook](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) -## 最近のデリバリとレスポンスの表示 +## Viewing recent deliveries and responses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. webhook のリストで、デリバリを見たい webhook をクリックします。 ![各 webhook の表示リンクを持つ webhook のリスト](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) -6. [Recent deliveries(最近のデリバリ)] の下で、詳細を表示したいデリバリをクリックしてください。 ![詳細表示へのリンクを持つ最近のwebhookのデリバリリスト](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) +5. In the list of webhooks, click the webhook for which you'd like to see deliveries. + ![List of webhooks with links to view each webhook](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) +6. Under "Recent deliveries", click a delivery to view details. + ![List of the webhook's recent deliveries with links to view details](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md index 173f2c3a91..9fc020f88a 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md @@ -1,8 +1,8 @@ --- -title: Audit log を検索する -intro: サイト管理者は、Enterprise で監査されたアクションの広範なリストを検索できます。 +title: Searching the audit log +intro: Site administrators can search an extensive list of audited actions on the enterprise. redirect_from: - - /enterprise/admin/articles/searching-the-audit-log/ + - /enterprise/admin/articles/searching-the-audit-log - /enterprise/admin/installation/searching-the-audit-log - /enterprise/admin/user-management/searching-the-audit-log - /admin/user-management/searching-the-audit-log @@ -15,37 +15,37 @@ topics: - Enterprise - Logging --- +## Search query syntax -## 検索クエリの構文 +Compose a search query from one or more key:value pairs separated by AND/OR logical operators. -AND/ORの論理演算子で区切られた値のペア:1つ以上のキーを使って、検索クエリを構成します。 +Key | Value +--------------:| -------------------------------------------------------- +`actor_id` | ID of the user account that initiated the action +`actor` | Name of the user account that initiated the action +`oauth_app_id` | ID of the OAuth application associated with the action +`action` | Name of the audited action +`user_id` | ID of the user affected by the action +`user` | Name of the user affected by the action +`repo_id` | ID of the repository affected by the action (if applicable) +`repo` | Name of the repository affected by the action (if applicable) +`actor_ip` | IP address from which the action was initiated +`created_at` | Time at which the action occurred +`from` | View from which the action was initiated +`note` | Miscellaneous event-specific information (in either plain text or JSON format) +`org` | Name of the organization affected by the action (if applicable) +`org_id` | ID of the organization affected by the action (if applicable) -| キー | 値 | -| --------------:| --------------------------------------- | -| `actor_id` | アクションを開始したユーザアカウントの ID | -| `actor` | アクションを開始したユーザアカウントの名前 | -| `oauth_app_id` | アクションに関連付けられている OAuth アプリケーションの ID | -| `action` | 監査されたアクションの名前 | -| `user_id` | アクションによって影響を受けたユーザの ID | -| `ユーザ` | アクションによって影響を受けたユーザの名前 | -| `repo_id` | アクションによって影響を受けたリポジトリの ID (妥当な場合) | -| `repo` | アクションによって影響を受けたリポジトリの名前 (妥当な場合) | -| `actor_ip` | アクション元の IP アドレス | -| `created_at` | アクションが作成された時間 | -| `from` | アクション元の View | -| `note` | イベント固有の他の情報(プレーンテキストまたは JSON フォーマット) | -| `org` | アクションによって影響を受けたOrganizationの名前(該当する場合) | -| `org_id` | アクションによって影響を受けたOrganizationの ID(該当する場合) | - -たとえば、2017 年の初めからリポジトリ `octocat/Spoon-Knife` に影響を与えたすべてのアクションを確認するには、次のようにします: +For example, to see all actions that have affected the repository `octocat/Spoon-Knife` since the beginning of 2017: `repo:"octocat/Spoon-Knife" AND created_at:[2017-01-01 TO *]` -アクションの完全なリストについては、「[監査済みのアクション](/admin/user-management/audited-actions)」を参照してください。 +For a full list of actions, see "[Audited actions](/admin/user-management/audited-actions)." -## Audit log を検索する +## Searching the audit log {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -4. 検索クエリを入力します。![検索クエリ](/assets/images/enterprise/site-admin-settings/search-query.png) +4. Type a search query. +![Search query](/assets/images/enterprise/site-admin-settings/search-query.png) diff --git a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md index d05e5c712b..5f6e5fb089 100644 --- a/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md +++ b/translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md @@ -1,8 +1,8 @@ --- -title: プッシュログの表示 -intro: サイト管理者は、Enterprise 上の任意のリポジトリに対する Git プッシュ操作の一覧を確認することができます。 +title: Viewing push logs +intro: Site administrators can view a list of Git push operations for any repository on the enterprise. redirect_from: - - /enterprise/admin/articles/viewing-push-logs/ + - /enterprise/admin/articles/viewing-push-logs - /enterprise/admin/installation/viewing-push-logs - /enterprise/admin/user-management/viewing-push-logs - /admin/user-management/viewing-push-logs @@ -16,31 +16,32 @@ topics: - Git - Logging --- +Push log entries show: -プッシュログの項目には次の情報が含まれています。 +- Who initiated the push +- Whether it was a force push or not +- The branch someone pushed to +- The protocol used to push +- The originating IP address +- The Git client used to push +- The SHA hashes from before and after the operation -- プッシュを開始した人 -- フォースプッシュであったかどうか -- プッシュされたブランチ -- プッシュするために使ったプロトコル -- プッシュ元の IP アドレス -- プッシュするために使った Git クライアント -- 操作前と操作後の SHA ハッシュ +## Viewing a repository's push logs -## リポジトリのプッシュログを表示する - -1. サイト管理者として {% data variables.product.prodname_ghe_server %} にサインインします。 -1. リポジトリにアクセスします。 -1. In the upper-right corner of the repository's page, click {% octicon "rocket" aria-label="The rocket ship" %}. ![サイトアドミン設定にアクセスするための宇宙船のアイコン](/assets/images/enterprise/site-admin-settings/access-new-settings.png) +1. Sign into {% data variables.product.prodname_ghe_server %} as a site administrator. +1. Navigate to a repository. +1. In the upper-right corner of the repository's page, click {% octicon "rocket" aria-label="The rocket ship" %}. + ![Rocketship icon for accessing site admin settings](/assets/images/enterprise/site-admin-settings/access-new-settings.png) {% data reusables.enterprise_site_admin_settings.security-tab %} -4. 左のサイドバーで、**Push Log(プッシュログ)** をクリックしてください。 ![プッシュログのタブ](/assets/images/enterprise/site-admin-settings/push-log-tab.png) +4. In the left sidebar, click **Push Log**. +![Push log tab](/assets/images/enterprise/site-admin-settings/push-log-tab.png) {% ifversion ghes %} -## コマンドラインでリポジトリのプッシュログを表示する +## Viewing a repository's push logs on the command-line {% data reusables.enterprise_installation.ssh-into-instance %} -1. 適切な Git リポジトリで Audit log ファイルを開いてください。 +1. In the appropriate Git repository, open the audit log file: ```shell - ghe-repo <em>コードオーナー</em>/<em>リポジトリ</em> -c "less audit_log" + ghe-repo <em>owner</em>/<em>repository</em> -c "less audit_log" ``` {% endif %} diff --git a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md index 2cd4588167..94f9079075 100644 --- a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md @@ -1,13 +1,11 @@ --- title: About authentication with SAML single sign-on -intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif fpt %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion fpt or ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' -product: '{% data reusables.gated-features.saml-sso %}' +intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif ghec %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' redirect_from: - /articles/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -57,5 +55,5 @@ After an enterprise or organization owner enables or enforces SAML SSO for an or ## Further reading -{% ifversion fpt or ghec %}- "[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)"{% endif %} +{% ifversion ghec %}- "[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)"{% endif %} {% ifversion ghae %}- "[About identity and access management for your enterprise](/admin/authentication/about-identity-and-access-management-for-your-enterprise)"{% endif %} diff --git a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md index 0839e5757b..cd89fcbb59 100644 --- a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md @@ -1,31 +1,31 @@ --- -title: SAMLシングルサインオンで利用するために個人アクセストークンを認可する -intro: SAMLシングルサインオン (SSO) を使う Organization で個人アクセストークンを使うためには、まずそのキーを認可しなければなりません。 +title: Authorizing a personal access token for use with SAML single sign-on +intro: 'To use a personal access token with an organization that uses SAML single sign-on (SSO), you must first authorize the token.' redirect_from: - - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO shortTitle: PAT with SAML --- - -既存の個人アクセストークンを認可することも、[新しい個人アクセストークンを作成](/github/authenticating-to-github/creating-a-personal-access-token)して認可することもできます。 +You can authorize an existing personal access token, or [create a new personal access token](/github/authenticating-to-github/creating-a-personal-access-token) and then authorize it. {% data reusables.saml.authorized-creds-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.developer_settings %} {% data reusables.user_settings.personal_access_tokens %} -3. 認可したいトークンの隣の [**Enable SSO**] (SSO を有効化) または [**Disable SSO**] (SSOを無効化) をクリックします。 ![SSO トークン認可ボタン](/assets/images/help/settings/sso-allowlist-button.png) -4. アクセストークンを認可する Organization を見つけます。 -4. [**Authorize**] をクリックします。 ![トークン認可ボタン](/assets/images/help/settings/token-authorize-button.png) +3. Next to the token you'd like to authorize, click **Enable SSO** or **Disable SSO**. + ![SSO token authorize button](/assets/images/help/settings/sso-allowlist-button.png) +4. Find the organization you'd like to authorize the access token for. +4. Click **Authorize**. + ![Token authorize button](/assets/images/help/settings/token-authorize-button.png) -## 参考リンク +## Further reading -- [個人アクセストークンを作成する](/github/authenticating-to-github/creating-a-personal-access-token) -- [SAML シングルサインオンでの認証について](/articles/about-authentication-with-saml-single-sign-on) +- "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)" +- "[About authentication with SAML single sign-on](/articles/about-authentication-with-saml-single-sign-on)" diff --git a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md index b5b1f28ccc..2bd5cef6ba 100644 --- a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md @@ -1,36 +1,36 @@ --- -title: SAMLシングルサインオンで利用するためにSSHキーを認可する -intro: SAML シングルサインオン (SSO) を使う Organization で SSH キーを使うためには、まずそのキーを認可しなければなりません。 +title: Authorizing an SSH key for use with SAML single sign-on +intro: 'To use an SSH key with an organization that uses SAML single sign-on (SSO), you must first authorize the key.' redirect_from: - - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO shortTitle: SSH Key with SAML --- - -既存の SSH キーを認可することも、新しい SSH キーを作成して認可することもできます。 新しい SSH キーの作成に関する詳しい情報については「[新しい SSH キーを生成して ssh-agent へ追加する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)」を参照してください。 +You can authorize an existing SSH key, or create a new SSH key and then authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." {% data reusables.saml.authorized-creds-info %} {% note %} -**メモ:** SSH キーの認可が Organization によって取り消された場合、同じキーを再度認可することはできません。 新しい SSH キーを生成して認可する必要があります。 新しい SSH キーの作成に関する詳しい情報については「[新しい SSH キーを生成して ssh-agent へ追加する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)」を参照してください。 +**Note:** If your SSH key authorization is revoked by an organization, you will not be able to reauthorize the same key. You will need to create a new SSH key and authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." {% endnote %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.ssh %} -3. 認可したい SSH キーの隣の [**Enable SSO**] (SSO を有効化) または [**Disable SSO**] (SSOを無効化) をクリックします。 ![SSO トークン認可ボタン](/assets/images/help/settings/ssh-sso-button.png) -4. SSH キーを認可する Organization を見つけます。 -5. [**Authorize**] をクリックします。 ![トークン認可ボタン](/assets/images/help/settings/ssh-sso-authorize.png) +3. Next to the SSH key you'd like to authorize, click **Enable SSO** or **Disable SSO**. +![SSO token authorize button](/assets/images/help/settings/ssh-sso-button.png) +4. Find the organization you'd like to authorize the SSH key for. +5. Click **Authorize**. +![Token authorize button](/assets/images/help/settings/ssh-sso-authorize.png) -## 参考リンク +## Further reading -- [既存の SSH キーのチェック](/articles/checking-for-existing-ssh-keys) -- [SAML シングルサインオンでの認証について](/articles/about-authentication-with-saml-single-sign-on) +- "[Checking for existing SSH keys](/articles/checking-for-existing-ssh-keys)" +- "[About authentication with SAML single sign-on](/articles/about-authentication-with-saml-single-sign-on)" diff --git a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/index.md b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/index.md index 2eb03de42e..c609a547c9 100644 --- a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/index.md +++ b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/index.md @@ -1,13 +1,11 @@ --- title: Authenticating with SAML single sign-on -intro: 'You can authenticate to {% ifversion fpt %}a {% data variables.product.product_name %} organization {% elsif ghae %}{% data variables.product.product_location %} {% endif %}with SAML single sign-on (SSO){% ifversion fpt %} and view your active sessions{% endif %}.' -product: '{% data reusables.gated-features.saml-sso %}' +intro: 'You can authenticate to {% data variables.product.product_name %} with SAML single sign-on (SSO){% ifversion ghec %} and view your active sessions{% endif %}.' redirect_from: - - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on/ + - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on - /articles/authenticating-with-saml-single-sign-on - - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/ + - /github/authenticating-to-github/authenticating-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: diff --git a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md index ed21e5c17f..466649aa42 100644 --- a/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md +++ b/translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md @@ -1,30 +1,31 @@ --- -title: アクティブな SAML セッションの表示と管理 -intro: セキュリティ設定でアクティブな SAML セッションを表示および削除することができます。 +title: Viewing and managing your active SAML sessions +intro: You can view and revoke your active SAML sessions in your security settings. redirect_from: - /articles/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions versions: - fpt: '*' ghec: '*' topics: - SSO shortTitle: Active SAML sessions --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.security %} -3. [Sessions] で、アクティブな SAML セッションを確認できます。 ![アクティブな SAML セッションのリスト](/assets/images/help/settings/saml-active-sessions.png) -4. セッションの詳細を表示するには、[**See more**] をクリックします。 ![SAML セッションの詳細を開くボタン](/assets/images/help/settings/saml-expand-session-details.png) -5. セッションを取り消すには、[**Revoke SAML**] をクリックします。 ![SAML セッションを削除するボタン](/assets/images/help/settings/saml-revoke-session.png) +3. Under "Sessions," you can see your active SAML sessions. + ![List of active SAML sessions](/assets/images/help/settings/saml-active-sessions.png) +4. To see the session details, click **See more**. + ![Button to open SAML session details](/assets/images/help/settings/saml-expand-session-details.png) +5. To revoke a session, click **Revoke SAML**. + ![Button to revoke a SAML session](/assets/images/help/settings/saml-revoke-session.png) {% note %} - **メモ:** セッションを削除すると、その Organization に対する SAML 認証が削除されます。 Organization に再びアクセスするには、アイデンティティプロバイダを介してシングルサインオンする必要があります。 詳細は「[SAML SSO による認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)」を参照してください。 + **Note:** When you revoke a session, you remove your SAML authentication to that organization. To access the organization again, you will need to single sign-on through your identity provider. For more information, see "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -## 参考リンク +## Further reading -- 「[SAML SSO による認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)」 +- "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" diff --git a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/about-ssh.md b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/about-ssh.md index 01a6ee7be9..a649ffb628 100644 --- a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/about-ssh.md +++ b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/about-ssh.md @@ -1,6 +1,6 @@ --- -title: SSH について -intro: 'SSH プロトコルを利用すれば、リモートのサーバーやサービスに接続し、認証を受けられます。 SSH キーを使用すると、アクセスのたびにユーザ名と個人アクセストークンを入力することなく {% data variables.product.product_name %} に接続できます。' +title: About SSH +intro: 'Using the SSH protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to {% data variables.product.product_name %} without supplying your username and personal access token at each visit.' redirect_from: - /articles/about-ssh - /github/authenticating-to-github/about-ssh @@ -13,23 +13,22 @@ versions: topics: - SSH --- - When you set up SSH, you will need to generate a new SSH key and add it to the ssh-agent. You must add the SSH key to your account on {% data variables.product.product_name %} before you use the key to authenticate. For more information, see "[Generating a new SSH key and adding it to the ssh-agent](/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)" and "[Adding a new SSH key to your {% data variables.product.prodname_dotcom %} account](/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account)." -You can further secure your SSH key by using a hardware security key, which requires the physical hardware security key to be attached to your computer when the key pair is used to authenticate with SSH. You can also secure your SSH key by adding your key to the ssh-agent and using a passphrase. 詳しい情報については[SSH キーのパスフレーズを使う](/github/authenticating-to-github/working-with-ssh-key-passphrases)を参照してください。 +You can further secure your SSH key by using a hardware security key, which requires the physical hardware security key to be attached to your computer when the key pair is used to authenticate with SSH. You can also secure your SSH key by adding your key to the ssh-agent and using a passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -{% ifversion fpt or ghec %}To use your SSH key with a repository owned by an organization that uses SAML single sign-on, you must authorize the key. 詳しい情報については、「[SAML シングルサインオンで使うために SSH キーを認可する](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)」を参照してください。{% endif %} +{% ifversion fpt or ghec %}To use your SSH key with a repository owned by an organization that uses SAML single sign-on, you must authorize the key. For more information, see "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} -To maintain account security, you can regularly review your SSH keys list and revoke any keys that are invalid or have been compromised. 詳細は「[SSH キーをレビューする](/github/authenticating-to-github/reviewing-your-ssh-keys)」を参照してください。 +To maintain account security, you can regularly review your SSH keys list and revoke any keys that are invalid or have been compromised. For more information, see "[Reviewing your SSH keys](/github/authenticating-to-github/reviewing-your-ssh-keys)." {% ifversion fpt or ghec %} -SSH キーを 1 年間使っていない場合、セキュリティ上の理由により {% data variables.product.prodname_dotcom %} は使われていない SSH キーを自動的に削除します。 詳細は「[削除されたか存在しない SSH キー](/articles/deleted-or-missing-ssh-keys)」を参照してください。 +If you haven't used your SSH key for a year, then {% data variables.product.prodname_dotcom %} will automatically delete your inactive SSH key as a security precaution. For more information, see "[Deleted or missing SSH keys](/articles/deleted-or-missing-ssh-keys)." {% endif %} -If you're a member of an organization that provides SSH certificates, you can use your certificate to access that organization's repositories without adding the certificate to your account on {% data variables.product.product_name %}. You cannot use your certificate to access forks of the organization's repositories that are owned by your user account. 詳しい情報については、「[SSH 認証局について](/articles/about-ssh-certificate-authorities)」を参照してください。 +If you're a member of an organization that provides SSH certificates, you can use your certificate to access that organization's repositories without adding the certificate to your account on {% data variables.product.product_name %}. You cannot use your certificate to access forks of the organization's repositories that are owned by your user account. For more information, see "[About SSH certificate authorities](/articles/about-ssh-certificate-authorities)." -## 参考リンク +## Further reading -- [既存の SSH キーのチェック](/articles/checking-for-existing-ssh-keys) -- [SSH コネクションのテスト](/articles/testing-your-ssh-connection) -- [SSH のトラブルシューティング](/articles/troubleshooting-ssh) +- "[Checking for existing SSH keys](/articles/checking-for-existing-ssh-keys)" +- "[Testing your SSH connection](/articles/testing-your-ssh-connection)" +- "[Troubleshooting SSH](/articles/troubleshooting-ssh)" diff --git a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md index 17b3890a45..98e191c19b 100644 --- a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md +++ b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md @@ -2,8 +2,8 @@ title: Generating a new SSH key and adding it to the ssh-agent intro: 'After you''ve checked for existing SSH keys, you can generate a new SSH key to use for authentication, then add it to the ssh-agent.' redirect_from: - - /articles/adding-a-new-ssh-key-to-the-ssh-agent/ - - /articles/generating-a-new-ssh-key/ + - /articles/adding-a-new-ssh-key-to-the-ssh-agent + - /articles/generating-a-new-ssh-key - /articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent @@ -252,6 +252,6 @@ If you are using macOS or Linux, you may need to update your SSH client or insta - "[About SSH](/articles/about-ssh)" - "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)" -{%- ifversion fpt %} -- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)" +{%- ifversion fpt or ghec %} +- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} {%- endif %} diff --git a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/index.md b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/index.md index f5c940bbed..f052a1f3f4 100644 --- a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/index.md +++ b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/index.md @@ -1,16 +1,16 @@ --- -title: GitHub に SSH で接続する +title: Connecting to GitHub with SSH intro: 'You can connect to {% data variables.product.product_name %} using the Secure Shell Protocol (SSH), which provides a secure channel over an unsecured network.' redirect_from: - - /key-setup-redirect/ - - /linux-key-setup/ - - /mac-key-setup/ - - /msysgit-key-setup/ - - /articles/ssh-key-setup/ - - /articles/generating-ssh-keys/ - - /articles/generating-an-ssh-key/ + - /key-setup-redirect + - /linux-key-setup + - /mac-key-setup + - /msysgit-key-setup + - /articles/ssh-key-setup + - /articles/generating-ssh-keys + - /articles/generating-an-ssh-key - /articles/connecting-to-github-with-ssh - - /github/authenticating-to-github/connecting-to-github-with-ssh/ + - /github/authenticating-to-github/connecting-to-github-with-ssh versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md index 886025ab33..f9dfd3f00c 100644 --- a/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md +++ b/translations/ja-JP/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md @@ -1,9 +1,9 @@ --- -title: SSH キーのパスフレーズを使う -intro: SSH キーを使用するたびにパスフレーズを再入力する必要がないように、SSH キーを保護し、認証エージェントを設定できます。 +title: Working with SSH key passphrases +intro: You can secure your SSH keys and configure an authentication agent so that you won't have to reenter your passphrase every time you use your SSH keys. redirect_from: - - /ssh-key-passphrases/ - - /working-with-key-passphrases/ + - /ssh-key-passphrases + - /working-with-key-passphrases - /articles/working-with-ssh-key-passphrases - /github/authenticating-to-github/working-with-ssh-key-passphrases - /github/authenticating-to-github/connecting-to-github-with-ssh/working-with-ssh-key-passphrases @@ -16,12 +16,11 @@ topics: - SSH shortTitle: SSH key passphrases --- +With SSH keys, if someone gains access to your computer, they also gain access to every system that uses that key. To add an extra layer of security, you can add a passphrase to your SSH key. You can use `ssh-agent` to securely save your passphrase so you don't have to reenter it. -SSH キーにより、誰かがあなたのコンピュータにアクセスすると、そのキーを使用するすべてのシステムにもアクセスすることになります。 セキュリティをさらに強化するには、SSH キーにパスフレーズを追加します。 パスフレーズを安全に保存するために `ssh-agent` を使用すると、パスフレーズを再入力する必要がありません。 +## Adding or changing a passphrase -## パスフレーズを追加または変更する - -次のコマンドを入力して、鍵ペアを再生成せずに既存の秘密鍵のパスフレーズを変更できます: +You can change the passphrase for an existing private key without regenerating the keypair by typing the following command: ```shell $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} @@ -32,13 +31,13 @@ $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} > Your identification has been saved with the new passphrase. ``` -鍵にすでにパスフレーズがある場合は、新しいパスフレーズに変更する前にそれを入力するように求められます。 +If your key already has a passphrase, you will be prompted to enter it before you can change to a new passphrase. {% windows %} -## Git for Windows で `ssh-agent` を自動的に起動する +## Auto-launching `ssh-agent` on Git for Windows -bash または Git シェルを開いたときに、`ssh-agent` を自動的に実行できます。 以下の行をコピーして Git シェルの `~/.profile` または `~/.bashrc` ファイルに貼り付けます: +You can run `ssh-agent` automatically when you open bash or Git shell. Copy the following lines and paste them into your `~/.profile` or `~/.bashrc` file in Git shell: ``` bash env=~/.ssh/agent.env @@ -54,27 +53,25 @@ agent_load_env # agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2=agent not running agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?) -"$env" >| /dev/null ; } - -agent_start () { - (umask 077; ssh-agent >| "$env") - . "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then +if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then agent_start ssh-add elif [ "$SSH_AUTH_SOCK" ] && [ $agent_run_state = 1 ]; then ssh-add fi + +unset env ``` -秘密鍵がデフォルトの場所 (`~/.ssh/id_rsa` など) に保存されていない場合は、SSH 認証エージェントにその場所を指定する必要があります。 キーを ssh-agent に追加するには、`ssh-add ~/path/to/my_key` と入力します。 詳細は「[新しい SSH キーを生成して ssh-agent に追加する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)」を参照してください。 +If your private key is not stored in one of the default locations (like `~/.ssh/id_rsa`), you'll need to tell your SSH authentication agent where to find it. To add your key to ssh-agent, type `ssh-add ~/path/to/my_key`. For more information, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)" {% tip %} -**ヒント:** しばらくしてから、`ssh-agent` からキーを消去する場合、`ssh-add -t<seconds>` を実行して、キーを設定することができます。 +**Tip:** If you want `ssh-agent` to forget your key after some time, you can configure it to do so by running `ssh-add -t <seconds>`. {% endtip %} -最初に Git Bash を実行するとき、パスフレーズを求められます: +Now, when you first run Git Bash, you are prompted for your passphrase: ```shell > Initializing new SSH agent... @@ -84,28 +81,28 @@ fi > Welcome to Git (version <em>1.6.0.2-preview20080923</em>) > > Run 'git help git' to display the help index. -> 「git help <command>」を実行して、特定のコマンドのヘルプを表示します。 +> Run 'git help <command>' to display help for specific commands. ``` -`ssh-agent` プロセスは、ログアウトするか、コンピュータをシャットダウンするか、プロセスを強制終了するまで実行され続けます。 +The `ssh-agent` process will continue to run until you log out, shut down your computer, or kill the process. {% endwindows %} {% mac %} -## パスフレーズをキーチェーンに保存する +## Saving your passphrase in the keychain -OS X El Capitan を介する Mac OS X Leopard では、これらのデフォルトの秘密鍵ファイルは自動的に処理されます。 +On Mac OS X Leopard through OS X El Capitan, these default private key files are handled automatically: - *.ssh/id_rsa* - *.ssh/identity* -初めてキーを使用するときは、パスフレーズを入力するよう求められます。 キーチェーンと一緒にパスフレーズを保存することを選択した場合は、もう一度入力する必要はありません。 +The first time you use your key, you will be prompted to enter your passphrase. If you choose to save the passphrase with your keychain, you won't have to enter it again. -それ以外の場合は、鍵を ssh-agent に追加するときに、パスフレーズをキーチェーンに格納できます。 詳細は「[SSH キーを ssh-agent に追加する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)」を参照してください。 +Otherwise, you can store your passphrase in the keychain when you add your key to the ssh-agent. For more information, see "[Adding your SSH key to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)." {% endmac %} -## 参考リンク +## Further reading -- 「[SSHについて](/articles/about-ssh)」 +- "[About SSH](/articles/about-ssh)" diff --git a/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md b/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md index 1d89343fd8..91249e7e4e 100644 --- a/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md +++ b/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md @@ -76,7 +76,7 @@ If you authenticate without {% data variables.product.prodname_cli %}, you will ### Authorizing for SAML single sign-on -{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghes > 3.1 or ghae or ghec %} diff --git a/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md b/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md index ccb0b169ea..da65603203 100644 --- a/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md +++ b/translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md @@ -27,7 +27,7 @@ shortTitle: Create a PAT Personal access tokens (PATs) are an alternative to using passwords for authentication to {% data variables.product.product_name %} when using the [GitHub API](/rest/overview/other-authentication-methods#via-oauth-and-personal-access-tokens) or the [command line](#using-a-token-on-the-command-line). -{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} @@ -65,7 +65,7 @@ A token with no assigned scopes can only access public information. To use your {% endwarning %} -{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML SSO, [authorize the token for use with a SAML single-sign-on organization](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on).{% endif %} +{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML single sign-on, authorize the token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} ## Using a token on the command line diff --git a/translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md b/translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md index 0a0564460c..e369530726 100644 --- a/translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md +++ b/translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md @@ -2,8 +2,8 @@ title: About commit signature verification intro: 'Using GPG or S/MIME, you can sign tags and commits locally. These tags or commits are marked as verified on {% data variables.product.product_name %} so other people can be confident that the changes come from a trusted source.' redirect_from: - - /articles/about-gpg-commit-and-tag-signatures/ - - /articles/about-gpg/ + - /articles/about-gpg-commit-and-tag-signatures + - /articles/about-gpg - /articles/about-commit-signature-verification - /github/authenticating-to-github/about-commit-signature-verification - /github/authenticating-to-github/managing-commit-signature-verification/about-commit-signature-verification diff --git a/translations/ja-JP/content/authentication/managing-commit-signature-verification/index.md b/translations/ja-JP/content/authentication/managing-commit-signature-verification/index.md index 9e4151ff7b..8a3ba49810 100644 --- a/translations/ja-JP/content/authentication/managing-commit-signature-verification/index.md +++ b/translations/ja-JP/content/authentication/managing-commit-signature-verification/index.md @@ -1,11 +1,11 @@ --- -title: コミット署名の検証を管理する -intro: 'GPG または S/MIME を使用してローカルで作業に署名できます。 信頼できるソースによるコミットであることを他のユーザに知らせるために、{% data variables.product.product_name %} はこの署名を検証します。{% ifversion fpt %} {% data variables.product.product_name %} は、{% data variables.product.product_name %} Web インターフェイスを使用して自動的にコミットに署名します。{% endif %}' +title: Managing commit signature verification +intro: 'You can sign your work locally using GPG or S/MIME. {% data variables.product.product_name %} will verify these signatures so other people will know that your commits come from a trusted source.{% ifversion fpt %} {% data variables.product.product_name %} will automatically sign commits you make using the {% data variables.product.product_name %} web interface.{% endif %}' redirect_from: - - /articles/generating-a-gpg-key/ - - /articles/signing-commits-with-gpg/ + - /articles/generating-a-gpg-key + - /articles/signing-commits-with-gpg - /articles/managing-commit-signature-verification - - /github/authenticating-to-github/managing-commit-signature-verification/ + - /github/authenticating-to-github/managing-commit-signature-verification versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-commits.md b/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-commits.md index ad03fae2b2..a158f5199a 100644 --- a/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-commits.md +++ b/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-commits.md @@ -2,8 +2,8 @@ title: Signing commits intro: You can sign commits locally using GPG or S/MIME. redirect_from: - - /articles/signing-commits-and-tags-using-gpg/ - - /articles/signing-commits-using-gpg/ + - /articles/signing-commits-and-tags-using-gpg + - /articles/signing-commits-using-gpg - /articles/signing-commits - /github/authenticating-to-github/signing-commits - /github/authenticating-to-github/managing-commit-signature-verification/signing-commits diff --git a/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-tags.md b/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-tags.md index 8b5d279100..7d9a38a398 100644 --- a/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-tags.md +++ b/translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-tags.md @@ -1,8 +1,8 @@ --- -title: タグに署名する -intro: GPG または S/MIME を使用してローカルでタグに署名できます。 +title: Signing tags +intro: You can sign tags locally using GPG or S/MIME. redirect_from: - - /articles/signing-tags-using-gpg/ + - /articles/signing-tags-using-gpg - /articles/signing-tags - /github/authenticating-to-github/signing-tags - /github/authenticating-to-github/managing-commit-signature-verification/signing-tags @@ -15,26 +15,25 @@ topics: - Identity - Access management --- - {% data reusables.gpg.desktop-support-for-commit-signing %} -1. タグに署名するには、`git tag` コマンドに `-s` を追加します。 +1. To sign a tag, add `-s` to your `git tag` command. ```shell $ git tag -s <em>mytag</em> - # 署名済みのタグを作成する + # Creates a signed tag ``` -2. `git tag -v [tag-name]`を実行して、署名したタグをベリファイします。 +2. Verify your signed tag it by running `git tag -v [tag-name]`. ```shell $ git tag -v <em>mytag</em> - # 署名済みのタグを検証する + # Verifies the signed tag ``` -## 参考リンク +## Further reading -- [リポジトリのタグを表示する](/articles/viewing-your-repositorys-tags) -- [既存の GPG キーのチェック](/articles/checking-for-existing-gpg-keys) -- [新しい GPG キーの生成](/articles/generating-a-new-gpg-key) -- [GitHub アカウントへの新しい GPG キーの追加](/articles/adding-a-new-gpg-key-to-your-github-account) -- 「[Git へ署名キーを伝える](/articles/telling-git-about-your-signing-key)」 -- [GPG キーとメールの関連付け](/articles/associating-an-email-with-your-gpg-key) -- 「[コミットに署名する](/articles/signing-commits)」 +- "[Viewing your repository's tags](/articles/viewing-your-repositorys-tags)" +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Telling Git about your signing key](/articles/telling-git-about-your-signing-key)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" diff --git a/translations/ja-JP/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md b/translations/ja-JP/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md index ff25ca8a72..25275ba5df 100644 --- a/translations/ja-JP/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md +++ b/translations/ja-JP/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md @@ -1,8 +1,8 @@ --- -title: Git へ署名キーを伝える -intro: ローカルでコミットに署名するには、使用する GPG または X.509 キーがあることを Git に知らせる必要があります。 +title: Telling Git about your signing key +intro: 'To sign commits locally, you need to inform Git that there''s a GPG or X.509 key you''d like to use.' redirect_from: - - /articles/telling-git-about-your-gpg-key/ + - /articles/telling-git-about-your-gpg-key - /articles/telling-git-about-your-signing-key - /github/authenticating-to-github/telling-git-about-your-signing-key - /github/authenticating-to-github/managing-commit-signature-verification/telling-git-about-your-signing-key @@ -16,31 +16,30 @@ topics: - Access management shortTitle: Tell Git your signing key --- - {% mac %} -## Git へ GPG キーを伝える +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -コミッターアイデンティティにマッチする GPG キーを持っていない場合、既存のキーとメールアドレスを関連付ける必要があります。 詳細は「[メールを GPG キーに関連付ける](/articles/associating-an-email-with-your-gpg-key)」を参照してください。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -複数の GPG キーを持っている場合、どれを使うかを Git に伝える必要があります。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. GPG スイートを使用していない場合は、`zsh` シェルで次のコマンドを実行して、GPG キーがある場合に `.zshrc` ファイル、または `.zprofile` ファイルに追加します。 +1. If you aren't using the GPG suite, run the following command in the `zsh` shell to add the GPG key to your `.zshrc` file, if it exists, or your `.zprofile` file: ```shell $ if [ -r ~/.zshrc ]; then echo 'export GPG_TTY=$(tty)' >> ~/.zshrc; \ else echo 'export GPG_TTY=$(tty)' >> ~/.zprofile; fi ``` - または、`bash` シェルを使用する場合は、次のコマンドを実行します。 + Alternatively, if you use the `bash` shell, run this command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi @@ -52,17 +51,17 @@ If you're using a GPG key that matches your committer identity and your verified {% windows %} -## Git へ GPG キーを伝える +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -コミッターアイデンティティにマッチする GPG キーを持っていない場合、既存のキーとメールアドレスを関連付ける必要があります。 詳細は「[メールを GPG キーに関連付ける](/articles/associating-an-email-with-your-gpg-key)」を参照してください。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -複数の GPG キーを持っている場合、どれを使うかを Git に伝える必要があります。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} @@ -75,41 +74,41 @@ If you're using a GPG key that matches your committer identity and your verified {% linux %} -## Git へ GPG キーを伝える +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -コミッターアイデンティティにマッチする GPG キーを持っていない場合、既存のキーとメールアドレスを関連付ける必要があります。 詳細は「[メールを GPG キーに関連付ける](/articles/associating-an-email-with-your-gpg-key)」を参照してください。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -複数の GPG キーを持っている場合、どれを使うかを Git に伝える必要があります。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. GPG キーを bash プロファイルに追加するには、次のコマンドを実行します。 +1. To add your GPG key to your bash profile, run the following command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi ``` {% note %} - **メモ:** `.bash_profile` を持っていない場合、このコマンドで `.profile` に GPG キーを追加します。 + **Note:** If you don't have `.bash_profile`, this command adds your GPG key to `.profile`. {% endnote %} {% endlinux %} -## 参考リンク +## Further reading -- [既存の GPG キーのチェック](/articles/checking-for-existing-gpg-keys) -- [新しい GPG キーの生成](/articles/generating-a-new-gpg-key) -- [GPG キーで検証済みのメールアドレスを使う](/articles/using-a-verified-email-address-in-your-gpg-key) -- [GitHub アカウントへの新しい GPG キーの追加](/articles/adding-a-new-gpg-key-to-your-github-account) -- [GPG キーとメールの関連付け](/articles/associating-an-email-with-your-gpg-key) -- 「[コミットに署名する](/articles/signing-commits)」 -- 「[タグに署名する](/articles/signing-tags)」 +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Using a verified email address in your GPG key](/articles/using-a-verified-email-address-in-your-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md b/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md index e8e048bd5f..38e0b87865 100644 --- a/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md +++ b/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md @@ -1,8 +1,8 @@ --- -title: コミットおよびタグの署名の検証ステータスを確認する -intro: '{% data variables.product.product_name %}のコミットやタグの署名について、検証ステータスを確認できます。' +title: Checking your commit and tag signature verification status +intro: 'You can check the verification status of your commit and tag signatures on {% data variables.product.product_name %}.' redirect_from: - - /articles/checking-your-gpg-commit-and-tag-signature-verification-status/ + - /articles/checking-your-gpg-commit-and-tag-signature-verification-status - /articles/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status @@ -16,24 +16,28 @@ topics: - Access management shortTitle: Check verification status --- +## Checking your commit signature verification status -## コミットの署名検証のステータスの確認 - -1. {% data variables.product.product_name %}上で、プルリクエストに移動します。 +1. On {% data variables.product.product_name %}, navigate to your pull request. {% data reusables.repositories.review-pr-commits %} -3. コミットの省略されたコミットハッシュの横に、コミット署名が検証済みか{% ifversion fpt or ghec %}、部分的に検証済みか、{% endif %}未検証かを示すボックスがあります。 ![署名されたコミット](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) -4. コミットシグニチャの詳細情報を表示するには、[**検証済み**]{% ifversion fpt or ghec %}、[**部分的に検証済み**]、{% endif %}または [**未検証**] をクリックします。 ![検証された署名済みコミット](/assets/images/help/commits/gpg-signed-commit_verified_details.png) +3. Next to your commit's abbreviated commit hash, there is a box that shows whether your commit signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![Signed commit](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) +4. To view more detailed information about the commit signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed commit](/assets/images/help/commits/gpg-signed-commit_verified_details.png) -## タグの署名検証のステータスの確認 +## Checking your tag signature verification status {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. [Releases] ページの上部にある [**Tags**] をクリックします。 ![[Tags] ページ](/assets/images/help/releases/tags-list.png) -3. タグの説明の横に、タグの署名が検証済みか{% ifversion fpt or ghec %}、部分的に検証済みか{% endif %}、未検証かを示すボックスがあります。 ![検証されたタグ署名](/assets/images/help/commits/gpg-signed-tag-verified.png) -4. タグシグニチャの詳細情報を表示するには、[**検証済み**]{% ifversion fpt or ghec %}、[**部分的に検証済み**]、{% endif %}または [**未検証**] をクリックします。 ![検証された署名済みタグ](/assets/images/help/commits/gpg-signed-tag-verified-details.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) +3. Next to your tag description, there is a box that shows whether your tag signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![verified tag signature](/assets/images/help/commits/gpg-signed-tag-verified.png) +4. To view more detailed information about the tag signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed tag](/assets/images/help/commits/gpg-signed-tag-verified-details.png) -## 参考リンク +## Further reading -- [コミット署名の検証について](/articles/about-commit-signature-verification) -- 「[コミットに署名する](/articles/signing-commits)」 -- 「[タグに署名する](/articles/signing-tags)」 +- "[About commit signature verification](/articles/about-commit-signature-verification)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/index.md b/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/index.md index 980c14465c..46abaa90df 100644 --- a/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/index.md +++ b/translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/index.md @@ -1,10 +1,10 @@ --- -title: コミット署名検証のトラブルシューティング -intro: '検証のためのローカルでの {% data variables.product.product_name %} 上のコミット署名時に発生する、予期しなかった問題のトラブルシューティングが必要になることがあります。' +title: Troubleshooting commit signature verification +intro: 'You may need to troubleshoot unexpected issues that arise when signing commits locally for verification on {% data variables.product.product_name %}.' redirect_from: - - /articles/troubleshooting-gpg/ + - /articles/troubleshooting-gpg - /articles/troubleshooting-commit-signature-verification - - /github/authenticating-to-github/troubleshooting-commit-signature-verification/ + - /github/authenticating-to-github/troubleshooting-commit-signature-verification versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md b/translations/ja-JP/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md index 855ff60efe..1f852e1bcf 100644 --- a/translations/ja-JP/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md +++ b/translations/ja-JP/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md @@ -1,8 +1,8 @@ --- title: 'Error: Agent admitted failure to sign' -intro: 'ごくまれに、Linux で SSH 経由で {% data variables.product.product_name %} に接続すると、「Agent admitted failure to sign using the key」というエラーが発生する場合があります。 この問題を解決するには以下の手順に従ってください。' +intro: 'In rare circumstances, connecting to {% data variables.product.product_name %} via SSH on Linux produces the error `"Agent admitted failure to sign using the key"`. Follow these steps to resolve the problem.' redirect_from: - - /articles/error-agent-admitted-failure-to-sign-using-the-key/ + - /articles/error-agent-admitted-failure-to-sign-using-the-key - /articles/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/troubleshooting-ssh/error-agent-admitted-failure-to-sign @@ -15,8 +15,7 @@ topics: - SSH shortTitle: Agent failure to sign --- - -Linux コンピュータで {% data variables.product.product_location %}に SSH 接続しようとすると、ターミナルに以下のメッセージが表示されることがあります: +When trying to SSH into {% data variables.product.product_location %} on a Linux computer, you may see the following message in your terminal: ```shell $ ssh -vT git@{% data variables.command_line.codeblock %} @@ -26,14 +25,14 @@ $ ssh -vT git@{% data variables.command_line.codeblock %} > Permission denied (publickey). ``` -詳細については、<a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>こちらの問題レポート</a>をご覧ください。 +For more details, see <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>this issue report</a>. -## 解決策 +## Resolution -`ssh-add` を使用してキーを SSH エージェントに読み込ませることでこのエラーを解決できます。 +You should be able to fix this error by loading your keys into your SSH agent with `ssh-add`: ```shell -# バックグラウンドで ssh-agent を開始 +# start the ssh-agent in the background $ eval "$(ssh-agent -s)" > Agent pid 59566 $ ssh-add @@ -41,10 +40,10 @@ $ ssh-add > Identity added: /home/<em>you</em>/.ssh/id_rsa (/home/<em>you</em>/.ssh/id_rsa) ``` -キーのファイル名がデフォルト (`/.ssh/id_rsa`) ではない場合、そのパスを `ssh-add` に渡す必要があります。 +If your key does not have the default filename (`/.ssh/id_rsa`), you'll have to pass that path to `ssh-add`: ```shell -# バックグラウンドで ssh-agent を開始 +# start the ssh-agent in the background $ eval "$(ssh-agent -s)" > Agent pid 59566 $ ssh-add ~/.ssh/my_other_key diff --git a/translations/ja-JP/content/authentication/troubleshooting-ssh/index.md b/translations/ja-JP/content/authentication/troubleshooting-ssh/index.md index 9c03d23540..b7b79529d9 100644 --- a/translations/ja-JP/content/authentication/troubleshooting-ssh/index.md +++ b/translations/ja-JP/content/authentication/troubleshooting-ssh/index.md @@ -1,9 +1,9 @@ --- -title: SSH のトラブルシューティング -intro: '{% data variables.product.product_name %} に接続して認証するために SSH を使っている場合、予期しない問題が起きてトラブルシューティングしなければならないことがあります。' +title: Troubleshooting SSH +intro: 'When using SSH to connect and authenticate to {% data variables.product.product_name %}, you may need to troubleshoot unexpected issues that may arise.' redirect_from: - /articles/troubleshooting-ssh - - /github/authenticating-to-github/troubleshooting-ssh/ + - /github/authenticating-to-github/troubleshooting-ssh versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md b/translations/ja-JP/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md index 474d3cebc6..e8e60da730 100644 --- a/translations/ja-JP/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md +++ b/translations/ja-JP/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md @@ -1,9 +1,9 @@ --- -title: SSH キーのパスフレーズのリカバリ -intro: SSH キーのパスフレーズをなくした場合、ご使用のオペレーティングシステムによって、リカバリができることもあれば、SSH キーのパスフレーズを新たに生成することが必要なこともあります。 +title: Recovering your SSH key passphrase +intro: 'If you''ve lost your SSH key passphrase, depending on the operating system you use, you may either recover it or you may need to generate a new SSH key passphrase.' redirect_from: - - /articles/how-do-i-recover-my-passphrase/ - - /articles/how-do-i-recover-my-ssh-key-passphrase/ + - /articles/how-do-i-recover-my-passphrase + - /articles/how-do-i-recover-my-ssh-key-passphrase - /articles/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/troubleshooting-ssh/recovering-your-ssh-key-passphrase @@ -16,28 +16,29 @@ topics: - SSH shortTitle: Recover SSH key passphrase --- - {% mac %} -[macOS キーチェーンを使用して SSH パスフレーズを設定](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain)した場合、リカバリできる可能性があります。 +If you [configured your SSH passphrase with the macOS keychain](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain), you may be able to recover it. -1. [Finder] で、**Keychain Access** アプリケーションを検索します。 ![スポットライト検索バー](/assets/images/help/setup/keychain-access.png) -2. [Keychain Access] で、**SSH** を検索します。 -3. SSH キーのエントリをダブルクリックして、新しいダイアログボックスを開きます。 -4. 左下隅で、[**Show password**] を選択します。 ![キーチェーンアクセスダイアログ](/assets/images/help/setup/keychain_show_password_dialog.png) -5. 管理者パスワードを入力するようプロンプトが表示されます。 [Keychain Access] ダイアログボックスに入力します。 -6. パスワードのマスクが解除されます。 +1. In Finder, search for the **Keychain Access** app. + ![Spotlight Search bar](/assets/images/help/setup/keychain-access.png) +2. In Keychain Access, search for **SSH**. +3. Double click on the entry for your SSH key to open a new dialog box. +4. In the lower-left corner, select **Show password**. + ![Keychain access dialog](/assets/images/help/setup/keychain_show_password_dialog.png) +5. You'll be prompted for your administrative password. Type it into the "Keychain Access" dialog box. +6. Your password will be revealed. {% endmac %} {% windows %} -SSH キーパスフレーズをなくした場合、リカバリの方法はありません。 [まったく新しく SSH キーペアを生成する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)か [HTTPS クローニングに切り替える](/github/getting-started-with-github/managing-remote-repositories)かして、GitHub パスワードを代替で使用できるようにする必要があります。 +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/managing-remote-repositories) so you can use your GitHub password instead. {% endwindows %} {% linux %} -SSH キーパスフレーズをなくした場合、リカバリの方法はありません。 [まったく新しく SSH キーペアを生成する](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)か [HTTPS クローニングに切り替える](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls)かして、GitHub パスワードを代替で使用できるようにする必要があります。 +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls) so you can use your GitHub password instead. {% endlinux %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md index 1f2aa8b5a1..3fd9e67aef 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md +++ b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: Git Large File Storage のダウングレード -intro: '{% data variables.large_files.product_name_short %} のストレージと帯域幅を 1 月あたり 50GB 刻みでダウングレードできます。' +title: Downgrading Git Large File Storage +intro: 'You can downgrade storage and bandwidth for {% data variables.large_files.product_name_short %} by increments of 50 GB per month.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-git-large-file-storage - - /articles/downgrading-storage-and-bandwidth-for-a-personal-account/ - - /articles/downgrading-storage-and-bandwidth-for-an-organization/ + - /articles/downgrading-storage-and-bandwidth-for-a-personal-account + - /articles/downgrading-storage-and-bandwidth-for-an-organization - /articles/downgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage versions: @@ -16,19 +16,18 @@ topics: - LFS - Organizations - User account -shortTitle: Git LFSストレージのダウングレード +shortTitle: Downgrade Git LFS storage --- +When you downgrade your number of data packs, your change takes effect on your next billing date. For more information, see "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)." -データパック数をダウングレードすると、その変更は次回の支払日から有効になります。 詳細は「[{% data variables.large_files.product_name_long %} の支払いについて](/articles/about-billing-for-git-large-file-storage)」を参照してください。 - -## 個人アカウントのストレージと帯域幅をダウングレード +## Downgrading storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-remove-data %} {% data reusables.large_files.downgrade_data_packs %} -## Organization のストレージと帯域幅をダウングレード +## Downgrading storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/index.md b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/index.md index f611526e6f..1705e89890 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/index.md +++ b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/index.md @@ -1,12 +1,12 @@ --- -title: Git Large File Storage の支払いを管理する +title: Managing billing for Git Large File Storage shortTitle: Git Large File Storage -intro: '{% data variables.large_files.product_name_long %} の使用状況を確認したり、アップグレードまたはダウンロードしたりすることができます。' +intro: 'You can view usage for, upgrade, and downgrade {% data variables.large_files.product_name_long %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage - - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account/ - - /articles/managing-large-file-storage-and-bandwidth-for-your-organization/ - - /articles/managing-storage-and-bandwidth-usage/ + - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account + - /articles/managing-large-file-storage-and-bandwidth-for-your-organization + - /articles/managing-storage-and-bandwidth-usage - /articles/managing-billing-for-git-large-file-storage versions: fpt: '*' diff --git a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md index 8198830348..524d077114 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md +++ b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: Git Large File Storage をアップグレードする -intro: '追加のデータパックを購入すると、{% data variables.large_files.product_name_short %} の毎月の帯域幅容量と総ストレージ容量を増やすことができます。' +title: Upgrading Git Large File Storage +intro: 'You can purchase additional data packs to increase your monthly bandwidth quota and total storage capacity for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-git-large-file-storage - - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account/ - - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization/ + - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account + - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization - /articles/upgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage versions: @@ -16,10 +16,9 @@ topics: - Organizations - Upgrades - User account -shortTitle: Git LFSストレージのアップグレード +shortTitle: Upgrade Git LFS storage --- - -## 個人アカウント用に追加のストレージと帯域幅を購入する +## Purchasing additional storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -27,7 +26,7 @@ shortTitle: Git LFSストレージのアップグレード {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## Organization 用に追加のストレージと帯域幅を購入する +## Purchasing additional storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} @@ -36,9 +35,9 @@ shortTitle: Git LFSストレージのアップグレード {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## 参考リンク +## Further reading -- [{% data variables.large_files.product_name_long %} の支払いについて](/articles/about-billing-for-git-large-file-storage) -- 「[ストレージと帯域の利用について](/articles/about-storage-and-bandwidth-usage)」 -- 「[ {% data variables.large_files.product_name_long %}の利用状況を表示する](/articles/viewing-your-git-large-file-storage-usage)」 -- 「[大きなファイルのバージョン付け](/articles/versioning-large-files)」 +- "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)" +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Viewing your {% data variables.large_files.product_name_long %} usage](/articles/viewing-your-git-large-file-storage-usage)" +- "[Versioning large files](/articles/versioning-large-files)" diff --git a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md index bfc06a4a55..3cdfaa78d0 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md +++ b/translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md @@ -1,10 +1,10 @@ --- -title: Git Large File Storage の使用状況を表示する -intro: 'アカウントの毎月の帯域幅容量と {% data variables.large_files.product_name_short %} の残りの容量を監査できます。' +title: Viewing your Git Large File Storage usage +intro: 'You can audit your account''s monthly bandwidth quota and remaining storage for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-git-large-file-storage-usage - - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account/ - - /articles/viewing-storage-and-bandwidth-usage-for-an-organization/ + - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account + - /articles/viewing-storage-and-bandwidth-usage-for-an-organization - /articles/viewing-your-git-large-file-storage-usage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage versions: @@ -15,25 +15,24 @@ topics: - LFS - Organizations - User account -shortTitle: Git LFSの使用状況の表示 +shortTitle: View Git LFS usage --- - {% data reusables.large_files.owner_quota_only %} {% data reusables.large_files.does_not_carry %} -## 個人アカウントのストレージと帯域幅の使用状況を表示する +## Viewing storage and bandwidth usage for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-data %} -## Organization のストレージと帯域幅の使用状況を表示する +## Viewing storage and bandwidth usage for an organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.lfs-data %} -## 参考リンク +## Further reading -- 「[ストレージと帯域の利用について](/articles/about-storage-and-bandwidth-usage)」 -- 「[{% data variables.large_files.product_name_long %} をアップグレードする](/articles/upgrading-git-large-file-storage/)」 +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Upgrading {% data variables.large_files.product_name_long %}](/articles/upgrading-git-large-file-storage/)" diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md index f7be1e6215..6d6d6bba9d 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: GitHub Marketplace アプリケーションのキャンセル -intro: '{% data variables.product.prodname_marketplace %}のアプリケーションは、いつでもアカウントからキャンセルおよび削除できます。' +title: Canceling a GitHub Marketplace app +intro: 'You can cancel and remove a {% data variables.product.prodname_marketplace %} app from your account at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/canceling-a-github-marketplace-app - - /articles/canceling-an-app-for-your-personal-account/ - - /articles/canceling-an-app-for-your-organization/ + - /articles/canceling-an-app-for-your-personal-account + - /articles/canceling-an-app-for-your-organization - /articles/canceling-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app versions: @@ -17,30 +17,29 @@ topics: - Organizations - Trials - User account -shortTitle: Marketplaceアプリケーションのキャンセル +shortTitle: Cancel a Marketplace app --- +When you cancel an app, your subscription remains active until the end of your current billing cycle. The cancellation takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -アプリケーションをキャンセルすると、そのプランは現在の支払いサイクルが終わるまで有効のままとなり、 次の支払いサイクルで無効となります。 詳しい情報については、[{% data variables.product.prodname_marketplace %}の支払いについて](/articles/about-billing-for-github-marketplace)を参照してください。 - -有料プランの無料トライアルをキャンセルすると、そのプランはすぐにキャンセルされ、キャンセルしたアプリケーションにアクセスできなくなります。 無料トライアル期間中にキャンセルしない場合、アカウントで設定された支払い方法で、トライアル期間の終了時にプランに対して課金されます。 詳しい情報については、[{% data variables.product.prodname_marketplace %}の支払いについて](/articles/about-billing-for-github-marketplace)を参照してください。 +When you cancel a free trial on a paid plan, your subscription is immediately canceled and you will lose access to the app. If you don't cancel your free trial within the trial period, the payment method on file for your account will be charged for the plan you chose at the end of the trial period. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## 個人アカウントのアプリケーションをキャンセルする +## Canceling an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## 個人アカウントのアプリケーション無料トライアルをキャンセルする +## Canceling a free trial for an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-free-trial-billing-settings %} {% data reusables.marketplace.cancel-app %} -## Organization の無料トライアルをキャンセルする +## Canceling an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -51,7 +50,7 @@ shortTitle: Marketplaceアプリケーションのキャンセル {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## Organization のアプリケーション無料トライアルをキャンセルする +## Canceling a free trial for an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md index 48a008006b..8a8f94379f 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: GitHub Marketplace アプリケーションの支払いプランをダウングレード -intro: '別の支払いプランを使用したい場合は、{% data variables.product.prodname_marketplace %} アプリケーションをいつでもダウングレードできます。' +title: Downgrading the billing plan for a GitHub Marketplace app +intro: 'If you''d like to use a different billing plan, you can downgrade your {% data variables.product.prodname_marketplace %} app at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/downgrading-an-app-for-your-personal-account/ - - /articles/downgrading-an-app-for-your-organization/ + - /articles/downgrading-an-app-for-your-personal-account + - /articles/downgrading-an-app-for-your-organization - /articles/downgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,14 +16,13 @@ topics: - Marketplace - Organizations - User account -shortTitle: 支払いプランのダウングレード +shortTitle: Downgrade billing plan --- - -アプリケーションをダウングレードしても、現在の支払いサイクルが終了するまでプランは有効のままです。 ダウングレードは次回の支払い日に有効となります。 詳しい情報については、[{% data variables.product.prodname_marketplace %}の支払いについて](/articles/about-billing-for-github-marketplace)を参照してください。 +When you downgrade an app, your subscription remains active until the end of your current billing cycle. The downgrade takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## 個人アカウントのアプリケーションをダウングレードする +## Downgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -32,7 +31,7 @@ shortTitle: 支払いプランのダウングレード {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## Organization のアプリケーションをダウングレードする +## Downgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -44,6 +43,6 @@ shortTitle: 支払いプランのダウングレード {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## 参考リンク +## Further reading -- "[{% data variables.product.prodname_marketplace %}アプリケーションをキャンセルする](/articles/canceling-a-github-marketplace-app/)" +- "[Canceling a {% data variables.product.prodname_marketplace %} app](/articles/canceling-a-github-marketplace-app/)" diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/index.md b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/index.md index 7b8ea273dc..3b0caf19f6 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/index.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/index.md @@ -1,11 +1,11 @@ --- -title: GitHub Marketplace アプリの支払いを管理する -shortTitle: GitHub Marketplaceアプリケーション -intro: '{% data variables.product.prodname_marketplace %} アプリのアップグレード、ダウングレード、キャンセルはいつでもできます。' +title: Managing billing for GitHub Marketplace apps +shortTitle: GitHub Marketplace apps +intro: 'You can upgrade, downgrade, or cancel {% data variables.product.prodname_marketplace %} apps at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps - - /articles/managing-your-personal-account-s-apps/ - - /articles/managing-your-organization-s-apps/ + - /articles/managing-your-personal-account-s-apps + - /articles/managing-your-organization-s-apps - /articles/managing-billing-for-github-marketplace-apps versions: fpt: '*' diff --git a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md index baef8bbe30..d381202232 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: GitHub Marketplace アプリケーションの支払いプランをアップグレードする -intro: '{% data variables.product.prodname_marketplace %} アプリケーションを別のプランにいつでもアップグレードすることができます。' +title: Upgrading the billing plan for a GitHub Marketplace app +intro: 'You can upgrade your {% data variables.product.prodname_marketplace %} app to a different plan at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/upgrading-an-app-for-your-personal-account/ - - /articles/upgrading-an-app-for-your-organization/ + - /articles/upgrading-an-app-for-your-personal-account + - /articles/upgrading-an-app-for-your-organization - /articles/upgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,12 +16,11 @@ topics: - Organizations - Upgrades - User account -shortTitle: 支払いプランのアップグレード +shortTitle: Upgrade billing plan --- +When you upgrade an app, your payment method is charged a prorated amount based on the time remaining until your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -アプリケーションをアップグレードすると、支払い方法により、次の請求日までの残り時間に基づいて比例配分額を請求されます。 詳しい情報については、[{% data variables.product.prodname_marketplace %}の支払いについて](/articles/about-billing-for-github-marketplace)を参照してください。 - -## 個人アカウントのアプリケーションをアップグレードする +## Upgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,7 +29,7 @@ shortTitle: 支払いプランのアップグレード {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## Organization のアプリケーションをアップグレードする +## Upgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md index e06218f0e9..30be96c9c4 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md @@ -1,14 +1,14 @@ --- -title: GitHub アカウントの支払いについて -intro: '{% data variables.product.company_short %} は、すべての開発者あるいは Team に対して無償版と有償版の製品が用意されています。' +title: About billing for GitHub accounts +intro: '{% data variables.product.company_short %} offers free and paid products for every developer or team.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-accounts - - /articles/what-is-the-total-cost-of-using-an-organization-account/ - - /articles/what-are-the-costs-of-using-an-organization-account/ - - /articles/what-plan-should-i-choose/ - - /articles/do-you-have-custom-plans/ - - /articles/user-account-billing-plans/ - - /articles/organization-billing-plans/ + - /articles/what-is-the-total-cost-of-using-an-organization-account + - /articles/what-are-the-costs-of-using-an-organization-account + - /articles/what-plan-should-i-choose + - /articles/do-you-have-custom-plans + - /articles/user-account-billing-plans + - /articles/organization-billing-plans - /articles/github-s-billing-plans - /articles/about-billing-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/about-billing-for-github-accounts @@ -21,20 +21,22 @@ topics: - Discounts - Fundamentals - Upgrades -shortTitle: 支払いについて +shortTitle: About billing --- -アカウントで利用できる製品に関する詳しい情報については「[{% data variables.product.prodname_dotcom %}の製品](/articles/github-s-products)」を参照してください。 各製品の料金と機能の全リストは <{% data variables.product.pricing_url %}> に掲載されています。 {% data variables.product.product_name %} はカスタムの製品やプランは提供しません。 +For more information about the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data variables.product.product_name %} does not offer custom products or subscriptions. -支払いは月単位あるいは年単位を選択でき、プランのアップグレードやダウングレードはいつでもできます。 詳細は「[ {% data variables.product.prodname_dotcom %} の支払いを管理する](/articles/managing-billing-for-your-github-account)」を参照してください。 +You can choose monthly or yearly billing, and you can upgrade or downgrade your subscription at any time. For more information, see "[Managing billing for your {% data variables.product.prodname_dotcom %} account](/articles/managing-billing-for-your-github-account)." -既存の {% data variables.product.product_name %} の支払い情報で追加の機能や製品をご購入いただくことができます。 詳細は「[ {% data variables.product.prodname_dotcom %} の支払いについて](/articles/about-billing-on-github)」を参照してください。 +You can purchase other features and products with your existing {% data variables.product.product_name %} payment information. For more information, see "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." + +{% data reusables.accounts.accounts-billed-separately %} {% data reusables.user_settings.context_switcher %} {% tip %} -**ヒント:** {% data variables.product.prodname_dotcom %} では、アカデミック割引をご利用いただける確認済みの生徒およびアカデミック機関向けのプログラムをご用意しています。 詳しい情報については [{% data variables.product.prodname_education %}](https://education.github.com/) にアクセスして下さい。 +**Tip:** {% data variables.product.prodname_dotcom %} has programs for verified students and academic faculty, which include academic discounts. For more information, visit [{% data variables.product.prodname_education %}](https://education.github.com/). {% endtip %} diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md index 0396eec2d5..6209f8ad3b 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md @@ -1,11 +1,11 @@ --- -title: GitHub アカウントの割引プラン -intro: '{% data variables.product.product_name %}は、学生、教師、教育機関、非営利団体、図書館などに割引を提供しています。' +title: Discounted subscriptions for GitHub accounts +intro: '{% data variables.product.product_name %} provides discounts to students, educators, educational institutions, nonprofits, and libraries.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts - - /articles/discounted-personal-accounts/ - - /articles/discounted-organization-accounts/ - - /articles/discounted-billing-plans/ + - /articles/discounted-personal-accounts + - /articles/discounted-organization-accounts + - /articles/discounted-billing-plans - /articles/discounted-subscriptions-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts versions: @@ -18,29 +18,28 @@ topics: - Discounts - Nonprofits - User account -shortTitle: 割引されたサブスクリプション +shortTitle: Discounted subscriptions --- - {% tip %} -**参考**: {% data variables.product.prodname_dotcom %}の割引は他の有料製品や有料機能のプランには適用されません。 +**Tip**: Discounts for {% data variables.product.prodname_dotcom %} do not apply to subscriptions for other paid products and features. {% endtip %} -## 個人アカウントへの割引 +## Discounts for personal accounts -{% data variables.product.prodname_free_user %} で学生と教員が無制限のパブリックリポジトリとプライベートリポジトリを使用できることに加えて、検証済みの学生は {% data variables.product.prodname_student_pack %} に申請し、{% data variables.product.prodname_dotcom %} パートナーからのさらなるメリットを受けていただけます。 詳しい情報については、「[学生向け開発者パックに応募する](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-a-student-developer-pack)」を参照してください。 +In addition to the unlimited public and private repositories for students and faculty with {% data variables.product.prodname_free_user %}, verified students can apply for the {% data variables.product.prodname_student_pack %} to receive additional benefits from {% data variables.product.prodname_dotcom %} partners. For more information, see "[Apply for a student developer pack](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-a-student-developer-pack)." -## 学校・大学向け割引 +## Discounts for schools and universities -検証済みの教職員は教育や学術研究の目的で {% data variables.product.prodname_team %} に申し込むことができます。 詳しい情報については、「[教室や研究で {% data variables.product.prodname_dotcom %} を使う](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research)」を参照してください。 また、学生のために教材をお求めいただくこともできます。 詳しい情報については [{% data variables.product.prodname_education %}](https://education.github.com/) にアクセスして下さい。 +Verified academic faculty can apply for {% data variables.product.prodname_team %} for teaching or academic research. For more information, see "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research)." You can also request educational materials goodies for your students. For more information, visit [{% data variables.product.prodname_education %}](https://education.github.com/). -## 非営利目的や図書館への割引 +## Discounts for nonprofits and libraries -{% data variables.product.product_name %} は、無制限のプライベートリポジトリ、無制限のコラボレータ、無制限の機能付きの Organization 向け {% data variables.product.prodname_team %} を、501(c)3 (または同等) の資格を持つ Organization および図書館に無料で提供しています。 自分の Organization への割引を[非営利目的ページ](https://github.com/nonprofit)でリクエストできます。 +{% data variables.product.product_name %} provides free {% data variables.product.prodname_team %} for organizations with unlimited private repositories, unlimited collaborators, and a full feature set to qualifying 501(c)3 (or equivalent) organizations and libraries. You can request a discount for your organization on [our nonprofit page](https://github.com/nonprofit). -すでに有料プランに契約されている Organization の場合、非営利目的の割引が適用され次第、Organization の最後の取引が返金されます。 +If your organization already has a paid subscription, your organization's last transaction will be refunded once your nonprofit discount has been applied. -## 参考リンク +## Further reading -- "[{% data variables.product.prodname_dotcom %} の支払いについて](/articles/about-billing-on-github)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)" diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md index d907d6d2cd..cdaa744340 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md @@ -1,20 +1,20 @@ --- -title: GitHub プランをダウングレードする +title: Downgrading your GitHub subscription intro: 'You can downgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-your-github-subscription - - /articles/downgrading-your-personal-account-s-billing-plan/ - - /articles/how-do-i-cancel-my-account/ - - /articles/downgrading-a-user-account-to-free/ - - /articles/removing-paid-seats-from-your-organization/ - - /articles/downgrading-your-organization-s-paid-seats/ - - /articles/downgrading-your-organization-s-billing-plan/ - - /articles/downgrading-an-organization-with-per-seat-pricing-to-free/ - - /articles/downgrading-an-organization-with-per-repository-pricing-to-free/ - - /articles/downgrading-your-organization-to-free/ - - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan/ - - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan/ - - /articles/downgrading-your-github-billing-plan/ + - /articles/downgrading-your-personal-account-s-billing-plan + - /articles/how-do-i-cancel-my-account + - /articles/downgrading-a-user-account-to-free + - /articles/removing-paid-seats-from-your-organization + - /articles/downgrading-your-organization-s-paid-seats + - /articles/downgrading-your-organization-s-billing-plan + - /articles/downgrading-an-organization-with-per-seat-pricing-to-free + - /articles/downgrading-an-organization-with-per-repository-pricing-to-free + - /articles/downgrading-your-organization-to-free + - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan + - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan + - /articles/downgrading-your-github-billing-plan - /articles/downgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/downgrading-your-github-subscription versions: @@ -26,63 +26,71 @@ topics: - Organizations - Repositories - User account -shortTitle: サブスクリプションのダウングレード +shortTitle: Downgrade subscription --- +## Downgrading your {% data variables.product.product_name %} subscription -## {% data variables.product.product_name %}プランのダウングレード +When you downgrade your user account or organization's subscription, pricing and account feature changes take effect on your next billing date. Changes to your paid user account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. For more information, see "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." -ユーザアカウントまたはOrganizationのプランをダウングレードした場合、価格とアカウント機能の変更は次の請求日から有効になります。 有料のユーザアカウントまたはOrganizationのプランを変更しても、他の有料{% data variables.product.prodname_dotcom %} 機能のプランや支払いには影響しません。 詳細は「[アップグレードやダウングレードは支払い処理にどのように影響しますか?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)」を参照してください。 +## Downgrading your user account's subscription -## ユーザアカウントのプランをダウングレードする - -ユーザアカウントを{% data variables.product.prodname_pro %}から{% data variables.product.prodname_free_user %}にダウングレードした場合、プライベートリポジトリでの高度なコードレビューツールにはアクセスできなくなります。 {% data reusables.gated-features.more-info %} +If you downgrade your user account from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, the account will lose access to advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. "Current plan(現在のプラン)"の下で、**Edit(編集)**ドロップダウンを使い、**Downgrade to Free(Freeへのダウングレード)**をクリックしてください。 ![Downgrade to free button](/assets/images/help/billing/downgrade-to-free.png) -5. 次回の請求日にユーザアカウントがアクセスできなくなる機能に関する情報を読み、[**I understand. Continue with downgrade**] をクリックします。 ![[Continue with downgrade] ボタン](/assets/images/help/billing/continue-with-downgrade.png) +1. Under "Current plan", use the **Edit** drop-down and click **Downgrade to Free**. + ![Downgrade to free button](/assets/images/help/billing/downgrade-to-free.png) +5. Read the information about the features your user account will no longer have access to on your next billing date, then click **I understand. Continue with downgrade**. + ![Continue with downgrade button](/assets/images/help/billing/continue-with-downgrade.png) -プライベートリポジトリに {% data variables.product.prodname_pages %} サイトを公開し、カスタムドメインを追加した場合、ドメイン乗っ取りのリスクを回避するため、{% data variables.product.prodname_pro %} から {% data variables.product.prodname_free_user %} にダウングレードする前に DNS レコードを削除または更新します。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site)」を参照してください。 +If you published a {% data variables.product.prodname_pages %} site in a private repository and added a custom domain, remove or update your DNS records before downgrading from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, to avoid the risk of a domain takeover. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -## Organizationのプランをダウングレードする +## Downgrading your organization's subscription {% data reusables.dotcom_billing.org-billing-perms %} -Organizationを{% data variables.product.prodname_team %}から{% data variables.product.prodname_free_team %}にダウングレードした場合、そのアカウントはチームの高度なコラボレーションおよび管理ツールにはアクセスできなくなります。 +If you downgrade your organization from {% data variables.product.prodname_team %} to {% data variables.product.prodname_free_team %} for an organization, the account will lose access to advanced collaboration and management tools for teams. -Organizationを{% data variables.product.prodname_ghe_cloud %}から{% data variables.product.prodname_team %}または{% data variables.product.prodname_free_team %}にダウングレードした場合、そのアカウントは高度なセキュリティ、コンプライアンス、およびデプロイメントコントロールにアクセスできなくなります。 {% data reusables.gated-features.more-info %} +If you downgrade your organization from {% data variables.product.prodname_ghe_cloud %} to {% data variables.product.prodname_team %} or {% data variables.product.prodname_free_team %}, the account will lose access to advanced security, compliance, and deployment controls. {% data reusables.gated-features.more-info %} {% data reusables.organizations.billing-settings %} -1. "Current plan(現在のプラン)"の下で、[**Edit**] ドロップダウンから必要なダウングレード オプションをクリックします。 ![[Downgrade] ボタン](/assets/images/help/billing/downgrade-option-button.png) +1. Under "Current plan", use the **Edit** drop-down and click the downgrade option you want. + ![Downgrade button](/assets/images/help/billing/downgrade-option-button.png) {% data reusables.dotcom_billing.confirm_cancel_org_plan %} -## 従来のリポジトリ単位の支払いを使用しているOrganizationのプランをダウングレードする +## Downgrading an organization's subscription with legacy per-repository pricing {% data reusables.dotcom_billing.org-billing-perms %} -{% data reusables.dotcom_billing.switch-legacy-billing %}詳しい情報については、「[Organization をリポジトリごとからユーザごとに切り替える](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)」を参照してください。 +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[Switching your organization from per-repository to per-user pricing](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. [Subscriptions] の下にある [Edit] ドロップダウンメニューから [**Edit plan**] をクリックします。 ![[Edit Plan] ドロップダウン](/assets/images/help/billing/edit-plan-dropdown.png) -1. [Billing/Plans] で、変更する必要があるプランの横にある [**Downgrade**] をクリックします。 ![[Downgrade] ボタン](/assets/images/help/billing/downgrade-plan-option-button.png) -1. アカウントをダウングレードする理由を入力し、[**Downgrade plan**] をクリックします。 ![ダウングレードの理由を入力するテキストボックスと [Downgrade] ボタン](/assets/images/help/billing/downgrade-plan-button.png) +5. Under "Subscriptions", select the "Edit" drop-down, and click **Edit plan**. + ![Edit Plan dropdown](/assets/images/help/billing/edit-plan-dropdown.png) +1. Under "Billing/Plans", next to the plan you want to change, click **Downgrade**. + ![Downgrade button](/assets/images/help/billing/downgrade-plan-option-button.png) +1. Enter the reason you're downgrading your account, then click **Downgrade plan**. + ![Text box for downgrade reason and downgrade button](/assets/images/help/billing/downgrade-plan-button.png) -## Organization から有料シートを削除する +## Removing paid seats from your organization -Organization が使用する有料シート数を減らすには、Organization からメンバーを削除するか、メンバーを外部コラボレーターに変更してアクセス権をパブリックリポジトリに限定する方法があります。 詳しい情報については、以下を参照してください。 -- "[Organization からメンバーを削除する](/articles/removing-a-member-from-your-organization)" -- [Organizatin のメンバーを外部のコラボレータに変換する](/articles/converting-an-organization-member-to-an-outside-collaborator) -- [Organizationのリポジトリへの個人のアクセスの管理](/articles/managing-an-individual-s-access-to-an-organization-repository) +To reduce the number of paid seats your organization uses, you can remove members from your organization or convert members to outside collaborators and give them access to only public repositories. For more information, see: +- "[Removing a member from your organization](/articles/removing-a-member-from-your-organization)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" {% data reusables.organizations.billing-settings %} -1. "Current plan(現在のプラン)"の下で、**Edit(編集)**ドロップダウンを使い、**Remove seats(シートの削除)**をクリックしてください。 ![[Remove Seats] ドロップダウン](/assets/images/help/billing/remove-seats-dropdown.png) -1. [Remove seats] の下でダウングレードするシート数を選択します。 ![[Remove Seats] オプション](/assets/images/help/billing/remove-seats-amount.png) -1. 次回請求日の新しい支払いに関する情報を確認し、[**Remove seats**] をクリックします。 ![[Remove Seats] ボタン](/assets/images/help/billing/remove-seats-button.png) +1. Under "Current plan", use the **Edit** drop-down and click **Remove seats**. + ![remove seats dropdown](/assets/images/help/billing/remove-seats-dropdown.png) +1. Under "Remove seats", select the number of seats you'd like to downgrade to. + ![remove seats option](/assets/images/help/billing/remove-seats-amount.png) +1. Review the information about your new payment on your next billing date, then click **Remove seats**. + ![remove seats button](/assets/images/help/billing/remove-seats-button.png) -## 参考リンク +## Further reading -- "[{% data variables.product.prodname_dotcom %}の製品](/articles/github-s-products)" -- [アップグレードあるいはダウングレードの支払いプロセスへの影響は?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process) -- 「[{% data variables.product.prodname_dotcom %} の支払いについて](/articles/about-billing-on-github)」 -- 「[支払い方法を削除する](/articles/removing-a-payment-method)」 -- [ユーザごとの価格付けについて](/articles/about-per-user-pricing) +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +- "[Removing a payment method](/articles/removing-a-payment-method)" +- "[About per-user pricing](/articles/about-per-user-pricing)" diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/index.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/index.md index 8ce2d21968..7801363423 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/index.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/index.md @@ -1,17 +1,17 @@ --- -title: GitHub アカウントの支払いを管理する -shortTitle: GitHubアカウント +title: Managing billing for your GitHub account +shortTitle: Your GitHub account intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade, downgrade, and view pending changes to your account''s subscription at any time.{% elsif ghec or ghes or ghae %}You can manage billing for {% data variables.product.product_name %}{% ifversion ghae %}.{% elsif ghec or ghes %} from your enterprise account on {% data variables.product.prodname_dotcom_the_website %}.{% endif %}{% endif %}' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account - - /categories/97/articles/ - - /categories/paying-for-user-accounts/ - - /articles/paying-for-your-github-user-account/ - - /articles/managing-billing-on-github/ - - /articles/changing-your-personal-account-s-billing-plan/ - - /categories/billing/ - - /categories/3/articles/ - - /articles/managing-your-organization-s-paid-seats/ + - /categories/97/articles + - /categories/paying-for-user-accounts + - /articles/paying-for-your-github-user-account + - /articles/managing-billing-on-github + - /articles/changing-your-personal-account-s-billing-plan + - /categories/billing + - /categories/3/articles + - /articles/managing-your-organization-s-paid-seats - /articles/managing-billing-for-your-github-account versions: fpt: '*' diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md index e1469e1acd..fee3631236 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md @@ -1,22 +1,23 @@ --- -title: GitHub のプランをアップグレードする +title: Upgrading your GitHub subscription intro: 'You can upgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' +miniTocMaxHeadingLevel: 3 redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-your-github-subscription - - /articles/upgrading-your-personal-account-s-billing-plan/ - - /articles/upgrading-your-personal-account/ - - /articles/upgrading-your-personal-account-from-free-to-a-paid-account/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal/ - - /articles/500-error-while-upgrading/ - - /articles/upgrading-your-organization-s-billing-plan/ - - /articles/changing-your-organization-billing-plan/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal/ - - /articles/upgrading-your-organization-account/ - - /articles/switching-from-per-repository-to-per-user-pricing/ - - /articles/adding-seats-to-your-organization/ - - /articles/upgrading-your-github-billing-plan/ + - /articles/upgrading-your-personal-account-s-billing-plan + - /articles/upgrading-your-personal-account + - /articles/upgrading-your-personal-account-from-free-to-a-paid-account + - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal + - /articles/500-error-while-upgrading + - /articles/upgrading-your-organization-s-billing-plan + - /articles/changing-your-organization-billing-plan + - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal + - /articles/upgrading-your-organization-account + - /articles/switching-from-per-repository-to-per-user-pricing + - /articles/adding-seats-to-your-organization + - /articles/upgrading-your-github-billing-plan - /articles/upgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/upgrading-your-github-subscription versions: @@ -28,26 +29,37 @@ topics: - Troubleshooting - Upgrades - User account -shortTitle: サブスクリプションのアップグレード +shortTitle: Upgrade your subscription --- -## 個人アカウントのプランをアップグレードする +## About subscription upgrades -個人アカウントを {% data variables.product.prodname_free_user %} から {% data variables.product.prodname_pro %} にアップグレードして、プライベートリポジトリの高度なコードレビューツールを手に入れることができます。 {% data reusables.gated-features.more-info %} +{% data reusables.accounts.accounts-billed-separately %} + +When you upgrade the subscription for an account, the upgrade changes the paid features available for that account only, and not any other accounts you use. + +## Upgrading your personal account's subscription + +You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories owned by your user account. Upgrading your personal account does not affect any organizations you may manage or repositories owned by those organizations. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. "Current plan(現在のプラン)"の隣で**Upgrade(アップグレード)**をクリックしてください。 ![アップグレードボタン](/assets/images/help/billing/settings_billing_user_upgrade.png) -2. "Compare plans(プランの比較)"ページの"Pro(プロ)"の下で、**Upgrade to Pro(プロにアップグレード)**をクリックしてください。 +1. Next to "Current plan", click **Upgrade**. + ![Upgrade button](/assets/images/help/billing/settings_billing_user_upgrade.png) +2. Under "Pro" on the "Compare plans" page, click **Upgrade to Pro**. {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.show-plan-details %} {% data reusables.dotcom_billing.enter-billing-info %} {% data reusables.dotcom_billing.enter-payment-info %} {% data reusables.dotcom_billing.finish_upgrade %} -## Organization のプランをアップグレードする +## Managing your organization's subscription -Organization を {% data variables.product.prodname_free_team %} から {% data variables.product.prodname_team %} にアップグレードすると、チーム用の高度なコラボレーションおよび管理ツールにアクセスできます。また、{% data variables.product.prodname_ghe_cloud %} にアップグレードすると、セキュリティ、コンプライアンス、およびデプロイメントの管理を強化できます。 {% data reusables.gated-features.more-info-org-products %} +You can upgrade your organization's subscription to a different product, add seats to your existing product, or switch from per-repository to per-user pricing. + +### Upgrading your organization's subscription + +You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. Upgrading an organization does not affect your personal account or repositories owned by your personal account. {% data reusables.gated-features.more-info-org-products %} {% data reusables.dotcom_billing.org-billing-perms %} @@ -60,39 +72,41 @@ Organization を {% data variables.product.prodname_free_team %} から {% data {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -### {% data variables.product.prodname_ghe_cloud %} を使用する Organization の次のステップ +### Next steps for organizations using {% data variables.product.prodname_ghe_cloud %} -Organization を {% data variables.product.prodname_ghe_cloud %} にアップグレードした場合は、ここで Organization の ID とアクセス管理を設定できます。 詳細は「[Organization で SAML シングルサインオンを管理する](/organizations/managing-saml-single-sign-on-for-your-organization)」を参照してください。 +If you upgraded your organization to {% data variables.product.prodname_ghe_cloud %}, you can set up identity and access management for your organization. For more information, see "[Managing SAML single sign-on for your organization](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -{% data variables.product.prodname_ghe_cloud %} で Enterprise アカウントを使いたい場合は、{% data variables.contact.contact_enterprise_sales %} に連絡してください。 For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +If you'd like to use an enterprise account with {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## Organization にシートを追加する +### Adding seats to your organization -{% data variables.product.prodname_team %} Organization のプライベートリポジトリにアクセスできるユーザを追加したい場合、いつでもシートを買い足すことができます。 +If you'd like additional users to have access to your {% data variables.product.prodname_team %} organization's private repositories, you can purchase more seats anytime. {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.add-seats %} {% data reusables.dotcom_billing.number-of-seats %} {% data reusables.dotcom_billing.confirm-add-seats %} -## Organization をリポジトリごとからユーザごとに切り替える +### Switching your organization from per-repository to per-user pricing -{% data reusables.dotcom_billing.switch-legacy-billing %} 詳細は「[ユーザごとの価格付けについて](/articles/about-per-user-pricing)」を参照してください。 +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. プラン名の右にある [**Edit**] ドロップダウンメニューで、[**Edit plan**] を選択します。 ![[Edit] ドロップダウンメニュー](/assets/images/help/billing/per-user-upgrade-button.png) -6. [Advanced tools for teams] の右にある [**Upgrade now**] をクリックします。 ![[Upgrade now] ボタン](/assets/images/help/billing/per-user-upgrade-now-button.png) +5. To the right of your plan name, use the **Edit** drop-down menu, and select **Edit plan**. + ![Edit drop-down menu](/assets/images/help/billing/per-user-upgrade-button.png) +6. To the right of "Advanced tools for teams", click **Upgrade now**. + ![Upgrade now button](/assets/images/help/billing/per-user-upgrade-now-button.png) {% data reusables.dotcom_billing.choose_org_plan %} {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -## アップグレード時の 500 エラーのトラブルシューティング +## Troubleshooting a 500 error when upgrading {% data reusables.dotcom_billing.500-error %} -## 参考リンク +## Further reading -- "[{% data variables.product.prodname_dotcom %}の製品](/articles/github-s-products)" -- [アップグレードあるいはダウングレードの支払いプロセスへの影響は?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process) -- 「[{% data variables.product.prodname_dotcom %} の支払いについて](/articles/about-billing-on-github)」 +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." diff --git a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md index 9bd7420984..6b946551a5 100644 --- a/translations/ja-JP/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md +++ b/translations/ja-JP/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md @@ -1,11 +1,11 @@ --- -title: プランの保留中の変更の表示と管理 -intro: 次回の請求日に発効する前に、プランの保留中の変更を表示およびキャンセルできます。 +title: Viewing and managing pending changes to your subscription +intro: You can view and cancel pending changes to your subscriptions before they take effect on your next billing date. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-and-managing-pending-changes-to-your-subscription - - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-billing-plan/ + - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-billing-plan - /articles/viewing-and-managing-pending-changes-to-your-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription versions: @@ -15,14 +15,13 @@ type: how_to topics: - Organizations - User account -shortTitle: サブスクリプションの変更の保留 +shortTitle: Pending subscription changes --- +You can cancel pending changes to your account's subscription as well as pending changes to your subscriptions to other paid features and products. -アカウントのプランに対する保留中の変更、および他の有料機能や製品へのプランの保留中の変更をキャンセルすることができます。 +When you cancel a pending change, your subscription will not change on your next billing date (unless you make a subsequent change to your subscription before your next billing date). -保留中の変更をキャンセルしても、次回の請求日にプランが変更されることはありません (次回の請求日より前にプランに変更を加えない限り)。 - -## 個人アカウントのプランに対する保留中の変更の表示と管理 +## Viewing and managing pending changes to your personal account's subscription {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,13 +29,13 @@ shortTitle: サブスクリプションの変更の保留 {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## Organization のプランに対する保留中の変更の表示と管理 +## Viewing and managing pending changes to your organization's subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.review-pending-changes %} {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## 参考リンク +## Further reading -- "[{% data variables.product.prodname_dotcom %}の製品](/articles/github-s-products)" +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md index c29d5e80a8..0454458409 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md @@ -1,16 +1,16 @@ --- -title: 領収書に情報を追加する -intro: '{% data variables.product.product_name %} の領収書には、税金や会社あるいは国が求める会計情報などの情報を加えることができます。' +title: Adding information to your receipts +intro: 'You can add extra information to your {% data variables.product.product_name %} receipts, such as tax or accounting information required by your company or country.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-information-to-your-receipts - - /articles/can-i-add-my-credit-card-number-to-my-receipts/ - - /articles/can-i-add-extra-information-to-my-receipts--2/ - - /articles/how-can-i-add-extra-information-to-my-receipts/ - - /articles/could-you-add-my-card-number-to-my-receipts/ - - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts/ - - /articles/adding-information-to-your-personal-account-s-receipts/ - - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts/ - - /articles/adding-information-to-your-organization-s-receipts/ + - /articles/can-i-add-my-credit-card-number-to-my-receipts + - /articles/can-i-add-extra-information-to-my-receipts--2 + - /articles/how-can-i-add-extra-information-to-my-receipts + - /articles/could-you-add-my-card-number-to-my-receipts + - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts + - /articles/adding-information-to-your-personal-account-s-receipts + - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts + - /articles/adding-information-to-your-organization-s-receipts - /articles/adding-information-to-your-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-information-to-your-receipts versions: @@ -21,29 +21,28 @@ topics: - Organizations - Receipts - User account -shortTitle: 領収書への追加 +shortTitle: Add to your receipts --- - -領収書には、{% data variables.product.prodname_dotcom %} プランと合わせて[他の有料の機能や製品](/articles/about-billing-on-github)のプランが含まれます。 +Your receipts include your {% data variables.product.prodname_dotcom %} subscription as well as any subscriptions for [other paid features and products](/articles/about-billing-on-github). {% warning %} -**警告**: セキュリティ上の理由から、領収書には秘密情報や財務情報 (クレジットカード番号など) を含めないように強くおすすめします。 +**Warning**: For security reasons, we strongly recommend against including any confidential or financial information (such as credit card numbers) on your receipts. {% endwarning %} -## 個人アカウントの領収書への情報の追加 +## Adding information to your personal account's receipts {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.user_settings.payment-info-link %} {% data reusables.dotcom_billing.extra_info_receipt %} -## Organization の領収書への情報の追加 +## Adding information to your organization's receipts {% note %} -**メモ**: {% data reusables.dotcom_billing.org-billing-perms %} +**Note**: {% data reusables.dotcom_billing.org-billing-perms %} {% endnote %} diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md index ac58416110..bb9fc0e76c 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md @@ -3,18 +3,18 @@ title: Adding or editing a payment method intro: You can add a payment method to your account or update your account's existing payment method at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-or-editing-a-payment-method - - /articles/updating-your-personal-account-s-payment-method/ - - /articles/how-do-i-update-my-credit-card/ - - /articles/updating-your-account-s-credit-card/ - - /articles/updating-your-personal-account-s-credit-card/ - - /articles/updating-your-personal-account-s-paypal-information/ - - /articles/does-github-provide-invoicing/ - - /articles/switching-payment-methods-for-your-personal-account/ - - /articles/paying-for-your-github-organization-account/ - - /articles/updating-your-organization-s-credit-card/ - - /articles/updating-your-organization-s-paypal-information/ - - /articles/updating-your-organization-s-payment-method/ - - /articles/switching-payment-methods-for-your-organization/ + - /articles/updating-your-personal-account-s-payment-method + - /articles/how-do-i-update-my-credit-card + - /articles/updating-your-account-s-credit-card + - /articles/updating-your-personal-account-s-credit-card + - /articles/updating-your-personal-account-s-paypal-information + - /articles/does-github-provide-invoicing + - /articles/switching-payment-methods-for-your-personal-account + - /articles/paying-for-your-github-organization-account + - /articles/updating-your-organization-s-credit-card + - /articles/updating-your-organization-s-paypal-information + - /articles/updating-your-organization-s-payment-method + - /articles/switching-payment-methods-for-your-organization - /articles/adding-or-editing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-or-editing-a-payment-method versions: diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md index d7ffb3da03..539ae1e931 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md @@ -1,11 +1,11 @@ --- -title: 支払いサイクル期間の変更 -intro: アカウントのプランや、その他有料機能、有料製品は、月次または年次のサイクルで支払うことができます。 +title: Changing the duration of your billing cycle +intro: You can pay for your account's subscription and other paid features and products on a monthly or yearly billing cycle. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle - - /articles/monthly-and-yearly-billing/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-organization/ + - /articles/monthly-and-yearly-billing + - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account + - /articles/switching-between-monthly-and-yearly-billing-for-your-organization - /articles/changing-the-duration-of-your-billing-cycle - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle versions: @@ -16,30 +16,31 @@ topics: - Organizations - Repositories - User account -shortTitle: 支払いサイクル +shortTitle: Billing cycle --- +When you change your billing cycle's duration, your {% data variables.product.prodname_dotcom %} subscription, along with any other paid features and products, will be moved to your new billing cycle on your next billing date. -支払いサイクル期間を変更すると、{% data variables.product.prodname_dotcom %}のプランおよびその他の有料機能、有料製品は、次の支払日から新しい支払いサイクルに移行します。 - -## 個人アカウントの支払いサイクル期間の変更 +## Changing the duration of your personal account's billing cycle {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -## Organization の支払いサイクル期間の変更 +## Changing the duration of your organization's billing cycle {% data reusables.dotcom_billing.org-billing-perms %} -### ユーザ単位プランの期間の変更 +### Changing the duration of a per-user subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -### 過去のリポジトリ単位プランの期間の変更 +### Changing the duration of a legacy per-repository plan {% data reusables.organizations.billing-settings %} -4. [Billing overview] で、[**Change plan**] をクリックします。 ![[Billing overview] の [Change plan] ボタン](/assets/images/help/billing/billing_overview_change_plan.png) -5. ページの右上で [**Switch to monthly billing**] または [**Switch to yearly billing**] をクリックします。 ![支払い情報セクション](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) +4. Under "Billing overview", click **Change plan**. + ![Billing overview change plan button](/assets/images/help/billing/billing_overview_change_plan.png) +5. At the top right corner, click **Switch to monthly billing** or **Switch to yearly billing**. + ![Billing information section](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/index.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/index.md index c671023452..c8d94f174f 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/index.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/index.md @@ -1,15 +1,15 @@ --- -title: GitHub の支払い設定を管理する -shortTitle: 支払い設定 -intro: お使いのアカウントの支払い設定は、アカウントに追加する各有料機能または製品に適用されます。 支払い方法、支払いサイクル、支払い請求先メールアドレスなどの設定を管理できます。 また、ご利用のプラン、請求日、支払い履歴、過去の領収証などの支払い情報を表示することもできます。 +title: Managing your GitHub billing settings +shortTitle: Billing settings +intro: 'Your account''s billing settings apply to every paid feature or product you add to the account. You can manage settings like your payment method, billing cycle, and billing email. You can also view billing information such as your subscription, billing date, payment history, and past receipts.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings - - /articles/viewing-and-managing-your-personal-account-s-billing-information/ - - /articles/paying-for-user-accounts/ - - /articles/viewing-and-managing-your-organization-s-billing-information/ - - /articles/paying-for-organization-accounts/ - - /categories/paying-for-organization-accounts/articles/ - - /categories/99/articles/ + - /articles/viewing-and-managing-your-personal-account-s-billing-information + - /articles/paying-for-user-accounts + - /articles/viewing-and-managing-your-organization-s-billing-information + - /articles/paying-for-organization-accounts + - /categories/paying-for-organization-accounts/articles + - /categories/99/articles - /articles/managing-your-github-billing-settings versions: fpt: '*' diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md index f28ad08eeb..2a416cdc8f 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md @@ -1,11 +1,11 @@ --- -title: クーポンを利用する -intro: 'クーポンがある場合、{% data variables.product.prodname_dotcom %} の有料プランに利用できます。' +title: Redeeming a coupon +intro: 'If you have a coupon, you can redeem it towards a paid {% data variables.product.prodname_dotcom %} subscription.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/redeeming-a-coupon - - /articles/where-do-i-add-a-coupon-code/ - - /articles/redeeming-a-coupon-for-your-personal-account/ - - /articles/redeeming-a-coupon-for-organizations/ + - /articles/where-do-i-add-a-coupon-code + - /articles/redeeming-a-coupon-for-your-personal-account + - /articles/redeeming-a-coupon-for-organizations - /articles/redeeming-a-coupon - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/redeeming-a-coupon versions: @@ -18,23 +18,24 @@ topics: - Organizations - User account --- - -{% data variables.product.product_name %}では、クーポンを適用する前にアカウントの支払いをした場合の返金はできません。 また、適用先のアカウントを間違えた場合にも、利用したクーポンの移譲や新たなクーポンの発行はできません。 クーポンを利用する前に、クーポンを正しいアカウントに適用していることを確認してください。 +{% data variables.product.product_name %} can't issue a refund if you pay for an account before applying a coupon. We also can't transfer a redeemed coupon or give you a new coupon if you apply it to the wrong account. Confirm that you're applying the coupon to the correct account before you redeem a coupon. {% data reusables.dotcom_billing.coupon-expires %} -クーポンは {% data variables.product.prodname_marketplace %}アプリケーションの有料プランには適用できません。 +You cannot apply coupons to paid plans for {% data variables.product.prodname_marketplace %} apps. -## 個人アカウントでクーポンを利用する +## Redeeming a coupon for your personal account {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. [Redeem your coupon] の下で、*個人*アカウントのユーザ名の横にある [**Choose**] をクリックします。 ![選択ボタン](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) +4. Under "Redeem your coupon", click **Choose** next to your *personal* account's username. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) {% data reusables.dotcom_billing.redeem_coupon %} -## Organization でクーポンを利用する +## Redeeming a coupon for your organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. 「Redeem your coupon」の下で、クーポンを適用する *Organization* の横にある [**Choose**] をクリックします。 まだ存在していない新しい Organization にクーポンを適用する場合は、[**Create a new organization**] をクリックします。 ![選択ボタン](/assets/images/help/settings/redeem-coupon-choose-button.png) +4. Under "Redeem your coupon", click **Choose** next to the *organization* you want to apply the coupon to. If you'd like to apply your coupon to a new organization that doesn't exist yet, click **Create a new organization**. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button.png) {% data reusables.dotcom_billing.redeem_coupon %} diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md index ac01064771..8e7fe2ed0b 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md @@ -1,12 +1,12 @@ --- -title: 支払い方法を削除する -intro: '{% data variables.product.prodname_dotcom %} の有料プランで支払い方法を使用していない場合、その支払い方法を削除すればアカウントに保存されなくなります。' +title: Removing a payment method +intro: 'If you aren''t using your payment method for any paid subscriptions on {% data variables.product.prodname_dotcom %}, you can remove the payment method so it''s no longer stored in your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/removing-a-payment-method - - /articles/removing-a-credit-card-associated-with-your-user-account/ - - /articles/removing-a-payment-method-associated-with-your-user-account/ - - /articles/removing-a-credit-card-associated-with-your-organization/ - - /articles/removing-a-payment-method-associated-with-your-organization/ + - /articles/removing-a-credit-card-associated-with-your-user-account + - /articles/removing-a-payment-method-associated-with-your-user-account + - /articles/removing-a-credit-card-associated-with-your-organization + - /articles/removing-a-payment-method-associated-with-your-organization - /articles/removing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/removing-a-payment-method versions: @@ -17,18 +17,17 @@ topics: - Organizations - User account --- - -{% data variables.product.product_name %} のクーポン付きプランの支払いをしていて、{% data variables.product.product_name %} の[他の有料機能や製品](/articles/about-billing-on-github)の支払い方法を使用していない場合、クレジットカードや PayPal の情報を削除できます。 +If you're paying for your {% data variables.product.product_name %} subscription with a coupon, and you aren't using your payment method for any [other paid features or products](/articles/about-billing-on-github) on {% data variables.product.product_name %}, you can remove your credit card or PayPal information. {% data reusables.dotcom_billing.coupon-expires %} {% tip %} -**ヒント:** 他の有料機能や製品のプランがなくて[アカウントを無料製品にダウングレード](/articles/downgrading-your-github-subscription)した場合、支払い情報は自動的に削除されます。 +**Tip:** If you [downgrade your account to a free product](/articles/downgrading-your-github-subscription) and you don't have subscriptions for any other paid features or products, we'll automatically remove your payment information. {% endtip %} -## 個人アカウントの支払い方法を削除する +## Removing your personal account's payment method {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -36,7 +35,7 @@ topics: {% data reusables.dotcom_billing.remove-payment-method %} {% data reusables.dotcom_billing.remove_payment_info %} -## Organization の支払い方法を削除する +## Removing your organization's payment method {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md index d2de23c5b5..66805ec15f 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md @@ -1,12 +1,12 @@ --- -title: 支払い請求先メールアドレスを設定する -intro: 'お客様の支払い請求先メールアドレスに、{% data variables.product.product_name %} が領収書およびその他の請求関連の連絡を送ります。' +title: Setting your billing email +intro: 'Your account''s billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-your-billing-email - - /articles/setting-your-personal-account-s-billing-email/ - - /articles/can-i-change-what-email-address-received-my-github-receipt/ - - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email/' - - /articles/setting-your-organization-s-billing-email/ + - /articles/setting-your-personal-account-s-billing-email + - /articles/can-i-change-what-email-address-received-my-github-receipt + - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email' + - /articles/setting-your-organization-s-billing-email - /articles/setting-your-billing-email - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/setting-your-billing-email versions: @@ -16,51 +16,58 @@ type: how_to topics: - Organizations - User account -shortTitle: 支払いメール +shortTitle: Billing email --- +## Setting your personal account's billing email -## 個人アカウントの支払い請求先メールアドレスを設定する +Your personal account's primary email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. -お客様の個人アカウントのプライマリメールアドレスに、{% data variables.product.product_name %} が領収書およびその他の請求関連の連絡を送ります。 +Your primary email address is the first email listed in your account email settings. +We also use your primary email address as our billing email address. -プライマリメールアドレスは、アカウントのメール設定に入力した最初のメールアドレスです。 また、プライマリメールアドレスを支払い請求先メールアドレスとして使えます。 +If you'd like to change your billing email, see "[Changing your primary email address](/articles/changing-your-primary-email-address)." -支払い請求先メールアドレスを変更したい場合は「[プライマリメールアドレスを変更する](/articles/changing-your-primary-email-address)」を参照してください。 +## Setting your organization's billing email -## Organization の支払い請求先メールアドレスを設定する - -お客様の Organization の請求先メールアドレスに、{% data variables.product.product_name %} が領収書およびその他の請求関連の連絡を送ります。 このメールアドレスは、Organization アカウント専用である必要はありません。 +Your organization's billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. The email address does not need to be unique to the organization account. {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} -1. [Billing management] で、支払メールアドレスの右の[**Edit**]をクリックします。 ![現在の支払メール](/assets/images/help/billing/billing-change-email.png) -2. 有効なメールアドレスを入力し、[**Update**]をクリックします。 ![支払メールアドレスの変更モーダル](/assets/images/help/billing/billing-change-email-modal.png) +1. Under "Billing management", to the right of the billing email address, click **Edit**. + ![Current billing emails](/assets/images/help/billing/billing-change-email.png) +2. Type a valid email address, then click **Update**. + ![Change billing email address modal](/assets/images/help/billing/billing-change-email-modal.png) -## Organization の支払い請求先メールアドレスに受信者を追加して管理する +## Managing additional recipients for your organization's billing email -支払い請求レポートを受信する必要のあるユーザが複数いる場合は、支払い請求先メールの受信者としてそのユーザのメールアドレスを追加できます。 この機能を利用できるのは、企業が管理していない Organization だけです。 +If you have users that want to receive billing reports, you can add their email addresses as billing email recipients. This feature is only available to organizations that are not managed by an enterprise. {% data reusables.dotcom_billing.org-billing-perms %} -### 支払い通知の受信者を追加する +### Adding a recipient for billing notifications {% data reusables.organizations.billing-settings %} -1. [Billing management] で、[Email recipients] の右の [**Add**] をクリックします。 ![受信者を追加](/assets/images/help/billing/billing-add-email-recipient.png) -1. 受信者のメールアドレスを入力し、[**Add**] をクリックします。 ![受信者追加のモーダル](/assets/images/help/billing/billing-add-email-recipient-modal.png) +1. Under "Billing management", to the right of "Email recipients", click **Add**. + ![Add recipient](/assets/images/help/billing/billing-add-email-recipient.png) +1. Type the email address of the recipient, then click **Add**. + ![Add recipient modal](/assets/images/help/billing/billing-add-email-recipient-modal.png) -### 支払い通知の第 1 受信者を変更する +### Changing the primary recipient for billing notifications -第1受信者として必ずアドレスを 1 つは指定する必要があります。 第 1 受信者に指定したアドレスは、別の第 1 受信者を選定するまで、削除できません。 +One address must always be designated as the primary recipient. The address with this designation can't be removed until a new primary recipient is selected. {% data reusables.organizations.billing-settings %} -1. [Billing management] で、第 1 受信者に設定したいメールアドレスを探します。 -1. 見つかったメールアドレスの右にある [Edit] ドロップダウンメニューで、[**Mark as primary**] をクリックします。 ![第 1 受信者としてマーク](/assets/images/help/billing/billing-change-primary-email-recipient.png) +1. Under "Billing management", find the email address you want to set as the primary recipient. +1. To the right of the email address, use the "Edit" drop-down menu, and click **Mark as primary**. + ![Mark primary recipient](/assets/images/help/billing/billing-change-primary-email-recipient.png) -### 支払い通知の受信者を削除する +### Removing a recipient from billing notifications {% data reusables.organizations.billing-settings %} -1. [Email recipients] で、削除したいメールアドレスを探します。 -1. そのユーザのエントリで [**Edit**] をクリックします。 ![受信者を編集する](/assets/images/help/billing/billing-edit-email-recipient.png) -1. メールアドレスの右の[Edit]ドロップダウンメニューを使い、[**Remove**]をクリックします。 ![受信者を削除する](/assets/images/help/billing/billing-remove-email-recipient.png) -1. 確認ダイアログを確かめてから、[**Remove**] をクリックします。 +1. Under "Email recipients", find the email address you want to remove. +1. For the user's entry in the list, click **Edit**. + ![Edit recipient](/assets/images/help/billing/billing-edit-email-recipient.png) +1. To the right of the email address, use the "Edit" drop-down menu, and click **Remove**. + ![Remove recipient](/assets/images/help/billing/billing-remove-email-recipient.png) +1. Review the confirmation prompt, then click **Remove**. diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md index eb26c80d78..efa7701ca9 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md @@ -1,9 +1,9 @@ --- -title: クレジットカードへの請求が拒否された場合のトラブルシューティング -intro: '{% data variables.product.product_name %} への支払いに使っているクレジットカードが拒否された場合、支払いが行われるように、そして、自分のアカウントから締め出されなくするための、いくつかのステップがあります。' +title: Troubleshooting a declined credit card charge +intro: 'If the credit card you use to pay for {% data variables.product.product_name %} is declined, you can take several steps to ensure that your payments go through and that you are not locked out of your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/troubleshooting-a-declined-credit-card-charge - - /articles/what-do-i-do-if-my-card-is-declined/ + - /articles/what-do-i-do-if-my-card-is-declined - /articles/troubleshooting-a-declined-credit-card-charge - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge versions: @@ -12,27 +12,26 @@ versions: type: how_to topics: - Troubleshooting -shortTitle: 拒否されたクレジットカードの請求 +shortTitle: Declined credit card charge --- +If your card is declined, we'll send you an email about why the payment was declined. You'll have a few days to resolve the problem before we try charging you again. -カードが拒否された場合、その支払いが拒否された理由についてメールが送られます。 再び請求される前、その問題を解決するための数日間の猶予があります。 +## Check your card's expiration date -## カードの期限の日付の確認 +If your card has expired, you'll need to update your account's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -カードが期限切れの場合、アカウントの支払い情報をアップデートする必要があります。 詳細は「[支払い方法を追加または編集する](/articles/adding-or-editing-a-payment-method)」を参照してください。 +## Verify your bank's policy on card restrictions -## カードの制限についての銀行のポリシーの確認 +Some international banks place restrictions on international, e-commerce, and automatically recurring transactions. If you're having trouble making a payment with your international credit card, call your bank to see if there are any restrictions on your card. -一定の国際的な銀行は、国際、E コマースおよび自動的な定期取引について制限をしています。 国際的なクレジットカードでの支払いの実行のトラブルの場合、あなたのカードに対する制限があるか銀行に確認してください。 +We also support payments through PayPal. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -PayPal での支払いもサポートしています。 詳細は「[支払い方法を追加または編集する](/articles/adding-or-editing-a-payment-method)」を参照してください。 +## Contact your bank for details about the transaction -## 取引の詳細についての銀行への連絡 +Your bank can provide additional information about declined payments if you specifically ask about the attempted transaction. If there are restrictions on your card and you need to call your bank, provide this information to your bank: -実行しようとした取引について具体的に問い合わせると、拒否された支払いについて銀行からさらに情報を得られます。 カードに制限があり、銀行に問い合わせる必要がある場合、この情報を銀行に提供してください: - -- **請求されている金額。**あなたのプランに対する金額は、アカウントの領収書に表示されています。 詳細は「[支払い履歴と領収書を表示する](/articles/viewing-your-payment-history-and-receipts)」を参照してください。 -- **{% data variables.product.product_name %} の請求日付。**アカウントへの請求日は領収書に表示されています。 -- **取引 ID 番号。**あなたのアカウントの取引 ID は、領収書に表示されています。 -- **取引会社名。**取引会社名は、{% data variables.product.prodname_dotcom %} です。 -- **拒否された請求について銀行が送ったエラーメッセージ。**請求が拒否された時に私たちがあなたに送ったメールに、銀行のエラーメッセージがあります。 +- **The amount you're being charged.** The amount for your subscription appears on your account's receipts. For more information, see "[Viewing your payment history and receipts](/articles/viewing-your-payment-history-and-receipts)." +- **The date when {% data variables.product.product_name %} bills you.** Your account's billing date appears on your receipts. +- **The transaction ID number.** Your account's transaction ID appears on your receipts. +- **The merchant name.** The merchant name is {% data variables.product.prodname_dotcom %}. +- **The error message your bank sent with the declined charge.** You can find your bank's error message on the email we send you when a charge is declined. diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md index c6534fe217..b59da1c080 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md @@ -1,14 +1,14 @@ --- -title: ロックされたアカウントのロックを解除する -intro: 支払いの問題が原因で支払い期限が過ぎた場合、Organization の有料機能はロックされます。 +title: Unlocking a locked account +intro: Your organization's paid features are locked if your payment is past due because of billing problems. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/unlocking-a-locked-account - - /articles/what-happens-if-my-account-is-locked/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges/ - - /articles/what-happens-if-my-repository-is-locked/ - - /articles/unlocking-a-locked-personal-account/ - - /articles/unlocking-a-locked-organization-account/ + - /articles/what-happens-if-my-account-is-locked + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges + - /articles/what-happens-if-my-repository-is-locked + - /articles/unlocking-a-locked-personal-account + - /articles/unlocking-a-locked-organization-account - /articles/unlocking-a-locked-account - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/unlocking-a-locked-account versions: @@ -20,15 +20,14 @@ topics: - Downgrades - Organizations - User account -shortTitle: ロックされたアカウント +shortTitle: Locked account --- +You can unlock and access your account by updating your organization's payment method and resuming paid status. We do not ask you to pay for the time elapsed in locked mode. -Organization の支払い方法をアップデートして支払いステータスを回復することで、アカウントのロックを解除しアクセスできるようになります。 ロックされたモードで経過した時間の分については、お支払いを請求いたしません。 +You can downgrade your organization to {% data variables.product.prodname_free_team %} to continue with the same advanced features in public repositories. For more information, see "[Downgrading your {% data variables.product.product_name %} subscription](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)." -パブリックリポジトリで同じ高度な機能を使い続けるために、Organization を{% data variables.product.prodname_free_team %} にダウングレードすることができます。 詳細は「[{% data variables.product.product_name %} プランのダウングレード](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)」を参照してください。 +## Unlocking an organization's features due to a declined payment -## 支払いの拒否による Organization 機能のロック解除 +If your organization's advanced features are locked due to a declined payment, you'll need to update your billing information to trigger a newly authorized charge. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -支払いの拒否により Organization の高度な機能ロックされた場合、支払い情報をアップデートして、新しく認められた支払いを開始する必要があります。 詳細は「[支払い方法を追加または編集する](/articles/adding-or-editing-a-payment-method)」を参照してください。 - -新しい請求情報が承認された場合、お客様が選択した有料製品について直ちに請求します。 支払いが無事行われると、自動的に Organization のロックが解除されます。 +If the new billing information is approved, we will immediately charge you for the paid product you chose. The organization will automatically unlock when a successful payment has been made. diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md index 940d910458..c643ca0c2c 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md @@ -1,11 +1,11 @@ --- -title: 支払い履歴と領収書を表示する -intro: アカウントの支払い履歴はいつでも表示できます。また、過去の領収書は、いつでもダウンロード可能です。 +title: Viewing your payment history and receipts +intro: You can view your account's payment history and download past receipts at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-payment-history-and-receipts - - /articles/downloading-receipts/ - - /articles/downloading-receipts-for-personal-accounts/ - - /articles/downloading-receipts-for-organizations/ + - /articles/downloading-receipts + - /articles/downloading-receipts-for-personal-accounts + - /articles/downloading-receipts-for-organizations - /articles/viewing-your-payment-history-and-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts versions: @@ -17,17 +17,16 @@ topics: - Organizations - Receipts - User account -shortTitle: 履歴と領収書の表示 +shortTitle: View history & receipts --- - -## 個人アカウントの領収書を表示する +## Viewing receipts for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.view-payment-history %} {% data reusables.dotcom_billing.download_receipt %} -## Organization の領収書を表示する +## Viewing receipts for your organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md b/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md index 1bb8c9b1fd..b62ebd0208 100644 --- a/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md +++ b/translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md @@ -1,13 +1,13 @@ --- -title: プランと請求日を表示する -intro: アカウントのプラン、有料機能と製品、および次の請求日は、アカウントの支払い設定で確認できます。 +title: Viewing your subscriptions and billing date +intro: 'You can view your account''s subscription, your other paid features and products, and your next billing date in your account''s billing settings.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-subscriptions-and-billing-date - - /articles/finding-your-next-billing-date/ - - /articles/finding-your-personal-account-s-next-billing-date/ - - /articles/finding-your-organization-s-next-billing-date/ - - /articles/viewing-your-plans-and-billing-date/ + - /articles/finding-your-next-billing-date + - /articles/finding-your-personal-account-s-next-billing-date + - /articles/finding-your-organization-s-next-billing-date + - /articles/viewing-your-plans-and-billing-date - /articles/viewing-your-subscriptions-and-billing-date versions: fpt: '*' @@ -17,22 +17,21 @@ topics: - Accounts - Organizations - User account -shortTitle: サブスクリプションと請求日 +shortTitle: Subscriptions & billing date --- - -## 個人アカウントの次の請求日を確認する +## Finding your personal account's next billing date {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.next_billing_date %} -## Organization の次の請求日を確認する +## Finding your organization's next billing date {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.next_billing_date %} -## 参考リンク +## Further reading -- 「[{% data variables.product.prodname_dotcom %} アカウントの支払いについて](/articles/about-billing-for-github-accounts)」 +- "[About billing for {% data variables.product.prodname_dotcom %} accounts](/articles/about-billing-for-github-accounts)" diff --git a/translations/ja-JP/content/billing/managing-your-license-for-github-enterprise/index.md b/translations/ja-JP/content/billing/managing-your-license-for-github-enterprise/index.md index 617e5c273f..9f270733c2 100644 --- a/translations/ja-JP/content/billing/managing-your-license-for-github-enterprise/index.md +++ b/translations/ja-JP/content/billing/managing-your-license-for-github-enterprise/index.md @@ -5,13 +5,13 @@ intro: '{% data variables.product.prodname_enterprise %} includes both cloud and redirect_from: - /free-pro-team@latest/billing/managing-your-license-for-github-enterprise - /enterprise/admin/installation/managing-your-github-enterprise-license - - /enterprise/admin/categories/licenses/ - - /enterprise/admin/articles/license-files/ - - /enterprise/admin/installation/about-license-files/ - - /enterprise/admin/articles/downloading-your-license/ - - /enterprise/admin/installation/downloading-your-license/ - - /enterprise/admin/articles/upgrading-your-license/ - - /enterprise/admin/installation/updating-your-license/ + - /enterprise/admin/categories/licenses + - /enterprise/admin/articles/license-files + - /enterprise/admin/installation/about-license-files + - /enterprise/admin/articles/downloading-your-license + - /enterprise/admin/installation/downloading-your-license + - /enterprise/admin/articles/upgrading-your-license + - /enterprise/admin/installation/updating-your-license - /enterprise/admin/installation/managing-your-github-enterprise-server-license - /enterprise/admin/overview/managing-your-github-enterprise-license versions: diff --git a/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md b/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md index 0b5b8bca0a..b74ec44276 100644 --- a/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md +++ b/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md @@ -1,9 +1,9 @@ --- -title: 購入代行業者のためのOrganizationについて -intro: 企業は、Organizationを使って複数のオーナーと管理者を持つ共有プロジェクト上でコラボレートします。 クライアントのためにOrganizationを作成し、クライアントの代理で支払いを行い、そしてOrganizationの所有権をクライアントに渡すことができます。 +title: About organizations for procurement companies +intro: 'Businesses use organizations to collaborate on shared projects with multiple owners and administrators. You can create an organization for your client, make a payment on their behalf, then pass ownership of the organization to your client.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-organizations-for-procurement-companies - - /articles/about-organizations-for-resellers/ + - /articles/about-organizations-for-resellers - /articles/about-organizations-for-procurement-companies - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies versions: @@ -12,28 +12,27 @@ versions: type: overview topics: - Organizations -shortTitle: Organizationについて +shortTitle: About organizations --- +To access an organization, each member must sign into their own personal user account. -Organizationにアクセスするためには、各メンバーは自身のパーソナルユーザアカウントにサインインしなければなりません +Organization members can have different roles, such as *owner* or *billing manager*: -Organizationのメンバーは、*オーナー*あるいは*支払いマネージャー*など、様々なロールを持ちます。 +- **Owners** have complete administrative access to an organization and its contents. +- **Billing managers** can manage billing settings, and cannot access organization contents. Billing managers are not shown in the list of organization members. -- **オーナー**は、Organizationとそのコンテンツについて完全な管理アクセスを持ちます。 -- **支払いマネージャー**は支払いの設定を管理でき、Organization のコンテンツにはアクセスできません。 支払いマネージャーは、Organization のメンバーのリストには表示されません。 +## Payments and pricing for organizations -## Organizationの支払いと価格 +We don't provide quotes for organization pricing. You can see our published pricing for [organizations](https://github.com/pricing) and [Git Large File Storage](/articles/about-storage-and-bandwidth-usage/). We do not provide discounts for procurement companies or for renewal orders. -Organizationの価格について、弊社は見積もりを提供しません。 [Organization](https://github.com/pricing)と[Git Large File Storage](/articles/about-storage-and-bandwidth-usage/)の弊社の公開価格をご覧いただけます。 購買代行業者に対する割引あるいは契約更新時の割引は提供しておりません。 +We accept payment in US dollars, although end users may be located anywhere in the world. -支払いはUSドルで受け付けていますが、エンドユーザの場所は世界中のどの地域でも問題ありません。 +We accept payment by credit card and PayPal. We don't accept payment by purchase order or invoice. -支払いはクレジットカードと PayPal で受け付けています。 注文書や請求書での支払いは受け付けていません。 +For easier and more efficient purchasing, we recommend that procurement companies set up yearly billing for their clients' organizations. -購入を容易かつ効率的に行うために、購入代行業者はクライアントのOrganization用に年間の支払いをセットアップすることをおすすめします。 +## Further reading -## 参考リンク - -- [クライアントの代理でのOrganizationの作成と支払い](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client) -- [クライアントの有料Organizationのアップグレードあるいはダウングレード](/articles/upgrading-or-downgrading-your-client-s-paid-organization) -- [クライアントの有料Organizationの更新](/articles/renewing-your-client-s-paid-organization) +- "[Creating and paying for an organization on behalf of a client](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client)" +- "[Upgrading or downgrading your client's paid organization](/articles/upgrading-or-downgrading-your-client-s-paid-organization)" +- "[Renewing your client's paid organization](/articles/renewing-your-client-s-paid-organization)" diff --git a/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md b/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md index 5155b1fb82..0b9fc6ffef 100644 --- a/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md +++ b/translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md @@ -1,11 +1,11 @@ --- -title: 購入代行業者のための有料 Organization のセットアップ -shortTitle: 購入代行業者のための有料Organization -intro: 'クライアントに代わり {% data variables.product.product_name %} に支払う場合、利便性とセキュリティを最適化するために、その Organization および支払い設定ができます。' +title: Setting up paid organizations for procurement companies +shortTitle: Paid organizations for procurement companies +intro: 'If you pay for {% data variables.product.product_name %} on behalf of a client, you can configure their organization and payment settings to optimize convenience and security.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies - - /articles/setting-up-and-paying-for-organizations-for-resellers/ - - /articles/setting-up-and-paying-for-organizations-for-procurement-companies/ + - /articles/setting-up-and-paying-for-organizations-for-resellers + - /articles/setting-up-and-paying-for-organizations-for-procurement-companies - /articles/setting-up-paid-organizations-for-procurement-companies versions: fpt: '*' diff --git a/translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md b/translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md index d629122ab7..067cab1c4a 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md @@ -2,9 +2,9 @@ title: Managing vulnerabilities in your project's dependencies intro: 'You can track your repository''s dependencies and receive {% data variables.product.prodname_dependabot_alerts %} when {% data variables.product.product_name %} detects vulnerable dependencies.' redirect_from: - - /articles/updating-your-project-s-dependencies/ - - /articles/updating-your-projects-dependencies/ - - /articles/managing-security-vulnerabilities-in-your-projects-dependencies/ + - /articles/updating-your-project-s-dependencies + - /articles/updating-your-projects-dependencies + - /articles/managing-security-vulnerabilities-in-your-projects-dependencies - /articles/managing-vulnerabilities-in-your-projects-dependencies - /github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies versions: diff --git a/translations/ja-JP/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md b/translations/ja-JP/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md index 96a96aa03f..7130649af7 100644 --- a/translations/ja-JP/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md +++ b/translations/ja-JP/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md @@ -1,13 +1,13 @@ --- -title: codespace がプライベートイメージレジストリにアクセスできるようにする -intro: 'シークレットを使用して、{% data variables.product.prodname_codespaces %} がプライベートイメージレジストリにアクセスできるようにすることができます' +title: Allowing your codespace to access a private image registry +intro: 'You can use secrets to allow {% data variables.product.prodname_codespaces %} to access a private image registry' versions: fpt: '*' ghec: '*' topics: - Codespaces product: '{% data reusables.gated-features.codespaces %}' -shortTitle: プライベートイメージレジストリ +shortTitle: Private image registry --- ## About private image registries and {% data variables.product.prodname_codespaces %} @@ -32,7 +32,7 @@ By default, when you publish a container image to {% data variables.product.prod This behavior is controlled by the **Inherit access from repo** option. **Inherit access from repo** is selected by default when publishing via {% data variables.product.prodname_actions %}, but not when publishing directly to {% data variables.product.prodname_dotcom %} Container Registry using a Personal Access Token (PAT). -If the **Inherit access from repo** option was not selected when the image was published, you can manually add the repository to the published container image's access controls. 詳しい情報については「[パッケージのアクセス制御と可視性](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)」を参照してください。 +If the **Inherit access from repo** option was not selected when the image was published, you can manually add the repository to the published container image's access controls. For more information, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)." ### Accessing an image published to the organization a codespace will be launched in @@ -52,15 +52,15 @@ We recommend publishing images via {% data variables.product.prodname_actions %} ## Accessing images stored in other container registries -If you are accessing a container image from a registry that isn't {% data variables.product.prodname_dotcom %} Container Registry, {% data variables.product.prodname_codespaces %} checks for the presence of three secrets, which define the server name, username, and personal access token (PAT) for a container registry. これらのシークレットが見つかった場合、{% data variables.product.prodname_codespaces %} はレジストリを codespace 内で使用できるようにします。 +If you are accessing a container image from a registry that isn't {% data variables.product.prodname_dotcom %} Container Registry, {% data variables.product.prodname_codespaces %} checks for the presence of three secrets, which define the server name, username, and personal access token (PAT) for a container registry. If these secrets are found, {% data variables.product.prodname_codespaces %} will make the registry available inside your codespace. - `<*>_CONTAINER_REGISTRY_SERVER` - `<*>_CONTAINER_REGISTRY_USER` - `<*>_CONTAINER_REGISTRY_PASSWORD` -シークレットは、ユーザ、リポジトリ、または Organization レベルで保存できるため、異なる Codespaces 間で安全に共有できます。 When you create a set of secrets for a private image registry, you need to replace the "<*>" in the name with a consistent identifier. 詳しい情報については、「[Codespaces の暗号化されたシークレットを管理する](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)」および「[Codespaces のリポジトリと Organization の暗号化されたシークレットを管理する](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)」を参照してください。 +You can store secrets at the user, repository, or organization-level, allowing you to share them securely between different codespaces. When you create a set of secrets for a private image registry, you need to replace the "<*>" in the name with a consistent identifier. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)" and "[Managing encrypted secrets for your repository and organization for Codespaces](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)." -If you are setting the secrets at the user or organization level, make sure to assign those secrets to the repository you'll be creating the codespace in by choosing an access policy from the dropdown list. +If you are setting the secrets at the user or organization level, make sure to assign those secrets to the repository you'll be creating the codespace in by choosing an access policy from the dropdown list. ![Image registry secret example](/assets/images/help/codespaces/secret-repository-access.png) @@ -74,12 +74,38 @@ ACR_CONTAINER_REGISTRY_USER = acr-user-here ACR_CONTAINER_REGISTRY_PASSWORD = <PAT> ``` -For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." +For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." Note that accessing AWS Elastic Container Registry (ECR) is different. ![Image registry secret example](/assets/images/help/settings/codespaces-image-registry-secret-example.png) Once you've added the secrets, you may need to stop and then start the codespace you are in for the new environment variables to be passed into the container. For more information, see "[Suspending or stopping a codespace](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)." +#### Accessing AWS Elastic Container Registry + +To access AWS Elastic Container Registry (ECR), you can provide an AWS access key ID and secret key, and {% data variables.product.prodname_dotcom %} can retrieve an access token for you and log in on your behalf. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = <AWS_ACCESS_KEY_ID> +*_container_REGISTRY_PASSWORD = <AWS_SECRET_KEY> +``` + +You must also ensure you have the appropriate AWS IAM permissions to perform the credential swap (e.g. `sts:GetServiceBearerToken`) as well as the ECR read operation (either `AmazonEC2ContainerRegistryFullAccess` or `ReadOnlyAccess`). + +Alternatively, if you don't want GitHub to perform the credential swap on your behalf, you can provide an authorization token fetched via AWS's APIs or CLI. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = AWS +*_container_REGISTRY_PASSWORD = <TOKEN> +``` + +Since these tokens are short lived and need to be refreshed periodically, we recommend providing an access key ID and secret. + +While these secrets can have any name, so long as the `*_CONTAINER_REGISTRY_SERVER` is an ECR URL, we recommend using `ECR_CONTAINER_REGISTRY_*` unless you are dealing with multiple ECR registries. + +For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." + ### Common image registry servers Some of the common image registry servers are listed below: @@ -90,6 +116,6 @@ Some of the common image registry servers are listed below: - [AWS Elastic Container Registry](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html) - `<aws_account_id>.dkr.ecr.<region>.amazonaws.com` - [Google Cloud Container Registry](https://cloud.google.com/container-registry/docs/overview#registries) - `gcr.io` (US), `eu.gcr.io` (EU), `asia.gcr.io` (Asia) -#### Accessing AWS Elastic Container Registry +## Debugging private image registry access -If you want to access AWS Elastic Container Registry (ECR), you must provide an AWS authorization token in the `ECR_CONTAINER_REGISTRY_PASSWORD`. This authorization token is not the same as your secret key. You can obtain an AWS authorization token by using AWS's APIs or CLI. These tokens are short lived and will need to be refreshed periodically. For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." +If you are having trouble pulling an image from a private image registry, make sure you are able to run `docker login -u <user> -p <password> <server>`, using the values of the secrets defined above. If login fails, ensure that the login credentials are valid and that you have the apprioriate permissions on the server to fetch a container image. If login succeeds, make sure that these values are copied appropriately into the right {% data variables.product.prodname_codespaces %} secrets, either at the user, repository, or organization level and try again. \ No newline at end of file diff --git a/translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md b/translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md index 4ddd9466a3..6df3c42808 100644 --- a/translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md +++ b/translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md @@ -18,12 +18,12 @@ A codespace will stop running after a period of inactivity. You can specify the {% endwarning %} -## Setting your default timeout - {% include tool-switcher %} {% webui %} +## Setting your default timeout + {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.codespaces-tab %} 1. Under "Default idle timeout", enter the time that you want, then click **Save**. The time must be between 5 minutes and 240 minutes (4 hours). @@ -33,14 +33,16 @@ A codespace will stop running after a period of inactivity. You can specify the {% cli %} +## Setting your timeout period + {% data reusables.cli.cli-learn-more %} -To set the timeout period, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (5 hours). +To set the timeout period when you create a codespace, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (4 hours). ```shell gh codespace create --idle-timeout 90m ``` -If you do not specify a timeout period when creating a codespace, then your default timeout period will be used. You cannot currently specify a default timeout period for all future codespaces through {% data variables.product.prodname_cli %}. +If you don't specify a timeout period when you create a codespace, then the default timeout period will be used. For information about setting a default timeout period, click the "Web browser" tab on this page. You can't currently specify a default timeout period through {% data variables.product.prodname_cli %}. {% endcli %} diff --git a/translations/ja-JP/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md b/translations/ja-JP/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md index f534a02538..7e68cd8fd1 100644 --- a/translations/ja-JP/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md +++ b/translations/ja-JP/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md @@ -37,10 +37,19 @@ By default, a codespace can only access the repository from which it was created {% data reusables.organizations.click-codespaces %} 1. Under "User permissions", select one of the following options: - * **Allow for all users** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. * **Selected users** to select specific organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members and outside collaborators** to allow all your organization members as well as outside collaborators to use {% data variables.product.prodname_codespaces %}. - ![Radio buttons for "User permissions"](/assets/images/help/codespaces/organization-user-permission-settings.png) + ![Radio buttons for "User permissions"](/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png) + + {% note %} + + **Note:** When you select **Allow for all members and outside collaborators**, all outside collaborators who have been added to specific repositories can create and use {% data variables.product.prodname_codespaces %}. Your organization will be billed for all usage incurred by outside collaborators. For more information on managing outside collaborators, see "[About outside collaborators](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization#about-outside-collaborators)." + + {% endnote %} + +1. Click **Save**. ## Disabling {% data variables.product.prodname_codespaces %} for your organization diff --git a/translations/ja-JP/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md b/translations/ja-JP/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md index 2039e69535..cd8481cdd1 100644 --- a/translations/ja-JP/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md +++ b/translations/ja-JP/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md @@ -1,9 +1,9 @@ --- -title: 混乱を生むコメントを管理する -intro: 'Issue、プルリクエスト、 およびコミットに対するコメントを{% ifversion fpt or ghec %}非表示、編集{% else %}編集{% endif %}、削除できます。' +title: Managing disruptive comments +intro: 'You can {% ifversion fpt or ghec %}hide, edit,{% else %}edit{% endif %} or delete comments on issues, pull requests, and commits.' redirect_from: - - /articles/editing-a-comment/ - - /articles/deleting-a-comment/ + - /articles/editing-a-comment + - /articles/deleting-a-comment - /articles/managing-disruptive-comments - /github/building-a-strong-community/managing-disruptive-comments versions: @@ -13,72 +13,79 @@ versions: ghec: '*' topics: - Community -shortTitle: コメントの管理 +shortTitle: Manage comments --- -## コメントを非表示にする +## Hiding a comment -リポジトリに対する書き込み権限があるユーザは、Issue、プルリクエスト、 およびコミットに対するコメントを非表示にすることができます。 +Anyone with write access to a repository can hide comments on issues, pull requests, and commits. -1 つのディスカッションに集中し、プルリクエストのナビゲーションとレビューがしやすいように、トピックから外れている、古い、または解決済みのコメントは非表示にすることができます。 非表示のコメントは最小化されますが、リポジトリに対する読み取りアクセスがあるユーザは展開することができます。 +If a comment is off-topic, outdated, or resolved, you may want to hide a comment to keep a discussion focused or make a pull request easier to navigate and review. Hidden comments are minimized but people with read access to the repository can expand them. -![最小化されたコメント](/assets/images/help/repository/hidden-comment.png) +![Minimized comment](/assets/images/help/repository/hidden-comment.png) -1. 非表示にするコメントに移動します。 -2. コメントの右上隅にある {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} をクリックしてから、[**Hide**] をクリックします。 ![編集、非表示、削除のオプションが表示されている水平の kebab アイコンとコメント モデレーション メニュー](/assets/images/help/repository/comment-menu.png) -3. [Choose a reason] ドロップダウン メニューで、コメントを非表示にする理由をクリックします。 次に、[**Hide comment**] をクリックします。 +1. Navigate to the comment you'd like to hide. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Hide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete options](/assets/images/help/repository/comment-menu.png) +3. Using the "Choose a reason" drop-down menu, click a reason to hide the comment. Then click, **Hide comment**. {% ifversion fpt or ghec %} - ![[Choose reason for hiding comment] ドロップダウンメニュー](/assets/images/help/repository/choose-reason-for-hiding-comment.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment.png) {% else %} - ![[Choose reason for hiding comment] ドロップダウンメニュー](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) {% endif %} -## コメントを再表示する +## Unhiding a comment -リポジトリに対する書き込み権限があるユーザは、Issue、プルリクエスト、 およびコミットに対するコメントを再表示することができます。 +Anyone with write access to a repository can unhide comments on issues, pull requests, and commits. -1. 再表示するコメントに移動します。 -2. コメントの右上隅にある [**{% octicon "fold" aria-label="The fold icon" %}Show comment**] をクリックします。 ![コメント テキストの表示](/assets/images/help/repository/hidden-comment-show.png) -3. 展開したコメントの右側にある {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}をクリックしてから、[**Unhide**] をクリックします。 ![編集、再表示、削除のオプションが表示されている水平の kebab アイコンとコメント モデレーションメニュー](/assets/images/help/repository/comment-menu-hidden.png) +1. Navigate to the comment you'd like to unhide. +2. In the upper-right corner of the comment, click **{% octicon "fold" aria-label="The fold icon" %} Show comment**. + ![Show comment text](/assets/images/help/repository/hidden-comment-show.png) +3. On the right side of the expanded comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Unhide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, unhide, delete options](/assets/images/help/repository/comment-menu-hidden.png) -## コメントを編集する +## Editing a comment -リポジトリに対する書き込み権限があるユーザは、Issue、プルリクエスト、およびコミットに対するコメントを編集することができます。 +Anyone with write access to a repository can edit comments on issues, pull requests, and commits. -会話に関係がない、コミュニティの行動規範{% ifversion fpt or ghec %}または GitHub の[コミュニティ ガイドライン](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}に違反している場合は、コメントを編集して内容を削除するのが妥当です。 +It's appropriate to edit a comment and remove content that doesn't contribute to the conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -コメントを編集する際には、削除した内容があった元の場所がわかるように記録し、オプションで削除の理由を示します。 +When you edit a comment, note the location that the content was removed from and optionally, the reason for removing it. -リポジトリの読み取りアクセスがあれば、誰でもコミットの編集履歴を見ることができます。 コメントの上部にある [**edited**] ドロップダウンには編集履歴があり、編集したユーザとタイムスタンプが表示されます。 +Anyone with read access to a repository can view a comment's edit history. The **edited** dropdown at the top of the comment contains a history of edits showing the user and timestamp for each edit. -![内容を削除編集したというメモを追加したコメント](/assets/images/help/repository/content-redacted-comment.png) +![Comment with added note that content was redacted](/assets/images/help/repository/content-redacted-comment.png) -コメントの作者とリポジトリの書き込みアクセスがあるユーザは、コメントの編集履歴から機密情報を削除できます。 詳しい情報については、「[コメントの変更を追跡する](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)」を参照してください。 +Comment authors and anyone with write access to a repository can also delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)." -1. 編集したいコメントに移動します。 -2. コメントの右上隅にある {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} をクリックし、次に [**Edit**] をクリックします。 ![編集、非表示、削除、レポートのオプションが表示されている水平の kebab アイコンとコメント モデレーション メニュー](/assets/images/help/repository/comment-menu.png) -3. コメント ウィンドウで、問題のある部分を削除し、その場所に `[REDACTED]` と入力します。 ![内容を削除したコメント ウィンドウ](/assets/images/help/issues/redacted-content-comment.png) -4. コメントの下部に、コメントを編集したことを示すメモを入力し、オプションで編集した理由も入力します。 ![内容を削除したというメモを追加したコメント ウィンドウ](/assets/images/help/issues/note-content-redacted-comment.png) -5. [**Update comment**] をクリックします。 +1. Navigate to the comment you'd like to edit. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Edit**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. In the comment window, delete the content you'd like to remove, then type `[REDACTED]` to replace it. + ![Comment window with redacted content](/assets/images/help/issues/redacted-content-comment.png) +4. At the bottom of the comment, type a note indicating that you have edited the comment, and optionally, why you edited the comment. + ![Comment window with added note that content was redacted](/assets/images/help/issues/note-content-redacted-comment.png) +5. Click **Update comment**. -## コメントを削除する +## Deleting a comment -リポジトリに対する書き込み権限があるユーザは、Issue、プルリクエスト、 およびコミットに対するコメントを削除することができます。 Organization オーナー、チームメンテナ、コメント作成者は、チームのページのコメントを削除することもできます。 +Anyone with write access to a repository can delete comments on issues, pull requests, and commits. Organization owners, team maintainers, and the comment author can also delete a comment on a team page. -コメントの削除は、モデレーターとしての最終手段です。 コメント全体が会話にとって建設的な内容ではない場合や、コミュニティの行動規範{% ifversion fpt or ghec %}または GitHub の[コミュニティ ガイドライン](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}に違反している場合は、コメントを削除するのが妥当です。 +Deleting a comment is your last resort as a moderator. It's appropriate to delete a comment if the entire comment adds no constructive content to a conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -コメントを削除すると、リポジトリに対する読み取りアクセスを持つユーザなら誰でも見ることのできるタイムラインイベントが作成されます。 ただし、コメントを削除したユーザの名前は、リポジトリへの書き込みアクセスを持つユーザにしか見えません。 書き込みアクセスを持たないユーザから見ると、タイムラインイベントは匿名化されています。 +Deleting a comment creates a timeline event that is visible to anyone with read access to the repository. However, the username of the person who deleted the comment is only visible to people with write access to the repository. For anyone without write access, the timeline event is anonymized. -![削除したコメントについて匿名化されたタイムラインイベント](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) +![Anonymized timeline event for a deleted comment](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) -Issue やプルリクエストで、会話に役立つ建設的な内容が部分的に含まれているコメントは、削除せず編集してください。 +If a comment contains some constructive content that adds to the conversation in the issue or pull request, you can edit the comment instead. {% note %} -**メモ:** Issue またはプルリクエストの最初のコメント (本文) は削除できません。 かわりに、Issue やプルリクエストの本文を編集して、不要な内容を削除してください。 +**Note:** The initial comment (or body) of an issue or pull request can't be deleted. Instead, you can edit issue and pull request bodies to remove unwanted content. {% endnote %} -1. 削除したいコメントに移動します。 -2. コメントの右上隅にある {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} をクリックしてから、[**Delete**] をクリックします。 ![編集、非表示、削除、レポートのオプションが表示されている水平の kebab アイコンとコメント モデレーション メニュー](/assets/images/help/repository/comment-menu.png) -3. オプションで、コメントを削除したことを示すコメントとその理由を入力します。 +1. Navigate to the comment you'd like to delete. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Delete**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. Optionally, write a comment noting that you deleted a comment and why. diff --git a/translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md b/translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md index 1869c29f85..cf34ff73d0 100644 --- a/translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md +++ b/translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md @@ -1,121 +1,120 @@ --- -title: キーボードショートカット -intro: '{% data variables.product.prodname_desktop %}ではキーボードショートカットを利用できます。' +title: Keyboard shortcuts +intro: 'You can use keyboard shortcuts in {% data variables.product.prodname_desktop %}.' redirect_from: - - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop/ + - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop - /desktop/getting-started-with-github-desktop/keyboard-shortcuts - /desktop/installing-and-configuring-github-desktop/keyboard-shortcuts versions: fpt: '*' --- - {% mac %} -macOSでのGitHub Desktopキーボードショートカット +GitHub Desktop keyboard shortcuts on macOS -## サイト全体のショートカット +## Site wide shortcuts -| キーボードショートカット | 説明 | -| ------------------------------------ | ---------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>,</kbd> | 設定に移動 | -| <kbd>⌘</kbd><kbd>H</kbd> | {% data variables.product.prodname_desktop %}のアプリケーションの非表示 | -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | 他の全てのアプリケーションの非表示 | -| <kbd>⌘</kbd><kbd>Q</kbd> | {% data variables.product.prodname_desktop %}を終了 | -| <kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | フルスクリーン表示をオン/オフにする | -| <kbd>⌘</kbd><kbd>0</kbd> | ズームをデフォルトのテキストサイズにリセット | -| <kbd>⌘</kbd><kbd>=</kbd> | ズームインして、テキストとグラフィックスを大きくする | -| <kbd>⌘</kbd><kbd>-</kbd> | ズームアウトして、テキストとグラフィックスを小さくする | -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | デベロッパーツールの表示/非表示 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>,</kbd> | Go to Preferences +|<kbd>⌘</kbd><kbd>H</kbd> | Hide the {% data variables.product.prodname_desktop %} application +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | Hide all other applications +|<kbd>⌘</kbd><kbd>Q</kbd> | Quit {% data variables.product.prodname_desktop %} +|<kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | Toggle full screen view +|<kbd>⌘</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>⌘</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>⌘</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | Toggle Developer Tools -## リポジトリ +## Repositories -| キーボードショートカット | 説明 | -| ------------------------------------ | ---------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>N</kbd> | 新規リポジトリの追加 | -| <kbd>⌘</kbd><kbd>O</kbd> | ローカルリポジトリの追加 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | {% data variables.product.prodname_dotcom %}からリポジトリをクローンする | -| <kbd>⌘</kbd><kbd>T</kbd> | リポジトリリストの表示 | -| <kbd>⌘</kbd><kbd>P</kbd> | 最新コミットを{% data variables.product.prodname_dotcom %}にプッシュ | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | 最新変更を{% data variables.product.prodname_dotcom %}からプルダウン | -| <kbd>⌘</kbd><kbd>⌫</kbd> | 既存リポジトリの削除 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | {% data variables.product.prodname_dotcom %}にリポジトリを表示 | -| <kbd>⌃</kbd><kbd>`</kbd> | リポジトリをお好みのターミナルツールで開く | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | Finderでリポジトリを表示 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | リポジトリをお好みのエディタツールで開く | -| <kbd>⌘</kbd><kbd>I</kbd> | {% data variables.product.prodname_dotcom %}でIssueを作成 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>N</kbd> | Add a new repository +|<kbd>⌘</kbd><kbd>O</kbd> | Add a local repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>⌘</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>⌫</kbd> | Remove an existing repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>⌃</kbd><kbd>`</kbd> | Open repository in your preferred terminal tool +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | Show the repository in Finder +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>⌘</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} -## ブランチ +## Branches -| キーボードショートカット | 説明 | -| ------------------------------------ | ---------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>1</kbd> | コミットする前に全ての変更を表示 | -| <kbd>⌘</kbd><kbd>2</kbd> | コミット履歴を表示 | -| <kbd>⌘</kbd><kbd>B</kbd> | 全てのブランチを表示 | -| <kbd>⌘</kbd><kbd>G</kbd> | コミット概要のフィールドに移動 | -| <kbd>⌘</kbd><kbd>Enter</kbd> | 概要または説明フィールドがアクティブな場合に変更をコミット | -| <kbd>space</kbd> | ハイライトされたすべてのファイルを選択または選択解除 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | 新規ブランチの作成 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | 現在ブランチの名前を変更 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | 現在ブランチの削除 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | デフォルトブランチから更新 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | 既存のブランチと比較 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | 現在ブランチにマージ | -| <kbd>⌃</kbd><kbd>H</kbd> | stash した変更の表示または非表示 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | {% data variables.product.prodname_dotcom %}のブランチを比較 | -| <kbd>⌘</kbd><kbd>R</kbd> | 現在のプルリクエストを{% data variables.product.prodname_dotcom %}に表示 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>⌘</kbd><kbd>2</kbd> | Show your commit history +|<kbd>⌘</kbd><kbd>B</kbd> | Show all your branches +|<kbd>⌘</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>⌘</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | Create a new branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | Update from default branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>⌃</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endmac %} {% windows %} -WindowsでのGitHub Desktopキーボードのショートカット +GitHub Desktop keyboard shortcuts on Windows -## サイト全体のショートカット +## Site wide shortcuts -| キーボードショートカット | 説明 | -| ------------------------------------------- | --------------------------- | -| <kbd>Ctrl</kbd><kbd>,</kbd> | 設定に移動 | -| <kbd>F11</kbd> | フルスクリーン表示をオン/オフにする | -| <kbd>Ctrl</kbd><kbd>0</kbd> | ズームをデフォルトのテキストサイズにリセット | -| <kbd>Ctrl</kbd><kbd>=</kbd> | ズームインして、テキストとグラフィックスを大きくする | -| <kbd>Ctrl</kbd><kbd>-</kbd> | ズームアウトして、テキストとグラフィックスを小さくする | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | デベロッパーツールの表示/非表示 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>,</kbd> | Go to Options +|<kbd>F11</kbd> | Toggle full screen view +|<kbd>Ctrl</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>Ctrl</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>Ctrl</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | Toggle Developer Tools -## リポジトリ +## Repositories -| キーボード ショート カット | 説明 | -| ------------------------------------------- | ---------------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>N</kbd> | 新規リポジトリの追加 | -| <kbd>Ctrl</kbd><kbd>O</kbd> | ローカルリポジトリの追加 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | {% data variables.product.prodname_dotcom %}からリポジトリをクローンする | -| <kbd>Ctrl</kbd><kbd>T</kbd> | リポジトリリストの表示 | -| <kbd>Ctrl</kbd><kbd>P</kbd> | 最新コミットを{% data variables.product.prodname_dotcom %}にプッシュ | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | 最新変更を{% data variables.product.prodname_dotcom %}からプルダウン | -| <kbd>Ctrl</kbd><kbd>Delete</kbd> | 既存リポジトリの削除 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | {% data variables.product.prodname_dotcom %}にリポジトリを表示 | -| <kbd>Ctrl</kbd><kbd>`</kbd> | リポジトリをお好みのコマンドラインルツールで開く | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | Explorerでリポジトリを表示 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | リポジトリをお好みのエディタツールで開く | -| <kbd>Ctrl</kbd><kbd>I</kbd> | {% data variables.product.prodname_dotcom %}でIssueを作成 | +| Keyboard Shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>N</kbd> | Add a new repository +|<kbd>Ctrl</kbd><kbd>O</kbd> | Add a local repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>Ctrl</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Delete</kbd> | Remove an existing repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>`</kbd> | Open repository in your preferred command line tool +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | Show the repository in Explorer +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>Ctrl</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} -## ブランチ +## Branches -| キーボードショートカット | 説明 | -| ------------------------------------------- | ---------------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>1</kbd> | コミットする前に全ての変更を表示 | -| <kbd>Ctrl</kbd><kbd>2</kbd> | コミット履歴を表示 | -| <kbd>Ctrl</kbd><kbd>B</kbd> | 全てのブランチを表示 | -| <kbd>Ctrl</kbd><kbd>G</kbd> | コミット概要のフィールドに移動 | -| <kbd>Ctrl</kbd><kbd>Enter</kbd> | 概要または説明フィールドがアクティブな場合に変更をコミット | -| <kbd>space</kbd> | ハイライトされたすべてのファイルを選択または選択解除 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | 新規ブランチの作成 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | 現在ブランチの名前を変更 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | 現在ブランチの削除 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | デフォルトブランチから更新 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | 既存のブランチと比較 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | 現在ブランチにマージ | -| <kbd>Ctrl</kbd><kbd>H</kbd> | stash した変更の表示または非表示 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | {% data variables.product.prodname_dotcom %}のブランチを比較 | -| <kbd>Ctrl</kbd><kbd>R</kbd> | 現在のプルリクエストを{% data variables.product.prodname_dotcom %}に表示 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>Ctrl</kbd><kbd>2</kbd> | Show your commit history +|<kbd>Ctrl</kbd><kbd>B</kbd> | Show all your branches +|<kbd>Ctrl</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>Ctrl</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | Create a new branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | Update from default branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>Ctrl</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endwindows %} diff --git a/translations/ja-JP/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md b/translations/ja-JP/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md index cc15507cf3..1ea8edbf72 100644 --- a/translations/ja-JP/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md +++ b/translations/ja-JP/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md @@ -239,16 +239,16 @@ While most of your API interaction should occur using your server-to-server inst #### Deployment Statuses -* [List deployment statuses](/rest/reference/repos#list-deployment-statuses) -* [Create a deployment status](/rest/reference/repos#create-a-deployment-status) -* [Get a deployment status](/rest/reference/repos#get-a-deployment-status) +* [List deployment statuses](/rest/reference/deployments#list-deployment-statuses) +* [Create a deployment status](/rest/reference/deployments#create-a-deployment-status) +* [Get a deployment status](/rest/reference/deployments#get-a-deployment-status) #### Deployments -* [List deployments](/rest/reference/repos#list-deployments) -* [Create a deployment](/rest/reference/repos#create-a-deployment) -* [Get a deployment](/rest/reference/repos#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} -* [Delete a deployment](/rest/reference/repos#delete-a-deployment){% endif %} +* [List deployments](/rest/reference/deployments#list-deployments) +* [Create a deployment](/rest/reference/deployments#create-a-deployment) +* [Get a deployment](/rest/reference/deployments#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} +* [Delete a deployment](/rest/reference/deployments#delete-a-deployment){% endif %} #### Events @@ -609,7 +609,7 @@ While most of your API interaction should occur using your server-to-server inst * [Get a repository](/rest/reference/repos#get-a-repository) * [Update a repository](/rest/reference/repos#update-a-repository) * [Delete a repository](/rest/reference/repos#delete-a-repository) -* [Compare two commits](/rest/reference/repos#compare-two-commits) +* [Compare two commits](/rest/reference/commits#compare-two-commits) * [List repository contributors](/rest/reference/repos#list-repository-contributors) * [List forks](/rest/reference/repos#list-forks) * [Create a fork](/rest/reference/repos#create-a-fork) @@ -641,68 +641,68 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Branches -* [List branches](/rest/reference/repos#list-branches) -* [Get a branch](/rest/reference/repos#get-a-branch) -* [Get branch protection](/rest/reference/repos#get-branch-protection) -* [Update branch protection](/rest/reference/repos#update-branch-protection) -* [Delete branch protection](/rest/reference/repos#delete-branch-protection) -* [Get admin branch protection](/rest/reference/repos#get-admin-branch-protection) -* [Set admin branch protection](/rest/reference/repos#set-admin-branch-protection) -* [Delete admin branch protection](/rest/reference/repos#delete-admin-branch-protection) -* [Get pull request review protection](/rest/reference/repos#get-pull-request-review-protection) -* [Update pull request review protection](/rest/reference/repos#update-pull-request-review-protection) -* [Delete pull request review protection](/rest/reference/repos#delete-pull-request-review-protection) -* [Get commit signature protection](/rest/reference/repos#get-commit-signature-protection) -* [Create commit signature protection](/rest/reference/repos#create-commit-signature-protection) -* [Delete commit signature protection](/rest/reference/repos#delete-commit-signature-protection) -* [Get status checks protection](/rest/reference/repos#get-status-checks-protection) -* [Update status check protection](/rest/reference/repos#update-status-check-protection) -* [Remove status check protection](/rest/reference/repos#remove-status-check-protection) -* [Get all status check contexts](/rest/reference/repos#get-all-status-check-contexts) -* [Add status check contexts](/rest/reference/repos#add-status-check-contexts) -* [Set status check contexts](/rest/reference/repos#set-status-check-contexts) -* [Remove status check contexts](/rest/reference/repos#remove-status-check-contexts) -* [Get access restrictions](/rest/reference/repos#get-access-restrictions) -* [Delete access restrictions](/rest/reference/repos#delete-access-restrictions) +* [List branches](/rest/reference/branches#list-branches) +* [Get a branch](/rest/reference/branches#get-a-branch) +* [Get branch protection](/rest/reference/branches#get-branch-protection) +* [Update branch protection](/rest/reference/branches#update-branch-protection) +* [Delete branch protection](/rest/reference/branches#delete-branch-protection) +* [Get admin branch protection](/rest/reference/branches#get-admin-branch-protection) +* [Set admin branch protection](/rest/reference/branches#set-admin-branch-protection) +* [Delete admin branch protection](/rest/reference/branches#delete-admin-branch-protection) +* [Get pull request review protection](/rest/reference/branches#get-pull-request-review-protection) +* [Update pull request review protection](/rest/reference/branches#update-pull-request-review-protection) +* [Delete pull request review protection](/rest/reference/branches#delete-pull-request-review-protection) +* [Get commit signature protection](/rest/reference/branches#get-commit-signature-protection) +* [Create commit signature protection](/rest/reference/branches#create-commit-signature-protection) +* [Delete commit signature protection](/rest/reference/branches#delete-commit-signature-protection) +* [Get status checks protection](/rest/reference/branches#get-status-checks-protection) +* [Update status check protection](/rest/reference/branches#update-status-check-protection) +* [Remove status check protection](/rest/reference/branches#remove-status-check-protection) +* [Get all status check contexts](/rest/reference/branches#get-all-status-check-contexts) +* [Add status check contexts](/rest/reference/branches#add-status-check-contexts) +* [Set status check contexts](/rest/reference/branches#set-status-check-contexts) +* [Remove status check contexts](/rest/reference/branches#remove-status-check-contexts) +* [Get access restrictions](/rest/reference/branches#get-access-restrictions) +* [Delete access restrictions](/rest/reference/branches#delete-access-restrictions) * [List teams with access to the protected branch](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) -* [Add team access restrictions](/rest/reference/repos#add-team-access-restrictions) -* [Set team access restrictions](/rest/reference/repos#set-team-access-restrictions) -* [Remove team access restriction](/rest/reference/repos#remove-team-access-restrictions) +* [Add team access restrictions](/rest/reference/branches#add-team-access-restrictions) +* [Set team access restrictions](/rest/reference/branches#set-team-access-restrictions) +* [Remove team access restriction](/rest/reference/branches#remove-team-access-restrictions) * [List user restrictions of protected branch](/rest/reference/repos#list-users-with-access-to-the-protected-branch) -* [Add user access restrictions](/rest/reference/repos#add-user-access-restrictions) -* [Set user access restrictions](/rest/reference/repos#set-user-access-restrictions) -* [Remove user access restrictions](/rest/reference/repos#remove-user-access-restrictions) -* [Merge a branch](/rest/reference/repos#merge-a-branch) +* [Add user access restrictions](/rest/reference/branches#add-user-access-restrictions) +* [Set user access restrictions](/rest/reference/branches#set-user-access-restrictions) +* [Remove user access restrictions](/rest/reference/branches#remove-user-access-restrictions) +* [Merge a branch](/rest/reference/branches#merge-a-branch) #### Repository Collaborators -* [List repository collaborators](/rest/reference/repos#list-repository-collaborators) -* [Check if a user is a repository collaborator](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) -* [Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator) -* [Remove a repository collaborator](/rest/reference/repos#remove-a-repository-collaborator) -* [Get repository permissions for a user](/rest/reference/repos#get-repository-permissions-for-a-user) +* [List repository collaborators](/rest/reference/collaborators#list-repository-collaborators) +* [Check if a user is a repository collaborator](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) +* [Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator) +* [Remove a repository collaborator](/rest/reference/collaborators#remove-a-repository-collaborator) +* [Get repository permissions for a user](/rest/reference/collaborators#get-repository-permissions-for-a-user) #### Repository Commit Comments -* [List commit comments for a repository](/rest/reference/repos#list-commit-comments-for-a-repository) -* [Get a commit comment](/rest/reference/repos#get-a-commit-comment) -* [Update a commit comment](/rest/reference/repos#update-a-commit-comment) -* [Delete a commit comment](/rest/reference/repos#delete-a-commit-comment) -* [List commit comments](/rest/reference/repos#list-commit-comments) -* [Create a commit comment](/rest/reference/repos#create-a-commit-comment) +* [List commit comments for a repository](/rest/reference/commits#list-commit-comments-for-a-repository) +* [Get a commit comment](/rest/reference/commits#get-a-commit-comment) +* [Update a commit comment](/rest/reference/commits#update-a-commit-comment) +* [Delete a commit comment](/rest/reference/commits#delete-a-commit-comment) +* [List commit comments](/rest/reference/commits#list-commit-comments) +* [Create a commit comment](/rest/reference/commits#create-a-commit-comment) #### Repository Commits -* [List commits](/rest/reference/repos#list-commits) -* [Get a commit](/rest/reference/repos#get-a-commit) -* [List branches for head commit](/rest/reference/repos#list-branches-for-head-commit) +* [List commits](/rest/reference/commits#list-commits) +* [Get a commit](/rest/reference/commits#get-a-commit) +* [List branches for head commit](/rest/reference/commits#list-branches-for-head-commit) * [List pull requests associated with commit](/rest/reference/repos#list-pull-requests-associated-with-commit) #### Repository Community * [Get the code of conduct for a repository](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) {% ifversion fpt or ghec %} -* [Get community profile metrics](/rest/reference/repos#get-community-profile-metrics) +* [Get community profile metrics](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif %} #### Repository Contents @@ -722,40 +722,40 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Hooks -* [List repository webhooks](/rest/reference/repos#list-repository-webhooks) -* [Create a repository webhook](/rest/reference/repos#create-a-repository-webhook) -* [Get a repository webhook](/rest/reference/repos#get-a-repository-webhook) -* [Update a repository webhook](/rest/reference/repos#update-a-repository-webhook) -* [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) -* [Ping a repository webhook](/rest/reference/repos#ping-a-repository-webhook) +* [List repository webhooks](/rest/reference/webhooks#list-repository-webhooks) +* [Create a repository webhook](/rest/reference/webhooks#create-a-repository-webhook) +* [Get a repository webhook](/rest/reference/webhooks#get-a-repository-webhook) +* [Update a repository webhook](/rest/reference/webhooks#update-a-repository-webhook) +* [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) +* [Ping a repository webhook](/rest/reference/webhooks#ping-a-repository-webhook) * [Test the push repository webhook](/rest/reference/repos#test-the-push-repository-webhook) #### Repository Invitations -* [List repository invitations](/rest/reference/repos#list-repository-invitations) -* [Update a repository invitation](/rest/reference/repos#update-a-repository-invitation) -* [Delete a repository invitation](/rest/reference/repos#delete-a-repository-invitation) -* [List repository invitations for the authenticated user](/rest/reference/repos#list-repository-invitations-for-the-authenticated-user) -* [Accept a repository invitation](/rest/reference/repos#accept-a-repository-invitation) -* [Decline a repository invitation](/rest/reference/repos#decline-a-repository-invitation) +* [List repository invitations](/rest/reference/collaborators#list-repository-invitations) +* [Update a repository invitation](/rest/reference/collaborators#update-a-repository-invitation) +* [Delete a repository invitation](/rest/reference/collaborators#delete-a-repository-invitation) +* [List repository invitations for the authenticated user](/rest/reference/collaborators#list-repository-invitations-for-the-authenticated-user) +* [Accept a repository invitation](/rest/reference/collaborators#accept-a-repository-invitation) +* [Decline a repository invitation](/rest/reference/collaborators#decline-a-repository-invitation) #### Repository Keys -* [List deploy keys](/rest/reference/repos#list-deploy-keys) -* [Create a deploy key](/rest/reference/repos#create-a-deploy-key) -* [Get a deploy key](/rest/reference/repos#get-a-deploy-key) -* [Delete a deploy key](/rest/reference/repos#delete-a-deploy-key) +* [List deploy keys](/rest/reference/deployments#list-deploy-keys) +* [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) +* [Get a deploy key](/rest/reference/deployments#get-a-deploy-key) +* [Delete a deploy key](/rest/reference/deployments#delete-a-deploy-key) #### Repository Pages -* [Get a GitHub Pages site](/rest/reference/repos#get-a-github-pages-site) -* [Create a GitHub Pages site](/rest/reference/repos#create-a-github-pages-site) -* [Update information about a GitHub Pages site](/rest/reference/repos#update-information-about-a-github-pages-site) -* [Delete a GitHub Pages site](/rest/reference/repos#delete-a-github-pages-site) -* [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) -* [Request a GitHub Pages build](/rest/reference/repos#request-a-github-pages-build) -* [Get GitHub Pages build](/rest/reference/repos#get-github-pages-build) -* [Get latest pages build](/rest/reference/repos#get-latest-pages-build) +* [Get a GitHub Pages site](/rest/reference/pages#get-a-github-pages-site) +* [Create a GitHub Pages site](/rest/reference/pages#create-a-github-pages-site) +* [Update information about a GitHub Pages site](/rest/reference/pages#update-information-about-a-github-pages-site) +* [Delete a GitHub Pages site](/rest/reference/pages#delete-a-github-pages-site) +* [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) +* [Request a GitHub Pages build](/rest/reference/pages#request-a-github-pages-build) +* [Get GitHub Pages build](/rest/reference/pages#get-github-pages-build) +* [Get latest pages build](/rest/reference/pages#get-latest-pages-build) {% ifversion ghes %} #### Repository Pre Receive Hooks @@ -782,11 +782,11 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Stats -* [Get the weekly commit activity](/rest/reference/repos#get-the-weekly-commit-activity) -* [Get the last year of commit activity](/rest/reference/repos#get-the-last-year-of-commit-activity) -* [Get all contributor commit activity](/rest/reference/repos#get-all-contributor-commit-activity) -* [Get the weekly commit count](/rest/reference/repos#get-the-weekly-commit-count) -* [Get the hourly commit count for each day](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +* [Get the weekly commit activity](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +* [Get the last year of commit activity](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +* [Get all contributor commit activity](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +* [Get the weekly commit count](/rest/reference/repository-metrics#get-the-weekly-commit-count) +* [Get the hourly commit count for each day](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) {% ifversion fpt or ghec %} #### Repository Vulnerability Alerts @@ -812,9 +812,9 @@ While most of your API interaction should occur using your server-to-server inst #### Statuses -* [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) -* [List commit statuses for a reference](/rest/reference/repos#list-commit-statuses-for-a-reference) -* [Create a commit status](/rest/reference/repos#create-a-commit-status) +* [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) +* [List commit statuses for a reference](/rest/reference/commits#list-commit-statuses-for-a-reference) +* [Create a commit status](/rest/reference/commits#create-a-commit-status) #### Team Discussions @@ -837,10 +837,10 @@ While most of your API interaction should occur using your server-to-server inst {% ifversion fpt or ghec %} #### Traffic -* [Get repository clones](/rest/reference/repos#get-repository-clones) -* [Get top referral paths](/rest/reference/repos#get-top-referral-paths) -* [Get top referral sources](/rest/reference/repos#get-top-referral-sources) -* [Get page views](/rest/reference/repos#get-page-views) +* [Get repository clones](/rest/reference/repository-metrics#get-repository-clones) +* [Get top referral paths](/rest/reference/repository-metrics#get-top-referral-paths) +* [Get top referral sources](/rest/reference/repository-metrics#get-top-referral-sources) +* [Get page views](/rest/reference/repository-metrics#get-page-views) {% endif %} {% ifversion fpt or ghec %} diff --git a/translations/ja-JP/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md b/translations/ja-JP/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md index 37d6d53b63..3b4da45422 100644 --- a/translations/ja-JP/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md +++ b/translations/ja-JP/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md @@ -97,7 +97,7 @@ Unlike OAuth apps, GitHub Apps have targeted permissions that allow them to requ | GitHub Apps | OAuth Apps | | ----- | ----------- | -| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/repos#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | +| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | | The token is used as the HTTP password. | The token is used as the HTTP username. | ## Machine vs. bot accounts diff --git a/translations/ja-JP/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md b/translations/ja-JP/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md index 81c514324b..c50c580dbb 100644 --- a/translations/ja-JP/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md +++ b/translations/ja-JP/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md @@ -98,7 +98,7 @@ You'll need to replace `YOUR_APP_NAME` with the name of your GitHub App, `ID_OF_ ### Remove any unnecessary repository hooks -Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) on those repositories that were created by your OAuth App. +Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) on those repositories that were created by your OAuth App. ### Encourage users to revoke access to your OAuth app diff --git a/translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md b/translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md index 12c6f16468..37bfe4dd23 100644 --- a/translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md +++ b/translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md @@ -1,11 +1,11 @@ --- -title: アプリケーションの購入に対する支払いの受け取り -intro: '各月の終わりに、{% data variables.product.prodname_marketplace %}リストに対する支払いを受け取ります。' +title: Receiving payment for app purchases +intro: 'At the end of each month, you''ll receive payment for your {% data variables.product.prodname_marketplace %} listing.' redirect_from: - - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings/ + - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /developers/github-marketplace/receiving-payment-for-app-purchases versions: @@ -13,17 +13,16 @@ versions: ghec: '*' topics: - Marketplace -shortTitle: 支払いを受け取る +shortTitle: Receive payment --- +After your {% data variables.product.prodname_marketplace %} listing for an app with a paid plan is created and approved, you'll provide payment details to {% data variables.product.product_name %} as part of the financial onboarding process. -有料プランのあるアプリケーションが作成され、{% data variables.product.prodname_marketplace %}に掲載が承認された後、財務的オンボーディングプロセスの一環として支払い情報の詳細を{% data variables.product.product_name %}に提供します。 +Once your revenue reaches a minimum of 500 US dollars for the month, you'll receive an electronic payment from {% data variables.product.company_short %}. This will be the income from marketplace transactions minus the amount charged by {% data variables.product.company_short %} to cover their running costs. -収益が500米ドルに達した月に、{% data variables.product.company_short %}からの電子決済を受け取ります。 この金額は、Marketplaceの取引から、運営費として{% data variables.product.company_short %}が課した金額を差し引いたものとなります。 - -2021年1月1日より前の取引については、{% data variables.product.company_short %}は取引による収入のうち25%を差し引きます。 その後の取引については、{% data variables.product.company_short %}は5%のみ差し引きます。 この変更は、2021年1月末以降に受け取る支払いより反映されます。 +For transactions made before January 1, 2021, {% data variables.product.company_short %} retains 25% of transaction income. For transactions made after that date, only 5% is retained by {% data variables.product.company_short %}. This change will be reflected in payments received from the end of January 2021 onward. {% note %} -**注釈:** 現在の価格プランと支払い条件の詳細については、「[{% data variables.product.prodname_marketplace %} 開発者同意書](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)」を参照してください。 +**Note:** For details of the current pricing and payment terms, see "[{% data variables.product.prodname_marketplace %} developer agreement](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)." {% endnote %} diff --git a/translations/ja-JP/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/translations/ja-JP/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index d02f24f4a3..83686ec401 100644 --- a/translations/ja-JP/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/translations/ja-JP/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -327,7 +327,7 @@ Webhook events are triggered based on the specificity of the domain you register Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments). +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments). {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -352,11 +352,11 @@ Key | Type | Description Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment_status` |`object` | The [deployment status](/rest/reference/repos#list-deployment-statuses). +`deployment_status` |`object` | The [deployment status](/rest/reference/deployments#list-deployment-statuses). `deployment_status["state"]` |`string` | The new state. Can be `pending`, `success`, `failure`, or `error`. `deployment_status["target_url"]` |`string` | The optional link added to the status. `deployment_status["description"]`|`string` | The optional human-readable description added to the status. -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments) that this status is associated with. +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments) that this status is associated with. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -820,7 +820,7 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus Key | Type | Description ----|------|------------ `id` | `integer` | The unique identifier of the page build. -`build` | `object` | The [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) itself. +`build` | `object` | The [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) itself. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -846,7 +846,7 @@ Key | Type | Description ----|------|------------ `zen` | `string` | Random string of GitHub zen. `hook_id` | `integer` | The ID of the webhook that triggered the ping. -`hook` | `object` | The [webhook configuration](/rest/reference/repos#get-a-repository-webhook). +`hook` | `object` | The [webhook configuration](/rest/reference/webhooks#get-a-repository-webhook). `hook[app_id]` | `integer` | When you register a new {% data variables.product.prodname_github_app %}, {% data variables.product.product_name %} sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps/) an app. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} diff --git a/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md b/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md index 514bf5d42f..3249d81ea8 100644 --- a/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md +++ b/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md @@ -4,7 +4,7 @@ intro: 'Review common reasons that applications for the {% data variables.produc redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - - /articles/why-was-my-application-for-a-student-developer-pack-denied/ + - /articles/why-was-my-application-for-a-student-developer-pack-denied - /articles/why-wasn-t-my-application-for-a-student-developer-pack-approved - /articles/why-wasnt-my-application-for-a-student-developer-pack-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved diff --git a/translations/ja-JP/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/ja-JP/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 3ff59eee67..e1e2026fb4 100644 --- a/translations/ja-JP/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/ja-JP/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 @@ -1,29 +1,28 @@ --- -title: 教育者割引または研究者割引への応募 -intro: '教育者もしくは研究者は、Organization アカウントに対して無料で {% data variables.product.prodname_team %} を受けるために応募できます。' +title: Apply for an educator or researcher discount +intro: 'If you''re an educator or a researcher, you can apply to receive {% data variables.product.prodname_team %} for your organization account for free.' redirect_from: - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /github/teaching-and-learning-with-github-education/applying-for-an-educator-or-researcher-discount - - /articles/applying-for-a-classroom-discount/ - - /articles/applying-for-a-discount-for-your-school-club/ - - /articles/applying-for-an-academic-research-discount/ - - /articles/applying-for-a-discount-for-your-first-robotics-team/ + - /articles/applying-for-a-classroom-discount + - /articles/applying-for-a-discount-for-your-school-club + - /articles/applying-for-an-academic-research-discount + - /articles/applying-for-a-discount-for-your-first-robotics-team - /articles/applying-for-an-educator-or-researcher-discount - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount versions: fpt: '*' shortTitle: Apply for a discount --- - -## 教育者および研究者に対する割引について +## About educator and researcher discounts {% data reusables.education.about-github-education-link %} {% data reusables.education.educator-requirements %} -{% data variables.product.product_name %}のユーザアカウント作成に関する詳しい情報については「[新規{% data variables.product.prodname_dotcom %}アカウントにサインアップする](/github/getting-started-with-github/signing-up-for-a-new-github-account)」を参照してください。 +For more information about user 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)." -## 教育者割引または研究者割引に応募する +## Applying for an educator or researcher discount {% data reusables.education.benefits-page %} {% data reusables.education.click-get-teacher-benefits %} @@ -33,28 +32,30 @@ shortTitle: Apply for a discount {% data reusables.education.plan-to-use-github %} {% data reusables.education.submit-application %} -## Organization をアップグレードする +## Upgrading your organization -教育者もしくは研究者割引のリクエストが承認されると、学習コミュニティで利用する Organization を {% data variables.product.prodname_team %} にアップグレードできます。これで、無料で無制限のユーザとプライベートリポジトリの全ての機能が利用できるようになります。 既存の Organization をアップグレードするか、アップグレードする新しい Organization を作成できます。 +After your request for an educator or researcher discount has been approved, you can upgrade the organizations you use with your learning community to {% data variables.product.prodname_team %}, which allows unlimited users and private repositories with full features, for free. You can upgrade an existing organization or create a new organization to upgrade. -### 既存の Organization をアップグレードする +### Upgrading an existing organization {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -### 新しい Organization をアップグレードする +### Upgrading a new organization {% data reusables.education.upgrade-page %} -1. [{% octicon "plus" aria-label="The plus symbol" %} **Create an organization**] をクリックします。 ![[Create an organization] ボタン](/assets/images/help/education/create-org-button.png) -3. 情報を読んで、[**Create organization**] をクリックします。 ![[Create organization] ボタン](/assets/images/help/education/create-organization-button.png) -4. [Choose a plan] の下で、[**Choose {% data variables.product.prodname_free_team %}**] をクリックします。 -5. プロンプトに従って Organization を作成します。 +1. Click {% octicon "plus" aria-label="The plus symbol" %} **Create an organization**. + ![Create an organization button](/assets/images/help/education/create-org-button.png) +3. Read the information, then click **Create organization**. + ![Create organization button](/assets/images/help/education/create-organization-button.png) +4. Under "Choose your plan", click **Choose {% data variables.product.prodname_free_team %}**. +5. Follow the prompts to create your organization. {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -## 参考リンク +## Further reading -- [教育者あるいは研究者割引が承認されなかった理由は?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved) +- "[Why wasn't my application for an educator or researcher discount approved?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)" - [{% data variables.product.prodname_education %}](https://education.github.com) -- [{% data variables.product.prodname_classroom %}ビデオ](https://classroom.github.com/videos) +- [{% data variables.product.prodname_classroom %} Videos](https://classroom.github.com/videos) - [{% data variables.product.prodname_education_community %}](https://education.github.community/) diff --git a/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md b/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md index ec000cb6af..82cc504911 100644 --- a/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md +++ b/translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md @@ -1,10 +1,10 @@ --- -title: 教育者または研究者割引の申請が承認されなかったのはなぜですか? -intro: 教育者または研究者割引の申請が承認されていない一般的な理由を確認し、正常に再申請するためのヒントを学びます。 +title: Why wasn't my application for an educator or researcher discount approved? +intro: Review common reasons that applications for an educator or researcher discount are not approved and learn tips for reapplying successfully. redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied/ + - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied - /articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved - /articles/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved @@ -12,37 +12,36 @@ versions: fpt: '*' shortTitle: Application not approved --- - {% tip %} -**ヒント:** {% data reusables.education.about-github-education-link %} +**Tip:** {% data reusables.education.about-github-education-link %} {% endtip %} -## 所属文書の不明確な証明 +## Unclear proof of affiliation documents -アップロードした画像が現在の学校または大学での雇用を明確に識別していない場合、教職員 ID または雇用確認書の別の画像を明瞭な情報と共にアップロードして再申請する必要があります。 +If the image you uploaded doesn't clearly identify your current employment with a school or university, you must reapply and upload another image of your faculty ID or employment verification letter with clear information. {% data reusables.education.pdf-support %} -## 未確認ドメインを持つ学術メールの使用 +## Using an academic email with an unverified domain -学術メールアドレスに未確認ドメインが含まれている場合、学術ステータスの更なる証明が必要となります。 {% data reusables.education.upload-different-image %} +If your academic email address has an unverified domain, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -## 緩い電子メールポリシーを持つ学校からの学術電子メールの使用 +## Using an academic email from a school with lax email policies -学校の卒業生および退職した教職員が学校が発行したメールアドレスに一生アクセスできる場合は、学術ステータスの更なる証明が必要となります。 {% data reusables.education.upload-different-image %} +If alumni and retired faculty of your school have lifetime access to school-issued email addresses, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -学校のドメインに関するその他の質問や懸念がある場合は、学校のITスタッフにお問い合わせください。 +If you have other questions or concerns about the school domain, please ask your school IT staff to contact us. -## 学生以外が Student Developer Pack を申請する +## Non-student applying for Student Developer Pack -教育者や研究者は、[{% data variables.product.prodname_student_pack %}](https://education.github.com/pack)に付属のパートナーオファーの対象にはなりません。 再度申し込む際には、ご自身の学術ステータスを説明するものとして必ず [**Faculty**] (教職員) を選択してください。 +Educators and researchers are not eligible for the partner offers that come with the [{% data variables.product.prodname_student_pack %}](https://education.github.com/pack). When you reapply, make sure that you choose **Faculty** to describe your academic status. -## 参考リンク +## Further reading -- 「[教育者・研究者割引への応募](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)」 +- "[Apply for an educator or researcher discount](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)" diff --git a/translations/ja-JP/content/get-started/getting-started-with-git/about-remote-repositories.md b/translations/ja-JP/content/get-started/getting-started-with-git/about-remote-repositories.md index 6448f9759d..78b6642b52 100644 --- a/translations/ja-JP/content/get-started/getting-started-with-git/about-remote-repositories.md +++ b/translations/ja-JP/content/get-started/getting-started-with-git/about-remote-repositories.md @@ -73,7 +73,7 @@ SSH URLs provide access to a Git repository via SSH, a secure protocol. To use t When you `git clone`, `git fetch`, `git pull`, or `git push` to a remote repository using SSH URLs, you'll be prompted for a password and must provide your SSH key passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% tip %} diff --git a/translations/ja-JP/content/get-started/learning-about-github/access-permissions-on-github.md b/translations/ja-JP/content/get-started/learning-about-github/access-permissions-on-github.md index 9d725ebcf0..07127770d3 100644 --- a/translations/ja-JP/content/get-started/learning-about-github/access-permissions-on-github.md +++ b/translations/ja-JP/content/get-started/learning-about-github/access-permissions-on-github.md @@ -7,7 +7,7 @@ redirect_from: - /articles/access-permissions-on-github - /github/getting-started-with-github/access-permissions-on-github - /github/getting-started-with-github/learning-about-github/access-permissions-on-github -intro: 'While you can grant read/write access to collaborators on a personal repository, members of an organization can have more granular access permissions for the organization''s repositories.' +intro: 'With roles, you can control who has access to your accounts and resources on {% data variables.product.product_name %} and the level of access each person has.' versions: fpt: '*' ghes: '*' @@ -18,6 +18,13 @@ topics: - Accounts shortTitle: Access permissions --- + +## About access permissions on {% data variables.product.prodname_dotcom %} + +{% data reusables.organizations.about-roles %} + +Roles work differently for different types of accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + ## Personal user accounts A repository owned by a user account has two permission levels: the *repository owner* and *collaborators*. For more information, see "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)." diff --git a/translations/ja-JP/content/get-started/learning-about-github/githubs-products.md b/translations/ja-JP/content/get-started/learning-about-github/githubs-products.md index fe1f93aaac..c5927d487d 100644 --- a/translations/ja-JP/content/get-started/learning-about-github/githubs-products.md +++ b/translations/ja-JP/content/get-started/learning-about-github/githubs-products.md @@ -1,6 +1,6 @@ --- -title: GitHub の製品 -intro: '{% data variables.product.prodname_dotcom %} の商品と価格プランの概要。' +title: GitHub's products +intro: 'An overview of {% data variables.product.prodname_dotcom %}''s products and pricing plans.' redirect_from: - /articles/github-s-products - /articles/githubs-products @@ -18,66 +18,67 @@ topics: - Desktop - Security --- - ## About {% data variables.product.prodname_dotcom %}'s products -{% data variables.product.prodname_dotcom %}では無償版と有償版の製品をご用意しています。 各製品の料金と機能の全リストは <{% data variables.product.pricing_url %}> に掲載されています。 {% data reusables.products.product-roadmap %} +{% data variables.product.prodname_dotcom %} offers free and paid products for storing and collaborating on code. Some products apply only to user accounts, while other plans apply only to organization and enterprise accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -## ユーザアカウント用の{% data variables.product.prodname_free_user %} +You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} -ユーザアカウント用の{% data variables.product.prodname_free_team %}では、完全な機能セットを持つ無制限のパブリックリポジトリ上で無制限のコラボレータと、そして限定された機能セットを持つ無制限のプライベートリポジトリ上で作業ができます。 +## {% data variables.product.prodname_free_user %} for user accounts -{% data variables.product.prodname_free_user %}では、ユーザアカウントには以下が含まれます。 +With {% data variables.product.prodname_free_team %} for user accounts, you can work with unlimited collaborators on unlimited public repositories with a full feature set, and on unlimited private repositories with a limited feature set. + +With {% data variables.product.prodname_free_user %}, your user account includes: - {% data variables.product.prodname_gcf %} - {% data variables.product.prodname_dependabot_alerts %} -- 2 要素認証の強制 -- 2,000 {% data variables.product.prodname_actions %} 分 -- 500MBの{% data variables.product.prodname_registry %}ストレージ +- Two-factor authentication enforcement +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_pro %} -ユーザアカウント用の{% data variables.product.prodname_free_user %}で利用できる機能に加え、{% data variables.product.prodname_pro %}には以下が含まれます。 -- メールでの{% data variables.contact.github_support %} -- 3,000 {% data variables.product.prodname_actions %} 分 -- 2GBの{% data variables.product.prodname_registry %}ストレージ -- プライベートリポジトリでの高度なツールとインサイト: - - 必須のプルリクエストレビュー担当者 - - 複数のプルリクエストレビュー担当者 - - 自動リンクのリファレンス +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_pro %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers + - Auto-linked references - {% data variables.product.prodname_pages %} - - Wiki - - 保護されたブランチ - - コードオーナー - - リポジトリインサイトグラフ: パルス、コントリビューター、トラフィック、コミット、コード頻度、ネットワーク、およびフォーク + - Wikis + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks -## Organization の {% data variables.product.prodname_free_team %} +## {% data variables.product.prodname_free_team %} for organizations -Organizationの{% data variables.product.prodname_free_team %}では、完全な機能セットを持つ無制限のパブリックリポジトリ上で無制限のコラボレータ、あるいは限定された機能セットを持つ無制限のプライベートリポジトリで作業ができます。 +With {% data variables.product.prodname_free_team %} for organizations, you can work with unlimited collaborators on unlimited public repositories with a full feature set, or unlimited private repositories with a limited feature set. -ユーザアカウント用の{% data variables.product.prodname_free_user %}で利用できる機能に加えて、Organizationの{% data variables.product.prodname_free_team %}には以下が含まれます。 +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_free_team %} for organizations includes: - {% data variables.product.prodname_gcf %} -- Team ディスカッション -- グループを管理するための Team アクセスコントロール -- 2,000 {% data variables.product.prodname_actions %} 分 -- 500MBの{% data variables.product.prodname_registry %}ストレージ +- Team discussions +- Team access controls for managing groups +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_team %} -Organizationの{% data variables.product.prodname_free_team %}で利用できる機能に加えて、{% data variables.product.prodname_team %}には以下が含まれます。 -- メールでの{% data variables.contact.github_support %} -- 3,000 {% data variables.product.prodname_actions %} 分 -- 2GBの{% data variables.product.prodname_registry %}ストレージ -- プライベートリポジトリでの高度なツールとインサイト: - - 必須のプルリクエストレビュー担当者 - - 複数のプルリクエストレビュー担当者 +In addition to the features available with {% data variables.product.prodname_free_team %} for organizations, {% data variables.product.prodname_team %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers - {% data variables.product.prodname_pages %} - - Wiki - - 保護されたブランチ - - コードオーナー - - リポジトリインサイトグラフ: パルス、コントリビューター、トラフィック、コミット、コード頻度、ネットワーク、およびフォーク - - ドラフトプルリクエスト - - Teamのプルリクエストレビュー担当者 - - スケジュールされたリマインダー + - Wikis + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks + - Draft pull requests + - Team pull request reviewers + - Scheduled reminders {% ifversion fpt or ghec %} - The option to enable {% data variables.product.prodname_github_codespaces %} - Organization owners can enable {% data variables.product.prodname_github_codespaces %} for the organization by setting a spending limit and granting user permissions for members of their organization. For more information, see "[Enabling Codespaces for your organization](/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization)." @@ -87,25 +88,25 @@ Organizationの{% data variables.product.prodname_free_team %}で利用できる ## {% data variables.product.prodname_enterprise %} -{% data variables.product.prodname_enterprise %} には、クラウドホストとセルフホストの 2 種類のデプロイメントオプションがあります。 +{% data variables.product.prodname_enterprise %} includes two deployment options: cloud-hosted and self-hosted. -{% data variables.product.prodname_team %} で利用可能な機能に加えて、{% data variables.product.prodname_enterprise %} には以下が含まれます。 +In addition to the features available with {% data variables.product.prodname_team %}, {% data variables.product.prodname_enterprise %} includes: - {% data variables.contact.enterprise_support %} -- 追加のセキュリティ、コンプライアンス、およびデプロイメントコントロール -- SAML シングルサインオンでの認証 -- SAML または SCIM でのアクセスのプロビジョニング +- Additional security, compliance, and deployment controls +- Authentication with SAML single sign-on +- Access provisioning with SAML or SCIM - {% data variables.product.prodname_github_connect %} -- The option to purchase {% data variables.product.prodname_GH_advanced_security %}. 詳しい情報については、「[{% data variables.product.prodname_GH_advanced_security %} について](/github/getting-started-with-github/about-github-advanced-security)」を参照してください。 +- The option to purchase {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)." -{% data variables.product.prodname_ghe_cloud %} には次も含まれます: -- {% data variables.contact.enterprise_support %}。 詳細は「<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} サポート</a>」および「<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} 補遺</a>」を参照してください。 -- 50,000 {% data variables.product.prodname_actions %} 分 -- 50GBの{% data variables.product.prodname_registry %}ストレージ -- {% data variables.product.prodname_pages %} サイトのアクセス制御。 詳しい情報については、「<a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">{% data variables.product.prodname_pages %} サイトの可視性を変更する</a>」を参照してください。 -- 99.9% の月次稼働時間を保証するサービスレベルアグリーメント +{% data variables.product.prodname_ghe_cloud %} also includes: +- {% data variables.contact.enterprise_support %}. For more information, see "<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} support</a>" and "<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} Addendum</a>." +- 50,000 {% data variables.product.prodname_actions %} minutes +- 50GB {% data variables.product.prodname_registry %} storage +- Access control for {% data variables.product.prodname_pages %} sites. For more information, see <a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">Changing the visibility of your {% data variables.product.prodname_pages %} site</a>" +- A service level agreement for 99.9% monthly uptime - The option to configure your enterprise for {% data variables.product.prodname_emus %}, so you can provision and manage members with your identity provider and restrict your member's contributions to just your enterprise. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." -- エンタープライズアカウントで複数の {% data variables.product.prodname_dotcom_the_website %} Organization に対してポリシーと請求を一元管理するためのオプション。 詳細は「[Enterprise アカウントについて](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)」を参照してください。 +- The option to centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations with an enterprise account. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)." -{% data variables.product.prodname_ghe_cloud %} を評価するためのトライアルを設定できます。 詳しい情報については、「<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} のトライアルを設定する</a>」を参照してください。 +You can set up a trial to evaluate {% data variables.product.prodname_ghe_cloud %}. For more information, see "<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">Setting up a trial of {% data variables.product.prodname_ghe_cloud %}</a>." -[{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com)の独自インスタンスのホストに関する詳しい情報については、{% data variables.contact.contact_enterprise_sales %}に連絡してください。 {% data reusables.enterprise_installation.request-a-trial %} +For more information about hosting your own instance of [{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com), contact {% data variables.contact.contact_enterprise_sales %}. {% data reusables.enterprise_installation.request-a-trial %} diff --git a/translations/ja-JP/content/get-started/learning-about-github/types-of-github-accounts.md b/translations/ja-JP/content/get-started/learning-about-github/types-of-github-accounts.md index 4981f1858c..568b1834d8 100644 --- a/translations/ja-JP/content/get-started/learning-about-github/types-of-github-accounts.md +++ b/translations/ja-JP/content/get-started/learning-about-github/types-of-github-accounts.md @@ -1,6 +1,6 @@ --- title: Types of GitHub accounts -intro: 'Your user account is your identity on {% data variables.product.product_location %}. Your user account can be a member of any number of organizations.{% ifversion fpt or ghec %} Organizations can belong to enterprise accounts.{% endif %}' +intro: 'Accounts on {% data variables.product.product_name %} allow you to organize and control access to code.' redirect_from: - /manage-multiple-clients - /managing-clients @@ -21,73 +21,67 @@ topics: - Desktop - Security --- -{% ifversion fpt or ghec %} -For a full list of features for each {% data variables.product.product_name %} product, see "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products)." -{% endif %} -## Personal user accounts +## About accounts on {% data variables.product.product_name %} -Every person who uses {% data variables.product.product_location %} has their own user account, which includes: +With {% data variables.product.product_name %}, you can store and collaborate on code. Accounts allow you to organize and control access to that code. There are three types of accounts on {% data variables.product.product_name %}. +- Personal accounts +- Organization accounts +- Enterprise accounts -{% ifversion fpt or ghec %} +Every person who uses {% data variables.product.product_name %} signs into a personal account. An organization account enhances collaboration between multiple personal accounts, and {% ifversion fpt or ghec %}an enterprise account{% else %}the enterprise account for {% data variables.product.product_location %}{% endif %} allows central management of multiple organizations. -- Unlimited public and private repositories with {% data variables.product.prodname_free_user %} -- Unlimited collaborators with {% data variables.product.prodname_free_user %} -- Additional features for private repositories with {% data variables.product.prodname_pro %} -- Ability to [invite repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +## Personal accounts -{% else %} +Every person who uses {% data variables.product.product_location %} signs into a personal account. Your personal account is your identity on {% data variables.product.product_location %} and has a username and profile. For example, see [@octocat's profile](https://github.com/octocat). -- Unlimited repositories and [collaborators](/articles/permission-levels-for-a-user-account-repository) -- Ability to [add unlimited repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +Your personal account can own resources such as repositories, packages, and projects. Any time you take any action on {% data variables.product.product_location %}, such as creating an issue or reviewing a pull request, the action is attributed to your personal account. -{% endif %} - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %}Each personal account uses either {% data variables.product.prodname_free_user %} or {% data variables.product.prodname_pro %}. All personal accounts can own an unlimited number of public and private repositories, with an unlimited number of collaborators on those repositories. If you use {% data variables.product.prodname_free_user %}, private repositories owned by your personal account have a limited feature set. You can upgrade to {% data variables.product.prodname_pro %} to get a full feature set for private repositories. For more information, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)." {% else %}You can create an unlimited number of repositories owned by your personal account, with an unlimited number of collaborators on those repositories.{% endif %} {% tip %} -**Tips**: - -- You can use one account for multiple purposes, such as for personal use and business use. We do not recommend creating more than one account. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." -- User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. +**Tip**: Personal accounts are intended for humans, but you can create accounts to automate activity on {% data variables.product.product_name %}. This type of account is called a machine user. For example, you can create a machine user account to automate continuous integration (CI) workflows. {% endtip %} -{% else %} - -{% tip %} - -**Tip**: User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. - -{% endtip %} - -{% endif %} - {% ifversion fpt or ghec %} -### {% data variables.product.prodname_emus %} - -With {% data variables.product.prodname_emus %}, instead of using your personal account, members of an {% data variables.product.prodname_emu_enterprise %} are provisioned accounts using the enterprise's identity provider (IdP). {% data variables.product.prodname_managed_users_caps %} authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. - -{% data variables.product.prodname_managed_users_caps %} can only interact with users, repositories, and organizations that are part of their enterprise. {% data variables.product.prodname_managed_users_caps %} have read-only access to the rest of {% data variables.product.prodname_dotcom_the_website %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +Most people will use one personal account for all their work on {% data variables.product.prodname_dotcom_the_website %}, including both open source projects and paid employment. If you're currently using more than one personal account that you created for yourself, we suggest combining the accounts. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." {% endif %} ## Organization accounts -Organizations are shared accounts where groups of people can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. +Organizations are shared accounts where an unlimited number of people can collaborate across many projects at once. -{% data reusables.organizations.organizations_include %} +Like personal accounts, organizations can own resources such as repositories, packages, and projects. However, you cannot sign into an organization. Instead, each person signs into their own personal account, and any actions the person takes on organization resources are attributed to their personal account. Each personal account can be a member of multiple organizations. -{% ifversion fpt or ghec %} +The personal accounts within an organization can be given different roles in the organization, which grant different levels of access to the organization and its data. All members can collaborate with each other in repositories and projects, but only organization owners and security managers can manage the settings for the organization and control access to the organization's data with sophisticated security and administrative features. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" and "[Keeping your organization secure](/organizations/keeping-your-organization-secure)." + +![Diagram showing that users must sign in to their personal user account to access an organization's resources](/assets/images/help/overview/sign-in-pattern.png) + +{% ifversion fpt or ghec %} +Even if you're a member of an organization that uses SAML single sign-on, you will still sign into your own personal account on {% data variables.product.prodname_dotcom_the_website %}, and that personal account will be linked to your identity in your organization's identity provider (IdP). For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation{% else %}."{% endif %} + +However, if you're a member of an enterprise that uses {% data variables.product.prodname_emus %}, instead of using a personal account that you created, a new account will be provisioned for you by the enterprise's IdP. To access any organizations owned by that enterprise, you must authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% endif %} + +You can also create nested sub-groups of organization members called teams, to reflect your group's structure and simplify access management. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." + +{% data reusables.organizations.organization-plans %} + +For more information about all the features of organizations, see "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)." ## Enterprise accounts -With enterprise accounts, you can centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations. {% data reusables.gated-features.enterprise-accounts %} - +{% ifversion fpt %} +{% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} include enterprise accounts, which allow administrators to centrally manage policy and billing for multiple organizations and enable innersourcing between the organizations. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +{% elsif ghec %} +Enterprise accounts allow central policy management and billing for multiple organizations. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." +{% elsif ghes or ghae %} +Your enterprise account is a collection of all the organizations {% ifversion ghae %}owned by{% elsif ghes %}on{% endif %} {% data variables.product.product_location %}. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." {% endif %} ## Further reading -{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)" -- "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)"{% endif %} +{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)"{% endif %} - "[Creating a new organization account](/articles/creating-a-new-organization-account)" diff --git a/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md b/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md index 895f30fd9d..2f1cf8bcf2 100644 --- a/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md +++ b/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md @@ -13,7 +13,7 @@ shortTitle: GitHub AE trial You can set up a 90-day trial to evaluate {% data variables.product.prodname_ghe_managed %}. This process allows you to deploy a {% data variables.product.prodname_ghe_managed %} account in your existing Azure region. - **{% data variables.product.prodname_ghe_managed %} account**: The Azure resource that contains the required components, including the instance. -- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at https://portal.azure.com. This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. +- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at [https://portal.azure.com](https://portal.azure.com). This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. ## Setting up your trial of {% data variables.product.prodname_ghe_managed %} diff --git a/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md b/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md index 8c44c1a59a..0a60c0a9d2 100644 --- a/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md +++ b/translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md @@ -19,11 +19,17 @@ shortTitle: Enterprise Cloud trial ## About {% data variables.product.prodname_ghe_cloud %} -{% data reusables.organizations.about-organizations %} +{% data variables.product.prodname_ghe_cloud %} is a plan for large businesses or teams who collaborate on {% data variables.product.prodname_dotcom_the_website %}. + +{% data reusables.organizations.about-organizations %} For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page. -{% data reusables.saml.saml-accounts %} For more information, see "<a href="/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on" class="dotcom-only">About identity and access management with SAML single sign-on</a>." +{% data reusables.saml.saml-accounts %} For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} + +{% data reusables.enterprise-accounts.emu-short-summary %} + +{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact). {% data reusables.products.which-product-to-use %} diff --git a/translations/ja-JP/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md b/translations/ja-JP/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md index 3388b07d27..d20a58f745 100644 --- a/translations/ja-JP/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md +++ b/translations/ja-JP/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md @@ -1,7 +1,7 @@ --- -title: 新しい GitHub アカウントへのサインアップ -shortTitle: 新しい GitHub アカウントへのサインアップ -intro: '{% data variables.product.company_short %} は、人々が協力して作業するチームのために個人および Organization のユーザアカウントを提供します。' +title: Signing up for a new GitHub account +shortTitle: Sign up for a new GitHub account +intro: '{% data variables.product.company_short %} offers user accounts for individuals and organizations for teams of people working together.' redirect_from: - /articles/signing-up-for-a-new-github-account - /github/getting-started-with-github/signing-up-for-a-new-github-account @@ -13,15 +13,19 @@ topics: - Accounts --- -アカウントの種類と製品の詳しい情報については、「[{% data variables.product.prodname_dotcom %}アカウントの種類](/articles/types-of-github-accounts)」および「[{% data variables.product.company_short %} の製品](/articles/github-s-products)」を参照してください。 +## About new accounts on {% data variables.product.prodname_dotcom_the_website %} + +You can create a personal account, which serves as your identity on {% data variables.product.prodname_dotcom_the_website %}, or an organization, which allows multiple personal accounts to collaborate across multiple projects. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + +When you create a personal account or organization, you must select a billing plan for the account. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)." + +## Signing up for a new account {% data reusables.accounts.create-account %} -1. プロンプトに従って、個人アカウントまたは Organization を作成してください。 +1. Follow the prompts to create your personal account or organization. -## 次のステップ +## Next steps -- 「[メールアドレスを検証する](/articles/verifying-your-email-address)」 -- 「[2 要素認証を設定する](/articles/configuring-two-factor-authentication)」 -- 「[プロフィールに略歴を追加する](/articles/adding-a-bio-to-your-profile)」 -- 「[Organization を作成する](/articles/creating-a-new-organization-from-scratch)」 -- `github/roadmap` リポジトリの [ {% data variables.product.prodname_roadmap %} ]({% data variables.product.prodname_roadmap_link %}) +- "[Verify your email address](/articles/verifying-your-email-address)" +- "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} +- [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository diff --git a/translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md index 89da22e7d1..621628a074 100644 --- a/translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md +++ b/translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md @@ -1,8 +1,8 @@ --- -title: GitHub の機能拡張およびインテグレーション -intro: 'サードパーティアプリケーションの中でシームレスに{% data variables.product.product_name %}リポジトリ内で作業をするために、{% data variables.product.product_name %}機能拡張を使ってください。' +title: GitHub extensions and integrations +intro: 'Use {% data variables.product.product_name %} extensions to work seamlessly in {% data variables.product.product_name %} repositories within third-party applications.' redirect_from: - - /articles/about-github-extensions-for-third-party-applications/ + - /articles/about-github-extensions-for-third-party-applications - /articles/github-extensions-and-integrations - /github/customizing-your-github-workflow/github-extensions-and-integrations versions: @@ -10,43 +10,42 @@ versions: ghec: '*' shortTitle: Extensions & integrations --- +## Editor tools -## エディタツール - -Atom、Unity、Visual Studio などのサードパーティのエディタツール内で {% data variables.product.product_name %} リポジトリに接続できます。 +You can connect to {% data variables.product.product_name %} repositories within third-party editor tools, such as Atom, Unity, and Visual Studio. ### {% data variables.product.product_name %} for Atom -{% data variables.product.product_name %} for Atom機能拡張を使うと、Atomエディタからコミット、プッシュ、プル、マージコンフリクトの解決などが行えます。 詳しい情報については公式の[{% data variables.product.product_name %} for Atomサイト](https://github.atom.io/)を参照してください。 +With the {% data variables.product.product_name %} for Atom extension, you can commit, push, pull, resolve merge conflicts, and more from the Atom editor. For more information, see the official [{% data variables.product.product_name %} for Atom site](https://github.atom.io/). ### {% data variables.product.product_name %} for Unity -{% data variables.product.product_name %} for Unityエディタ機能拡張を使うと、オープンソースのゲーム開発プラットフォームであるUnity上で開発を行い、作業内容を{% data variables.product.product_name %}上で見ることができます。 詳しい情報については公式のUnityエディタ機能拡張[サイト](https://unity.github.com/)あるいは[ドキュメンテーション](https://github.com/github-for-unity/Unity/tree/master/docs)を参照してください。 +With the {% data variables.product.product_name %} for Unity editor extension, you can develop on Unity, the open source game development platform, and see your work on {% data variables.product.product_name %}. For more information, see the official Unity editor extension [site](https://unity.github.com/) or the [documentation](https://github.com/github-for-unity/Unity/tree/master/docs). ### {% data variables.product.product_name %} for Visual Studio -{% data variables.product.product_name %} for Visual Studio機能拡張を使うと、Visual Studioから離れることなく{% data variables.product.product_name %}リポジトリ内で作業できます。 詳しい情報については、公式のVisual Studio機能拡張の[サイト](https://visualstudio.github.com/)あるいは[ドキュメンテーション](https://github.com/github/VisualStudio/tree/master/docs)を参照してください。 +With the {% data variables.product.product_name %} for Visual Studio extension, you can work in {% data variables.product.product_name %} repositories without leaving Visual Studio. For more information, see the official Visual Studio extension [site](https://visualstudio.github.com/) or [documentation](https://github.com/github/VisualStudio/tree/master/docs). ### {% data variables.product.prodname_dotcom %} for Visual Studio Code -{% data variables.product.prodname_dotcom %} for Visual Studio Code 機能拡張を使うと、Visual Studio Code の {% data variables.product.product_name %} プルリクエストをレビューおよび管理できます。 詳しい情報については、公式の Visual Studio Code 機能拡張[サイト](https://vscode.github.com/)または[ドキュメンテーション](https://github.com/Microsoft/vscode-pull-request-github)を参照してください。 +With the {% data variables.product.prodname_dotcom %} for Visual Studio Code extension, you can review and manage {% data variables.product.product_name %} pull requests in Visual Studio Code. For more information, see the official Visual Studio Code extension [site](https://vscode.github.com/) or [documentation](https://github.com/Microsoft/vscode-pull-request-github). -## プロジェクト管理ツール +## Project management tools You can integrate your personal or organization account on {% data variables.product.product_location %} with third-party project management tools, such as Jira. -### Jira Cloud と {% data variables.product.product_name %}.com の統合 +### Jira Cloud and {% data variables.product.product_name %}.com integration -Jira Cloud を個人または Organization のアカウントに統合すると、コミットとプルリクエストをスキャンし、メンションされている JIRA の Issue で、関連するメタデータとハイパーリンクを作成できます。 詳細については、Marketplace の[Jira 統合アプリケーション](https://github.com/marketplace/jira-software-github)にアクセスしてください。 +You can integrate Jira Cloud with your personal or organization account to scan commits and pull requests, creating relevant metadata and hyperlinks in any mentioned Jira issues. For more information, visit the [Jira integration app](https://github.com/marketplace/jira-software-github) in the marketplace. -## チームコミュニケーションツール +## Team communication tools You can integrate your personal or organization account on {% data variables.product.product_location %} with third-party team communication tools, such as Slack or Microsoft Teams. -### Slack と {% data variables.product.product_name %} の統合 +### Slack and {% data variables.product.product_name %} integration -You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, releases, deployment reviews and deployment statuses. You can also perform activities like close or open issues, and provide rich references to issues and pull requests without leaving Slack. 詳細については、Marketplace の[Slack 統合アプリケーション](https://github.com/marketplace/slack-github)にアクセスしてください。 +You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, releases, deployment reviews and deployment statuses. You can also perform activities like close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace. -### Microsoft Teams と {% data variables.product.product_name %} の統合 +### Microsoft Teams and {% data variables.product.product_name %} integration -You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, deployment reviews and deployment statuses. You can also perform activities like close or open issues, comment on your issues and pull requests, and provide rich references to issues and pull requests without leaving Microsoft Teams. 詳細については、Microsoft AppSource の [Microsoft Teams 統合アプリケーション](https://appsource.microsoft.com/en-us/product/office/WA200002077)にアクセスしてください。 +You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, deployment reviews and deployment statuses. You can also perform activities like close or open issues, comment on your issues and pull requests, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource. diff --git a/translations/ja-JP/content/github/extending-github/about-webhooks.md b/translations/ja-JP/content/github/extending-github/about-webhooks.md index 1ced3872c3..3ebe391ec7 100644 --- a/translations/ja-JP/content/github/extending-github/about-webhooks.md +++ b/translations/ja-JP/content/github/extending-github/about-webhooks.md @@ -1,11 +1,11 @@ --- -title: webhook について +title: About webhooks redirect_from: - - /post-receive-hooks/ - - /articles/post-receive-hooks/ - - /articles/creating-webhooks/ + - /post-receive-hooks + - /articles/post-receive-hooks + - /articles/creating-webhooks - /articles/about-webhooks -intro: webhook は、特定のアクションがリポジトリあるいは Organization で生じたときに外部の Web サーバーへ通知を配信する方法を提供します。 +intro: Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. versions: fpt: '*' ghes: '*' @@ -15,17 +15,17 @@ versions: {% tip %} -**ヒント:** {% data reusables.organizations.owners-and-admins-can %}は Organization の webhook を管理します。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** {% data reusables.organizations.owners-and-admins-can %} manage webhooks for an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} -webhook は、リポジトリあるいは Organization にさまざまなアクションが行われたときに動作します。 たとえば以下のような場合に動作するよう webhook を設定できます: +Webhooks can be triggered whenever a variety of actions are performed on a repository or an organization. For example, you can configure a webhook to execute whenever: -* リポジトリへのプッシュ -* プルリクエストのオープン -* {% data variables.product.prodname_pages %}サイトの構築 -* Team への新しいメンバーの追加 +* A repository is pushed to +* A pull request is opened +* A {% data variables.product.prodname_pages %} site is built +* A new member is added to a team Using the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API, you can make these webhooks update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to your production server. -新しい webhook をセットアップするには、外部サーバーにアクセスでき、関連する技術的な手順に精通している必要があります。 関連付けられるアクションの完全なリストを含む、webhook の作成に関するヘルプについては、「[ webhook](/webhooks)」を参照してください。 +To set up a new webhook, you'll need access to an external server and familiarity with the technical procedures involved. For help on building a webhook, including a full list of actions you can associate with, see "[Webhooks](/webhooks)." diff --git a/translations/ja-JP/content/github/extending-github/git-automation-with-oauth-tokens.md b/translations/ja-JP/content/github/extending-github/git-automation-with-oauth-tokens.md index 381288f47f..e22725a212 100644 --- a/translations/ja-JP/content/github/extending-github/git-automation-with-oauth-tokens.md +++ b/translations/ja-JP/content/github/extending-github/git-automation-with-oauth-tokens.md @@ -1,10 +1,10 @@ --- -title: OAuth トークンを使用した Git の自動化 +title: Git automation with OAuth tokens redirect_from: - - /articles/git-over-https-using-oauth-token/ - - /articles/git-over-http-using-oauth-token/ + - /articles/git-over-https-using-oauth-token + - /articles/git-over-http-using-oauth-token - /articles/git-automation-with-oauth-tokens -intro: 'OAuthトークンを使用して、自動化されたスクリプトを介して {% data variables.product.product_name %} を操作できます。' +intro: 'You can use OAuth tokens to interact with {% data variables.product.product_name %} via automated scripts.' versions: fpt: '*' ghes: '*' @@ -13,36 +13,36 @@ versions: shortTitle: Automate with OAuth tokens --- -## ステップ 1: OAuth トークンを取得する +## Step 1: Get an OAuth token -アプリケーション設定ページで個人アクセストークンを作成します。 詳しい情報については、「[個人アクセストークンを作成する](/github/authenticating-to-github/creating-a-personal-access-token)」を参照してください。 +Create a personal access token on your application settings page. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." {% tip %} {% ifversion fpt or ghec %} -**参考:** -- 個人アクセストークンを作成する前に、メールアドレスを確認する必要があります。 詳細は「[メールアドレスを検証する](/articles/verifying-your-email-address)」を参照してください。 +**Tips:** +- You must verify your email address before you can create a personal access token. For more information, see "[Verifying your email address](/articles/verifying-your-email-address)." - {% data reusables.user_settings.review_oauth_tokens_tip %} {% else %} -**ヒント:** {% data reusables.user_settings.review_oauth_tokens_tip %} +**Tip:** {% data reusables.user_settings.review_oauth_tokens_tip %} {% endif %} {% endtip %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} -## ステップ 2: リポジトリをクローンする +## Step 2: Clone a repository {% data reusables.command_line.providing-token-as-password %} -これらのプロンプトを回避するには、Git パスワードキャッシュを使用できます。 詳しい情報については、「[Git に GitHub 認証情報をキャッシュする](/github/getting-started-with-github/caching-your-github-credentials-in-git)」を参照してください。 +To avoid these prompts, you can use Git password caching. For information, see "[Caching your GitHub credentials in Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)." {% warning %} -**警告**: トークンには読み取り/書き込みアクセス権限があるため、パスワードのように慎重に扱う必要があります。 リモートをクローンまたは追加する際にクローン URL にトークンを入力すると、Git によって _.git/config_ ファイルにプレーンテキストで書き込まれます。これはセキュリティ上のリスクとなります。 +**Warning**: Tokens have read/write access and should be treated like passwords. If you enter your token into the clone URL when cloning or adding a remote, Git writes it to your _.git/config_ file in plain text, which is a security risk. {% endwarning %} -## 参考リンク +## Further reading -- 「[OAuth App を認証する](/developers/apps/authorizing-oauth-apps)」 +- "[Authorizing OAuth Apps](/developers/apps/authorizing-oauth-apps)" diff --git a/translations/ja-JP/content/github/extending-github/index.md b/translations/ja-JP/content/github/extending-github/index.md index d044c9a3e3..79a03ace00 100644 --- a/translations/ja-JP/content/github/extending-github/index.md +++ b/translations/ja-JP/content/github/extending-github/index.md @@ -1,8 +1,8 @@ --- -title: GitHub を拡張する +title: Extending GitHub redirect_from: - - /categories/86/articles/ - - /categories/automation/ + - /categories/86/articles + - /categories/automation - /categories/extending-github versions: fpt: '*' diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 5011d23fb9..575a38144d 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -2,7 +2,7 @@ title: Adding an existing project to GitHub using the command line intro: 'Putting your existing work on {% data variables.product.product_name %} can let you share and collaborate in lots of great ways.' redirect_from: - - /articles/add-an-existing-project-to-github/ + - /articles/add-an-existing-project-to-github - /articles/adding-an-existing-project-to-github-using-the-command-line - /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line versions: diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md index 97472f4940..a559e7393b 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md @@ -1,8 +1,8 @@ --- -title: GitHub Importer でリポジトリをインポートする -intro: 他のバージョン管理システムにホストされているプロジェクトがある場合は、GitHub Importer ツールを使って自動的に GitHub にインポートすることができます。 +title: Importing a repository with GitHub Importer +intro: 'If you have a project hosted on another version control system, you can automatically import it to GitHub using the GitHub Importer tool.' redirect_from: - - /articles/importing-from-other-version-control-systems-to-github/ + - /articles/importing-from-other-version-control-systems-to-github - /articles/importing-a-repository-with-github-importer - /github/importing-your-projects-to-github/importing-a-repository-with-github-importer versions: @@ -10,28 +10,35 @@ versions: ghec: '*' shortTitle: Use GitHub Importer --- - {% tip %} -**ヒント:** GitHub Importer は、すべてのインポートに適しているわけではありません。 たとえば、既存のコードがプライベート ネットワークにホストされている場合、GitHub Importer はそれにアクセスできません。 このような場合、Git リポジトリであれば[コマンドラインを使用したインポート](/articles/importing-a-git-repository-using-the-command-line)、他のバージョン管理システムからインポートするプロジェクトであれば外部の[ソース コード移行ツール](/articles/source-code-migration-tools)をおすすめします。 +**Tip:** GitHub Importer is not suitable for all imports. For example, if your existing code is hosted on a private network, our tool won't be able to access it. In these cases, we recommend [importing using the command line](/articles/importing-a-git-repository-using-the-command-line) for Git repositories or an external [source code migration tool](/articles/source-code-migration-tools) for projects imported from other version control systems. {% endtip %} -インポート中に、自分のリポジトリでのコミットを作者の GitHub ユーザ アカウントに一致させたい場合は、インポートを始める前に、リポジトリのコントリビューター全員が GitHub アカウントを持っていることを確認してください。 +If you'd like to match the commits in your repository to the authors' GitHub user accounts during the import, make sure every contributor to your repository has a GitHub account before you begin the import. {% data reusables.repositories.repo-size-limit %} -1. ページの右上角で {% octicon "plus" aria-label="Plus symbol" %} をクリックし、[**Import repository**] を選択します。 ![[New repository] メニューの [Import repository] オプション](/assets/images/help/importer/import-repository.png) -2. [Your old repository's clone URL] に、インポートするプロジェクトの URL を入力します。 ![インポートするリポジトリの URL を入力するテキスト フィールド](/assets/images/help/importer/import-url.png) -3. 自分のユーザ アカウント、またはリポジトリを所有する組織を選択し、GitHub 上のリポジトリの名前を入力します。 ![リポジトリの [Owner] メニューと、リポジトリ名フィールド](/assets/images/help/importer/import-repo-owner-name.png) -4. 新しいリポジトリを*パブリック*にするか*プライベート*にするかを指定します。 詳細は「[リポジトリの可視性を設定する](/articles/setting-repository-visibility)」を参照してください。 ![リポジトリの [Public] と [Private] を選択するラジオ ボタン](/assets/images/help/importer/import-public-or-private.png) -5. 入力した情報を確認し、[**Begin import**] をクリックします。 ![[Begin import] ボタン](/assets/images/help/importer/begin-import-button.png) -6. 既存のプロジェクトがパスワードで保護されている場合は、必要なログイン情報を入力して [**Submit**] をクリックします。 ![パスワード保護されているプロジェクトのパスワード入力フォームと [Submit] ボタン](/assets/images/help/importer/submit-old-credentials-importer.png) -7. 既存のプロジェクトのクローン URL で複数のプロジェクトがホストされいる場合は、インポートしたいプロジェクトを選択して [**Submit**] をクリックします。 ![インポートするプロジェクトのリストと [Submit] ボタン](/assets/images/help/importer/choose-project-importer.png) -8. プロジェクトに 100 MB を超えるファイルがある場合は、[Git Large File Storage](/articles/versioning-large-files) を使用して大きいファイルをインポートするかどうかを選択し、[**Continue**] をクリックします。 ![[Git Large File Storage] メニューと [Continue] ボタン](/assets/images/help/importer/select-gitlfs-importer.png) +1. In the upper-right corner of any page, click {% octicon "plus" aria-label="Plus symbol" %}, and then click **Import repository**. +![Import repository option in new repository menu](/assets/images/help/importer/import-repository.png) +2. Under "Your old repository's clone URL", type the URL of the project you want to import. +![Text field for URL of imported repository](/assets/images/help/importer/import-url.png) +3. Choose your user account or an organization to own the repository, then type a name for the repository on GitHub. +![Repository owner menu and repository name field](/assets/images/help/importer/import-repo-owner-name.png) +4. Specify whether the new repository should be *public* or *private*. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)." +![Public or private repository radio buttons](/assets/images/help/importer/import-public-or-private.png) +5. Review the information you entered, then click **Begin import**. +![Begin import button](/assets/images/help/importer/begin-import-button.png) +6. If your old project was protected by a password, type your login information for that project, then click **Submit**. +![Password form and Submit button for password-protected project](/assets/images/help/importer/submit-old-credentials-importer.png) +7. If there are multiple projects hosted at your old project's clone URL, choose the project you'd like to import, then click **Submit**. +![List of projects to import and Submit button](/assets/images/help/importer/choose-project-importer.png) +8. If your project contains files larger than 100 MB, choose whether to import the large files using [Git Large File Storage](/articles/versioning-large-files), then click **Continue**. +![Git Large File Storage menu and Continue button](/assets/images/help/importer/select-gitlfs-importer.png) -リポジトリのインポートが完了すると、メールが届きます。 +You'll receive an email when the repository has been completely imported. -## 参考リンク +## Further reading -- [GitHub Importerでのコミット作者の属性の更新](/articles/updating-commit-author-attribution-with-github-importer) +- "[Updating commit author attribution with GitHub Importer](/articles/updating-commit-author-attribution-with-github-importer)" diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md index f9dca0a816..b4936814c0 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md @@ -1,11 +1,11 @@ --- -title: GitHub にソースコードをインポートする -intro: 'リポジトリは、{% ifversion fpt %}GitHub Importer、コマンドライン、{% else %}コマンドライン{% endif %}、または外部移行ツールを使用して GitHub にインポートできます。' +title: Importing source code to GitHub +intro: 'You can import repositories to GitHub using {% ifversion fpt %}GitHub Importer, the command line,{% else %}the command line{% endif %} or external migration tools.' redirect_from: - - /articles/importing-an-external-git-repository/ - - /articles/importing-from-bitbucket/ - - /articles/importing-an-external-git-repo/ - - /articles/importing-your-project-to-github/ + - /articles/importing-an-external-git-repository + - /articles/importing-from-bitbucket + - /articles/importing-an-external-git-repo + - /articles/importing-your-project-to-github - /articles/importing-source-code-to-github versions: fpt: '*' diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md index f0736eba67..eaf2788967 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md @@ -1,8 +1,8 @@ --- -title: ソースコード移行ツール -intro: 外部ツールを使って、プロジェクトを GitHub に移動できます。 +title: Source code migration tools +intro: You can use external tools to move your projects to GitHub. redirect_from: - - /articles/importing-from-subversion/ + - /articles/importing-from-subversion - /articles/source-code-migration-tools - /github/importing-your-projects-to-github/source-code-migration-tools versions: @@ -12,28 +12,27 @@ versions: ghec: '*' shortTitle: Code migration tools --- - {% ifversion fpt or ghec %} -We recommend using [GitHub Importer](/articles/about-github-importer) to import projects from Subversion, Mercurial, Team Foundation Version Control (TFVC), or another Git repository. これらの外部ツールを使って、プロジェクトを Git に変換することもできます。 +We recommend using [GitHub Importer](/articles/about-github-importer) to import projects from Subversion, Mercurial, Team Foundation Version Control (TFVC), or another Git repository. You can also use these external tools to convert your project to Git. {% endif %} -## Subversion からインポートする +## Importing from Subversion -一般的な Subversion の環境では、複数のプロジェクトが単一のルートリポジトリに保管されます。 GitHub 上では、一般的に、それぞれのプロジェクトはユーザアカウントや Organization の別々の Git リポジトリにマップします。 次の場合、Subversion リポジトリのそれぞれの部分を別々の GitHub リポジトリにインポートすることをおすすめします。 +In a typical Subversion environment, multiple projects are stored in a single root repository. On GitHub, each of these projects will usually map to a separate Git repository for a user account or organization. We suggest importing each part of your Subversion repository to a separate GitHub repository if: -* コラボレーターが、他の部分とは別のプロジェクトの部分をチェックアウトまたはコミットする必要がある場合 -* それぞれの部分にアクセス許可を設定したい場合 +* Collaborators need to check out or commit to that part of the project separately from the other parts +* You want different parts to have their own access permissions -Subversion リポジトリを Git にコンバートするには、これらのツールをおすすめします: +We recommend these tools for converting Subversion repositories to Git: - [`git-svn`](https://git-scm.com/docs/git-svn) - [svn2git](https://github.com/nirvdrum/svn2git) -## Mercurial からインポートする +## Importing from Mercurial -Mercurial リポジトリを Git にコンバートするには、 [hg-fast-export](https://github.com/frej/fast-export) をおすすめします。 +We recommend [hg-fast-export](https://github.com/frej/fast-export) for converting Mercurial repositories to Git. ## Importing from TFVC @@ -43,16 +42,16 @@ For more information about moving from TFVC (a centralized version control syste {% tip %} -**参考:** Git へのプロジェクトの変換が完了した後、[{% data variables.product.prodname_dotcom %} にプッシュできます。](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/) +**Tip:** After you've successfully converted your project to Git, you can [push it to {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). {% endtip %} {% ifversion fpt or ghec %} -## 参考リンク +## Further reading -- 「[GitHub Importer について](/articles/about-github-importer)」 -- [GitHub Importerでのリポジトリのインポート](/articles/importing-a-repository-with-github-importer) +- "[About GitHub Importer](/articles/about-github-importer)" +- "[Importing a repository with GitHub Importer](/articles/importing-a-repository-with-github-importer)" - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}) {% endif %} diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/index.md b/translations/ja-JP/content/github/importing-your-projects-to-github/index.md index b6b7231310..b2db417ddf 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/index.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/index.md @@ -1,10 +1,10 @@ --- -title: GitHub にプロジェクトをインポートする +title: Importing your projects to GitHub intro: 'You can import your source code to {% data variables.product.product_name %} using a variety of different methods.' -shortTitle: プロジェクトのインポート +shortTitle: Importing your projects redirect_from: - - /categories/67/articles/ - - /categories/importing/ + - /categories/67/articles + - /categories/importing - /categories/importing-your-projects-to-github versions: fpt: '*' diff --git a/translations/ja-JP/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md b/translations/ja-JP/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md index 53dd2df468..21d7ded6ac 100644 --- a/translations/ja-JP/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md +++ b/translations/ja-JP/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md @@ -1,8 +1,8 @@ --- -title: Subversion と Git の違い -intro: Subversion (SVN) リポジトリは、Git リポジトリに似ています。ですが、プロジェクトのアーキテクチャの点からいくつかの違いがあります。 +title: What are the differences between Subversion and Git? +intro: 'Subversion (SVN) repositories are similar to Git repositories, but there are several differences when it comes to the architecture of your projects.' redirect_from: - - /articles/what-are-the-differences-between-svn-and-git/ + - /articles/what-are-the-differences-between-svn-and-git - /articles/what-are-the-differences-between-subversion-and-git - /github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git versions: @@ -11,10 +11,9 @@ versions: ghec: '*' shortTitle: Subversion & Git differences --- +## Directory structure -## ディレクトリ構造 - -プロジェクトのそれぞれの *reference* やコミットのラベルスナップショットは、`trunk`、`branches`、`tags` などの特定のサブディレクトリにまとめられます。 たとえば、2 つの feature のある開発中の SVN プロジェクトは、このようになるでしょう: +Each *reference*, or labeled snapshot of a commit, in a project is organized within specific subdirectories, such as `trunk`, `branches`, and `tags`. For example, an SVN project with two features under development might look like this: sample_project/trunk/README.md sample_project/trunk/lib/widget.rb @@ -23,48 +22,48 @@ shortTitle: Subversion & Git differences sample_project/branches/another_new_feature/README.md sample_project/branches/another_new_feature/lib/widget.rb -SVN のワークフローは以下のようになります: +An SVN workflow looks like this: -* `trunk` ディレクトリは、プロジェクトの最新の安定したリリースを表します。 -* アクティブな feature は、 `branches` の下のサブディレクトリで開発されます。 -* feature が完了した時、feature ディレクトリは `trunk` にマージされ消去されます。 +* The `trunk` directory represents the latest stable release of a project. +* Active feature work is developed within subdirectories under `branches`. +* When a feature is finished, the feature directory is merged into `trunk` and removed. -Git プロジェクトも、単一のディレクトリに保管されます。 ですが、Gitは、reference を特別な *.git* ディレクトリに保管するため、その詳細は隠れています。 たとえば、2 つの feature のある開発中の Git プロジェクトは、このようになるでしょう: +Git projects are also stored within a single directory. However, Git obscures the details of its references by storing them in a special *.git* directory. For example, a Git project with two features under development might look like this: sample_project/.git sample_project/README.md sample_project/lib/widget.rb -Git のワークフローは以下のようになります: +A Git workflow looks like this: -* Git リポジトリは、ブランチおよびタグのすべての履歴を、*.git* ディレクトリ内に保管します。 -* 最新の安定したリリースは、デフォルトブランチに含まれています。 -* アクティブな feature は、別のブランチで開発されます。 -* feature が完了すると、フィーチャブランチはデフォルトブランチにマージされ、消去されます。 +* A Git repository stores the full history of all of its branches and tags within the *.git* directory. +* The latest stable release is contained within the default branch. +* Active feature work is developed in separate branches. +* When a feature is finished, the feature branch is merged into the default branch and deleted. -Git はディレクトリ構造は同じままですが、SVN とは違い、ファイルの変更内容はブランチベースです。 +Unlike SVN, with Git the directory structure remains the same, but the contents of the files change based on your branch. -## サブプロジェクトを含める +## Including subprojects -*サブプロジェクト*は、メインプロジェクト外で開発され管理されるプロジェクトです。 一般的に、自分でコードを管理する必要なく、プロジェクトに何らかの機能を加えるためにサブプロジェクトをインポートします。 サブプロジェクトがアップデートされる度、すべてを最新にするためにプロジェクトと同期できます。 +A *subproject* is a project that's developed and managed somewhere outside of your main project. You typically import a subproject to add some functionality to your project without needing to maintain the code yourself. Whenever the subproject is updated, you can synchronize it with your project to ensure that everything is up-to-date. -SVN では、サブプロジェクトは、*SVN external* と呼ばれます。 Git では、*Git サブモジュール*と呼ばれます。 コンセプトは似ていますが、Git サブモジュールは自動では最新状態のままにはなりません。プロジェクトに新しいバージョンを取り込むためには、明示的に要求する必要があります。 +In SVN, a subproject is called an *SVN external*. In Git, it's called a *Git submodule*. Although conceptually similar, Git submodules are not kept up-to-date automatically; you must explicitly ask for a new version to be brought into your project. For more information, see "[Git Tools Submodules](https://git-scm.com/book/en/Git-Tools-Submodules)" in the Git documentation. -## 履歴を保存する +## Preserving history -SVN は、プロジェクトの履歴は変更されないものとして設定されています。 Git allows you to modify previous commits and changes using tools like [`git rebase`](/github/getting-started-with-github/about-git-rebase). +SVN is configured to assume that the history of a project never changes. Git allows you to modify previous commits and changes using tools like [`git rebase`](/github/getting-started-with-github/about-git-rebase). {% tip %} -[GitHub は Subversion クライアントをサポートしていますが、](/articles/support-for-subversion-clients)同じプロジェクトで Git と SVN の両方を使っている場合、予期しない結果となる可能性があります。 Git のコミット履歴を操作した場合、常に同じコミットが SVN の履歴に残ります。 機密データを誤ってコミットした場合、[Git の履歴から削除するために役立つ記事があります](/articles/removing-sensitive-data-from-a-repository). +[GitHub supports Subversion clients](/articles/support-for-subversion-clients), which may produce some unexpected results if you're using both Git and SVN on the same project. If you've manipulated Git's commit history, those same commits will always remain within SVN's history. If you accidentally committed some sensitive data, we have [an article that will help you remove it from Git's history](/articles/removing-sensitive-data-from-a-repository). {% endtip %} -## 参考リンク +## Further reading -- [GitHub がサポートする Subversion プロパティ](/articles/subversion-properties-supported-by-github) -- [_Git SCM_ ブックの「ブランチおよびマージ」](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) -- 「[GitHub にソースコードをインポートする](/articles/importing-source-code-to-github)」 -- [ソースコードの移行ツール](/articles/source-code-migration-tools) +- "[Subversion properties supported by GitHub](/articles/subversion-properties-supported-by-github)" +- ["Branching and Merging" from the _Git SCM_ book](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) +- "[Importing source code to GitHub](/articles/importing-source-code-to-github)" +- "[Source code migration tools](/articles/source-code-migration-tools)" diff --git a/translations/ja-JP/content/github/index.md b/translations/ja-JP/content/github/index.md index b8c5e0a166..25aee3d946 100644 --- a/translations/ja-JP/content/github/index.md +++ b/translations/ja-JP/content/github/index.md @@ -1,9 +1,9 @@ --- title: GitHub redirect_from: - - /articles/ - - /common-issues-and-questions/ - - /troubleshooting-common-issues/ + - /articles + - /common-issues-and-questions + - /troubleshooting-common-issues intro: 'Documentation, guides, and help topics for software developers, designers, and project managers. Covers using Git, pull requests, issues, wikis, gists, and everything you need to make the most of GitHub for development.' versions: fpt: '*' diff --git a/translations/ja-JP/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md b/translations/ja-JP/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md index 85eaec6d41..3bfef628dd 100644 --- a/translations/ja-JP/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md +++ b/translations/ja-JP/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md @@ -1,8 +1,8 @@ --- title: Coordinated Disclosure of Security Vulnerabilities redirect_from: - - /responsible-disclosure/ - - /coordinated-disclosure/ + - /responsible-disclosure + - /coordinated-disclosure - /articles/responsible-disclosure-of-security-vulnerabilities - /site-policy/responsible-disclosure-of-security-vulnerabilities versions: @@ -11,11 +11,10 @@ topics: - Policy - Legal --- +We want to keep GitHub safe for everyone. If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. -私たちは、GitHubをすべての人にとって安全であるよう保ちたいと願っています。 If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. +## Bounty Program -## 報奨金制度 +Like several other large software companies, GitHub provides a bug bounty to better engage with security researchers. The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. Then, to recognize the significant effort that these researchers often put forth when hunting down bugs, we reward them with some cold hard cash. -セキュリティ研究者と良好な関係を築くため、一部の大規模ソフトウェア企業と同様、GitHubでもバグ報奨金を提供しています。 The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. 研究者がバグハンティングにつぎ込んだ努力を称えて、現金をお支払いします。 - -報奨金の詳細については、[GitHub Bug Bounty](https://bounty.github.com)のサイトをご覧ください。また、包括的な[法的免責事項](/articles/github-bug-bounty-program-legal-safe-harbor)も併せてご確認願います。それでは、バグハンティングをお楽しみください! +Check out the [GitHub Bug Bounty](https://bounty.github.com) site for bounty details, review our comprehensive [Legal Safe Harbor Policy](/articles/github-bug-bounty-program-legal-safe-harbor) terms as well, and happy hunting! diff --git a/translations/ja-JP/content/github/site-policy/dmca-takedown-policy.md b/translations/ja-JP/content/github/site-policy/dmca-takedown-policy.md index 46d16fc55a..05d313d7f4 100644 --- a/translations/ja-JP/content/github/site-policy/dmca-takedown-policy.md +++ b/translations/ja-JP/content/github/site-policy/dmca-takedown-policy.md @@ -1,10 +1,10 @@ --- -title: DMCAテイクダウンポリシー +title: DMCA Takedown Policy redirect_from: - - /dmca/ - - /dmca-takedown/ - - /dmca-takedown-policy/ - - /articles/dmca-takedown/ + - /dmca + - /dmca-takedown + - /dmca-takedown-policy + - /articles/dmca-takedown - /articles/dmca-takedown-policy versions: fpt: '*' @@ -13,105 +13,105 @@ topics: - Legal --- -このページは、GitHub によるデジタルミレニアム著作権法(DMCA)のガイドです。 これは法律を包括的に説明する入門書ではありません が、あなたが GitHub に投稿したコンテンツを対象とする DMCA テイクダウン通知を受け取った場合、またはそのような通知を発行しようとしている権利所有者の場合、このページはこの法律や、それに従うための当社の方針を理解する上で役立つはずです。 +Welcome to GitHub's Guide to the Digital Millennium Copyright Act, commonly known as the "DMCA." This page is not meant as a comprehensive primer to the statute. However, if you've received a DMCA takedown notice targeting content you've posted on GitHub or if you're a rights-holder looking to issue such a notice, this page will hopefully help to demystify the law a bit as well as our policies for complying with it. (If you just want to submit a notice, you can skip to "[G. Submitting Notices](#g-submitting-notices).") -法律に関わるあらゆる事項と同様、具体的な疑問や状況については専門家に相談するのが常に最善です。 あなたの権利に影響を及ぼす可能性のある行動をとる前に、そうすることを強くお勧めします。 このガイドは法律上の助言ではなく、またそのように解釈されるべきではありません。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## DMCA とは? +## What Is the DMCA? -DMCA とそこから導き出されるポリシーの一部を理解するには、この法律が制定される前の世の中について考えてみると良いでしょう。 +In order to understand the DMCA and some of the policy lines it draws, it's perhaps helpful to consider life before it was enacted. -DMCA は、ユーザ生成コンテンツをホストするサービスプロバイダーにセーフハーバーを提供します。 たった一つの著作権侵害請求でも最大 15 万ドルの法定損害賠償金が生じる可能性があることを考えると、ユーザ生成コンテンツの責任を問われる恐れは、サービスプロバイダーにとって死活問題になり得ます。 損害規模が数百万人のユーザに及ぶ可能性がある、クラウドコンピューティングや YouTube、Facebook、GitHub などのユーザ生成コンテンツサイトは、おそらく DMCA なしでは(または少なくともそのコストの一部をユーザに負担してもらわなければ)[存在しなかったでしょう](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/)。 +The DMCA provides a safe harbor for service providers that host user-generated content. Since even a single claim of copyright infringement can carry statutory damages of up to $150,000, the possibility of being held liable for user-generated content could be very harmful for service providers. With potential damages multiplied across millions of users, cloud-computing and user-generated content sites like YouTube, Facebook, or GitHub probably [never would have existed](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) without the DMCA (or at least not without passing some of that cost downstream to their users). -DMCA は、権利侵害が申し立てられたユーザ生成コンテンツをホストしているインターネットサービスプロバイダー向けの[著作権責任のセーフハーバー](https://www.copyright.gov/title17/92chap5.html#512)を設けることにより、この問題に対処しています。 基本的に、DMCA のノーティスアンドテイクダウンの規則に従っている限り、サービスプロバイダーはユーザ生成コンテンツに基づく著作権侵害の責任を問われません。 このため、DMCA のセーフハーバーの状態を維持することは GitHub にとって重要です。 +The DMCA addresses this issue by creating a [copyright liability safe harbor](https://www.copyright.gov/title17/92chap5.html#512) for internet service providers hosting allegedly infringing user-generated content. Essentially, so long as a service provider follows the DMCA's notice-and-takedown rules, it won't be liable for copyright infringement based on user-generated content. Because of this, it is important for GitHub to maintain its DMCA safe-harbor status. -また DMCA は、著作権で保護されている著作物へのアクセスを効果的に制限する[技術的手段の迂回](https://www.copyright.gov/title17/92chap12.html)も禁止しています。 +The DMCA also prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. -## DMCA 通知の要約 +## DMCA Notices In a Nutshell -DMCA には、すべての GitHub ユーザが知っておくべき 2 つの単純でわかりやすい手続きが用意されています。それは、(i) 著作権所有者がコンテンツの削除を要求するための[テイクダウン通知](/articles/guide-to-submitting-a-dmca-takedown-notice)の手続き、および (ii) コンテンツが誤ってまたは誤認されて削除された場合に、ユーザがコンテンツを再度有効にするための[異議申し立て通知](/articles/guide-to-submitting-a-dmca-counter-notice)の手続きです。 +The DMCA provides two simple, straightforward procedures that all GitHub users should know about: (i) a [takedown-notice](/articles/guide-to-submitting-a-dmca-takedown-notice) procedure for copyright holders to request that content be removed; and (ii) a [counter-notice](/articles/guide-to-submitting-a-dmca-counter-notice) procedure for users to get content re-enabled when content is taken down by mistake or misidentification. -著作権所有者は DMCA [テイクダウン通知](/articles/guide-to-submitting-a-dmca-takedown-notice)を使用して、GitHub に著作権を侵害していると思われるコンテンツを削除するよう依頼することができます。 ソフトウェア設計者や開発者であれば、著作権で保護されたコンテンツを日常的に作成しているでしょう。 他の誰かが著作権で保護されたあなたのコンテンツを GitHub で不正に使用している場合、あなたは著作権を侵害しているコンテンツを変更または削除するよう要求する DMCA テイクダウン通知を当社に送信できます。 +DMCA [takedown notices](/articles/guide-to-submitting-a-dmca-takedown-notice) are used by copyright owners to ask GitHub to take down content they believe to be infringing. If you are a software designer or developer, you create copyrighted content every day. If someone else is using your copyrighted content in an unauthorized manner on GitHub, you can send us a DMCA takedown notice to request that the infringing content be changed or removed. -一方、[異議申し立て通知](/articles/guide-to-submitting-a-dmca-counter-notice)は間違いを修正するために使用できます。 テイクダウン通知を送信した人が著作権を保持していない場合や、あなたがライセンスを所有していることを知らなかった場合など、間違いでテイクダウン通知が行われるケースもあります。 通常、GitHub には間違いがあったかどうかを知る術がないため、このような場合は DMCA の異議申し立て通知を使用してコンテンツの復元を依頼してください。 +On the other hand, [counter notices](/articles/guide-to-submitting-a-dmca-counter-notice) can be used to correct mistakes. Maybe the person sending the takedown notice does not hold the copyright or did not realize that you have a license or made some other mistake in their takedown notice. Since GitHub usually cannot know if there has been a mistake, the DMCA counter notice allows you to let us know and ask that we put the content back up. -DMCA のノーティスアンドテイクダウンプロセスは、著作権侵害に関する苦情に対してのみ使用されるべきものです。 DMCA プロセスを通じて送信された通知では、著作物または著作権侵害が申し立てられた著作物を特定する必要があります。 このプロセスは、[商標権侵害](/articles/github-trademark-policy/)の申し立てや[機密データ](/articles/github-sensitive-data-removal-policy/)に関する苦情など、他の苦情には使用できません。これらの状況に対しては個別のプロセスが用意されています。 +The DMCA notice and takedown process should be used only for complaints about copyright infringement. Notices sent through our DMCA process must identify copyrighted work or works that are allegedly being infringed. The process cannot be used for other complaints, such as complaints about alleged [trademark infringement](/articles/github-trademark-policy/) or [sensitive data](/articles/github-sensitive-data-removal-policy/); we offer separate processes for those situations. -## A. 具体的なプロセスは? +## A. How Does This Actually Work? -DMCA のフレームワークは、「授業中のメモまわし」に少し似ています。 著作権所有者は、GitHub にユーザに関する苦情を渡します。 内容に不備がなければ、当社は苦情をユーザに伝えます。 ユーザは、苦情に異議を唱える場合は、その旨を記したメモを返すことができます。 GitHub は、通知が DMCA の最小要件を満たしているかどうかを判断する以外、このプロセスではほとんど裁量権を行使しません。 主張の価値の評価は当事者(およびその弁護士)に委ねられます。なお、通知は偽証罪によって罰せられる対象になることにご注意ください。 +The DMCA framework is a bit like passing notes in class. The copyright owner hands GitHub a complaint about a user. If it's written correctly, we pass the complaint along to the user. If the user disputes the complaint, they can pass a note back saying so. GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -プロセスの基本的な手順は次のとおりです。 +Here are the basic steps in the process. -1. **著作権所有者が調査します。**著作権所有者は (a) 自身が原著作物の著作権を所有していること、および (b) GitHub のコンテンツが無許可であり著作権を侵害していることの両方を確認するために必ず最初の調査を行う必要があります。 これには、使用が[フェアユース](https://www.lumendatabase.org/topics/22)として保護されていないことの確認が含まれます。 著作権で保護されたコンテンツを少量のみ使用する場合、そのコンテンツを変革的な方法で使用する場合、教育目的で使用する場合、または上記を組み合わせた場合、特定の使用がフェアユースに該当する場合があります。 コードは当然そのような用途に適しているため、使用事例ごとに異なり、個別に検討する必要があります。 -> **例**:Acme Web Company の従業員が、GitHub リポジトリで会社のコードの一部を見つけた。 Acme Web Company は、自社のソースコードを複数の信頼できるパートナーにライセンス供与している。 テイクダウン通知を送信する前に、Acme はこれらのライセンスとその契約を確認して、GitHub 上のコードがそのいずれかに基づいて許可されていないことを確認する必要がある。 +1. **Copyright Owner Investigates.** A copyright owner should always conduct an initial investigation to confirm both (a) that they own the copyright to an original work and (b) that the content on GitHub is unauthorized and infringing. This includes confirming that the use is not protected as [fair use](https://www.lumendatabase.org/topics/22). A particular use may be fair if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +> **Example:** An employee of Acme Web Company finds some of the company's code in a GitHub repository. Acme Web Company licenses its source code out to several trusted partners. Before sending in a take-down notice, Acme should review those licenses and its agreements to confirm that the code on GitHub is not authorized under any of them. -2. **著作権所有者が通知を送信します。**調査を行った後、著作権所有者は[テイクダウン通知](/articles/guide-to-submitting-a-dmca-takedown-notice)を準備し、GitHub に送信します。 テイクダウン通知が([ハウツーガイド](/articles/guide-to-submitting-a-dmca-takedown-notice)で説明されている)法定要件に従って十分に詳細であることを条件に、当社は[パブリックリポジトリ](https://github.com/github/dmca)に[通知を投稿](#d-transparency)し、影響を受けるユーザにリンクを渡します。 +2. **Copyright Owner Sends A Notice.** After conducting an investigation, a copyright owner prepares and sends a [takedown notice](/articles/guide-to-submitting-a-dmca-takedown-notice) to GitHub. Assuming the takedown notice is sufficiently detailed according to the statutory requirements (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-takedown-notice)), we will [post the notice](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the link along to the affected user. -3. **GitHub がユーザに変更を要求します。**通知がリポジトリのコンテンツ全体、またはパッケージが著作権侵害に該当すると主張する内容の場合、当社はステップ 6 に移動し、リポジトリ全体またはパッケージを迅速に無効にします。 そうでない場合、GitHub はリポジトリ内の特定のファイルへのアクセスを無効にすることはできないため、リポジトリを作成したユーザに連絡し、約 1 営業日以内に通知で指定されたコンテンツを削除または変更するよう求めます。 ユーザに変更を行う機会を提供した場合、当社はその旨を著作権者に通知します。 パッケージはイミュータブルであるため、パッケージの一部が著作権を侵害している場合、GitHub はパッケージ全体を無効にする必要がありますが、侵害している部分が削除された場合は復帰を許可しています。 +3. **GitHub Asks User to Make Changes.** If the notice alleges that the entire contents of a repository infringe, or a package infringes, we will skip to Step 6 and disable the entire repository or package expeditiously. Otherwise, because GitHub cannot disable access to specific files within a repository, we will contact the user who created the repository and give them approximately 1 business day to delete or modify the content specified in the notice. We'll notify the copyright owner if and when we give the user a chance to make changes. Because packages are immutable, if only part of a package is infringing, GitHub would need to disable the entire package, but we permit reinstatement once the infringing portion is removed. -4. **ユーザが GitHub に変更を通知します。**ユーザは、指定された変更を行うことを選択した場合、約 1 営業日以内にその旨を当社に通知する*必要があります*。 選択しなかった場合は、当社はリポジトリを無効にします(ステップ 6 で説明)。 ユーザが変更を行ったことを当社に通知した場合、当社は変更が行われたことを確認してから著作権所有者に通知します。 +4. **User Notifies GitHub of Changes.** If the user chooses to make the specified changes, they *must* tell us so within the window of approximately 1 business day. If they don't, we will disable the repository (as described in Step 6). If the user notifies us that they made changes, we will verify that the changes have been made and then notify the copyright owner. -5. **著作権所有者が通知を修正または撤回します。**ユーザが変更を行った場合、著作権所有者はそれを確認し、変更が不十分な場合はテイクダウン通知を更新または修正する必要があります。 GitHub は、元のテイクダウン通知を更新する旨または修正版を送信する旨の連絡が著作権所有者からない限り、それ以上の措置を講じません。 著作権所有者は、変更に満足した場合、正式な撤回を提出することも、何もしないこともできます。 沈黙が 2 週間以上続いた場合、GitHub はそれをテイクダウン通知の暗黙の撤回として解釈します。 +5. **Copyright Owner Revises or Retracts the Notice.** If the user makes changes, the copyright owner must review them and renew or revise their takedown notice if the changes are insufficient. GitHub will not take any further action unless the copyright owner contacts us to either renew the original takedown notice or submit a revised one. If the copyright owner is satisfied with the changes, they may either submit a formal retraction or else do nothing. GitHub will interpret silence longer than two weeks as an implied retraction of the takedown notice. -6. **GitHub がコンテンツへのアクセスを無効にする場合があります。**次のいずれかの場合、GitHub はユーザのコンテンツを無効にします。(i) 著作権所有者がユーザのリポジトリ全体またはパッケージに対して著作権を主張している場合(ステップ 3 に記載)、(ii) ユーザが変更の機会を与えられた後、変更を行わなかった場合(ステップ 4 に記載)、(iii) ユーザが変更を行う機会を得た後、著作権所有者がテイクダウン通知を更新した場合。 著作権所有者が通知を*修正*することを代わりに選択した場合、当社はステップ 2 に戻り、修正された通知を新規の通知とみなしてプロセスを繰り返します。 +6. **GitHub May Disable Access to the Content.** GitHub will disable a user's content if: (i) the copyright owner has alleged copyright over the user's entire repository or package (as noted in Step 3); (ii) the user has not made any changes after being given an opportunity to do so (as noted in Step 4); or (iii) the copyright owner has renewed their takedown notice after the user had a chance to make changes. If the copyright owner chooses instead to *revise* the notice, we will go back to Step 2 and repeat the process as if the revised notice were a new notice. -7. **ユーザは異議申し立て通知を送信できます。**コンテンツを無効にしたユーザは、選択肢について弁護士に相談することをお勧めします。 間違いや誤認によりコンテンツが無効にされたと思われる場合は、ユーザは[異議申し立て通知](/articles/guide-to-submitting-a-dmca-counter-notice)を送信できます。 元の通知と同様に、当社は異議申し立て通知が十分に詳細であることを確認します([ハウツーガイド](/articles/guide-to-submitting-a-dmca-counter-notice)で説明されています)。 問題ない場合、当社は[パブリックリポジトリ](https://github.com/github/dmca)に[投稿](#d-transparency)し、リンクを送信することで著作権所有者に通知を返します。 +7. **User May Send A Counter Notice.** We encourage users who have had content disabled to consult with a lawyer about their options. If a user believes that their content was disabled as a result of a mistake or misidentification, they may send us a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). As with the original notice, we will make sure that the counter notice is sufficiently detailed (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-counter-notice)). If it is, we will [post it](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the notice back to the copyright owner by sending them the link. -8. **著作権所有者は法的措置を講じることができます。**異議申し立て通知を受け取った後も引き続きコンテンツを無効にしたい場合、著作権所有者は GitHub のコンテンツに関連する侵害行為にユーザが関与することを抑制する裁判所命令を求める法的措置を講じる必要があります。 つまり、訴えられる可能性があります。 10〜14 日以内に著作権所有者が GitHub に通知しない場合、管轄権のある裁判所に提出された有効な訴状の写しを送信することにより、GitHub は無効化されたコンテンツを再度有効にします。 +8. **Copyright Owner May File a Legal Action.** If a copyright owner wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain the user from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued. If the copyright owner does not give GitHub notice within 10-14 days, by sending a copy of a valid legal complaint filed in a court of competent jurisdiction, GitHub will re-enable the disabled content. -## B. フォークの場合は? (またはフォークとは?) +## B. What About Forks? (or What's a Fork?) -GitHub の最も優れた機能の 1 つに、ユーザが互いのリポジトリを「フォーク」できることがあります。 どういうことかと言うと、 基本的に、ユーザは GitHub のプロジェクトのコピーを自分のリポジトリに作成できます。 ライセンスや法律で許可されている範囲で、ユーザはそのフォークを変更してメインプロジェクトに戻したり、プロジェクトの独自のバリエーションとして保持したりすることができます。 これらの各コピーは、元のリポジトリの「[フォーク](/articles/github-glossary#fork)」であり、フォークの「親」とも呼ばれます。 +One of the best features of GitHub is the ability for users to "fork" one another's repositories. What does that mean? In essence, it means that users can make a copy of a project on GitHub into their own repositories. As the license or the law allows, users can then make changes to that fork to either push back to the main project or just keep as their own variation of a project. Each of these copies is a "[fork](/articles/github-glossary#fork)" of the original repository, which in turn may also be called the "parent" of the fork. -GitHub は、親リポジトリを無効にするときにフォークを自動的に無効に*しません*。 これは、フォークが異なるユーザに属し、著しく変更されている可能性があり、フェアユースの原則によって保護されている別の方法でライセンス供与または使用されている可能性があるためです。 GitHub がフォークに対して独立した調査を行うことはありません。 著作権所有者がその調査を行い、フォークも著作権を侵害していると思われる場合は、テイクダウン通知にフォークを明示的に含めることが求められます。 +GitHub *will not* automatically disable forks when disabling a parent repository. This is because forks belong to different users, may have been altered in significant ways, and may be licensed or used in a different way that is protected by the fair-use doctrine. GitHub does not conduct any independent investigation into forks. We expect copyright owners to conduct that investigation and, if they believe that the forks are also infringing, expressly include forks in their takedown notice. -時には、活発にフォークされているリポジトリ全体で著作権の侵害を主張することもあるでしょう。 あなたが通知を送信した時点で、そのリポジトリの既存フォーク全体を指定して著作権を侵害していると申し立てた場合、通知を処理する際に、そのネットワークにあるすべてのフォークに対して、有効な請求を適用します。 新しく作成されたフォークすべてに同じコンテンツが含まれる可能性を考慮して、これを行います。 さらに、著作権侵害の疑いがあるコンテンツを含むとして報告されたネットワークが 100 リポジトリを超え、そのすべてを確認することが困難である際、通知の中であなたが次のように記載している場合にはネットワーク全体の無効化を検討します。「サンプルとして十分な数のフォークを確認した結果、私はこのフォークのすべてまたは大部分が、親リポジトリと同程度に著作権を侵害しているものと信じています。(Based on the representative number of forks I have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository.)」 あなたの宣誓は、この申し立てに対して適用されます。 +In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks I have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -## C. 迂回の申し立てへの対応 +## C. What about Circumvention Claims? -DMCA は、著作権で保護されている著作物へのアクセスを効果的に制限する[技術的手段の迂回](https://www.copyright.gov/title17/92chap12.html)を禁止しています。 この種の申し立ては非常に技術的に高度である場合が多いので、GitHub は申立人に対し、[申し立てについて詳細な情報](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology)の提供を求め、比較的大規模な確認を行います。 +The DMCA prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. Given that these types of claims are often highly technical in nature, GitHub requires claimants to provide [detailed information about these claims](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology), and we undertake a more extensive review. -迂回に関する申し立てには、訴えるプロジェクトが備える技術的手段、および迂回の方法について、以下を詳述する必要があります。 特に GitHub への通知には、以下を説明する詳細な文章を記載する必要があります。 -1. 技術的手段 -2. 用いられている技術的手段が著作権で保護されたものへのアクセスを効果的に制限する方法 -3. 訴えるプロジェクトが、前述の技術的保護措置をどのように迂回するよう設計されているか +A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -GitHub は、技術的専門家と法的専門家の両者を交えて、迂回の申し立てを綿密に調べます。 技術的審査においては、技術的保護措置の仕組みと、プロジェクトが保護措置を迂回すると申し立てられている方法の詳細を検証するよう努めます。 法的審査においては、申し立てが DMCA の範囲を超えないように努めます。 申し立てが有効であるかどうかを判断できない場合は、開発者側を優先し、コンテンツを残します。 申立人が追加情報を提供して再度審査を求める場合、改訂された申し立てを評価するため再度審査を開始することがあります。 +GitHub will review circumvention claims closely, including by both technical and legal experts. In the technical review, we will seek to validate the details about the manner in which the technical protection measures operate and the way the project allegedly circumvents them. In the legal review, we will seek to ensure that the claims do not extend beyond the boundaries of the DMCA. In cases where we are unable to determine whether a claim is valid, we will err on the side of the developer, and leave the content up. If the claimant wishes to follow up with additional detail, we would start the review process again to evaluate the revised claims. -当社の専門家が、申し立てが十全で、法的、技術的に妥当であると判断した場合、当社はリポジトリのオーナーに連絡し、テイクダウンを回避するため、申し立てに応答するかリポジトリに変更を加える機会を与えます。 リポジトリのオーナーが応答しない場合は、さらなる対処を行う前に再度連絡を試みます。 つまり、リポジトリのオーナーに応答または変更の機会を与えるため連絡を試みる前に、迂回技術の申し立てに基づいてリポジトリを無効化することはいたしません。 リポジトリのオーナーに連絡して問題が解決しなかった場合、たとえコンテンツが無効化された後であっても、申し立てに意義を唱える機会を求める、追加の事実を提供する、またはコンテンツを復元するために変更を行う場合、当社はリポジトリのオーナーからの応答を検討いたします。 当社がコンテンツを無効化する必要がある場合は、Issue、プルリクエスト、および迂回コードと申し立てられているものを含まないその他のリポジトリデータについて、法的に可能な範囲でリポジトリのオーナーがエクスポートできるようにします。 +Where our experts determine that a claim is complete, legal, and technically legitimate, we will contact the repository owner and give them a chance to respond to the claim or make changes to the repo to avoid a takedown. If they do not respond, we will attempt to contact the repository owner again before taking any further steps. In other words, we will not disable a repository based on a claim of circumvention technology without attempting to contact a repository owner to give them a chance to respond or make changes first. If we are unable to resolve the issue by reaching out to the repository owner first, we will always be happy to consider a response from the repository owner even after the content has been disabled if they would like an opportunity to dispute the claim, present us with additional facts, or make changes to have the content restored. When we need to disable content, we will ensure that repository owners can export their issues and pull requests and other repository data that do not contain the alleged circumvention code to the extent legally possible. -ただし、当社の迂回技術に関する審査プロセスは、当社の利用規定に反して、不正な製品ライセンスキー、製品ライセンスキーを不正に生成するソフトウェア、および製品ライセンスキーのチェックを迂回するソフトウェアを共有するコンテンツには適用されません。 この種の申し立ては、迂回技術に関する DMCA の規定にも違反していることがありますが、通常は違反が明白であり、技術的および法的審査の実施は保証できません。 しかしながら、ジェイルブレイクなど、申し立ての真偽が明白でない場合は、申し立ての審査プロセスが適用される可能性があります。 +Please note, our review process for circumvention technology does not apply to content that would otherwise violate our Acceptable Use Policy restrictions against sharing unauthorized product licensing keys, software for generating unauthorized product licensing keys, or software for bypassing checks for product licensing keys. Although these types of claims may also violate the DMCA provisions on circumvention technology, these are typically straightforward and do not warrant additional technical and legal review. Nonetheless, where a claim is not straightforward, for example in the case of jailbreaks, the circumvention technology claim review process would apply. When GitHub processes a DMCA takedown under our circumvention technology claim review process, we will offer the repository owner a referral to receive independent legal consultation through [GitHub’s Developer Defense Fund](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) at no cost to them. -## D. うっかりして期間内に変更できなかった場合は? +## D. What If I Inadvertently Missed the Window to Make Changes? -正当な理由で、リポジトリが無効になる前に提供されるおよそ 1 営業日の期間内に変更を行うことができないケースも多々あることでしょう。 当社からのメッセージがスパムフォルダに入ってしまう場合も、休暇中だった場合も、対象のメールアカウントを定期的に確認していない場合も、単に忙しかった場合もあるでしょう。 このように 変更を行いたかったが、何らかの理由で最初の機会を逃した場合は、その旨を当社にご連絡ください。変更を行うことができるように、リポジトリを再度約 1 営業日有効にします。 繰り返しになりますが、上記の[ステップ A.4](#a-how-does-this-actually-work) で説明したように、約 1 営業日が過ぎてもリポジトリを有効に保つためには変更を行ったことを当社に通知する必要があります。 なお、この追加の機会が提供されるのは 1 度限りですのでご注意ください。 +We recognize that there are many valid reasons that you may not be able to make changes within the window of approximately 1 business day we provide before your repository gets disabled. Maybe our message got flagged as spam, maybe you were on vacation, maybe you don't check that email account regularly, or maybe you were just busy. We get it. If you respond to let us know that you would have liked to make the changes, but somehow missed the first opportunity, we will re-enable the repository one additional time for approximately 1 business day to allow you to make the changes. Again, you must notify us that you have made the changes in order to keep the repository enabled after that window of approximately 1 business day, as noted above in [Step A.4](#a-how-does-this-actually-work). Please note that we will only provide this one additional chance. -## E. 透明性 +## E. Transparency -当社は、透明性は美徳であると信じています。 GitHub から削除されるコンテンツとその理由は公にされるべきです。 知識のある人は、不透明なシステムでは見過ごされてしまう潜在的な問題に気づきこれを表面化することができます。 当社は、受け取った法的通知(元の通知、異議申し立て通知、撤回を含む)の編集後の写しを <https://github.com/github/dmca> に投稿します。 当社は、個人の連絡先情報は公開しません。通知を公開する前に個人情報(URL のユーザ名を除く)を削除します。 ただし、特別な要請がない限り、当社が通知のその他の情報を編集することはありません。 こちらに公開された[通知](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md)と[異議申し立て通知](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md)の例を示しますのでご覧ください。 当社は、コンテンツを削除すると、関連する通知へのリンクを代わりに投稿します。 +We believe that transparency is a virtue. The public should know what content is being removed from GitHub and why. An informed public can notice and surface potential issues that would otherwise go unnoticed in an opaque system. We post redacted copies of any legal notices we receive (including original notices, counter notices or retractions) at <https://github.com/github/dmca>. We will not publicly publish your personal contact information; we will remove personal information (except for usernames in URLs) before publishing notices. We will not, however, redact any other information from your notice unless you specifically ask us to. Here are some examples of a published [notice](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) and [counter notice](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) for you to see what they look like. When we remove content, we will post a link to the related notice in its place. -また、当社が未編集の通知を公開することはありませんが、受け取った通知の未編集の完全な写しを、それによって自身の権利が影響を受ける当事者に直接提供する場合はありますのでご注意ください。 +Please also note that, although we will not publicly publish unredacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. -## F. 繰り返しの侵害 +## F. Repeated Infringement -GitHub は、当社のポリシーとして、状況によっては独自の裁量により、GitHub またはその他の著作権またはその他の知的財産権を侵害する可能性のあるユーザのアカウントを無効化および解約します。 +It is the policy of GitHub, in appropriate circumstances and in its sole discretion, to disable and terminate the accounts of users who may infringe upon the copyrights or other intellectual property rights of GitHub or others. -## G. 通知の提出 +## G. Submitting Notices -通知または異議申し立て通知を提出する準備ができている場合 -- [DMCA 通知の提出方法](/articles/guide-to-submitting-a-dmca-takedown-notice) -- [DMCA 異議申し立て通知の提出方法](/articles/guide-to-submitting-a-dmca-counter-notice) +If you are ready to submit a notice or a counter notice: +- [How to Submit a DMCA Notice](/articles/guide-to-submitting-a-dmca-takedown-notice) +- [How to Submit a DMCA Counter Notice](/articles/guide-to-submitting-a-dmca-counter-notice) -## 詳細および当社の見解 +## Learn More and Speak Up -インターネットを探せば、著作権システム全般、特に DMCA についての解説や批判は難なく見つけることができるでしょう。 GitHub は、オンラインでイノベーションを促進する上で DMCA が果たしてきた重要な役割を認識し、評価していますが、著作権法については刷新とまではいかなくても、多少の改訂を加える程度のことはあってもいいのではないかと考えています。 ソフトウェアの世界では、コードは絶えず改善、更新されています。 DMCA が作成された 1998 年から、テクノロジーはどれほど変化したことでしょう。 ソフトウェアに適用されるこうした法律を更新することは理にかなっているのではないでしょうか。 +If you poke around the Internet, it is not too hard to find commentary and criticism about the copyright system in general and the DMCA in particular. While GitHub acknowledges and appreciates the important role that the DMCA has played in promoting innovation online, we believe that the copyright laws could probably use a patch or two—if not a whole new release. In software, we are constantly improving and updating our code. Think about how much technology has changed since 1998 when the DMCA was written. Doesn't it just make sense to update these laws that apply to software? -もちろん当社の考え方が絶対ではありません が、改革に関する意見や提案について私たちが見つけた学術記事やブログ投稿を以下に紹介しますので、もしご関心がございましたらご覧ください。 +We don't presume to have all the answers. But if you are curious, here are a few links to scholarly articles and blog posts we have found with opinions and proposals for reform: - [Unintended Consequences: Twelve Years Under the DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Electronic Frontier Foundation) - [Statutory Damages in Copyright Law: A Remedy in Need of Reform](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Mary Law Review) @@ -120,4 +120,4 @@ GitHub は、当社のポリシーとして、状況によっては独自の裁 - [Opportunities for Copyright Reform](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato Unbound) - [Fair Use Doctrine and the Digital Millennium Copyright Act: Does Fair Use Exist on the Internet Under the DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Santa Clara Law Review) -GitHub は、必ずしもこれらの記事の視点を支持しているわけではありません。 私たちがこうしたリンクを提供するのは、あなたがより多くのことを学び、あなた自身の意見を形成し、そしてあなたが選んだ代表者(例えば、[米国 議会](https://www.govtrack.us/congress/members)や[欧州 議会](https://www.europarl.europa.eu/meps/en/home))に働き掛けて、あなたが考える必要な変化を求めることができるようにするためです。 +GitHub doesn't necessarily endorse any of the viewpoints in those articles. We provide the links to encourage you to learn more, form your own opinions, and then reach out to your elected representative(s) (e.g, in the [U.S. Congress](https://www.govtrack.us/congress/members) or [E.U. Parliament](https://www.europarl.europa.eu/meps/en/home)) to seek whatever changes you think should be made. diff --git a/translations/ja-JP/content/github/site-policy/github-community-guidelines.md b/translations/ja-JP/content/github/site-policy/github-community-guidelines.md index b217944174..7011d661da 100644 --- a/translations/ja-JP/content/github/site-policy/github-community-guidelines.md +++ b/translations/ja-JP/content/github/site-policy/github-community-guidelines.md @@ -1,7 +1,7 @@ --- -title: GitHubコミュニティガイドライン +title: GitHub Community Guidelines redirect_from: - - /community-guidelines/ + - /community-guidelines - /articles/github-community-guidelines versions: fpt: '*' @@ -10,99 +10,110 @@ topics: - Legal --- -GitHub では、何百万人もの開発者が何百万ものプロジェクト(オープンソースとクローズドソースの両方)をホストしています。私たちは、コミュニティの日々のコラボレーションに貢献できることを光栄に思います。 私たちには、誇りに思うことができるコミュニティを実現するための素晴らしいチャンスがあると同時に、責任も背負っています。 +Millions of developers host millions of projects on GitHub — both open and closed source — and we're honored to play a part in enabling collaboration across the community every day. Together, we all have an exciting opportunity and responsibility to make this a community we can be proud of. -世界中の GitHub ユーザたちの持つ視点、アイデア、経験は十人十色。数日前に初めて「Hello World」プロジェクトを作った人から、世界で最も有名なソフトウェア開発者まで、さまざまなユーザがいます。 私たちは、GitHub をコミュニティ内のさまざまな意見や視点に対応した快適な環境にし、人々が自由に自分を表現できるスペースになるよう取り組んでいます。 +GitHub users worldwide bring wildly different perspectives, ideas, and experiences, and range from people who created their first "Hello World" project last week to the most well-known software developers in the world. We are committed to making GitHub a welcoming environment for all the different voices and perspectives in our community, while maintaining a space where people are free to express themselves. -期待の伝達やプロジェクトの[モデレート](#what-if-something-or-someone-offends-you)、虐待的な行動やコンテンツの{% data variables.contact.report_abuse %}報告{% data variables.contact.report_content %}は、コミュニティメンバーにかかっています。 GitHub でコラボレーションする最適な方法や、どんな行為やコンテンツが当社の[利用規定](/github/site-policy/github-acceptable-use-policies)を含む[利用規約](#legal-notices)に違反する恐れがあるのかを皆様に理解していただくために、ここではコミュニティ内では何が期待されるのかを説明いたします。 当社は不正行為の報告を調査し、利用規約に違反していると判断したサイトの公開コンテンツをモデレートする場合があります。 +We rely on our community members to communicate expectations, [moderate](#what-if-something-or-someone-offends-you) their projects, and {% data variables.contact.report_abuse %} or {% data variables.contact.report_content %}. By outlining what we expect to see within our community, we hope to help you understand how best to collaborate on GitHub, and what type of actions or content may violate our [Terms of Service](#legal-notices), which include our [Acceptable Use Policies](/github/site-policy/github-acceptable-use-policies). We will investigate any abuse reports and may moderate public content on our site that we determine to be in violation of our Terms of Service. -## 強いコミュニティを作る +## Building a strong community -GitHub コミュニティの主な目的は、ソフトウェアプロジェクトの共同作業です。 私たちの望みは、そんな皆様の共同作業がより良くなることです。 当社はサイトを管理していますが、これは私たちが*共に*構築するコミュニティです。それを最高のものにするためには、皆様のサポートが必要です。 +The primary purpose of the GitHub community is to collaborate on software projects. +We want people to work better together. Although we maintain the site, this is a community we build *together*, and we need your help to make it the best it can be. -* **広い心で受け入れる** - 他のコラボレータとあなたとでは、経験値やバックグラウンドが異なるかもしれませんが、だからといって相手がコントリビューションにつながる良いアイデアを持っていないということにはなりません。 新たなコラボレータや、かけだしのユーザーは歓迎してあげましょう。 +* **Be welcoming and open-minded** - Other collaborators may not have the same experience level or background as you, but that doesn't mean they don't have good ideas to contribute. We encourage you to be welcoming to new collaborators and those just getting started. -* **お互いを尊重し合うこと。**無礼な態度ほど、健全な会話を妨げるものはありません。 礼儀正しく、大人の態度を保ちましょう。一般的に攻撃的、虐待的、ヘイトスピーチとみなされるような内容を投稿しないでください。 嫌がらせや、人が悲しむような行為は禁止されています。 あらゆるやり取りにおいて、お互いに品位と配慮をもって接しましょう。 +* **Respect each other.** Nothing sabotages healthy conversation like rudeness. Be civil and professional, and don’t post anything that a reasonable person would consider offensive, abusive, or hate speech. Don’t harass or grief anyone. Treat each other with dignity and consideration in all interactions. - 意見に反対したいこともあるでしょう。 それは全くかまいません。 ただし、批判すべきはアイデアであって、人ではありません。 悪口、個人攻撃、投稿の内容ではなく口調に対する応答、脊髄反射的な反論を行うのではなく、 会話の質を高めるような、理論的な反論を行いましょう。 + You may wish to respond to something by disagreeing with it. That’s fine. But remember to criticize ideas, not people. Avoid name-calling, ad hominem attacks, responding to a post’s tone instead of its actual content, and knee-jerk contradiction. Instead, provide reasoned counter-arguments that improve the conversation. -* **共感をもってコミュニケーションを行う** - 意見の不一致や相違はよくあることです。 コミュニティの一員であることは、あなたとは違った背景や視点を持つさまざまな人と交流するということです。 誰かと意見が合わない場合は、それを直に伝える前に、その人を理解し、相手の立場に立ってみるようにしましょう。 こうすることで、質問や議論への参加、コントリビューションなどがしやすい、敬意と親密さに満ちた雰囲気が作られます。 +* **Communicate with empathy** - Disagreements or differences of opinion are a fact of life. Being part of a community means interacting with people from a variety of backgrounds and perspectives, many of which may not be your own. If you disagree with someone, try to understand and share their feelings before you address them. This will promote a respectful and friendly atmosphere where people feel comfortable asking questions, participating in discussions, and making contributions. -* **明確に伝え、トピックから逸脱しない** - GitHub は、仕事を進めたり生産性を高めたりするために使われるものです。 トピックから逸脱したコメントは、生産的に働いて仕事を終わらせるという目的から気をそらしてしまいます(たまにはいいかもしれませんが、普段は慎みましょう)。 トピックに集中することで、ポジティブで生産的な議論が生まれます。 +* **Be clear and stay on topic** - People use GitHub to get work done and to be more productive. Off-topic comments are a distraction (sometimes welcome, but usually not) from getting work done and being productive. Staying on topic helps produce positive and productive discussions. - また、インターネット上で見知らぬ人とやりとりする場合は、注意深さが求められます。 口調を伝えたり読み取ったりすることは難しく、皮肉な言葉が誤解されることも少なくありません。 明確な言葉を用い、相手がそれをどのように受け取るかを考えるようにしましょう。 + Additionally, communicating with strangers on the Internet can be awkward. It's hard to convey or read tone, and sarcasm is frequently misunderstood. Try to use clear language, and think about how it will be received by the other person. -## 嫌な思いをしたら +## What if something or someone offends you? -対応が必要な問題が当社の耳に入るかどうかは、コミュニティにかかっています。 私たちが攻撃的なコンテンツについてサイトを積極的に監視することはありません。 サイトで不快な思いをした場合は、GitHub が提供するいくつかのツールを使用することですぐに行動を取ることができます。 +We rely on the community to let us know when an issue needs to be addressed. We do not actively monitor the site for offensive content. If you run into something or someone on the site that you find objectionable, here are some tools GitHub provides to help you take action immediately: -* ** 期待を伝える** - コミュニティ固有の独自のガイドラインを設定していないコミュニティに参加する場合は、プルリクエストを送信して、README ファイルまたは [CONTRIBUTING](/articles/setting-guidelines-for-repository-contributors/) ファイル、または[専用の行動規範](/articles/adding-a-code-of-conduct-to-your-project/)のいずれかで参加することを推奨します。 +* **Communicate expectations** - If you participate in a community that has not set their own, community-specific guidelines, encourage them to do so either in the README or [CONTRIBUTING file](/articles/setting-guidelines-for-repository-contributors/), or in [a dedicated code of conduct](/articles/adding-a-code-of-conduct-to-your-project/), by submitting a pull request. -* **コメントをモデレートする** - リポジトリの[書き込みアクセス権限](/articles/repository-permission-levels-for-an-organization/)がある場合、コミット、プルリクエスト、および Issue に関するコメントを編集、削除、または非表示にすることができます。 リポジトリの読み取りアクセスがあれば、誰でもコミットの編集履歴を見ることができます。 コメントの作者とリポジトリの書き込みアクセスがある人は、コメントの編集履歴から機密情報を削除できます。 詳細については、「[コメントの変更を追跡する](/articles/tracking-changes-in-a-comment)」および「[混乱を生むコメントを管理する](/articles/managing-disruptive-comments)」を参照してください。 +* **Moderate Comments** - If you have [write-access privileges](/articles/repository-permission-levels-for-an-organization/) for a repository, you can edit, delete, or hide anyone's comments on commits, pull requests, and issues. Anyone with read access to a repository can view a comment's edit history. Comment authors and people with write access to a repository can delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/articles/tracking-changes-in-a-comment)" and "[Managing disruptive comments](/articles/managing-disruptive-comments)." -* **会話をロックする**  - Issue やプルリクエストのディスカッションが制御不能になった場合は、[会話をロック](/articles/locking-conversations/)できます。 +* **Lock Conversations**  - If a discussion in an issue or pull request gets out of control, you can [lock the conversation](/articles/locking-conversations/). -* **ユーザーをブロックする**  - 繰り返し不適切な行動を取るユーザに遭遇した場合は、[ユーザを個人アカウントからブロック](/articles/blocking-a-user-from-your-personal-account/)したり、[ユーザを Organization からブロック](/articles/blocking-a-user-from-your-organization/)できます。 +* **Block Users**  - If you encounter a user who continues to demonstrate poor behavior, you can [block the user from your personal account](/articles/blocking-a-user-from-your-personal-account/) or [block the user from your organization](/articles/blocking-a-user-from-your-organization/). -もちろん、状況に対処するためにさらなるサポートが必要な場合は、いつでも{% data variables.contact.report_abuse %}するため連絡できます。 +Of course, you can always contact us to {% data variables.contact.report_abuse %} if you need more help dealing with a situation. -## 禁止事項 +## What is not allowed? -私たちは、ユーザが自由に自己表現し、それが技術的な内容であろうがそうでなかろうが、お互いのアイデアについて意見を交換できるコミュニティを維持できるように取り組んでいます。 しかし、コミュニティのメンバーが怒鳴られたり、発言するのが怖いためにアイデアが出てこない場合、このようなディスカッションから実りある対話が生まれることは少ないでしょう。 このため、常に敬意を払い、礼儀正しく振る舞うべきで、相手が何者かであるかを根拠にして他人を攻撃することは控えるべきです。 当社は、一線を越えた次のような行為を許容しません。 +We are committed to maintaining a community where users are free to express themselves and challenge one another's ideas, both technical and otherwise. Such discussions, however, are unlikely to foster fruitful dialog when ideas are silenced because community members are being shouted down or are afraid to speak up. That means you should be respectful and civil at all times, and refrain from attacking others on the basis of who they are. We do not tolerate behavior that crosses the line into the following: -- #### 暴力による脅し。 他人を脅したり、サイトを利用して現実世界の暴力やテロ行為を組織、促進、または扇動することはできません。 言葉を発する場合や画像を投稿する場合はもちろん、ソフトウェアを作成する場合でさえも、それが他人からどのように解釈される可能性があるかを慎重に考えてください。 あなたが冗談のつもりでも、そのように受け取られないかもしれません。 自分が投稿したコンテンツが脅しである、または暴力やテロを助長していると他の誰かが解釈する*かもしれない*と思われる場合は、 それをGitHubに投稿するのを止めましょう。 場合によっては、当社が身体的危害のリスクや公共の安全に対する脅威だと判断し、暴力の脅威として法執行機関に報告する場合があります。 +- #### Threats of violence + You may not threaten violence towards others or use the site to organize, promote, or incite acts of real-world violence or terrorism. Think carefully about the words you use, the images you post, and even the software you write, and how they may be interpreted by others. Even if you mean something as a joke, it might not be received that way. If you think that someone else *might* interpret the content you post as a threat, or as promoting violence or terrorism, stop. Don't post it on GitHub. In extraordinary cases, we may report threats of violence to law enforcement if we think there may be a genuine risk of physical harm or a threat to public safety. -- #### 差別的発言と差別。 年齢、体の大きさ、障害、民族性、性自認、性表現、経験の度合い、国籍、容姿、人種、宗教、性同一性、性的指向などのトピックを持ち出すこと自体は禁止されていませんが、相手が何者かであるかを根拠にして個人またはグループを攻撃する発言を当社は許容しません。 攻撃的または侮辱的なアプローチでこうしたデリケートなトピックを扱った場合、他の人を不快に感じさせたり、場合によっては危険にさえ感じさせたりすることがあることを認識してください。 誤解が生まれる可能性を完全に排除することはできませんが、デリケートなトピックを議論するときは、常に敬意を払い、礼儀正しく振る舞うことがコミュニティメンバーに期待されます。 +- #### Hate speech and discrimination + While it is not forbidden to broach topics such as age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation, we do not tolerate speech that attacks a person or group of people on the basis of who they are. Just realize that when approached in an aggressive or insulting manner, these (and other) sensitive topics can make others feel unwelcome, or perhaps even unsafe. While there's always the potential for misunderstandings, we expect our community members to remain respectful and civil when discussing sensitive topics. -- #### いじめと嫌がらせ。 私たちは、いじめや嫌がらせを容認しません。 これは、特定の個人またはグループを標的とする常習的な煽りや脅迫のことです。 一般的に、迷惑な行動を続けた場合、いじめや嫌がらせになる恐れが高くなります。 +- #### Bullying and harassment + We do not tolerate bullying or harassment. This means any habitual badgering or intimidation targeted at a specific person or group of people. In general, if your actions are unwanted and you continue to engage in them, there's a good chance you are headed into bullying or harassment territory. -- #### 他のユーザのエクスペリエンスを妨げること。 コミュニティの一員であることには、あなたの振る舞いが他の人に与える影響を認識し、人々およびプラットフォームと有意義で生産的なやり取りを行うということでもあります。 話題から逸れたコメントを繰り返し投稿したり、空や無意味な Issue、プルリクエストをオープンしたり、プラットフォームのその他の機能を、他のユーザのエクスペリエンスを継続的に妨げたりするような振る舞いは許されません。 メンテナには自己のプロジェクトを個別に管理していただく一方、GitHubのスタッフは、こうした振る舞いに関与するアカウントに対して、さらに踏み込んだ制限を行うことができます。 +- #### Disrupting the experience of other users + Being part of a community includes recognizing how your behavior affects others and engaging in meaningful and productive interactions with people and the platform they rely on. Behaviors such as repeatedly posting off-topic comments, opening empty or meaningless issues or pull requests, or using any other platform feature in a way that continually disrupts the experience of other users are not allowed. While we encourage maintainers to moderate their own projects on an individual basis, GitHub staff may take further restrictive action against accounts that are engaging in these types of behaviors. -- #### Impersonation You may not impersonate another person by copying their avatar, posting content under their email address, using a similar username or otherwise posing as someone else. なりすましは嫌がらせの一つです。 +- #### Impersonation + You may not impersonate another person by copying their avatar, posting content under their email address, using a similar username or otherwise posing as someone else. Impersonation is a form of harassment. -- #### 晒しとプライバシーの侵害。 プライベート用のメールアドレス、電話番号、住所、クレジットカード番号、社会保障番号、国民識別番号、パスワードなど、他の人の個人情報は投稿しないでください。 脅迫や嫌がらせに該当するなど状況次第では、当社は対象の同意なしに撮影または配信された写真やビデオなどの他の情報をプライバシーの侵害とみなす場合があります。その情報が対象の安全リスクになる場合は特にです。 +- #### Doxxing and invasion of privacy + Don't post other people's personal information, such as personal, private email addresses, phone numbers, physical addresses, credit card numbers, Social Security/National Identity numbers, or passwords. Depending on the context, such as in the case of intimidation or harassment, we may consider other information, such as photos or videos that were taken or distributed without the subject's consent, to be an invasion of privacy, especially when such material presents a safety risk to the subject. -- #### わいせつなコンテンツ。 ポルノに該当するコンテンツは投稿しないでください。 これは、すべてのヌード、または性に関するすべてのコードやコンテンツが禁止されていることを意味するものではありません。 セクシュアリティは生活の一部であり、ポルノ以外の性的コンテンツがプロジェクトの一部になったり、教育的または芸術的な目的で提示され得るものであることを当社は認識しています。 ただし、わいせつな性的コンテンツや未成年者の搾取や性的関与を含むコンテンツは許可されません。 +- #### Sexually obscene content + Don’t post content that is pornographic. This does not mean that all nudity, or all code and content related to sexuality, is prohibited. We recognize that sexuality is a part of life and non-pornographic sexual content may be a part of your project, or may be presented for educational or artistic purposes. We do not allow obscene sexual content or content that may involve the exploitation or sexualization of minors. -- #### 脈絡のない暴力的コンテンツ。 合理的な文脈がない場合、また警告なしに暴力的な画像やテキストなどのコンテンツを投稿しないでください。 ビデオゲーム、ニュースレポート、過去の出来事の説明に暴力的なコンテンツを含めることは多くの場合問題ありませんが、無差別に投稿された暴力的コンテンツや、他のユーザにとって回避が困難な方法(例えば、プロフィールアバターや Issue のコメントとして)で投稿された暴力的コンテンツは許可されません。 他のコンテキスト内に明確な警告や断りがあれば、ユーザはそのようなコンテンツに関与したいかどうかについて知識に基づいて判断を下すことができるでしょう。 +- #### Gratuitously violent content + Don’t post violent images, text, or other content without reasonable context or warnings. While it's often okay to include violent content in video games, news reports, and descriptions of historical events, we do not allow violent content that is posted indiscriminately, or that is posted in a way that makes it difficult for other users to avoid (such as a profile avatar or an issue comment). A clear warning or disclaimer in other contexts helps users make an educated decision as to whether or not they want to engage with such content. -- #### 誤情報および偽の情報。 公衆に害を及ぼしかねない、またはすべての人が公の生活に参加するための公正で平等な機会を阻害する可能性があるような、現実をゆがめた内容の投稿は、不正確や誤り (誤情報) であれ、意図的な嘘 (偽の情報) であれ行ってはなりません。 たとえば、人々の幸福を脅かしたり、自由で開かれた社会への参加を制限したりするコンテンツは許容できません。 当社はアイデア、視点、経験を表現することにおいて積極的な参加を促しており、個人アカウントや意見に反論するような立場にはないでしょう。 当社は一般的に、利用規定に沿ったパロディや風刺を許容します。また、情報がどのように受け止められ、理解されるかにおいては、文脈が重要だと考えています。ですから、お断りやその他の手段、および情報源を示すことにより、あなたの意図を明確にすることが適切な場合もあるでしょう。 +- #### Misinformation and disinformation + You may not post content that presents a distorted view of reality, whether it is inaccurate or false (misinformation) or is intentionally deceptive (disinformation) where such content is likely to result in harm to the public or to interfere with fair and equal opportunities for all to participate in public life. For example, we do not allow content that may put the well-being of groups of people at risk or limit their ability to take part in a free and open society. We encourage active participation in the expression of ideas, perspectives, and experiences and may not be in a position to dispute personal accounts or observations. We generally allow parody and satire that is in line with our Acceptable Use Polices, and we consider context to be important in how information is received and understood; therefore, it may be appropriate to clarify your intentions via disclaimers or other means, as well as the source(s) of your information. -- #### アクティブなマルウェアやエクスプロイト。 コミュニティの一員になる以上、コミュニティの他のメンバーにつけ込むような行為を行ってはいけません。 悪意のある実行可能ファイルを配信する手段としてや、サービス拒否攻撃を組織したりコマンドアンドコントロールサーバーを管理したりといった攻撃インフラとして GitHub を使用するなど、当社のプラットフォームを使用して、技術的な危害を及ぼす非合法な攻撃を直接支援することは許可しません。 技術的な危害とは、悪用が生じる前に黙示的または明示的なデュアルユースの目的が存在しない、リソースの過剰な消費、物理的損傷、ダウンタイム、サービス拒否、データ損失のことを意味します。 +- #### Active malware or exploits + Being part of a community includes not taking advantage of other members of the community. We do not allow anyone to use our platform in direct support of unlawful attacks that cause technical harms, such as using GitHub as a means to deliver malicious executables or as attack infrastructure, for example by organizing denial of service attacks or managing command and control servers. Technical harms means overconsumption of resources, physical damage, downtime, denial of service, or data loss, with no implicit or explicit dual-use purpose prior to the abuse occurring. - ただし、GitHub はデュアルユースのコンテンツを許容し、脆弱性、マルウェア、またはエクスプロイトの研究に用いられるコンテンツの投稿を支持しています。こうしたコンテンツの公開や配布には教育的価値があり、セキュリティコミュニティに総合的に見て利益をもたらします。 当社はこうしたプロジェクトに肯定的な意図があり、エコシステム全体の促進と改善を促すために利用されることを想定しています。 + Note that GitHub allows dual-use content and supports the posting of content that is used for research into vulnerabilities, malware, or exploits, as the publication and distribution of such content has educational value and provides a net benefit to the security community. We assume positive intention and use of these projects to promote and drive improvements across the ecosystem. - デュアルユースのコンテンツが広範に乱用されている場合、当社は GitHub platform as an エクスプロイトやマルウェアの CDN として GitHub プラットフォームを活用している、現在進行中の非合法な攻撃やマルウェアキャンペーンを妨げるため、コンテンツの特定のインスタンスへの制限することが稀にあります。 ほとんどのインスタンスでは、コンテンツに認証を要求するという形で制限しますが、最後の手段として、アクセスの無効化や、それが不可能な場合 (Gist として投稿されている場合) はインスタンスの完全な削除を行う場合もあります。 また、可能な場合は導入した制限についてプロジェクトのオーナーに連絡します。 + In rare cases of very widespread abuse of dual-use content, we may restrict access to that specific instance of the content to disrupt an ongoing unlawful attack or malware campaign that is leveraging the GitHub platform as an exploit or malware CDN. In most of these instances, restriction takes the form of putting the content behind authentication, but may, as an option of last resort, involve disabling access or full removal where this is not possible (e.g. when posted as a gist). We will also contact the project owners about restrictions put in place where possible. - 制限は可能な限り一時的なものとし、プラットフォームから特定のデュアルユースコンテンツやそのコピーを永久的に取り除いたり、制限したりする目的で行うものではありません。 こうした稀な制限を、当社はプロジェクトのオーナーとの共同作業とすることを目指していますが、コンテンツが過度に制限されていると感じる場合は、[異議申し立てプロセス](#appeal-and-reinstatement)をご用意しています。 + Restrictions are temporary where feasible, and do not serve the purpose of purging or restricting any specific dual-use content, or copies of that content, from the platform in perpetuity. While we aim to make these rare cases of restriction a collaborative process with project owners, if you do feel your content was unduly restricted, we have an [appeals process](#appeal-and-reinstatement) in place. - プロジェクトメンテナ自身による不正利用の解決を促進するため、GitHub に不正利用を報告する前に、リポジトリのオーナーが潜在的に有害なセキュリティ研究コンテンツを投稿する際に、リポジトリのオーナーが次のステップを実行するよう推奨します。(強制ではありません。) + To facilitate a path to abuse resolution with project maintainers themselves, prior to escalation to GitHub abuse reports, we recommend, but do not require, that repository owners take the following steps when posting potentially harmful security research content: - * プロジェクトの README ファイルの免責事項やソースコードのコメントに、潜在的に有害なコンテンツを明示し説明する。 - * リポジトリの SECURITY.md ファイルに、第三者が悪用について問い合わせる方法を記載する (例:「疑問や懸念事項については、このリポジトリに Issue を作成してください」)。 こうした連絡方法により、第三者はプロジェクトのメンテナに直接連絡でき、不正利用の報告を提出することなく問題を解決できる可能性があります。 + * Clearly identify and describe any potentially harmful content in a disclaimer in the project’s README.md file or source code comments. + * Provide a preferred contact method for any 3rd party abuse inquiries through a SECURITY.md file in the repository (e.g. "Please create an issue on this repository for any questions or concerns"). Such a contact method allows 3rd parties to reach out to project maintainers directly and potentially resolve concerns without the need to file abuse reports. - *GitHub は、npm レジストリについて、研究用ではなく主にコードのインストールと実行時に使用するプラットフォームとしています。* + *GitHub considers the npm registry to be a platform used primarily for installation and run-time use of code, and not for research.* -## 誰かがルールに違反した場合は +## What happens if someone breaks the rules? -ユーザから不適切な行動やコンテンツの報告があった場合に当社が講じる措置はさまざまです。 これは、事態の正確な状況次第で決まるのが普通です。 人はさまざまな理由で不適切な発言や行動をしてしまうことがあるというのが、当社の認識です。 自分の言葉がどのように受け取られるのかをわかっていなかったという場合もあるでしょう。 または、つい感情的になってしまったという場合もあるでしょう。 もちろん、単にスパムをばらまいたり、トラブルを引き起こすことを目的とする人がいることも事実です。 +There are a variety of actions that we may take when a user reports inappropriate behavior or content. It usually depends on the exact circumstances of a particular case. We recognize that sometimes people may say or do inappropriate things for any number of reasons. Perhaps they did not realize how their words would be perceived. Or maybe they just let their emotions get the best of them. Of course, sometimes, there are folks who just want to spam or cause trouble. -ケースバイケースで異なるアプローチが必要なため、当社は報告を受けた状況に合った対応を行うように心がけています。 このため、不正行為に関する報告は個別に確認しています。 いずれの場合も、多様性に富んだチームがコンテンツとそれに関する事情を調査し、必要に応じて対応し、このガイドラインに基づいて決定を下します。 +Each case requires a different approach, and we try to tailor our response to meet the needs of the situation that has been reported. We'll review each abuse report on a case-by-case basis. In each case, we will have a diverse team investigate the content and surrounding facts and respond as appropriate, using these guidelines to guide our decision. -不正行為の報告を受けた際に当社が講じる措置には以下が含まれますが、これらに限定されません。 +Actions we may take in response to an abuse report include but are not limited to: -* コンテンツの削除 -* コンテンツのブロック -* アカウントの一時停止 -* アカウントの解約 +* Content Removal +* Content Blocking +* Account Suspension +* Account Termination -## 意義申し立てと復帰 +## Appeal and Reinstatement -たとえば、ユーザが提供する追加情報を理由として、あるいはユーザが違反に対応し、今後は利用規定に従うことに同意した場合など、措置を覆す理由が存在する場合もあります。 強制措置に意義を申し立てたい場合は、[サポート](https://support.github.com/contact?tags=docs-policy)にお問い合わせください。 +In some cases there may be a basis to reverse an action, for example, based on additional information a user provided, or where a user has addressed the violation and agreed to abide by our Acceptable Use Policies moving forward. If you wish to appeal an enforcement action, please contact [support](https://support.github.com/contact?tags=docs-policy). -## 法的通知 +## Legal Notices -本コミュニティガイドラインは、[CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) の条件に基づいて、誰でも使用、再利用、改作、その他あらゆることが可能になるようにパブリックドメインになっています。 +We dedicate these Community Guidelines to the public domain for anyone to use, reuse, adapt, or whatever, under the terms of [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). -これはあくまでもガイドラインであり、[利用規約](/articles/github-terms-of-service/)を変更するものや、完全なリストであることを意図したものではありません。 GitHub は、[利用規約](/articles/github-terms-of-service/#c-acceptable-use)に基づいて、利用規定に違反するコンテンツを削除するか、または利用規定に違反する活動のアカウントを解約することができる、完全な裁量を保持します。 本ガイドラインでは、かかる裁量を行使する場合について説明しています。 +These are only guidelines; they do not modify our [Terms of Service](/articles/github-terms-of-service/) and are not intended to be a complete list. GitHub retains full discretion under the [Terms of Service](/articles/github-terms-of-service/#c-acceptable-use) to remove any content or terminate any accounts for activity that violates our Terms on Acceptable Use. These guidelines describe when we will exercise that discretion. diff --git a/translations/ja-JP/content/github/site-policy/github-logo-policy.md b/translations/ja-JP/content/github/site-policy/github-logo-policy.md index 98ba5e4f03..ec874245e8 100644 --- a/translations/ja-JP/content/github/site-policy/github-logo-policy.md +++ b/translations/ja-JP/content/github/site-policy/github-logo-policy.md @@ -1,8 +1,8 @@ --- -title: GitHubロゴのポリシー +title: GitHub Logo Policy redirect_from: - - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know/ - - /articles/using-an-octocat-to-link-to-github-or-your-github-profile/ + - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know + - /articles/using-an-octocat-to-link-to-github-or-your-github-profile - /articles/github-logo-policy versions: fpt: '*' @@ -11,6 +11,6 @@ topics: - Legal --- -場合によっては、{% data variables.product.prodname_dotcom %} のロゴをあなたのウェブサイトまたはサードパーティアプリケーションに追加できます。 ロゴの使用に関する詳細と具体的なガイドラインについては、[{% data variables.product.prodname_dotcom %} のロゴと使い方のページ](https://github.com/logos)をご覧ください。 +You can add {% data variables.product.prodname_dotcom %} logos to your website or third-party application in some scenarios. For more information and specific guidelines on logo usage, see the [{% data variables.product.prodname_dotcom %} Logos and Usage page](https://github.com/logos). -また、Octocat をあなたの個人的なアバターとして、またはあなたのウェブサイトで使用して、{% data variables.product.prodname_dotcom %} アカウントにリンクすることもできますが、あなたの会社やあなたが構築している製品に対して使用することはできません。 {% data variables.product.prodname_dotcom %} は、[Octodex](https://octodex.github.com/) にさまざまな Octocat を所有しています。 Octodex の Octocat を使用する際の詳細については、[Octodex FAQ](https://octodex.github.com/faq/) をご覧ください。 +You can also use an octocat as your personal avatar or on your website to link to your {% data variables.product.prodname_dotcom %} account, but not for your company or a product you're building. {% data variables.product.prodname_dotcom %} has an extensive collection of octocats in the [Octodex](https://octodex.github.com/). For more information on using the octocats from the Octodex, see the [Octodex FAQ](https://octodex.github.com/faq/). diff --git a/translations/ja-JP/content/github/site-policy/github-privacy-statement.md b/translations/ja-JP/content/github/site-policy/github-privacy-statement.md index df3e62ec88..a9ce688a7e 100644 --- a/translations/ja-JP/content/github/site-policy/github-privacy-statement.md +++ b/translations/ja-JP/content/github/site-policy/github-privacy-statement.md @@ -1,12 +1,12 @@ --- -title: GitHubのプライバシーについての声明 +title: GitHub Privacy Statement redirect_from: - - /privacy/ - - /privacy-policy/ - - /privacy-statement/ - - /github-privacy-policy/ - - /articles/github-privacy-policy/ - - /articles/github-privacy-statement/ + - /privacy + - /privacy-policy + - /privacy-statement + - /github-privacy-policy + - /articles/github-privacy-policy + - /articles/github-privacy-statement versions: fpt: '*' topics: @@ -14,329 +14,329 @@ topics: - Legal --- -発効日:2020年12月20日 +Effective date: December 19, 2020 -お客様のソースコードやプロジェクト、個人情報について、GitHub Inc (以下、「GitHub」「当社」と称します)をご信頼いただき、ありがとうございます。 お客様の個人情報を保持することは重大な責務であり、当社がどのように取り扱っているのかを知っていただければと思います。 +Thanks for entrusting GitHub Inc. (“GitHub”, “we”) with your source code, your projects, and your personal information. Holding on to your private information is a serious responsibility, and we want you to know how we're handling it. -本文で注釈のない限り、すべての大文字の用語の定義は、[GitHub利用規約](/github/site-policy/github-terms-of-service)にあります。 +All capitalized terms have their definition in [GitHub’s Terms of Service](/github/site-policy/github-terms-of-service), unless otherwise noted here. -## ショートバージョン +## The short version -Githubではお客様の個人情報をプライバシーステートメントに記載のとおり使用します。 お客様の所在地や住所、どこの国の市民かに関係なく、出身国や所在地を問わず世界中のすべてのユーザーに対して等しく高水準のプライバシー保護を提供します。 +We use your personal information as this Privacy Statement describes. No matter where you are, where you live, or what your citizenship is, we provide the same high standard of privacy protection to all our users around the world, regardless of their country of origin or location. -もちろん、このショートバージョンと概要にすべてが記載されているわけではありません。詳細は読み進めてください。 +Of course, the short version and the Summary below don't tell you everything, so please read on for more details. -## 概要 +## Summary -| セクション | 各セクションの内容 | -| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [GitHubが収集する情報](#what-information-github-collects) | GitHubは、お客様の登録内容や支払い、取引、ユーザプロフィールから直接情報を収集します。 当社は、また、お客様の同意が必要な場合は同意を得て、自動的に利用情報、クッキー、およびデバイス情報から収集します。 GitHubは、さらに、サードパーティからユーザの個人情報を収集することがあります。 当社は、必要最小限の個人情報を収集します。ただし、お客様がそれ以上の情報を提供することを選択した場合は除きます。 | -| [当社が_収集しない_情報](#what-information-github-does-not-collect) | 当社は、13歳未満の子どもの情報は意図的に収集しません。また、[センシティブな個人情報](https://gdpr-info.eu/art-9-gdpr/)も収集しません。 | -| [当社のお客様情報の利用方法](#how-github-uses-your-information) | このセクションでは、セキュリティおよび法令順守を目的として本サービスの提供を含めたお客様との連絡、および、当社のサービス向上のために、お客様の情報をどのように当社が使用するのかを説明します。 法令が要求している場合、さらに、お客様の情報を処理する法的な根拠を記載します。 | -| [当社が収集したお客様の情報の共有方法](#how-we-share-the-information-we-collect) | 次のいずれかの場合において、当社はお客様の情報を第三者と共有することがあります。 ・お客様の同意がある場合 ・当社のサービスプロバイダ間と共有する場合 ・セキュリティを目的とする場合 ・当社の法的義務を遵守する必要がある場合 ・事業法人または事業部門について支配者の変更または売却が行われた場合 当社が個人情報を販売することはありません。GitHubでは広告を掲載することもありません。 お客様の個人情報にアクセスするサービスプロバイダのリストはお客様自身で確認することができます。 | -| [その他の重要なお知らせ](#other-important-information) | 当社は、Github上のリポジトリコンテンツや公開情報、Organizationに関して個別の追加情報を提供します。 | -| [追加サービス](#additional-services) | 当社は、サードパーティアプリケーションやGitHub Pages、GitHubアプリケーションを含む追加のサービス提供についての情報を提供します。 | -| [当社が収集した情報についてお客様がアクセスし管理する方法](#how-you-can-access-and-control-the-information-we-collect) | 当社は、お客様に対して、お客様の個人情報にアクセス、変更または削除する方法を提供します。 | -| [当社のクッキー及びトラッキングの使用について](#our-use-of-cookies-and-tracking) | 当社は、サービスの提供、保護、向上のために不可欠なクッキーのみを使用します。 当社は、このクッキーとトラッキングについて透明性の高いページを提供します。 詳細は、本セクションをご覧ください。 | -| [お客様情報についての当社の保護方法](#how-github-secures-your-information) | 当社では、GitHub上のお客様の個人情報の秘密性、統合性及び可用性を保護するために合理的なすべての必要な措置を講ずるとともに、サーバーのレジリエンスを保護します。 | -| [GitHubのグローバルプライバシープラクティス](#githubs-global-privacy-practices) | 当社では世界中の当社のユーザ全員に対して、等しく高水準のプライバシー保護を提供します。 | -| [当社とお客様との連絡方法](#how-we-communicate-with-you) | 当社は、お客様にemailでご連絡します。 アカウント設定または当社にご連絡いただければ、当社からお客様への方法を管理できます。 | -| [苦情の解決](#resolving-complaints) | 万が一、当社がプライバシーに関する懸念を迅速かつ十分に解決できない場合、当社は紛争解決の方法を提案します。 | -| [プライバシーステートメントの変更](#changes-to-our-privacy-statement) | 当社は、本プライバシーステートメントの重大な変更について当該変更が有効となる30日前に、お客様に通知します。 お客様は、変更を当社のサイトポリシーリポジトリにおいて確認することもできます。 | -| [ライセンス](#license) | 本プライバシーステートメントは、[Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/)の元でライセンス付与されています。 | -| [GitHubへの連絡](#contacting-github) | 当社のプライバシーステートメントに関するご質問がある場合はお気軽にお問い合わせください。 | -| [翻訳](#translations) | 当社では、一部のプライバシーステートメントの翻訳のリンクを提供しています。 | +| Section | What can you find there? | +|---|---| +| [What information GitHub collects](#what-information-github-collects) | GitHub collects information directly from you for your registration, payment, transactions, and user profile. We also automatically collect from you your usage information, cookies, and device information, subject, where necessary, to your consent. GitHub may also collect User Personal Information from third parties. We only collect the minimum amount of personal information necessary from you, unless you choose to provide more. | +| [What information GitHub does _not_ collect](#what-information-github-does-not-collect) | We don’t knowingly collect information from children under 13, and we don’t collect [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/). | +| [How GitHub uses your information](#how-github-uses-your-information) | In this section, we describe the ways in which we use your information, including to provide you the Service, to communicate with you, for security and compliance purposes, and to improve our Service. We also describe the legal basis upon which we process your information, where legally required. | +| [How we share the information we collect](#how-we-share-the-information-we-collect) | We may share your information with third parties under one of the following circumstances: with your consent, with our service providers, for security purposes, to comply with our legal obligations, or when there is a change of control or sale of corporate entities or business units. We do not sell your personal information and we do not host advertising on GitHub. You can see a list of the service providers that access your information. | +| [Other important information](#other-important-information) | We provide additional information specific to repository contents, public information, and Organizations on GitHub. | +| [Additional services](#additional-services) | We provide information about additional service offerings, including third-party applications, GitHub Pages, and GitHub applications. | +| [How you can access and control the information we collect](#how-you-can-access-and-control-the-information-we-collect) | We provide ways for you to access, alter, or delete your personal information. | +| [Our use of cookies and tracking](#our-use-of-cookies-and-tracking) | We only use strictly necessary cookies to provide, secure and improve our service. We offer a page that makes this very transparent. Please see this section for more information. | +| [How GitHub secures your information](#how-github-secures-your-information) | We take all measures reasonably necessary to protect the confidentiality, integrity, and availability of your personal information on GitHub and to protect the resilience of our servers. | +| [GitHub's global privacy practices](#githubs-global-privacy-practices) | We provide the same high standard of privacy protection to all our users around the world. | +| [How we communicate with you](#how-we-communicate-with-you) | We communicate with you by email. You can control the way we contact you in your account settings, or by contacting us. | +| [Resolving complaints](#resolving-complaints) | In the unlikely event that we are unable to resolve a privacy concern quickly and thoroughly, we provide a path of dispute resolution. | +| [Changes to our Privacy Statement](#changes-to-our-privacy-statement) | We notify you of material changes to this Privacy Statement 30 days before any such changes become effective. You may also track changes in our Site Policy repository. | +| [License](#license) | This Privacy Statement is licensed under the [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). | +| [Contacting GitHub](#contacting-github) | Please feel free to contact us if you have questions about our Privacy Statement. | +| [Translations](#translations) | We provide links to some translations of the Privacy Statement. | -## GitHubのプライバシーについての声明 +## GitHub Privacy Statement -## GitHubが収集する情報 +## What information GitHub collects -「**ユーザ個人情報**」とは、当社のユーザの誰か1人に関する何らかの情報であり、単独またはほかの情報と合わせることでユーザを個人として識別できる、または、ユーザと合理的に結びつける、もしくは、関連づけることができるものとします。 「ユーザ個人情報」は、たとえば、ユーザ名やパスワード、メールアドレス、本名、IPアドレスや画像です。 +"**User Personal Information**" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information such as a username and password, an email address, a real name, an Internet protocol (IP) address, and a photograph are examples of “User Personal Information.” -ユーザ個人情報には、集合的で、個人的でない識別情報は含まないものとし、ユーザを特定できない、または、ユーザと合理的に結び付けられない、もしくは、関連づけられないものは含みません。 当社は、かかる集合的で個人的でない識別情報を、調査ならびに当社のウェブサイトおよびサービスの運営や分析、最適化を目的として使用することがあります。 +User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. We may use such aggregated, non-personally identifying information for research purposes and to operate, analyze, improve, and optimize our Website and Service. -### ユーザがGitHubに直接提供する情報 +### Information users provide directly to GitHub -#### 登録情報 -当社は、アカウント作成時に基本情報を要求しています。 当社は、お客様がユーザ名とパスワードを生成する時に有効なメールアドレスを要求します。 +#### Registration information +We require some basic information at the time of account creation. When you create your own username and password, we ask you for a valid email address. -#### 支払情報 -有料でのアカウントにサインオンする場合や、GitHub Sponsors Programを通じて送金する場合、GitHub Marketplaceでアプリケーションを購入する場合、当社は、お客様のフルネーム、住所およびクレジットカード情報またはPayPal情報を収集します。 GitHubは、お客様のクレジットカード情報またはPaypal情報を処理または保管しませんが、第三者の支払処理者はこれを行うことにご留意ください。 +#### Payment information +If you sign on to a paid Account with us, send funds through the GitHub Sponsors Program, or buy an application on GitHub Marketplace, we collect your full name, address, and credit card information or PayPal information. Please note, GitHub does not process or store your credit card information or PayPal information, but our third-party payment processor does. -[GitHub Marketplace](https://github.com/marketplace) にアプリケーションを掲載しこれを販売する場合、当社は、お客様の銀行情報を要求します。 [GitHub Sponsors Program](https://github.com/sponsors)を通じて資金を調達する場合、当社は、利用者がサービスに参加して資金を受け取るため、および法令順守のため、登録処理を通じて利用者の[追加情報](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) を要求します。 +If you list and sell an application on [GitHub Marketplace](https://github.com/marketplace), we require your banking information. If you raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we require some [additional information](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) through the registration process for you to participate in and receive funds through those services and for compliance purposes. -#### プロフィール情報 -お客様は、フルネーム、写真を含むアバター、経歴、位置情報、会社、第三者のウェブサイトへのURLなどのお客様のアカウントプロフィールの追加情報を当社に提供するかどうかを選択できます。 この情報には、ユーザの個人情報が含まれる可能性があります。 プロフィール情報は、当社のサービスを使用する他のユーザからも閲覧ができますのでご注意ください。 +#### Profile information +You may choose to give us more information for your Account profile, such as your full name, an avatar which may include a photograph, your biography, your location, your company, and a URL to a third-party website. This information may include User Personal Information. Please note that your profile information may be visible to other Users of our Service. -### サービスを使用することによってGitHubが収集する情報 +### Information GitHub automatically collects from your use of the Service -#### トランザクション情報 -有料でのアカウントを持っている場合、[GitHub Marketplace](https://github.com/marketplace)に掲載したアプリケーションを販売した場合、または、[GitHub Sponsors Program](https://github.com/sponsors)を通じて資金を調達した場合、当社は、日付、時間や請求金額など、本サービス上でのお客様のトランザクションについての一定の情報を自動的に収集します。 +#### Transactional information +If you have a paid Account with us, sell an application listed on [GitHub Marketplace](https://github.com/marketplace), or raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we automatically collect certain information about your transactions on the Service, such as the date, time, and amount charged. -#### 利用情報 -お客様が当社のサービスまたはウェブサイトにアクセスしている場合、当社は、ほとんどのサービスが収集する情報を、お客様の同意が必要な場合はその同意を得て、自動的に収集します。 この収集する情報は、閲覧しているページ、参照したページ、IPアドレスおよびセッション情報ならびに。それぞれのリクエストの日付および時間などのお客様のサービス利用方法を含みます。 この情報は、アカウントを保有しているかどうかに関わらず、ウェブサイトのすべての訪問者から収集しています。 この情報には、ユーザ個人情報を含む可能性があります。 +#### Usage information +If you're accessing our Service or Website, we automatically collect the same basic information that most services collect, subject, where necessary, to your consent. This includes information about how you use the Service, such as the pages you view, the referring site, your IP address and session information, and the date and time of each request. This is information we collect from every visitor to the Website, whether they have an Account or not. This information may include User Personal information. -#### クッキー -下記で詳述する通り、お客様のログインの保持、設定の記憶、お客様およびお客様のデバイスの識別、ならびにお客様による当社サービスの利用の解析のため、当社はクッキーから自動的に情報 (クッキー ID や設定など) を収集します。 +#### Cookies +As further described below, we automatically collect information from cookies (such as cookie ID and settings) to keep you logged in, to remember your preferences, to identify you and your device and to analyze your use of our service. -#### デバイス情報 -当社は、IPアドレス、ブラウザまたはクライアントアプリケーション情報、言語設定、オペレーティングシステムとアプリケーションバージョン、デバイスの種類とID、デバイスのモデルとメーカーなど、お客様のデバイスについての一定の情報を収集することがあります。 この情報には、ユーザ個人情報を含む可能性があります。 +#### Device information +We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. -### 当社から第三者から収集する情報 +### Information we collect from third parties -GitHubは、第三者からユーザの個人情報を収集することがあります。 たとえば、お客様が、トレーニングにサインアップしたり、当社のベンダー、パートナーや関連会社からGitHubについての情報を受け取る場合に、行われる可能性があります。 GitHubは、第三者からのデータブローカーからユーザ個人情報を購入することはありません。 +GitHub may collect User Personal Information from third parties. For example, this may happen if you sign up for training or to receive information about GitHub from one of our vendors, partners, or affiliates. GitHub does not purchase User Personal Information from third-party data brokers. -## 当社が収集しない情報 +## What information GitHub does not collect -当社は、 「**[センシティブな個人情報](https://gdpr-info.eu/art-9-gdpr/)**」を意図的に収集することはありません。 この情報には、人種または民族的出自、政治上の意見、宗教的または哲学的な信念、あるいは労働組合への加入、自然人を一意に識別する遺伝子データまたはバイオメトリックデータの処理、健康状態に関するデータ、または、性生活や性的指向に関するデータを含みます。 当社のサーバー上でセンシティブな個人情報を保管することを選択した場合、お客様は、当該データに関する一切の規制に従う責任を負うものとします。 +We do not intentionally collect “**[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)**”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. If you choose to store any Sensitive Personal Information on our servers, you are responsible for complying with any regulatory controls regarding that data. -お客様が13歳未満のこどもの場合、GitHub上でアカウントを保有することはできません。 GitHubは、13歳以下のこどもから意図的に情報を収集せず、および、13歳以下のこどもを対象としたコンテンツを提供しません。 当社がお客様が13歳未満であることを知った場合、または、そうだと疑う理由がある場合、当社はお客様のアカウントを閉鎖しなければなりません。 当社はお客様がコードを学習することを止めたくはありませんが、これらは規則なのです。 アカウント解除についての情報は、[「利用規約」](/github/site-policy/github-terms-of-service)を参照してください。 様々な国は異なる年齢制限を設けており、お客様がお客様の国でデータ収集に同意できる年齢未満である場合、GitHub上のアカウントを保有することはできません。 +If you are a child under the age of 13, you may not have an Account on GitHub. GitHub does not knowingly collect information from or direct any of our content specifically to children under 13. If we learn or have reason to suspect that you are a User who is under the age of 13, we will have to close your Account. We don't want to discourage you from learning to code, but those are the rules. Please see our [Terms of Service](/github/site-policy/github-terms-of-service) for information about Account termination. Different countries may have different minimum age limits, and if you are below the minimum age for providing consent for data collection in your country, you may not have an Account on GitHub. -当社は、**お客様のリポジトリ**に保管されたユーザ個人情報またはその他の何らかのフォームに入力した内容について、意図的に収集することはありません。 ユーザリポジトリ内の個人情報の一切については、リポジトリのオーナーがその責を負うものとします。 +We do not intentionally collect User Personal Information that is **stored in your repositories** or other free-form content inputs. Any personal information within a user's repository is the responsibility of the repository owner. -## 当社のお客様情報の利用方法 +## How GitHub uses your information -当社は、次の目的のためにお客様の情報を共有することがあります: -- 当社は、アカウントを作成するため、および、サービスを提供するために、お客様の [登録情報](#registration-information)を利用します。 -- 当社は、有料アカウントサービス、Marketplaceサービス、Sponsors Programまたはその他のお客様が希望するGitHubの有料サービスを提供するために、お客様の[支払い情報](#payment-information) を利用します。 -- 当社は、ユーザ個人情報(特にユーザ名)をGitHub上でお客様を識別するために利用します。 -- 当社は、お客様が希望する場合、お客様のアカウントプロフィールに記入するため、および、他のユーザとそのプロフィールを共有するために、お客様の[プロフィール情報](#profile-information)を利用します。 -- 当社は、お客様のメールアドレスをお客様にご連絡するために利用します。お客様がOKといった場合、**そして、OKといった理由に限ります**。 詳細は、[emailコミュニケーション](#how-we-communicate-with-you)を参照してください。 -- 当社は、サポートリクエストに回答するためにユーザ個別情報を利用します。 -- 当社は、ユーザ個人情報およびその他のデータを、お客様がフォローまたはコントリビュートしたいと思う可能性のあるプロジェクトの提案など、お客様へのおススメを行うために利用します。 当社は、お客様のコーディングの関心を判断し、類似プロジェクトを推奨するために、Starを付けたプロジェクトなどお客様のGitHub上の公開行動から学習します。 これらのおススメは自動的な判断ですが、お客様の権利への法的影響は一切ありません。 -- 当社は、お客様の同意が必要な場合はその同意を得たうえで、アンケート、ベータプログラムまたはその他のリサーチプロジェクトにお客様を勧誘するために、ユーザ個人情報を利用します。 -- 当社は、当社ユーザのGitHub利用方法をより理解し、当社のウェブサイトやサービスを改善するために、[利用情報](#usage-information)および[デバイス情報](#device-information)を利用します。 -- 当社は、セキュリティ目的や、GitHubまたはユーザを攻撃する詐欺または試みを調査するために、お客様のユーザ個人情報を利用することがあります。 -- 当社は、当社の法的義務の遵守、当社の知的財産権の保護および[利用規約](/github/site-policy/github-terms-of-service)実施のために、ユーザ個人情報を利用することがあります。 -- 当社は、ユーザ個人情報の利用を、このプライバシーステートメントに記載した目的に限るものとします。 当社が他の目的のためにお客様のユーザ個人情報を利用する必要がある場合、先立ってお客様の許可を求めるものとします。 お客様は、[ユーザプロフィール](https://github.com/settings/admin)で、当社が保有する情報、当社の利用方法およびお客様が当社に与えた許可を閲覧できます。 +We may use your information for the following purposes: +- We use your [Registration Information](#registration-information) to create your account, and to provide you the Service. +- We use your [Payment Information](#payment-information) to provide you with the Paid Account service, the Marketplace service, the Sponsors Program, or any other GitHub paid service you request. +- We use your User Personal Information, specifically your username, to identify you on GitHub. +- We use your [Profile Information](#profile-information) to fill out your Account profile and to share that profile with other users if you ask us to. +- We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. Please see our section on [email communication](#how-we-communicate-with-you) for more information. +- We use User Personal Information to respond to support requests. +- We use User Personal Information and other data to make recommendations for you, such as to suggest projects you may want to follow or contribute to. We learn from your public behavior on GitHub—such as the projects you star—to determine your coding interests, and we recommend similar projects. These recommendations are automated decisions, but they have no legal impact on your rights. +- We may use User Personal Information to invite you to take part in surveys, beta programs, or other research projects, subject, where necessary, to your consent . +- We use [Usage Information](#usage-information) and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and Service. +- We may use your User Personal Information if it is necessary for security purposes or to investigate possible fraud or attempts to harm GitHub or our Users. +- We may use your User Personal Information to comply with our legal obligations, protect our intellectual property, and enforce our [Terms of Service](/github/site-policy/github-terms-of-service). +- We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. You can always see what information we have, how we're using it, and what permissions you have given us in your [user profile](https://github.com/settings/admin). -### 情報処理における根拠法令 +### Our legal bases for processing information -お客様のユーザ個人情報の処理が、一定の国際法(EUのGDPRを含むがこれに限らない) の対象である範囲において、GitHubはユーザ個人情報を処理する根拠法令についてお客様の通知が要求されています。 GitHubは、次の法的プロセスにおいてユーザ個人情報を処理します。 +To the extent that our processing of your User Personal Information is subject to certain international laws (including, but not limited to, the European Union's General Data Protection Regulation (GDPR)), GitHub is required to notify you about the legal basis on which we process User Personal Information. GitHub processes User Personal Information on the following legal bases: -- 契約の履行 - * お客様がGitHubアカウントを作成する場合、お客様は[登録情報](#registration-information)を提供します。 当社は、この情報をお客様が当社との利用規約を締結するために要求します。当社は、この情報を契約を履行する用途に利用します。 当社は、さらに、お客様のユーザ名およびメールアドレスを他の法的根拠にもとづき利用します。 - * お客様が当社に有料アカウントを保有している場合、当社は、契約を履行する用途のために、追加で[支払い情報](#payment-information)を収集し処理します。 - * お客様がMarketplaceに掲載されたアプリケーションを売買する場合、または、GitHub Sponsors Programを通じて金銭の授受を行う場合、当社は、これらのサービスに適用される契約を履行するために、[支払い情報](#payment-information)および追加情報を処理します。 -- 同意 - * 当社は、次の状況において、お客様のユーザ個人情報を利用することにお客様の同意を必要としています。 ・[ユーザプロファイル](https://github.com/settings/admin)に情報を記入した時 ・GitHubトレーニング、リサーチプロジェクト、ベータプログラムまたは調査に参加すると決めた時 ・マーケティングを目的とする時(該当する場合) このユーザ個人情報のすべては選択的なものであり、お客様は、随時、これにアクセス、修正および削除することができます。 お客様はメールアドレスを完全に削除することはできませんが、非公開にすることはできます。 お客様は随時、同意を撤回することができます。 -- 追加要求事項 - * 一般的に、当社が行うユーザ個人情報の処理のリマインダーは、追加要求事項を目的とするものです。たとえば、法令遵守、セキュリティおよびGitHubのシステム、ウェブサイトおよびサービスの現在の秘密、統合性、利用可能性およびレジリエンスを保持することを目的としています。 -- 同意に基づき当社が処理するデータの削除をご希望の場合、または、当社による個人情報の処理に同意できない場合は[プライバシー連絡フォーム](https://support.github.com/contact/privacy)をご利用ください。 +- Contract Performance: + * When you create a GitHub Account, you provide your [Registration Information](#registration-information). We require this information for you to enter into the Terms of Service agreement with us, and we process that information on the basis of performing that contract. We also process your username and email address on other legal bases, as described below. + * If you have a paid Account with us, we collect and process additional [Payment Information](#payment-information) on the basis of performing that contract. + * When you buy or sell an application listed on our Marketplace or, when you send or receive funds through the GitHub Sponsors Program, we process [Payment Information](#payment-information) and additional elements in order to perform the contract that applies to those services. +- Consent: + * We rely on your consent to use your User Personal Information under the following circumstances: when you fill out the information in your [user profile](https://github.com/settings/admin); when you decide to participate in a GitHub training, research project, beta program, or survey; and for marketing purposes, where applicable. All of this User Personal Information is entirely optional, and you have the ability to access, modify, and delete it at any time. While you are not able to delete your email address entirely, you can make it private. You may withdraw your consent at any time. +- Legitimate Interests: + * Generally, the remainder of the processing of User Personal Information we perform is necessary for the purposes of our legitimate interest, for example, for legal compliance purposes, security purposes, or to maintain ongoing confidentiality, integrity, availability, and resilience of GitHub’s systems, Website, and Service. +- If you would like to request deletion of data we process on the basis of consent or if you object to our processing of personal information, please use our [Privacy contact form](https://support.github.com/contact/privacy). -## 当社が収集したお客様の情報の共有方法 +## How we share the information we collect -当社は以下に記載された状況でお客様のユーザ個人情報を第三者に提供する場合があります。 +We may share your User Personal Information with third parties under one of the following circumstances: -### お客様の同意を得た場合 -当社は、当社がどの情報を誰とどのような理由で共有するのかお知らせした後にお客様が同意した場合に、ユーザ個人情報を共有します。 たとえば、Marketplaceに掲載されているアプリケーションをお客様が購入した場合、当社は、アプリケーション開発者がサービスをお客様に提供できるようにするためにユーザ名を共有します。 さらに、お客様は、ユーザ個人情報を共有することについてGitHub上でのアクションを通じて当社に指示することもできます。 たとえば、お客様がOrganizationに参加する場合、OrganizationのオーナーにOrganizationのアクセスログを使ってお客様のアクティビティを表示する権限を付与したい旨を指示できます。 +### With your consent +We share your User Personal Information, if you consent, after letting you know what information will be shared, with whom, and why. For example, if you purchase an application listed on our Marketplace, we share your username to allow the application Developer to provide you with services. Additionally, you may direct us through your actions on GitHub to share your User Personal Information. For example, if you join an Organization, you indicate your willingness to provide the owner of the Organization with the ability to view your activity in the Organization’s access log. -### サービスプロバイダーに提供する場合 -当社は、ユーザ個人情報を限定数のサービスプロバイダと共有します。当該情報を処理するサービスプロバイダは、データ保護契約または類似の約束に署名することで、当社のプライバシーステートメントに類似するプライバシー制限に同意し、当社に代わって当社のサービスを提供または改善します。 当社のサービスプロバイダは、支払い処理、カスタマーサポートのチケット発行、ネットワークデータの移行、セキュリティおよびその他の類似サービスを履行します。 GitHubは、ユーザ個人情報のすべてを米国で処理しますが、当社のサービスプロバイダは、米国またはEU以外でデータを処理することがあります。 当社のサービスプロバイダを知りたい場合、当社ページ[GitHubのサブプロセッサ](/github/site-policy/github-subprocessors-and-cookies)を参照してください。 +### With service providers +We share User Personal Information with a limited number of service providers who process it on our behalf to provide or improve our Service, and who have agreed to privacy restrictions similar to the ones in our Privacy Statement by signing data protection agreements or making similar commitments. Our service providers perform payment processing, customer support ticketing, network data transmission, security, and other similar services. While GitHub processes all User Personal Information in the United States, our service providers may process data outside of the United States or the European Union. If you would like to know who our service providers are, please see our page on [Subprocessors](/github/site-policy/github-subprocessors-and-cookies). -### セキュリティを目的とする場合 -お客様がOrganizationのメンバーである場合、GitHubは、OrganizationのオーナーまたはOrganizationの管理者に紐づいている、お客様のユーザ名、[ユーザー情報](#usage-information)および[デバイス情報](#device-information)を共有する場合があります。提供された情報は、特定のOrganizationにおけるセキュリティに影響を与えるか、セキュリティを侵害するようなセキュリティインシデントの調査または対応を行うためにのみ用いられます。 +### For security purposes +If you are a member of an Organization, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) associated with that Organization with an owner and/or administrator of the Organization, to the extent that such information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -### 法令にもとづく開示を求められた場合 -GitHubは、法的手続きおよび法的義務を遵守するために透明性を保つ努力をしています。 法令または裁判所の命令によりその努力が妨げられない限り、または、稀なケースには緊急事態が発生しない限り、当社は、法令が要求するお客様の情報の開示について、お客様に通知するために合理的な努力を行います。 GitHubは、有効な召喚令状、裁判所の命令、捜索令状、類似の政府命令が要求する場合、または、当社の法的義務の遵守するため、または、当社、第三者もしくは一般社会の財産もしくは権利を保護するために開示することが必要だと当社が誠意をもって信ずる場合、当社が収集したお客様のユーザ個人情報またはその他の情報を、法執行措置に対して開示します。 +### For legal disclosure +GitHub strives for transparency in complying with legal process and legal obligations. Unless prevented from doing so by law or court order, or in rare, exigent circumstances, we make a reasonable effort to notify users of any legally compelled or required disclosure of their information. GitHub may disclose User Personal Information or other information we collect about you to law enforcement if required in response to a valid subpoena, court order, search warrant, a similar government order, or when we believe in good faith that disclosure is necessary to comply with our legal obligations, to protect our property or rights, or those of third parties or the public at large. -法的な要求に対する当社の情報開示についての詳細は、[ユーザデータに対する法的要求についてのガイドライン](/github/site-policy/guidelines-for-legal-requests-of-user-data)を参照してください。 +For more information about our disclosure in response to legal requests, see our [Guidelines for Legal Requests of User Data](/github/site-policy/guidelines-for-legal-requests-of-user-data). -### 管理者の変更または売却があった場合 -当社は、企業法人または事業部門の吸収、売却または合併に関与した場合、ユーザ個人情報を共有することがあります。 所有権の変更が発生した場合、当社は、ユーザ個人情報の秘密性を保持する条項にもとづいてこれが行われることを確実にし、かつ、当社はお客様のユーザ個人情報を移行する前に、ウェブサイトまたはemailにてお客様に通知します。 ユーザ個人情報を受け取るOrganizationは、当社がプライバシーステートメントまたは利用規約で行った約束を尊重する必要があります。 +### Change in control or sale +We may share User Personal Information if we are involved in a merger, sale, or acquisition of corporate entities or business units. If any such change of ownership happens, we will ensure that it is under terms that preserve the confidentiality of User Personal Information, and we will notify you on our Website or by email before any transfer of your User Personal Information. The organization receiving any User Personal Information will have to honor any promises we made in our Privacy Statement or Terms of Service. -### 集合的で個人的でない識別情報 -当社は、ユーザが、集合的に、GitHubをどのように利用するか、または、カンファレンスやイベントなどの当社のその他の提供に対してユーザがどのように反応するかに関する、特定の集合的で個人的でない識別情報を他者と共有します。 +### Aggregate, non-personally identifying information +We share certain aggregated, non-personally identifying information with others about how our users, collectively, use GitHub, or how our users respond to our other offerings, such as our conferences or events. -当社がお客様の個人情報を金銭または他の対価のために売却**することはありません**。 +We **do not** sell your User Personal Information for monetary or other consideration. -備考:2018年カリフォルニア州消費者プライバシー法(「CCPA」)では、事業体が自らのプライバシーポリシーにおいて、お客様の個人情報を金銭または他の対価と交換で、個人情報を公開するかどうかを記述することを要求しています。 CCPAはカリフォルニア州民のみを対象としていますが、当社は自主的に、人々が自らのデータを管理するこの中核的な権利を、カリフォルニア州の住民の当社ユーザだけでなく当社ユーザ_全員_に拡大しています。 CCPAおよび当社の遵守についての詳細は[こちら](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act)を参照してください。 +Please note: The California Consumer Privacy Act of 2018 (“CCPA”) requires businesses to state in their privacy policy whether or not they disclose personal information in exchange for monetary or other valuable consideration. While CCPA only covers California residents, we voluntarily extend its core rights for people to control their data to _all_ of our users, not just those who live in California. You can learn more about the CCPA and how we comply with it [here](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). -## リポジトリコンテンツ +## Repository contents -### プライベートリポジトリへのアクセス +### Access to private repositories -リポジトリがプライベートである場合、あなたのコンテンツへのアクセスを管理するのはあなた自信です。 お客様の個人情報やセンシティブな個人情報が含まれる場合、その情報は本プライバシーポリシーに従い、GitHubのみがアクセスできます。 GitHubのスタッフは、以下の場合を除いて[プライベートリポジトリのコンテンツにアクセスしません](/github/site-policy/github-terms-of-service#e-private-repositories)。 -- セキュリティ上の目的 -- リポジトリのオーナーをサポートするため -- サービスの完全性を維持するため -- 当社の法的義務を遵守するため -- コンテンツが法律違反であると当社が信じる理由がある場合 -- お客様の同意を得た場合. +If your repository is private, you control the access to your Content. If you include User Personal Information or Sensitive Personal Information, that information may only be accessible to GitHub in accordance with this Privacy Statement. GitHub personnel [do not access private repository content](/github/site-policy/github-terms-of-service#e-private-repositories) except for +- security purposes +- to assist the repository owner with a support matter +- to maintain the integrity of the Service +- to comply with our legal obligations +- if we have reason to believe the contents are in violation of the law, or +- with your consent. -通常、当社はリポジトリのコンテンツを検索することはありません。ただし、当社はサーバーやコンテンツをスキャンし、特定のトークンやセキュリティ署名、既知のアクティブなマルウェア、依存関係における既知の脆弱性、その他当社の利用規約に違反することが既知であるコンテンツ (暴力的な過激主義やテロリストのコンテンツ、自動搾取の画像など) を、アルゴリズム的フィンガープリント技術 (「自動スキャン」と総称) を用いて検出することがあります。 当社の利用規約では、[プライベートリポジトリ](/github/site-policy/github-terms-of-service#e-private-repositories)について詳述しています。 +However, while we do not generally search for content in your repositories, we may scan our servers and content to detect certain tokens or security signatures, known active malware, known vulnerabilities in dependencies, or other content known to violate our Terms of Service, such as violent extremist or terrorist content or child exploitation imagery, based on algorithmic fingerprinting techniques (collectively, "automated scanning"). Our Terms of Service provides more details on [private repositories](/github/site-policy/github-terms-of-service#e-private-repositories). -なお、サービスを提供する一環としてデフォルトで有効にされている、プライベートリポジトリへの特定のアクセス (依存関係グラフやDependabotアラートを有効にするために必要な自動スキャンなど) を無効にすることもできます。 +Please note, you may choose to disable certain access to your private repositories that is enabled by default as part of providing you with the Service (for example, automated scanning needed to enable Dependency Graph and Dependabot alerts). -GitHub は、[法令にもとづく開示を求められた場合](/github/site-policy/github-privacy-statement#for-legal-disclosure)、当社の法的義務を順守するために必要な場合、その他法的要件により拘束されている場合、 自動スキャンの場合、またはセキュリティの脅威やその他セキュリティへのリスクに対処する場合を除き、プライベートリポジトリのコンテンツへの当社によるアクセスについて通知します。 +GitHub will provide notice regarding our access to private repository content, unless [for legal disclosure](/github/site-policy/github-privacy-statement#for-legal-disclosure), to comply with our legal obligations, or where otherwise bound by requirements under law, for automated scanning, or if in response to a security threat or other risk to security. -### パブリックリポジトリ +### Public repositories -リポジトリが公開されている場合、誰でもそのコンテンツを閲覧できます。 パブリックリポジトリに、メールアドレスやパスワードなど、お客様の個人情報、[センシティブな個人情報](https://gdpr-info.eu/art-9-gdpr/)、または機密情報が含まれる場合、その情報はサーチエンジンによりインデックス化されたり、第三者に利用されたりする可能性があります。 +If your repository is public, anyone may view its contents. If you include User Personal Information, [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/), or confidential information, such as email addresses or passwords, in your public repository, that information may be indexed by search engines or used by third parties. -[公開リポジトリのユーザ個人情報](/github/site-policy/github-privacy-statement#public-information-on-github)を参照してください。 +Please see more about [User Personal Information in public repositories](/github/site-policy/github-privacy-statement#public-information-on-github). -## その他の重要なお知らせ +## Other important information -### GitHub上の公開情報 +### Public information on GitHub -GitHubサービスおよび機能の多くは公開向けです。 お客様のコンテンツが公開向けの場合、第三者が、お客様のプロフィールもしくはリポジトリの閲覧または当社のAPIを介してデータをプルするなど、当社の利用規約にもとづきアクセスかつ利用できます。 当社は、そのコンテンツを販売しません。これはお客様の所有物です。 しかし、当社は、研究機関やアーカイブなどの第三者に対して、公開向けのGitHub情報をコンパイルすることを認めています。 データブローカーなどの他の第三者も、GitHubをスクレイプし、データをコンパイルしていることは知られています。 +Many of GitHub services and features are public-facing. If your content is public-facing, third parties may access and use it in compliance with our Terms of Service, such as by viewing your profile or repositories or pulling data via our API. We do not sell that content; it is yours. However, we do allow third parties, such as research organizations or archives, to compile public-facing GitHub information. Other third parties, such as data brokers, have been known to scrape GitHub and compile data as well. -お客様のコンテンツに関係するユーザ個人情報はGitHubデータのコンパイルによって第三者が収集する場合があります。 お客様が第三者によるGitHubデータのコンパイルにユーザ個人情報が含まれることを望まない場合、ユーザ個人情報を公開しないようにしてください。そして、[gitコミット設定](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)で、[ユーザプロフィールでメールアドレスを非公開に設定してください](https://github.com/settings/emails)。 当社は現在、デフォルト設定ではユーザのメールアドレスを非公開に設定しています。ただし、レガシーのGitHubユーザは設定をアップデートしなくてはならない場合があります。 +Your User Personal Information associated with your content could be gathered by third parties in these compilations of GitHub data. If you do not want your User Personal Information to appear in third parties’ compilations of GitHub data, please do not make your User Personal Information publicly available and be sure to [configure your email address to be private in your user profile](https://github.com/settings/emails) and in your [git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). We currently set Users' email address to private by default, but legacy GitHub Users may need to update their settings. -GitHubデータをコンパイルしたい場合、お客様は、[情報利用](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions)および[プライバシー](/github/site-policy/github-acceptable-use-policies#7-privacy)に関する当社の利用規約を遵守しなければなりません。またお客様は、収集した公開向けユーザ個人情報を、当社のユーザが許可した目的に限り利用できるものとします。 たとえば、GitHubユーザが自らの身分と所属を明らかにする目的でメールアドレスを公開している場合、そのメールアドレスをユーザへの未承諾メール送信や、採用担当者、ヘッドハンター、および求人掲示板への販売、または商業広告などの目的で使用してはなりません。 当社は、お客様が、GitHubから収集したあらゆるユーザ個人情報を合理的に保護すること、ならびに、 GitHubまたは他のユーザからの苦情、削除要請および連絡拒否のリクエストに速やかに対応することを要求します。 +If you would like to compile GitHub data, you must comply with our Terms of Service regarding [information usage](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) and [privacy](/github/site-policy/github-acceptable-use-policies#7-privacy), and you may only use any public-facing User Personal Information you gather for the purpose for which our user authorized it. For example, where a GitHub user has made an email address public-facing for the purpose of identification and attribution, do not use that email address for the purposes of sending unsolicited emails to users or selling User Personal Information, such as to recruiters, headhunters, and job boards, or for commercial advertising. We expect you to reasonably secure any User Personal Information you have gathered from GitHub, and to respond promptly to complaints, removal requests, and "do not contact" requests from GitHub or GitHub users. -これに類して、GitHub上のプロジェクトは、コラボレーティブ処理の一部として収集した公開されている利用可能なユーザ個人情報を含むことがあります。 GitHub上のユーザ個人情報について苦情がある</a>場合、[苦情の解決](/github/site-policy/github-privacy-statement#resolving-complaints)を参照してください。 +Similarly, projects on GitHub may include publicly available User Personal Information collected as part of the collaborative process. If you have a complaint about any User Personal Information on GitHub, please see our section on [resolving complaints](/github/site-policy/github-privacy-statement#resolving-complaints). -### Organization +### Organizations -さらに、お客様は、GitHub上でのアクションを通じて、ユーザ個人情報を共有するために指示することができます。 Organizationでコラボレートしている場合またはそのOrganizationのメンバーとなったの場合、そのアカウントオーナーはお客様のユーザ個人情報を受け取ることができます。 Organizationへの招待を承認した場合、オーナーが閲覧できる情報の種類についてお客様に通知されます。(詳細は、[Organizationメンバーシップについて](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)を参照してください) [認証ドメイン](/organizations/managing-organization-settings/verifying-your-organizations-domain)付きOrganizationへの招待を承認した場合、Organizationのオーナーは、Organizationの認証ドメイン内でお客様の完全なメールアドレスを閲覧できます。 +You may indicate, through your actions on GitHub, that you are willing to share your User Personal Information. If you collaborate on or become a member of an Organization, then its Account owners may receive your User Personal Information. When you accept an invitation to an Organization, you will be notified of the types of information owners may be able to see (for more information, see [About Organization Membership](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). If you accept an invitation to an Organization with a [verified domain](/organizations/managing-organization-settings/verifying-your-organizations-domain), then the owners of that Organization will be able to see your full email address(es) within that Organization's verified domain(s). -GitHubは、お客様のユーザ名、[利用情報](#usage-information)および[デバイス情報](#device-information)を、お客様がメンバーとなっているOrganizationのオーナーと共有することがありますが、ユーザ個人情報の提供は、個別のOrganizationに影響を及ぼすまたは障害を与えるインシデントを調査またはこれに対応するための範囲に限るものとします。 +Please note, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) with the owner(s) of the Organization you are a member of, to the extent that your User Personal Information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -お客様が、このプライバシーステートメントに対する[企業向け利用規約](/github/site-policy/github-corporate-terms-of-service)およびData Protection Addendum (DPA) について同意しているアカウントでコラボレートしている場合またはそのメンバーの場合、アカウントでのお客様のアクティビティに関係するこのプライバシーステートメントとDPAの間に矛盾があった場合、DPAを優先するものとします。 +If you collaborate on or become a member of an Account that has agreed to the [Corporate Terms of Service](/github/site-policy/github-corporate-terms-of-service) and a Data Protection Addendum (DPA) to this Privacy Statement, then that DPA governs in the event of any conflicts between this Privacy Statement and the DPA with respect to your activity in the Account. -Organizationでお客様のユーザ個人情報を処理する方法およびお客様がアカウントでユーザ個人情報にアクセス、アップデート、変更または削除する方法についての詳細情報はアカウントオーナーにご連絡ください。 +Please contact the Account owners for more information about how they might process your User Personal Information in their Organization and the ways for you to access, update, alter, or delete the User Personal Information stored in the Account. -## 追加サービス +## Additional services -### サードパーティアプリケーション +### Third party applications -お客様は、アカウントで「Developer Products」として知られるサードパーティアプリケーションを有効化または追加することを選択できます。 このDeveloper Productsは、お客様がGitHubを利用するにあたって、必ずしも必要なものではありません。 当社は、MarketplaceからDeveloper Productを購入する場合などお客様の要望があったとき、ユーザ個人情報を第三者と共有します。しかし、第三者のDeveloper Productの利用およびユーザ個人情報を共有する量の選択については、お客様がその責を負うものとします。 お客様のGitHubプロフィールを利用してDeveloper Productに認証した場合、どの情報が提供されるのか[API documentation](/rest/reference/users)で確認できます。 +You have the option of enabling or adding third-party applications, known as "Developer Products," to your Account. These Developer Products are not necessary for your use of GitHub. We will share your User Personal Information with third parties when you ask us to, such as by purchasing a Developer Product from the Marketplace; however, you are responsible for your use of the third-party Developer Product and for the amount of User Personal Information you choose to share with it. You can check our [API documentation](/rest/reference/users) to see what information is provided when you authenticate into a Developer Product using your GitHub profile. ### GitHub Pages -GitHub Pagesウェブサイトを作成する場合、お客様は、個人情報およびその他の訪問者の情報の収集、利用および共有方法ならびに適用されるデータプライバシー法令、規則および規定の遵守方法を正確に記述するプライバシーステートメントを掲載する責任を負うものとします。 GitHubは、法的義務を遵守するためならびにウェブサイトおよびサービスのセキュリティおよび統合性を保持するために、お客様のGitHub Pagesウェブサイトへの訪問者から、IPアドレスを含むユーザ個人情報を収集することがあります。 +If you create a GitHub Pages website, it is your responsibility to post a privacy statement that accurately describes how you collect, use, and share personal information and other visitor information, and how you comply with applicable data privacy laws, rules, and regulations. Please note that GitHub may collect User Personal Information from visitors to your GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the security and integrity of the Website and the Service. -### GitHubアプリケーション +### GitHub applications -お客様は、GitHubのデスクトップアプリケーション、Atomアプリケーション、その他のアプリケーション類およびアカウント機能をご自分のアカウントに追加することができます。 これらのアプリケーションは、それぞれ固有の規約を有しており、異なる種類のユーザ個人情報を収集する可能性があります。ただし、すべてのGitHubアプリケーションに対してこのプライバシーについての声明が適用されます。当社はユーザ個人情報を必要な分だけ収集し、お客様の提供目的に限って利用するものとします。 +You can also add applications from GitHub, such as our Desktop app, our Atom application, or other application and account features, to your Account. These applications each have their own terms and may collect different kinds of User Personal Information; however, all GitHub applications are subject to this Privacy Statement, and we collect the amount of User Personal Information necessary, and use it only for the purpose for which you have given it to us. -## 当社が収集した情報についてお客様がアクセスし管理する方法 +## How you can access and control the information we collect If you're already a GitHub user, you may access, update, alter, or delete your basic user profile information by [editing your user profile](https://github.com/settings/profile) or contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). You can control the information we collect about you by limiting what information is in your profile, by keeping your information current, or by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). If GitHub processes information about you, such as information [GitHub receives from third parties](#information-we-collect-from-third-parties), and you do not have an account, then you may, subject to applicable law, access, update, alter, delete, or object to the processing of your personal information by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -### データポータビリティ +### Data portability -GitHubユーザとして、お客様は、常に自らのデータを保有することができます。 たとえば、[お客様のリポジトリをデスクトップにクローン](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop)できます。または、当社が保有するお客様の情報をダウンロードするために、当社の[データポータビリティツール](https://developer.github.com/changes/2018-05-24-user-migration-api/)を利用できます。 +As a GitHub User, you can always take your data with you. You can [clone your repositories to your desktop](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop), for example, or you can use our [Data Portability tools](https://developer.github.com/changes/2018-05-24-user-migration-api/) to download information we have about you. -### データの保持とデータの削除 +### Data retention and deletion of data -GitHubは、一般的に、ユーザ個人情報をアカウントがアクティブである限りまたはサービス提供に必要な限り保持します。 +Generally, GitHub retains User Personal Information for as long as your account is active or as needed to provide you services. -お客様がアカウントをキャンセルしたい場合またはユーザ個人情報を削除したい場合、お客様の[ユーザプロフィール](https://github.com/settings/admin)で行うことができます。 当社は、法的義務の遵守、紛争解決および当社の契約を実行するためにお客様の情報を保持かつ利用します。法的な要求がある場合を除き、お客様の要望から90日以内に、合理的な範囲でお客様のすべてのプロフィールを削除します。 You may contact [GitHub Support](https://support.github.com/contact?tags=docs-policy) to request the erasure of the data we process on the basis of consent within 30 days. +If you would like to cancel your account or delete your User Personal Information, you may do so in your [user profile](https://github.com/settings/admin). We retain and use your information as necessary to comply with our legal obligations, resolve disputes, and enforce our agreements, but barring legal requirements, we will delete your full profile (within reason) within 90 days of your request. You may contact [GitHub Support](https://support.github.com/contact?tags=docs-policy) to request the erasure of the data we process on the basis of consent within 30 days. -アカウントが削除された後でも、他のユーザのリポジトリへのコントリビューションおよび他のIssueのコメントなどの一定のデータは残存します。 しかし、当社は、[ゴーストユーザ](https://github.com/ghost)と関係付けることで、Issue、pull requestおよびコメントの作者フィールドからユーザ名およびメールアドレスを含むユーザ個人情報を削除または識別不能にします。 +After an account has been deleted, certain data, such as contributions to other Users' repositories and comments in others' issues, will remain. However, we will delete or de-identify your User Personal Information, including your username and email address, from the author field of issues, pull requests, and comments by associating them with a [ghost user](https://github.com/ghost). -つまり、[Gitコミット設定](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)を通じてお客様が提供したメールアドレスは、Gitシステムのコミットで常に関係付けられることになります。 メールアドレスを非公開にする場合、Gitコミット設定もアップデートする必要があります。 当社は、Gitコミット履歴のデータを変更または削除することはできません。Gitソフトウェアは記録を保持する設計になっています。ただし、当社は、お客様がその記録に入力する情報を管理できるようにします。 +That said, the email address you have supplied [via your Git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) will always be associated with your commits in the Git system. If you choose to make your email address private, you should also update your Git commit settings. We are unable to change or delete data in the Git commit history — the Git software is designed to maintain a record — but we do enable you to control what information you put in that record. -## 当社のクッキー及びトラッキングの使用について +## Our use of cookies and tracking -### クッキー +### Cookies -GitHub が使用するのは、不可欠なクッキーのみです。 Cookie は、ウェブサイトが訪問者のコンピュータまたはモバイルデバイスに度々格納する小さなテキストファイルです。 +GitHub only uses strictly necessary cookies. Cookies are small text files that websites often store on computer hard drives or mobile devices of visitors. -当社は、サービスの提供、保護、向上の目的においてのみクッキーを使用します。 たとえば、当社はログインを維持し、お客様の環境設定を記憶し、セキュリティ上の目的でデバイスを特定し、サービスの利用状況を分析し、統計レポートを作成し、GitHubの今後の開発のための情報を提供するためクッキーを使用します。 当社は、分析のため当社のクッキーを使用しますが、サードパーティの分析サービスプロバイダーは使用しません。 +We use cookies solely to provide, secure, and improve our service. For example, we use them to keep you logged in, remember your preferences, identify your device for security purposes, analyze your use of our service, compile statistical reports, and provide information for future development of GitHub. We use our own cookies for analytics purposes, but do not use any third-party analytics service providers. -当社のサービスを利用することで、お客様は、お客様のコンピュータまたはデバイスにこれらの種類のクッキーを当社が保管することに同意したものとされます。 これらのクッキーをブラウザやデバイスで拒否するよう設定した場合、当社のサービスにログインしたりサービスを利用したりすることができなくなります。 +By using our service, you agree that we can place these types of cookies on your computer or device. If you disable your browser or device’s ability to accept these cookies, you will not be able to log in or use our service. -[GitHub上のクッキー](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github)については、[GitHubの当社のサブプロセッサーおよびクッキー](/github/site-policy/github-subprocessors-and-cookies)のページで、当社が設定するクッキー、クッキーの必要性、およびクッキーの有効期限について詳しく説明しています。 +We provide more information about [cookies on GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) on our [GitHub Subprocessors and Cookies](/github/site-policy/github-subprocessors-and-cookies) page that describes the cookies we set, the needs we have for those cookies, and the expiration of such cookies. ### DNT -「[Do Not Track](https://www.eff.org/issues/do-not-track)」(DNT) とは、オンラインサービスに対して、第三者のトラッキングサービスからお客様のオンライン活動についての特定の種類の情報を収集して共有することを望まない場合に、ブラウザで設定できるプライバシー設定です。 GitHubは、ブラウザのDNTシグナルに応答し、[DNTシグナルへの応答についてのW3C基準](https://www.w3.org/TR/tracking-dnt/)に従います。 トラッキングを望まないことを通知するようブラウザに対して設定したい場合、この通知を有効化する方法について、ブラウザのドキュメントをご確認ください。 [Privacy Badger](https://privacybadger.org/)など、トラッキングをブロックする良いアプリケーションもあります。 +"[Do Not Track](https://www.eff.org/issues/do-not-track)" (DNT) is a privacy preference you can set in your browser if you do not want online services to collect and share certain kinds of information about your online activity from third party tracking services. GitHub responds to browser DNT signals and follows the [W3C standard for responding to DNT signals](https://www.w3.org/TR/tracking-dnt/). If you would like to set your browser to signal that you would not like to be tracked, please check your browser's documentation for how to enable that signal. There are also good applications that block online tracking, such as [Privacy Badger](https://privacybadger.org/). -## お客様情報についての当社の保護方法 +## How GitHub secures your information -GitHubは、不正アクセス、変更および破壊からユーザ個人情報を保護するため、そして、データの正確性を保持しユーザ個人情報が適切に利用されることを確実にするために必要なすべての措置を講じます。 +GitHub takes all measures reasonably necessary to protect User Personal Information from unauthorized access, alteration, or destruction; maintain data accuracy; and help ensure the appropriate use of User Personal Information. -GitHubは、書面によるセキュリティ情報プログラムを実行しています。 当社のプログラム: -- 業界で評価されているフレームワークと提携 -- 当社のユーザのデータの秘密性、統合性、利用可能性およびレジリエンスを保護するために合理的に設計されたセキュリティセーフガードを装備 -- GitHubの事業遂行に適切な性質、サイズおよび複雑性 -- インシデントに対する応答およびデータ侵害通知プロセスを装備 -- GitHubがビジネスを行う地理的地域において適用される情報セキュリティ関係法令に適合 +GitHub enforces a written security information program. Our program: +- aligns with industry recognized frameworks; +- includes security safeguards reasonably designed to protect the confidentiality, integrity, availability, and resilience of our Users' data; +- is appropriate to the nature, size, and complexity of GitHub’s business operations; +- includes incident response and data breach notification processes; and +- complies with applicable information security-related laws and regulations in the geographic regions where GitHub does business. -お客様のユーザ個人情報に影響を与えるデータ侵害が発生した場合、当社は、速やかに侵害の影響を判断し、遅滞なく影響を受けたユーザに対して通知します。 +In the event of a data breach that affects your User Personal Information, we will act promptly to mitigate the impact of a breach and notify any affected Users without undue delay. -GitHub上のデータの転送は、SSHおよびHTTPS (TLS) を利用して暗号化されます。Gitリポジトリコンテンツも暗号化されます。 当社は、高レベルの物理的およびネットワークセキュリティを有する第一級のデータセンターで自社所有のかごとラックを管理しています。データをサードパーティのストレージプロバイダーで管理する場合、暗号化されます。 +Transmission of data on GitHub is encrypted using SSH, HTTPS (TLS), and git repository content is encrypted at rest. We manage our own cages and racks at top-tier data centers with high level of physical and network security, and when data is stored with a third-party storage provider, it is encrypted. -いかなる転送方法または電子的保管方法も、100%安全ではありません。 したがって、当社は絶対的なセキュリティを保証できません。 詳細は、[セキュリティディスクロージャー](https://github.com/security)を参照してください。 +No method of transmission, or method of electronic storage, is 100% secure. Therefore, we cannot guarantee its absolute security. For more information, see our [security disclosures](https://github.com/security). -## GitHubのグローバルプライバシープラクティス +## GitHub's global privacy practices -GitHub, Inc.、そして欧州経済領域、英国、およびスイスにおいては GitHub B.V. が、本サービスに関してお客様の個人情報を処理する責任を負う管理者です。ただし、(a) コントリビューターによりリポジトリに追加された個人情報については、リポジトリのオーナーが管理者であり、 GitHubは処理者です (また、オーナーが処理者の役割を担う場合は、GitHubは副処理者です)。(b) GitHubとお客様が、データプライバシーを扱う別途の契約 (データ処理契約など) を結んだ場合は例外です。 +GitHub, Inc. and, for those in the European Economic Area, the United Kingdom, and Switzerland, GitHub B.V. are the controllers responsible for the processing of your personal information in connection with the Service, except (a) with respect to personal information that was added to a repository by its contributors, in which case the owner of that repository is the controller and GitHub is the processor (or, if the owner acts as a processor, GitHub will be the subprocessor); or (b) when you and GitHub have entered into a separate agreement that covers data privacy (such as a Data Processing Agreement). -当社の住所は以下の通りです。 +Our addresses are: - GitHub, Inc., 88 Colin P. Kelly Jr. Street, San Francisco, CA 94107. - GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdam, The Netherlands. -当社は本プライバシーについての声明に従い、収集した情報を米国で保管および処理しますが、当社のサービスプロバイダは米国外でデータを保管および処理することがあります。 しかし、当社は、プライバシーについて様々な期待をする、様々な国および地域のユーザがいることを理解しています。当社は、米国が他の国んと同じプライバシーフレームワークを有していない場合でも、その必要性を充たす努力をします。 +We store and process the information that we collect in the United States in accordance with this Privacy Statement, though our service providers may store and process data outside the United States. However, we understand that we have Users from different countries and regions with different privacy expectations, and we try to meet those needs even when the United States does not have the same privacy framework as other countries. -当社は、本プライバシーについての声明に記載のとおり、ユーザの出生国や地域に関わらず、世界中のユーザ全員に対して、等しく高水準のプライバシー保護を提供します。当社が提供する通知、選択肢、アカウンタビリティ、セキュリティ、データ完全性、アクセスおよび償還の水準を、当社は誇りにしています。 当社は、ビジネスを行う場所に関係なく、当社のプライバシー適合のために努力を行うクロスファンクショナルチームの一員としての当社のデータ保護責任者とともに、適用されるデータプライバシー法令に適合するために全力を尽くしています。 加えて、当社のベンダーまたは関係会社がユーザ個人情報にアクセスする場合、当社のプライバシーポリシーおよび適用されるデータプライバシー法令にしたがうことを要求する契約を締結しなければなりません。 +We provide the same high standard of privacy protection—as described in this Privacy Statement—to all our users around the world, regardless of their country of origin or location, and we are proud of the levels of notice, choice, accountability, security, data integrity, access, and recourse we provide. We work hard to comply with the applicable data privacy laws wherever we do business, working with our Data Protection Officer as part of a cross-functional team that oversees our privacy compliance efforts. Additionally, if our vendors or affiliates have access to User Personal Information, they must sign agreements that require them to comply with our privacy policies and with applicable data privacy laws. -主要な点 +In particular: - - GitHubは、同意にもとづいてユーザ個人情報を収集する場合、データ収集時に明確、精通、具体的かつ自由に同意された、分かりやすい方法を提供します。 - - 当社は、当社の目的に必要な最小限の個人情報を収集します。ただし、お客様がさらに提供することを選択した場合は除きます。 当社は、お客様が共有してよいと思うデータの量に限って、当社に提供することを推奨します。 - - 当社は、法令で認められている場合、当社が収集したユーザ個人情報にアクセス、変更および削除するためのシンプルな方法をお客様に提供します。 - - 当社は、ユーザ個人情報に関係して、ユーザに対して通知、選択肢、アカウンタビリティ、セキュリティおよびアクセスを提供します。かつ、当社は、ユーザ個人情報を処理する目的を限定します。 当社は、ユーザがリコースおよび実行する方法を当社のユーザに提供します。 + - GitHub provides clear methods of unambiguous, informed, specific, and freely given consent at the time of data collection, when we collect your User Personal Information using consent as a basis. + - We collect only the minimum amount of User Personal Information necessary for our purposes, unless you choose to provide more. We encourage you to only give us the amount of data you are comfortable sharing. + - We offer you simple methods of accessing, altering, or deleting the User Personal Information we have collected, where legally permitted. + - We provide our Users notice, choice, accountability, security, and access regarding their User Personal Information, and we limit the purpose for processing it. We also provide our Users a method of recourse and enforcement. -### クロスボーダーデータトランスファー +### Cross-border data transfers -GitHubは米国内外の個人情報を処理しており、欧州経済領域、英国、スイスからデータを合法的に転送するにあたり、法的に提供されたメカニズムとして標準契約条項に依拠しています。 さらにGitHubは、EU-米国プライバシーシールドフレームワークの認証を受けています。 国境を越えたデータ転送に関する詳細については、[グローバルプライバシープラクティス](/github/site-policy/global-privacy-practices)をご覧ください。 +GitHub processes personal information both inside and outside of the United States and relies on Standard Contractual Clauses as the legally provided mechanism to lawfully transfer data from the European Economic Area, the United Kingdom, and Switzerland to the United States. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about our cross-border data transfers, see our [Global Privacy Practices](/github/site-policy/global-privacy-practices). -## 当社とお客様との連絡方法 +## How we communicate with you -当社は、お客様のメールアドレスをお客様にご連絡するために利用します。お客様がOKといった場合、**そして、OKといった理由に限ります**。 たとえば、お客様が当社のサポートチームにリクエストを連絡した場合、当社はemailでお返事します。 お客様は、GitHubでのメールアドレスの使用方法および共有方法について様々な管理を行えます。 お客様は、[ユーザプロフィール](https://github.com/settings/emails)で、コミュニケーションの設定を管理できます。 +We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. For example, if you contact our Support team with a request, we respond to you via email. You have a lot of control over how your email address is used and shared on and through GitHub. You may manage your communication preferences in your [user profile](https://github.com/settings/emails). -設計によって、Gitバージョン管理システムは、コミットメッセージなどのユーザのメールアドレスを伴う様々なアクションと協業します。 当社は、Gitシステムの多くの要素を変更することはできません。 パブリックリポジトリにコメントしている場合でも、お客様がメールアドレスを非公開のままにすることを希望するとき、[お客様はユーザプロフィールで非公開メールアドレスを作成できます](https://github.com/settings/emails)。 また、お客様は、[非公開メールアドレスを利用するためにローカルのGit設定をアップデートする](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)必要があります。 このことで、当社からお客様への連絡方法は変わりません。しかし、他のユーザにとってのお客様の表示に影響を及ぼします。 当社は、デフォルト設定では現在のユーザのメールアドレスを非公開に設定しています。ただし、レガシーのGitHubユーザは、設定をアップデートする必要がある可能性があります。 コミットメッセージ内のメールアドレスに関する詳細については、[こちら](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)を参照してください。 +By design, the Git version control system associates many actions with a User's email address, such as commit messages. We are not able to change many aspects of the Git system. If you would like your email address to remain private, even when you’re commenting on public repositories, [you can create a private email address in your user profile](https://github.com/settings/emails). You should also [update your local Git configuration to use your private email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). This will not change how we contact you, but it will affect how others see you. We set current Users' email address private by default, but legacy GitHub Users may need to update their settings. Please see more about email addresses in commit messages [here](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). -お客様の[email設定](https://github.com/settings/emails)によっては、GitHubは、時々、お客様がWatchしているリポジトリでの変更、新機能、フードバックのお願い、重要なポリシーの変更または顧客サポートを提供するために、通知のemailを送信することがあります。 また、当社は、お客様の選択ならびに適用される法令および規則にしたがって、マーケティングのemailを送信します。 当社がお客様に送信するマーケティングemailの文末には、「サブスクライブ解除」のリンクがあります。 当社から、サポートチームまたはシステムemailなどの重要なコミュニケーションの受け取りを解除することはできません。ですが、その他のコミュニケーションについては、プロフィールの通知設定を変更することで解除できます。 +Depending on your [email settings](https://github.com/settings/emails), GitHub may occasionally send notification emails about changes in a repository you’re watching, new features, requests for feedback, important policy changes, or to offer customer support. We also send marketing emails, based on your choices and in accordance with applicable laws and regulations. There's an “unsubscribe” link located at the bottom of each of the marketing emails we send you. Please note that you cannot opt out of receiving important communications from us, such as emails from our Support team or system emails, but you can configure your notifications settings in your profile to opt out of other communications. -当社のemailには、お客様がemailを開封したかどうか、および、IPアドレスを当社に知らせる小さく明瞭な画像であるピクセルタグを含むことがあります。 当社は、emailをお客様によって効果的にするために、および、望まれないemailを当社がお客様に送信しないことを確実にするために、このピクセルタグを利用します。 +Our emails may contain a pixel tag, which is a small, clear image that can tell us whether or not you have opened an email and what your IP address is. We use this pixel tag to make our email more effective for you and to make sure we’re not sending you unwanted email. -## 苦情の解決 +## Resolving complaints -ユーザ個人情報の当社の取り扱い方法についてお客様が懸念を有している場合、ただちに当社にお知らせください。 当社はお客様を手助けしたいと考えています。 お客様は、[プライバシー連絡フォーム](https://support.github.com/contact/privacy)に記入することで、当社に連絡できます。 また、お客様は、サブジェクトを「Privacy Concerns」とした当社宛てe-mailを、、privacy@github.comに送信することができます。 当社は、遅くとも45日以内に速やかに返信します。 +If you have concerns about the way GitHub is handling your User Personal Information, please let us know immediately. We want to help. You may contact us by filling out the [Privacy contact form](https://support.github.com/contact/privacy). You may also email us directly at privacy@github.com with the subject line "Privacy Concerns." We will respond promptly — within 45 days at the latest. -お客様は、当社のデータ保護責任者に直接連絡することもできます。 +You may also contact our Data Protection Officer directly. -| 当社の米国本社 | 当社のEU事務所 | -| ------------------------------ | ------------------ | -| GitHub Data Protection Officer | GitHub BV | -| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | -| San Francisco, CA 94107 | 1017 HL Amsterdam | -| 米国 | The Netherlands | -| privacy@github.com | privacy@github.com | +| Our United States HQ | Our EU Office | +|---|---| +| GitHub Data Protection Officer | GitHub BV | +| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | +| San Francisco, CA 94107 | 1017 HL Amsterdam | +| United States | The Netherlands | +| privacy@github.com | privacy@github.com | -### 紛争解決プロセス +### Dispute resolution process -お客様のユーザ個人情報の当社の取り扱いについてお客様と当社との間に紛争が生起した場合、当社は解決のために最善を尽くします。 さらに、お客様がEU加盟国の住民である場合、現地の監督当局に苦情を申し立てる権利を有します。また、別の[選択肢](/github/site-policy/global-privacy-practices#dispute-resolution-process)がある場合もあります。 +In the unlikely event that a dispute arises between you and GitHub regarding our handling of your User Personal Information, we will do our best to resolve it. Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority, and you might have more [options](/github/site-policy/global-privacy-practices#dispute-resolution-process). -## プライバシーステートメントの変更 +## Changes to our Privacy Statement -ほとんどの変更は軽微ですが、GitHubは、随時、プライバシーステートメントを変更することがあります。 当社は、ホームページに通知を掲載すること、または、GitHubアカウントで指定するプライマリメールアドレスにemailを送信することで、変更が発効する遅くとも30日前にウェブサイト上で、このプライバシーステートメントの重要な変更についてユーザへの通知を提供します。 また、当社は、このポリシーの変更を追跡している[サイトポリシーリポジトリ](https://github.com/github/site-policy/)をアップデートします。 本プライバシーステートメントのその他の変更については、サイトポリシーのリポジトリを[watch](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)または確認するようユーザにおすすめします。 +Although most changes are likely to be minor, GitHub may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page or sending email to the primary email address specified in your GitHub account. We will also update our [Site Policy repository](https://github.com/github/site-policy/), which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to [watch](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) or to check our Site Policy repository frequently. -## ライセンス +## License -本プライバシーステートメントは、この[Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/)の元でライセンス付与されています。 詳細は、[サイトポリシーリポジトリ](https://github.com/github/site-policy#license)を参照してください。 +This Privacy Statement is licensed under this [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). For details, see our [site-policy repository](https://github.com/github/site-policy#license). -## GitHubへの連絡 -GitHubプライバシーステートメントまたは情報処理についてのご質問は、[プライバシー連絡フォーム](https://support.github.com/contact/privacy)をご利用ください。 +## Contacting GitHub +Questions regarding GitHub's Privacy Statement or information practices should be directed to our [Privacy contact form](https://support.github.com/contact/privacy). -## 翻訳 +## Translations -下記は、本ドキュメントの他言語への翻訳です。 これらのバージョンと英語バージョンとの間に何らかの矛盾、曖昧さ、または、明らかな非一貫性がある場合、英語バージョンを優先的なバージョンとします。 +Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. -### フランス語 -Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(12.20.19)(FR).pdf) +### French +Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(07.22.20)(FR).pdf) -### その他の翻訳 +### Other translations -この声明の他の言語への翻訳については、[https://docs.github.com/](/)にアクセスし、[English] のドロップダウンメニューから言語を選択してください。 +For translations of this statement into other languages, please visit [https://docs.github.com/](/) and select a language from the drop-down menu under “English.” diff --git a/translations/ja-JP/content/github/site-policy/github-subprocessors-and-cookies.md b/translations/ja-JP/content/github/site-policy/github-subprocessors-and-cookies.md index c2e701f556..03ca56894a 100644 --- a/translations/ja-JP/content/github/site-policy/github-subprocessors-and-cookies.md +++ b/translations/ja-JP/content/github/site-policy/github-subprocessors-and-cookies.md @@ -1,10 +1,10 @@ --- -title: GitHubのサブプロセッサとCookie +title: GitHub Subprocessors and Cookies redirect_from: - - /subprocessors/ - - /github-subprocessors/ - - /github-tracking/ - - /github-cookies/ + - /subprocessors + - /github-subprocessors + - /github-tracking + - /github-cookies - /articles/github-subprocessors-and-cookies versions: fpt: '*' @@ -13,68 +13,68 @@ topics: - Legal --- -発効日:**2021年4月2日** +Effective date: **April 2, 2021** -GitHubは、お客様のデータを当社が利用する方法、お客様のデータを当社が収集する方法、およびお客様のデータを共有する対象について、高い透明性を提供します。 この目的のため、[当社のサブプロセッサ](#github-subprocessors)および[クッキー](#cookies-on-github)の使用方法ついて説明するページをご用意しました。 +GitHub provides a great deal of transparency regarding how we use your data, how we collect your data, and with whom we share your data. To that end, we provide this page, which details [our subprocessors](#github-subprocessors), and how we use [cookies](#cookies-on-github). -## GitHubのサブプロセッサ +## GitHub Subprocessors -当社がお客様の情報を、ベンダーやサービスプロバイダなどのサードパーティーのサブプロセッサと共有する場合、それについては当社が責任を負います。 新たなベンダーとのやり取りを行う際に、当社はお客様の信頼を維持するため努力し、全てのベンダーに対して、 ユーザの個人情報 ([プライバシーについての声明](/articles/github-privacy-statement/)の定義による) に関する取り扱いを制限する、データ保護契約を締結するよう要求しています。 +When we share your information with third party subprocessors, such as our vendors and service providers, we remain responsible for it. We work very hard to maintain your trust when we bring on new vendors, and we require all vendors to enter into data protection agreements with us that restrict their processing of Users' Personal Information (as defined in the [Privacy Statement](/articles/github-privacy-statement/)). -| サブプロセッサ名 | 処理の内容 | 処理の場所 | 会社所在地 | -|:------------------------ |:--------------------------------- |:----- |:----- | -| Automattic | ブログサービス | 米国 | 米国 | -| AWS Amazon | データのホスティング | 米国 | 米国 | -| Braintree (PayPal) | プランのクレジットカード決済処理業者 | 米国 | 米国 | -| Clearbit | マーケティングデータのエンリッチメントサービス | 米国 | 米国 | -| Discourse | コミュニティフォーラムのソフトウェアプロバイダ | 米国 | 米国 | -| Eloqua | マーケティングキャンペーンの自動化 | 米国 | 米国 | -| Google Apps | 社内インフラストラクチャ | 米国 | 米国 | -| MailChimp | 顧客チケットメールサービスプロバイダ | 米国 | 米国 | -| Mailgun | トランザクションメールサービスプロバイダ | 米国 | 米国 | -| Microsoft | マイクロソフトサービス | 米国 | 米国 | -| Nexmo | SMS通知プロバイダ | 米国 | 米国 | -| Salesforce.com | 顧客関係管理 | 米国 | 米国 | -| Sentry.io | アプリケーション監視プロバイダ | 米国 | 米国 | -| Stripe | 決済プロバイダ | 米国 | 米国 | -| Twilio & Twilio Sendgrid | SMS通知プロバイダおよびトランザクションメールサービスプロバイダ | 米国 | 米国 | -| Zendesk | カスタマーサポートのチケットシステム | 米国 | 米国 | -| Zuora | 企業課金システム | 米国 | 米国 | +| Name of Subprocessor | Description of Processing | Location of Processing | Corporate Location +|:---|:---|:---|:---| +| Automattic | Blogging service | United States | United States | +| AWS Amazon | Data hosting | United States | United States | +| Braintree (PayPal) | Subscription credit card payment processor | United States | United States | +| Clearbit | Marketing data enrichment service | United States | United States | +| Discourse | Community forum software provider | United States | United States | +| Eloqua | Marketing campaign automation | United States | United States | +| Google Apps | Internal company infrastructure | United States | United States | +| MailChimp | Customer ticketing mail services provider | United States | United States | +| Mailgun | Transactional mail services provider | United States | United States | +| Microsoft | Microsoft Services | United States | United States | +| Nexmo | SMS notification provider | United States | United States | +| Salesforce.com | Customer relations management | United States | United States | +| Sentry.io | Application monitoring provider | United States | United States | +| Stripe | Payment provider | United States | United States | +| Twilio & Twilio Sendgrid | SMS notification provider & transactional mail service provider | United States | United States | +| Zendesk | Customer support ticketing system | United States | United States | +| Zuora | Corporate billing system | United States | United States | -当社ユーザの個人情報を取り扱う新たなサブプロセッサとやり取りを始める際、サブプロセッサと解約する際、およびサブプロセッサの利用方法を変更する際は、このページを更新します。 新たなサブプロセッサについての質問や懸念がある場合は、 {% data variables.contact.contact_privacy %}からお気軽にお問い合わせください。 +When we bring on a new subprocessor who handles our Users' Personal Information, or remove a subprocessor, or we change how we use a subprocessor, we will update this page. If you have questions or concerns about a new subprocessor, we'd be happy to help. Please contact us via {% data variables.contact.contact_privacy %}. -## GitHubのCookie +## Cookies on GitHub -ウェブサイトを提供および保護し、ウェブサイトの利用状況を分析して優れたユーザエクスペリエンスを提供するために、GitHubはクッキーを使用します。 クッキーに関する詳細な情報や、その使用方法と理由について知りたい場合は、当社の[プライバシーについての声明](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking)を参照してください。 +GitHub uses cookies to provide and secure our websites, as well as to analyze the usage of our websites, in order to offer you a great user experience. Please take a look at our [Privacy Statement](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) if you’d like more information about cookies, and on how and why we use them. + +Since the number and names of cookies may change, the table below may be updated from time to time. -クッキーの数や名前は変わることがあるため、以下の表も適時更新されることがあります。 +| Service Provider | Cookie Name | Description | Expiration* | +|:---|:---|:---|:---| +| GitHub | `app_manifest_token` | This cookie is used during the App Manifest flow to maintain the state of the flow during the redirect to fetch a user session. | five minutes | +| GitHub | `color_mode` | This cookie is used to indicate the user selected theme preference. | session | +| GitHub | `_device_id` | This cookie is used to track recognized devices for security purposes. | one year | +| GitHub | `dotcom_user` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `_gh_ent` | This cookie is used for temporary application and framework state between pages like what step the customer is on in a multiple step form. | two weeks | +| GitHub | `_gh_sess` | This cookie is used for temporary application and framework state between pages like what step the user is on in a multiple step form. | session | +| GitHub | `gist_oauth_csrf` | This cookie is set by Gist to ensure the user that started the oauth flow is the same user that completes it. | deleted when oauth state is validated | +| GitHub | `gist_user_session` | This cookie is used by Gist when running on a separate host. | two weeks | +| GitHub | `has_recent_activity` | This cookie is used to prevent showing the security interstitial to users that have visited the app recently. | one hour | +| GitHub | `__Host-gist_user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `__Host-user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `logged_in` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `marketplace_repository_ids` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `marketplace_suggested_target_id` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `_octo` | This cookie is used for session management including caching of dynamic content, conditional feature access, support request metadata, and first party analytics. | one year | +| GitHub | `org_transform_notice` | This cookie is used to provide notice during organization transforms. | one hour | +| GitHub | `private_mode_user_session` | This cookie is used for Enterprise authentication requests. | two weeks | +| GitHub | `saml_csrf_token` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_csrf_token_legacy` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to_legacy` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `tz` | This cookie allows us to customize timestamps to your time zone. | session | +| GitHub | `user_session` | This cookie is used to log you in. | two weeks | -| サービスプロバイダ | クッキーの名前 | 説明 | 有効期限* | -|:--------- |:------------------------------------ |:----------------------------------------------------------------------------------- |:---------------------------- | -| GitHub | `app_manifest_token` | このクッキーは、リダイレクト中のユーザセッションをフェッチし、フローの状態を維持するため、App Manifestフロー中に使用されます。 | 5分間 | -| GitHub | `color_mode` | このクッキーは、ユーザが選択したテーマ設定を示すために使用されます。 | セッション | -| GitHub | `_device_id` | このクッキーは、セキュリティ上の目的により、認識されたデバイスを追跡するために使用されます。 | 1年間 | -| GitHub | `dotcom_user` | このクッキーは、ユーザがすでにログインしていることを当社に通知するために使用されます。 | 1年間 | -| GitHub | `_gh_ent` | このクッキーは、お客様が複数のステップのうちどのステップにあるのかなど、一時アプリケーションおよびフレームワークにおけるページ間での状態を記録するために使用されます。 | 2週間 | -| GitHub | `_gh_sess` | このクッキーは、ユーザが複数のステップのうちどのステップにあるのかなど、一時アプリケーションおよびフレームワークにおけるページ間での状態を記録するために使用されます。 | セッション | -| GitHub | `gist_oauth_csrf` | このクッキーは、OAuthフローを開始したユーザが、それを完了したユーザと同一であることを保証するために、Gistによって設定されます。 | OAuth state の検証後に削除 | -| GitHub | `gist_user_session` | このクッキーは、別のホストで実行されている場合にGistによって使用されます。 | 2週間 | -| GitHub | `has_recent_activity` | このクッキーは、アプリケーションに最近アクセスしたユーザにセキュリティインタースティシャルを表示させないために使用されます。 | 1時間 | -| GitHub | `__Host-gist_user_session_same_site` | このクッキーは、SameSiteクッキーをサポートするブラウザが、リクエストがGitHubから発信されているかどうかを確認できるように設定されます。 | 2週間 | -| GitHub | `__Host-user_session_same_site` | このクッキーは、SameSiteクッキーをサポートするブラウザが、リクエストがGitHubから発信されているかどうかを確認できるように設定されます。 | 2週間 | -| GitHub | `logged_in` | このクッキーは、ユーザがすでにログインしていることを当社に通知するために使用されます。 | 1年間 | -| GitHub | `marketplace_repository_ids` | このクッキーは、Marketplaceのインストールフローに使用されます。 | 1時間 | -| GitHub | `marketplace_suggested_target_id` | このクッキーは、Marketplaceのインストールフローに使用されます。 | 1時間 | -| GitHub | `_octo` | このクッキーは、動的コンテンツのキャッシング、条件付き機能へのアクセス、サポートリクエストのメタデータ、ファーストパーティ分析などのセッション管理に使用されます。 | 1年間 | -| GitHub | `org_transform_notice` | このクッキーは、Organizationの変換時に通知を行うために使用されます。 | 1時間 | -| GitHub | `private_mode_user_session` | このクッキーは、Enterprise認証リクエストに使用されます。 | 2週間 | -| GitHub | `saml_csrf_token` | このクッキーは、トークンをクライアントに関連付けるために、SAML認証パスメソッドによって設定されます。 | ユーザがブラウザを閉じるか、認証リクエストを完了するまで | -| GitHub | `saml_csrf_token_legacy` | このクッキーは、トークンをクライアントに関連付けるために、SAML認証パスメソッドによって設定されます。 | ユーザがブラウザを閉じるか、認証リクエストを完了するまで | -| GitHub | `saml_return_to` | このクッキーは、SAML認証ループ時に、状態を維持するためSAML認証パスメソッドによって設定されます。 | ユーザがブラウザを閉じるか、認証リクエストを完了するまで | -| GitHub | `saml_return_to_legacy` | このクッキーは、SAML認証ループ時に、状態を維持するためSAML認証パスメソッドによって設定されます。 | ユーザがブラウザを閉じるか、認証リクエストを完了するまで | -| GitHub | `tz` | このクッキーを使用すると、タイムゾーンに合わせてタイムスタンプをカスタマイズできます。 | セッション | -| GitHub | `user_session` | このクッキーはログインに使用されます。 | 2週間 | +_*_ The **expiration** dates for the cookies listed below generally apply on a rolling basis. -_*_ 以下に挙げるクッキーの**有効期限**日は通常、随時適用されます。 - -(!) 当社は第三者によるクッキーの使用を、外部コンテンツをレンダリングする際に必要な外部機能を提供するために必要なものに限って使用していますが、当社の特定のページにおいては第三者によるその他のクッキーが設置される場合があります。 たとえば、クッキーを設定するサイトから、動画などのコンテンツを埋め込むことがあります。 第三者のクッキーは最小限に保つよう努めていますが、当社は第三者のコンテンツが設定するクッキーを常に管理できるわけではありません。 +(!) Please note while we limit our use of third party cookies to those necessary to provide external functionality when rendering external content, certain pages on our website may set other third party cookies. For example, we may embed content, such as videos, from another site that sets a cookie. While we try to minimize these third party cookies, we can’t always control what cookies this third party content sets. diff --git a/translations/ja-JP/content/github/site-policy/github-terms-of-service.md b/translations/ja-JP/content/github/site-policy/github-terms-of-service.md index a52889b4c1..9ac616977a 100644 --- a/translations/ja-JP/content/github/site-policy/github-terms-of-service.md +++ b/translations/ja-JP/content/github/site-policy/github-terms-of-service.md @@ -1,10 +1,10 @@ --- title: GitHub Terms of Service redirect_from: - - /tos/ - - /terms/ - - /terms-of-service/ - - /github-terms-of-service-draft/ + - /tos + - /terms + - /terms-of-service + - /github-terms-of-service-draft - /articles/github-terms-of-service versions: fpt: '*' diff --git a/translations/ja-JP/content/github/site-policy/github-username-policy.md b/translations/ja-JP/content/github/site-policy/github-username-policy.md index 2548fba349..84c19fe327 100644 --- a/translations/ja-JP/content/github/site-policy/github-username-policy.md +++ b/translations/ja-JP/content/github/site-policy/github-username-policy.md @@ -1,7 +1,7 @@ --- -title: GitHub ユーザ名ポリシー +title: GitHub Username Policy redirect_from: - - /articles/name-squatting-policy/ + - /articles/name-squatting-policy - /articles/github-username-policy versions: fpt: '*' @@ -10,18 +10,18 @@ topics: - Legal --- -GitHub アカウント名は、すぐに使用されることを前提として先着順で提供されています。 +GitHub account names are available on a first-come, first-served basis, and are intended for immediate and active use. -## 使用したいユーザ名がすでに他者に取得されている場合 +## What if the username I want is already taken? -GitHub 上のすべてのアクティビティが公開されているわけではありませんのでご注意ください。公開されているアクティビティがないアカウントでも、実際に使用されている可能性があります。 +Keep in mind that not all activity on GitHub is publicly visible; accounts with no visible activity may be in active use. -使用したいユーザ名がすでに取得されている場合、他の名前を取得するか、名前を少し変えることを検討してください。 数字、ハイフン、別のつづりなどを使えば、希望するユーザ名が見つかるかもしれません。 +If the username you want has already been claimed, consider other names or unique variations. Using a number, hyphen, or an alternative spelling might help you identify a desirable username still available. -## トレードマークポリシー +## Trademark Policy -誰かのアカウントがあなたの商標権を侵害していると思われる場合は、[トレードマークポリシー](/articles/github-trademark-policy/)のページで商標権侵害の申し立てに関する詳細をご確認ください。 +If you believe someone's account is violating your trademark rights, you can find more information about making a trademark complaint on our [Trademark Policy](/articles/github-trademark-policy/) page. -## ネームスクワッティングに関するポリシー +## Name Squatting Policy -GitHub はアカウント名を不正に占拠することを禁止しており、現時点で使用しないアカウント名を予約したり、将来の使用のために保持したりすることはできません。 ネームスクワッティングポリシーに違反するアカウントは、通知なしに削除またはアカウント名を変更されることがあります。 アカウント名と引き換えに他の形態の支払いを販売、購入、または勧誘することは禁止されており、これを行った場合、アカウントが永久に停止される場合があります。 +GitHub prohibits account name squatting, and account names may not be reserved or inactively held for future use. Accounts violating this name squatting policy may be removed or renamed without notice. Attempts to sell, buy, or solicit other forms of payment in exchange for account names are prohibited and may result in permanent account suspension. diff --git a/translations/ja-JP/content/github/site-policy/global-privacy-practices.md b/translations/ja-JP/content/github/site-policy/global-privacy-practices.md index 4401b85238..4d12086d81 100644 --- a/translations/ja-JP/content/github/site-policy/global-privacy-practices.md +++ b/translations/ja-JP/content/github/site-policy/global-privacy-practices.md @@ -1,7 +1,7 @@ --- -title: プライバシーのグローバルプラクティス +title: Global Privacy Practices redirect_from: - - /eu-safe-harbor/ + - /eu-safe-harbor - /articles/global-privacy-practices versions: fpt: '*' @@ -10,66 +10,66 @@ topics: - Legal --- -発効日: 2020年7月22日 +Effective date: July 22, 2020 -GitHubは、GitHubの[プライバシーについての声明](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)に記載されている高水準のプライバシー保護を、その出生国や地域にかかわらず、世界中すべてのユーザおよびお客様に対して等しく提供しています。当社が提供する通知、選択肢、アカウンタビリティ、セキュリティ、データ完全性、アクセス、および償還の水準をGitHubは誇りにしています。 +GitHub provides the same high standard of privacy protection—as described in GitHub’s [Privacy Statement](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)—to all our users and customers around the world, regardless of their country of origin or location, and GitHub is proud of the level of notice, choice, accountability, security, data integrity, access, and recourse we provide. -またGitHubは、欧州経済領域、英国、スイス (「EU」と総称) から米国へのデータの移転に関する特定の法的枠組みに準拠しています。 GitHubがかかる移転を行う際は、個人情報の伝達に伴うあなたの権利を保護するための法的仕組みとして、標準契約条項に依拠します。 さらにGitHubは、EU-米国プライバシーシールドフレームワークの認証を受けています。 国際的なデータの移転に関する欧州委員会の決定の詳細については、欧州委員会のウェブサイトにある[こちらの記事](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en)を参照してください。 +GitHub also complies with certain legal frameworks relating to the transfer of data from the European Economic Area, the United Kingdom, and Switzerland (collectively, “EU”) to the United States. When GitHub engages in such transfers, GitHub relies on Standard Contractual Clauses as the legal mechanism to help ensure your rights and protections travel with your personal information. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about the European Commission’s decisions on international data transfer, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). -## 標準契約条項 +## Standard Contractual Clauses -GitHubは、EUからのデータ転送に対する法的仕組みとして、欧州委員会が承認した標準契約条項 (「SCC」) に依拠しています。 SCCは、個人情報を転送する企業間の契約責任であり、かかるデータのプライバシーとセキュリティを保護するための拘束力を持ちます。 EU外から、欧州連合が個人情報を適切に保護していないと見なす諸国 (米国へのデータ移転の保護を含む) への必要なデータフローを保護するため、GitHubではSCCを採用しました。 +GitHub relies on the European Commission-approved Standard Contractual Clauses (“SCCs”) as a legal mechanism for data transfers from the EU. SCCs are contractual commitments between companies transferring personal data, binding them to protect the privacy and security of such data. GitHub adopted SCCs so that the necessary data flows can be protected when transferred outside the EU to countries which have not been deemed by the European Commission to adequately protect personal data, including protecting data transfers to the United States. -SCCの詳細については、欧州委員会のウェブサイトにある[こちらの記事](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en)を参照してください。 +To learn more about SCCs, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). -## プライバシー シールド フレームワーク +## Privacy Shield Framework -欧州司法裁判所の判決 (Case C-311/18) に基づいて、GitHubは、個人情報の転送に関する法的根拠としてはEU-米国プライバシーシールドフレームワークに依拠しないものの、EU-米国およびスイス-米国のプライバシーシールドフレームワークの認証を受け、そこに含まれる義務を履行します。 +GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks and the commitments they entail, although GitHub does not rely on the EU-US Privacy Shield Framework as a legal basis for transfers of personal information in light of the judgment of the Court of Justice of the EU in Case C-311/18. -EU-米国およびスイス-米国プライバシーシールドフレームワークはEU、イギリスおよびスイスから米国へ転送されたユーザ個人情報の収集、利用および保持について、米国商務省により定められたものです。 GitHubは、プライバシーシールド原則を遵守することを商務省に証明しています。 当社のベンダーや関連会社が、いずれかのプライバシーシールドフレームワークの原則に反した方法でユーザ個人情報を処理する場合は、損害を発生させた事象について当社に責任がないことを証明しない限り、GitHubが責任を負います。 +The EU-US and Swiss-US Privacy Shield Frameworks are set forth by the US Department of Commerce regarding the collection, use, and retention of User Personal Information transferred from the European Union, the UK, and Switzerland to the United States. GitHub has certified to the Department of Commerce that it adheres to the Privacy Shield Principles. If our vendors or affiliates process User Personal Information on our behalf in a manner inconsistent with the principles of either Privacy Shield Framework, GitHub remains liable unless we prove we are not responsible for the event giving rise to the damage. -プライバシーシールドフレームワークに基づく認証において、本グローバルプライバシープラクティスとプライバシープライバシーシールド原則の条項の間に何らかの矛盾がある場合、プライバシーシールド原則を優先するものとします。 プライバシーシールプログラムについて詳細を知りたい場合、および、当社の証明を閲覧したい場合、[プライバシーシールドウェブサイト](https://www.privacyshield.gov/)を確認ください。 +For purposes of our certifications under the Privacy Shield Frameworks, if there is any conflict between the terms in these Global Privacy Practices and the Privacy Shield Principles, the Privacy Shield Principles shall govern. To learn more about the Privacy Shield program, and to view our certification, visit the [Privacy Shield website](https://www.privacyshield.gov/). -プライバシー シールドフレームワークは7つの原則に基づいており、GitHubは以下の方法でこれに準拠しています。 +The Privacy Shield Frameworks are based on seven principles, and GitHub adheres to them in the following ways: -- **通知** - - 当社は、個人情報を収集する際に、お客様に通知します。 - - 当社は、当社の[プライバシーに関する声明](/articles/github-privacy-statement/)において、お客様の個人情報を収集および利用する目的、その情報を共有する対象、およびお客様が自らのデータに対して所有するアクセスをお知らせします。 - - 当社は、プライバシーシールドフレームワークに参加していること、そしてそれがお客様にとって持つ意味をお知らせします。 - - 当社は、プライバシーに関するご質問を受け付けるため、{% data variables.contact.contact_privacy %}をご用意しています。 - - 万が一、紛争が生じた場合は、お客様に無償で提供される、拘束力のある仲裁を求める権利についてお知らせします。 - - 当社は、米国連邦取引委員会の管轄下にあるということをお知らせします。 -- **選択肢の提供** - - 当社は、お客様のデータに起こることをお客様に選択していただきます。 お客様のデータを、当社に提供した以外の目的で利用する前に、お客様にお知らせして許可を得ます。 - - 当社は、お客様が選択を行うための合理的な仕組みを提供します。 -- **第三者移転に関する責任** - - 当社に代わってお客様の個人情報を処理する第三者のベンダーに情報を転送する場合、当社はお客様のデータを、当社のプライバシーに関する声明に従って保護する第三者に対してのみ、当社との契約の下に送信します。 当社がプライバシーシールドの下でお客様のデータをベンダーに転送する場合、当社はそれに対して責任を負います。 - - 当社は、トランザクションを完了するために必要な量のデータのみを第三者ベンダーに共有します。 -- **セキュリティ** - - 当社は、[合理的かつ適切なセキュリティ対策](https://github.com/security)をもってお客様の個人情報を保護します。 -- **データの正確性と目的外利用の制限** - - 当社は、お客様に当社のサービスを提供する目的に関してのみ、お客様のデータを収集します。 - - 当社は、できる限り少ない量の個人情報を収集します。ただし、お客様がそれ以上の情報を提供することを選択した場合は除きます。 - - 当社は、お客様について所有するデータが正確、最新、かつ利用目的において信頼できることを保証するための合理的な措置を講じます。 -- **アクセス** - - お客様は、[ユーザプロフィール](https://github.com/settings/profile)で当社がお客様について所有するデータに常にアクセスできます。 その画面において、お客様はご自身の情報に対してアクセス、更新、修正、削除できます。 -- **救済機関、執行および責任** - - 当社のプライバシー慣行についてご質問がある場合は、{% data variables.contact.contact_privacy %}でご連絡ください。遅くとも45日以内に返信いたします。 - - 万が一、私たちが解決できない紛争が生じた場合、お客様は拘束力のある仲裁を無償で利用できます。 詳細は、「[プライバシーについての声明](/articles/github-privacy-statement/)」を参照してください。 - - 当社は、当社の約束に従っていることを確認するため、関連するプライバシー慣行について定期的な監査を実施します。 - - 当社は、従業員にプライバシーの約束を尊重することを義務付けており、当社のプライバシーポリシーに違反することは、雇用の終了を含む懲戒処分の対象となります。 +- **Notice** + - We let you know when we're collecting your personal information. + - We let you know, in our [Privacy Statement](/articles/github-privacy-statement/), what purposes we have for collecting and using your information, who we share that information with and under what restrictions, and what access you have to your data. + - We let you know that we're participating in the Privacy Shield framework, and what that means to you. + - We have a {% data variables.contact.contact_privacy %} where you can contact us with questions about your privacy. + - We let you know about your right to invoke binding arbitration, provided at no cost to you, in the unlikely event of a dispute. + - We let you know that we are subject to the jurisdiction of the Federal Trade Commission. +- **Choice** + - We let you choose what happens to your data. Before we use your data for a purpose other than the one for which you gave it to us, we will let you know and get your permission. + - We will provide you with reasonable mechanisms to make your choices. +- **Accountability for Onward Transfer** + - When we transfer your information to third party vendors that are processing it on our behalf, we are only sending your data to third parties, under contract with us, that will safeguard it consistently with our Privacy Statement. When we transfer your data to our vendors under Privacy Shield, we remain responsible for it. + - We share only the amount of data with our third party vendors as is necessary to complete their transaction. +- **Security** + - We will protect your personal information with [all reasonable and appropriate security measures](https://github.com/security). +- **Data Integrity and Purpose Limitation** + - We only collect your data for the purposes relevant for providing our services to you. + - We collect as little information about you as we can, unless you choose to give us more. + - We take reasonable steps to ensure that the data we have about you is accurate, current, and reliable for its intended use. +- **Access** + - You are always able to access the data we have about you in your [user profile](https://github.com/settings/profile). You may access, update, alter, or delete your information there. +- **Recourse, Enforcement and Liability** + - If you have questions about our privacy practices, you can reach us with our {% data variables.contact.contact_privacy %} and we will respond within 45 days at the latest. + - In the unlikely event of a dispute that we cannot resolve, you have access to binding arbitration at no cost to you. Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. + - We will conduct regular audits of our relevant privacy practices to verify compliance with the promises we have made. + - We require our employees to respect our privacy promises, and violation of our privacy policies is subject to disciplinary action up to and including termination of employment. -### 紛争解決プロセス +### Dispute resolution process -当社[プライバシーについての声明](/github/site-policy/github-privacy-statement)の[苦情の解決](/github/site-policy/github-privacy-statement#resolving-complaints)セクションに詳述するように、プライバシーシールドに関連する (または一般的なプライバシーに関連する) 苦情がある場合は、当社にご連絡いただくことをお勧めします。 GitHubで直接解決できない紛争については、EUの個人との紛争解決のために、当社は関係するEUデータ保護機関またはヨーロッパデータ保護機関が設立した委員会と協力することを選択しました。また、スイスの個人との紛争解決のために、スイス連邦データ保護および情報コミッショナー(FDPIC)と協力することを選択しました。 当社からお客様に対して、お客様のデータ保護機関の連絡先を提供することをご希望の場合、当社にご連絡ください。 +As further explained in the [Resolving Complaints](/github/site-policy/github-privacy-statement#resolving-complaints) section of our [Privacy Statement](/github/site-policy/github-privacy-statement), we encourage you to contact us should you have a Privacy Shield-related (or general privacy-related) complaint. For any complaints that cannot be resolved with GitHub directly, we have selected to cooperate with the relevant EU Data Protection Authority, or a panel established by the European data protection authorities, for resolving disputes with EU individuals, and with the Swiss Federal Data Protection and Information Commissioner (FDPIC) for resolving disputes with Swiss individuals. Please contact us if you’d like us to direct you to your data protection authority contacts. -さらに、お客様がEUメンバー国の住民の場合、お客様の地元国の監督機関に苦情を申し立てる権利を有します。 +Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority. -### 独立した仲裁者 +### Independent arbitration -一定の制限された状況において、EU、欧州経済領域(EEA)、スイスおよびイギリスの個人は、他の紛争解決方法が成功しなかった場合、最終手段として、拘束力のあるプライバシーシールド仲裁の救済を求めることができます。 解決方法および利用可能性について知りたい場合、詳細は、[プライバシーシールド](https://www.privacyshield.gov/article?id=ANNEX-I-introduction)を参照してください。 仲裁は必須ではありません。お客様が選択した場合に利用できるツールです。 +Under certain limited circumstances, EU, European Economic Area (EEA), Swiss, and UK individuals may invoke binding Privacy Shield arbitration as a last resort if all other forms of dispute resolution have been unsuccessful. To learn more about this method of resolution and its availability to you, please read more about [Privacy Shield](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). Arbitration is not mandatory; it is a tool you can use if you so choose. -当社は、米国連邦取引委員会(FTC)の管轄下にあります。 - -詳細は、「[プライバシーについての声明](/articles/github-privacy-statement/)」を参照してください。 +We are subject to the jurisdiction of the US Federal Trade Commission (FTC). + +Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. diff --git a/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md b/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md index 6c41edbe53..e2dbb93740 100644 --- a/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md +++ b/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md @@ -1,8 +1,8 @@ --- -title: DMCAカウンター通知の提出ガイド +title: Guide to Submitting a DMCA Counter Notice redirect_from: - - /dmca-counter-notice-how-to/ - - /articles/dmca-counter-notice-how-to/ + - /dmca-counter-notice-how-to + - /articles/dmca-counter-notice-how-to - /articles/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' @@ -11,56 +11,68 @@ topics: - Legal --- -このガイドでは、DMCA テイクダウンリクエストに対する異議申し立て通知を処理するために GitHub が必要とする情報について説明します。 DMCA とは何かや、GitHub が DMCA テイクダウンリクエストをどのように処理するかなど、一般的な質問については [DMCA テイクダウンポリシー](/articles/dmca-takedown-policy)をご覧ください。 +This guide describes the information that GitHub needs in order to process a counter notice to a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -GitHub のあなたのコンテンツが DMCA テイクダウンリクエストにより誤って無効にされたと思われる場合、異議申し立て通知を提出して削除に異議を申し立てる権利があります。 異議を申し立てた場合、10〜14 日の期間内に著作権所有者があなたに対して法的措置を講じない限り、当社はコンテンツを再度有効にします。 以下に定める当社の異議申し立て通知の形式は、DMCA 法で提案されている形式と一致しています。 これは、米著作権局の公式ウェブサイト(<https://www.copyright.gov>)でご確認いただけます。 +If you believe your content on GitHub was mistakenly disabled by a DMCA takedown request, you have the right to contest the takedown by submitting a counter notice. If you do, we will wait 10-14 days and then re-enable your content unless the copyright owner initiates a legal action against you before then. Our counter-notice form, set forth below, is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -法律に関わるあらゆる事項と同様、具体的な疑問や状況については専門家に相談するのが常に最善です。 あなたの権利に影響を及ぼす可能性のある行動をとる前に、そうすることを強くお勧めします。 このガイドは法律上の助言ではなく、またそのように解釈されるべきではありません。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## はじめる前に +## Before You Start -*** 真実を教えてください。***DMCA では、宣誓を行い、虚偽の申し立てを行った場合には*偽証罪によって罰せられるという条件で*異議申し立て通知を行うことを義務付けています。 宣誓宣言で意図的に虚偽の陳述を行うと連邦犯罪になります。 ([合衆国法典、タイトル 18、セクション 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm) *を参照してください</em>。 )虚偽の情報を提出すると、民事責任が発生する可能性もあります。 つまり、金銭的損害で訴えられる可能性があります。 +***Tell the Truth.*** +The DMCA requires that you swear to your counter notice *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability—that is, you could get sued for money damages. -***調査してください。***DMCA 異議申し立て通知を提出すると、現実的な法的結果が生じる可能性があります。 苦情を申し立てた当事者がテイクダウン通知が間違っていることに同意しない場合、コンテンツを無効にし続けるためにあなたに対して訴訟を起こすことがあります。 あなたは、テイクダウン通知でなされた申し立てを徹底的に調査し、そして異議申し立て通知を提出する前に弁護士に相談するべきでしょう。 +***Investigate.*** +Submitting a DMCA counter notice can have real legal consequences. If the complaining party disagrees that their takedown notice was mistaken, they might decide to file a lawsuit against you to keep the content disabled. You should conduct a thorough investigation into the allegations made in the takedown notice and probably talk to a lawyer before submitting a counter notice. -***You Must Have a Good Reason to Submit a Counter Notice.*** In order to file a counter notice, you must have "a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled." ([合衆国 法典、タイトル 17 、セクション 512 (g)](https://www.copyright.gov/title17/92chap5.html#512) を参照してください。) 間違いがあったと考える理由を説明するかどうかはあなたとあなたの弁護士次第ですが、異議申し立て通知を提出する前に*必ず*間違いを特定する必要があります。 過去に当社が受け取った異議申し立て通知で挙げられたテイクダウン通知の間違いとしては、「苦情を申し立てた当事者に著作権がない」、「私はライセンスを持っている」、「コードは、私の使用を許可するオープンソースライセンスの下でリリースされている」、「苦情は、私の使用がフェアユースの原則によって保護されているという事実を考慮していない」などがあります。 もちろん、テイクダウン通知の欠陥には他の内容も考えられます。 +***You Must Have a Good Reason to Submit a Counter Notice.*** +In order to file a counter notice, you must have "a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled." ([U.S. Code, Title 17, Section 512(g)](https://www.copyright.gov/title17/92chap5.html#512).) Whether you decide to explain why you believe there was a mistake is up to you and your lawyer, but you *do* need to identify a mistake before you submit a counter notice. In the past, we have received counter notices citing mistakes in the takedown notice such as: the complaining party doesn't have the copyright; I have a license; the code has been released under an open-source license that permits my use; or the complaint doesn't account for the fact that my use is protected by the fair-use doctrine. Of course, there could be other defects with the takedown notice. -***著作権法は複雑です。***テイクダウン通知による侵害の申し立ては、奇妙であったり直接的でないように思える場合があります。 著作権法は複雑であり、予期しない結果を招く可能性があります。 場合によっては、テイクダウン通知では、コンパイルおよび実行後にできることが理由で、あなたのソースコードが著作権を侵害していると申し立てられる場合があります。 例: - - 著作物に対する[アクセス制御を迂回](https://www.copyright.gov/title17/92chap12.html)するためにあなたのソフトウェアが使用されていると申し立てられる場合があります。 - - ソフトウェアを使用して著作物を侵害するようエンドユーザを誘導した場合、ソフトウェアの配布が著作権侵害になる[場合があります](https://www.copyright.gov/docs/mgm/)。 - - 著作権侵害の申し立てが、ソースコード自体ではなく、ソフトウェアのデザイン要素の[文字通りでない複製](https://en.wikipedia.org/wiki/Substantial_similarity)に基づいている場合もあります。つまり、あなたの*デザイン*が他の誰かのデザインに酷似しているという通知を受け取る場合があります。 +***Copyright Laws Are Complicated.*** +Sometimes a takedown notice might allege infringement in a way that seems odd or indirect. Copyright laws are complicated and can lead to some unexpected results. In some cases a takedown notice might allege that your source code infringes because of what it can do after it is compiled and run. For example: + - The notice may claim that your software is used to [circumvent access controls](https://www.copyright.gov/title17/92chap12.html) to copyrighted works. + - [Sometimes](https://www.copyright.gov/docs/mgm/) distributing software can be copyright infringement, if you induce end users to use the software to infringe copyrighted works. + - A copyright complaint might also be based on [non-literal copying](https://en.wikipedia.org/wiki/Substantial_similarity) of design elements in the software, rather than the source code itself — in other words, someone has sent a notice saying they think your *design* looks too similar to theirs. -これらは、著作権法の複雑さを示すほんの一例に過ぎません。 法律には多くの微妙な点があり、上記のようなケースには未解決の疑問が残っているため、侵害の申し立てが簡単ではないと思われる場合は専門家のアドバイスを受けることが特に重要です。 +These are just a few examples of the complexities of copyright law. Since there are many nuances to the law and some unsettled questions in these types of cases, it is especially important to get professional advice if the infringement allegations do not seem straightforward. -***異議申し立て通知は法的声明です。***異議申し立て通知は当社に対してだけでなく、苦情を申し立てた当事者に対する法的声明でもあるため、異議申し立て通知を提出する場合はすべてのフィールドを不備なく記入する必要があります。 上述したように、異議申し立て通知を受け取った後も、苦情を申し立てた当事者側が引き続きコンテンツを無効にしたい場合、GitHub のコンテンツに関連する侵害行為にあなたが関与することを差し止める裁判所命令を求めて、法的措置を講じる必要があります。 つまり、あなたは訴えられる可能性があります(また、あなたは異議申し立て通知でこれに同意します)。 +***A Counter Notice Is A Legal Statement.*** +We require you to fill out all fields of a counter notice completely, because a counter notice is a legal statement — not just to us, but to the complaining party. As we mentioned above, if the complaining party wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain you from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued (and you consent to that in the counter notice). -***あなたの異議申し立て通知は公開されます。***[DMCA テイクダウンポリシー](/articles/dmca-takedown-policy#d-transparency)に記載されているように、当社は、完全かつ法的に有効なすべての異議申し立て通知を、**個人情報を編集した上**、<https://github.com/github/dmca> で公開しています。 また、当社は編集後の通知しか公開しませんが、それによって自身の権利が影響を受ける当事者に対しては、受け取った通知の未編集の完全な写しを直接提供する場合がありますのでご注意ください。 プライバシーが心配な場合は、あなたの代わりに弁護士または他の法定代理人に異議申し立て通知を提出してもらうことができます。 +***Your Counter Notice Will Be Published.*** +As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), **after redacting personal information,** we publish all complete and actionable counter notices at <https://github.com/github/dmca>. Please also note that, although we will only publicly publish redacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. If you are concerned about your privacy, you may have a lawyer or other legal representative file the counter notice on your behalf. -***GitHub は裁判官ではありません。***GitHub は、通知が DMCA の最小要件を満たしているかどうかを判断する以外、このプロセスではほとんど裁量権を行使しません。 主張の価値の評価は当事者(およびその弁護士)に委ねられます。なお、通知は偽証罪によって罰せられる対象になることにご注意ください。 +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in this process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -***その他のリソース。***さらにサポートが必要な場合は、インターネット上に利用できるリソースが数多く用意されています。 Lumen には、[著作権](https://www.lumendatabase.org/topics/5)と [DMCA セーフハーバー](https://www.lumendatabase.org/topics/14)に関する有益なガイドがあります。 法的助言が必要なオープンソースプロジェクトに関与している場合は、[Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/) に問い合わせることができます。 また、特に困難な事態に直面したと思われる場合は、[Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) などの非営利団体から直接支援を受けたり、弁護士を紹介してもらえる場合もあります。 +***Additional Resources.*** +If you need additional help, there are many self-help resources online. Lumen has an informative set of guides on [copyright](https://www.lumendatabase.org/topics/5) and [DMCA safe harbor](https://www.lumendatabase.org/topics/14). If you are involved with an open-source project in need of legal advice, you can contact the [Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/). And if you think you have a particularly challenging case, non-profit organizations such as the [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) may also be willing to help directly or refer you to a lawyer. -## 異議申し立て通知は... +## Your Counter Notice Must... -1. **"I have read and understand GitHub's Guide to Filing a DMCA Counter Notice."(GitHub の DMCA 異議申し立て通知提出ガイドを読んで理解しました。)という文言を含んでいなければなりません。**この文言が含まれていないとしても、異議申し立て通知に不備がなければ当社は処理を拒否しません。ただし、このガイドラインを読んでいないと判断できるため、ガイドラインを読むように求める場合があります。 +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Counter Notice."** +We won't refuse to process an otherwise complete counter notice if you don't include this statement; however, we will know that you haven't read these guidelines and may ask you to go back and do so. -2. ***無効にされたコンテンツとそれが表示されていた場所を特定しなければなりません。***無効にされたコンテンツは、テイクダウン通知の URL で特定されているはずです。 このため、すべきことは異議申し立て通知の対象の URL をコピーするだけです。 +2. ***Identify the content that was disabled and the location where it appeared.*** +The disabled content should have been identified by URL in the takedown notice. You simply need to copy the URL(s) that you want to challenge. -3. **あなたの連絡先情報を提供しなければなりません。**メールアドレス、名前、電話番号、住所を記載してください。 +3. **Provide your contact information.** +Include your email address, name, telephone number, and physical address. -4. ***"I swear, under penalty of perjury, that I have a good-faith belief that the material was removed or disabled as a result of a mistake or misidentification of the material to be removed or disabled."(私は、偽証罪の罰則に基づき、削除または無効化の対象の資料の間違いまたは誤認の結果、その資料が削除または無効化されたという誠実な信念を持っていると誓います。)という文言を含んでいなければなりません。***また、間違いや誤認があったと思われる理由を伝えることもできます。 これは、苦情を申し立てている当事者への「通告」として異議申し立て通知を提出する場合、相手が次の手段として訴訟を起こすべきではない理由を説明する機会になります。 これもまた、異議申し立て通知を提出する際に弁護士と協力すべき理由の 1 つです。 +4. ***Include the following statement: "I swear, under penalty of perjury, that I have a good-faith belief that the material was removed or disabled as a result of a mistake or misidentification of the material to be removed or disabled."*** +You may also choose to communicate the reasons why you believe there was a mistake or misidentification. If you think of your counter notice as a "note" to the complaining party, this is a chance to explain why they should not take the next step and file a lawsuit in response. This is yet another reason to work with a lawyer when submitting a counter notice. -5. ***"I consent to the jurisdiction of Federal District Court for the judicial district in which my address is located (if in the United States, otherwise the Northern District of California where GitHub is located), and I will accept service of process from the person who provided the DMCA notification or an agent of such person."(私は、私の住所がある司法管轄区(米国の場合は GitHub が所在するカリフォルニア州北部地区)の連邦地方裁判所の管轄に同意し、DMCA 通知を提供した人物またはかかる人物の代理人からの令状の送達を受け入れます。)という文言を含んでいなければなりません。*** +5. ***Include the following statement: "I consent to the jurisdiction of Federal District Court for the judicial district in which my address is located (if in the United States, otherwise the Northern District of California where GitHub is located), and I will accept service of process from the person who provided the DMCA notification or an agent of such person."*** -6. **物理的または電子的な署名を含めてください。** +6. **Include your physical or electronic signature.** -## 異議申し立て通知の提出方法 +## How to Submit Your Counter Notice -{% data variables.contact.contact_dmca %} で情報を入力し、すべての質問に答えることで、最も早く回答を得ることができます。 +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -また、<copyright@github.com> にメール通知を送信することもできます。 必要に応じて添付ファイルを含めることもできますが、メッセージの本文には平文版の文書も含めてください。 +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -通知を郵送する必要がある場合は、それも可能ですが、通知の受け取りと応答には*相当な*時間がかかります。具体的には、当社が異議申し立て通知を*受領*してから 10〜14 日お待ちいただくことになります。 当社は、平文のメールで作られた通知の方が、PDF ファイルが添付されている場合や郵送の場合よりもずっと早く回答することができます。 それでも通知を郵送する場合は、当社の住所は次のとおりです。 +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it—and the 10-14 day waiting period starts from when we *receive* your counter notice. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc diff --git a/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md b/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md index 7476852c94..deccf23500 100644 --- a/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md +++ b/translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md @@ -1,8 +1,8 @@ --- -title: DMCAテイクダウン通知のガイドの提出 +title: Guide to Submitting a DMCA Takedown Notice redirect_from: - - /dmca-notice-how-to/ - - /articles/dmca-notice-how-to/ + - /dmca-notice-how-to + - /articles/dmca-notice-how-to - /articles/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' @@ -11,79 +11,80 @@ topics: - Legal --- -このガイドでは、DMCA テイクダウンリクエストを処理するために GitHub が必要とする情報について説明します。 DMCA とは何かや、GitHub が DMCA テイクダウンリクエストをどのように処理するかなど、一般的な質問については [DMCA テイクダウンポリシー](/articles/dmca-takedown-policy)をご覧ください。 +This guide describes the information that GitHub needs in order to process a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -GitHub がホストするコンテンツの種類(主にソフトウェアコード)やコンテンツの管理方法(Git を使用)の性質上、苦情はできるだけ具体的にする必要があります。 このガイドラインの目的は、著作権侵害の申し立て通知の処理をできるだけ簡単にすることです。 以下に定める当社の通知形式は、DMCA 法で提案されている形式と一致しています。 これは、米著作権局の公式ウェブサイト(<https://www.copyright.gov>)でご確認いただけます。 +Due to the type of content GitHub hosts (mostly software code) and the way that content is managed (with Git), we need complaints to be as specific as possible. These guidelines are designed to make the processing of alleged infringement notices as straightforward as possible. Our form of notice set forth below is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -法律に関わるあらゆる事項と同様、具体的な疑問や状況については専門家に相談するのが常に最善です。 あなたの権利に影響を及ぼす可能性のある行動をとる前に、そうすることを強くお勧めします。 このガイドは法律上の助言ではなく、またそのように解釈されるべきではありません。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## はじめる前に +## Before You Start -*** 真実を教えてください。***DMCA では、*偽証罪によって罰せられるという条件で*著作権侵害の申し立てを行うことを義務付けています。 宣誓宣言で意図的に虚偽の陳述を行うと連邦犯罪になります。 ([合衆国法典、タイトル 18、セクション 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm) *を参照してください</em>。 )虚偽の情報を提出すると、民事責任が発生する可能性もあります。 つまり、金銭的損害で訴えられる可能性があります。 DMCA 自体には、資料や活動が権利を侵害していることを故意かつ実質的に不実表示した人物に対する[損害賠償が規定](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations)されています。 +***Tell the Truth.*** The DMCA requires that you swear to the facts in your copyright complaint *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability — that is, you could get sued for money damages. The DMCA itself [provides for damages](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) against any person who knowingly materially misrepresents that material or activity is infringing. -***調査してください。***何百万人ものユーザや組織が、GitHub で作成およびコントリビューションするプロジェクトに心血を注ぎ込んでいます。 このようなプロジェクトに対して DMCA の苦情を申し立てることは、実在する人々に現実的な結果をもたらすことになる、重大な法的措置です。 そのため、テイクダウンを送信する前に徹底的な調査を行い、弁護士に相談して、実際に使用が許可されていないことを確認してください。 +***Investigate.*** Millions of users and organizations pour their hearts and souls into the projects they create and contribute to on GitHub. Filing a DMCA complaint against such a project is a serious legal allegation that carries real consequences for real people. Because of that, we ask that you conduct a thorough investigation and consult with an attorney before submitting a takedown to make sure that the use isn't actually permissible. -***まずは丁寧にお願いしてください。***当社にテイクダウン通知を送信する前に、まずはユーザに直接連絡することが重要です。 連絡先情報は公開プロフィールページやリポジトリの README に記載されている場合があります。または、Issue を開いたり、リポジトリでプルリクエストを送信して連絡を取ることもできます。 これは厳密には義務ではありませんが、その方が上品なやり方と言えるでしょう。 +***Ask Nicely First.*** A great first step before sending us a takedown notice is to try contacting the user directly. They may have listed contact information on their public profile page or in the repository's README, or you could get in touch by opening an issue or pull request on the repository. This is not strictly required, but it is classy. -***リクエストは正しく送信してください。***当社は、著作権で保護されている著作物についての、特定の著作物を特定している DMCA テイクダウン通知のみを受け入れることができます。 商標権侵害についての苦情がある場合は、[商標ポリシー](/articles/github-trademark-policy/)をご覧ください。 パスワードなどの機密データを削除したい場合は、[機密データに関するポリシー](/articles/github-sensitive-data-removal-policy/)をご覧ください。 名誉毀損またはその他の虐待行為が対象の場合は、[コミュニティガイドライン](/articles/github-community-guidelines/)をご覧ください。 +***Send In The Correct Request.*** We can only accept DMCA takedown notices for works that are protected by copyright, and that identify a specific copyrightable work. If you have a complaint about trademark abuse, please see our [trademark policy](/articles/github-trademark-policy/). If you wish to remove sensitive data such as passwords, please see our [policy on sensitive data](/articles/github-sensitive-data-removal-policy/). If you are dealing with defamation or other abusive behavior, please see our [Community Guidelines](/articles/github-community-guidelines/). -***コードは他のクリエイティブコンテンツとは異なります。***GitHub はソフトウェアコードのコラボレーションのために構築されています。 このため、著作権侵害を正しく特定することが、写真、音楽、ビデオなどの他のものと比べて難しくなります。 +***Code Is Different From Other Creative Content.*** GitHub is built for collaboration on software code. This makes identifying a valid copyright infringement more complicated than it might otherwise be for, say, photos, music, or videos. -コードが他のクリエイティブコンテンツと異なる理由はいくつもあります。 以下はその例です。 +There are a number of reasons why code is different from other creative content. For instance: -- リポジトリにはさまざまな人々からのコードの断片が含まれる場合がありますが、1 つのファイル、さらにはファイル内のサブルーチンでさえ著作権侵害に該当します。 -- コードは機能性と創造的な表現の組み合わせですが、著作権が保護するのは機能的な部分ではなく、表現要素のみです。 -- 多くの場合、考慮すべきライセンスがあります。 コードの一部に著作権表示があるからといって、必ずしも著作権を侵害しているとは限りません。 コードがオープンソースライセンスに従って使用されている可能性もあります。 -- 著作権で保護されたコンテンツを少量のみ使用する場合、そのコンテンツを変革的な方法で使用する場合、教育目的で使用する場合、または上記を組み合わせた場合、特定の使用が[フェアユース](https://www.lumendatabase.org/topics/22)に該当する場合があります。 コードは当然そのような用途に適しているため、使用事例ごとに異なり、個別に検討する必要があります。 -- コードに関する著作権侵害の申し立てにはさまざまな形があるため、著作物の詳細な説明と識別が求められます。 +- A repository may include bits and pieces of code from many different people, but only one file or even a sub-routine within a file infringes your copyrights. +- Code mixes functionality with creative expression, but copyright only protects the expressive elements, not the parts that are functional. +- There are often licenses to consider. Just because a piece of code has a copyright notice does not necessarily mean that it is infringing. It is possible that the code is being used in accordance with an open-source license. +- A particular use may be [fair-use](https://www.lumendatabase.org/topics/22) if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +- Code may be alleged to infringe in many different ways, requiring detailed explanations and identifications of works. -このリストはすべてを網羅しているわけではありません。そのため、コードを扱う際にあなたが申し立てる苦情について法律専門家に相談することは二重の意味で重要です。 +This list isn't exhaustive, which is why speaking to a legal professional about your proposed complaint is doubly important when dealing with code. -***ボットを使わないでください。***熟練の専門家に、あなたが送信するすべてのテイクダウン通知の事実を評価してもらうべきです。 取り組みを第三者に外部委託している場合は、その活動内容を把握し、第三者が自動化されたボットを使用して苦情を一括送信していないことを確認してください。 ボットを使った苦情は多くの場合無効であり、このような処理を行うとプロジェクトが不必要に削除されてしまいます。 +***No Bots.*** You should have a trained professional evaluate the facts of every takedown notice you send. If you are outsourcing your efforts to a third party, make sure you know how they operate, and make sure they are not using automated bots to submit complaints in bulk. These complaints are often invalid and processing them results in needlessly taking down projects! -***著作権の問題は難解です。***特定の対象が著作権で保護されているかどうかを判断するのは非常に困難な場合があります。 たとえば、事実(データを含む)は一般に著作権の対象ではありません。 また、単語や短いフレーズは一般に著作権の対象ではありません。 そして、URL やドメイン名も一般に著作権の対象ではありません。 DMCA プロセスを使用できるのは著作権で保護されているコンテンツを対象とする場合のみであるため、コンテンツが保護可能かどうかについて質問がある場合は弁護士に相談する必要があります。 +***Matters of Copyright Are Hard.*** It can be very difficult to determine whether or not a particular work is protected by copyright. For example, facts (including data) are generally not copyrightable. Words and short phrases are generally not copyrightable. URLs and domain names are generally not copyrightable. Since you can only use the DMCA process to target content that is protected by copyright, you should speak with a lawyer if you have questions about whether or not your content is protectable. -***異議申し立て通知を受け取る可能性があります。***テイクダウン通知の影響を受けるユーザは、[異議申し立て通知](/articles/guide-to-submitting-a-dmca-counter-notice)を送信することができます。 その場合、GitHub のコンテンツに関連する侵害行為にユーザが関与することを差し止めるよう求める法的措置を講じたことがあなたから当社に通知されない限り、当社は 10〜14 日以内にコンテンツを再度有効にします。 +***You May Receive a Counter Notice.*** Any user affected by your takedown notice may decide to submit a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). If they do, we will re-enable their content within 10-14 days unless you notify us that you have initiated a legal action seeking to restrain the user from engaging in infringing activity relating to the content on GitHub. -***あなたの苦情は公開されます。***[DMCA テイクダウンポリシー](/articles/dmca-takedown-policy#d-transparency)に記載されているように、当社は、完全かつ法的に有効なすべてのテイクダウン通知を、個人情報を編集した上、<https://github.com/github/dmca> で公開しています。 +***Your Complaint Will Be Published.*** As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), after redacting personal information, we publish all complete and actionable takedown notices at <https://github.com/github/dmca>. -***GitHub は裁判官ではありません。***GitHub は、通知が DMCA の最小要件を満たしているかどうかを判断する以外、このプロセスではほとんど裁量権を行使しません。 主張の価値の評価は当事者(およびその弁護士)に委ねられます。なお、通知は偽証罪によって罰せられる対象になることにご注意ください。 +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -## 申し立てられる苦情は ... +## Your Complaint Must ... -1. **"I have read and understand GitHub's Guide to Filing a DMCA Notice."(GitHub の DMCA 通知提出ガイドを読んで理解しました。)という文言を含んでいなければなりません。**この文言が含まれていないとしても、苦情に不備がなければ当社は処理を拒否しません。 ただし、このガイドラインを読んでいないと判断できるため、ガイドラインを読むように求める場合があります。 +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Notice."** We won't refuse to process an otherwise complete complaint if you don't include this statement. But we'll know that you haven't read these guidelines and may ask you to go back and do so. -2. **侵害されていると思われる著作物を特定しなければなりません。**この情報は重要です。なぜなら、影響を受けるユーザがあなたの主張を評価し、あなたのコンテンツと自分のコンテンツを比較するために、この情報が役立つからです。 特定の具体性は、侵害されたと思われるコンテンツの性質によって異なります。 あなたがコンテンツを公開している場合は、そのコンテンツが存在するウェブページへのリンクを貼ることができるかもしれません。 プロプライエタリで公開されていないコンテンツの場合は、それを説明し、所有権があることを説明できます。 著作権局に登録しているコンテンツの場合は、登録番号を記載する必要があります。 ホストされたコンテンツが自分のコンテンツを直接的、文字通りに複製していると主張する場合は、その事実を説明することもできます。 +2. **Identify the copyrighted work you believe has been infringed.** This information is important because it helps the affected user evaluate your claim and give them the ability to compare your work to theirs. The specificity of your identification will depend on the nature of the work you believe has been infringed. If you have published your work, you might be able to just link back to a web page where it lives. If it is proprietary and not published, you might describe it and explain that it is proprietary. If you have registered it with the Copyright Office, you should include the registration number. If you are alleging that the hosted content is a direct, literal copy of your work, you can also just explain that fact. -3. **上記の第 2 項に記載されている著作物を侵害しているとあなたが主張するデータを特定してください。**できる限り具体的に特定することが大切です。 GitHub がそのデータを見つけるために十分な情報を提供してください。 具体的には、少なくとも、著作権を侵害しているとされるデータの URL を含める必要があります。 リポジトリ全体が著作権を侵害していると主張する場合は、あなたが侵害を主張する特定のファイルまたはファイル内の行番号を特定してください。 URL のすべてのコンテンツが著作権を侵害していると主張する場合は、それについても明示してください。 - - 親リポジトリを無効にしても[フォーク](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork)は自動的に*無効にならない*点にご注意ください。 リポジトリのフォークを調査、分析し、フォークも著作権を侵害していると思われる場合は、侵害の疑いのある各フォークを明示的に特定してください。 また、個々のケースを調査したことと、宣誓の上での陳述が特定された各フォークに適用されることを確認してください。 時には、活発にフォークされているリポジトリ全体で著作権の侵害を主張することもあるでしょう。 あなたが通知を送信した時点で、そのリポジトリの既存フォーク全体を指定して著作権を侵害していると申し立てた場合、通知を処理する際に、そのネットワークにあるすべてのフォークに対して、有効な請求を適用します。 新しく作成されたフォークすべてに同じコンテンツが含まれる可能性を考慮して、これを行います。 さらに、著作権侵害の疑いがあるコンテンツを含むとして報告されたネットワークが 100 リポジトリを超え、そのすべてを確認することが困難である際、通知の中であなたが次のように記載している場合にはネットワーク全体の無効化を検討します。「サンプルとして十分な数のフォークを確認した結果、私はこのフォークのすべてまたは大部分が、親リポジトリと同程度に著作権を侵害しているものと信じています。(Based on the representative number of forks you have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository.)」 あなたの宣誓は、この申し立てに対して適用されます。 +3. **Identify the material that you allege is infringing the copyrighted work listed in item #2, above.** It is important to be as specific as possible in your identification. This identification needs to be reasonably sufficient to permit GitHub to locate the material. At a minimum, this means that you should include the URL to the material allegedly infringing your copyright. If you allege that less than a whole repository infringes, identify the specific file(s) or line numbers within a file that you allege infringe. If you allege that all of the content at a URL infringes, please be explicit about that as well. + - Please note that GitHub will *not* automatically disable [forks](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) when disabling a parent repository. If you have investigated and analyzed the forks of a repository and believe that they are also infringing, please explicitly identify each allegedly infringing fork. Please also confirm that you have investigated each individual case and that your sworn statements apply to each identified fork. In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks you have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -4. **著作権侵害を是正するために、影響を受けるユーザが何をする必要があるかを説明しなければなりません。**繰り返しになりますが、具体性は重要です。 当社があなたの苦情をユーザに伝える際、この情報があることで残りのコンテンツが無効にされないようにするためにユーザが何をする必要があるかがわかります。 ユーザは帰属表示を追加するだけでいいのか、 コード内の特定の行、またはファイル全体を削除する必要があるのか。 もちろん、ユーザのコンテンツ全体が著作権を侵害している場合は、コンテンツをすべて削除する以外にユーザに選択肢はありません。 そのような場合は、やはりそれを明示してください。 +4. **Explain what the affected user would need to do in order to remedy the infringement.** Again, specificity is important. When we pass your complaint along to the user, this will tell them what they need to do in order to avoid having the rest of their content disabled. Does the user just need to add a statement of attribution? Do they need to delete certain lines within their code, or entire files? Of course, we understand that in some cases, all of a user's content may be alleged to infringe and there's nothing they could do short of deleting it all. If that's the case, please make that clear as well. -5. **あなたの連絡先情報を提供しなければなりません。**メールアドレス、名前、電話番号、住所を記載してください。 +5. **Provide your contact information.** Include your email address, name, telephone number and physical address. -6. **著作権侵害の疑いがある人の連絡先情報を知っている場合は、それを提供しなければなりません。**通常、この条件は、著作権を侵害しているとされるコンテンツに関連付けられた GitHub ユーザ名を提供することで満たされます。 しかし、著作権侵害の疑いがある人について他にも知っていることがある場合もあるでしょう。 そのような場合は、その情報を当社に伝えてください。 +6. **Provide contact information, if you know it, for the alleged infringer.** Usually this will be satisfied by providing the GitHub username associated with the allegedly infringing content. But there may be cases where you have additional knowledge about the alleged infringer. If so, please share that information with us. -7. **"I have a good faith belief that use of the copyrighted materials described above on the infringing web pages is not authorized by the copyright owner, or its agent, or the law. I have taken fair use into consideration."(私は、著作権所有者、その代理人、または法律により、著作権を侵害するウェブページで上記の著作物の使用が許可されていないことを確信しています。フェアユースの可能性も検討しましたが、フェアユースには該当しません。) という文言を含んでいなければなりません。** +7. **Include the following statement: "I have a good faith belief that use of the copyrighted materials described above on the infringing web pages is not authorized by the copyright owner, or its agent, or the law. I have taken fair use into consideration."** -8. **"I swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright owner, or am authorized to act on behalf of the owner, of an exclusive right that is allegedly infringed."(私は、偽証罪の罰則に基づき、この通知の情報は正確であり、私が侵害が申し立てられる排他的権利の著作権所有者であるか、所有者に代わって行動することが認められている者であることを誓います。)という文言も含んでいなければなりません。** +8. **Also include the following statement: "I swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright owner, or am authorized to act on behalf of the owner, of an exclusive right that is allegedly infringed."** -9. **物理的または電子的な署名を含めてください。** +9. **Include your physical or electronic signature.** -## 反迂回技術に関する苦情 +## Complaints about Anti-Circumvention Technology -著作権法は、著作権で保護されている著作物へのアクセスを効果的に制御する技術的手段の迂回も禁止しています。 GitHub でホストされているコンテンツがこの禁止事項に違反すると思われる場合は、{% data variables.contact.contact_dmca %} からレポートを送信してください。 迂回に関する申し立てには、訴えるプロジェクトが備える技術的手段、および迂回の方法について、以下を詳述する必要があります。 特に GitHub への通知には、以下を説明する詳細な文章を記載する必要があります。 -1. 技術的手段 -2. 用いられている技術的手段が著作権で保護されたものへのアクセスを効果的に制限する方法 -3. 訴えるプロジェクトが、前述の技術的保護措置をどのように迂回するよう設計されているか +The Copyright Act also prohibits the circumvention of technological measures that effectively control access to works protected by copyright. If you believe that content hosted on GitHub violates this prohibition, please send us a report through our {% data variables.contact.contact_dmca %}. A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -## 苦情の提出方法 +## How to Submit Your Complaint -{% data variables.contact.contact_dmca %} で情報を入力し、すべての質問に答えることで、最も早く回答を得ることができます。 +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -また、<copyright@github.com> にメール通知を送信することもできます。 必要に応じて添付ファイルを含めることもできますが、メッセージの本文には平文版の文書も含めてください。 +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -通知を郵送する必要がある場合は、それも可能ですが、通知の受け取りと応答には*相当な*時間がかかります。 当社は、平文のメールで作られた通知の方が、PDF ファイルが添付されている場合や郵送の場合よりもずっと早く回答することができます。 それでも通知を郵送する場合は、当社の住所は次のとおりです。 +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc diff --git a/translations/ja-JP/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md b/translations/ja-JP/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md index 91f8daddbf..d78d303584 100644 --- a/translations/ja-JP/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md +++ b/translations/ja-JP/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md @@ -1,7 +1,7 @@ --- -title: ユーザデータの法的リクエストに関するガイドライン +title: Guidelines for Legal Requests of User Data redirect_from: - - /law-enforcement-guidelines/ + - /law-enforcement-guidelines - /articles/guidelines-for-legal-requests-of-user-data versions: fpt: '*' @@ -10,185 +10,241 @@ topics: - Legal --- -ここは、GitHub にホストされているユーザコンテンツを調査する法執行官の方や、 当社が法執行機関とどのような情報をどのような状況で共有するのかを知りたいとお考えの方に ご覧いただきたいページです。 +Are you a law enforcement officer conducting an investigation that may involve user content hosted on GitHub? +Or maybe you're a privacy-conscious person who would like to know what information we share with law enforcement and under what circumstances. +Either way, you're on the right page. -このガイドラインでは、GitHub の簡単な背景、当社が保有しているデータの種類、当社が個人的なユーザ情報を開示する条件について説明します。 詳細に入る前に、皆様が関心をお持ちになるかもしれない大切なことを以下に述べておきます。 +In these guidelines, we provide a little background about what GitHub is, the types of data we have, and the conditions under which we will disclose private user information. +Before we get into the details, however, here are a few important details you may want to know: -- 法律または裁判所命令により禁止されていない限り、アカウント情報の要求がある場合は当社はその旨を[**影響を受けるユーザに通知**](#we-will-notify-any-affected-account-owners)します。 -- [有効な裁判所命令または捜査令状](#with-a-court-order-or-a-search-warrant)がない限り、当社は IP アドレスログなどの**位置追跡データ**を開示しません。 -- 有効な[検索令状](#only-with-a-search-warrant)がない限り、当社はプライベートリポジトリのコンテンツを含む**個人的なユーザコンテンツ**を開示しません。 +- We will [**notify affected users**](#we-will-notify-any-affected-account-owners) about any requests for their account information, unless prohibited from doing so by law or court order. +- We will not disclose **location-tracking data**, such as IP address logs, without a [valid court order or search warrant](#with-a-court-order-or-a-search-warrant). +- We will not disclose any **private user content**, including the contents of private repositories, without a valid [search warrant](#only-with-a-search-warrant). -## 本ガイドラインについて +## About these guidelines -ソフトウェアプロジェクトやコードは、多くの場合、最も貴重なビジネス資産または個人資産の一部であり、その取り扱いについて、当社はユーザから信頼されています。 その信頼を裏切らない、つまり、ユーザデータを安心、安全、プライベートに保つことは当社にとって極めて重要です。 +Our users trust us with their software projects and code—often some of their most valuable business or personal assets. +Maintaining that trust is essential to us, which means keeping user data safe, secure, and private. -ほとんどのユーザは新しいビジネスを立ち上げたり、新しいテクノロジーを構築したり、または人類のために GitHub のサービスを使用していますが、世界中に何百万人ものユーザがいる中で、悪意を持つ者が存在することも否めません。 そのような場合、私たちは、公衆を保護するという正当な利益に取り組む法執行機関を支援したいと考えています。 +While the overwhelming majority of our users use GitHub's services to create new businesses, build new technologies, and for the general betterment of humankind, we recognize that with millions of users spread all over the world, there are bound to be a few bad apples in the bunch. +In those cases, we want to help law enforcement serve their legitimate interest in protecting the public. -当社は、法執行機関の担当者にガイドラインを提供することで、ユーザのプライバシーと正義というしばしば競合する利害のバランスを取りたいと考えています。 このガイドラインが双方の期待値の設定に役立つと同時に、GitHub の内部プロセスに透明性をもたらすことを願っています。 ユーザの皆様には、当社が個人情報を大切にし、それを保護するために何を行っているのかを認識していただきたく存じます。 少なくとも適切な法的要件が満たされない限り、当社がデータを第三者に明け渡すことはありません。 同様に法執行官の方に対しては、より効率的なデータ要求を行い、調査の実施に必要な情報のみにターゲットを絞ることができるように GitHub のシステムについて理解していただきたいと考えています。 +By providing guidelines for law enforcement personnel, we hope to strike a balance between the often competing interests of user privacy and justice. +We hope these guidelines will help to set expectations on both sides, as well as to add transparency to GitHub's internal processes. +Our users should know that we value their private information and that we do what we can to protect it. +At a minimum, this means only releasing data to third-parties when the appropriate legal requirements have been satisfied. +By the same token, we also hope to educate law enforcement professionals about GitHub's systems so that they can more efficiently tailor their data requests and target just that information needed to conduct their investigation. -## GitHub の用語 +## GitHub terminology -データの開示を要求する前に、当社のシステムがどのように実装されているかを理解しておくことをお勧めします。 GitHub は、[Git バージョン管理システム](https://git-scm.com/video/what-is-version-control)を使用して、何百万ものデータリポジトリをホストしています。 GitHub のリポジトリ(公開されている場合も非公開の場合もあります)は、ソフトウェア開発プロジェクトで使用されるのが最も一般的ですが、あらゆる種類のコンテンツの作業にも使用されます。 +Before asking us to disclose data, it may be useful to understand how our system is implemented. +GitHub hosts millions of data repositories using the [Git version control system](https://git-scm.com/video/what-is-version-control). +Repositories on GitHub—which may be public or private—are most commonly used for software development projects, but are also often used to work on content of all kinds. -- [**ユーザ**](/articles/github-glossary#user) — ユーザは、当社のシステム内では個人の GitHub アカウントとして表されます。 各ユーザには個人プロフィールがあり、複数のリポジトリを所有できます。 ユーザは Organization を作成したり招待を受けて Organization に参加することで、別のユーザのリポジトリでコラボレーションすることができます。 +- [**Users**](/articles/github-glossary#user) — +Users are represented in our system as personal GitHub accounts. +Each user has a personal profile, and can own multiple repositories. +Users can create or be invited to join organizations or to collaborate on another user's repository. -- [**コラボレータ**](/articles/github-glossary#collaborator) — コラボレータとは、コントリビューションのためにリポジトリ所有者から招待されたリポジトリへの読み取りおよび書き込みアクセス権を持つユーザです。 +- [**Collaborators**](/articles/github-glossary#collaborator) — +A collaborator is a user with read and write access to a repository who has been invited to contribute by the repository owner. -- [**Organization**](/articles/github-glossary#organization) — Organization は、通常、ビジネスやプロジェクトなどの現実の組織を反映する 2 人以上のユーザのグループです。 Organization はユーザによって管理され、リポジトリとユーザのチームの両方を含めることができます。 +- [**Organizations**](/articles/github-glossary#organization) — +Organizations are a group of two or more users that typically mirror real-world organizations, such as businesses or projects. +They are administered by users and can contain both repositories and teams of users. -- [**リポジトリ**](/articles/github-glossary#repository) — リポジトリは、GitHub の最も基本的な要素の 1 つです。 プロジェクトのフォルダと考えればいいでしょう。 リポジトリ 1 つに (ドキュメントを含む) すべてのプロジェクトファイルが含まれ、各ファイルのリビジョン履歴が格納されます。 リポジトリには複数のコラボレータが参加可能で、管理者の裁量により、公開される場合とされない場合があります。 +- [**Repositories**](/articles/github-glossary#repository) — +A repository is one of the most basic GitHub elements. +They may be easiest to imagine as a project's folder. +A repository contains all of the project files (including documentation), and stores each file's revision history. +Repositories can have multiple collaborators and, at its administrators' discretion, may be publicly viewable or not. -- [**Pages**](/articles/what-is-github-pages) — GitHub Pages は GitHub が無料でホストする公開ウェブページで、ユーザはリポジトリに保存されたコードを使用して簡単に公開できます。 ユーザまたは Organization に GitHub Pages がある場合、通常は `https://username.github.io` などの URL で見つけることができます。または、ウェブページが独自のカスタムドメイン名にマップされている場合もあります。 +- [**Pages**](/articles/what-is-github-pages) — +GitHub Pages are public webpages freely hosted by GitHub that users can easily publish through code stored in their repositories. +If a user or organization has a GitHub Page, it can usually be found at a URL such as `https://username.github.io` or they may have the webpage mapped to their own custom domain name. -- [**Gist**](/articles/creating-gists) — Gist は、ユーザがアイデアを保存したり、友人と共有したりするために使用できるソースコードまたはその他のテキストの断片です。 通常の GitHub リポジトリと同様に、Gist は Git で作成されるため、自動的にバージョン管理され、フォークおよびダウンロードが可能です。 Gist は、パブリックにすることもシークレット(既知の URL からのみアクセス可能)にすることもできます。 ただし、パブリック Gist をシークレット Gist に変換することはできません。 +- [**Gists**](/articles/creating-gists) — +Gists are snippets of source code or other text that users can use to store ideas or share with friends. +Like regular GitHub repositories, Gists are created with Git, so they are automatically versioned, forkable and downloadable. +Gists can either be public or secret (accessible only through a known URL). Public Gists cannot be converted into secret Gists. -## GitHub.com のユーザデータ +## User data on GitHub.com -ここでは、当社が管理している GitHub のユーザとプロジェクトに関する各種データについて説明します。 +Here is a non-exhaustive list of the kinds of data we maintain about users and projects on GitHub. - <a name="public-account-data"></a> -**パブリックアカウントデータ** — GitHub には、ユーザとそのリポジトリに関するさまざまな情報が公開されています。 ユーザプロフィールは、`https://github.com/username` などの URL にあります。 ユーザプロフィールには、ユーザがいつアカウントを作成したかに関する情報や、GitHub.com での公開アクティビティやソーシャルインタラクションが表示されます。 パブリックユーザプロフィールには、ユーザがパブリックに共有すること選択したその他の情報が含まれる場合もあります。 すべてのユーザパブリックプロフィールには、以下が表示されます。 - - ユーザ名 - - ユーザが Star を付けたリポジトリ - - ユーザがフォローする他の GitHub ユーザ - - その人をフォローしているユーザ +**Public account data** — +There is a variety of information publicly available on GitHub about users and their repositories. +User profiles can be found at a URL such as `https://github.com/username`. +User profiles display information about when the user created their account as well their public activity on GitHub.com and social interactions. +Public user profiles can also include additional information that a user may have chosen to share publicly. +All user public profiles display: + - Username + - The repositories that the user has starred + - The other GitHub users the user follows + - The users that follow them - オプションで、ユーザは次の情報をパブリックに共有することもできます。 - - 本名 - - アバター - - 所属先の会社 - - 所在地 - - 公開メールアドレス - - 個人的なウェブページ - - ユーザがメンバーになっている Organization(*Organization またはユーザの環境設定によります*) + Optionally, a user may also choose to share the following information publicly: + - Their real name + - An avatar + - An affiliated company + - Their location + - A public email address + - Their personal web page + - Organizations to which the user is a member (*depending on either the organizations' or the users' preferences*) - <a name="private-account-data"></a> -**プライベートアカウントデータ** — GitHub は、[プライバシーポリシー](/articles/github-privacy-statement)に記載されているように、ユーザに関する特定のプライベート情報も収集および管理します。 これには以下が含まれます。 - - プライベートメールアドレス - - 支払い情報 - - セキュリティアクセスログ - - プライベートリポジトリとのやり取りに関するデータ +**Private account data** — +GitHub also collects and maintains certain private information about users as outlined in our [Privacy Policy](/articles/github-privacy-statement). +This may include: + - Private email addresses + - Payment details + - Security access logs + - Data about interactions with private repositories - GitHub が収集するプライベートアカウント情報の種類を確認するには、{% data reusables.user_settings.personal_dashboard %} にアクセスして、左側のメニューバーのセクションを参照してください。 + To get a sense of the type of private account information that GitHub collects, you can visit your {% data reusables.user_settings.personal_dashboard %} and browse through the sections in the left-hand menubar. - <a name="organization-account-data"></a> -**Organization アカウントデータ** — Organization、その管理ユーザー、およびリポジトリに関する情報は、GitHub で公開されています。 Organization プロフィールは、`https://github.com/organization` などの URL にあります。 パブリック Organization プロフィールには、コードオーナーがパブリックに共有することを選択したその他の情報が含まれる場合もあります。 すべての Organization パブリックプロフィールには、以下が表示されます。 - - Organization 名 - - コードオーナーが Star を付けたリポジトリ - - Organization のコードオーナーであるすべての GitHub ユーザ +**Organization account data** — +Information about organizations, their administrative users and repositories is publicly available on GitHub. +Organization profiles can be found at a URL such as `https://github.com/organization`. +Public organization profiles can also include additional information that the owners have chosen to share publicly. +All organization public profiles display: + - The organization name + - The repositories that the owners have starred + - All GitHub users that are owners of the organization - オプションで、管理ユーザは次の情報をパブリックに共有することもできます。 - - アバター - - 所属先の会社 - - 所在地 - - 直属のメンバーとチーム - - コラボレータ + Optionally, administrative users may also choose to share the following information publicly: + - An avatar + - An affiliated company + - Their location + - Direct Members and Teams + - Collaborators - <a name="public-repository-data"></a> -**パブリックリポジトリデータ** — GitHub は、何百万ものパブリックなオープンソースソフトウェアプロジェクトの拠点です。 ほぼすべてのパブリックリポジトリ(たとえば、[Atom プロジェクト](https://github.com/atom/atom))を参照して、GitHub がリポジトリについて収集および管理する情報を確認できます。 これには以下が含まれます。 +**Public repository data** — +GitHub is home to millions of public, open-source software projects. +You can browse almost any public repository (for example, the [Atom Project](https://github.com/atom/atom)) to get a sense for the information that GitHub collects and maintains about repositories. +This can include: - - コードそのもの - - コードの以前のバージョン - - プロジェクトの安定リリースバージョン - - コラボレータ、コントリビューター、リポジトリメンバーに関する情報 - - コミット、ブランチ、プッシュ、プル、フォーク、クローンなどの Git 操作のログ - - プルリクエストまたはコミットに関するコメントなど、Git 操作に関連する会話 - - Issue や Wiki ページなどのプロジェクト文書 - - プロジェクトへのコントリビューションとコントリビューターのネットワークを示す、統計とグラフ + - The code itself + - Previous versions of the code + - Stable release versions of the project + - Information about collaborators, contributors and repository members + - Logs of Git operations such as commits, branching, pushing, pulling, forking and cloning + - Conversations related to Git operations such as comments on pull requests or commits + - Project documentation such as Issues and Wiki pages + - Statistics and graphs showing contributions to the project and the network of contributors - <a name="private-repository-data"></a> -**プライベートリポジトリデータ** — GitHub は、パブリックリポジトリと同じタイプのデータをプライベートリポジトリとして収集および管理しますが、プライベートリポジトリデータにアクセスできるのは、招待されたユーザのみです。 +**Private repository data** — +GitHub collects and maintains the same type of data for private repositories that can be seen for public repositories, except only specifically invited users may access private repository data. - <a name="other-data"></a> -**その他のデータ** — さらに GitHub は、ページ訪問などの分析データや、ユーザが随時提供する情報(サポートチームとの通信内容、アンケート情報、サイト登録など)を収集します。 +**Other data** — +Additionally, GitHub collects analytics data such as page visits and information occasionally volunteered by our users (such as communications with our support team, survey information and/or site registrations). -## 影響を受けるアカウントオーナーに対する通知 +## We will notify any affected account owners -当社は、法律または裁判所命令により禁止されている場合を除き、アカウントまたはリポジトリに関する保留中の要求についてユーザに通知することを方針としています。 必要に応じて法的手続きに異議を申し立てることができるよう、ユーザ情報を開示する前に、私たちは合理的な努力を払って影響を受けるアカウントオーナーに通知します。具体的には、確認済みのメールアドレスにメッセージを送信し、召喚状、裁判所命令、または令状の写しを提供します。 In (rare) exigent circumstances, we may delay notification if we determine delay is necessary to prevent death or serious harm or due to an ongoing investigation. +It is our policy to notify users about any pending requests regarding their accounts or repositories, unless we are prohibited by law or court order from doing so. Before disclosing user information, we will make a reasonable effort to notify any affected account owner(s) by sending a message to their verified email address providing them with a copy of the subpoena, court order, or warrant so that they can have an opportunity to challenge the legal process if they wish. In (rare) exigent circumstances, we may delay notification if we determine delay is necessary to prevent death or serious harm or due to an ongoing investigation. -## 非公開情報の開示 +## Disclosure of non-public information -当社は、ユーザの同意がある場合、または有効な召喚状、民事捜査要求、裁判所命令、捜査令状、もしくはその他の同様の有効な法的手続きを受け取った場合にのみ、民事または刑事捜査に関連して非公開ユーザ情報を開示することをポリシーとしています。 特定の緊急事態(下記参照)においては、当社は限られた情報を共有する場合がありますが、あくまでも状況の性質に応じて対応し、それを超えるものについては法的手続きを要求します。 GitHub は、非公開情報の要求に反対する権利を留保します。 GitHub は、合法的な要求に応じて非公開情報を提出することに同意した場合、要求された情報の合理的な調査を行います。 当社が提出に応じる情報の種類は次のとおりですが、これは当社が対応する法的手続きの種類次第です。 +It is our policy to disclose non-public user information in connection with a civil or criminal investigation only with user consent or upon receipt of a valid subpoena, civil investigative demand, court order, search warrant, or other similar valid legal process. In certain exigent circumstances (see below), we also may share limited information but only corresponding to the nature of the circumstances, and would require legal process for anything beyond that. +GitHub reserves the right to object to any requests for non-public information. +Where GitHub agrees to produce non-public information in response to a lawful request, we will conduct a reasonable search for the requested information. +Here are the kinds of information we will agree to produce, depending on the kind of legal process we are served with: - <a name="with-user-consent"></a> -**ユーザの同意がある場合** — GitHub は、要求を受けた場合、ユーザの身元確認後、ユーザ(Organization アカウントの場合はコードオーナー)に直接、またはユーザの書面による同意がある場合は指定された第三者に、プライベートアカウント情報を提供します。 +**With user consent** — +GitHub will provide private account information, if requested, directly to the user (or an owner, in the case of an organization account), or to a designated third party with the user's written consent once GitHub is satisfied that the user has verified his or her identity. - <a name="with-a-subpoena"></a> -**召喚状がある場合** — 有効な召喚状、民事捜査要求、または正式な刑事もしくは民事捜査に関連して発行された同様の法的手続きによって求められた場合、当社は、以下を含む特定の非公開アカウント情報を提供する場合があります。 +**With a subpoena** — +If served with a valid subpoena, civil investigative demand, or similar legal process issued in connection with an official criminal or civil investigation, we can provide certain non-public account information, which may include: - - アカウントに関連付けられた名前 - - アカウントに関連付けられたメールアドレス - - 支払い情報 - - 登録日と解約日 - - アカウント登録時の IP アドレスと日時 - - 調査に関連する特定の時間またはイベント時にアカウントにアクセスするために使用された IP アドレス + - Name(s) associated with the account + - Email address(es) associated with the account + - Billing information + - Registration date and termination date + - IP address, date, and time at the time of account registration + - IP address(es) used to access the account at a specified time or event relevant to the investigation -Organization アカウントの場合、当社はアカウントオーナーの名前およびメールアドレス、並びに Organization アカウント作成時の日付と IP アドレスを提供する場合があります。 特定のユーザに確認要求を行うことなく、当社が Organization アカウントの他のメンバーもしくはコントリビューター(存在する場合)に関する情報、または特定されたアカウントオーナーに関する他の情報を提出することはありません。 +In the case of organization accounts, we can provide the name(s) and email address(es) of the account owner(s) as well as the date and IP address at the time of creation of the organization account. We will not produce information about other members or contributors, if any, to the organization account or any additional information regarding the identified account owner(s) without a follow-up request for those specific users. -なお、対象となる情報はケースバイケースで異なりますのでご注意ください。 ユーザの任意で提供される情報もあります。 また、当社が情報を収集または保持していない場合もあります。 +Please note that the information available will vary from case to case. Some of the information is optional for users to provide. In other cases, we may not have collected or retained the information. - <a name="with-a-court-order-or-a-search-warrant"></a> -**裁判所命令*または*捜査令状**がある場合 — 当社は、(i) 求められている情報が進行中の犯罪捜査に関連し、重要であると信じる合理的な根拠があることを示す具体的かつ明確な事実を示した、合衆国法律集第 18 編 第 2703 条 (d) に基づいて発行された裁判所命令、または (ii) 連邦刑事訴訟規則または同等の州令状手続きに記載されている手続きの下で発行された、推定原因を示す捜査令状のいずれかで強制されない限り、アカウントアクセスログを開示しません。 上記の非公開ユーザアカウント情報に加えて、当社は裁判所命令または捜査令状に応じてアカウントアクセスログを提供する場合があります。これには以下が含まれます。 +**With a court order *or* a search warrant** — We will not disclose account access logs unless compelled to do so by either +(i) a court order issued under 18 U.S.C. Section 2703(d), upon a showing of specific and articulable facts showing that there are reasonable grounds to believe that the information sought is relevant and material to an ongoing criminal investigation; or +(ii) a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures, upon a showing of probable cause. +In addition to the non-public user account information listed above, we can provide account access logs in response to a court order or search warrant, which may include: - - 一定期間にわたるユーザの動きを明らかにするあらゆるログ - - アカウントまたはプライベートリポジトリの設定(たとえば、どのユーザが特定の権限を持つかなど) - - 閲覧履歴などのユーザまたは IP 固有の分析データ - - アカウント作成以外または特定の日時のセキュリティアクセスログ + - Any logs which would reveal a user's movements over a period of time + - Account or private repository settings (for example, which users have certain permissions, etc.) + - User- or IP-specific analytic data such as browsing history + - Security access logs other than account creation or for a specific time and date - <a name="only-with-a-search-warrant"></a> -**捜索令状がある場合のみ** — 連邦刑事訴訟規則または同等の州令状手続きに記載されている手続きの下で発行された、推定原因を示す捜査令状に基づいて強制されない限り、当社はユーザアカウントの個人的なコンテンツを開示しません。 上記の非公開ユーザアカウント情報とアカウントアクセスログに加えて、当社は検索令状に応じて個人的なユーザアカウントのコンテンツも提供します。これには以下が含まれます。 +**Only with a search warrant** — +We will not disclose the private contents of any user account unless compelled to do so under a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures upon a showing of probable cause. +In addition to the non-public user account information and account access logs mentioned above, we will also provide private user account contents in response to a search warrant, which may include: - - シークレット Gist のコンテンツ - - プライベートリポジトリのソースコードまたはその他のコンテンツ - - プライベートリポジトリのコントリビューションとコラボレーションの記録 - - プライベートリポジトリのコミュニケーションまたはドキュメント(Issue や Wiki など) - - 認証または暗号化に使用されるセキュリティキー + - Contents of secret Gists + - Source code or other content in private repositories + - Contribution and collaboration records for private repositories + - Communications or documentation (such as Issues or Wikis) in private repositories + - Any security keys used for authentication or encryption - <a name="in-exigent-circumstances"></a> -**緊急事態** — 特定の緊急事態において情報の要求を受け取った場合(人の死亡または重傷の危険を伴う緊急事態を防ぐために開示が必要であると考える場合)、当社は、法執行機関が緊急事態に対処するために必要だと当社が判断する限られた情報を開示する場合があります。 その範囲を超える情報については、上記のとおり、当社は召喚状、捜査令状、または裁判所命令を求めます。 たとえば、私たちは、捜査令状なしにプライベートリポジトリのコンテンツを開示しません。 当社は、情報を開示する前に、要求が法執行機関からのものであること、当局が緊急事態を要約した公式通知を送付したこと、および要求された情報が緊急事態の対応にどのように役立つかを確認します。 +**Under exigent circumstances** — +If we receive a request for information under certain exigent circumstances (where we believe the disclosure is necessary to prevent an emergency involving danger of death or serious physical injury to a person), we may disclose limited information that we determine necessary to enable law enforcement to address the emergency. For any information beyond that, we would require a subpoena, search warrant, or court order, as described above. For example, we will not disclose contents of private repositories without a search warrant. Before disclosing information, we confirm that the request came from a law enforcement agency, an authority sent an official notice summarizing the emergency, and how the information requested will assist in addressing the emergency. -## 費用の払い戻し +## Cost reimbursement -州法および連邦法のもと、GitHubは召喚令状、裁判所の命令、捜索令状などの有効な法的要求を順守することに関する費用の払い戻しを求めることができます。 当社は費用の一部を回収するためにのみ請求を行います。この払い戻しは、当社が法的命令を順守するために負担する費用の一部を補うものに過ぎません。 +Under state and federal law, GitHub can seek reimbursement for costs associated with compliance with a valid legal demand, such as a subpoena, court order or search warrant. We only charge to recover some costs, and these reimbursements cover only a portion of the costs we actually incur to comply with legal orders. -緊急事態やその他差し迫った状況においては請求を行いませんが、その他の法的要求については、別途法的に求められていない限り、以下の明細に従って払い戻しを求めます。 +While we do not charge in emergency situations or in other exigent circumstances, we seek reimbursement for all other legal requests in accordance with the following schedule, unless otherwise required by law: -- 25 個までの識別子の初期調査: 無料 -- 5 アカウントまでの加入者情報/データの提供: 無料 -- 5 アカウントを超える加入者情報/データの提供: 1 アカウントあたり 20 ドル -- 二次調査: 1 件につき 10 ドル +- Initial search of up to 25 identifiers: Free +- Production of subscriber information/data for up to 5 accounts: Free +- Production of subscriber information/data for more than 5 accounts: $20 per account +- Secondary searches: $10 per search -## データ保存 +## Data preservation -正式な犯罪捜査に関連する米国の 法執行機関から正式な要求があり、裁判所命令の発行またはその他の手続きが保留されている間、当社はアカウントの記録を最大 90 日間保存する措置を講じます。 +We will take steps to preserve account records for up to 90 days upon formal request from U.S. law enforcement in connection with official criminal investigations, and pending the issuance of a court order or other process. -## 要求の提出 +## Submitting requests -要求は以下までお送りください。 +Please serve requests to: ``` -GitHub, Inc. c/o Corporation Service Company +GitHub, Inc. +c/o Corporation Service Company 2710 Gateway Oaks Drive, Suite 150N Sacramento, CA 95833-3505 ``` -legal@support.github.com に CC を送信することもできます。 +Courtesy copies may be emailed to legal@support.github.com. -要求を送る際は、次の情報を含めて、できるだけ具体的かつ範囲を絞った内容にしてください。 +Please make your requests as specific and narrow as possible, including the following information: -- 情報の要求を発行する機関に関する完全な情報 -- 担当者の名前とバッジ/ID -- 正式なメールアドレスと連絡先電話番号 -- 対象のユーザ、Organization、リポジトリ名 -- 対象のページ、Gist、またはファイルの URL -- 必要な記録の種類の説明 +- Full information about authority issuing the request for information +- The name and badge/ID of the responsible agent +- An official email address and contact phone number +- The user, organization, repository name(s) of interest +- The URLs of any pages, gists or files of interest +- The description of the types of records you need -要求の確認には 2 週間以上の時間が必要になりますのでご了承ください。 +Please allow at least two weeks for us to be able to look into your request. -## 外国の法執行機関からの要求 +## Requests from foreign law enforcement -カリフォルニア州に本拠を置く米国企業である GitHub には、外国当局が発行した法的手続きに応じて、外国政府にデータを提供する義務はありません。 GitHub に情報を要求する外国の法執行官は、米司法省刑事局の国際部に連絡する必要があります。 GitHub は、刑事共助条約(「MLAT」)または証人尋問要求書を経由して、米国の裁判所を介して発行された要求に迅速に対応します。 +As a United States company based in California, GitHub is not required to provide data to foreign governments in response to legal process issued by foreign authorities. +Foreign law enforcement officials wishing to request information from GitHub should contact the United States Department of Justice Criminal Division's Office of International Affairs. +GitHub will promptly respond to requests that are issued via U.S. court by way of a mutual legal assistance treaty (“MLAT”) or letter rogatory. -## 質問 +## Questions -質問やコメント、提案などがございましたら、 {% data variables.contact.contact_support %} にお問い合わせください。 +Do you have other questions, comments or suggestions? Please contact {% data variables.contact.contact_support %}. diff --git a/translations/ja-JP/content/github/site-policy/index.md b/translations/ja-JP/content/github/site-policy/index.md index bc074d2fe6..1496ee8035 100644 --- a/translations/ja-JP/content/github/site-policy/index.md +++ b/translations/ja-JP/content/github/site-policy/index.md @@ -1,7 +1,7 @@ --- -title: サイトポリシー +title: Site policy redirect_from: - - /categories/61/articles/ + - /categories/61/articles - /categories/site-policy versions: fpt: '*' diff --git a/translations/ja-JP/content/github/working-with-github-support/github-enterprise-cloud-support.md b/translations/ja-JP/content/github/working-with-github-support/github-enterprise-cloud-support.md index 7c198a59d3..972f708b78 100644 --- a/translations/ja-JP/content/github/working-with-github-support/github-enterprise-cloud-support.md +++ b/translations/ja-JP/content/github/working-with-github-support/github-enterprise-cloud-support.md @@ -1,8 +1,8 @@ --- title: GitHub Enterprise Cloud support redirect_from: - - /articles/business-plan-support/ - - /articles/github-business-cloud-support/ + - /articles/business-plan-support + - /articles/github-business-cloud-support - /articles/github-enterprise-cloud-support intro: '{% data variables.product.prodname_ghe_cloud %} includes a target eight-hour response time for priority support requests, Monday to Friday in your local time zone.' versions: diff --git a/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md b/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md index 15a2177662..d52fb36e48 100644 --- a/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md +++ b/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md @@ -3,9 +3,9 @@ title: Creating gists intro: 'You can create two kinds of gists: {% ifversion ghae %}internal{% else %}public{% endif %} and secret. Create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist if you''re ready to share your ideas with {% ifversion ghae %}enterprise members{% else %}the world{% endif %} or a secret gist if you''re not.' permissions: '{% data reusables.enterprise-accounts.emu-permission-gist %}' redirect_from: - - /articles/about-gists/ - - /articles/cannot-delete-an-anonymous-gist/ - - /articles/deleting-an-anonymous-gist/ + - /articles/about-gists + - /articles/cannot-delete-an-anonymous-gist + - /articles/deleting-an-anonymous-gist - /articles/creating-gists - /github/writing-on-github/creating-gists versions: diff --git a/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md b/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md index c927d80ec1..cbc1fe7c11 100644 --- a/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md +++ b/translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md @@ -1,9 +1,9 @@ --- -title: Gist でコンテンツを編集・共有する +title: Editing and sharing content with gists intro: '' redirect_from: - - /categories/23/articles/ - - /categories/gists/ + - /categories/23/articles + - /categories/gists - /articles/editing-and-sharing-content-with-gists versions: fpt: '*' diff --git a/translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md b/translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md index dad40eaeb1..568196ac4e 100644 --- a/translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md +++ b/translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md @@ -1,10 +1,10 @@ --- -title: GitHub で書き、フォーマットしてみる +title: Getting started with writing and formatting on GitHub redirect_from: - - /articles/markdown-basics/ - - /articles/things-you-can-do-in-a-text-area-on-github/ + - /articles/markdown-basics + - /articles/things-you-can-do-in-a-text-area-on-github - /articles/getting-started-with-writing-and-formatting-on-github -intro: GitHub の Issue、プルリクエスト、およびウィキでは、シンプルな機能を使用してコメントをフォーマットしたり他のユーザとやりとりしたりできます。 +intro: 'You can use simple features to format your comments and interact with others in issues, pull requests, and wikis on GitHub.' versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/github/writing-on-github/index.md b/translations/ja-JP/content/github/writing-on-github/index.md index 3c391b3a8a..e53ef2f32b 100644 --- a/translations/ja-JP/content/github/writing-on-github/index.md +++ b/translations/ja-JP/content/github/writing-on-github/index.md @@ -1,9 +1,9 @@ --- -title: GitHub での執筆 +title: Writing on GitHub redirect_from: - - /categories/88/articles/ - - /articles/github-flavored-markdown/ - - /articles/writing-on-github/ + - /categories/88/articles + - /articles/github-flavored-markdown + - /articles/writing-on-github - /categories/writing-on-github intro: 'You can structure the information shared on {% data variables.product.product_name %} with various formatting options.' versions: diff --git a/translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md index 2464279e9e..5f8e3d33ce 100644 --- a/translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -3,7 +3,7 @@ title: Attaching files intro: You can convey information by attaching a variety of file types to your issues and pull requests. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/file-attachments-on-issues-and-pull-requests - - /articles/issue-attachments/ + - /articles/issue-attachments - /articles/file-attachments-on-issues-and-pull-requests - /github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests versions: diff --git a/translations/ja-JP/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md b/translations/ja-JP/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md index 56156c250a..45ee882eba 100644 --- a/translations/ja-JP/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md +++ b/translations/ja-JP/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md @@ -1,8 +1,8 @@ --- -title: 返信テンプレートを編集する -intro: 返信テンプレートのタイトルと本文を編集できます。 +title: Editing a saved reply +intro: You can edit the title and body of a saved reply. redirect_from: - - /articles/changing-a-saved-reply/ + - /articles/changing-a-saved-reply - /articles/editing-a-saved-reply - /github/writing-on-github/editing-a-saved-reply versions: @@ -11,16 +11,17 @@ versions: ghae: '*' ghec: '*' --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.saved_replies %} -3. [Saved replies] で、編集対象の返信テンプレートの隣にある {% octicon "pencil" aria-label="The pencil" %} をクリックします。 - ![返信テンプレートの編集](/assets/images/help/settings/saved-replies-edit-existing.png) -4. [Edit saved reply] で、返信テンプレートのタイトルと内容を編集できます。 ![タイトルと内容を編集](/assets/images/help/settings/saved-replies-edit-existing-content.png) -5. [**Update saved reply**] をクリックします。 ![返信テンプレートの更新](/assets/images/help/settings/saved-replies-save-edit.png) +3. Under "Saved replies", next to the saved reply you want to edit, click {% octicon "pencil" aria-label="The pencil" %}. +![Edit a saved reply](/assets/images/help/settings/saved-replies-edit-existing.png) +4. Under "Edit saved reply", you can edit the title and the content of the saved reply. +![Edit title and content](/assets/images/help/settings/saved-replies-edit-existing-content.png) +5. Click **Update saved reply**. +![Update saved reply](/assets/images/help/settings/saved-replies-save-edit.png) -## 参考リンク +## Further reading -- [返信テンプレートの作成](/articles/creating-a-saved-reply) -- [返信テンプレートの削除](/articles/deleting-a-saved-reply) -- 「[返信テンプレートを利用する](/articles/using-saved-replies)」 +- "[Creating a saved reply](/articles/creating-a-saved-reply)" +- "[Deleting a saved reply](/articles/deleting-a-saved-reply)" +- "[Using saved replies](/articles/using-saved-replies)" diff --git a/translations/ja-JP/content/graphql/reference/mutations.md b/translations/ja-JP/content/graphql/reference/mutations.md index 98b7fe091f..73f190ae96 100644 --- a/translations/ja-JP/content/graphql/reference/mutations.md +++ b/translations/ja-JP/content/graphql/reference/mutations.md @@ -1,5 +1,5 @@ --- -title: ミューテーション +title: Mutations redirect_from: - /v4/mutation - /v4/reference/mutation @@ -12,12 +12,11 @@ topics: - API --- -## ミューテーションについて +## About mutations -すべてのGraphQLスキーマは、クエリとミューテーションの両方についてルート型を持っています。 [ミューテーション型](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System)は、サーバー上のデータを変更するGraphQLの操作を定義します。 これは、`POST`、`PATCH`、`DELETE`といったHTTPのメソッドを実行するのに似ています。 +Every GraphQL schema has a root type for both queries and mutations. The [mutation type](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System) defines GraphQL operations that change data on the server. It is analogous to performing HTTP verbs such as `POST`, `PATCH`, and `DELETE`. -詳しい情報については「[ミューテーションについて](/graphql/guides/forming-calls-with-graphql#about-mutations)」を参照してください。 +For more information, see "[About mutations](/graphql/guides/forming-calls-with-graphql#about-mutations)." -{% for item in graphql.schemaForCurrentVersion.mutations %} - {% include graphql-mutation %} -{% endfor %} +<!-- this page is pre-rendered by scripts because it's too big to load dynamically --> +<!-- see lib/graphql/static/prerendered-mutations.json --> diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md index 23f1ee5dcd..d5073f08ca 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md @@ -1,6 +1,6 @@ --- -title: Organizationについて -intro: Organizationは、企業やオープンソースプロジェクトが多くのプロジェクトにわたって一度にコラボレーションできる共有アカウントです。 オーナーと管理者は、Organizationのデータとプロジェクトへのメンバーのアクセスを、洗練されたセキュリティ及び管理機能で管理できます。 +title: About organizations +intro: Organizations are shared accounts where businesses and open-source projects can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. redirect_from: - /articles/about-organizations - /github/setting-up-and-managing-organizations-and-teams/about-organizations @@ -14,25 +14,25 @@ topics: - Teams --- -{% data reusables.organizations.about-organizations %} +{% data reusables.organizations.about-organizations %} For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -{% data reusables.organizations.organizations_include %} +{% data reusables.organizations.organizations_include %} -{% data reusables.organizations.org-ownership-recommendation %}詳細は、「[Organization の所有権の継続性を管理する](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)」を参照してください。 +{% data reusables.organizations.org-ownership-recommendation %} For more information, see "[Maintaining ownership continuity for your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)." {% ifversion fpt or ghec %} -## Organization と Enterprise アカウント +## Organizations and enterprise accounts Enterprise accounts are a feature of {% data variables.product.prodname_ghe_cloud %} that allow owners to centrally manage policy and billing for multiple organizations. -enterprise アカウントに属する Organization では、支払いは enterprise アカウントのレベルで管理され、Organization のレベルでは支払い設定は利用できません。 Enterprise のオーナーは、Enterprise アカウントですべての Organization に対するポリシーを設定することも、Organization のオーナーに Organization のレベルでポリシーを設定することを許可することもできます。 Organization のオーナーは、Enterprise アカウントのレベルで Organization に強制された設定を変更することはできません。 Organization のポリシーや設定について質問がある場合は Enterprise アカウントのオーナーに問い合わせてください。 +For organizations that belong to an enterprise account, billing is managed at the enterprise account level, and billing settings are not available at the organization level. Enterprise owners can set policy for all organizations in the enterprise account or allow organization owners to set the policy at the organization level. Organization owners cannot change settings enforced for your organization at the enterprise account level. If you have questions about a policy or setting for your organization, contact the owner of your enterprise account. {% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/admin/overview/creating-an-enterprise-account){% ifversion ghec %}."{% else %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% endif %} {% data reusables.enterprise-accounts.invite-organization %} -## Organization の利用規約とデータ保護 +## Terms of service and data protection for organizations -会社、非営利団体、グループなどは、Organization として標準の利用規約あるいは企業向け利用規約に合意できます。 詳細は「[企業向け利用規約にアップグレードする](/articles/upgrading-to-the-corporate-terms-of-service)」を参照してください。 +An entity, such as a company, non-profit, or group, can agree to the Standard Terms of Service or the Corporate Terms of Service for their organization. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)." {% endif %} diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md index 71ab6d2f1f..1301ef95bc 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md @@ -1,8 +1,8 @@ --- -title: Organization のニュースフィードについて -intro: Organization のニュースフィードを使って、その Organization が所有しているリポジトリ上での最近のアクティビティを知ることができます。 +title: About your organization’s news feed +intro: You can use your organization's news feed to keep up with recent activity on repositories owned by that organization. redirect_from: - - /articles/news-feed/ + - /articles/news-feed - /articles/about-your-organization-s-news-feed - /articles/about-your-organizations-news-feed - /github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed @@ -14,15 +14,17 @@ versions: topics: - Organizations - Teams -shortTitle: Organizationニュースフィード +shortTitle: Organization news feed --- -Organization のニュースフィードは、その Organization が所有しているリポジトリ上での他の人々のアクティビティを知らせます。 Organization のニュースフィードを使って、誰かによる Issue あるいはプルリクエストのオープン、クローズ、マージや、ブランチの作成や削除、タグあるいはリリースの作成、Issue、プルリクエスト、コミットへのコメント、あるいは新しいコミットの {% data variables.product.product_name %}へのプッシュを知ることができます。 +An organization's news feed shows other people's activity on repositories owned by that organization. You can use your organization's news feed to see when someone opens, closes, or merges an issue or pull request, creates or deletes a branch, creates a tag or release, comments on an issue, pull request, or commit, or pushes new commits to {% data variables.product.product_name %}. -## Organization のニュースフィードへのアクセス +## Accessing your organization's news feed 1. {% data variables.product.signin_link %} to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}. -2. 自分の {% data reusables.user_settings.personal_dashboard %}を開きます。 -3. ページの左上隅にあるアカウントコンテキストスイッチャーをクリックします。 ![Enterprise のコンテキストスイッチャーボタン](/assets/images/help/organizations/account_context_switcher.png) -4. Select an organization from the drop-down menu.{% ifversion fpt or ghec %} ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} -![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} +2. Open your {% data reusables.user_settings.personal_dashboard %}. +3. Click the account context switcher in the upper-left corner of the page. + ![Context switcher button in Enterprise](/assets/images/help/organizations/account_context_switcher.png) +4. Select an organization from the drop-down menu.{% ifversion fpt or ghec %} + ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} + ![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md index 2c33ab8acd..373c0c390d 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md @@ -1,15 +1,15 @@ --- -title: Organization の設定へのアクセス +title: Accessing your organization's settings redirect_from: - - /articles/who-can-access-organization-billing-information-and-account-settings/ - - /articles/managing-the-organization-s-settings/ - - /articles/who-can-see-billing-information-account-settings/ - - /articles/who-can-see-billing-information-and-access-account-settings/ - - /articles/managing-an-organization-s-settings/ + - /articles/who-can-access-organization-billing-information-and-account-settings + - /articles/managing-the-organization-s-settings + - /articles/who-can-see-billing-information-account-settings + - /articles/who-can-see-billing-information-and-access-account-settings + - /articles/managing-an-organization-s-settings - /articles/accessing-your-organization-s-settings - /articles/accessing-your-organizations-settings - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings -intro: Organization アカウントの設定ページには、支払い、Team のメンバーシップ、リポジトリ設定など、アカウントを管理するいくつかの方法があります。 +intro: 'The organization account settings page provides several ways to manage the account, such as billing, team membership, and repository settings.' versions: fpt: '*' ghes: '*' @@ -18,14 +18,13 @@ versions: topics: - Organizations - Teams -shortTitle: Organization設定へのアクセス +shortTitle: Access organization settings --- - {% ifversion fpt or ghec %} {% tip %} -**ヒント:** Organization の支払い情報とアカウント設定を見て変更できるのは、Organization のオーナーと支払いマネージャーのみです。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Only organization owners and billing managers can see and change the billing information and account settings for an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/index.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/index.md index 2b4535b80e..bd2e17c6b1 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/index.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/index.md @@ -1,8 +1,8 @@ --- -title: Organization のグループでコラボレーションする -intro: グループの人々は、Organization のアカウントで、多くのプロジェクトをまたいで同時にコラボレーションできます。 +title: Collaborating with groups in organizations +intro: Groups of people can collaborate across many projects at the same time in organization accounts. redirect_from: - - /articles/creating-a-new-organization-account/ + - /articles/creating-a-new-organization-account - /articles/collaborating-with-groups-in-organizations - /github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations versions: @@ -21,6 +21,6 @@ children: - /customizing-your-organizations-profile - /about-your-organizations-news-feed - /viewing-insights-for-your-organization -shortTitle: グループとのコラボレーション +shortTitle: Collaborate with groups --- diff --git a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md index 843e19a60a..84fdefa98d 100644 --- a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md +++ b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md @@ -1,28 +1,26 @@ --- -title: 2 要素認証と SAML シングルサインオンについて -intro: Organization の管理者は、SAML シングルサインオンと 2 要素認証を共に有効化し、Organization のメンバーの認証方法を追加できます。 -product: '{% data reusables.gated-features.saml-sso %}' +title: About two-factor authentication and SAML single sign-on +intro: Organizations administrators can enable both SAML single sign-on and two-factor authentication to add additional authentication measures for their organization members. redirect_from: - /articles/about-two-factor-authentication-and-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-two-factor-authentication-and-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 2FA及びSAMLシングルサインオン +shortTitle: 2FA & SAML single sign-on --- -2 要素認証 (2FA) は、Organization のメンバーに基本的な認証を提供します。 By enabling 2FA, organization administrators limit the likelihood that a member's account on {% data variables.product.product_location %} could be compromised. 2FA に関する詳細は「[2 要素認証について](/articles/about-two-factor-authentication)」を参照してください。 +Two-factor authentication (2FA) provides basic authentication for organization members. By enabling 2FA, organization administrators limit the likelihood that a member's account on {% data variables.product.product_location %} could be compromised. For more information on 2FA, see "[About two-factor authentication](/articles/about-two-factor-authentication)." -認証方法を追加するために、Organization の管理者は [SAML シングルサインオン (SSO) を有効化](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)し、Organization のメンバーが Organization へのアクセスにシングルサインオンを使わなければならないようにすることができます。 詳細は「[SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on)」を参照してください。 +To add additional authentication measures, organization administrators can also [enable SAML single sign-on (SSO)](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) so that organization members must use single sign-on to access an organization. For more information on SAML SSO, see "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)." -2 要素認証と SAML SSO をどちらも有効化した場合、Organization のメンバーは以下のようにしなければなりません: +If both 2FA and SAML SSO are enabled, organization members must do the following: - Use 2FA to log in to their account on {% data variables.product.product_location %} -- Organization へのアクセスにはシングルサインオンを利用 -- API あるいは Git のアクセスには認可されたトークンを使い、トークンの認可にはシングルサインオンを利用 +- Use single sign-on to access the organization +- Use an authorized token for API or Git access and use single sign-on to authorize the token -## 参考リンク +## Further reading -- [Organization 用の SAML シングルサインオンの強制](/articles/enforcing-saml-single-sign-on-for-your-organization) +- "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)" diff --git a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md index 5fa3f45e5d..3b715c25de 100644 --- a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md +++ b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md @@ -1,11 +1,10 @@ --- -title: SAML シングルサインオンでの Organization へのアクセスを許可する -intro: Organization の管理者は、SAML シングルサインオンでの Organization へのアクセスを許可できます。 このアクセス権は、Organization メンバー、ボット、およびサービスアカウントに付与することができます。 +title: Granting access to your organization with SAML single sign-on +intro: 'Organization administrators can grant access to their organization with SAML single sign-on. This access can be granted to organization members, bots, and service accounts.' redirect_from: - /articles/granting-access-to-your-organization-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/granting-access-to-your-organization-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -14,6 +13,6 @@ children: - /managing-bots-and-service-accounts-with-saml-single-sign-on - /viewing-and-managing-a-members-saml-access-to-your-organization - /about-two-factor-authentication-and-saml-single-sign-on -shortTitle: SAMLでのアクセス許可 +shortTitle: Grant access with SAML --- diff --git a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md index 94ff7d4b1d..0b6a234588 100644 --- a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md @@ -1,27 +1,25 @@ --- -title: SAML シングルサインオンでボットおよびサービスアカウントを管理する -intro: SAML シングルサインオンを有効にしている Organization は、ボットおよびサービスアカウントへのアクセスを維持できます。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Managing bots and service accounts with SAML single sign-on +intro: Organizations that have enabled SAML single sign-on can retain access for bots and service accounts. redirect_from: - /articles/managing-bots-and-service-accounts-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/managing-bots-and-service-accounts-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: ボット及びサービスアカウントの管理 +shortTitle: Manage bots & service accounts --- -ボットおよびサービスアカウントへのアクセスを維持するために、Organization の管理者はその Organization に対して SAML シングルサインオンを[有効化](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)することはできますが、[強制](/articles/enforcing-saml-single-sign-on-for-your-organization)することは**できません**。 Organization に対して SAML シングルサインオンを強制する必要がある場合は、アイデンティティプロバイダ (IdP) を利用してボットまたはサービスアカウントに外部アイデンティティを作成する方法があります。 +To retain access for bots and service accounts, organization administrators can [enable](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization), but **not** [enforce](/articles/enforcing-saml-single-sign-on-for-your-organization) SAML single sign-on for their organization. If you need to enforce SAML single sign-on for your organization, you can create an external identity for the bot or service account with your identity provider (IdP). {% warning %} -**注釈:** Organization に対して SAML シングルサインオンを強制しておらず、ボットおよびサービスアカウントに対して IdP で外部 ID を設定して**いない**場合、それらは Organization から削除されます。 +**Note:** If you enforce SAML single sign-on for your organization and **do not** have external identities set up for bots and service accounts with your IdP, they will be removed from your organization. {% endwarning %} -## 参考リンク +## Further reading -- [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" 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 877c1552bc..8845f4c7cb 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 @@ -1,32 +1,30 @@ --- -title: 組織へのメンバーの SAML アクセスの表示と管理 -intro: Organization のメンバーのリンクされたアイデンティティ、アクティブなセッション、認可されたクレデンシャルの表示と取り消しが可能です。 +title: Viewing and managing a member's SAML access to your organization +intro: 'You can view and revoke an organization member''s linked identity, active sessions, and authorized credentials.' permissions: Organization owners can view and manage a member's SAML access to an organization. -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-managing-a-members-saml-access-to-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAMLアクセスの管理 +shortTitle: Manage SAML access --- -## Organization への SAML アクセスについて +## About SAML access to your organization -When you enable SAML single sign-on for your organization, each organization member can link their external identity on your identity provider (IdP) to their existing account on {% data variables.product.product_location %}. {% data variables.product.product_name %}上の Organizationのリソースにアクセスするには、メンバーはアクティブなSAMLセッションをブラウザーに持っていなければなりません。 OrganizationのリソースにAPIまたはGitを使ってアクセスするには、メンバーは、メンバーがOrganizationでの利用のために認可した個人アクセストークンもしくはSSHキーを使わなければなりません。 +When you enable SAML single sign-on for your organization, each organization member can link their external identity on your identity provider (IdP) to their existing account on {% data variables.product.product_location %}. To access your organization's resources on {% data variables.product.product_name %}, the member must have an active SAML session in their browser. To access your organization's resources using the API or Git, the member must use a personal access token or SSH key that the member has authorized for use with your organization. -各メンバーのリンクされたアイデンティティ、アクティブなセッション、同じページで認可されたクレデンシャルの表示と取り消しが可能です。 +You can view and revoke each member's linked identity, active sessions, and authorized credentials on the same page. -## リンクされているアイデンティティの表示と取り消し +## Viewing and revoking a linked identity -{% data reusables.saml.about-linked-identities %} +{% data reusables.saml.about-linked-identities %} -利用できる場合には、このエントリにはSCIMデータが含まれます。 詳しい情報については「[SCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)」を参照してください。 +When available, the entry will include SCIM data. For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% warning %} @@ -49,7 +47,7 @@ When you enable SAML single sign-on for your organization, each organization mem {% data reusables.saml.revoke-sso-identity %} {% data reusables.saml.confirm-revoke-identity %} -## アクティブな SAML セッションの表示と取り消し +## Viewing and revoking an active SAML session {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -59,7 +57,7 @@ When you enable SAML single sign-on for your organization, each organization mem {% data reusables.saml.view-saml-sessions %} {% data reusables.saml.revoke-saml-session %} -## 認可されたクレデンシャルの表示と取り消し +## Viewing and revoking authorized credentials {% data reusables.saml.about-authorized-credentials %} @@ -72,7 +70,7 @@ When you enable SAML single sign-on for your organization, each organization mem {% data reusables.saml.revoke-authorized-credentials %} {% data reusables.saml.confirm-revoke-credentials %} -## 参考リンク +## Further reading - "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)"{% ifversion ghec %} - "[Viewing and managing a user's SAML access to your enterprise account](/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)"{% endif %} diff --git a/translations/ja-JP/content/organizations/index.md b/translations/ja-JP/content/organizations/index.md index b27f1d0bae..aebcbe659d 100644 --- a/translations/ja-JP/content/organizations/index.md +++ b/translations/ja-JP/content/organizations/index.md @@ -1,9 +1,9 @@ --- -title: Organization および Team -shortTitle: Organization -intro: プロジェクトおよびデータへのアクセスを管理し、Organization の設定をカスタマイズしながら、多くのプロジェクトにわたってコラボレーションします。 +title: Organizations and teams +shortTitle: Organizations +intro: Collaborate across many projects while managing access to projects and data and customizing settings for your organization. redirect_from: - - /articles/about-improved-organization-permissions/ + - /articles/about-improved-organization-permissions - /categories/setting-up-and-managing-organizations-and-teams - /github/setting-up-and-managing-organizations-and-teams versions: diff --git a/translations/ja-JP/content/organizations/keeping-your-organization-secure/index.md b/translations/ja-JP/content/organizations/keeping-your-organization-secure/index.md index a5547c7d4a..01d2dd4043 100644 --- a/translations/ja-JP/content/organizations/keeping-your-organization-secure/index.md +++ b/translations/ja-JP/content/organizations/keeping-your-organization-secure/index.md @@ -1,8 +1,8 @@ --- -title: Organization を安全に保つ -intro: 'Organization のオーナーがプロジェクトとデータを安全に保つ方法はいくつかあります。 Organization のオーナーは、不正な、または悪意のあるアクティビティが発生していないことを確認するために、Organization の監査ログ{% ifversion not ghae %}、メンバーの 2 要素認証ステータス、{% endif %} そしてアプリケーション設定を定期的にレビューする必要があります。' +title: Keeping your organization secure +intro: 'Organization owners have several features to help them keep their projects and data secure. If you''re the owner of an organization, you should regularly review your organization''s audit log{% ifversion not ghae %}, member 2FA status,{% endif %} and application settings to ensure that no unauthorized or malicious activity has occurred.' redirect_from: - - /articles/preventing-unauthorized-access-to-organization-information/ + - /articles/preventing-unauthorized-access-to-organization-information - /articles/keeping-your-organization-secure - /github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure versions: @@ -22,6 +22,6 @@ children: - /restricting-email-notifications-for-your-organization - /reviewing-the-audit-log-for-your-organization - /reviewing-your-organizations-installed-integrations -shortTitle: Organizationのセキュリティ +shortTitle: Organization security --- diff --git a/translations/ja-JP/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md b/translations/ja-JP/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md index ddab2e59ff..609f0b67d1 100644 --- a/translations/ja-JP/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md +++ b/translations/ja-JP/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md @@ -1,10 +1,10 @@ --- -title: Organizationのメール通知の制限 -intro: Organizationの情報が個人のメールアカウントに漏れてしまうことを避けるために、メンバーがOrganizationのアクティビティに関するメール通知を受信できるドメインを制限できます。 +title: Restricting email notifications for your organization +intro: 'To prevent organization information from leaking into personal email accounts, you can restrict the domains where members can receive email notifications about organization activity.' product: '{% data reusables.gated-features.restrict-email-domain %}' permissions: Organization owners can restrict email notifications for an organization. redirect_from: - - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain/ + - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain - /articles/restricting-email-notifications-to-an-approved-domain - /github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain - /organizations/keeping-your-organization-secure/restricting-email-notifications-to-an-approved-domain @@ -18,29 +18,29 @@ topics: - Notifications - Organizations - Policy -shortTitle: メール通知の制限 +shortTitle: Restrict email notifications --- -## メールの制限について +## About email restrictions -Organization で制限付きのメール通知が有効になっている場合、メンバーは Organization の検証済みあるいは承認済みドメインに関連付けられたメールアドレスのみを使用して、Organization のアクティビティに関するメール通知を受信できます。 詳しい情報については「[Organizationのドメインの検証もしくは承認](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)」を参照してください。 +When restricted email notifications are enabled in an organization, members can only use an email address associated with a verified or approved domain to receive email notifications about organization activity. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.enterprise-accounts.approved-domains-beta-note %} {% data reusables.notifications.email-restrictions-verification %} -外部のコラボレーターは、検証済みあるいは承認済みドメインへのメール通知の制限の対象になりません。 For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +Outside collaborators are not subject to restrictions on email notifications for verified or approved domains. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." -Enterprise アカウントがオーナーの Organization の場合、Organization のメンバーは、Organization の検証済みあるいは承認済みドメインに加えて、Enterprise アカウントの検証済みあるいは承認済みドメインから通知を受け取ることができます。 For more information, see "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)." +If your organization is owned by an enterprise account, organization members will be able to receive notifications from any domains verified or approved for the enterprise account, in addition to any domains verified or approved for the organization. For more information, see "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)." -## メール通知の制限 +## Restricting email notifications -Organizationのメール通知を制限できるようにするには、Oraganizationに対して最低1つのドメインを検証あるいは承認するか、EnterpriseのオーナーがEnterpriseアカウントに対して最低1つのドメインを検証あるいは承認しなければなりません。 +Before you can restrict email notifications for your organization, you must verify or approve at least one domain for the organization, or an enterprise owner must have verified or approved at least one domain for the enterprise account. -Organizationの検証済み及び承認済みドメインに関する詳しい情報については「[Organizationのドメインの検証もしくは承認](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)」を参照してください。 +For more information about verifying and approving domains for an organization, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.verified-domains %} {% data reusables.organizations.restrict-email-notifications %} -6. [**Save**] をクリックします。 +6. Click **Save**. diff --git a/translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md b/translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md index f222e7b6c4..08a2b3eb70 100644 --- a/translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md +++ b/translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md @@ -56,7 +56,7 @@ To search for specific events, use the `action` qualifier in your query. Actions | [`marketplace_agreement_signature`](#marketplace_agreement_signature-category-actions) | Contains all activities related to signing the {% data variables.product.prodname_marketplace %} Developer Agreement. | [`marketplace_listing`](#marketplace_listing-category-actions) | Contains all activities related to listing apps in {% data variables.product.prodname_marketplace %}.{% endif %}{% ifversion fpt or ghes > 3.0 or ghec %} | [`members_can_create_pages`](#members_can_create_pages-category-actions) | Contains all activities related to managing the publication of {% data variables.product.prodname_pages %} sites for repositories in the organization. For more information, see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | {% endif %} -| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion fpt or ghec %} +| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion ghec %} | [`org_credential_authorization`](#org_credential_authorization-category-actions) | Contains all activities related to authorizing credentials for use with SAML single sign-on.{% endif %}{% ifversion fpt or ghes or ghae or ghec %} | [`organization_label`](#organization_label-category-actions) | Contains all activities related to default labels for repositories in your organization.{% endif %} | [`oauth_application`](#oauth_application-category-actions) | Contains all activities related to OAuth Apps.{% ifversion fpt or ghes > 3.0 or ghec %} @@ -423,12 +423,12 @@ For more information, see "[Managing the publication of {% data variables.produc | `block_user` | Triggered when an organization owner [blocks a user from accessing the organization's repositories](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization). | `cancel_invitation` | Triggered when an organization invitation has been revoked. {% endif %}{% ifversion fpt or ghes or ghec %} | `create_actions_secret` | Triggered when a {% data variables.product.prodname_actions %} secret is 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 %} {% ifversion fpt or ghec %} -| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %} +| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %}{% endif %} | `disable_member_team_creation_permission` | Triggered when an organization owner limits team creation to owners. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `disable_two_factor_requirement` | Triggered when an owner disables a two-factor authentication requirement for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} -| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %} +| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %}{% endif %} | `enable_member_team_creation_permission` | Triggered when an organization owner allows members to create teams. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `enable_two_factor_requirement` | Triggered when an owner requires two-factor authentication for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} | `invite_member` | Triggered when [a new user was invited to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization). @@ -440,7 +440,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `remove_billing_manager` | Triggered when an [owner removes a billing manager from an organization](/articles/removing-a-billing-manager-from-your-organization/) or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and a billing manager doesn't use 2FA or disables 2FA. |{% endif %} | `remove_member` | Triggered when an [owner removes a member from an organization](/articles/removing-a-member-from-your-organization/){% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an organization member doesn't use 2FA or disables 2FA{% endif %}. Also triggered when an [organization member removes themselves](/articles/removing-yourself-from-an-organization/) from an organization.| | `remove_outside_collaborator` | Triggered when an owner removes an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an outside collaborator does not use 2FA or disables 2FA{% endif %}. | -| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion fpt or ghec %} +| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion ghec %} | `revoke_external_identity` | Triggered when an organization owner revokes 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)." | `revoke_sso_session` | Triggered when an organization owner revokes 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 %} | `runner_group_created` | Triggered when a self-hosted runner group is 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)." @@ -464,7 +464,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `update_saml_provider_settings` | Triggered when an organization's SAML provider settings are updated. | `update_terms_of_service` | Triggered when an organization changes between the Standard Terms of Service and the Corporate Terms of Service. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ### `org_credential_authorization` category actions | Action | Description diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/index.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/index.md index a0dea48f24..94a30b7368 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/index.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/index.md @@ -1,8 +1,8 @@ --- -title: Organization のリポジトリに対するアクセスを管理する -intro: Organization のオーナーは、Organization のリポジトリに対する個人およびチームのアクセスを管理できます。 チームメンテナは、チームのリポジトリアクセスを管理することも可能です。 +title: Managing access to your organization's repositories +intro: Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access. redirect_from: - - /articles/permission-levels-for-an-organization-repository/ + - /articles/permission-levels-for-an-organization-repository - /articles/managing-access-to-your-organization-s-repositories - /articles/managing-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories @@ -26,6 +26,6 @@ children: - /converting-an-organization-member-to-an-outside-collaborator - /converting-an-outside-collaborator-to-an-organization-member - /reinstating-a-former-outside-collaborators-access-to-your-organization -shortTitle: リポジトリへのアクセスの管理 +shortTitle: Manage access to repositories --- diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md index c6e6244a06..4e2c599dd2 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: Organization のリポジトリへの個人のアクセスを管理する -intro: Organization が所有するリポジトリへの個人のアクセスを管理できます。 +title: Managing an individual's access to an organization repository +intro: You can manage a person's access to a repository owned by your organization. redirect_from: - - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program/ + - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program - /articles/managing-an-individual-s-access-to-an-organization-repository - /articles/managing-an-individuals-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository @@ -14,13 +14,13 @@ versions: topics: - Organizations - Teams -shortTitle: 個人のアクセスの管理 +shortTitle: Manage individual access permissions: People with admin access to a repository can manage access to the repository. --- ## About access to organization repositories -Organization のリポジトリからコラボレーターを削除すると、そのコラボレータはリポジトリに対する読み取りおよび書き込みアクセスを失います。 リポジトリがプライベートで、コラボレータがリポジトリをフォークしている場合、そのそのフォークも削除されますが、リポジトリのローカルクローンは保持したままになります。 +When you remove a collaborator from a repository in your organization, the collaborator loses read and write access to the repository. If the repository is private and the collaborator has forked the repository, then their fork is also deleted, but the collaborator will still retain any local clones of your repository. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -30,20 +30,25 @@ Organization のリポジトリからコラボレーターを削除すると、 {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-manage-access %} {% data reusables.organizations.invite-teams-or-people %} -5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. ![リポジトリに招待する Team または人の名前を入力するための検索フィールド](/assets/images/help/repository/manage-access-invite-search-field.png) -6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. ![Team または人の権限を選択する](/assets/images/help/repository/manage-access-invite-choose-role-add.png) +5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. + ![Search field for typing the name of a team or person to invite to the repository](/assets/images/help/repository/manage-access-invite-search-field.png) +6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. + ![Selecting permissions for the team or person](/assets/images/help/repository/manage-access-invite-choose-role-add.png) -## Organization のリポジトリへの個人のアクセスを管理する +## Managing an individual's access to an organization repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.people %} -4. アクセスのタイプが異なるユーザを管理するには、[**Members**] または [**Outside collaborators**] をクリックします。 ![メンバーまたは外部コラボレーターを Organization に招待するボタン](/assets/images/help/organizations/select-outside-collaborators.png) -5. 管理する個人の名前の右側にある {% octicon "gear" aria-label="The Settings gear" %}ドロップダウン メニューで、[**Manage**] をクリックします。 ![[Manage] アクセスリンク](/assets/images/help/organizations/member-manage-access.png) -6. [Manage access] ページで、リポジトリの隣にある [**Manage access**] をクリックします。 ![リポジトリの [Manage access] ボタン](/assets/images/help/organizations/repository-manage-access.png) -7. この個人がコラボレーターなのか、チーム メンバーとしてリポジトリにアクセスできるのかなど、特定のリポジトリに対するアクセスを確認します。 ![ユーザのリポジトリへのアクセスのマトリクス](/assets/images/help/organizations/repository-access-matrix-for-user.png) +4. Click either **Members** or **Outside collaborators** to manage people with different types of access. ![Button to invite members or outside collaborators to an organization](/assets/images/help/organizations/select-outside-collaborators.png) +5. To the right of the name of the person you'd like to manage, use the {% octicon "gear" aria-label="The Settings gear" %} drop-down menu, and click **Manage**. + ![The manage access link](/assets/images/help/organizations/member-manage-access.png) +6. On the "Manage access" page, next to the repository, click **Manage access**. +![Manage access button for a repository](/assets/images/help/organizations/repository-manage-access.png) +7. Review the person's access to a given repository, such as whether they're a collaborator or have access to the repository via team membership. +![Repository access matrix for the user](/assets/images/help/organizations/repository-access-matrix-for-user.png) -## 参考リンク +## Further reading -{% ifversion fpt or ghec %}- [リポジトリ内での操作を制限する](/articles/limiting-interactions-with-your-repository){% endif %} +{% ifversion fpt or ghec %}- "[Limiting interactions with your repository](/articles/limiting-interactions-with-your-repository)"{% endif %} - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md index fa990528c9..51d2c0a079 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: Organization リポジトリへの Team のアクセスを管理する -intro: リポジトリへのチームアクセスを付与、リポジトリへのチームアクセスを削除、またはリポジトリへのチームの権限レベルを変更することができます。 +title: Managing team access to an organization repository +intro: 'You can give a team access to a repository, remove a team''s access to a repository, or change a team''s permission level for a repository.' redirect_from: - - /articles/managing-team-access-to-an-organization-repository-early-access-program/ + - /articles/managing-team-access-to-an-organization-repository-early-access-program - /articles/managing-team-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository versions: @@ -13,32 +13,35 @@ versions: topics: - Organizations - Teams -shortTitle: Teamのアクセスの管理 +shortTitle: Manage team access --- -リポジトリに対して管理者権限がある人は、リポジトリへのチームアクセスを管理できます。 チームメンテナは、リポジトリへのチームアクセスを削除できます。 +People with admin access to a repository can manage team access to the repository. Team maintainers can remove a team's access to a repository. {% warning %} -**警告:** -- チームがリポジトリに直接アクセスできる場合は、チームの権限レベルを変更できます。 リポジトリへのチームのアクセスが親チームから継承される場合は、リポジトリへの親チームのアクセスを変更する必要があります。 -- 親チームのリポジトリへのアクセスを追加または削除すると、その親の子チームそれぞれでも、同じリポジトリへのアクセスが追加または削除されます。 詳しい情報については[Team について](/articles/about-teams)を参照してください。 +**Warnings:** +- You can change a team's permission level if the team has direct access to a repository. If the team's access to the repository is inherited from a parent team, you must change the parent team's access to the repository. +- If you add or remove repository access for a parent team, each of that parent's child teams will also receive or lose access to the repository. For more information, see "[About teams](/articles/about-teams)." {% endwarning %} -## リポジトリへのアクセスをチームに付与する +## Giving a team access to a repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. リポジトリ リストの上にある [**Add repository**] をクリックします。 ![[Add repository] ボタン](/assets/images/help/organizations/add-repositories-button.png) -6. リポジトリの名前を入力して、[**Add repository to team**] をクリックします。 ![リポジトリ検索フィールド](/assets/images/help/organizations/team-repositories-add.png) -7. オプションで、リポジトリ名の右にあるドロップダウンメニューを使って、チームの権限レベルを変更することもできます ![リポジトリのアクセス レベルのドロップダウン](/assets/images/help/organizations/team-repositories-change-permission-level.png) +5. Above the list of repositories, click **Add repository**. + ![The Add repository button](/assets/images/help/organizations/add-repositories-button.png) +6. Type the name of a repository, then click **Add repository to team**. + ![Repository search field](/assets/images/help/organizations/team-repositories-add.png) +7. Optionally, to the right of the repository name, use the drop-down menu and choose a different permission level for the team. + ![Repository access level dropdown](/assets/images/help/organizations/team-repositories-change-permission-level.png) -## リポジトリへのチームのアクセスを削除する +## Removing a team's access to a repository -チームがリポジトリに直接アクセスできる場合は、リポジトリへのチームのアクセスを削除できます。 リポジトリへのチームのアクセスが親チームから継承される場合、子チームからリポジトリを削除するには親チームからリポジトリを削除する必要があります。 +You can remove a team's access to a repository if the team has direct access to a repository. If a team's access to the repository is inherited from a parent team, you must remove the repository from the parent team in order to remove the repository from child teams. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -46,10 +49,13 @@ shortTitle: Teamのアクセスの管理 {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. チームから削除するリポジトリ (複数選択も可) を選択します。 ![いくつかのリポジトリがチェックボックスで選択されたチーム リポジトリのリスト](/assets/images/help/teams/select-team-repositories-bulk.png) -6. リポジトリ リストの上にあるドロップダウン メニューで、[**Remove from team**] をクリックします。 ![チームからリポジトリを削除するオプションのあるドロップダウン メニュー](/assets/images/help/teams/remove-team-repo-dropdown.png) -7. チームから削除されるリポジトリをレビューし、[**Remove repositories**] をクリックします。 ![チームがアクセスできなくなったリポジトリのリストがあるモーダル ボックス](/assets/images/help/teams/confirm-remove-team-repos.png) +5. Select the repository or repositories you'd like to remove from the team. + ![List of team repositories with the checkboxes for some repositories selected](/assets/images/help/teams/select-team-repositories-bulk.png) +6. Above the list of repositories, use the drop-down menu, and click **Remove from team**. + ![Drop-down menu with the option to remove a repository from a team](/assets/images/help/teams/remove-team-repo-dropdown.png) +7. Review the repository or repositories that will be removed from the team, then click **Remove repositories**. + ![Modal box with a list of repositories that the team will no longer have access to](/assets/images/help/teams/confirm-remove-team-repos.png) -## 参考リンク +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md index 87dda915f4..7a0e4bbd0d 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md @@ -3,7 +3,7 @@ title: Repository roles for an organization intro: 'You can customize access to each repository in your organization by assigning granular roles, giving people access to the features and tasks they need.' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/repository-permission-levels-for-an-organization-early-access-program/ + - /articles/repository-permission-levels-for-an-organization-early-access-program - /articles/repository-permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization - /organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization diff --git a/translations/ja-JP/content/organizations/managing-git-access-to-your-organizations-repositories/index.md b/translations/ja-JP/content/organizations/managing-git-access-to-your-organizations-repositories/index.md index c087258255..ddff241ba3 100644 --- a/translations/ja-JP/content/organizations/managing-git-access-to-your-organizations-repositories/index.md +++ b/translations/ja-JP/content/organizations/managing-git-access-to-your-organizations-repositories/index.md @@ -1,9 +1,9 @@ --- -title: Organization のリポジトリに対する Git アクセスを管理する -intro: SSH 認証局 (CA) を Organization に追加し、SSH CA に署名された鍵を使って、メンバーが Git 経由で Organization のリポジトリにアクセスできるようにすることができます。 +title: Managing Git access to your organization's repositories +intro: You can add an SSH certificate authority (CA) to your organization and allow members to access the organization's repositories over Git using keys signed by the SSH CA. product: '{% data reusables.gated-features.ssh-certificate-authorities %}' redirect_from: - - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities/ + - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities - /articles/managing-git-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories versions: @@ -17,6 +17,6 @@ topics: children: - /about-ssh-certificate-authorities - /managing-your-organizations-ssh-certificate-authorities -shortTitle: Gitアクセスの管理 +shortTitle: Manage Git access --- diff --git a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md index de5b7f696a..fcbc84c3ef 100644 --- a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md +++ b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md @@ -1,8 +1,8 @@ --- -title: 私の Organization に所属する人のためにアカウントを作成できますか? -intro: 作成した Organization にユーザを追加することはできますが、個人のアカウントを代理で作成することはできません。 +title: Can I create accounts for people in my organization? +intro: 'While you can add users to an organization you''ve created, you can''t create personal user accounts on behalf of another person.' redirect_from: - - /articles/can-i-create-accounts-for-those-in-my-organization/ + - /articles/can-i-create-accounts-for-those-in-my-organization - /articles/can-i-create-accounts-for-people-in-my-organization - /github/setting-up-and-managing-organizations-and-teams/can-i-create-accounts-for-people-in-my-organization versions: @@ -11,7 +11,7 @@ versions: topics: - Organizations - Teams -shortTitle: 人のアカウントの作成 +shortTitle: Create accounts for people --- ## About user accounts @@ -19,11 +19,13 @@ shortTitle: 人のアカウントの作成 Because you access an organization by logging in to a user account, each of your team members needs to create their own user account. After you have usernames for each person you'd like to add to your organization, you can add the users to teams. {% ifversion fpt or ghec %} -If you need greater control over the user accounts of your organization members, consider {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} +{% 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 user accounts have to the organization's resources through an identity provider (IdP). 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){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} + +You can also consider {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} {% endif %} -## Organization へのユーザの追加 +## Adding users to your organization 1. Provide each person instructions to [create a user account](/articles/signing-up-for-a-new-github-account). -2. Organization のメンバーシップを与えたい人に、ユーザー名を尋ねます。 -3. Organization に、作成された[新しい個人アカウントを招待](/articles/inviting-users-to-join-your-organization)してください。 各アカウントのアクセスを制限するには、[Organization ロール](/articles/permission-levels-for-an-organization)および[リポジトリの権限](/articles/repository-permission-levels-for-an-organization)を使用します。 +2. Ask for the username of each person you want to give organization membership to. +3. [Invite the new personal accounts to join](/articles/inviting-users-to-join-your-organization) your organization. Use [organization roles](/articles/permission-levels-for-an-organization) and [repository permissions](/articles/repository-permission-levels-for-an-organization) to limit the access of each account. diff --git a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/index.md b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/index.md index b12fbefcd2..1216f530f7 100644 --- a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/index.md +++ b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/index.md @@ -1,8 +1,8 @@ --- -title: Organization でメンバーシップを管理する -intro: 'Organization を作成すると、Organization のメンバーとして{% ifversion fpt %}ユーザを招待{% else %}ユーザを追加{% endif %}することができます。 メンバーの削除や、元のメンバーの復帰も可能です。' +title: Managing membership in your organization +intro: 'After you create your organization, you can {% ifversion fpt %}invite people to become{% else %}add people as{% endif %} members of the organization. You can also remove members of the organization, and reinstate former members.' redirect_from: - - /articles/removing-a-user-from-your-organization/ + - /articles/removing-a-user-from-your-organization - /articles/managing-membership-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization versions: @@ -21,7 +21,6 @@ children: - /reinstating-a-former-member-of-your-organization - /exporting-member-information-for-your-organization - /can-i-create-accounts-for-people-in-my-organization -shortTitle: メンバーシップの管理 +shortTitle: Manage membership --- - <!-- else --> 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 23ea002c70..31b090c1f3 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 @@ -1,9 +1,9 @@ --- -title: Organization に参加するようユーザを招待する -intro: 'Organization のメンバーとして追加したい人がいれば、その人の {% data variables.product.product_name %} ユーザ名またはメール アドレスを使用して招待することができます。' +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/ + - /articles/adding-or-inviting-members-to-a-team-in-an-organization - /articles/inviting-users-to-join-your-organization - /github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization versions: @@ -12,16 +12,18 @@ versions: topics: - Organizations - Teams -shortTitle: ユーザに参加するよう招待 +shortTitle: Invite users to join --- ## About organization invitations -Organization がユーザ単位の有料プランである場合、新しいメンバーを招待して参加させる、または Organization の以前のメンバーを復帰させる前に、そのためのライセンスが用意されている必要があります。 詳細は「[ユーザごとの価格付けについて](/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 %} -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)」を参照してください。 +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 %}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](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} ## Inviting a user to join your organization @@ -36,5 +38,5 @@ Organization がメンバーに 2 要素認証を使うことを要求してい {% data reusables.organizations.send-invitation %} {% data reusables.organizations.user_must_accept_invite_email %} {% data reusables.organizations.cancel_org_invite %} -## 参考リンク -- [Team へのOrganization メンバーの追加](/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/ja-JP/content/organizations/managing-organization-settings/renaming-an-organization.md b/translations/ja-JP/content/organizations/managing-organization-settings/renaming-an-organization.md index bf3e064635..30bd57d2b3 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -1,8 +1,8 @@ --- -title: Organization の名前を変更する -intro: プロジェクトや企業の名前が変更になった場合、Organization の名前を更新して一致させることができます。 +title: Renaming an organization +intro: 'If your project or company has changed names, you can update the name of your organization to match.' redirect_from: - - /articles/what-happens-when-i-change-my-organization-s-name/ + - /articles/what-happens-when-i-change-my-organization-s-name - /articles/renaming-an-organization - /github/setting-up-and-managing-organizations-and-teams/renaming-an-organization versions: @@ -17,34 +17,35 @@ topics: {% tip %} -**ヒント:** Organization の名前を変更できるのは Organization オーナーだけです。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Only organization owners can rename an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} -## Organization の名前を変更するとどうなりますか? +## What happens when I change my organization's name? -Organization の名前を変更したら、古い Organization 名は他の個人が使用できるようになります。 Organization の名前を変更すると、古い Organization 名の下にあるリポジトリへの参照のほとんどが、自動で新しい名前に変わります。 ただし、プロフィールへのリンクによっては、自動的にリダイレクトされません。 +After changing your organization's name, your old organization name becomes available for someone else to claim. When you change your organization's name, most references to your repositories under the old organization name automatically change to the new name. However, some links to your profile won't automatically redirect. -### 自動で行われる変更 +### Changes that occur automatically -- {% data variables.product.prodname_dotcom %} ではリポジトリへの参照を自動でリダイレクトします。 Organization に既存の**リポジトリ**への Web リンクは引き続き機能します。 変更を開始してから完了するまでに数分かかることがあります。 -- ローカルリポジトリのプッシュは、古いリモートトラッキング URL へは更新なしでそのまま行えます。 ただし、Organization の名前を変更したら、既存のすべてのリモートリポジトリ URL を更新するよう推奨します。 変更後の古い Organization 名は他のいずれの個人も使用できるようになるため、新しい Organization オーナーがリポジトリへのリダイレクトエントリをオーバーライドすることがありえます。 詳しい情報については「[リモートリポジトリの管理](/github/getting-started-with-github/managing-remote-repositories)」を参照してください。 -- 以前の Git コミットも、Organization 内のユーザへ正しく関連付けられます。 +- {% data variables.product.prodname_dotcom %} automatically redirects references to your repositories. Web links to your organization's existing **repositories** will continue to work. This can take a few minutes to complete after you initiate the change. +- You can continue pushing your local repositories to the old remote tracking URL without updating it. However, we recommend you update all existing remote repository URLs after changing your organization name. Because your old organization name is available for use by anyone else after you change it, the new organization owner can create repositories that override the redirect entries to your repository. For more information, see "[Managing remote repositories](/github/getting-started-with-github/managing-remote-repositories)." +- Previous Git commits will also be correctly attributed to users within your organization. -### 自動ではない変更 +### Changes that aren't automatic -Organization の名前を変更したら、次のようになります: -- 以前の Organization プロフィールページ (`https://{% data variables.command_line.backticks %}/previousorgname` など) にリンクすると、404 エラーが返されます。 他のサイト{% ifversion fpt or ghec %} (LinkedIn や Twitter のプロフィールなど) {% endif %}からの Organization へのリンクを更新するよう推奨します。 -- 古い Organization 名を使用する API リクエストでは、404 エラーが返されます。 API リクエストにある古い Organization 名を更新するようおすすめします。 -- 古い Organization 名を使用する Team へは、自動での [@mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) リダイレクトはありません。{% ifversion fpt or ghec %} -- OrganizationでSAMLシングルサインオン(SSO)が有効化されているなら、アイデンティティプロバイダ(IdP)で{% data variables.product.prodname_ghe_cloud %}用のアプリケーション内のOrganization名を更新しなければなりません。 IdPでOrganization名を更新しないと、OrganizationのメンバーはOrganizationのリソースにアクセスする際にIdPで認証を受けられなくなります。 詳細は「[アイデンティティプロバイダを Organization に接続する](/github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization)」を参照してください。{% endif %} +After changing your organization's name: +- Links to your previous organization profile page, such as `https://{% data variables.command_line.backticks %}/previousorgname`, will return a 404 error. We recommend you update links to your organization from other sites{% ifversion fpt or ghec %}, such as your LinkedIn or Twitter profiles{% endif %}. +- API requests that use the old organization's name will return a 404 error. We recommend you update the old organization name in your API requests. +- There are no automatic [@mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) redirects for teams that use the old organization's name.{% ifversion ghec %} +- If SAML single sign-on (SSO) is enabled for the organization, you must update the organization name in the application for {% data variables.product.prodname_ghe_cloud %} on your identity provider (IdP). If you don't update the organization name on your IdP, members of the organization will no longer be able to authenticate with your IdP to access the organization's resources. For more information, see "[Connecting your identity provider to your organization](/github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization)."{% endif %} -## Organization の名前を変更する +## Changing your organization's name {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -4. 設定ページの末尾近くにある [Rename organization] の下の [**Rename Organization**] をクリックします。 ![[Rename organization] ボタン](/assets/images/help/settings/settings-rename-organization.png) +4. Near the bottom of the settings page, under "Rename organization", click **Rename Organization**. + ![Rename organization button](/assets/images/help/settings/settings-rename-organization.png) -## 参考リンク +## Further reading -* 「[コミットが間違ったユーザにリンクされているのはなぜですか?](/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user)」 +* "[Why are my commits linked to the wrong user?](/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user)" diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md b/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md index f1704e1a4d..44b80ce85d 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md @@ -1,9 +1,9 @@ --- -title: 外部のコラボレーターを追加するための権限を設定する -intro: Organization のデータを保護し、Organization 内で使用されている有料ライセンスの数が無駄遣いされないようにするために、外部コラボレーターを Organization のリポジトリに招待することをオーナーのみに許可できます。 +title: Setting permissions for adding outside collaborators +intro: 'To protect your organization''s data and the number of paid licenses used in your organization, you can allow only owners to invite outside collaborators to organization repositories.' product: '{% data reusables.gated-features.restrict-add-collaborator %}' redirect_from: - - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories/ + - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories - /articles/setting-permissions-for-adding-outside-collaborators - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators versions: @@ -14,15 +14,16 @@ versions: topics: - Organizations - Teams -shortTitle: コラボレータポリシーの設定 +shortTitle: Set collaborator policy --- -リポジトリに対する管理者権限を持つ Organization のオーナーとメンバーは、リポジトリで作業するように外部のコラボレーターを招待できます。 外部のコラボレーターの招待権限を、Organization のオーナーに制限することもできます。 +Organization owners, and members with admin privileges for a repository, can invite outside collaborators to work on the repository. You can also restrict outside collaborator invite permissions to only organization owners. {% data reusables.organizations.outside-collaborators-use-seats %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. [Repository invitations] の下で、[**Allow members to invite outside collaborators to repositories for this organization**] を選択します。 ![外部コラボレーターを Organization リポジトリに招待することをメンバーに許可するためのチェックボックス](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) -6. [**Save**] をクリックします。 +5. Under "Repository invitations", select **Allow members to invite outside collaborators to repositories for this organization**. + ![Checkbox to allow members to invite outside collaborators to organization repositories](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) +6. Click **Save**. diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md b/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md index 11ad16dd18..5309271e6e 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md @@ -1,8 +1,8 @@ --- -title: リポジトリを削除または移譲する権限を設定する -intro: リポジトリの削除や移譲を、リポジトリの管理者権限を持つ Organization メンバーに許可したり、Organization のオーナーのみがリポジトリを削除や移譲できるよう制限したりできます。 +title: Setting permissions for deleting or transferring repositories +intro: 'You can allow organization members with admin permissions to a repository to delete or transfer the repository, or limit the ability to delete or transfer repositories to organization owners only.' redirect_from: - - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization/ + - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization - /articles/setting-permissions-for-deleting-or-transferring-repositories - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories versions: @@ -13,13 +13,14 @@ versions: topics: - Organizations - Teams -shortTitle: リポジトリ管理ポリシーの設定 +shortTitle: Set repo management policy --- -コードオーナーは、Organization 内のリポジトリについて、削除や移譲の権限を設定できます。 +Owners can set permissions for deleting or transferring repositories in an organization. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. [Repository deletion and transfer] の下で、[**Allow members to delete or transfer repositories for this organization**] を選択または選択解除します。 ![リポジトリの削除をメンバーに許可するためのチェックボックス](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) -6. [**Save**] をクリックします。 +5. Under "Repository deletion and transfer", select or deselect **Allow members to delete or transfer repositories for this organization**. +![Checkbox to allow members to delete repositories](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) +6. Click **Save**. diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/transferring-organization-ownership.md b/translations/ja-JP/content/organizations/managing-organization-settings/transferring-organization-ownership.md index 05889fc410..da79cb679b 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/transferring-organization-ownership.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/transferring-organization-ownership.md @@ -1,8 +1,8 @@ --- -title: Organization の所有権を移譲する -intro: '他の誰かを Organization アカウントのオーナーにするには、新しいオーナーを追加し、{% ifversion fpt or ghec %}請求情報が更新されることを確認し、{% endif %}アカウントから自分を削除します。' +title: Transferring organization ownership +intro: 'To make someone else the owner of an organization account, you must add a new owner{% ifversion fpt or ghec %}, ensure that the billing information is updated,{% endif %} and then remove yourself from the account.' redirect_from: - - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else/ + - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else - /articles/transferring-organization-ownership - /github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership versions: @@ -13,26 +13,25 @@ versions: topics: - Organizations - Teams -shortTitle: 所有権の移譲 +shortTitle: Transfer ownership --- - {% ifversion fpt or ghec %} {% note %} -**注釈:** {% data reusables.enterprise-accounts.invite-organization %} +**Note:** {% data reusables.enterprise-accounts.invite-organization %} {% endnote %}{% endif %} -1. もしあなたが *owner* の権限を持つ唯一のメンバーである場合、他の Organization メンバーにオーナーロールを付与します。 詳細は「[Organizationのオーナーの指名](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)」を参照してください。 -2. 新しいオーナーに連絡し、そのオーナーが [Organization の設定にアクセス](/articles/accessing-your-organization-s-settings)できることを確認します。 +1. If you're the only member with *owner* privileges, give another organization member the owner role. For more information, see "[Appointing an organization owner](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)." +2. Contact the new owner and make sure he or she is able to [access the organization's settings](/articles/accessing-your-organization-s-settings). {% ifversion fpt or ghec %} -3. Organization で GitHub への支払いを現在担当している場合、新しいオーナーまたは[支払いマネージャー](/articles/adding-a-billing-manager-to-your-organization/)に Organization の支払い情報を更新してもらう必要があります。 詳細は「[支払い方法を追加または編集する](/articles/adding-or-editing-a-payment-method)」を参照してください。 +3. If you are currently responsible for paying for GitHub in your organization, you'll also need to have the new owner or a [billing manager](/articles/adding-a-billing-manager-to-your-organization/) update the organization's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." {% warning %} - **警告**: Organization から自身を削除しても、Organization アカウントのファイル上の支払い情報は**更新されません**。 新しいコードオーナーまたは支払いマネージャーは、あなたのクレジットカードまたは Paypal の情報を削除するためにファイル上の支払い情報を更新しなければなりません。 + **Warning**: Removing yourself from the organization **does not** update the billing information on file for the organization account. The new owner or a billing manager must update the billing information on file to remove your credit card or PayPal information. {% endwarning %} {% endif %} -4. Organization から[自分を削除する](/articles/removing-yourself-from-an-organization) +4. [Remove yourself](/articles/removing-yourself-from-an-organization) from the organization. diff --git a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 03a6516b82..f7caf78b8b 100644 --- a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -90,6 +90,8 @@ You can only choose an additional permission if it's not already included in the - **View {% data variables.product.prodname_code_scanning %} results**: Ability to view {% data variables.product.prodname_code_scanning %} alerts. - **Dismiss or reopen {% data variables.product.prodname_code_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_code_scanning %} alerts. - **Delete {% data variables.product.prodname_code_scanning %} results**: Ability to delete {% data variables.product.prodname_code_scanning %} alerts. +- **View {% data variables.product.prodname_secret_scanning %} results**: Ability to view {% data variables.product.prodname_secret_scanning %} alerts. +- **Dismiss or reopen {% data variables.product.prodname_secret_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_secret_scanning %} alerts. ## Precedence for different levels of access 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 7ae4b60ebd..a62d2b892d 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 @@ -2,7 +2,7 @@ title: Roles in an organization intro: Organization owners can assign roles to individuals and teams giving them different sets of permissions in the organization. redirect_from: - - /articles/permission-levels-for-an-organization-early-access-program/ + - /articles/permission-levels-for-an-organization-early-access-program - /articles/permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization - /organizations/managing-peoples-access-to-your-organization-with-roles/permission-levels-for-an-organization @@ -16,7 +16,6 @@ topics: - Teams shortTitle: Roles in an organization --- - ## About roles {% data reusables.organizations.about-roles %} @@ -31,13 +30,13 @@ Organization-level roles are sets of permissions that can be assigned to individ You can assign individuals or teams to a variety of organization-level roles to control your members' access to your organization and its resources. For more details about the individual permissions included in each role, see "[Permissions for organization roles](#permissions-for-organization-roles)." ### Organization owners -Organization owners have complete administrative access to your organization. このロールは制限する必要がありますが、Organization で少なくとも 2 人は指定する必要があります。 詳細は、「[Organization の所有権の継続性を管理する](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)」を参照してください。 +Organization owners have complete administrative access to your organization. This role should be limited, but to no less than two people, in your organization. For more information, see "[Maintaining ownership continuity for your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)." -### Organizationメンバー +### Organization members The default, non-administrative role for people in an organization is the organization member. By default, organization members have a number of permissions, including the ability to create repositories and project boards. {% ifversion fpt or ghec %} -### 支払いマネージャー +### Billing managers Billing managers are users who can manage the billing settings for your organization, such as payment information. This is a useful option if members of your organization don't usually have access to billing resources. 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 %} @@ -51,16 +50,16 @@ Billing managers are users who can manage the billing settings for your organiza If your organization has a security team, you can use the security manager role to give members of the team the least access they need to the organization. For more information, see "[Managing security managers in your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)." {% endif %} -### {% data variables.product.prodname_github_app %} マネージャー +### {% data variables.product.prodname_github_app %} managers By default, only organization owners can manage the settings of {% data variables.product.prodname_github_apps %} owned by an organization. To allow additional users to manage {% data variables.product.prodname_github_apps %} owned by an organization, an owner can grant them {% data variables.product.prodname_github_app %} manager permissions. -When you designate a user as a {% data variables.product.prodname_github_app %} manager in your organization, you can grant them access to manage the settings of some or all {% data variables.product.prodname_github_apps %} owned by the organization. 詳しい情報については、以下を参照してください。 +When you designate a user as a {% data variables.product.prodname_github_app %} manager in your organization, you can grant them access to manage the settings of some or all {% data variables.product.prodname_github_apps %} owned by the organization. For more information, see: -- [GitHub App マネージャーを Organization に追加する](/articles/adding-github-app-managers-in-your-organization) -- [GitHub App マネージャーを Organization から削除する](/articles/removing-github-app-managers-from-your-organization) +- "[Adding GitHub App managers in your organization](/articles/adding-github-app-managers-in-your-organization)" +- "[Removing GitHub App managers from your organization](/articles/removing-github-app-managers-from-your-organization)" -### 外部コラボレーター -リポジトリへのアクセスを許可するとともに Organization のデータを安全に保つために、*外部のコラボレータ*を追加できます。 {% data reusables.organizations.outside_collaborators_description %} +### Outside collaborators +To keep your organization's data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %} ## Permissions for organization roles @@ -71,159 +70,154 @@ Some of the features listed below are limited to organizations using {% data var {% ifversion fpt or ghec %} <!--Dotcom and cloud version has extra column for Billing managers--> -| Organization permission | オーナー | メンバー | 支払いマネージャー | Security managers | -|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:-----:|:---------:|:-----------------:| -| リポジトリの作成 (詳細については「[Organization 内でリポジトリの作成を制限する](/articles/restricting-repository-creation-in-your-organization)」を参照) | **X** | **X** | | **X** | -| 支払い情報を表示および編集する | **X** | | **X** | | -| Organization に参加するようユーザを招待する | **X** | | | | -| Organization に参加する招待を編集およびキャンセルする | **X** | | | | -| Organization からメンバーを削除する | **X** | | | | -| 以前のメンバーを Oraganization に復帰させる | **X** | | | | -| **すべての Team** に対してユーザーを追加および削除する | **X** | | | | -| Organization メンバーを*チームメンテナ*に昇格させる | **X** | | | | -| コードレビューの割り当てを設定する ([「Team のコードレビューの割り当てを管理する」](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)を参照) | **X** | | | | -| スケジュールされたリマインダーを設定する (「[プルリクエストのスケジュールされたリマインダーを管理する](/github/setting-up-and-managing-organizations-and-teams/managing-scheduled-reminders-for-pull-requests)」を参照) | **X** | | | | -| **すべてのリポジトリに**コラボレーターを追加する | **X** | | | | -| Organization 参加ログにアクセスする | **X** | | | | -| Organization のプロフィールページを変更する (詳細は「[Organization のプロフィールについて](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)」を参照) | **X** | | | | -| Organization のドメインを検証する (詳細は「[Organization のドメインを検証する](/articles/verifying-your-organization-s-domain)」を参照) | **X** | | | | -| メール通知を検証済みあるいは承認済みドメインに制限する(詳細については[Organizationのメール通知を制限する](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)を参照してください) | **X** | | | | -| **すべての Team** を削除する | **X** | | | | -| すべてのリポジトリを含めて Organization のアカウントを削除する | **X** | | | | -| Team を作成する (詳細は「[Organization のチーム作成権限を設定する](/articles/setting-team-creation-permissions-in-your-organization)」を参照) | **X** | **X** | | **X** | -| [Organization の階層で Team を移動する](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | | -| プロジェクトボードを作成する (詳細は「[Organization のプロジェクトボード権限](/articles/project-board-permissions-for-an-oganization)」を参照) | **X** | **X** | | **X** | -| Organization の全メンバーおよび Team の表示 | **X** | **X** | | **X** | -| 参照可能なチームへの @メンション | **X** | **X** | | **X** | -| *チームメンテナ*に指定できる | **X** | **X** | | **X** | -| Organization のインサイトを表示する (詳細は「[Organization のインサイトを表示する](/articles/viewing-insights-for-your-organization)」を参照) | **X** | **X** | | **X** | -| パブリック Team のディスカッションを表示し、**すべての Team** に投稿する (詳細は「[Team ディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」を参照) | **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** | | | | -| コミット、プルリクエスト、Issue についてコメントを非表示にする (詳細は「[混乱を生むコメントを管理する](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | **X** | | **X** | -| Organization の Team ディスカッションを無効にする (詳細は「[Organization の Team ディスカッションを無効化する](/articles/disabling-team-discussions-for-your-organization)」を参照) | **X** | | | | -| Organization dependency insights の可視性を管理する (詳細は「[Organization dependency insights の可視性を変更する](/articles/changing-the-visibility-of-your-organizations-dependency-insights)」を参照) | **X** | | | | -| **すべての 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** | | | | -| スポンサーシップを別の Organization に関連付ける(詳細は、「[Organization へのスポンサーシップの関連付け](/sponsors/sponsoring-open-source-contributors/attributing-sponsorships-to-your-organization)」を参照してください)。 | **X** | | | | -| Organization 内のリポジトリからの {% data variables.product.prodname_pages %} サイトの公開を管理する(詳細は、「[Organization の {% data variables.product.prodname_pages %} サイトの公開を管理する](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)」を参照) | **X** | | | | -| Organization のセキュリティおよび分析設定を管理する (詳細は「[Organization のセキュリティおよび分析設定を管理する](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)」を参照) | **X** | | | **X** | -| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** | -| [SAML シングルサインオン](/articles/about-identity-and-access-management-with-saml-single-sign-on)を有効にして強制する | **X** | | | | -| [組織へのユーザーの SAML アクセスを管理する](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization) | **X** | | | | -| Organization の SSH 認証局を管理する (詳細は「[Organization の SSH 認証局を管理する](/articles/managing-your-organizations-ssh-certificate-authorities)」を参照) | **X** | | | | -| リポジトリを移譲する | **X** | | | | -| {% data variables.product.prodname_marketplace %} アプリケーションを購入、インストール、支払い管理、キャンセルする | **X** | | | | -| {% data variables.product.prodname_marketplace %} のアプリケーションをリストする | **X** | | | | -| Organization のリポジトリすべてについて、脆弱な依存関係についての [{% data variables.product.prodname_dependabot_alerts %}](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies) アラートを受け取る | **X** | | | **X** | -| {% data variables.product.prodname_dependabot_security_updates %} の管理 (「[{% data variables.product.prodname_dependabot_security_updates %} について](/github/managing-security-vulnerabilities/about-dependabot-security-updates)」を参照) | **X** | | | **X** | -| [フォークポリシーの管理](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) | **X** | | | | -| [Organization のパブリックリポジトリでのアクティビティを制限する](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization) | **X** | | | | -| Pull (read) *all repositories* in the organization | **X** | | | **X** | -| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | | -| Organization メンバーの[外部コラボレーター](#outside-collaborators)への変換 | **X** | | | | -| [Organization リポジトリへのアクセス権がある人を表示する](/articles/viewing-people-with-access-to-your-repository) | **X** | | | | -| [Organization リポジトリへのアクセス権がある人のリストをエクスポートする](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | | -| デフォルブランチ名を管理する (「[Organization のリポジトリのデフォルブランチ名を管理する](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization)」を参照) | **X** | | | | -| デフォルトラベルの管理 (「[Organization 内のリポジトリのためのデフォルトラベルを管理する](/articles/managing-default-labels-for-repositories-in-your-organization)」を参照) | **X** | | | | -| Team の同期を有効化する (「[Organization の Team 同期を管理する](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)」を参照) | **X** | | | | +| Organization permission | Owners | Members | Billing managers | Security managers | +|:--------------------|:------:|:-------:|:----------------:|:----------------:| +| Create repositories (see "[Restricting repository creation in your organization](/articles/restricting-repository-creation-in-your-organization)" for details) | **X** | **X** | | **X** | +| View and edit billing information | **X** | | **X** | | +| Invite people to join the organization | **X** | | | | +| Edit and cancel invitations to join the organization | **X** | | | | +| Remove members from the organization | **X** | | | | +| Reinstate former members to the organization | **X** | | | | +| Add and remove people from **all teams** | **X** | | | | +| Promote organization members to *team maintainer* | **X** | | | | +| Configure code review assignments (see "[Managing code review assignment for your team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)") | **X** | | | | +| Set scheduled reminders (see "[Managing scheduled reminders for pull requests](/github/setting-up-and-managing-organizations-and-teams/managing-scheduled-reminders-for-pull-requests)") | **X** | | | | +| Add collaborators to **all repositories** | **X** | | | | +| Access the organization audit log | **X** | | | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | | | +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | | | | +| Delete **all teams** | **X** | | | | +| Delete the organization account, including all repositories | **X** | | | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | | **X** | +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | | **X** | +| See all organization members and teams | **X** | **X** | | **X** | +| @mention any visible team | **X** | **X** | | **X** | +| Can be made a *team maintainer* | **X** | **X** | | **X** | +| View organization insights (see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization)" for details) | **X** | **X** | | **X** | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | | **X** | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | | +| Edit and delete team discussions in **all teams** (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)" for details) | **X** | | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **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)" for details) | **X** | | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | | | +| Sponsor accounts and manage the organization's sponsorships (see "[Sponsoring open-source contributors](/sponsors/sponsoring-open-source-contributors)" for details) | **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)" for details) | **X** | | | | +| Attribute your sponsorships to another organization (see "[Attributing sponsorships to your organization](/sponsors/sponsoring-open-source-contributors/attributing-sponsorships-to-your-organization)" for details ) | **X** | | | | +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | | | | +| Manage security and analysis settings (see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" for details) | **X** | | | **X** | +| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** |{% ifversion ghec %} +| Enable and enforce [SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on) | **X** | | | | +| [Manage a user'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) | **X** | | | | +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | |{% endif %} +| Transfer repositories | **X** | | | | +| Purchase, install, manage billing for, and cancel {% data variables.product.prodname_marketplace %} apps | **X** | | | | +| List apps in {% data variables.product.prodname_marketplace %} | **X** | | | | +| Receive [{% data variables.product.prodname_dependabot_alerts %} about vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies) for all of an organization's repositories | **X** | | | **X** | +| Manage {% data variables.product.prodname_dependabot_security_updates %} (see "[About {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)") | **X** | | | **X** | +| [Manage the forking policy](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) | **X** | | | +| [Limit activity in public repositories in an organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization) | **X** | | | | +| Pull (read) *all repositories* in the organization | **X** | | | **X** | +| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | | +| Manage the default branch name (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)") | **X** | | | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | |{% ifversion ghec %} +| Enable team synchronization (see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" for details) | **X** | | | |{% endif %} {% elsif ghes > 3.2 or ghae-issue-4999 %} <!--GHES 3.3+ and eventual GHAE release don't have the extra column for Billing managers, but have security managers--> -| Organization のアクション | オーナー | メンバー | Security managers | -|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:-----:|:--------------------------------------------:| -| Organization に参加するようユーザを招待する | **X** | | | -| Organization に参加する招待を編集およびキャンセルする | **X** | | | -| Organization からメンバーを削除する | **X** | | | | -| 以前のメンバーを Oraganization に復帰させる | **X** | | | | -| **すべての Team** に対してユーザーを追加および削除する | **X** | | | -| Organization メンバーを*チームメンテナ*に昇格させる | **X** | | | -| コードレビューの割り当てを設定する ([「Team のコードレビューの割り当てを管理する」](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)を参照) | **X** | | | -| **すべてのリポジトリに**コラボレーターを追加する | **X** | | | -| Organization 参加ログにアクセスする | **X** | | | -| Organization のプロフィールページを変更する (詳細は「[Organization のプロフィールについて](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)」を参照) | **X** | | |{% ifversion ghes > 3.1 %} -| Organization のドメインを検証する (詳細は「[Organization のドメインを検証する](/articles/verifying-your-organization-s-domain)」を参照) | **X** | | | -| メール通知を検証済みあるいは承認済みドメインに制限する(詳細については[Organizationのメール通知を制限する](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)を参照してください) | **X** | | -{% endif %} -| **すべての Team** を削除する | **X** | | | -| すべてのリポジトリを含めて Organization のアカウントを削除する | **X** | | | -| Team を作成する (詳細は「[Organization のチーム作成権限を設定する](/articles/setting-team-creation-permissions-in-your-organization)」を参照) | **X** | **X** | **X** | -| Organization の全メンバーおよび Team の表示 | **X** | **X** | **X** | -| 参照可能なチームへの @メンション | **X** | **X** | **X** | -| *チームメンテナ*に指定できる | **X** | **X** | **X** | -| リポジトリを移譲する | **X** | | | -| Organization のセキュリティおよび分析設定を管理する (詳細は「[Organization のセキュリティおよび分析設定を管理する](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)」を参照) | **X** | | **X** |{% ifversion ghes > 3.1 %} -| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | **X** |{% endif %}{% ifversion ghes > 3.2 %} -| {% data variables.product.prodname_dependabot_security_updates %} の管理 (「[{% data variables.product.prodname_dependabot_security_updates %} について](/github/managing-security-vulnerabilities/about-dependabot-security-updates)」を参照) | **X** | | **X** -{% endif %} -| Organization の SSH 認証局を管理する (詳細は「[Organization の SSH 認証局を管理する](/articles/managing-your-organizations-ssh-certificate-authorities)」を参照) | **X** | | | -| プロジェクトボードを作成する (詳細は「[Organization のプロジェクトボード権限](/articles/project-board-permissions-for-an-oganization)」を参照) | **X** | **X** | **X** | -| パブリック Team のディスカッションを表示し、**すべての Team** に投稿する (詳細は「[Team ディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」を参照) | **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** | | | | -| コミット、プルリクエスト、Issue についてコメントを非表示にする (詳細は「[混乱を生むコメントを管理する](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | **X** | **X** | -| Organization の Team ディスカッションを無効にする (詳細は「[Organization の Team ディスカッションを無効化する](/articles/disabling-team-discussions-for-your-organization)」を参照) | **X** | | | -| **すべての Team** で Team プロフィール画像を設定する (詳細は「[Team のプロフィール画像を設定する](/articles/setting-your-team-s-profile-picture)」を参照) | **X** | | |{% ifversion ghes > 3.0 %} -| Organization 内のリポジトリからの {% data variables.product.prodname_pages %} サイトの公開を管理する(詳細は、「[Organization の {% data variables.product.prodname_pages %} サイトの公開を管理する](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)」を参照) | **X** | | -{% endif %} -| [Organization の階層で Team を移動する](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | -| Pull (read) *all repositories* in the organization | **X** | | **X** | -| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | -| Organization メンバーの[外部コラボレーター](#outside-collaborators)への変換 | **X** | | | -| [Organization リポジトリへのアクセス権がある人を表示する](/articles/viewing-people-with-access-to-your-repository) | **X** | | | -| [Organization リポジトリへのアクセス権がある人のリストをエクスポートする](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | -| デフォルトラベルの管理 (「[Organization 内のリポジトリのためのデフォルトラベルを管理する](/articles/managing-default-labels-for-repositories-in-your-organization)」を参照) | **X** | | | +| Organization action | Owners | Members | Security managers | +|:--------------------|:------:|:-------:|:-------:| +| Invite people to join the organization | **X** | | | +| Edit and cancel invitations to join the organization | **X** | | | +| Remove members from the organization | **X** | | | | +| Reinstate former members to the organization | **X** | | | | +| Add and remove people from **all teams** | **X** | | | +| Promote organization members to *team maintainer* | **X** | | | +| Configure code review assignments (see "[Managing code review assignment for your team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)") | **X** | | | +| Add collaborators to **all repositories** | **X** | | | +| Access the organization audit log | **X** | | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | |{% ifversion ghes > 3.1 %} +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | | |{% endif %} +| Delete **all teams** | **X** | | | +| Delete the organization account, including all repositories | **X** | | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | **X** | +| See all organization members and teams | **X** | **X** | **X** | +| @mention any visible team | **X** | **X** | **X** | +| Can be made a *team maintainer* | **X** | **X** | **X** | +| Transfer repositories | **X** | | | +| Manage security and analysis settings (see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" for details) | **X** | | **X** |{% ifversion ghes > 3.1 %} +| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | **X** |{% endif %}{% ifversion ghes > 3.2 %} +| Manage {% data variables.product.prodname_dependabot_security_updates %} (see "[About {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)") | **X** | | **X** |{% endif %} +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | **X** | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | **X** | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | +| Edit and delete team discussions in **all teams** (for more information, see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)) | **X** | | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **X** | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | |{% ifversion ghes > 3.0 %} +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | | |{% endif %} +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | +| Pull (read) *all repositories* in the organization | **X** | | **X** | +| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | {% ifversion ghae %}| Manage IP allow lists (see "[Restricting network traffic to your enterprise](/admin/configuration/restricting-network-traffic-to-your-enterprise)") | **X** | | |{% endif %} {% else %} <!--GHES and GHAE older versions don't have the extra column for Billing managers or Security managers--> -| Organization のアクション | オーナー | メンバー | -|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:------------------------------:| -| Organization に参加するようユーザを招待する | **X** | | -| Organization に参加する招待を編集およびキャンセルする | **X** | | -| Organization からメンバーを削除する | **X** | | | -| 以前のメンバーを Oraganization に復帰させる | **X** | | | -| **すべての Team** に対してユーザーを追加および削除する | **X** | | -| Organization メンバーを*チームメンテナ*に昇格させる | **X** | | -| Configure code review assignments (see "[Managing code review settings for your team](/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team)")) | **X** | | -| **すべてのリポジトリに**コラボレーターを追加する | **X** | | -| Organization 参加ログにアクセスする | **X** | | -| Organization のプロフィールページを変更する (詳細は「[Organization のプロフィールについて](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)」を参照) | **X** | | |{% ifversion ghes > 3.1 %} -| Organization のドメインを検証する (詳細は「[Organization のドメインを検証する](/articles/verifying-your-organization-s-domain)」を参照) | **X** | | -| メール通知を検証済みあるいは承認済みドメインに制限する(詳細については[Organizationのメール通知を制限する](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)を参照してください) | **X** | -{% endif %} -| **すべての Team** を削除する | **X** | | -| すべてのリポジトリを含めて Organization のアカウントを削除する | **X** | | -| Team を作成する (詳細は「[Organization のチーム作成権限を設定する](/articles/setting-team-creation-permissions-in-your-organization)」を参照) | **X** | **X** | -| Organization の全メンバーおよび Team の表示 | **X** | **X** | -| 参照可能なチームへの @メンション | **X** | **X** | -| *チームメンテナ*に指定できる | **X** | **X** | -| リポジトリを移譲する | **X** | | -| Organization の SSH 認証局を管理する (詳細は「[Organization の SSH 認証局を管理する](/articles/managing-your-organizations-ssh-certificate-authorities)」を参照) | **X** | | -| プロジェクトボードを作成する (詳細は「[Organization のプロジェクトボード権限](/articles/project-board-permissions-for-an-oganization)」を参照) | **X** | **X** | | -| パブリック Team のディスカッションを表示し、**すべての Team** に投稿する (詳細は「[Team ディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」を参照) | **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** | | | -| コミット、プルリクエスト、Issue についてコメントを非表示にする (詳細は「[混乱を生むコメントを管理する](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | **X** | **X** | -| Organization の Team ディスカッションを無効にする (詳細は「[Organization の Team ディスカッションを無効化する](/articles/disabling-team-discussions-for-your-organization)」を参照) | **X** | | | -| **すべての Team** で Team プロフィール画像を設定する (詳細は「[Team のプロフィール画像を設定する](/articles/setting-your-team-s-profile-picture)」を参照) | **X** | | |{% ifversion ghes > 3.0 %} -| Organization 内のリポジトリからの {% data variables.product.prodname_pages %} サイトの公開を管理する(詳細は、「[Organization の {% data variables.product.prodname_pages %} サイトの公開を管理する](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)」を参照) | **X** | -{% endif %} -| [Organization の階層で Team を移動する](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | -| Organization にある*すべてのリポジトリ*のプル (読み取り)、プッシュ (書き込み)、クローン作成 (コピー) | **X** | | -| Organization メンバーの[外部コラボレーター](#outside-collaborators)への変換 | **X** | | -| [Organization リポジトリへのアクセス権がある人を表示する](/articles/viewing-people-with-access-to-your-repository) | **X** | | -| [Organization リポジトリへのアクセス権がある人のリストをエクスポートする](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | -| デフォルトラベルの管理 (「[Organization 内のリポジトリのためのデフォルトラベルを管理する](/articles/managing-default-labels-for-repositories-in-your-organization)」を参照) | **X** | | -{% ifversion ghae %}| IP許可リストの管理(see "[Enterpriseへのネットワークトラフィックの制限](/admin/configuration/restricting-network-traffic-to-your-enterprise)") | **X** | |{% endif %} +| Organization action | Owners | Members | +|:--------------------|:------:|:-------:| +| Invite people to join the organization | **X** | | +| Edit and cancel invitations to join the organization | **X** | | +| Remove members from the organization | **X** | | | +| Reinstate former members to the organization | **X** | | | +| Add and remove people from **all teams** | **X** | | +| Promote organization members to *team maintainer* | **X** | | +| Configure code review assignments (see "[Managing code review settings for your team](/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team)")) | **X** | | +| Add collaborators to **all repositories** | **X** | | +| Access the organization audit log | **X** | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | |{% ifversion ghes > 3.1 %} +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | |{% endif %} +| Delete **all teams** | **X** | | +| Delete the organization account, including all repositories | **X** | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | +| See all organization members and teams | **X** | **X** | +| @mention any visible team | **X** | **X** | +| Can be made a *team maintainer* | **X** | **X** | +| Transfer repositories | **X** | | +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | +| Edit and delete team discussions in **all teams** (for more information, see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)) | **X** | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **X** | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | |{% ifversion ghes > 3.0 %} +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | |{% endif %} +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | +| Pull (read), push (write), and clone (copy) *all repositories* in the organization | **X** | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | +{% ifversion ghae %}| Manage IP allow lists (see "[Restricting network traffic to your enterprise](/admin/configuration/restricting-network-traffic-to-your-enterprise)") | **X** | |{% endif %} {% endif %} -## 参考リンク +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" -- [Organization のプロジェクトボード権限](/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization) +- "[Project board permissions for an organization](/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization)" 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 a359591717..5839c6e333 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 @@ -1,68 +1,64 @@ --- -title: SAML シングルサインオンを使うアイデンティティおよびアクセス管理について -intro: 'ユーザのアイデンティティとアプリケーションをアイデンティティプロバイダ (IdP) で集中管理する場合、Security Assertion Markup Language (SAML) シングルサインオン (SSO) を設定して {% data variables.product.prodname_dotcom %} での Organization のリソースを保護することができます。' -product: '{% data reusables.gated-features.saml-sso %}' +title: About identity and access management with SAML single sign-on +intro: 'If you centrally manage your users'' identities and applications with an identity provider (IdP), you can configure Security Assertion Markup Language (SAML) single sign-on (SSO) to protect your organization''s resources on {% data variables.product.prodname_dotcom %}.' redirect_from: - /articles/about-identity-and-access-management-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-identity-and-access-management-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAML SSOを使うIAM +shortTitle: IAM with SAML SSO --- {% data reusables.enterprise-accounts.emu-saml-note %} -## SAML SSO について +## About SAML SSO {% data reusables.saml.dotcom-saml-explanation %} {% data reusables.saml.saml-accounts %} -Organization のオーナーは、個々の Organization に SAML SSO を適用できます。または、Enterprise のオーナーは、Enterprise アカウント内のすべての Organization に SAML SSO を適用できます。 詳しい情報については、「[Enterprise 向けのSAML シングルサインオンを設定する](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)」を参照してください。 - -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +Organization owners can enforce SAML SSO for an individual organization, or enterprise owners can enforce SAML SSO for all organizations in an enterprise account. For more information, see "[Configuring SAML single sign-on for your enterprise](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)." {% data reusables.saml.outside-collaborators-exemption %} -Organization で SAML SSO を有効化する前に、IdP を Organization に接続する必要があります。 詳細は「[アイデンティティプロバイダを Organization に接続する](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)」を参照してください。 +Before enabling SAML SSO for your organization, you'll need to connect your IdP to your organization. For more information, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." -1 つの Organization に対して、SAML SSO は無効化、強制なしの有効化、強制ありの有効化ができます。 Organization に対して SAML SSO を有効にし、Organization のメンバーが IdP での認証に成功した後、SAML SSO 設定を強制できます。 {% data variables.product.prodname_dotcom %} Organization に対して SAML SSO を強制する方法については、「[Organization で SAML シングルサインオンを施行する](/articles/enforcing-saml-single-sign-on-for-your-organization)」を参照してください。 +For an organization, SAML SSO can be disabled, enabled but not enforced, or enabled and enforced. After you enable SAML SSO for your organization and your organization's members successfully authenticate with your IdP, you can enforce the SAML SSO configuration. For more information about enforcing SAML SSO for your {% data variables.product.prodname_dotcom %} organization, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." -認証を受けて Organization のリソースにアクセスするために、メンバーは定期的に IdP の認証を受ける必要があります。 このログイン間隔は利用しているアイデンティティプロバイダ (IdP) によって指定されますが、一般的には 24 時間です。 このように定期的にログインしなければならないことから、アクセスの長さには制限があり、ユーザがアクセスを続行するには再認証が必要になります。 +Members must periodically authenticate with your IdP to authenticate and gain access to your organization's resources. The duration of this login period is specified by your IdP and is generally 24 hours. This periodic login requirement limits the length of access and requires users to re-identify themselves to continue. -コマンドラインで API と Git を使用して、Organization の保護されているリソースにアクセスするには、メンバーが個人アクセストークンまたは SSH キーで認可および認証を受ける必要があります。 詳しい情報については、「[SAMLシングルサインオンで利用するために個人アクセストークンを認可する](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)」と、「[SAML シングルサインオンで使用するために SSH キーを認可する](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)」を参照してください。 +To access the organization's protected resources using the API and Git on the command line, members must authorize and authenticate with a personal access token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)." -The first time a member uses SAML SSO to access your organization, {% data variables.product.prodname_dotcom %} automatically creates a record that links your organization, the member's account on {% data variables.product.product_location %}, and the member's account on your IdP. Organization または Enterprise アカウントのメンバーについて、リンクされた SAML アイデンティティ、アクティブセッション、認可されたクレデンシャルの表示と取り消しが可能です。 詳細は、「[Organization へのメンバーの SAML アクセスの表示と管理](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)」と「[Enterprise アカウントへのユーザの SAML アクセスの表示および管理](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)」を参照してください。 +The first time a member uses SAML SSO to access your organization, {% data variables.product.prodname_dotcom %} automatically creates a record that links your organization, the member's account on {% data variables.product.product_location %}, and the member's account on your IdP. You can view and revoke the linked SAML identity, active sessions, and authorized credentials for members of your organization or enterprise account. 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)" and "[Viewing and managing a user's SAML access to your enterprise account](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)." -新しいリポジトリを作成するときにメンバーが SAML SSO セッションでサインインする場合、そのリポジトリのデフォルトの可視性はプライベートになります。 それ以外の場合、デフォルトの可視性はパブリックです。 For more information on repository visibility, see "[About repositories](/repositories/creating-and-managing-repositories/about-repositories#about-repository-visibility)." +If members are signed in with a SAML SSO session when they create a new repository, the default visibility of that repository is private. Otherwise, the default visibility is public. For more information on repository visibility, see "[About repositories](/repositories/creating-and-managing-repositories/about-repositories#about-repository-visibility)." -{% data variables.product.prodname_oauth_app %}を認可するために、Organization メンバーにはアクティブな SAML セッションが必要です。 {% data variables.contact.contact_support %} に連絡すれば、この要件をオプトアウトできます。 ただし、この要件をオプトアウトすることを {% data variables.product.product_name %} はお勧めしません。Organization でアカウント乗っ取りやデータ漏えいのリスクが高くなるからです。 +Organization members must also have an active SAML session to authorize an {% data variables.product.prodname_oauth_app %}. You can opt out of this requirement by contacting {% data variables.contact.contact_support %}. {% data variables.product.product_name %} does not recommend opting out of this requirement, which will expose your organization to a higher risk of account takeovers and potential data loss. {% data reusables.saml.saml-single-logout-not-supported %} -## サポートされているSAMLサービス +## Supported SAML services {% data reusables.saml.saml-supported-idps %} -一部の IdPは、SCIM を介した {% data variables.product.prodname_dotcom %} Organization へのプロビジョニングアクセスをサポートしています。 {% data reusables.scim.enterprise-account-scim %} 詳しい情報については、「[SCIM について](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim) 」を参照してください。 +Some IdPs support provisioning access to a {% data variables.product.prodname_dotcom %} organization via SCIM. {% data reusables.scim.enterprise-account-scim %} For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." -## SAML SSO で Organization にメンバーを追加する +## Adding members to an organization using SAML SSO -SAML SSO を有効化後、Organization に新しいメンバーを追加する方法はいくつかあります。 Organization のオーナーは、{% data variables.product.product_name %} で手作業または API を使って、新しいメンバーを招待できます。 詳細は {} の「[Organization に参加するようユーザを招待する](/articles/inviting-users-to-join-your-organization)」および「[メンバー](/rest/reference/orgs#add-or-update-organization-membership)」を参照してください。 +After you enable SAML SSO, there are multiple ways you can add new members to your organization. Organization owners can invite new members manually on {% data variables.product.product_name %} or using the API. For more information, see "[Inviting users to join your organization](/articles/inviting-users-to-join-your-organization)" and "[Members](/rest/reference/orgs#add-or-update-organization-membership)." -新しいユーザを、Organization のオーナーから招待せずにプロビジョニングするには、`https://github.com/orgs/ORGANIZATION/sso/sign_up` の URL の _ORGANIZATION_ をあなたの Organization 名に置き換えてアクセスします。 たとえば、あなたの IdP にアクセスできる人なら誰でも、IdP のダッシュボードにあるリンクをクリックして、あなたの {% data variables.product.prodname_dotcom %} Organization に参加できるよう、IdP を設定できます。 +To provision new users without an invitation from an organization owner, you can use the URL `https://github.com/orgs/ORGANIZATION/sso/sign_up`, replacing _ORGANIZATION_ with the name of your organization. For example, you can configure your IdP so that anyone with access to the IdP can click a link on the IdP's dashboard to join your {% data variables.product.prodname_dotcom %} organization. -IdP が SCIM をサポートしている場合、{% data variables.product.prodname_dotcom %} は、IdP でアクセス権限が付与されたとき Organization に参加するよう自動的にメンバーを招待できます。 SAML IdP での メンバーの {% data variables.product.prodname_dotcom %} Organization へのアクセス権限を削除すると、そのメンバーは {% data variables.product.prodname_dotcom %} Organization から自動的に削除されます。 詳しい情報については「[SCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)」を参照してください。 +If your IdP supports SCIM, {% data variables.product.prodname_dotcom %} can automatically invite members to join your organization when you grant access on your IdP. If you remove a member's access to your {% data variables.product.prodname_dotcom %} organization on your SAML IdP, the member will be automatically removed from the {% data variables.product.prodname_dotcom %} organization. For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% data reusables.organizations.team-synchronization %} {% data reusables.saml.saml-single-logout-not-supported %} -## 参考リンク +## Further reading -- [2要素認証とSAMLシングルサインオンについて](/articles/about-two-factor-authentication-and-saml-single-sign-on) -- [SAML シングルサインオンでの認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on) +- "[About two-factor authentication and SAML single sign-on ](/articles/about-two-factor-authentication-and-saml-single-sign-on)" +- "[About authentication with SAML single sign-on](/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.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md index 1102a0d303..b4df5f9aec 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md @@ -1,12 +1,10 @@ --- -title: SCIM について -intro: System for Cross-domain Identity Management (SCIM) を使うと、管理者はユーザの識別情報のシステム間での交換を自動化できます。 -product: '{% data reusables.gated-features.saml-sso %}' +title: About SCIM +intro: 'With System for Cross-domain Identity Management (SCIM), administrators can automate the exchange of user identity information between systems.' redirect_from: - /articles/about-scim - /github/setting-up-and-managing-organizations-and-teams/about-scim versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,20 +13,20 @@ topics: {% data reusables.enterprise-accounts.emu-scim-note %} -[SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on) を Organization 内で使うと、Organization のメンバーの {% data variables.product.product_name %}へのアクセスの追加、管理、削除のための SCIM を実装できます。 たとえば、管理者は Organization のメンバーのデプロビジョニングに SCIM を使い、自動的にメンバーを Organization から削除できます。 +If you use [SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on) in your organization, you can implement SCIM to add, manage, and remove organization members' access to {% data variables.product.product_name %}. For example, an administrator can deprovision an organization member using SCIM and automatically remove the member from the organization. -SCIM を実装せずに SAML SSO を使った場合、自動のプロビジョニング解除は行われません。 Organization のメンバーのアクセスが ldP から削除された後、セッションの有効期限が切れても、そのメンバーは Organization から自動的には削除されません。 認証済みのトークンにより、セッションが期限切れになった後も Organization へのアクセスが許可されます。 アクセスを削除するには、Organization の管理者は手動で認証済みのトークンを Organization から削除するか、その削除を SCIM で自動化します。 +If you use SAML SSO without implementing SCIM, you won't have automatic deprovisioning. When organization members' sessions expire after their access is removed from the IdP, they aren't automatically removed from the organization. Authorized tokens grant access to the organization even after their sessions expire. To remove access, organization administrators can either manually remove the authorized token from the organization or automate its removal with SCIM. -Organization の {% data variables.product.product_name %} の SCIM API と連携できるアイデンティティプロバイダとして、以下のものがあります。 For more information, see [SCIM](/rest/reference/scim) in the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API documentation. +These identity providers are compatible with the {% data variables.product.product_name %} SCIM API for organizations. For more information, see [SCIM](/rest/reference/scim) in the {% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API documentation. - Azure AD - Okta - OneLogin {% data reusables.scim.enterprise-account-scim %} -## 参考リンク +## Further reading -- [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) -- [アイデンティティプロバイダの Organization への接続](/articles/connecting-your-identity-provider-to-your-organization) -- [Organization での SAML シングルサインオンの有効化とテスト](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) -- [Organization へのメンバーの SAML アクセスの表示と管理](/github/setting-up-and-managing-organizations-and-teams//viewing-and-managing-a-members-saml-access-to-your-organization) +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[Connecting your identity provider to your organization](/articles/connecting-your-identity-provider-to-your-organization)" +- "[Enabling and testing SAML single sign-on for your organization](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)" +- "[Viewing and managing a member's SAML access to your organization](/github/setting-up-and-managing-organizations-and-teams//viewing-and-managing-a-members-saml-access-to-your-organization)" diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md index 7ce2a79b28..61ab67a115 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md @@ -1,33 +1,34 @@ --- -title: アイデンティティプロバイダが利用できない場合の Organization へのアクセス -intro: 'アイデンティティプロバイダが利用できない場合でも、Organization の管理者はシングルサインオンをバイパスし、リカバリコードを利用して {% data variables.product.product_name %}にサインインできます。' -product: '{% data reusables.gated-features.saml-sso %}' +title: Accessing your organization if your identity provider is unavailable +intro: 'Organization administrators can sign into {% data variables.product.product_name %} even if their identity provider is unavailable by bypassing single sign-on and using their recovery codes.' redirect_from: - /articles/accessing-your-organization-if-your-identity-provider-is-unavailable - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organization-if-your-identity-provider-is-unavailable versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 利用不可能なアイデンティティプロバイダ +shortTitle: Unavailable identity provider --- -Organization の管理者は、シングルサインオンをバイパスするために、[ダウンロード済み、あるいは保存済みのリカバリコードのいずれか](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)を利用できます。 You may have saved these to a password manager, such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). +Organization administrators can use [one of their downloaded or saved recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes) to bypass single sign-on. You may have saved these to a password manager, such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% note %} -**メモ:** リカバリコードは一度しか使えず、順番に使わなければなりません。 リカバリコードにより、アクセスが 24 時間許可されます。 +**Note:** You can only use recovery codes once and you must use them in consecutive order. Recovery codes grant access for 24 hours. {% endnote %} -1. シングルサインオンをバイパスするには、シングルサインオンダイアログの下部で、[**Use a recovery code**] をクリックします。 ![リカバリコードを入力するためのリンク](/assets/images/help/saml/saml_use_recovery_code.png) -2. [Recovery Code] フィールドにリカバリコードを入力します。 ![リカバリコードを入力するフィールド](/assets/images/help/saml/saml_recovery_code_entry.png) -3. [**Verify**] をクリックします。 ![リカバリコードを検証するボタン](/assets/images/help/saml/saml_verify_recovery_codes.png) +1. At the bottom of the single sign-on dialog, click **Use a recovery code** to bypass single sign-on. +![Link to enter your recovery code](/assets/images/help/saml/saml_use_recovery_code.png) +2. In the "Recovery Code" field, type your recovery code. +![Field to enter your recovery code](/assets/images/help/saml/saml_recovery_code_entry.png) +3. Click **Verify**. +![Button to verify your recovery code](/assets/images/help/saml/saml_verify_recovery_codes.png) -一度使用したリカバリコードは二度と使用できないということを覚えておいてください。 リカバリコードは再利用できません。 +After you've used a recovery code, make sure to note that it's no longer valid. You will not be able to reuse the recovery code. -## 参考リンク +## Further reading -- [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) +- "[About identity and access management with SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on)" 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 def4385d35..0c2dba8ac3 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 @@ -1,59 +1,59 @@ --- -title: Okta を使う SAML シングルサインオンおよび SCIM を設定する -intro: 'Okta を使う Security Assertion Markup Language (SAML) シングルサインオン (SSO) および System for Cross-domain Identity Management (SCIM) を使用すると、 {% data variables.product.prodname_dotcom %} で Organization へのアクセスを自動的に管理することができます。' +title: Configuring SAML single sign-on and SCIM using Okta +intro: 'You can use Security Assertion Markup Language (SAML) single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) with Okta to automatically manage access to your organization on {% data variables.product.product_location %}.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/configuring-saml-single-sign-on-and-scim-using-okta -product: '{% data reusables.gated-features.saml-sso %}' permissions: Organization owners can configure SAML SSO and SCIM using Okta for an organization. versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: OktaでSAMLとSCIMを設定する +shortTitle: Configure SAML & SCIM with Okta --- -## Okta での SAML と SCIM について +## About SAML and SCIM with Okta -Organization がアイデンティティプロバイダ (IdP) である Okta を使う SAML SSO と SCIM を使用するように設定すれば、{% data variables.product.prodname_dotcom %} Organization や他の Web アプリケーションへのアクセスを、1 つの集中インターフェースから制御することができます。 +You can control access to your organization on {% data variables.product.product_location %} and other web applications from one central interface by configuring the organization to use SAML SSO and SCIM with Okta, an Identity Provider (IdP). -SAML SSO は、リポジトリや Issue、プルリクエストといった Organization のリソースに対するアクセスを制御し、保護します。 SCIM は、Okta で変更を行ったとき、{% data variables.product.prodname_dotcom %} の Organization に対するメンバーのアクセスを自動的に追加、管理、削除します。 詳しい情報については、「[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)」を参照してください。 +SAML SSO controls and secures access to organization resources like repositories, issues, and pull requests. SCIM automatically adds, manages, and removes members' access to your organization on {% data variables.product.product_location %} when you make changes in 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](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." -SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_cloud %} アプリケーションを割り当てる任意のユーザが次のプロビジョニング機能を使えるようになります。 +After you enable SCIM, the following provisioning features are available for any users that you assign your {% data variables.product.prodname_ghe_cloud %} application to in Okta. -| 機能 | 説明 | -| ------------- | -------------------------------------------------------------------------------------------------------------------- | -| 新しいユーザのプッシュ | Okta でユーザを作成すると、{% data variables.product.prodname_dotcom %} Organization に参加するためのメールがユーザに届きます。 | -| ユーザ無効化のプッシュ | Okta でユーザを無効化すると、そのユーザは {% data variables.product.prodname_dotcom %} Organization から削除されます。 | -| プロフィール更新のプッシュ | Okta でユーザのプロフィールを更新すると、そのユーザの {% data variables.product.prodname_dotcom %} の Organization でのメンバーシップに関するメタデータが更新されます。 | -| ユーザの再アクティブ化 | Okta でユーザを再アクティブ化すると、{% data variables.product.prodname_dotcom %} の Organization に復帰するための招待メールがそのユーザに届きます。 | +| Feature | Description | +| --- | --- | +| Push New Users | When you create a new user in Okta, the user will receive an email to join your organization on {% data variables.product.product_location %}. | +| Push User Deactivation | When you deactivate a user in Okta, Okta will remove the user from your organization on {% data variables.product.product_location %}. | +| Push Profile Updates | When you update a user's profile in Okta, Okta will update the metadata for the user's membership in your organization on {% data variables.product.product_location %}. | +| Reactivate Users | When you reactivate a user in Okta, Okta will send an email invitation for the user to rejoin your organization on {% data variables.product.product_location %}. | -## 必要な環境 +## Prerequisites {% data reusables.saml.use-classic-ui %} -## Okta で {% data variables.product.prodname_ghe_cloud %} アプリケーションを追加する +## Adding the {% data variables.product.prodname_ghe_cloud %} application in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.add-okta-application %} {% data reusables.saml.search-ghec-okta %} -4. [Github Enterprise Cloud - Organization] の右で [**Add**] をクリックします。 ![{% data variables.product.prodname_ghe_cloud %} アプリケーションの [Add] をクリック](/assets/images/help/saml/okta-add-ghec-application.png) +4. To the right of "Github Enterprise Cloud - Organization", click **Add**. + ![Clicking "Add" for the {% data variables.product.prodname_ghe_cloud %} application](/assets/images/help/saml/okta-add-ghec-application.png) -5. [**GitHub Organization**] フィールドに、{% data variables.product.prodname_dotcom %} の Organization 名を入力します。 たとえば、Organization の URL が https://github.com/octo-org の場合、Organization 名は `octo-org` となります。 ![GitHub の Organization 名を入力](/assets/images/help/saml/okta-github-organization-name.png) +5. In the **GitHub Organization** field, type the name of your organization on {% data variables.product.product_location %}. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`. + ![Type GitHub organization name](/assets/images/help/saml/okta-github-organization-name.png) -6. [**Done**] をクリックします。 +6. Click **Done**. -## SAML SSO の有効化とテスト +## Enabling and testing SAML SSO {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.assign-yourself-to-okta %} {% data reusables.saml.okta-sign-on-tab %} {% data reusables.saml.okta-view-setup-instructions %} -6. SAML 2.0 の設定方法に関するガイドから、サインオン URL、発行者 URL、公開の証明書を使用して、{% data variables.product.prodname_dotcom %} での SAML SSO を有効化してテストします。 詳細は「[Organization での SAML シングルサインオンの有効化とテスト](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)」を参照してください。 +6. Enable and test SAML SSO on {% data variables.product.prodname_dotcom %} using the sign on URL, issuer URL, and public certificates from the "How to Configure SAML 2.0" guide. For more information, see "[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)." -## Okta で SCIM を使ってアクセスのプロビジョニングを設定する +## Configuring access provisioning with SCIM in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} @@ -62,22 +62,25 @@ SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_clo {% data reusables.saml.okta-enable-api-integration %} -6. [**Authenticate with Github Enterprise Cloud - Organization**] をクリックします。 ![Okta アプリケーションの [Authenticate with Github Enterprise Cloud - Organization] ボタン](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) +6. Click **Authenticate with Github Enterprise Cloud - Organization**. + !["Authenticate with Github Enterprise Cloud - Organization" button for Okta application](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) -7. Organization 名の右にある [**Grant**] をクリックします。 ![Organization にアクセスできるよう Okta SCIM インテグレーションを認証する [Grant] ボタン](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) +7. To the right of your organization's name, click **Grant**. + !["Grant" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) {% note %} - **注釈**: リストに自分の Organization が表示されていない場合は、ブラウザで `https://github.com/orgs/ORGANIZATION-NAME/sso` を開き、IdP での管理者アカウントを使用して SAML SSO 経由で Organization に認証してもらいます。 たとえば、Organization 名が `octo-org` の場合、URL は `https://github.com/orgs/octo-org/sso` となります。 詳しい情報については「[SAML シングルサインオンでの認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)」を参照してください。 + **Note**: If you don't see your organization in the list, go to `https://github.com/orgs/ORGANIZATION-NAME/sso` in your browser and authenticate with your organization via SAML SSO using your administrator account on the IdP. For example, if your organization's name is `octo-org`, the URL would be `https://github.com/orgs/octo-org/sso`. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -1. [**Authorize OktaOAN**] をクリックします。 ![Organization にアクセスできるよう Okta SCIM インテグレーションを認証する [Authorize OktaOAN] ボタン](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) +1. Click **Authorize OktaOAN**. + !["Authorize OktaOAN" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) {% data reusables.saml.okta-save-provisioning %} {% data reusables.saml.okta-edit-provisioning %} -## 参考リンク +## Further reading -- 「[Okta を使用して Enterprise アカウントの SAML シングルサインオンを設定する](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)」 -- [Organization の Team 同期を管理する](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization#enabling-team-synchronization-for-okta) -- Okta ドキュメントの「[Understanding SAML](https://developer.okta.com/docs/concepts/saml/)」 -- Okta ドキュメントの「[Understanding SCIM](https://developer.okta.com/docs/concepts/scim/)」 +- "[Configuring SAML single sign-on for your enterprise account using Okta](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" +- "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization#enabling-team-synchronization-for-okta)" +- [Understanding SAML](https://developer.okta.com/docs/concepts/saml/) in the Okta documentation +- [Understanding SCIM](https://developer.okta.com/docs/concepts/scim/) in the Okta documentation 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 e98bf48fc0..6917f58951 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,31 +1,29 @@ --- -title: アイデンティティプロバイダを Organization に接続する -intro: 'SAML シングルサインオンおよび SCIM を使うには、あなたのアイデンティティプロバイダを、あなたの {% data variables.product.product_name %} Organization に接続する必要があります。' -product: '{% data reusables.gated-features.saml-sso %}' +title: Connecting your identity provider to your organization +intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider to your {% 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 versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: IdPの接続 +shortTitle: Connect an IdP --- -When you enable SAML SSO for your {% data variables.product.product_name %} organization, you connect your identity provider (IdP) to your organization. 詳細は「[Organization での SAML シングルサインオンの有効化とテスト](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)」を参照してください。 +When you enable SAML SSO for your {% data variables.product.product_name %} organization, you connect your identity provider (IdP) to your organization. For more information, see "[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)." You can find the SAML and SCIM implementation details for your IdP in the IdP's documentation. -- Active Directory フェデレーションサービス (AD FS): [SAML](https://docs.microsoft.com/windows-server/identity/active-directory-federation-services) -- Azure Active Directory (Azure AD): [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) および [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) -- Okta: [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) および [SCIM](http://developer.okta.com/standards/SCIM/) -- OneLogin: [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) および [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) -- PingOne: [SAML](https://support.pingidentity.com/s/marketplace-integration/a7i1W0000004ID3QAM/github-connector) -- Shibboleth: [SAML](https://wiki.shibboleth.net/confluence/display/IDP30/Home) +- Active Directory Federation Services (AD FS) [SAML](https://docs.microsoft.com/windows-server/identity/active-directory-federation-services) +- Azure Active Directory (Azure AD) [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) and [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) +- Okta [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) and [SCIM](http://developer.okta.com/standards/SCIM/) +- OneLogin [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) and [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) +- PingOne [SAML](https://support.pingidentity.com/s/marketplace-integration/a7i1W0000004ID3QAM/github-connector) +- Shibboleth [SAML](https://wiki.shibboleth.net/confluence/display/IDP30/Home) {% note %} -**メモ:** {% data variables.product.product_name %} がサポートする SCIM アイデンティティプロバイダは Azure AD、Okta、OneLogin です。 {% data reusables.scim.enterprise-account-scim %} SCIMに関する詳しい情報については、「[SCIM について](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim) 」を参照してください。 +**Note:** {% data variables.product.product_name %} supported identity providers for SCIM are Azure AD, Okta, and OneLogin. {% data reusables.scim.enterprise-account-scim %} For more information about SCIM, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% endnote %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md index 29e567a25c..01040de16f 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md @@ -1,37 +1,37 @@ --- -title: Organization の SAML シングルサインオンのリカバリコードをダウンロードする -intro: 'Organization のアイデンティティプロバイダを利用できない場合でも変わりなく {% data variables.product.product_name %} にアクセスできるよう、Organization の管理者は Organization 用に SAML シングルサインオンのリカバリコードをダウンロードする必要があります。' +title: Downloading your organization's SAML single sign-on recovery codes +intro: 'Organization administrators should download their organization''s SAML single sign-on recovery codes to ensure that they can access {% data variables.product.product_name %} even if the identity provider for the organization is unavailable.' redirect_from: - /articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes - /articles/downloading-your-organizations-saml-single-sign-on-recovery-codes - /github/setting-up-and-managing-organizations-and-teams/downloading-your-organizations-saml-single-sign-on-recovery-codes -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAMLリカバリコードのダウンロード +shortTitle: Download SAML recovery codes --- -リカバリコードは共有や配布しないでください。 We recommend saving them with a password manager such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). +Recovery codes should not be shared or distributed. We recommend saving them with a password manager such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. [SAML single sign-on] の下にあるリカバリコードに関する注意書きの [**Save your recovery codes**] をクリックします。 ![リカバリコードを表示し保存するリンク](/assets/images/help/saml/saml_recovery_codes.png) -6. [**Download**]、[**Print**]、または [**Copy**] をクリックしてリカバリコードを保存します。 ![リカバリコードをダウンロード、印刷、コピーするボタン](/assets/images/help/saml/saml_recovery_code_options.png) +5. Under "SAML single sign-on", in the note about recovery codes, click **Save your recovery codes**. +![Link to view and save your recovery codes](/assets/images/help/saml/saml_recovery_codes.png) +6. Save your recovery codes by clicking **Download**, **Print**, or **Copy**. +![Buttons to download, print, or copy your recovery codes](/assets/images/help/saml/saml_recovery_code_options.png) {% note %} - **メモ:** リカバリコードがあれば IdP を使用できないときに {% data variables.product.product_name %}に戻れます。 新しいリカバリコードを生成すると、「シングルサインオンのリカバリコード」ページに表示されているリカバリコードは自動的に更新されます。 + **Note:** Your recovery codes will help get you back into {% data variables.product.product_name %} if your IdP is unavailable. If you generate new recovery codes the recovery codes displayed on the "Single sign-on recovery codes" page are automatically updated. {% endnote %} -7. リカバリコードを {% data variables.product.product_name %}へのアクセス回復のために一度使用すると、再利用はできません。 {% data variables.product.product_name %} へのアクセスは、シングルサインオンを使用してサインインするか聞かれるまでの 24 時間だけ有効です。 +7. Once you use a recovery code to regain access to {% data variables.product.product_name %}, it cannot be reused. Access to {% data variables.product.product_name %} will only be available for 24 hours before you'll be asked to sign in using single sign-on. -## 参考リンク +## Further reading -- [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) -- 「[アイデンティティプロバイダが利用できない場合の Organization へのアクセス](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)」 +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[Accessing your organization if your identity provider is unavailable](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)" 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 41c444d281..00cc0a8af6 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 @@ -1,60 +1,63 @@ --- -title: Organization 向けの SAML シングルサインオンを有効化してテストする -intro: Organization のオーナーと管理者は、SAML シングルサインオンを有効にして、Organization のセキュリティを強化できます。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Enabling and testing SAML single sign-on for your organization +intro: Organization owners and admins can enable SAML single sign-on to add an extra layer of security to their organization. redirect_from: - /articles/enabling-and-testing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-and-testing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAML SSOの有効化とテスト +shortTitle: Enable & test SAML SSO --- ## About SAML single sign-on -すべてのメンバーに使用するように強制する必要なく、Organization 内で SAML SSO を有効化できます。 SAML SSO を Organization 内で強制せずに有効化することで、Organization での SAML SSO の導入がスムーズになります。 Organization 内の大半のメンバーが SAML SSO を使用するようになったら、Organization 内で強制化できます。 +You can enable SAML SSO in your organization without requiring all members to use it. Enabling but not enforcing SAML SSO in your organization can help smooth your organization's SAML SSO adoption. Once a majority of your organization's members use SAML SSO, you can enforce it within your organization. -SAML SSO を有効化しても強制はしない場合、SAML SSO を使用しないメンバーは、引き続き Organization のメンバーであり続けます。 SAML SSO の強制化の詳細については、「[Organization で SAML シングルサインオンを施行する](/articles/enforcing-saml-single-sign-on-for-your-organization)」を参照してください。 +If you enable but don't enforce SAML SSO, organization members who choose not to use SAML SSO can still be members of the organization. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} -## Organization 向けの SAML シングルサインオンを有効化してテストする +## Enabling and testing SAML single sign-on for your organization -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} - -Before your enforce SAML SSO in your organization, ensure that you've prepared the organization. 詳細は「[Organization での SAML シングルサインオンの施行を準備する](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)」を参照してください。 +Before your enforce SAML SSO in your organization, ensure that you've prepared the organization. For more information, see "[Preparing to enforce SAML single sign-on in your organization](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)." For more information about the identity providers (IdPs) that {% data variables.product.company_short %} supports for SAML SSO, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. [SAML single sign-on] の下で [**Enable SAML authentication**] を選択します。 ![SAML SSO を有効化するためのチェックボックス](/assets/images/help/saml/saml_enable.png) +5. Under "SAML single sign-on", select **Enable SAML authentication**. +![Checkbox for enabling SAML SSO](/assets/images/help/saml/saml_enable.png) {% note %} - **メモ:** SAML SSO の有効化後、シングルサインオンのリカバリコードをダウンロードして、IdP が使用できなくなった場合にも Organization にアクセスできるようにできます。 詳細は「[Organization の SAML シングルサインオンのリカバリコードをダウンロード](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)」を参照してください。 + **Note:** After enabling SAML SSO, you can download your single sign-on recovery codes so that you can access your organization even if your IdP is unavailable. For more information, see "[Downloading your organization's SAML single sign-on recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)." {% endnote %} -6. [Sign on URL] フィールドにシングルサインオンのリクエスト用の IdP の HTTPS エンドポイントを入力します。 この値は Idp の設定で使用できます。 ![メンバーがサインインする際にリダイレクトされる URL のフィールド](/assets/images/help/saml/saml_sign_on_url.png) -7. または、[Issuer] フィールドに SAML 発行者の名前を入力します。 これにより、送信メッセージの信ぴょう性が検証されます。 ![SAMl 発行者の名前のフィールド](/assets/images/help/saml/saml_issuer.png) -8. [Public Certificate] の下で証明書を貼り付けて SAML の応答を検証します。 ![アイデンティティプロバイダからの公開の証明書のフィールド](/assets/images/help/saml/saml_public_certificate.png) -9. {% octicon "pencil" aria-label="The edit icon" %} をクリックして、[Signature Method] および [Digest Method] ドロップダウンで、SAML 発行者がリクエストの整合性を検証するために使用するハッシュアルゴリズムを選択します。 ![SAML 発行者が使用する署名方式とダイジェスト方式のハッシュアルゴリズム用のドロップダウン](/assets/images/help/saml/saml_hashing_method.png) -10. Organization で SAML SSO を有効化する前に、[ **Test SAML configuration**] をクリックして、入力した情報が正しいことを確認します。 ![強制化の前に SAML の構成をテストするためのボタン](/assets/images/help/saml/saml_test.png) +6. In the "Sign on URL" field, type the HTTPS endpoint of your IdP for single sign-on requests. This value is available in your IdP configuration. +![Field for the URL that members will be forwarded to when signing in](/assets/images/help/saml/saml_sign_on_url.png) +7. Optionally, in the "Issuer" field, type your SAML issuer's name. This verifies the authenticity of sent messages. +![Field for the SAML issuer's name](/assets/images/help/saml/saml_issuer.png) +8. Under "Public Certificate," paste a certificate to verify SAML responses. +![Field for the public certificate from your identity provider](/assets/images/help/saml/saml_public_certificate.png) +9. Click {% octicon "pencil" aria-label="The edit icon" %} and then in the Signature Method and Digest Method drop-downs, choose the hashing algorithm used by your SAML issuer to verify the integrity of the requests. +![Drop-downs for the Signature Method and Digest method hashing algorithms used by your SAML issuer](/assets/images/help/saml/saml_hashing_method.png) +10. Before enabling SAML SSO for your organization, click **Test SAML configuration** to ensure that the information you've entered is correct. ![Button to test SAML configuration before enforcing](/assets/images/help/saml/saml_test.png) {% tip %} - **ヒント:** {% data reusables.saml.testing-saml-sso %} + **Tip:** {% data reusables.saml.testing-saml-sso %} {% endtip %} -11. SAML SSO を強制して、IdP 経由で認証をされていないすべての Organization メンバーを削除するには、[**Require SAML SSO authentication for all members of the _Organization 名_ organization**] を選択します。 SAML SSO の強制化の詳細については、「[Organization で SAML シングルサインオンを施行する](/articles/enforcing-saml-single-sign-on-for-your-organization)」を参照してください。 ![Organization 向けに SAML SSO を強制するためのチェックボックス ](/assets/images/help/saml/saml_require_saml_sso.png) -12. [**Save**] をクリックします。 ![SAML SSO 設定を保存するためのボタン](/assets/images/help/saml/saml_save.png) +11. To enforce SAML SSO and remove all organization members who haven't authenticated via your IdP, select **Require SAML SSO authentication for all members of the _organization name_ organization**. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." +![Checkbox to require SAML SSO for your organization ](/assets/images/help/saml/saml_require_saml_sso.png) +12. Click **Save**. +![Button to save SAML SSO settings](/assets/images/help/saml/saml_save.png) -## 参考リンク +## Further reading -- [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md index bad4ed6b23..667d5251a9 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md @@ -1,17 +1,15 @@ --- -title: Organization で SAML シングルサインオンを施行する +title: Enforcing SAML single sign-on for your organization intro: Organization owners and admins can enforce SAML SSO so that all organization members must authenticate via an identity provider (IdP). -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/enforcing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enforcing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAMLシングルサインオンの施行 +shortTitle: Enforce SAML single sign-on --- ## About enforcement of SAML SSO for your organization @@ -20,31 +18,33 @@ When you enable SAML SSO, {% data variables.product.prodname_dotcom %} will prom ![Banner with prompt to authenticate via SAML SSO to access organization](/assets/images/help/saml/sso-has-been-enabled.png) -You can also enforce SAML SSO for your organization. {% data reusables.saml.when-you-enforce %} Enforcement removes any members and administrators who have not authenticated via your IdP from the organization. {% data variables.product.company_short %} sends an email notification to each removed user. +You can also enforce SAML SSO for your organization. {% data reusables.saml.when-you-enforce %} Enforcement removes any members and administrators who have not authenticated via your IdP from the organization. {% data variables.product.company_short %} sends an email notification to each removed user. -Organization のメンバーが正常にシングルサインオンを完了すると、メンバーを復元できます。 Removed users' access privileges and settings are saved for three months and can be restored during this time frame. 詳しい情報については、「[Organization の以前のメンバーを回復する](/articles/reinstating-a-former-member-of-your-organization)」を参照してください。 +You can restore organization members once they successfully complete single sign-on. Removed users' access privileges and settings are saved for three months and can be restored during this time frame. For more information, see "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)." Bots and service accounts that do not have external identities set up in your organization's IdP will also be removed when you enforce SAML SSO. For more information about bots and service accounts, see "[Managing bots and service accounts with SAML single sign-on](/articles/managing-bots-and-service-accounts-with-saml-single-sign-on)." -If your organization is owned by an enterprise account, requiring SAML for the enterprise account will override your organization-level SAML configuration and enforce SAML SSO for every organization in the enterprise. 詳しい情報については、「[Enterprise 向けのSAML シングルサインオンを設定する](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)」を参照してください。 +If your organization is owned by an enterprise account, requiring SAML for the enterprise account will override your organization-level SAML configuration and enforce SAML SSO for every organization in the enterprise. For more information, see "[Configuring SAML single sign-on for your enterprise](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)." {% tip %} -**ヒント:** {% data reusables.saml.testing-saml-sso %} +**Tip:** {% data reusables.saml.testing-saml-sso %} {% endtip %} ## Enforcing SAML SSO for your organization -1. Enable and test SAML SSO for your organization, then authenticate with your IdP at least once. 詳細は「[Organization での SAML シングルサインオンの有効化とテスト](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)」を参照してください。 -1. Prepare to enforce SAML SSO for your organization. 詳細は「[Organization での SAML シングルサインオンの施行を準備する](/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization)」を参照してください。 +1. Enable and test SAML SSO for your organization, then authenticate with your IdP at least once. For more information, see "[Enabling and testing SAML single sign-on for your organization](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)." +1. Prepare to enforce SAML SSO for your organization. For more information, see "[Preparing to enforce SAML single sign-on in your organization](/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -1. Under "SAML single sign-on", select **Require SAML SSO authentication for all members of the _ORGANIZATION_ organization**. !["Require SAML SSO authentication" checkbox](/assets/images/help/saml/require-saml-sso-authentication.png) -1. If any organization members have not authenticated via your IdP, {% data variables.product.company_short %} displays the members. If you enforce SAML SSO, {% data variables.product.company_short %} will remove the members from the organization. Review the warning and click **Remove members and require SAML single sign-on**. !["Confirm SAML SSO enforcement" dialog with list of members to remove from organization](/assets/images/help/saml/confirm-saml-sso-enforcement.png) +1. Under "SAML single sign-on", select **Require SAML SSO authentication for all members of the _ORGANIZATION_ organization**. + !["Require SAML SSO authentication" checkbox](/assets/images/help/saml/require-saml-sso-authentication.png) +1. If any organization members have not authenticated via your IdP, {% data variables.product.company_short %} displays the members. If you enforce SAML SSO, {% data variables.product.company_short %} will remove the members from the organization. Review the warning and click **Remove members and require SAML single sign-on**. + !["Confirm SAML SSO enforcement" dialog with list of members to remove from organization](/assets/images/help/saml/confirm-saml-sso-enforcement.png) 1. Under "Single sign-on recovery codes", review your recovery codes. Store the recovery codes in a safe location like a password manager. -## 参考リンク +## Further reading -- [組織へのメンバーの SAML アクセスの表示と管理](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization) +- "[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)" diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md index 420131782e..668ba3b7bc 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md @@ -1,12 +1,11 @@ --- title: Managing SAML single sign-on for your organization -intro: Organization administrators can manage organization members' identities and access to the organization with SAML single sign-on (SSO). +intro: Organization owners can manage organization members' identities and access to the organization with SAML single sign-on (SSO). redirect_from: - - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on/ + - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on - /articles/managing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md index c963c89bb7..353f17c351 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md @@ -1,7 +1,6 @@ --- title: Managing team synchronization for your organization intro: 'You can enable and disable team synchronization between your identity provider (IdP) and your organization on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.team-synchronization %}' redirect_from: - /articles/synchronizing-teams-between-your-identity-provider-and-github - /github/setting-up-and-managing-organizations-and-teams/synchronizing-teams-between-your-identity-provider-and-github @@ -10,7 +9,6 @@ redirect_from: permissions: Organization owners can manage team synchronization for an organization. miniTocMaxHeadingLevel: 3 versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md index 3ccea6a411..8af5f30451 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md @@ -1,27 +1,25 @@ --- -title: Organization での SAML シングルサインオンの強制を準備する -intro: Organization で SAML シングルサインオンを強制する前に、Organization のメンバーシップを検証し、アイデンティティプロバイダへの接続文字列を設定する必要があります。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Preparing to enforce SAML single sign-on in your organization +intro: 'Before you enforce SAML single sign-on in your organization, you should verify your organization''s membership and configure the connection settings to your identity provider.' redirect_from: - /articles/preparing-to-enforce-saml-single-sign-on-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/preparing-to-enforce-saml-single-sign-on-in-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: SAML SSOの強制の準備 +shortTitle: Prepare to enforce SAML SSO --- {% data reusables.saml.when-you-enforce %} Before enforcing SAML SSO in your organization, you should review organization membership, enable SAML SSO, and review organization members' SAML access. For more information, see the following. -| Task | 詳細情報 | -|:------------------------------------------------------------------------------------------- |:------------------------- | -| Add or remove members from your organization | <ul><li>"[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[Removing a member from your organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | -| Connect your IdP to your organization by enabling SAML SSO | <ul><li>"[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[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)"</li></ul> | +| Task | More information | +| :- | :- | +| Add or remove members from your organization | <ul><li>"[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[Removing a member from your organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | +| Connect your IdP to your organization by enabling SAML SSO | <ul><li>"[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[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)"</li></ul> | | Ensure that your organization members have signed in and linked their accounts with the IdP | <ul><li>"[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)"</li></ul> | -After you finish these tasks, you can enforce SAML SSO for your organization. 詳細は「[Organization で SAML シングルサインオンを施行する](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)」を参照してください。 +After you finish these tasks, you can enforce SAML SSO for your organization. For more information, see "[Enforcing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md index dffddfadae..5e33eb9458 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md @@ -1,9 +1,7 @@ --- title: Troubleshooting identity and access management intro: 'Review and resolve common troubleshooting errors for managing your organization''s SAML SSO, team synchronization, or identity provider (IdP) connection.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md index ce14c3076a..02f92675b7 100644 --- a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md +++ b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: 管理者 Team を改善された Organization の権限に移行する -intro: 2015 年 9 月以降に作成された Organization の場合、Organization の権限モデルはデフォルトで改善されています。 2015 年 9 月より前に作成された Organization は、古いオーナーおよび管理者 Team から、改善された権限モデルに移行する必要があるかもしれません。 レガシーの管理者 Team は、改善された Organization 権限モデルに移行するまで、リポジトリの作成資格を自動的に維持します。 +title: Converting an admin team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions - /articles/converting-an-admin-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions versions: @@ -12,23 +12,23 @@ versions: topics: - Organizations - Teams -shortTitle: 管理Teamの変換 +shortTitle: Convert admin team --- -レガシーの管理者 Team メンバーのために新しい Team を作成することで、レガシーの管理者 Team が持つリポジトリ作成の資格を削除できます。Team が Organization のリポジトリに対して必要なアクセスを持っていることを確認してから、レガシーの管理者 Teamを削除してください。 +You can remove the ability for members of legacy admin teams to create repositories by creating a new team for these members, ensuring that the team has necessary access to the organization's repositories, then deleting the legacy admin team. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**警告:** -- レガシーの管理者 Team のメンバーが、他の Team のメンバーではない場合、そのメンバーは Team を削除すると Organization から削除されます。 Team を削除する前に、メンバーを Organization の直接メンバーにするか、必要なリポジトリに対するコラボレーターアクセスを持たせてください。 -- レガシーの管理者 Team メンバーが作成したプライベートフォークを失わないために、レガシーの管理者 Teamを削除する前に、以下のステップ 1 - 3 に従う必要があります。 -- Organization のメンバーにとって "admin" は、Organization の特定の[リポジトリに対する特定のアクセス](/articles/repository-permission-levels-for-an-organization)を示します。ですから、これを Team 名として使うことは避けるようおすすめします。 +**Warnings:** +- If there are members of your legacy Admin team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. +- To prevent the loss of private forks made by members of the legacy Admin team, you must follow steps 1-3 below before deleting the legacy Admin team. +- Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endwarning %} -1. [新しい Team を作成](/articles/creating-a-team)します。 -2. 新しい Team に、レガシーの管理者 Team の[各メンバーを追加](/articles/adding-organization-members-to-a-team)します。 -3. レガシーの管理者 Team がアクセスしていた各リポジトリについて、 [新しい Team に同等のアクセスを与えます](/articles/managing-team-access-to-an-organization-repository)。 -4. [レガシーの管理者 Team を削除](/articles/deleting-a-team)します。 +1. [Create a new team](/articles/creating-a-team). +2. [Add each of the members](/articles/adding-organization-members-to-a-team) of your legacy admin team to the new team. +3. [Give the new team equivalent access](/articles/managing-team-access-to-an-organization-repository) to each of the repositories the legacy team could access. +4. [Delete the legacy admin team](/articles/deleting-a-team). diff --git a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md index 3660dc926d..2d483eed91 100644 --- a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md +++ b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md @@ -1,9 +1,9 @@ --- -title: オーナー Team を改善された Organization の権限に移行する -intro: 2015 年 9 月以降に作成された Organization の場合、Organization の権限モデルはデフォルトで改善されています。 2015 年 9 月より前に作成された Organization は、古いオーナーおよび管理者 Team から、改善された権限モデルに移行する必要があるかもしれません。 「オーナー」は、Organization の各メンバーに与えられる管理者ロールとなりました。 レガシーのオーナー Team のメンバーには、オーナー権限が自動的に与えられます。 +title: Converting an Owners team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. The "Owner" is now an administrative role given to individual members of your organization. Members of your legacy Owners team are automatically given owner privileges.' redirect_from: - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program/ - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions - /articles/converting-an-owners-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions versions: @@ -13,19 +13,19 @@ versions: topics: - Organizations - Teams -shortTitle: オーナーTeamの変換 +shortTitle: Convert Owners team --- -レガシーのオーナー Team を変換する方法はいくつかあります: +You have a few options to convert your legacy Owners team: -- Team に、メンバーが Organization 内で特別なステータスを持っていることを示す名前を付ける。 -- すべてのメンバーが、Organization のリポジトリにアクセスできる必要な権限を持つ Team に追加されていることを確認してから、元の Team を削除する。 +- Give the team a new name that denotes the members have a special status in the organization. +- Delete the team after ensuring all members have been added to teams that grant necessary access to the organization's repositories. -## オーナー Team に新しい名前を付ける +## Give the Owners team a new name {% tip %} - **メモ:** Organization のメンバーにとって "admin" は、Organization の特定の[リポジトリに対する特定のアクセス](/articles/repository-permission-levels-for-an-organization) を示します。ですから、これを Team 名として使うことは避けるようおすすめします。 + **Note:** Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endtip %} @@ -33,17 +33,19 @@ shortTitle: オーナーTeamの変換 {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. Team 名のフィールドで、オーナー Team の新しい名前を選びます。 例: - - Organization において、オーナー Team のメンバーがとても少ない場合には、"Core" といったチーム名がいいかもしれません。 - - Organization のすべてのメンバーがオーナー Team のメンバーでもあり、[Team に @mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) できる場合は、"Employees" といったチーム名がいいかもしれません。 ![オーナー Team の名前を "Core" にした、Team 名フィールド](/assets/images/help/teams/owners-team-new-name.png) -6. Team の説明の下にある、[**Save and continue**] をクリックします。 ![[Save and continue] ボタン](/assets/images/help/teams/owners-team-save-and-continue.png) -7. また、代わりに [Team を*パブリック*にする](/articles/changing-team-visibility)こともできます。 +5. In the team name field, choose a new name for the Owners team. For example: + - If very few members of your organization were members of the Owners team, you might name the team "Core". + - If all members of your organization were members of the Owners team so that they could [@mention teams](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams), you might name the team "Employees". + ![The team name field, with the Owners team renamed to Core](/assets/images/help/teams/owners-team-new-name.png) +6. Under the team description, click **Save and continue**. +![The Save and continue button](/assets/images/help/teams/owners-team-save-and-continue.png) +7. Optionally, [make the team *public*](/articles/changing-team-visibility). -## レガシーのオーナー Team の削除 +## Delete the legacy Owners team {% warning %} -**警告:** オーナー Team のメンバーが、他の Team のメンバーではない場合、そのメンバーは Team を削除すると Organization から削除されます。 Team を削除する前に、メンバーを Organization の直接メンバーにするか、必要なリポジトリに対するコラボレーターアクセスを持たせてください。 +**Warning:** If there are members of your Owners team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. {% endwarning %} @@ -51,4 +53,5 @@ shortTitle: オーナーTeamの変換 {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. ページの下部にある警告を確認し、[**Delete the Owners team**] をクリックします。 ![オーナー Team を削除するリンク](/assets/images/help/teams/owners-team-delete.png) +5. At the bottom of the page, review the warning and click **Delete the Owners team**. + ![Link for deleting the Owners team](/assets/images/help/teams/owners-team-delete.png) diff --git a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/index.md b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/index.md index 58ab751379..510cc6c4d7 100644 --- a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/index.md +++ b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/index.md @@ -1,10 +1,10 @@ --- -title: 改善された Organization の権限に移行する -intro: 2015 年 9 月以降に作成された Organization の場合、Organization の権限モデルはデフォルトで改善されています。 2015 年 9 月より前に作成された Organization は、古いオーナーおよび管理者 Team から、改善された Organization の権限モデルに移行する必要があるかもしれません。 +title: Migrating to improved organization permissions +intro: 'If your organization was created after September 2015, your organization includes improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved organization permissions model.' redirect_from: - - /articles/improved-organization-permissions/ - - /articles/github-direct-organization-membership-pre-release-guide/ - - /articles/migrating-your-organization-to-improved-organization-permissions/ + - /articles/improved-organization-permissions + - /articles/github-direct-organization-membership-pre-release-guide + - /articles/migrating-your-organization-to-improved-organization-permissions - /articles/migrating-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions versions: @@ -18,6 +18,6 @@ children: - /converting-an-owners-team-to-improved-organization-permissions - /converting-an-admin-team-to-improved-organization-permissions - /migrating-admin-teams-to-improved-organization-permissions -shortTitle: 改善された権限への移行 +shortTitle: Migrate to improved permissions --- diff --git a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md index 38d43b51ab..e5965cfefd 100644 --- a/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md +++ b/translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: 管理者 Team を改善された Organization の権限に移行する -intro: 2015 年 9 月以降に作成された Organization の場合、Organization の権限モデルはデフォルトで改善されています。 2015 年 9 月より前に作成された Organization は、古いオーナーおよび管理者 Team から、改善された権限モデルに移行する必要があるかもしれません。 レガシーの管理者 Team は、改善された Organization 権限モデルに移行するまで、リポジトリの作成資格を自動的に維持します。 +title: Migrating admin teams to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions/ + - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions - /articles/migrating-admin-teams-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions versions: @@ -12,34 +12,37 @@ versions: topics: - Organizations - Teams -shortTitle: 管理Teamの移行 +shortTitle: Migrate admin team --- -デフォルトでは、Organization のすべてのメンバーがリポジトリを作成できます。 [リポジトリ作成権限](/articles/restricting-repository-creation-in-your-organization) を Organization のオーナーに制限しており、Organization がレガシーの Organization の権限構造で作成されていた場合、レガシーの管理者 Team のメンバーも引き続きリポジトリを作成できます。 +By default, all organization members can create repositories. If you restrict [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) to organization owners, and your organization was created under the legacy organization permissions structure, members of legacy admin teams will still be able to create repositories. -レガシーの管理者 Team とは、レガシーの Organization の権限構造で、管理者権限レベルを使用して作成された Team のことです。 この Team のメンバーは、Organization のリポジトリを作成できました。改善された Organization 権限構造でも、その機能は維持されています。 +Legacy admin teams are teams that were created with the admin permission level under the legacy organization permissions structure. Members of these teams were able to create repositories for the organization, and we've preserved this ability in the improved organization permissions structure. -レガシーの 管理者 Team を改善された Organization の権限に移行すれば、この機能をなくすことができます。 +You can remove this ability by migrating your legacy admin teams to the improved organization permissions. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**警告:** Organization ですべてのメンバーに対して[リポジトリ作成権限](/articles/restricting-repository-creation-in-your-organization)を無効にされている場合は、レガシーの管理者 Team のメンバーの一部がリポジトリ作成権限を失うことがあります。 Organization でメンバーよるリポジトリ作成を有効にしている場合は、レガシーの管理者 Team を改善された Organization の権限に移行しても、チームメンバーのリポジトリ作成機能は影響されません。 +**Warning:** If your organization has disabled [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) for all members, some members of legacy admin teams may lose repository creation permissions. If your organization has enabled member repository creation, migrating legacy admin teams to improved organization permissions will not affect team members' ability to create repositories. {% endwarning %} -## Organization のレガシーの管理者 Team をすべて移行する +## Migrating all of your organization's legacy admin teams {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.teams_sidebar %} -1. Organization のレガシーの管理者 Team をレビューし、[**Migrate all teams**] をクリックします。 ![[Migrate all teams] ボタン](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) -1. 移行するチームのメンバーについて起きうる変化についての情報を読んだら、[**Migrate all teams**] をクリックします。 ![移行を確定するボタン](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) +1. Review your organization's legacy admin teams, then click **Migrate all teams**. + ![Migrate all teams button](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) +1. Read the information about possible permissions changes for members of these teams, then click **Migrate all teams.** + ![Confirm migration button](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) -## 1 つの管理者 Team を移行する +## Migrating a single admin team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -1. チーム説明のボックスで、[**Migrate team**] をクリックします。 ![[Migrate team] ボタン](/assets/images/help/teams/migrate-a-legacy-admin-team.png) +1. In the team description box, click **Migrate team**. + ![Migrate team button](/assets/images/help/teams/migrate-a-legacy-admin-team.png) diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md index bab5429982..a6dac889cb 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md @@ -1,8 +1,8 @@ --- -title: Team への Organization メンバーの追加 -intro: 'オーナーあるいはチームメンテナ権限を持っている人は、Organization のメンバーを Team に加えることができます。 オーナー権限を持っている人は、{% ifversion fpt or ghec %}メンバーではない人を Team および Organization に参加するよう招待{% else %}メンバーではない人を Team および Organization に追加{% endif %}することもできます。' +title: Adding organization members to a team +intro: 'People with owner or team maintainer permissions can add organization members to teams. People with owner permissions can also {% ifversion fpt or ghec %}invite non-members to join{% else %}add non-members to{% endif %} a team and the organization.' redirect_from: - - /articles/adding-organization-members-to-a-team-early-access-program/ + - /articles/adding-organization-members-to-a-team-early-access-program - /articles/adding-organization-members-to-a-team - /github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team versions: @@ -13,7 +13,7 @@ versions: topics: - Organizations - Teams -shortTitle: Teamへのメンバーの追加 +shortTitle: Add members to a team --- {% data reusables.organizations.team-synchronization %} @@ -22,13 +22,14 @@ shortTitle: Teamへのメンバーの追加 {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -6. Team メンバーのリストの上部で、[**Add a member**] をクリックします。 ![[Add member] ボタン](/assets/images/help/teams/add-member-button.png) +6. Above the list of team members, click **Add a member**. +![Add member button](/assets/images/help/teams/add-member-button.png) {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} {% ifversion fpt or ghec %}{% data reusables.organizations.cancel_org_invite %}{% endif %} -## 参考リンク +## Further reading -- [Team について](/articles/about-teams) -- [OrganizationのリポジトリへのTeamのアクセスの管理](/articles/managing-team-access-to-an-organization-repository) +- "[About teams](/articles/about-teams)" +- "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)" diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md index 666af400d4..457c1d5b7f 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md @@ -1,8 +1,8 @@ --- title: Assigning the team maintainer role to a team member -intro: You can give a team member the ability to manage team membership and settings by assigning the team maintainer role. +intro: 'You can give a team member the ability to manage team membership and settings by assigning the team maintainer role.' redirect_from: - - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program/ + - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program - /articles/giving-team-maintainer-permissions-to-an-organization-member - /github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member - /organizations/managing-peoples-access-to-your-organization-with-roles/giving-team-maintainer-permissions-to-an-organization-member @@ -22,21 +22,21 @@ permissions: Organization owners can promote team members to team maintainers. People with the team maintainer role can manage team membership and settings. -- [Teamの名前と説明の変更](/articles/renaming-a-team) -- [Teamの可視性の変更](/articles/changing-team-visibility) -- [子チームの追加リクエスト](/articles/requesting-to-add-a-child-team) -- [親チームの追加または変更リクエスト](/articles/requesting-to-add-or-change-a-parent-team) -- [Teamのプロフィール画像の設定](/articles/setting-your-team-s-profile-picture) -- [Teamディスカッションの編集](/articles/managing-disruptive-comments/#editing-a-comment) -- [Teamディスカッションの削除](/articles/managing-disruptive-comments/#deleting-a-comment) -- [OrganizationのメンバーのTeamへの追加](/articles/adding-organization-members-to-a-team) -- [OrganizationメンバーのTeamからの削除](/articles/removing-organization-members-from-a-team) -- リポジトリへのTeamのアクセスの削除{% ifversion fpt or ghes or ghae or ghec %} -- [Teamのためのコードレビューの割り当て管理](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} -- [プルリクエストのスケジュールされたリマインダーの管理](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} +- [Change the team's name and description](/articles/renaming-a-team) +- [Change the team's visibility](/articles/changing-team-visibility) +- [Request to add a child team](/articles/requesting-to-add-a-child-team) +- [Request to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team) +- [Set the team profile picture](/articles/setting-your-team-s-profile-picture) +- [Edit team discussions](/articles/managing-disruptive-comments/#editing-a-comment) +- [Delete team discussions](/articles/managing-disruptive-comments/#deleting-a-comment) +- [Add organization members to the team](/articles/adding-organization-members-to-a-team) +- [Remove organization members from the team](/articles/removing-organization-members-from-a-team) +- Remove the team's access to repositories{% ifversion fpt or ghes or ghae or ghec %} +- [Manage code review assignment for the team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} +- [Manage scheduled reminders for pull requests](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} -## Organization メンバーをチームメンテナに昇格させる +## Promoting an organization member to team maintainer Before you can promote an organization member to team maintainer, the person must already be a member of the team. @@ -44,6 +44,9 @@ Before you can promote an organization member to team maintainer, the person mus {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -4. チームメンテナに昇格させる人 (一人または複数人) を選択します。 ![Organization メンバーの横のチェックボックス](/assets/images/help/teams/team-member-check-box.png) -5. Team のメンバー一覧の上にあるドロップダウンメニューを使用して、[**Change role...**] をクリックします。 ![ロールを変更するオプションのあるドロップダウンメニュー](/assets/images/help/teams/bulk-edit-drop-down.png) -6. 新しいロールを選択して、[**Change role**] をクリックします。 ![メンテナーまたはメンバーのロールのラジオボタン](/assets/images/help/teams/team-role-modal.png) +4. Select the person or people you'd like to promote to team maintainer. +![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Change role...**. +![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) +6. Select a new role and click **Change role**. +![Radio buttons for Maintainer or Member roles](/assets/images/help/teams/team-role-modal.png) diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/creating-a-team.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/creating-a-team.md index 655702826a..7422a82371 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -1,8 +1,8 @@ --- -title: Team の作成 -intro: 独立 Team や入れ子 Team を作成してリポジトリの権限およびグループへのメンションを管理できます。 +title: Creating a team +intro: You can create independent or nested teams to manage repository permissions and mentions for groups of people. redirect_from: - - /articles/creating-a-team-early-access-program/ + - /articles/creating-a-team-early-access-program - /articles/creating-a-team - /github/setting-up-and-managing-organizations-and-teams/creating-a-team versions: @@ -15,7 +15,7 @@ topics: - Teams --- -Organization のオーナーと親チームのメンテナだけが親の下に新しく子チームを作成できます。 オーナーは Organization 内の全チームについて作成許可を制限することもできます。 詳細は「[Organization のチーム作成権限を設定する](/articles/setting-team-creation-permissions-in-your-organization)」を参照してください。 +Only organization owners and maintainers of a parent team can create a new child team under a parent. Owners can also restrict creation permissions for all teams in an organization. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." {% data reusables.organizations.team-synchronization %} @@ -25,17 +25,18 @@ Organization のオーナーと親チームのメンテナだけが親の下に {% data reusables.organizations.team_name %} {% data reusables.organizations.team_description %} {% data reusables.organizations.create-team-choose-parent %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 1. Optionally, if your organization or enterprise account uses team synchronization or your enterprise uses {% data variables.product.prodname_emus %}, connect an identity provider group to your team. * If your enterprise uses {% data variables.product.prodname_emus %}, use the "Identity Provider Groups" drop-down menu, and select a single identity provider group to connect to the new team. For more information, "[Managing team memberships with identity provider groups](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)." - * If your organization or enterprise account uses team synchronization, use the "Identity Provider Groups" drop-down menu, and select up to five identity provider groups to connect to the new team. 詳しい情報については「[アイデンティティプロバイダグループとTeamの同期](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)」を参照してください。 ![アイデンティティプロバイダグループを選択するドロップダウンメニュー](/assets/images/help/teams/choose-an-idp-group.png) + * If your organization or enterprise account uses team synchronization, use the "Identity Provider Groups" drop-down menu, and select up to five identity provider groups to connect to the new team. For more information, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." + ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png) {% endif %} {% data reusables.organizations.team_visibility %} {% data reusables.organizations.create_team %} -1. 任意で、[Team のアクセスを Organization リポジトリに与えます](/articles/managing-team-access-to-an-organization-repository)。 +1. Optionally, [give the team access to organization repositories](/articles/managing-team-access-to-an-organization-repository). -## 参考リンク +## Further reading -- [Team について](/articles/about-teams) -- 「[Team の可視性を変更する](/articles/changing-team-visibility)」 -- "[Organization の階層内での Team の移動](/articles/moving-a-team-in-your-organization-s-hierarchy)" +- "[About teams](/articles/about-teams)" +- "[Changing team visibility](/articles/changing-team-visibility)" +- "[Moving a team in your organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy)" diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/index.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/index.md index 658164a751..ebe04edd68 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/index.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/index.md @@ -1,15 +1,15 @@ --- -title: メンバーを Team に編成する -intro: Organizationメンバーは、カスケードになったアクセス権限とメンションを伴う会社やグループの構造を反映する Team に編成することができます。 +title: Organizing members into teams +intro: You can group organization members into teams that reflect your company or group's structure with cascading access permissions and mentions. redirect_from: - - /articles/setting-up-teams-improved-organization-permissions/ - - /articles/setting-up-teams-for-accessing-organization-repositories/ - - /articles/creating-teams/ - - /articles/adding-people-to-teams-in-an-organization/ - - /articles/removing-a-member-from-a-team-in-your-organization/ - - /articles/setting-up-teams/ - - /articles/maintaining-teams-improved-organization-permissions/ - - /articles/maintaining-teams/ + - /articles/setting-up-teams-improved-organization-permissions + - /articles/setting-up-teams-for-accessing-organization-repositories + - /articles/creating-teams + - /articles/adding-people-to-teams-in-an-organization + - /articles/removing-a-member-from-a-team-in-your-organization + - /articles/setting-up-teams + - /articles/maintaining-teams-improved-organization-permissions + - /articles/maintaining-teams - /articles/organizing-members-into-teams - /github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams versions: @@ -37,6 +37,6 @@ children: - /disabling-team-discussions-for-your-organization - /managing-scheduled-reminders-for-your-team - /deleting-a-team -shortTitle: メンバーをTeamに編成する +shortTitle: Organize members into teams --- diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md index 7e8aaede62..6386e39cc6 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md @@ -1,8 +1,8 @@ --- -title: Organization 階層内で Team を移動する -intro: チームメンテナと Organization のオーナーは、親チームの下に Team を入れ子にしたり、ネストした入れ子チームの親を変更または削除したりすることができます。 +title: Moving a team in your organization’s hierarchy +intro: 'Team maintainers and organization owners can nest a team under a parent team, or change or remove a nested team''s parent.' redirect_from: - - /articles/changing-a-team-s-parent/ + - /articles/changing-a-team-s-parent - /articles/moving-a-team-in-your-organization-s-hierarchy - /articles/moving-a-team-in-your-organizations-hierarchy - /github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy @@ -14,31 +14,34 @@ versions: topics: - Organizations - Teams -shortTitle: Teamの移動 +shortTitle: Move a team --- -Organization のオーナーは、Team の親を変更できます。 チームメンテナは、子チームと親チーム両方のメンテナであれば、Team の親を変更できます。 子チームでのメンテナ権限を持たないチームメンテナは、親または子チームの追加をリクエストできます。 詳細は「[親チームの追加または変更をリクエストする](/articles/requesting-to-add-or-change-a-parent-team)」および「[子チームの追加をリクエストする](/articles/requesting-to-add-a-child-team)」を参照してください。 +Organization owners can change the parent of any team. Team maintainers can change a team's parent if they are maintainers in both the child team and the parent team. Team maintainers without maintainer permissions in the child team can request to add a parent or child team. For more information, see "[Requesting to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team)" and "[Requesting to add a child team](/articles/requesting-to-add-a-child-team)." {% data reusables.organizations.child-team-inherits-permissions %} {% tip %} -**参考:** -- Team の親をシークレットチームに変更することはできません。 詳しい情報については[Team について](/articles/about-teams)を参照してください。 -- 親チームをその子チームの下位に入れ子にすることはできません。 +**Tips:** +- You cannot change a team's parent to a secret team. For more information, see "[About teams](/articles/about-teams)." +- You cannot nest a parent team beneath one of its child teams. {% endtip %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.teams %} -4. Team のリストで、親を変更する Team の名前をクリックします。 ![Organization の Team のリスト](/assets/images/help/teams/click-team-name.png) +4. In the list of teams, click the name of the team whose parent you'd like to change. + ![List of the organization's teams](/assets/images/help/teams/click-team-name.png) {% data reusables.organizations.team_settings %} -6. ドロップダウンメニューを使って親チームを選択するか、既存の親を削除して [**Clear selected value**] を選択します。 ![Organization の Team がリストされるドロップダウンメニュー](/assets/images/help/teams/choose-parent-team.png) -7. [**Update**] をクリックします。 +6. Use the drop-down menu to choose a parent team, or to remove an existing parent, select **Clear selected value**. + ![Drop-down menu listing the organization's teams](/assets/images/help/teams/choose-parent-team.png) +7. Click **Update**. {% data reusables.repositories.changed-repository-access-permissions %} -9. [**Confirm new parent team**] をクリックします。 ![リポジトリアクセス権の変更に関する情報のモーダルボックス](/assets/images/help/teams/confirm-new-parent-team.png) +9. Click **Confirm new parent team**. + ![Modal box with information about the changes in repository access permissions](/assets/images/help/teams/confirm-new-parent-team.png) -## 参考リンク +## Further reading -- [Team について](/articles/about-teams) +- "[About teams](/articles/about-teams)" diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md index 7440df0dab..aba9635cbe 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md @@ -1,8 +1,8 @@ --- -title: Team から Organization メンバーを削除する -intro: '*owner* 権限または *team maintainer* 権限が付与されている個人は、Team メンバーを Team から削除することができます。 これは、個人が Team から付与されるリポジトリへのアクセスを必要としなくなった場合や、個人が Team のプロジェクトでフォーカスされなくなった場合に必要となる可能性があります。' +title: Removing organization members from a team +intro: 'People with *owner* or *team maintainer* permissions can remove team members from a team. This may be necessary if a person no longer needs access to a repository the team grants, or if a person is no longer focused on a team''s projects.' redirect_from: - - /articles/removing-organization-members-from-a-team-early-access-program/ + - /articles/removing-organization-members-from-a-team-early-access-program - /articles/removing-organization-members-from-a-team - /github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team versions: @@ -13,13 +13,15 @@ versions: topics: - Organizations - Teams -shortTitle: メンバーの削除 +shortTitle: Remove members --- -{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} +{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -4. 削除する個人を選択します。 ![Organization メンバーの横のチェックボックス](/assets/images/help/teams/team-member-check-box.png) -5. Team メンバーのリストの上のドロップダウンメニューで、[**Remove from team**] をクリックします。 ![ロールを変更するオプションのあるドロップダウンメニュー](/assets/images/help/teams/bulk-edit-drop-down.png) +4. Select the person or people you'd like to remove. + ![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Remove from team**. + ![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) diff --git a/translations/ja-JP/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md b/translations/ja-JP/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md index 1c53bcbdc8..1e2fc70a8f 100644 --- a/translations/ja-JP/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md +++ b/translations/ja-JP/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md @@ -3,10 +3,8 @@ title: Synchronizing a team with an identity provider group intro: 'You can synchronize a {% data variables.product.product_name %} team with an identity provider (IdP) group to automatically add and remove team members.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/synchronizing-a-team-with-an-identity-provider-group -product: '{% data reusables.gated-features.team-synchronization %} ' permissions: 'Organization owners and team maintainers can synchronize a {% data variables.product.prodname_dotcom %} team with an IdP group.' versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -21,15 +19,15 @@ shortTitle: Synchronize with an IdP {% data reusables.identity-and-permissions.about-team-sync %} -{% ifversion fpt or ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. +{% ifversion ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. -{% ifversion fpt or ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} +{% ifversion ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} -Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion fpt or ghec %} or using the API{% endif %}. +Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion ghec %} or using the API{% endif %}. -{% ifversion fpt or ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} +{% ifversion ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} All team membership changes made through your IdP will appear in the audit log on {% data variables.product.product_name %} as changes made by the team synchronization bot. Your IdP will send team membership data to {% data variables.product.prodname_dotcom %} once every hour. Connecting a team to an IdP group may remove some team members. For more information, see "[Requirements for members of synchronized teams](#requirements-for-members-of-synchronized-teams)." {% endif %} @@ -42,9 +40,9 @@ Parent teams cannot synchronize with IdP groups. If the team you want to connect To manage repository access for any {% data variables.product.prodname_dotcom %} team, including teams connected to an IdP group, you must make changes with {% data variables.product.product_name %}. For more information, see "[About teams](/articles/about-teams)" and "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)." -{% ifversion fpt or ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} +{% ifversion ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ## Requirements for members of synchronized teams After you connect a team to an IdP group, team synchronization will add each member of the IdP group to the corresponding team on {% data variables.product.product_name %} only if: @@ -62,7 +60,7 @@ To avoid unintentionally removing team members, we recommend enforcing SAML SSO ## Prerequisites -{% ifversion fpt or ghec %} +{% ifversion ghec %} Before you can connect a {% data variables.product.product_name %} team with an identity provider group, an organization or enterprise owner must enable team synchronization for your organization or enterprise account. 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 account](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." To avoid unintentionally removing team members, visit the administrative portal for your IdP and confirm that each current team member is also in the IdP groups that you want to connect to this team. If you don't have this access to your identity provider, you can reach out to your IdP administrator. @@ -83,7 +81,7 @@ When you connect an IdP group to a {% data variables.product.product_name %} tea {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", use the drop-down menu, and select up to 5 identity provider groups. ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", use the drop-down menu, and select an identity provider group from the list. @@ -98,7 +96,7 @@ If you disconnect an IdP group from a {% data variables.product.prodname_dotcom {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. ![Unselect a connected IdP group from the GitHub team](/assets/images/help/teams/unselect-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. diff --git a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md index 6c615b21e9..9e952acc4d 100644 --- a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md +++ b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md @@ -1,8 +1,8 @@ --- -title: OAuthアプリケーションのアクセス制限について +title: About OAuth App access restrictions intro: 'Organizations can choose which {% data variables.product.prodname_oauth_apps %} have access to their repositories and other resources by enabling {% data variables.product.prodname_oauth_app %} access restrictions.' redirect_from: - - /articles/about-third-party-application-restrictions/ + - /articles/about-third-party-application-restrictions - /articles/about-oauth-app-access-restrictions - /github/setting-up-and-managing-organizations-and-teams/about-oauth-app-access-restrictions versions: @@ -11,18 +11,18 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth Appのアクセス +shortTitle: OAuth App access --- -## OAuthアプリケーションのアクセス制限について +## About OAuth App access restrictions -{% data variables.product.prodname_oauth_app %}のアクセス制限が有効化されると、Organizationのメンバーは{% data variables.product.prodname_oauth_app %}のOrganizationのリソースへのアクセスを認可できなくなります。 Organization members can request owner approval for {% data variables.product.prodname_oauth_apps %} they'd like to use, and organization owners receive a notification of pending requests. +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members cannot authorize {% data variables.product.prodname_oauth_app %} access to organization resources. Organization members can request owner approval for {% data variables.product.prodname_oauth_apps %} they'd like to use, and organization owners receive a notification of pending requests. {% data reusables.organizations.oauth_app_restrictions_default %} {% tip %} -**Tip:**Organizationが{% data variables.product.prodname_oauth_app %}のアクセス制限をセットアップしていない場合、Organizationのメンバーが認可したすべての{% data variables.product.prodname_oauth_app %}は、Organizationのプライベートリソースにアクセスできます。 +**Tip**: When an organization has not set up {% data variables.product.prodname_oauth_app %} access restrictions, any {% data variables.product.prodname_oauth_app %} authorized by an organization member can also access the organization's private resources. {% endtip %} @@ -30,39 +30,39 @@ shortTitle: OAuth Appのアクセス To further protect your organization's resources, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes security features like SAML single sign-on. {% data reusables.enterprise.link-to-ghec-trial %} {% endif %} -## {% data variables.product.prodname_oauth_app %}のアクセス制限のセットアップ +## Setting up {% data variables.product.prodname_oauth_app %} access restrictions -Organizationのオーナーが{% data variables.product.prodname_oauth_app %}のアクセス制限を初めてセットアップする場合、以下のようになります。 +When an organization owner sets up {% data variables.product.prodname_oauth_app %} access restrictions for the first time: -- **Organizationが所有するアプリケーション**には、自動的にOrganizationのリソースへのアクセスが与えられます。 +- **Applications that are owned by the organization** are automatically given access to the organization's resources. - **{% data variables.product.prodname_oauth_apps %}** immediately lose access to the organization's resources. -- **2014年の2月以前に作成されたSSHキー**は、Organizationのリソースへのアクセスを即座に失います(これにはユーザ及びデプロイキーが含まれます)。 +- **SSH keys created before February 2014** immediately lose access to the organization's resources (this includes user and deploy keys). - **SSH keys created by {% data variables.product.prodname_oauth_apps %} during or after February 2014** immediately lose access to the organization's resources. - **Hook deliveries from private organization repositories** will no longer be sent to unapproved {% data variables.product.prodname_oauth_apps %}. -- **API access** to private organization resources is not available for unapproved {% data variables.product.prodname_oauth_apps %}. 加えて、パブリックなOrganizationリソースの作成、更新、削除のアクションの権限はありません。 -- **ユーザが作成したフック及び2014年の5月以前に作成されたフック**には影響ありません。 -- **Organizationが所有するリポジトリのプライベートフォーク**は、Organizationのアクセス制限に従います。 +- **API access** to private organization resources is not available for unapproved {% data variables.product.prodname_oauth_apps %}. In addition, there are no privileged create, update, or delete actions on public organization resources. +- **Hooks created by users and hooks created before May 2014** will not be affected. +- **Private forks of organization-owned repositories** are subject to the organization's access restrictions. -## SSHアクセスの失敗の解決 +## Resolving SSH access failures -{% data variables.product.prodname_oauth_app %}のアクセス制限が有効化されたOrganizationへのアクセスを2014年2月以前に作成されたSSHキーが失った場合、それ以降のSSHアクセスの試行は失敗します。 ユーザには、キーを認可できる、あるいは信頼されたキーをそこにアップロードできるURLを示すエラーメッセージが返されます。 +When an SSH key created before February 2014 loses access to an organization with {% data variables.product.prodname_oauth_app %} access restrictions enabled, subsequent SSH access attempts will fail. Users will encounter an error message directing them to a URL where they can approve the key or upload a trusted key in its place. -## webhook +## Webhooks -{% data variables.product.prodname_oauth_app %}が制限が有効化された後のOrganizationへのアクセスを許可された場合、その{% data variables.product.prodname_oauth_app %}が作成した既存のwebhookは、ディスパッチを再開します。 +When an {% data variables.product.prodname_oauth_app %} is granted access to the organization after restrictions are enabled, any pre-existing webhooks created by that {% data variables.product.prodname_oauth_app %} will resume dispatching. -Organizationが以前に認可された{% data variables.product.prodname_oauth_app %}からアクセスを削除した場合、そのアプリケーションが作成した既存のwebhookはディスパッチされなくなります(それらのフックは無効化されますが、削除はされません)。 +When an organization removes access from a previously-approved {% data variables.product.prodname_oauth_app %}, any pre-existing webhooks created by that application will no longer be dispatched (these hooks will be disabled, but not deleted). -## アクセス制限の再有効化 +## Re-enabling access restrictions -Organizationが{% data variables.product.prodname_oauth_app %}のアクセスアプリケーション制限を無効化し、後に再び有効化した場合、以前に認可されていた{% data variables.product.prodname_oauth_app %}は自動的にOrganizationのリソースへのアクセスを許可されます。 +If an organization disables {% data variables.product.prodname_oauth_app %} access application restrictions, and later re-enables them, previously approved {% data variables.product.prodname_oauth_app %} are automatically granted access to the organization's resources. -## 参考リンク +## Further reading -- [Organizationの{% data variables.product.prodname_oauth_app %}アクセス制限の有効化](/articles/enabling-oauth-app-access-restrictions-for-your-organization) +- "[Enabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/enabling-oauth-app-access-restrictions-for-your-organization)" - "[Approving {% data variables.product.prodname_oauth_apps %} for your organization](/articles/approving-oauth-apps-for-your-organization)" -- [Organizationにインストールされたインテグレーションのレビュー](/articles/reviewing-your-organization-s-installed-integrations) -- [Organizationに以前に承認された{% data variables.product.prodname_oauth_app %}へのアクセスの拒否](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization) -- [Organizationの{% data variables.product.prodname_oauth_app %}アクセス制限の無効化](/articles/disabling-oauth-app-access-restrictions-for-your-organization) +- "[Reviewing your organization's installed integrations](/articles/reviewing-your-organization-s-installed-integrations)" +- "[Denying access to a previously approved {% data variables.product.prodname_oauth_app %} for your organization](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization)" +- "[Disabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/disabling-oauth-app-access-restrictions-for-your-organization)" - "[Requesting organization approval for {% data variables.product.prodname_oauth_apps %}](/articles/requesting-organization-approval-for-oauth-apps)" -- 「[{% data variables.product.prodname_oauth_apps %} を認可する](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)」 +- "[Authorizing {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" diff --git a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md index ffcb209fa2..c945c1acab 100644 --- a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md +++ b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Organization 用の OAuth アプリケーションの承認 -intro: '{% data variables.product.prodname_oauth_app %}による Organization のリソースへのアクセスを Organization のメンバーがリクエストしてきた場合、Organization のオーナーはそのリクエストを承認あるいは否認できます。' +title: Approving OAuth Apps for your organization +intro: 'When an organization member requests {% data variables.product.prodname_oauth_app %} access to organization resources, organization owners can approve or deny the request.' redirect_from: - - /articles/approving-third-party-applications-for-your-organization/ + - /articles/approving-third-party-applications-for-your-organization - /articles/approving-oauth-apps-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/approving-oauth-apps-for-your-organization versions: @@ -11,17 +11,18 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth Appの承認 +shortTitle: Approve OAuth Apps --- - -{% data variables.product.prodname_oauth_app %}のアクセス制限が有効化されている場合、Organization のメンバーは Organization のリソースへのアクセスを持つ {% data variables.product.prodname_oauth_app %}を承認する前に、Organization のオーナーからの[承認をリクエスト](/articles/requesting-organization-approval-for-oauth-apps)しなければなりません。 +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members must [request approval](/articles/requesting-organization-approval-for-oauth-apps) from an organization owner before they can authorize an {% data variables.product.prodname_oauth_app %} that has access to the organization's resources. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 承認したいアプリケーションの隣で [**Review**] をクリックします。 ![レビューのリクエストリンク](/assets/images/help/settings/settings-third-party-approve-review.png) -6. リクエストされたアプリケーションに関する情報をレビューしたら、[**Grant access**] をクリックします。 ![アクセスの許可ボタン](/assets/images/help/settings/settings-third-party-approve-grant.png) +5. Next to the application you'd like to approve, click **Review**. +![Review request link](/assets/images/help/settings/settings-third-party-approve-review.png) +6. After you review the information about the requested application, click **Grant access**. +![Grant access button](/assets/images/help/settings/settings-third-party-approve-grant.png) -## 参考リンク +## Further reading -- [{% data variables.product.prodname_oauth_app %}のアクセス制限について](/articles/about-oauth-app-access-restrictions) +- "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)" diff --git a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md index 6cce129520..da3f557b72 100644 --- a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md +++ b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: 以前承認した OAuth App への Organization のアクセスを拒否する -intro: '以前承認した {% data variables.product.prodname_oauth_app %} を Organization が必要としなくなった場合、オーナーは Organization リソースへのアプリケーションのアクセスを削除できます。' +title: Denying access to a previously approved OAuth App for your organization +intro: 'If an organization no longer requires a previously authorized {% data variables.product.prodname_oauth_app %}, owners can remove the application''s access to the organization''s resources.' redirect_from: - - /articles/denying-access-to-a-previously-approved-application-for-your-organization/ + - /articles/denying-access-to-a-previously-approved-application-for-your-organization - /articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/denying-access-to-a-previously-approved-oauth-app-for-your-organization versions: @@ -11,11 +11,13 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth Appの拒否 +shortTitle: Deny OAuth App --- {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 無効化したいアプリケーションの隣にある {% octicon "pencil" aria-label="The edit icon" %} をクリックします。 ![編集アイコン](/assets/images/help/settings/settings-third-party-deny-edit.png) -6. [**Deny access**] をクリックします。 ![拒否の確定ボタン](/assets/images/help/settings/settings-third-party-deny-confirm.png) +5. Next to the application you'd like to disable, click {% octicon "pencil" aria-label="The edit icon" %}. + ![Edit icon](/assets/images/help/settings/settings-third-party-deny-edit.png) +6. Click **Deny access**. + ![Deny confirmation button](/assets/images/help/settings/settings-third-party-deny-confirm.png) diff --git a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md index 7f197c40e6..4931bc44cc 100644 --- a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Organization の OAuth App アクセス制限の無効化 +title: Disabling OAuth App access restrictions for your organization intro: 'Organization owners can disable restrictions on the {% data variables.product.prodname_oauth_apps %} that have access to the organization''s resources.' redirect_from: - - /articles/disabling-third-party-application-restrictions-for-your-organization/ + - /articles/disabling-third-party-application-restrictions-for-your-organization - /articles/disabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/disabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,17 +11,19 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth Appの無効化 +shortTitle: Disable OAuth App --- {% danger %} -**警告**: Organization で {% data variables.product.prodname_oauth_app %} のアクセス制限を無効化すると、Organization のメンバーであれば誰でも、個人アカウント設定でアプリケーションの使用を承認していれば、自動的に {% data variables.product.prodname_oauth_app %} から Organization のプライベートリソースへのアクセスが認証されます。 +**Warning**: When you disable {% data variables.product.prodname_oauth_app %} access restrictions for your organization, any organization member will automatically authorize {% data variables.product.prodname_oauth_app %} access to the organization's private resources when they approve an application for use in their personal account settings. {% enddanger %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. [**Remove restrictions**] をクリックします。 ![[Remove restrictions] ボタン](/assets/images/help/settings/settings-third-party-remove-restrictions.png) -6. サードパーティアプリケーション制限の無効化に関する情報を確認したら、[**Yes, remove application restrictions**] (はい、アプリケーション制限を削除します) をクリックします。 ![[Remove confirmation] ボタン](/assets/images/help/settings/settings-third-party-confirm-disable.png) +5. Click **Remove restrictions**. + ![Remove restrictions button](/assets/images/help/settings/settings-third-party-remove-restrictions.png) +6. After you review the information about disabling third-party application restrictions, click **Yes, remove application restrictions**. + ![Remove confirmation button](/assets/images/help/settings/settings-third-party-confirm-disable.png) diff --git a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md index 116b7aa997..5ad4a078f8 100644 --- a/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Organization の OAuth App アクセス制限を有効化する +title: Enabling OAuth App access restrictions for your organization intro: 'Organization owners can enable {% data variables.product.prodname_oauth_app %} access restrictions to prevent untrusted apps from accessing the organization''s resources while allowing organization members to use {% data variables.product.prodname_oauth_apps %} for their personal accounts.' redirect_from: - - /articles/enabling-third-party-application-restrictions-for-your-organization/ + - /articles/enabling-third-party-application-restrictions-for-your-organization - /articles/enabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,22 +11,24 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth Appの有効化 +shortTitle: Enable OAuth App --- {% data reusables.organizations.oauth_app_restrictions_default %} {% warning %} -**警告**: -- Enabling {% data variables.product.prodname_oauth_app %} access restrictions will revoke organization access for all previously authorized {% data variables.product.prodname_oauth_apps %} and SSH keys. 詳しい情報については、「[{% data variables.product.prodname_oauth_app %}のアクセス制限について](/articles/about-oauth-app-access-restrictions)」を参照してください。 -- {% data variables.product.prodname_oauth_app %} のアクセス制限を設定したら、Organization のプライベートなデータへのアクセスを必要とするすべての {% data variables.product.prodname_oauth_app %} を再認証してください。 Organization のすべてのメンバーは新しい SSH キーを作成する必要があり、Organization は必要に応じて新しいデプロイキーを作成する必要があります。 -- {% data variables.product.prodname_oauth_app %} のアクセス制限が有効化されると、アプリケーションで OAuth トークンを使用して {% data variables.product.prodname_marketplace %} 取引に関する情報にアクセスできます。 +**Warnings**: +- Enabling {% data variables.product.prodname_oauth_app %} access restrictions will revoke organization access for all previously authorized {% data variables.product.prodname_oauth_apps %} and SSH keys. For more information, see "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)." +- Once you've set up {% data variables.product.prodname_oauth_app %} access restrictions, make sure to re-authorize any {% data variables.product.prodname_oauth_app %} that require access to the organization's private data on an ongoing basis. All organization members will need to create new SSH keys, and the organization will need to create new deploy keys as needed. +- When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, applications can use an OAuth token to access information about {% data variables.product.prodname_marketplace %} transactions. {% endwarning %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. [Third-party application access policy] の下で [**Setup application access restrictions**] をクリックします。 ![制限の設定ボタン](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) -6. サードパーティのアクセス制限に関する情報を確認したら、[**Restrict third-party application access**] をクリックします。 ![制限の確認ボタン](/assets/images/help/settings/settings-third-party-restrict-confirm.png) +5. Under "Third-party application access policy," click **Setup application access restrictions**. + ![Set up restrictions button](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) +6. After you review the information about third-party access restrictions, click **Restrict third-party application access**. + ![Restriction confirmation button](/assets/images/help/settings/settings-third-party-restrict-confirm.png) diff --git a/translations/ja-JP/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md b/translations/ja-JP/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md index 8b051b2888..293248895a 100644 --- a/translations/ja-JP/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md +++ b/translations/ja-JP/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md @@ -152,7 +152,7 @@ You can choose the visibility of containers that organization members can publis 6. Under "Container creation", choose whether you want to enable the creation of public, private, or internal container images. - To enable organization members to create public container images, click **Public**. - To enable organization members to create private container images that are only visible to other organization members, click **Private**. You can further customize the visibility of private container images. - - **For {% data variables.product.prodname_ghe_cloud %} only:** To enable organization members to create internal container images that are only visible to other organization members, click **Internal**. + - To enable organization members to create internal container images that are visible to all organization members, click **Internal**. If the organization belongs to an enterprise, the container images will be visible to all enterprise members. ![Visibility options for container images published by organization members](/assets/images/help/package-registry/container-creation-org-settings.png) ## Configuring visibility of container images for an organization diff --git a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md index 8f373b2c31..8b423a877c 100644 --- a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md +++ b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: カスタムドメインとGitHub Pagesについて -intro: '{% data variables.product.prodname_pages %} では、カスタムドメインを使用する、つまりサイトの URL を ''octocat.github.io'' などのデフォルトからあなたが所有するドメインに変更することができます。' +title: About custom domains and GitHub Pages +intro: '{% data variables.product.prodname_pages %} supports using custom domains, or changing the root of your site''s URL from the default, like `octocat.github.io`, to any domain you own.' redirect_from: - - /articles/about-custom-domains-for-github-pages-sites/ - - /articles/about-supported-custom-domains/ - - /articles/custom-domain-redirects-for-your-github-pages-site/ + - /articles/about-custom-domains-for-github-pages-sites + - /articles/about-supported-custom-domains + - /articles/custom-domain-redirects-for-your-github-pages-site - /articles/about-custom-domains-and-github-pages - /github/working-with-github-pages/about-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: GitHub Pagesにおけるカスタムドメイン +shortTitle: Custom domains in GitHub Pages --- -## サポートされているカスタムドメイン +## Supported custom domains -{% data variables.product.prodname_pages %} では、サブドメインとApexドメインの 2 種類のドメインを使用できます。 サポートされていないカスタムサブドメインのリストは、「[カスタムドメインと {% data variables.product.prodname_pages %} のトラブルシューティング](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)」を参照してください。 +{% data variables.product.prodname_pages %} works with two types of domains: subdomains and apex domains. For a list of unsupported custom domains, see "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)." -| サポートされているカスタムドメインの種類 | サンプル | -| -------------------- | ------------------ | -| `www` サブドメイン | `www.example.com` | -| カスタムサブドメイン | `blog.example.com` | -| Apex ドメイン | `example.com` | +| Supported custom domain type | Example | +|---|---| +| `www` subdomain | `www.example.com` | +| Custom subdomain | `blog.example.com` | +| Apex domain | `example.com` | -サイトには、Apex及び`www`サブドメインのいずれか、あるいは両方の設定をセットアップできます。 Apexドメインに関する詳しい情報については「[{% data variables.product.prodname_pages %}サイトでのApexドメインの利用](#using-an-apex-domain-for-your-github-pages-site)」を参照してください。 +You can set up either or both of apex and `www` subdomain configurations for your site. For more information on apex domains, see "[Using an apex domain for your {% data variables.product.prodname_pages %} site](#using-an-apex-domain-for-your-github-pages-site)." -Apex ドメインを使用している場合でも、`www` サブドメインを使用することをおすすめします。 Apexドメインで新しいサイトを作成する場合、サイトのコンテンツを提供する際に`www`サブドメインも利用できるように保護が自動的に試みられます。 `www`サブドメインを設定すれば、関連するApexドメインの保護が自動的に試みられます。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site)」を参照してください。 +We recommend always using a `www` subdomain, even if you also use an apex domain. When you create a new site with an apex domain, we automatically attempt to secure the `www` subdomain for use when serving your site's content. If you configure a `www` subdomain, we automatically attempt to secure the associated apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -ユーザまたは Organization サイトのカスタムドメインを設定すると、カスタムドメインを設定していないアカウントが所有するプロジェクトサイトの URL で、`<user>.github.io` または `<organization>.github.io` の部分がカスタムドメインによって置き換えられます。 たとえば、サイトのカスタムドメインが `www.octocat.com` で、`octo-project` というリポジトリから公開されているプロジェクトサイトにまだカスタムドメインを設定していない場合、そのリポジトリの {% data variables.product.prodname_pages %} サイトは、`www.octocat.com/octo-project` で公開されます。 +After you configure a custom domain for a user or organization site, the custom domain will replace the `<user>.github.io` or `<organization>.github.io` portion of the URL for any project sites owned by the account that do not have a custom domain configured. For example, if the custom domain for your user site is `www.octocat.com`, and you have a project site with no custom domain configured that is published from a repository called `octo-project`, the {% data variables.product.prodname_pages %} site for that repository will be available at `www.octocat.com/octo-project`. -## あなたの {% data variables.product.prodname_pages %} サイトにサブドメインを使用する +## Using a subdomain for your {% data variables.product.prodname_pages %} site -サブドメインは、URL のうちルートドメインの前の部分です。 サブドメインは、`www` に設定することも、あるいは `blog.example.com` のようにサイトの独自セクションに設定することもできます。 +A subdomain is the part of a URL before the root domain. You can configure your subdomain as `www` or as a distinct section of your site, like `blog.example.com`. -サブドメインは、DNS プロバイダを通じて `CNAME` レコードで設定されます。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)」を参照してください。 +Subdomains are configured with a `CNAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)." -### `www` サブドメイン +### `www` subdomains -サブドメインの種類として最もよく使われているのは、`www` サブドメインです。 たとえば、`www.example.com` には `www` サブドメインが含まれています。 +A `www` subdomain is the most commonly used type of subdomain. For example, `www.example.com` includes a `www` subdomain. -`www` サブドメインは、カスタムドメインとして最も安定的です。{% data variables.product.product_name %} のサーバの IP アドレスが変更されても、`www` サブドメインは影響を受けないからです。 +`www` subdomains are the most stable type of custom domain because `www` subdomains are not affected by changes to the IP addresses of {% data variables.product.product_name %}'s servers. -### カスタムサブドメイン +### Custom subdomains -カスタムサブドメインは、標準の`www`形式を使わない種類のサブドメインです。 カスタムサブドメインは、サイトに 2 つの独自セクションを作成したい場合に最もよく使われます。 たとえば、`blog.example.com` というサイトを作成し、`www.example.com` から独自のセクションをカスタマイズできます。 +A custom subdomain is a type of subdomain that doesn't use the standard `www` variant. Custom subdomains are mostly used when you want two distinct sections of your site. For example, you can create a site called `blog.example.com` and customize that section independently from `www.example.com`. -## あなたの {% data variables.product.prodname_pages %} サイトに Apex ドメインを使用する +## Using an apex domain for your {% data variables.product.prodname_pages %} site -Apex ドメインは、`example.com` といったようにサブドメインを含まないカスタムドメインです。 Apex ドメインは、ベースドメイン、ベアドメイン、裸ドメイン、ルート Apex ドメイン、ゾーン Apex ドメインなどとも呼ばれます。 +An apex domain is a custom domain that does not contain a subdomain, such as `example.com`. Apex domains are also known as base, bare, naked, root apex, or zone apex domains. -Apex ドメインは、DNS プロバイダを通じて、`A`、`ALIAS`、`ANAME` レコードで設定されます。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)」を参照してください。 +An apex domain is configured with an `A`, `ALIAS`, or `ANAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." -{% data reusables.pages.www-and-apex-domain-recommendation %} 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)」を参照してください。 +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)." ## Securing the custom domain for your {% data variables.product.prodname_pages %} site {% data reusables.pages.secure-your-domain %} 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)" and "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -サイトが自動的に無効化される理由は、いくつかあります。 +There are a couple of reasons your site might be automatically disabled. -- {% data variables.product.prodname_pro %} から {% data variables.product.prodname_free_user %} へダウングレードすると、アカウント内のプライベートリポジトリから公開されている {% data variables.product.prodname_pages %} のサイトは公開されなくなります。 詳細は「[{% data variables.product.prodname_dotcom %} の支払いプランをダウングレードする](/articles/downgrading-your-github-billing-plan)」を参照してください。 -- {% data variables.product.prodname_free_user %} を利用している個人アカウントへプライベートリポジトリを移譲した場合、そのリポジトリからは {% data variables.product.prodname_pages %} の機能を利用できなくなり、公開されている {% data variables.product.prodname_pages %} は公開されなくなります。 詳細は「[リポジトリを移譲する](/articles/transferring-a-repository)」を参照してください。 +- If you downgrade from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, any {% data variables.product.prodname_pages %} sites that are currently published from private repositories in your account will be unpublished. For more information, see "[Downgrading your {% data variables.product.prodname_dotcom %} billing plan](/articles/downgrading-your-github-billing-plan)." +- If you transfer a private repository to a personal account that is using {% data variables.product.prodname_free_user %}, the repository will lose access to the {% data variables.product.prodname_pages %} feature, and the currently published {% data variables.product.prodname_pages %} site will be unpublished. For more information, see "[Transferring a repository](/articles/transferring-a-repository)." -## 参考リンク +## Further reading -- [カスタムドメインと {% data variables.product.prodname_pages %} のトラブルシューティング](/articles/troubleshooting-custom-domains-and-github-pages) +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md index 01a2c8f28e..df8f8b376f 100644 --- a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md +++ b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md @@ -1,14 +1,14 @@ --- -title: GitHub Pages サイトのカスタムドメインを設定する -intro: '{% data variables.product.prodname_pages %} サイトのドメイン名をカスタマイズできます。' +title: Configuring a custom domain for your GitHub Pages site +intro: 'You can customize the domain name of your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/tips-for-configuring-an-a-record-with-your-dns-provider/ - - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/ - - /articles/configuring-an-a-record-with-your-dns-provider/ - - /articles/using-a-custom-domain-with-github-pages/ - - /articles/tips-for-configuring-a-cname-record/ - - /articles/setting-up-a-custom-domain-with-pages/ - - /articles/setting-up-a-custom-domain-with-github-pages/ + - /articles/tips-for-configuring-an-a-record-with-your-dns-provider + - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site + - /articles/configuring-an-a-record-with-your-dns-provider + - /articles/using-a-custom-domain-with-github-pages + - /articles/tips-for-configuring-a-cname-record + - /articles/setting-up-a-custom-domain-with-pages + - /articles/setting-up-a-custom-domain-with-github-pages - /articles/configuring-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/configuring-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -22,6 +22,5 @@ children: - /managing-a-custom-domain-for-your-github-pages-site - /verifying-your-custom-domain-for-github-pages - /troubleshooting-custom-domains-and-github-pages -shortTitle: カスタムドメインの設定 +shortTitle: Configure a custom domain --- - diff --git a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md index bc9f577e4f..025d260cef 100644 --- a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md +++ b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md @@ -1,14 +1,14 @@ --- -title: GitHub Pages サイトのカスタムドメインを管理する -intro: '特定の DNS レコードとリポジトリ設定を設定または更新し、{% data variables.product.prodname_pages %} サイトのデフォルトドメインをカスタムドメインに指定することができます。' +title: Managing a custom domain for your GitHub Pages site +intro: 'You can set up or update certain DNS records and your repository settings to point the default domain for your {% data variables.product.prodname_pages %} site to a custom domain.' redirect_from: - - /articles/quick-start-setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain/ - - /articles/setting-up-a-www-subdomain/ - - /articles/setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain-and-www-subdomain/ - - /articles/adding-a-cname-file-to-your-repository/ - - /articles/setting-up-your-pages-site-repository/ + - /articles/quick-start-setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain + - /articles/setting-up-a-www-subdomain + - /articles/setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain-and-www-subdomain + - /articles/adding-a-cname-file-to-your-repository + - /articles/setting-up-your-pages-site-repository - /articles/managing-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -17,40 +17,41 @@ versions: ghec: '*' topics: - Pages -shortTitle: カスタムドメインの管理 +shortTitle: Manage a custom domain --- -リポジトリの管理者権限があるユーザは、{% data variables.product.prodname_pages %} サイトのカスタムドメインを設定できます。 +People with admin permissions for a repository can configure a custom domain for a {% data variables.product.prodname_pages %} site. -## カスタムドメインの設定について +## About custom domain configuration -DNS プロバイダでカスタムドメインを設定する前に、必ず {% data variables.product.prodname_pages %} サイトをカスタムドメインに追加してください。 カスタムドメインを {% data variables.product.product_name %} に追加せずに DNS プロバイダに設定すると、別のユーザがあなたのサブドメインにサイトをホストできることになります。 +Make sure you add your custom domain to your {% data variables.product.prodname_pages %} site before configuring your custom domain with your DNS provider. Configuring your custom domain with your DNS provider without adding your custom domain to {% data variables.product.product_name %} could result in someone else being able to host a site on one of your subdomains. {% windows %} -DNS レコードの設定が正しいかどうかを検証するために利用できる`dig` コマンドは、Windows には含まれていません。 DNS レコードが正しく設定されているかを検証する前に、[BIND](https://www.isc.org/bind/) をインストールする必要があります。 +The `dig` command, which can be used to verify correct configuration of DNS records, is not included in Windows. Before you can verify that your DNS records are configured correctly, you must install [BIND](https://www.isc.org/bind/). {% endwindows %} {% note %} -**注釈:** DNS の変更が伝播するには、最大 24 時間かかります。 +**Note:** DNS changes can take up to 24 hours to propagate. {% endnote %} -## サブドメインを設定する +## Configuring a subdomain -`www` または `www.example.com` や `blog.example.com` などのカスタムサブドメインを設定するには、リポジトリ設定にドメインを追加する必要があります。これにより、サイトのリポジトリに CNAME ファイルが作成されます。 その後、DNS プロバイダで CNAME レコードを設定します。 +To set up a `www` or custom subdomain, such as `www.example.com` or `blog.example.com`, you must add your domain in the repository settings, which will create a CNAME file in your site’s repository. After that, configure a CNAME record with your DNS provider. {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. "Custom domain(カスタムドメイン)" の下で、カスタムドメインを入力して**Save(保存)**をクリックします。 これで_CNAME_ファイルを公開ソースのルートに追加するコミットが作成されます。 ![カスタムドメインの保存ボタン](/assets/images/help/pages/save-custom-subdomain.png) -5. お使いの DNS プロバイダにアクセスし、サブドメインがサイトのデフォルトドメインを指す `CNAME` レコードを作成します。 たとえば、サイトで `www.example.com` というサブドメインを使いたい場合、`www.example.com` が `<user>.github.io` を指す`CNAME` レコードを作成します。 Organization サイトで `www.anotherexample.com` というサブドメインを使用する場合、`www.anotherexample.com` が `<organization>.github.io` を指す`CNAME` レコードを作成します。 `CNAME` レコードは、リポジトリ名を除いて、常に`<user>.github.io` または `<organization>.github.io` を指している必要があります。 {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-subdomain.png) +5. Navigate to your DNS provider and create a `CNAME` record that points your subdomain to the default domain for your site. For example, if you want to use the subdomain `www.example.com` for your user site, create a `CNAME` record that points `www.example.com` to `<user>.github.io`. If you want to use the subdomain `www.anotherexample.com` for your organization site, create a `CNAME` record that points `www.anotherexample.com` to `<organization>.github.io`. The `CNAME` record should always point to `<user>.github.io` or `<organization>.github.io`, excluding the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. DNS レコードが正しくセットアップされたことを確認するには、 `dig` コマンドを使います。_WWW.EXAMPLE.COM_ は、お使いのサブドメインに置き換えてください。 +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your subdomain. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -61,19 +62,20 @@ DNS レコードの設定が正しいかどうかを検証するために利用 {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## Apexドメインを設定する +## Configuring an apex domain -`example.com` などの Apex ドメインを設定するには、{% data variables.product.prodname_pages %} リポジトリに _CNAME_ ファイルを設定し、DNS プロバイダで少なくとも 1 つの `ALIAS`、`ANAME`、または `A` レコードを設定する必要があります。 +To set up an apex domain, such as `example.com`, you must configure a _CNAME_ file in your {% data variables.product.prodname_pages %} repository and at least one `ALIAS`, `ANAME`, or `A` record with your DNS provider. -{% data reusables.pages.www-and-apex-domain-recommendation %} 詳しい情報については、「[サブドメインを設定する](#configuring-a-subdomain)」を参照してください。 +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Configuring a subdomain](#configuring-a-subdomain)." {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. "Custom domain(カスタムドメイン)" の下で、カスタムドメインを入力して**Save(保存)**をクリックします。 これで_CNAME_ファイルを公開ソースのルートに追加するコミットが作成されます。 ![カスタムドメインの保存ボタン](/assets/images/help/pages/save-custom-apex-domain.png) -5. DNS プロバイダに移動し、`ALIAS`、`ANAME`、または `A` レコードを作成します。 You can also create `AAAA` records for IPv6 support. {% data reusables.pages.contact-dns-provider %} - - `ALIAS`または`ANAME`レコードを作成するには、Apexドメインをサイトのデフォルトドメインにポイントします。 {% data reusables.pages.default-domain-information %} - - `A` レコードを作成するには、Apex ドメインが {% data variables.product.prodname_pages %} の IP アドレスを指すようにします。 +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-apex-domain.png) +5. Navigate to your DNS provider and create either an `ALIAS`, `ANAME`, or `A` record. You can also create `AAAA` records for IPv6 support. {% data reusables.pages.contact-dns-provider %} + - To create an `ALIAS` or `ANAME` record, point your apex domain to the default domain for your site. {% data reusables.pages.default-domain-information %} + - To create `A` records, point your apex domain to the IP addresses for {% data variables.product.prodname_pages %}. ```shell 185.199.108.153 185.199.109.153 @@ -90,7 +92,7 @@ DNS レコードの設定が正しいかどうかを検証するために利用 {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. DNS レコードが正しく設定されたことを確認するには、 `dig` コマンドを使います。_EXAMPLE.COM_ は、お使いの Apex ドメインに置き換えてください。 結果が、上記の {% data variables.product.prodname_pages %} の IP アドレスに一致することを確認します。 +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _EXAMPLE.COM_ with your apex domain. Confirm that the results match the IP addresses for {% data variables.product.prodname_pages %} above. - For `A` records. ```shell $ dig <em>EXAMPLE.COM</em> +noall +answer -t A @@ -110,16 +112,16 @@ DNS レコードの設定が正しいかどうかを検証するために利用 {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## Apexドメインと`www`サブドメイン付きのドメインの設定 +## Configuring an apex domain and the `www` subdomain variant -Apexドメインを使う場合、コンテンツをApexドメインと`www`サブドメイン付きのドメインの双方でホストするよう{% data variables.product.prodname_pages %}サイトを設定することをおすすめします。 +When using an apex domain, we recommend configuring your {% data variables.product.prodname_pages %} site to host content at both the apex domain and that domain's `www` subdomain variant. -Apexドメインと共に`www`サブドメインをセットアップするには、まずApexドメインを設定しします。そうすると、DNSプロバイダで`ALIAS`、`ANAME`、`A`のいずれかのレコードが作成されます。 詳しい情報については「[Apexドメインの設定](#configuring-an-apex-domain)」を参照してください。 +To set up a `www` subdomain alongside the apex domain, you must first configure an apex domain, which will create an `ALIAS`, `ANAME`, or `A` record with your DNS provider. For more information, see "[Configuring an apex domain](#configuring-an-apex-domain)." -Apexドメインを設定したら、DNSプロバイダでCNAMEレコードを設定しなければなりません。 +After you configure the apex domain, you must configure a CNAME record with your DNS provider. -1. DNSプロバイダにアクセスして、`www.example.com`がサイトのデフォルトドメインの`<user>.github.io`もしくは`<organization>.github.io`を指すようにする`CNAME`レコードを作成してください。 リポジトリ名は含めないでください。 {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} -2. DNS レコードが正しくセットアップされたことを確認するには、 `dig` コマンドを使います。_WWW.EXAMPLE.COM_ は、`www`サブドメイン付きのドメインに置き換えてください。 +1. Navigate to your DNS provider and create a `CNAME` record that points `www.example.com` to the default domain for your site: `<user>.github.io` or `<organization>.github.io`. Do not include the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +2. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your `www` subdomain variant. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -127,17 +129,18 @@ Apexドメインを設定したら、DNSプロバイダでCNAMEレコードを > <em>YOUR-USERNAME</em>.github.io. 43192 IN CNAME <em> GITHUB-PAGES-SERVER </em>. > <em> GITHUB-PAGES-SERVER </em>. 22 IN A 192.0.2.1 ``` -## カスタムドメインの削除 +## Removing a custom domain {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. "Custom domain(カスタムドメイン)"の下で、**Remove(削除)**をクリックしてください。 ![カスタムドメインの保存ボタン](/assets/images/help/pages/remove-custom-domain.png) +4. Under "Custom domain," click **Remove**. + ![Save custom domain button](/assets/images/help/pages/remove-custom-domain.png) ## Securing your custom domain {% data reusables.pages.secure-your-domain %} 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)." -## 参考リンク +## Further reading -- [カスタムドメインと {% data variables.product.prodname_pages %} のトラブルシューティング](/articles/troubleshooting-custom-domains-and-github-pages) +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md index 6d50384e19..892a5af812 100644 --- a/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md +++ b/translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: カスタムドメインとGitHub Pages のトラブルシューティング -intro: '{% data variables.product.prodname_pages %} サイトのカスタムドメインまたは HTTPS について、よくあるエラーを確認して Issue を解決することができます。' +title: Troubleshooting custom domains and GitHub Pages +intro: 'You can check for common errors to resolve issues with custom domains or HTTPS for your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/my-custom-domain-isn-t-working/ - - /articles/custom-domain-isn-t-working/ - - /articles/troubleshooting-custom-domains/ + - /articles/my-custom-domain-isn-t-working + - /articles/custom-domain-isn-t-working + - /articles/troubleshooting-custom-domains - /articles/troubleshooting-custom-domains-and-github-pages - /github/working-with-github-pages/troubleshooting-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: カスタムドメインのトラブルシューティング +shortTitle: Troubleshoot a custom domain --- -## _CNAME_ エラー +## _CNAME_ errors -カスタムドメインは、公開ソースのルートにある _CNAME_ ファイルに保存されます。 このファイルは、リポジトリ設定を通じて、あるいは手動で追加または更新することができます。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site)」を参照してください。 +Custom domains are stored in a _CNAME_ file in the root of your publishing source. You can add or update this file through your repository settings or manually. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -サイトが正しいドメインをレンダリングするには、_CNAME_ ファイルがまだリポジトリに存在していることを確認します。 たとえば、静的サイトジェネレータの多くはリポジトリへのプッシュを強制するので、カスタムドメインの設定時にリポジトリに追加された _CNAME_ ファイルを上書きすることができます。 ローカルでサイトをビルドし、生成されたファイルを {% data variables.product.product_name %} にプッシュする場合は、_CNAME_ ファイルをローカルリポジトリに追加したコミットを先にプルして、そのファイルがビルドに含まれるようにする必要があります。 +For your site to render at the correct domain, make sure your _CNAME_ file still exists in the repository. For example, many static site generators force push to your repository, which can overwrite the _CNAME_ file that was added to your repository when you configured your custom domain. If you build your site locally and push generated files to {% data variables.product.product_name %}, make sure to pull the commit that added the _CNAME_ file to your local repository first, so the file will be included in the build. -次に、_CNAME_ のフォーマットが正しいことも確認します。 +Then, make sure the _CNAME_ file is formatted correctly. -- _CNAME_ ファイル名は、すべて大文字である必要があります。 -- _CNAME_ ファイルにはドメインを 1 つだけ含めることができます。 複数のドメインをサイトにポイントするには、DNSプロバイダ経由のリダイレクトを設定する必要があります。 -- _CNAME_ ファイルにはドメイン名のみが含まれている必要があります。 たとえば、`www.example.com`、`blog.example.com`、`example.com` などです。 -- ドメイン名は、すべての {% data variables.product.prodname_pages %} サイトで一意である必要があります。 たとえば、別のリポジトリの _CNAME_ ファイルに `example.com` が含まれている場合、自分のリポジトリの _CNAME_ ファイルに `example.com` を使用することはできません。 +- The _CNAME_ filename must be all uppercase. +- The _CNAME_ file can contain only one domain. To point multiple domains to your site, you must set up a redirect through your DNS provider. +- The _CNAME_ file must contain the domain name only. For example, `www.example.com`, `blog.example.com`, or `example.com`. +- The domain name must be unique across all {% data variables.product.prodname_pages %} sites. For example, if another repository's _CNAME_ file contains `example.com`, you cannot use `example.com` in the _CNAME_ file for your repository. -## DNS の設定ミス +## DNS misconfiguration -デフォルトドメインをカスタムドメインにポイントすることに問題がある場合は、DNS プロバイダに連絡してください。 +If you have trouble pointing the default domain for your site to your custom domain, contact your DNS provider. You can also use one of the following methods to test whether your custom domain's DNS records are configured correctly: - A CLI tool such as `dig`. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)". - An online DNS lookup tool. -## サポートされていないカスタムドメイン名 +## Custom domain names that are unsupported -カスタムドメインがサポートされていない場合、使用しているドメインをサポートされているドメインに変更しなければならないかもしれません。 DNSプロバイダに問い合わせて、ドメイン名の転送サービスを提供しているかどうかを確認することもできます。 +If your custom domain is unsupported, you may need to change your domain to a supported domain. You can also contact your DNS provider to see if they offer forwarding services for domain names. -サイトが以下に当てはまっていないを確認してください。 -- 複数の Apex ドメインを使用している。 たとえば、`example.com` と`anotherexample.com` の両方など。 -- 複数の `www` サブドメインを使用している。 たとえば、`www.example.com` と`www.anotherexample.com` の両方など。 -- Apex ドメインとカスタムサブドメインの両方を使用している。 たとえば、`example.com` と`docs.example.com` の両方など。 +Make sure your site does not: +- Use more than one apex domain. For example, both `example.com` and `anotherexample.com`. +- Use more than one `www` subdomain. For example, both `www.example.com` and `www.anotherexample.com`. +- Use both an apex domain and custom subdomain. For example, both `example.com` and `docs.example.com`. - 例外は`www`サブドメインです。 正しく設定されていれば、`www`サブドメインは自動的にApexドメインにリダイレクトされます。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)」を参照してください。 + The one exception is the `www` subdomain. If configured correctly, the `www` subdomain is automatically redirected to the apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." {% data reusables.pages.wildcard-dns-warning %} -サポートされているカスタムサブドメインのリストは、「[カスタムドメインと {% data variables.product.prodname_pages %} について](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)」を参照してください。 +For a list of supported custom domains, see "[About custom domains and {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)." -## HTTPS エラー +## HTTPS errors -`CNAME`、`ALIAS`、`ANAME` や `A` DNS レコードで適切に設定されたカスタムドメインを使っている {% data variables.product.prodname_pages %} サイトは、HTTPS でアクセスできます。 詳しい情報については[HTTPSで{% data variables.product.prodname_pages %}サイトをセキュアにする](/articles/securing-your-github-pages-site-with-https)を参照してください。 +{% data variables.product.prodname_pages %} sites using custom domains that are correctly configured with `CNAME`, `ALIAS`, `ANAME`, or `A` DNS records can be accessed over HTTPS. For more information, see "[Securing your {% data variables.product.prodname_pages %} site with HTTPS](/articles/securing-your-github-pages-site-with-https)." -カスタムドメインを設定した後、サイトが HTTPS 経由で利用可能になるには最長 1 時間かかります。 既存の DNS 設定をアップデートした後、HTTPS を有効化するプロセスを開始するには、カスタムドメインを削除してサイトのリポジトリに再追加しなければならない可能性があります。 詳しい情報については、「[{% data variables.product.prodname_pages %} サイト用のカスタムドメインを管理する](/articles/managing-a-custom-domain-for-your-github-pages-site)」を参照してください。 +It can take up to an hour for your site to become available over HTTPS after you configure your custom domain. After you update existing DNS settings, you may need to remove and re-add your custom domain to your site's repository to trigger the process of enabling HTTPS. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -Certification Authority Authorization (CAA) レコードの使用を選択した場合、HTTPS 経由でサイトにアクセスするには、値が `letsencrypt.org` の CAA レコードが少なくとも 1 つ存在している必要があります。 詳しい情報については、Let's Encrypt ドキュメンテーションの「[Certificate Authority Authorization (CAA)](https://letsencrypt.org/docs/caa/)」を参照してください。 +If you're using Certification Authority Authorization (CAA) records, at least one CAA record must exist with the value `letsencrypt.org` for your site to be accessible over HTTPS. For more information, see "[Certificate Authority Authorization (CAA)](https://letsencrypt.org/docs/caa/)" in the Let's Encrypt documentation. -## Linux での URL フォーマット +## URL formatting on Linux -サイトのURLに、先頭か最後がダッシュのユーザ名もしくは Organization 名が含まれていたり、連続するダッシュが含まれていたりすると、Linux でブラウズするユーザがそのサイトにアクセスしようとするとサーバーエラーを受け取ることになります。 これを修正するには、{% data variables.product.product_name %}のユーザ名から非英数字を取り除くよう変更してください。 詳細は「[{% data variables.product.prodname_dotcom %} ユーザ名を変更する](/articles/changing-your-github-username/)」を参照してください。 +If the URL for your site contains a username or organization name that begins or ends with a dash, or contains consecutive dashes, people browsing with Linux will receive a server error when they attempt to visit your site. To fix this, change your {% data variables.product.product_name %} username to remove non-alphanumeric characters. For more information, see "[Changing your {% data variables.product.prodname_dotcom %} username](/articles/changing-your-github-username/)." -## ブラウザのキャッシュ +## Browser cache -最近カスタムドメインを変更または削除し、ブラウザで新しい URL にアクセスできない場合は、ブラウザのキャッシュを削除してから新しい URL にアクセスすることが必要になる場合があります。 キャッシュの削除についての詳しい情報については、ブラウザのドキュメントを参照してください。 +If you've recently changed or removed your custom domain and can't access the new URL in your browser, you may need to clear your browser's cache to reach the new URL. For more information on clearing your cache, see your browser's documentation. diff --git a/translations/ja-JP/content/pages/index.md b/translations/ja-JP/content/pages/index.md index de17ca71b7..ac99f2500e 100644 --- a/translations/ja-JP/content/pages/index.md +++ b/translations/ja-JP/content/pages/index.md @@ -1,14 +1,13 @@ --- -title: GitHub Pagesのドキュメンテーション +title: GitHub Pages Documentation shortTitle: GitHub Pages intro: 'You can create a website directly from a repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}.' redirect_from: - - /categories/20/articles/ - - /categories/95/articles/ - - /categories/github-pages-features/ - - /pages/ - - /categories/96/articles/ - - /categories/github-pages-troubleshooting/ + - /categories/20/articles + - /categories/95/articles + - /categories/github-pages-features + - /categories/96/articles + - /categories/github-pages-troubleshooting - /categories/working-with-github-pages - /github/working-with-github-pages product: '{% data reusables.gated-features.pages %}' @@ -25,4 +24,3 @@ children: - /setting-up-a-github-pages-site-with-jekyll - /configuring-a-custom-domain-for-your-github-pages-site --- - diff --git a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md index 0a8646cfee..4b37a72160 100644 --- a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md @@ -2,8 +2,8 @@ title: About Jekyll build errors for GitHub Pages sites intro: 'If Jekyll encounters an error building your {% data variables.product.prodname_pages %} site locally or on {% data variables.product.product_name %}, you''ll receive an error message with more information.' redirect_from: - - /articles/viewing-jekyll-build-error-messages/ - - /articles/generic-jekyll-build-failures/ + - /articles/viewing-jekyll-build-error-messages + - /articles/generic-jekyll-build-failures - /articles/about-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' diff --git a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md index 214e959ab5..e93f69bfd4 100644 --- a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md +++ b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md @@ -1,9 +1,9 @@ --- -title: Jekyll を使用して GitHub Pages サイトにテーマを追加する -intro: テーマを追加およびカスタマイズすることにより、Jekyll サイトをパーソナライズできます。 +title: Adding a theme to your GitHub Pages site using Jekyll +intro: You can personalize your Jekyll site by adding and customizing a theme. redirect_from: - - /articles/customizing-css-and-html-in-your-jekyll-theme/ - - /articles/adding-a-jekyll-theme-to-your-github-pages-site/ + - /articles/customizing-css-and-html-in-your-jekyll-theme + - /articles/adding-a-jekyll-theme-to-your-github-pages-site - /articles/adding-a-theme-to-your-github-pages-site-using-jekyll - /github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -14,28 +14,30 @@ versions: ghec: '*' topics: - Pages -shortTitle: Pagesサイトへのテーマの追加 +shortTitle: Add theme to Pages site --- -リポジトリへの書き込み権限があるユーザは、Jekyll を使用して {% data variables.product.prodname_pages %} サイトにテーマを追加できます。 +People with write permissions for a repository can add a theme to a {% data variables.product.prodname_pages %} site using Jekyll. {% data reusables.pages.test-locally %} -## テーマを追加する +## Adding a theme {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -2. *_config.yml* に移動します。 +2. Navigate to *_config.yml*. {% data reusables.repositories.edit-file %} -4. テーマ名のために、ファイルに新しい行を追加します。 - - サポートされているテーマを使用するには、`theme: THEME-NAME` と入力し、テーマのリポジトリの README に表示されているテーマの名前に _THEME-NAME_ を置き換えます。 サポートされているテーマのリストについては、{% data variables.product.prodname_pages %} サイトで「[サポートされているテーマ](https://pages.github.com/themes/)」を参照してください。 ![設定ファイルでサポートされているテーマ](/assets/images/help/pages/add-theme-to-config-file.png) - - {% data variables.product.prodname_dotcom %} にホストされているその他の任意の Jekyll テーマを使うには、`remote_theme: THEME-NAME` と入力します。THEME-NAME の部分は、テーマのリポジトリの README に表示されている名前に置き換えます。 ![設定ファイルでサポートされていないテーマ](/assets/images/help/pages/add-remote-theme-to-config-file.png) +4. Add a new line to the file for the theme name. + - To use a supported theme, type `theme: THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the README of the theme's repository. For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. + ![Supported theme in config file](/assets/images/help/pages/add-theme-to-config-file.png) + - To use any other Jekyll theme hosted on {% data variables.product.prodname_dotcom %}, type `remote_theme: THEME-NAME`, replacing THEME-NAME with the name of the theme as shown in the README of the theme's repository. + ![Unsupported theme in config file](/assets/images/help/pages/add-remote-theme-to-config-file.png) {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## テーマの CSS をカスタマイズする +## Customizing your theme's CSS {% data reusables.pages.best-with-supported-themes %} @@ -43,31 +45,31 @@ shortTitle: Pagesサイトへのテーマの追加 {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -1. _/assets/css/style.scss_ という新しいファイルを作成します。 -2. ファイルの先頭に、以下の内容を追加します。 +1. Create a new file called _/assets/css/style.scss_. +2. Add the following content to the top of the file: ```scss --- --- @import "{{ site.theme }}"; ``` -3. カスタム CSS または Sass (インポートファイルも含む) があれば `@import` 行の直後に追加します。 +3. Add any custom CSS or Sass (including imports) you'd like immediately after the `@import` line. -## テーマの HTML レイアウトをカスタマイズする +## Customizing your theme's HTML layout {% data reusables.pages.best-with-supported-themes %} {% data reusables.pages.theme-customization-help %} -1. {% data variables.product.prodname_dotcom %} 上で、テーマのソースリポジトリにアクセスします。 たとえば、Minima のソースリポジトリは https://github.com/jekyll/minima です。 -2. *_layouts* フォルダ内で、テーマの _default.html_ ファイルに移動します。 -3. ファイルのコンテンツをコピーします。 +1. On {% data variables.product.prodname_dotcom %}, navigate to your theme's source repository. For example, the source repository for Minima is https://github.com/jekyll/minima. +2. In the *_layouts* folder, navigate to your theme's _default.html_ file. +3. Copy the contents of the file. {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -6. *_layouts/default.html* というファイルを作成します。 -7. 先ほどコピーしたデフォルトのレイアウトコンテンツを貼り付けます。 -8. 必要に応じてレイアウトをカスタマイズします。 +6. Create a file called *_layouts/default.html*. +7. Paste the default layout content you copied earlier. +8. Customize the layout as you'd like. -## 参考リンク +## Further reading -- [新しいファイルの作成](/articles/creating-new-files) +- "[Creating new files](/articles/creating-new-files)" diff --git a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md index ae839b390f..baf0068f4c 100644 --- a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md +++ b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md @@ -1,9 +1,9 @@ --- -title: Jekyll を使用して、GitHub Pages サイトの Markdown プロセッサを設定する -intro: 'Markdown プロセッサを選択して、{% data variables.product.prodname_pages %} サイトで Markdown をどのようにレンダリングするかを決めることができます。' +title: Setting a Markdown processor for your GitHub Pages site using Jekyll +intro: 'You can choose a Markdown processor to determine how Markdown is rendered on your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/migrating-your-pages-site-from-maruku/ - - /articles/updating-your-markdown-processor-to-kramdown/ + - /articles/migrating-your-pages-site-from-maruku + - /articles/updating-your-markdown-processor-to-kramdown - /articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll - /github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -14,25 +14,26 @@ versions: ghec: '*' topics: - Pages -shortTitle: Markdownプロセッサの設定 +shortTitle: Set Markdown processor --- -リポジトリへの書き込み権限があるユーザは、{% data variables.product.prodname_pages %} サイトに対して Markdown プロセッサを設定できます。 +People with write permissions for a repository can set the Markdown processor for a {% data variables.product.prodname_pages %} site. -{% data variables.product.prodname_pages %} supports two Markdown processors: [kramdown](http://kramdown.gettalong.org/) and {% data variables.product.prodname_dotcom %}'s own Markdown processor, which is used to render [{% data variables.product.prodname_dotcom %} Flavored Markdown (GFM)](https://github.github.com/gfm/) throughout {% data variables.product.product_name %}. 詳しい情報については、「[{% data variables.product.prodname_dotcom %}での執筆とフォーマットについて](/articles/about-writing-and-formatting-on-github)」を参照してください。 +{% data variables.product.prodname_pages %} supports two Markdown processors: [kramdown](http://kramdown.gettalong.org/) and {% data variables.product.prodname_dotcom %}'s own Markdown processor, which is used to render [{% data variables.product.prodname_dotcom %} Flavored Markdown (GFM)](https://github.github.com/gfm/) throughout {% data variables.product.product_name %}. For more information, see "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github)." You can use {% data variables.product.prodname_dotcom %} Flavored Markdown with either processor, but only our GFM processor will always match the results you see on {% data variables.product.product_name %}. {% data reusables.pages.navigate-site-repo %} -2. リポジトリの *_config.yml* ファイルを開きます。 +2. In your repository, browse to the *_config.yml* file. {% data reusables.repositories.edit-file %} -4. `markdown` で始まる行を見つけ、値を `kramdown` または `GFM`に変更します。 ![config.yml での Markdown 設定](/assets/images/help/pages/config-markdown-value.png) +4. Find the line that starts with `markdown:` and change the value to `kramdown` or `GFM`. + ![Markdown setting in config.yml](/assets/images/help/pages/config-markdown-value.png) {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_new_file %} -## 参考リンク +## Further reading -- [kramdown のドキュメント](https://kramdown.gettalong.org/documentation.html) -- [{% data variables.product.prodname_dotcom %} Flavored Markdown の仕様](https://github.github.com/gfm/) +- [kramdown Documentation](https://kramdown.gettalong.org/documentation.html) +- [{% data variables.product.prodname_dotcom %} Flavored Markdown Spec](https://github.github.com/gfm/) diff --git a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md index 0224c4f21a..6f54aa966b 100644 --- a/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md @@ -2,27 +2,27 @@ title: Troubleshooting Jekyll build errors for GitHub Pages sites intro: 'You can use Jekyll build error messages to troubleshoot problems with your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/page-build-failed-missing-docs-folder/ - - /articles/page-build-failed-invalid-submodule/ - - /articles/page-build-failed-missing-submodule/ - - /articles/page-build-failed-markdown-errors/ - - /articles/page-build-failed-config-file-error/ - - /articles/page-build-failed-unknown-tag-error/ - - /articles/page-build-failed-tag-not-properly-terminated/ - - /articles/page-build-failed-tag-not-properly-closed/ - - /articles/page-build-failed-file-does-not-exist-in-includes-directory/ - - /articles/page-build-failed-file-is-a-symlink/ - - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository/ - - /articles/page-build-failed-file-is-not-properly-utf-8-encoded/ - - /articles/page-build-failed-invalid-post-date/ - - /articles/page-build-failed-invalid-sass-or-scss/ - - /articles/page-build-failed-invalid-highlighter-language/ - - /articles/page-build-failed-relative-permalinks-configured/ - - /articles/page-build-failed-syntax-error-in-for-loop/ - - /articles/page-build-failed-invalid-yaml-in-data-file/ - - /articles/page-build-failed-date-is-not-a-valid-datetime/ - - /articles/troubleshooting-github-pages-builds/ - - /articles/troubleshooting-jekyll-builds/ + - /articles/page-build-failed-missing-docs-folder + - /articles/page-build-failed-invalid-submodule + - /articles/page-build-failed-missing-submodule + - /articles/page-build-failed-markdown-errors + - /articles/page-build-failed-config-file-error + - /articles/page-build-failed-unknown-tag-error + - /articles/page-build-failed-tag-not-properly-terminated + - /articles/page-build-failed-tag-not-properly-closed + - /articles/page-build-failed-file-does-not-exist-in-includes-directory + - /articles/page-build-failed-file-is-a-symlink + - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository + - /articles/page-build-failed-file-is-not-properly-utf-8-encoded + - /articles/page-build-failed-invalid-post-date + - /articles/page-build-failed-invalid-sass-or-scss + - /articles/page-build-failed-invalid-highlighter-language + - /articles/page-build-failed-relative-permalinks-configured + - /articles/page-build-failed-syntax-error-in-for-loop + - /articles/page-build-failed-invalid-yaml-in-data-file + - /articles/page-build-failed-date-is-not-a-valid-datetime + - /articles/troubleshooting-github-pages-builds + - /articles/troubleshooting-jekyll-builds - /articles/troubleshooting-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md index be8f9b3b16..04a027d1a8 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md @@ -1,9 +1,9 @@ --- -title: コード品質保証機能を使ってリポジトリでコラボレーションする -intro: 'ステータス、{% ifversion ghes %}pre-receive フック、{% endif %}保護されたブランチ、必須ステータスチェックなどの、ワークフローの品質保証機能は、コラボレーターが Organization やリポジトリの管理者が設定した条件に合うようにコントリビューションを行うために役立ちます。' +title: Collaborating on repositories with code quality features +intro: 'Workflow quality features like statuses, {% ifversion ghes %}pre-receive hooks, {% endif %}protected branches, and required status checks help collaborators make contributions that meet conditions set by organization and repository administrators.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features/ - - /articles/collaborating-on-repositories-with-code-quality-features-enabled/ + - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features + - /articles/collaborating-on-repositories-with-code-quality-features-enabled - /articles/collaborating-on-repositories-with-code-quality-features - /github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features versions: @@ -18,4 +18,3 @@ children: - /working-with-pre-receive-hooks shortTitle: Code quality features --- - diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md index 354270d5cf..4edfc60e28 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md @@ -1,9 +1,9 @@ --- -title: 共同開発モデルについて -intro: プルリクエストの使い方は、プロジェクトで使う開発モデルのタイプによります。 You can use the fork and pull model or the shared repository model. +title: About collaborative development models +intro: The way you use pull requests depends on the type of development model you use in your project. You can use the fork and pull model or the shared repository model. redirect_from: - /github/collaborating-with-issues-and-pull-requests/getting-started/about-collaborative-development-models - - /articles/types-of-collaborative-development-models/ + - /articles/types-of-collaborative-development-models - /articles/about-collaborative-development-models - /github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models - /github/collaborating-with-pull-requests/getting-started/about-collaborative-development-models @@ -16,23 +16,22 @@ topics: - Pull requests shortTitle: Collaborative development --- - ## Fork and pull model -In the fork and pull model, anyone can fork an existing repository and push changes to their personal fork. ユーザが所有するフォークにプッシュする際に、ソースリポジトリへのアクセス許可は必要ありません。 プロジェクトのメンテナーは、その変更をソースリポジトリにプルできます。 ユーザが所有するフォークのブランチからソース(上流)のリポジトリのブランチへの変更を提案するプルリクエストをオープンすると、上流のリポジトリへのプッシュアクセスを持つすべてのユーザがプルリクエストに変更を加えられるようにすることができます。 このモデルは、新しいコントリビュータにとって摩擦が減り、事前に調整することなく人々が独立して作業できることから、オープンソースプロジェクトでよく使われます。 +In the fork and pull model, anyone can fork an existing repository and push changes to their personal fork. You do not need permission to the source repository to push to a user-owned fork. The changes can be pulled into the source repository by the project maintainer. When you open a pull request proposing changes from your user-owned fork to a branch in the source (upstream) repository, you can allow anyone with push access to the upstream repository to make changes to your pull request. This model is popular with open source projects as it reduces the amount of friction for new contributors and allows people to work independently without upfront coordination. {% tip %} -**ヒント:**{% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} +**Tip:** {% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} {% endtip %} ## Shared repository model -共有リポジトリモデルでは、コラボレータは単一の共有リポジトリへのプッシュアクセスが許可され、変更の必要がある場合にはトピックブランチが作成されます。 このモデルでは、メインの開発ブランチに変更がマージされる前に、一連の変更についてコードレビューと一般的な議論を始めることができるので、プルリクエストが役に立ちます。 このモデルは、プライベートなプロジェクトで協力する小さなTeamやOrganizationで普及しています。 +In the shared repository model, collaborators are granted push access to a single shared repository and topic branches are created when changes need to be made. Pull requests are useful in this model as they initiate code review and general discussion about a set of changes before the changes are merged into the main development branch. This model is more prevalent with small teams and organizations collaborating on private projects. -## 参考リンク +## Further reading -- [プルリクエストについて](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) -- [フォークからプルリクエストを作成する](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) -- [フォークから作成されたプルリクエストブランチへの変更を許可する](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork) +- "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)" +- "[Creating a pull request from a fork](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)" +- "[Allowing changes to a pull request branch created from a fork](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md index 390724ceb7..1fef23a997 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md @@ -1,9 +1,9 @@ --- -title: はじめましょう -shortTitle: はじめましょう -intro: '{% data variables.product.prodname_dotcom %} フローと、プロジェクトのさまざまなコラボレーションおよびディスカッションの方法について学びます。' +title: Getting started +shortTitle: Getting started +intro: 'Learn about the {% data variables.product.prodname_dotcom %} flow and different ways to collaborate on and discuss your projects.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/getting-started/ + - /github/collaborating-with-issues-and-pull-requests/getting-started - /github/collaborating-with-issues-and-pull-requests/overview - /github/collaborating-with-pull-requests/getting-started versions: @@ -19,4 +19,3 @@ topics: children: - /about-collaborative-development-models --- - diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/index.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/index.md index 3e47180619..0b40a80858 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/index.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/index.md @@ -2,12 +2,12 @@ title: Collaborating with pull requests intro: 'Track and discuss changes in issues, then propose and review changes in pull requests.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/ - - /categories/63/articles/ - - /categories/collaborating/ - - /categories/collaborating-on-projects-using-pull-requests/ - - /categories/collaborating-on-projects-using-issues-and-pull-requests/ - - /categories/collaborating-with-issues-and-pull-requests/ + - /github/collaborating-with-issues-and-pull-requests + - /categories/63/articles + - /categories/collaborating + - /categories/collaborating-on-projects-using-pull-requests + - /categories/collaborating-on-projects-using-issues-and-pull-requests + - /categories/collaborating-with-issues-and-pull-requests - /github/collaborating-with-pull-requests versions: fpt: '*' @@ -26,4 +26,3 @@ children: - /incorporating-changes-from-a-pull-request shortTitle: Collaborate with pull requests --- - diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md index 8babad4362..35a425283f 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md @@ -30,7 +30,7 @@ You can review changes in a pull request one file at a time. While reviewing the {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.choose-pr-review %} {% data reusables.repositories.changed-files %} -{% ifversion fpt or ghec or ghes > 3.2 or ghae %} +{% ifversion fpt or ghec or ghes > 3.3 or ghae %} You can change the format of the diff view in this tab by clicking {% octicon "gear" aria-label="The Settings gear" %} and choosing the unified or split view. The choice you make will apply when you view the diff for other pull requests. diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md index e217a6ca5b..19207dd1b4 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md @@ -1,10 +1,10 @@ --- -title: フォークを使って作業する -intro: 'フォークは、{% data variables.product.product_name %} のオープンソース開発でよく使われます。' +title: Working with forks +intro: 'Forks are often used in open source development on {% data variables.product.product_name %}.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/working-with-forks/ + - /github/collaborating-with-issues-and-pull-requests/working-with-forks - /articles/working-with-forks - - /github/collaborating-with-pull-requests/working-with-forks/ + - /github/collaborating-with-pull-requests/working-with-forks versions: fpt: '*' ghes: '*' @@ -20,4 +20,3 @@ children: - /allowing-changes-to-a-pull-request-branch-created-from-a-fork - /what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility --- - diff --git a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md index 9d9b203f5a..2a067051d5 100644 --- a/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md +++ b/translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md @@ -3,7 +3,7 @@ title: What happens to forks when a repository is deleted or changes visibility? intro: Deleting your repository or changing its visibility affects that repository's forks. redirect_from: - /github/collaborating-with-issues-and-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - - /articles/changing-the-visibility-of-a-network/ + - /articles/changing-the-visibility-of-a-network - /articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility diff --git a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md index 3b3c794ddc..5877608cd0 100644 --- a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md +++ b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md @@ -1,74 +1,73 @@ --- -title: コミットメッセージの変更 +title: Changing a commit message redirect_from: - - /articles/can-i-delete-a-commit-message/ + - /articles/can-i-delete-a-commit-message - /articles/changing-a-commit-message - /github/committing-changes-to-your-project/changing-a-commit-message - /github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message -intro: 'コミットメッセージに不明確、不正確、または機密情報が含まれている場合、ローカルでメッセージを修正して、{% data variables.product.product_name %}に新しいメッセージで新しいコミットをプッシュできます。 また、コミットメッセージを変更して、不足している情報を追加することも可能です。' +intro: 'If a commit message contains unclear, incorrect, or sensitive information, you can amend it locally and push a new commit with a new message to {% data variables.product.product_name %}. You can also change a commit message to add missing information.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' --- +## Rewriting the most recent commit message -## 直近のコミットメッセージの書き換え +You can change the most recent commit message using the `git commit --amend` command. -`git commit --amend` コマンドで、直近のコミットメッセージを変更できます。 +In Git, the text of the commit message is part of the commit. Changing the commit message will change the commit ID--i.e., the SHA1 checksum that names the commit. Effectively, you are creating a new commit that replaces the old one. -Git では、コミットメッセージのテキストはコミットの一部として扱われます。 コミットメッセージを変更すると、コミット ID (コミットの SHA1 チェックサム) も変更されます。 実質的には、古いコミットに代わる新しいコミットを作成することになります。 +## Commit has not been pushed online -## オンラインにプッシュされていないコミット +If the commit only exists in your local repository and has not been pushed to {% data variables.product.product_location %}, you can amend the commit message with the `git commit --amend` command. -コミットがローカルリポジトリにのみ存在し、{% data variables.product.product_location %}にプッシュされていない場合、`git commit --amend` コマンドでコミットメッセージを修正できます。 - -1. コマンドラインで、修正したいコミットのあるリポジトリに移動します。 -2. `git commit --amend` と入力し、**Enter** を押します。 -3. テキストエディタでコミットメッセージを編集し、コミットを保存します。 - - コミットにトレーラーを追加することで、共作者を追加できます。 詳しい情報については、「[複数の作者を持つコミットを作成する](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)」を参照してください。 +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Type `git commit --amend` and press **Enter**. +3. In your text editor, edit the commit message, and save the commit. + - You can add a co-author by adding a trailer to the commit. For more information, see "[Creating a commit with multiple authors](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)." {% ifversion fpt or ghec %} - - コミットにトレーラーを追加することで、Organization の代理でコミットを作成できます。 詳しい情報については「[Organization の代理でコミットを作成](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)」を参照してください。 + - You can create commits on behalf of your organization by adding a trailer to the commit. For more information, see "[Creating a commit on behalf of an organization](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)" {% endif %} -次回のプッシュ時に、{% data variables.product.product_location %}に新たなコミットとメッセージが表示されます。 +The new commit and message will appear on {% data variables.product.product_location %} the next time you push. {% tip %} -Git で使うデフォルトのテキストエディタは、`core.editor` の設定で変更できます。 詳しい情報については、Git のマニュアルにある「[基本クライアント設定](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)」を参照してください。 +You can change the default text editor for Git by changing the `core.editor` setting. For more information, see "[Basic Client Configuration](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)" in the Git manual. {% endtip %} -## 古いまたは複数のコミットメッセージの修正 +## Amending older or multiple commit messages -すでにコミットを {% data variables.product.product_location %}にプッシュしている場合、修正済みのメッセージでコミットをフォースプッシュする必要があります。 +If you have already pushed the commit to {% data variables.product.product_location %}, you will have to force push a commit with an amended message. {% warning %} -リポジトリの履歴が変更されるため、フォースプッシュは推奨されません。 フォースプッシュを行った場合、リポジトリをすでにクローンした人はローカルの履歴を手動で修正する必要があります。 詳しい情報については、Git のマニュアルにある「[上流リベースからのリカバリ](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)」を参照してください。 +We strongly discourage force pushing, since this changes the history of your repository. If you force push, people who have already cloned your repository will have to manually fix their local history. For more information, see "[Recovering from upstream rebase](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)" in the Git manual. {% endwarning %} -**直近でプッシュされたコミットのメッセージを変更する** +**Changing the message of the most recently pushed commit** -1. [上記の手順](/articles/changing-a-commit-message#commit-has-not-been-pushed-online)に従って、コミットメッセージを修正します。 +1. Follow the [steps above](/articles/changing-a-commit-message#commit-has-not-been-pushed-online) to amend the commit message. 2. Use the `push --force-with-lease` command to force push over the old commit. ```shell $ git push --force-with-lease <em>example-branch</em> ``` -**古いまたは複数のコミットメッセージを変更する** +**Changing the message of older or multiple commit messages** -複数のコミットまたは古いコミットの、メッセージを修正する必要がある場合は、インタラクティブなリベースを利用した後にフォースプッシュして、コミットの履歴を変更できます。 +If you need to amend the message for multiple commits or an older commit, you can use interactive rebase, then force push to change the commit history. -1. コマンドラインで、修正したいコミットのあるリポジトリに移動します。 -2. `git rebase -i HEAD~n` コマンドで、デフォルトのテキストエディタに直近 `n` コミットの一覧を表示できます。 +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Use the `git rebase -i HEAD~n` command to display a list of the last `n` commits in your default text editor. ```shell - # 現在のブランチの最後の 3 つのコミットのリストを表示する + # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 ``` - リストは、以下のようになります。 + The list will look similar to the following: ```shell pick e499d89 Delete CNAME @@ -93,33 +92,33 @@ Git で使うデフォルトのテキストエディタは、`core.editor` の # # Note that empty commits are commented out ``` -3. 変更する各コミットメッセージの前の `pick` を `reword` に置き換えます。 +3. Replace `pick` with `reword` before each commit message you want to change. ```shell pick e499d89 Delete CNAME reword 0c39034 Better README reword f7fde4a Change the commit message but push the same commit. ``` -4. コミット一覧のファイルを保存して閉じます。 -5. 生成された各コミットコミットファイルに、新しいコミットメッセージを入力し、ファイルを保存して閉じます。 -6. 変更を GitHub にプッシュする準備ができたら、push --force コマンドを使用して、古いコミットを強制的にプッシュします。 +4. Save and close the commit list file. +5. In each resulting commit file, type the new commit message, save the file, and close it. +6. When you're ready to push your changes to GitHub, use the push --force command to force push over the old commit. ```shell $ git push --force <em>example-branch</em> ``` -インタラクティブリベースに関する詳しい情報については、Git のマニュアルにある「[インタラクティブモード](https://git-scm.com/docs/git-rebase#_interactive_mode)」を参照してください。 +For more information on interactive rebase, see "[Interactive mode](https://git-scm.com/docs/git-rebase#_interactive_mode)" in the Git manual. {% tip %} -この方法でも、コミットメッセージを修正すると、ID が新しい新たなコミットメッセージが作成されます。 ただしこの方法では、修正したコミットに続く各コミットも新しい ID を取得します。各コミットには、親の ID が含まれているためです。 +As before, amending the commit message will result in a new commit with a new ID. However, in this case, every commit that follows the amended commit will also get a new ID because each commit also contains the id of its parent. {% endtip %} {% warning %} -修正したコミットをフォースプッシュしても元のコミットは {% data variables.product.product_name %}から削除されない場合がありますので、元のコミットメッセージに機密情報が含まれている場合は注意してください。 古いコミットは、以降のクローンには含まれませんが、{% data variables.product.product_name %}にキャッシュされ、コミット ID でアクセスできます。 リモートリポジトリから古いコミットメッセージをパージするには、古いコミット ID を添えて {% data variables.contact.contact_support %}にお問い合わせください。 +If you have included sensitive information in a commit message, force pushing a commit with an amended commit may not remove the original commit from {% data variables.product.product_name %}. The old commit will not be a part of a subsequent clone; however, it may still be cached on {% data variables.product.product_name %} and accessible via the commit ID. You must contact {% data variables.contact.contact_support %} with the old commit ID to have it purged from the remote repository. {% endwarning %} -## 参考リンク +## Further reading -* 「[コミットに署名する](/articles/signing-commits)」 +* "[Signing commits](/articles/signing-commits)" diff --git a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/index.md b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/index.md index 39cdf25ae1..9206e8d17d 100644 --- a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/index.md +++ b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/index.md @@ -1,9 +1,9 @@ --- -title: 変更をプロジェクトにコミットする +title: Committing changes to your project intro: You can manage code changes in a repository by grouping work into commits. redirect_from: - - /categories/21/articles/ - - /categories/commits/ + - /categories/21/articles + - /categories/commits - /categories/committing-changes-to-your-project - /github/committing-changes-to-your-project versions: @@ -17,4 +17,3 @@ children: - /troubleshooting-commits shortTitle: Commit changes to your project --- - diff --git a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md index bd27be1d74..e63f9863ff 100644 --- a/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md +++ b/translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md @@ -1,11 +1,11 @@ --- -title: コミットが間違ったユーザにリンクされているのはなぜですか? +title: Why are my commits linked to the wrong user? redirect_from: - - /articles/how-do-i-get-my-commits-to-link-to-my-github-account/ + - /articles/how-do-i-get-my-commits-to-link-to-my-github-account - /articles/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user -intro: '{% data variables.product.product_name %} は、コミットヘッダのメールアドレスを使用して、コミットを GitHub ユーザにリンクします。 コミットが別のユーザにリンクされている、またはまったくリンクされていない場合は、ローカルの Git 設定 {% ifversion not ghae %} を変更するか、アカウントのメール設定にメールアドレスを追加するか、あるいはその両方を行う必要があります{% endif %}。' +intro: '{% data variables.product.product_name %} uses the email address in the commit header to link the commit to a GitHub user. If your commits are being linked to another user, or not linked to a user at all, you may need to change your local Git configuration settings{% ifversion not ghae %}, add an email address to your account email settings, or do both{% endif %}.' versions: fpt: '*' ghes: '*' @@ -13,45 +13,46 @@ versions: ghec: '*' shortTitle: Linked to wrong user --- - {% tip %} -**メモ**: コミットが別のユーザにリンクされている場合でも、そのユーザがあなたのリポジトリにアクセスできるわけではありません。 コラボレーターとして追加した場合、またはリポジトリにアクセスできる Team に追加した場合にのみ、ユーザはあなたが所有するリポジトリにアクセスできます。 +**Note**: If your commits are linked to another user, that does not mean the user can access your repository. A user can only access a repository you own if you add them as a collaborator or add them to a team that has access to the repository. {% endtip %} -## コミットは別のユーザにリンクされています +## Commits are linked to another user -コミットが別のユーザにリンクされている場合は、ローカルの Git 設定のメールアドレスが {% data variables.product.product_name %} 上のそのユーザのアカウントに接続されていることを意味します。 この場合、ローカルの Git 設定 {% ifversion ghae %} のメールを {% data variables.product.product_name %} のアカウントに関連付けられたアドレスに変更して、今後のコミットをリンクすることができます。 古いコミットはリンクされません。 For more information, see "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)."{% else %} and add the new email address to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} account to link future commits to your account. +If your commits are linked to another user, that means the email address in your local Git configuration settings is connected to that user's account on {% data variables.product.product_name %}. In this case, you can change the email in your local Git configuration settings{% ifversion ghae %} to the address associated with your account on {% data variables.product.product_name %} to link your future commits. Old commits will not be linked. For more information, see "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)."{% else %} and add the new email address to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} account to link future commits to your account. -1. ローカル Git 設定でメールアドレスを変更するには、「<[コミットメールアドレスを設定する](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)」の手順に従います。 複数のマシンで作業している場合は、各マシンでこの設定を変更する必要があります。 -2. 「[GitHub アカウントにメールアドレスを追加する](/articles/adding-an-email-address-to-your-github-account)」の手順に従って、ステップ 2 のメールアドレスをアカウント設定に追加します。{% endif %} +1. To change the email address in your local Git configuration, follow the steps in "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)". If you work on multiple machines, you will need to change this setting on each one. +2. Add the email address from step 2 to your account settings by following the steps in "[Adding an email address to your GitHub account](/articles/adding-an-email-address-to-your-github-account)".{% endif %} -これ以降のコミットは、あなたのアカウントにリンクされます。 +Commits you make from this point forward will be linked to your account. -## コミットはどのユーザにもリンクされていません +## Commits are not linked to any user -コミットがどのユーザにもリンクされていない場合、コミット作者の名前はユーザプロファイルへのリンクとして表示されません。 +If your commits are not linked to any user, the commit author's name will not be rendered as a link to a user profile. -これらのコミットに使用されたメールアドレスを確認し、コミットをアカウントに接続するには、次の手順に従います: +To check the email address used for those commits and connect commits to your account, take the following steps: -1. コミットメッセージリンクをクリックしてコミットに移動します。 ![コミットメッセージリンク](/assets/images/help/commits/commit-msg-link.png) -2. コミットがリンクされていない理由に関するメッセージを読むには、ユーザ名の右側にある青い {% octicon "question" aria-label="Question mark" %} の上にカーソルを合わせます。 ![コミットホバーメッセージ](/assets/images/help/commits/commit-hover-msg.png) +1. Navigate to the commit by clicking the commit message link. +![Commit message link](/assets/images/help/commits/commit-msg-link.png) +2. To read a message about why the commit is not linked, hover over the blue {% octicon "question" aria-label="Question mark" %} to the right of the username. +![Commit hover message](/assets/images/help/commits/commit-hover-msg.png) - - **未確認の作者 (メールアドレスあり)** このメッセージにメールアドレスが表示される場合、コミットの作成に使用したアドレスは {% data variables.product.product_name %} のアカウントに接続されていません。 {% ifversion not ghae %}コミットをリンクするには、[メールアドレスを GitHub のメール設定に追加](/articles/adding-an-email-address-to-your-github-account)します。{% endif %} メールアドレスに Gravatar が関連付けられている場合、デフォルトの灰色の Octocat ではなく、コミットの横に Gravatar が表示されます。 - - **Unrecognized author (no email address)** If you see this message without an email address, you used a generic email address that can't be connected to your account on {% data variables.product.product_name %}.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. 古いコミットはリンクされません。{% endif %} - - **Invalid email** The email address in your local Git configuration settings is either blank or not formatted as an email address.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. 古いコミットはリンクされません。{% endif %} + - **Unrecognized author (with email address)** If you see this message with an email address, the address you used to author the commit is not connected to your account on {% data variables.product.product_name %}. {% ifversion not ghae %}To link your commits, [add the email address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account).{% endif %} If the email address has a Gravatar associated with it, the Gravatar will be displayed next to the commit, rather than the default gray Octocat. + - **Unrecognized author (no email address)** If you see this message without an email address, you used a generic email address that can't be connected to your account on {% data variables.product.product_name %}.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. Old commits will not be linked.{% endif %} + - **Invalid email** The email address in your local Git configuration settings is either blank or not formatted as an email address.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. Old commits will not be linked.{% endif %} {% ifversion ghae %} -ローカルの Git 設定のメールをアカウントに関連付けられたアドレスに変更して、今後のコミットをリンクすることができます。 古いコミットはリンクされません。 詳しい情報については、「[コミットメールアドレスを設定する](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)」を参照してください。 +You can change the email in your local Git configuration settings to the address associated with your account to link your future commits. Old commits will not be linked. For more information, see "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)." {% endif %} {% warning %} -ローカル Git 設定に一般的なメールアドレス、または他のユーザのアカウントにすでに添付されているメールアドレスが含まれている場合、以前のコミットはアカウントにリンクされません。 Git では以前のコミットに使用したメールアドレスを変更することができますが、特に共有リポジトリではこれを推奨しません。 +If your local Git configuration contained a generic email address, or an email address that was already attached to another user's account, then your previous commits will not be linked to your account. While Git does allow you to change the email address used for previous commits, we strongly discourage this, especially in a shared repository. {% endwarning %} -## 参考リンク +## Further reading -* "[コミットの検索](/search-github/searching-on-github/searching-commits)" +* "[Searching commits](/search-github/searching-on-github/searching-commits)" diff --git a/translations/ja-JP/content/repositories/archiving-a-github-repository/index.md b/translations/ja-JP/content/repositories/archiving-a-github-repository/index.md index 7346dba220..753b40a4bf 100644 --- a/translations/ja-JP/content/repositories/archiving-a-github-repository/index.md +++ b/translations/ja-JP/content/repositories/archiving-a-github-repository/index.md @@ -1,8 +1,8 @@ --- -title: GitHub リポジトリのアーカイブ -intro: '{% data variables.product.product_name %}、API、あるいはサードパーティのツールやサービスを使って作業をアーカイブ、バックアップ、引用できます。' +title: Archiving a GitHub repository +intro: 'You can archive, back up, and cite your work using {% data variables.product.product_name %}, the API, or third-party tools and services.' redirect_from: - - /articles/can-i-archive-a-repository/ + - /articles/can-i-archive-a-repository - /articles/archiving-a-github-repository - /enterprise/admin/user-management/archiving-and-unarchiving-repositories - /github/creating-cloning-and-archiving-repositories/archiving-a-github-repository diff --git a/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md b/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md index d5b9b7df2c..fbef6893f4 100644 --- a/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md +++ b/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md @@ -1,8 +1,8 @@ --- -title: プルリクエストのマージ可能性を定義 -intro: プルリクエストをマージ可能にするための条件として、一連のチェックに合格することを必須とすることができます。 たとえば、ステータスチェックに合格しないプルリクエストをブロックすることができます。あるいは、プルリクエストを承認するレビューが一定数に達していなければマージできないようにすることができます。 +title: Defining the mergeability of pull requests +intro: 'You can require pull requests to pass a set of checks before they can be merged. For example, you can block pull requests that don''t pass status checks or require that pull requests have a specific number of approving reviews before they can be merged.' redirect_from: - - /articles/defining-the-mergeability-of-a-pull-request/ + - /articles/defining-the-mergeability-of-a-pull-request - /articles/defining-the-mergeability-of-pull-requests - /enterprise/admin/developer-workflow/establishing-pull-request-merge-conditions - /github/administering-a-repository/defining-the-mergeability-of-pull-requests diff --git a/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md b/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md index c1d86e7c09..807c0c5aa5 100644 --- a/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md +++ b/translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md @@ -1,10 +1,10 @@ --- -title: プルリクエスト中のブランチの削除と復元 -intro: リポジトリでの書き込みアクセスがある場合、クローズまたはマージされたプルリクエストに関連付けられているブランチを削除できます。 オープンなプルリクエストに関連付けられているブランチは削除できません。 +title: Deleting and restoring branches in a pull request +intro: 'If you have write access in a repository, you can delete branches that are associated with closed or merged pull requests. You cannot delete branches that are associated with open pull requests.' redirect_from: - - /articles/tidying-up-pull-requests/ - - /articles/restoring-branches-in-a-pull-request/ - - /articles/deleting-unused-branches/ + - /articles/tidying-up-pull-requests + - /articles/restoring-branches-in-a-pull-request + - /articles/deleting-unused-branches - /articles/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request @@ -17,30 +17,31 @@ topics: - Repositories shortTitle: Delete & restore branches --- +## Deleting a branch used for a pull request -## プルリクエストに使用されるブランチを削除する - -プルリクエストがマージまたはクローズされていて、ブランチを参照している他のオープンなプルリクエストがない場合は、プルリクエストに関連付けられているブランチを削除できます。 プルリクエストに関連付けられていないブランチをクローズする方法については、「[リポジトリ内でブランチを作成および削除する](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)」をご覧ください。 +You can delete a branch that is associated with a pull request if the pull request has been merged or closed and there are no other open pull requests referencing the branch. For information on closing branches that are not associated with pull requests, see "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. プルリクエストのリストで、削除対象のブランチに関連付けられているプルリクエストをクリックします。 -5. プルリクエストの下の方にある [**Delete branch**] をクリックします。 ![[Delete branch] ボタン](/assets/images/help/pull_requests/delete_branch_button.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to delete. +5. Near the bottom of the pull request, click **Delete branch**. + ![Delete branch button](/assets/images/help/pull_requests/delete_branch_button.png) - 現時点でこのブランチにオープンなプルリクエストがある場合、このボタンは表示されません。 + This button isn't displayed if there's currently an open pull request for this branch. -## 削除したブランチの復元 +## Restoring a deleted branch -クローズされたプルリクエストの head ブランチを復元できます。 +You can restore the head branch of a closed pull request. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. プルリクエストのリストで、復元対象のブランチに関連付けられているプルリクエストをクリックします。 -5. プルリクエストの下の方にある [**Restore branch**] をクリックします。 ![削除されたブランチの復元ボタン](/assets/images/help/branches/branches-restore-deleted.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to restore. +5. Near the bottom of the pull request, click **Restore branch**. + ![Restore deleted branch button](/assets/images/help/branches/branches-restore-deleted.png) -## 参考リンク +## Further reading -- 「[リポジトリ内でのブランチの作成と削除](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)」 -- 「[ブランチの自動削除の管理](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)」 +- "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)" +- "[Managing the automatic deletion of branches](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)" diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/about-repositories.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/about-repositories.md index 6a27e9ea41..57a56440e4 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -48,7 +48,7 @@ You can restrict who has access to a repository by choosing a repository's visib {% ifversion fpt or ghec or ghes %} -When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} can also be created with internal visibility. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} and are owned by an enterprise account can also be created with internal visibility. For more information, see [the {% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/repositories/creating-and-managing-repositories/about-repositories). {% elsif ghae %} @@ -61,7 +61,7 @@ When you create a repository owned by your user account, the repository is alway - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghes %} - If {% data variables.product.product_location %} is not in private mode or behind a firewall, public repositories are accessible to everyone on the internet. Otherwise, public repositories are available to everyone using {% data variables.product.product_location %}, including outside collaborators. -- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. Internal repositories are accessible to all enterprise members. +- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghae %} - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- endif %} diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md index bfa8f7311a..a8a463dce3 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md @@ -1,10 +1,10 @@ --- -title: 新しいリポジトリの作成 -intro: 個人アカウントや必要な権限を持つどのような Organization にも新しいリポジトリを作成できます。 +title: Creating a new repository +intro: You can create a new repository on your personal account or any organization where you have sufficient permissions. redirect_from: - - /creating-a-repo/ - - /articles/creating-a-repository-in-an-organization/ - - /articles/creating-a-new-organization-repository/ + - /creating-a-repo + - /articles/creating-a-repository-in-an-organization + - /articles/creating-a-new-organization-repository - /articles/creating-a-new-repository - /articles/creating-an-internal-repository - /github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository @@ -19,39 +19,41 @@ versions: topics: - Repositories --- - {% tip %} -**ヒント:** オーナーは Organization でのリポジトリの作成権限を制限できます。 詳しい情報については「[Organization でのリポジトリ作成の制限](/articles/restricting-repository-creation-in-your-organization)」を参照してください。 +**Tip:** Owners can restrict repository creation permissions in an organization. For more information, see "[Restricting repository creation in your organization](/articles/restricting-repository-creation-in-your-organization)." {% endtip %} {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**ヒント**: {% data variables.product.prodname_cli %} を使用してリポジトリを作成することもできます。 詳しい情報については、{% data variables.product.prodname_cli %} ドキュメントの「[`gh repo create`](https://cli.github.com/manual/gh_repo_create)」を参照してください。 +**Tip**: You can also create a repository using the {% data variables.product.prodname_cli %}. For more information, see "[`gh repo create`](https://cli.github.com/manual/gh_repo_create)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} {% data reusables.repositories.create_new %} -2. また、既存のリポジトリのディレクトリ構造とファイルを持つリポジトリを作成するには、[**Choose a template**] ドロップダウンでテンプレートリポジトリを選択します。 あなたが所有するテンプレートリポジトリ、あなたがメンバーとして属する Organization が所有するテンプレートリポジトリ、使ったことがあるテンプレートリポジトリが表示されます。 詳細は「[テンプレートからリポジトリを作成する](/articles/creating-a-repository-from-a-template)」を参照してください。 ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} -3. 必要に応じて、テンプレートを使用する場合、デフォルトのブランチだけでなく、テンプレートのすべてのブランチからのディレクトリ構造とファイルを含めるには、[**Include all branches**] を選択します。 ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} -3. [Owner] ドロップダウンで、リポジトリを作成するアカウントを選択します。 ![[Owner] ドロップダウンメニュー](/assets/images/help/repository/create-repository-owner.png) +2. Optionally, to create a repository with the directory structure and files of an existing repository, use the **Choose a template** drop-down and select a template repository. You'll see template repositories that are owned by you and organizations you're a member of or that you've used before. For more information, see "[Creating a repository from a template](/articles/creating-a-repository-from-a-template)." + ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} +3. Optionally, if you chose to use a template, to include the directory structure and files from all branches in the template, and not just the default branch, select **Include all branches**. + ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} +3. In the Owner drop-down, select the account you wish to create the repository on. + ![Owner drop-down menu](/assets/images/help/repository/create-repository-owner.png) {% data reusables.repositories.repo-name %} {% data reusables.repositories.choose-repo-visibility %} -6. テンプレートを使用していない場合は、リポジトリに自動入力できるオプションアイテムがいくつかあります。 既存のリポジトリを {% data variables.product.product_name %}にインポートする場合は、このようなオプションはどれも選択しないでください。マージコンフリクトが起きる可能性があります。 ユーザインターフェースを使用して新しいファイルを追加または作成する、またはコマンドラインを使用して後で新しいファイルを追加することができます。 For more information, see "[Importing a Git repository using the command line](/articles/importing-a-git-repository-using-the-command-line/)," "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)," and "[Addressing merge conflicts](/articles/addressing-merge-conflicts/)." - - 自分のプロジェクトについて説明するドキュメントである README を作成できます。 詳しい情報については「[README について](/articles/about-readmes/)」を参照してください。 - - 無視するルールを記載した *.gitignore* ファイルを作成できます。 詳細は「[ファイルを無視する](/github/getting-started-with-github/ignoring-files)」を参照してください。{% ifversion fpt or ghec %} - - 自分のプロジェクトにソフトウェアライセンスを追加することができます。 詳細は「[リポジトリのライセンス](/articles/licensing-a-repository)」を参照してください。{% endif %} +6. If you're not using a template, there are a number of optional items you can pre-populate your repository with. If you're importing an existing repository to {% data variables.product.product_name %}, don't choose any of these options, as you may introduce a merge conflict. You can add or create new files using the user interface or choose to add new files using the command line later. For more information, see "[Importing a Git repository using the command line](/articles/importing-a-git-repository-using-the-command-line/)," "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)," and "[Addressing merge conflicts](/articles/addressing-merge-conflicts/)." + - You can create a README, which is a document describing your project. For more information, see "[About READMEs](/articles/about-readmes/)." + - You can create a *.gitignore* file, which is a set of ignore rules. For more information, see "[Ignoring files](/github/getting-started-with-github/ignoring-files)."{% ifversion fpt or ghec %} + - You can choose to add a software license for your project. For more information, see "[Licensing a repository](/articles/licensing-a-repository)."{% endif %} {% data reusables.repositories.select-marketplace-apps %} {% data reusables.repositories.create-repo %} {% ifversion fpt or ghec %} -9. 表示された Quick Setup ページの下部、[Import code from an old repository] の下で、プロジェクトを自分の新しいリポジトリにインポートできます。 これを行うには、[**Import code**] をクリックします。 +9. At the bottom of the resulting Quick Setup page, under "Import code from an old repository", you can choose to import a project to your new repository. To do so, click **Import code**. {% endif %} -## 参考リンク +## Further reading -- "[Organization のリポジトリへのアクセスを管理する](/articles/managing-access-to-your-organization-s-repositories)" -- [オープンソースガイド](https://opensource.guide/){% ifversion fpt or ghec %} +- "[Managing access to your organization's repositories](/articles/managing-access-to-your-organization-s-repositories)" +- [Open Source Guides](https://opensource.guide/){% ifversion fpt or ghec %} - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}){% endif %} diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md index e3c0e31781..e5428dc4c8 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md @@ -1,9 +1,9 @@ --- -title: Issue だけのリポジトリの作成 -intro: '{% data variables.product.product_name %}では Issue に限定されたアクセス権限は存在しませんが、Issue 専用のリポジトリを作成すれば、実質的にそのようなアクセス権限を設定できます。' +title: Creating an issues-only repository +intro: '{% data variables.product.product_name %} does not provide issues-only access permissions, but you can accomplish this using a second repository which contains only the issues.' redirect_from: - - /articles/issues-only-access-permissions/ - - /articles/is-there-issues-only-access-to-organization-repositories/ + - /articles/issues-only-access-permissions + - /articles/is-there-issues-only-access-to-organization-repositories - /articles/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-an-issues-only-repository @@ -16,12 +16,11 @@ topics: - Repositories shortTitle: Issues-only repository --- +1. Create a **private** repository to host the source code from your project. +2. Create a second repository with the permissions you desire to host the issue tracker. +3. Add a README file to the issues repository explaining the purpose of this repository and linking to the issues section. +4. Set your collaborators or teams to give access to the repositories as you desire. -1. **private** リポジトリを作成し、プロジェクトのソースコードをホストします。 -2. Issue トラッカーをホストするための権限を持つ 2 番目のリポジトリを作成します。 -3. このリポジトリの目的を説明し、Issue セクションと結びつける README ファイルを Issue リポジトリに追加します。 -4. 思うようにコラボレーターまたは Team にリポジトリへのアクセスを付与するよう設定します。 +Users with write access to both can reference and close issues back and forth across the repositories, but those without the required permissions will see references that contain a minimum of information. -どちらにも書き込みアクセスのあるユーザは、リポジトリ間でお互いに Issue を引用して閉じることができます。ただし、必要な権限がない場合は最低限の情報だけの参照を見ることしかできません。 - -たとえば、プライベートリポジトリのデフォルトブランチに `Fixes organization/public-repo#12` というメッセージをつけてコミットをプッシュした場合、Issue は閉じられますが、Issue を閉じたコミットを示すリポジトリ間の参照は、適切な権限を持っているユーザだけしか見られません。 権限がなくても参照は表示されますが、詳細は省略されます。 +For example, if you pushed a commit to the private repository's default branch with a message that read `Fixes organization/public-repo#12`, the issue would be closed, but only users with the proper permissions would see the cross-repository reference indicating the commit that closed the issue. Without the permissions, a reference still appears, but the details are omitted. diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/deleting-a-repository.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/deleting-a-repository.md index 5fb2fd7aea..f9f2013c0c 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/deleting-a-repository.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/deleting-a-repository.md @@ -2,8 +2,8 @@ title: Deleting a repository intro: You can delete any repository or fork if you're either an organization owner or have admin permissions for the repository or fork. Deleting a forked repository does not delete the upstream repository. redirect_from: - - /delete-a-repo/ - - /deleting-a-repo/ + - /delete-a-repo + - /deleting-a-repo - /articles/deleting-a-repository - /github/administering-a-repository/deleting-a-repository - /github/administering-a-repository/managing-repository-settings/deleting-a-repository diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md index 928ec4b1a0..0cbb49c85b 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md @@ -1,8 +1,8 @@ --- -title: リポジトリを複製する +title: Duplicating a repository intro: 'To maintain a mirror of a repository without forking it, you can run a special clone command, then mirror-push to the new repository.' redirect_from: - - /articles/duplicating-a-repo/ + - /articles/duplicating-a-repo - /articles/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/duplicating-a-repository @@ -14,8 +14,7 @@ versions: topics: - Repositories --- - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %} {% note %} @@ -25,81 +24,81 @@ topics: {% endif %} -Before you can push the original repository to your new copy, or _mirror_, of the repository, you must [create the new repository](/articles/creating-a-new-repository) on {% data variables.product.product_location %}. 以下の例では、`exampleuser/new-repository` および `exampleuser/mirrored` がミラーです。 +Before you can push the original repository to your new copy, or _mirror_, of the repository, you must [create the new repository](/articles/creating-a-new-repository) on {% data variables.product.product_location %}. In these examples, `exampleuser/new-repository` or `exampleuser/mirrored` are the mirrors. -## リポジトリをミラーする +## Mirroring a repository {% data reusables.command_line.open_the_multi_os_terminal %} -2. リポジトリのベアクローンを作成します。 +2. Create a bare clone of the repository. ```shell $ git clone --bare https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>old-repository</em>.git ``` -3. 新しいリポジトリをミラープッシュします。 +3. Mirror-push to the new repository. ```shell $ cd <em>old-repository</em> $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>new-repository</em>.git ``` -4. 先ほど作成した一時ローカルリポジトリを削除します。 +4. Remove the temporary local repository you created earlier. ```shell $ cd .. $ rm -rf <em>old-repository</em> ``` -## {% data variables.large_files.product_name_long %} オブジェクトを含むリポジトリをミラーする +## Mirroring a repository that contains {% data variables.large_files.product_name_long %} objects {% data reusables.command_line.open_the_multi_os_terminal %} -2. リポジトリのベアクローンを作成します。 ユーザ名の例をリポジトリを所有する人や Organization の名前に置き換え、リポジトリ名の例を複製したいリポジトリの名前に置き換えてください。 +2. Create a bare clone of the repository. Replace the example username with the name of the person or organization who owns the repository, and replace the example repository name with the name of the repository you'd like to duplicate. ```shell $ git clone --bare https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>old-repository</em>.git ``` -3. クローンしたリポジトリに移動します。 +3. Navigate to the repository you just cloned. ```shell $ cd <em>old-repository</em> ``` -4. リポジトリの {% data variables.large_files.product_name_long %} オブジェクトをプルします。 +4. Pull in the repository's {% data variables.large_files.product_name_long %} objects. ```shell $ git lfs fetch --all ``` -5. 新しいリポジトリをミラープッシュします。 +5. Mirror-push to the new repository. ```shell $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>new-repository</em>.git ``` -6. リポジトリの {% data variables.large_files.product_name_long %} オブジェクトをミラーにプッシュします。 +6. Push the repository's {% data variables.large_files.product_name_long %} objects to your mirror. ```shell $ git lfs push --all https://github.com/<em>exampleuser/new-repository.git</em> ``` -7. 先ほど作成した一時ローカルリポジトリを削除します。 +7. Remove the temporary local repository you created earlier. ```shell $ cd .. $ rm -rf <em>old-repository</em> ``` -## 別の場所にあるリポジトリをミラーする +## Mirroring a repository in another location -元のリポジトリから更新を取得するなど、別の場所にあるリポジトリをミラーする場合は、ミラーをクローンして定期的に変更をプッシュできます。 +If you want to mirror a repository in another location, including getting updates from the original, you can clone a mirror and periodically push the changes. {% data reusables.command_line.open_the_multi_os_terminal %} -2. リポジトリのミラーしたベアクローンを作成します。 +2. Create a bare mirrored clone of the repository. ```shell $ git clone --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>repository-to-mirror</em>.git ``` -3. プッシュの場所をミラーに設定します。 +3. Set the push location to your mirror. ```shell $ cd <em>repository-to-mirror</em> $ git remote set-url --push origin https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>mirrored</em> ``` -ベアクローンと同様に、ミラーしたクローンにはすべてのリモートブランチとタグが含まれますが、フェッチするたびにすべてのローカルリファレンスが上書きされるため、常に元のリポジトリと同じになります。 プッシュする URL を設定することで、ミラーへのプッシュが簡素化されます。 +As with a bare clone, a mirrored clone includes all remote branches and tags, but all local references will be overwritten each time you fetch, so it will always be the same as the original repository. Setting the URL for pushes simplifies pushing to your mirror. -4. ミラーを更新するには、更新をフェッチしてプッシュします。 +4. To update your mirror, fetch updates and push. ```shell $ git fetch -p origin $ git push --mirror ``` -{% ifversion fpt or ghec %} -## 参考リンク +{% ifversion fpt or ghec %} +## Further reading * "[Pushing changes to GitHub](/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github#pushing-changes-to-github)" * "[About Git Large File Storage and GitHub Desktop](/desktop/getting-started-with-github-desktop/about-git-large-file-storage-and-github-desktop)" -* 「[GitHub Importer について](/github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer)」 +* "[About GitHub Importer](/github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer)" {% endif %} diff --git a/translations/ja-JP/content/repositories/creating-and-managing-repositories/transferring-a-repository.md b/translations/ja-JP/content/repositories/creating-and-managing-repositories/transferring-a-repository.md index 651ec1b4dd..82edf7150d 100644 --- a/translations/ja-JP/content/repositories/creating-and-managing-repositories/transferring-a-repository.md +++ b/translations/ja-JP/content/repositories/creating-and-managing-repositories/transferring-a-repository.md @@ -2,15 +2,15 @@ title: Transferring a repository intro: You can transfer repositories to other users or organization accounts. redirect_from: - - /articles/about-repository-transfers/ - - /move-a-repo/ - - /moving-a-repo/ - - /articles/what-is-transferred-with-a-repository/ - - /articles/what-is-transferred-with-a-repo/ - - /articles/how-to-transfer-a-repo/ - - /articles/how-to-transfer-a-repository/ - - /articles/transferring-a-repository-owned-by-your-personal-account/ - - /articles/transferring-a-repository-owned-by-your-organization/ + - /articles/about-repository-transfers + - /move-a-repo + - /moving-a-repo + - /articles/what-is-transferred-with-a-repository + - /articles/what-is-transferred-with-a-repo + - /articles/how-to-transfer-a-repo + - /articles/how-to-transfer-a-repository + - /articles/transferring-a-repository-owned-by-your-personal-account + - /articles/transferring-a-repository-owned-by-your-organization - /articles/transferring-a-repository - /github/administering-a-repository/transferring-a-repository - /github/administering-a-repository/managing-repository-settings/transferring-a-repository diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md index 0371d81e62..d5d45325ef 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md @@ -2,7 +2,7 @@ title: About code owners intro: You can use a CODEOWNERS file to define individuals or teams that are responsible for code in a repository. redirect_from: - - /articles/about-codeowners/ + - /articles/about-codeowners - /articles/about-code-owners - /github/creating-cloning-and-archiving-repositories/about-code-owners - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md index a6ad2effcd..bd1c73488f 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md @@ -2,8 +2,8 @@ title: About READMEs intro: 'You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.' redirect_from: - - /articles/section-links-on-readmes-and-blob-pages/ - - /articles/relative-links-in-readmes/ + - /articles/section-links-on-readmes-and-blob-pages + - /articles/relative-links-in-readmes - /articles/about-readmes - /github/creating-cloning-and-archiving-repositories/about-readmes - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-readmes diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md index 5819c68911..be5c459c90 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md @@ -1,12 +1,12 @@ --- -title: リポジトリの言語について -intro: リポジトリ内のファイルやディレクトリが、リポジトリを構成する言語を決定します。 リポジトリの言語を見れば、そのリポジトリの簡単な概要が得られます。 +title: About repository languages +intro: The files and directories within a repository determine the languages that make up the repository. You can view a repository's languages to get a quick overview of the repository. redirect_from: - - /articles/my-repository-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-my-favorite-language-recognized/ - - /articles/my-repo-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-sql-recognized-as-a-language/ - - /articles/why-isn-t-my-favorite-language-recognized-by-github/ + - /articles/my-repository-is-marked-as-the-wrong-language + - /articles/why-isn-t-my-favorite-language-recognized + - /articles/my-repo-is-marked-as-the-wrong-language + - /articles/why-isn-t-sql-recognized-as-a-language + - /articles/why-isn-t-my-favorite-language-recognized-by-github - /articles/about-repository-languages - /github/creating-cloning-and-archiving-repositories/about-repository-languages - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-repository-languages @@ -19,12 +19,11 @@ topics: - Repositories shortTitle: Repository languages --- +{% data variables.product.product_name %} uses the open source [Linguist library](https://github.com/github/linguist) to +determine file languages for syntax highlighting and repository statistics. Language statistics will update after you push changes to your default branch. -{% data variables.product.product_name %} は、オープンソースの [Linguist ライブラリ](https://github.com/github/linguist)を使用して、 -構文の強調表示とリポジトリ統計のファイル言語を決定します。 デフォルトブランチに変更をプッシュすると、言語統計が更新されます。 +Some files are hard to identify, and sometimes projects contain more library and vendor files than their primary code. If you're receiving incorrect results, please consult the Linguist [troubleshooting guide](https://github.com/github/linguist/blob/master/docs/troubleshooting.md) for help. -ファイルによっては特定しにくいものもあります。また、プロジェクトによっては、主たるコード以外のライブラリやベンダーファイルが含まれていることもあります。 誤った結果が返される場合は、Linguist の [トラブルシューティングガイド](https://github.com/github/linguist/blob/master/docs/troubleshooting.md)を調べてみてください。 +## Markup languages -## マークアップ言語 - -マークアップ言語は HTML にレンダリングされ、弊社のオープンソース[マークアップライブラリ](https://github.com/github/markup)を使ってインラインで表示されます。 現時点では、{% data variables.product.product_name %}内で表示する新しいマークアップ言語は受け付けていません。 しかし、弊社は現在のマークアップ言語群を積極的にメンテナンスしています。 もしも問題があれば、[Issue を作成してください](https://github.com/github/markup/issues/new)。 +Markup languages are rendered to HTML and displayed inline using our open-source [Markup library](https://github.com/github/markup). At this time, we are not accepting new markup languages to show within {% data variables.product.product_name %}. However, we do actively maintain our current markup languages. If you see a problem, [please create an issue](https://github.com/github/markup/issues/new). diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md index 2aa2f07f4f..48c0c4d4bf 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md @@ -2,7 +2,7 @@ title: Classifying your repository with topics intro: 'To help other people find and contribute to your project, you can add topics to your repository related to your project''s intended purpose, subject area, affinity groups, or other important qualities.' redirect_from: - - /articles/about-topics/ + - /articles/about-topics - /articles/classifying-your-repository-with-topics - /github/administering-a-repository/classifying-your-repository-with-topics - /github/administering-a-repository/managing-repository-settings/classifying-your-repository-with-topics diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md index 74ca140e7f..3ac3c54bdd 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md @@ -1,8 +1,8 @@ --- -title: リポジトリのライセンス -intro: GitHub のパブリックリポジトリは、オープンソース ソフトウェアの共有にも頻繁に利用されています。 リポジトリを真にオープンソースにしたければ、他のユーザが自由にそのソフトウェアを使用でき、変更や配布もできるように、ライセンスを付与する必要があります。 +title: Licensing a repository +intro: 'Public repositories on GitHub are often used to share open source software. For your repository to truly be open source, you''ll need to license it so that others are free to use, change, and distribute the software.' redirect_from: - - /articles/open-source-licensing/ + - /articles/open-source-licensing - /articles/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/licensing-a-repository @@ -13,86 +13,86 @@ versions: topics: - Repositories --- - ## 適切なライセンスを選択する +## Choosing the right license -コードのライセンスについて理解しやすいように、[choosealicense.com](https://choosealicense.com) のページを用意しました。 ソフトウェアのライセンスは、ソースコードに対して許可されることとされないことを規定するものなので、十分な情報に基づいて決定することが重要です。 +We created [choosealicense.com](https://choosealicense.com), to help you understand how to license your code. A software license tells others what they can and can't do with your source code, so it's important to make an informed decision. -ライセンスの選択は義務ではありませんが、 ライセンスがない場合はデフォルトの著作権法が適用されます。つまり、ソースコードについては作者があらゆる権利を留保し、ソースコードの複製、配布、派生物の作成は誰にも許可されないということです。 オープンソースのプロジェクトを作成する場合は、オープンソース ライセンスを設定することを強くおすすめします。 プロジェクトに適したライセンスの選択に関する詳細な手引きは、[オープンソース ガイド](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project)に記載されています。 +You're under no obligation to choose a license. However, without a license, the default copyright laws apply, meaning that you retain all rights to your source code and no one may reproduce, distribute, or create derivative works from your work. If you're creating an open source project, we strongly encourage you to include an open source license. The [Open Source Guide](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project) provides additional guidance on choosing the correct license for your project. {% note %} -**Note:** If you publish your source code in a public repository on {% data variables.product.product_name %}, {% ifversion fpt or ghec %}according to the [Terms of Service](/free-pro-team@latest/github/site-policy/github-terms-of-service), {% endif %}other users of {% data variables.product.product_location %} have the right to view and fork your repository. すでにリポジトリを作成していて、ユーザによるリポジトリへのアクセスを禁止する場合は、リポジトリをプライベートにすることができます。 リポジトリの表示をプライベートに変更しても、他のユーザによって作成された既存のフォークまたはローカルコピーは存続します。 詳細は「[リポジトリの可視性を設定する](/github/administering-a-repository/setting-repository-visibility)」を参照してください。 +**Note:** If you publish your source code in a public repository on {% data variables.product.product_name %}, {% ifversion fpt or ghec %}according to the [Terms of Service](/free-pro-team@latest/github/site-policy/github-terms-of-service), {% endif %}other users of {% data variables.product.product_location %} have the right to view and fork your repository. If you have already created a repository and no longer want users to have access to the repository, you can make the repository private. When you change the visibility of a repository to private, existing forks or local copies created by other users will still exist. For more information, see "[Setting repository visibility](/github/administering-a-repository/setting-repository-visibility)." {% endnote %} -## ライセンスの置かれている場所を確認する +## Determining the location of your license -多くの場合、ライセンステキストはリポジトリのルートにある `LICENSE.txt` (または `LICENSE.md` か `LICENSE.rst`) というファイルに書かれています。 [Hubot の例をこちらに示します](https://github.com/github/hubot/blob/master/LICENSE.md) +Most people place their license text in a file named `LICENSE.txt` (or `LICENSE.md` or `LICENSE.rst`) in the root of the repository; [here's an example from Hubot](https://github.com/github/hubot/blob/master/LICENSE.md). -プロジェクトによっては、ライセンスに関する情報は README に記載されています。 たとえばプロジェクトの README には、「当ライセンスは MIT ライセンスの規約に基づいて付与されています」などの文言が書かれていることがあります。 +Some projects include information about their license in their README. For example, a project's README may include a note saying "This project is licensed under the terms of the MIT license." -ベスト プラクティスとして、プロジェクトにはライセンス ファイルを含めることをお勧めします。 +As a best practice, we encourage you to include the license file with your project. -## ライセンス別に GitHub を検索する +## Searching GitHub by license type -`license` 修飾子と、正確なライセンス キーワードを使用すると、ライセンスまたはライセンス ファミリーに基づいてリポジトリをフィルタリングできます。 +You can filter repositories based on their license or license family using the `license` qualifier and the exact license keyword: -| ライセンス | ライセンス キーワード | -| ----- | ------------------------------------------------------------- | -| | Academic Free License v3.0 | `afl-3.0` | -| | Apache ライセンス 2.0 | `apache-2.0` | -| | Artistic ライセンス 2.0 | `artistic-2.0` | -| | Boost Software License 1.0 | `bsl-1.0` | -| | BSD 2-Clause "Simplified" ライセンス | `bsd-2-clause` | -| | BSD 3-Clause "New" または "Revised" ライセンス | `bsd-3-clause` | -| | BSD 3-Clause Clear ライセンス | `bsd-3-clause-clear` | -| | Creative Commons ライセンス ファミリー | `cc` | -| | Creative Commons Zero v1.0 Universal | `cc0-1.0` | -| | Creative Commons Attribution 4.0 | `cc-by-4.0` | -| | Creative Commons Attribution Share Alike 4.0 | `cc-by-sa-4.0` | -| | Do What The F*ck You Want To Public License | `wtfpl` | -| | Educational Community License v2.0 | `ecl-2.0` | -| | Eclipse Public License 1.0 | `epl-1.0` | -| | Eclipse Public License 2.0 | `epl-2.0` | -| | European Union Public License 1.1 | `eupl-1.1` | -| | GNU Affero General Public License v3.0 | `agpl-3.0` | -| | GNU General Public License ファミリー | `gpl` | -| | GNU General Public License v2.0 | `gpl-2.0` | -| | GNU General Public License v3.0 | `gpl-3.0` | -| | GNU Lesser General Public License ファミリー | `lgpl` | -| | GNU Lesser General Public License v2.1 | `lgpl-2.1` | -| | GNU Lesser General Public License v3.0 | `lgpl-3.0` | -| | ISC | `isc` | -| | LaTeX Project Public License v1.3c | `lppl-1.3c` | -| | Microsoft Public License | `ms-pl` | -| | MIT | `mit` | -| | Mozilla Public License 2.0 | `mpl-2.0` | -| | Open Software License 3.0 | `osl-3.0` | -| | PostgreSQL License | `postgresql` | -| | SIL Open Font License 1.1 | `ofl-1.1` | -| | University of Illinois/NCSA Open Source License | `ncsa` | -| | The Unlicense | `unlicense` | -| | zLib License | `zlib` | +License | License keyword +--- | --- +| Academic Free License v3.0 | `afl-3.0` | +| Apache license 2.0 | `apache-2.0` | +| Artistic license 2.0 | `artistic-2.0` | +| Boost Software License 1.0 | `bsl-1.0` | +| BSD 2-clause "Simplified" license | `bsd-2-clause` | +| BSD 3-clause "New" or "Revised" license | `bsd-3-clause` | +| BSD 3-clause Clear license | `bsd-3-clause-clear` | +| Creative Commons license family | `cc` | +| Creative Commons Zero v1.0 Universal | `cc0-1.0` | +| Creative Commons Attribution 4.0 | `cc-by-4.0` | +| Creative Commons Attribution Share Alike 4.0 | `cc-by-sa-4.0` | +| Do What The F*ck You Want To Public License | `wtfpl` | +| Educational Community License v2.0 | `ecl-2.0` | +| Eclipse Public License 1.0 | `epl-1.0` | +| Eclipse Public License 2.0 | `epl-2.0` | +| European Union Public License 1.1 | `eupl-1.1` | +| GNU Affero General Public License v3.0 | `agpl-3.0` | +| GNU General Public License family | `gpl` | +| GNU General Public License v2.0 | `gpl-2.0` | +| GNU General Public License v3.0 | `gpl-3.0` | +| GNU Lesser General Public License family | `lgpl` | +| GNU Lesser General Public License v2.1 | `lgpl-2.1` | +| GNU Lesser General Public License v3.0 | `lgpl-3.0` | +| ISC | `isc` | +| LaTeX Project Public License v1.3c | `lppl-1.3c` | +| Microsoft Public License | `ms-pl` | +| MIT | `mit` | +| Mozilla Public License 2.0 | `mpl-2.0` | +| Open Software License 3.0 | `osl-3.0` | +| PostgreSQL License | `postgresql` | +| SIL Open Font License 1.1 | `ofl-1.1` | +| University of Illinois/NCSA Open Source License | `ncsa` | +| The Unlicense | `unlicense` | +| zLib License | `zlib` | -ファミリー ライセンス別で検索すると、結果にはそのファミリーのライセンスがすべて含まれます。 たとえば、`license:gpl` というクエリを実行した結果には、GNU General Public License v2.0 と GNU General Public License v3.0 でライセンスされているリポジトリが含まれます。 詳しい情報については[リポジトリの検索](/search-github/searching-on-github/searching-for-repositories/#search-by-license)を参照してください。 +When you search by a family license, your results will include all licenses in that family. For example, when you use the query `license:gpl`, your results will include repositories licensed under GNU General Public License v2.0 and GNU General Public License v3.0. For more information, see "[Searching for repositories](/search-github/searching-on-github/searching-for-repositories/#search-by-license)." -## ライセンスを見つけてもらう +## Detecting a license -[オープンソースの Ruby Gem Licensee](https://github.com/licensee/licensee) は、リポジトリの *LICENSE* ファイルを、既知のライセンスの候補リストと比較します。 Licensee には [ライセンス API](/rest/reference/licenses) も用意されており、 {% data variables.product.product_name %} のリポジトリがどのようにライセンスされているかを[深く理解できます](https://github.com/blog/1964-open-source-license-usage-on-github-com)。 自分のリポジトリで使用しているライセンスが、[ライセンス選択のウェブサイト](https://choosealicense.com/appendix/)にリストされていない場合は、[ライセンスの追加をリクエストする](https://github.com/github/choosealicense.com/blob/gh-pages/CONTRIBUTING.md#adding-a-license)ことができます。 +[The open source Ruby gem Licensee](https://github.com/licensee/licensee) compares the repository's *LICENSE* file to a short list of known licenses. Licensee also provides the [Licenses API](/rest/reference/licenses) and [gives us insight into how repositories on {% data variables.product.product_name %} are licensed](https://github.com/blog/1964-open-source-license-usage-on-github-com). If your repository is using a license that isn't listed on the [Choose a License website](https://choosealicense.com/appendix/), you can [request including the license](https://github.com/github/choosealicense.com/blob/gh-pages/CONTRIBUTING.md#adding-a-license). -自分のリポジトリで使用しているライセンスが、ライセンス選択のウェブサイトにはリストされていて、リポジトリ ページのトップに明示的に表示されていない場合には、複数のライセンスが含まれるなど、複雑な状況が考えられます。 ライセンスを見つけてもらうために、*LICENSE* ファイルは単純にし、リポジトリの *README* ファイルなど、どこかでその複雑さに言及してください。 +If your repository is using a license that is listed on the Choose a License website and it's not displaying clearly at the top of the repository page, it may contain multiple licenses or other complexity. To have your license detected, simplify your *LICENSE* file and note the complexity somewhere else, such as your repository's *README* file. -## 既存のライセンスでリポジトリにライセンスを適用する +## Applying a license to a repository with an existing license -ライセンスを選択できるのは、GitHub で新しいプロジェクトを作成するときだけです。 ブラウザを使って、手動でライセンスを追加できます。 リポジトリへのライセンスの追加についての詳しい情報は、「[リポジトリにライセンスを追加する](/articles/adding-a-license-to-a-repository)」を参照してください。 +The license picker is only available when you create a new project on GitHub. You can manually add a license using the browser. For more information on adding a license to a repository, see "[Adding a license to a repository](/articles/adding-a-license-to-a-repository)." -![GitHub.com でのライセンス選択のスクリーンショット](/assets/images/help/repository/repository-license-picker.png) +![Screenshot of license picker on GitHub.com](/assets/images/help/repository/repository-license-picker.png) -## 免責事項 +## Disclaimer -GitHub がオープンソース ライセンスへの取り組みで目指しているのは、ユーザが十分な情報に基づいて選択できるように基盤を作ることです。 GitHub は、オープンソース ライセンスとそれを使用しているプロジェクトについての情報をユーザが取得できるように、ライセンス情報を掲載しています。 その情報がお役に立つことを願っていますが、GitHub は法律の専門家ではなく、誤りがないとは言えません。 For that reason, GitHub provides the information on an "as-is" basis and makes no warranties regarding any information or licenses provided on or through it, and disclaims liability for damages resulting from using the license information. コードに適したライセンスや、ライセンスに関する他の法的な問題について不明な点がある場合は、必ず専門家にご相談ください。 +The goal of GitHub's open source licensing efforts is to provide a starting point to help you make an informed choice. GitHub displays license information to help users get information about open source licenses and the projects that use them. We hope it helps, but please keep in mind that we’re not lawyers and that we make mistakes like everyone else. For that reason, GitHub provides the information on an "as-is" basis and makes no warranties regarding any information or licenses provided on or through it, and disclaims liability for damages resulting from using the license information. If you have any questions regarding the right license for your code or any other legal issues relating to it, it’s always best to consult with a professional. -## 参考リンク +## Further reading -- オープンソース ガイドの「[オープンソースの法的な側面](https://opensource.guide/legal/)」セクションをお読みください。{% ifversion fpt or ghec %} +- The Open Source Guides' section "[The Legal Side of Open Source](https://opensource.guide/legal/)"{% ifversion fpt or ghec %} - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}){% endif %} diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md index b027483903..0181b7ae84 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md @@ -3,8 +3,8 @@ title: Managing security and analysis settings for your repository intro: 'You can control features that secure and analyze the code in your project on {% data variables.product.prodname_dotcom %}.' permissions: People with admin permissions to a repository can manage security and analysis settings for the repository. redirect_from: - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories/ - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories/ + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/managing-security-vulnerabilities/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md index 8911200f63..67c8fece20 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md @@ -1,11 +1,11 @@ --- -title: リポジトリへのプッシュに対するメール通知について -intro: 誰かがリポジトリにプッシュしたときに、特定のメールアドレスにメール通知を自動的に送信するように設定できます。 +title: About email notifications for pushes to your repository +intro: You can choose to automatically send email notifications to a specific email address when anyone pushes to the repository. permissions: People with admin permissions in a repository can enable email notifications for pushes to your repository. redirect_from: - - /articles/managing-notifications-for-pushes-to-a-repository/ - - /articles/receiving-email-notifications-for-pushes-to-a-repository/ - - /articles/about-email-notifications-for-pushes-to-your-repository/ + - /articles/managing-notifications-for-pushes-to-a-repository + - /articles/receiving-email-notifications-for-pushes-to-a-repository + - /articles/about-email-notifications-for-pushes-to-your-repository - /github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository @@ -18,35 +18,37 @@ topics: - Repositories shortTitle: Email notifications for pushes --- - {% data reusables.notifications.outbound_email_tip %} -リポジトリへのプッシュに対する各メール通知は、新しいコミットとそれらのコミットだけを含む diff へのリンクのリストを含みます。 このメール通知には以下が含まれます: +Each email notification for a push to a repository lists the new commits and links to a diff containing just those commits. In the email notification you'll see: -- コミットが行われたリポジトリの名前 -- コミットが行われたブランチ -- {% data variables.product.product_name %} 内での diff へのリンクを含むコミットの SHA1 -- コミットの作者 -- コミットが作成された日付 -- コミットの一部として変更されたファイル群 -- コミットメッセージ +- The name of the repository where the commit was made +- The branch a commit was made in +- The SHA1 of the commit, including a link to the diff in {% data variables.product.product_name %} +- The author of the commit +- The date when the commit was made +- The files that were changed as part of the commit +- The commit message -リポジトリへのプッシュに対して受け取るメール通知はフィルタリングできます。 詳細は、{% ifversion fpt or ghae or ghes or ghec %}「[通知を設定する](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}「[メール通知について](/github/receiving-notifications-about-activity-on-github/about-email-notifications)」を参照してください。 プッシュのメール通知を無効にすることもできます。 詳しい情報については、「[通知の配信方法を選択する](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}」を参照してください。 +You can filter email notifications you receive for pushes to a repository. For more information, see {% ifversion fpt or ghae or ghes or ghec %}"[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}"[About notification emails](/github/receiving-notifications-about-activity-on-github/about-email-notifications)." You can also turn off email notifications for pushes. For more information, see "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}." -## リポジトリへのプッシュに対するメール通知の有効化 +## Enabling email notifications for pushes to your repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.sidebar-notifications %} -5. 最大で 2 個まで、通知の送信先にしたいメールアドレスを空白で区切って入力します。 2 つを超える数のアカウントにメールを送信させたい場合は、メールアドレスの 1 つをグループメールアドレスにしてください。 ![メールアドレスのテキストボックス](/assets/images/help/settings/email_services_addresses.png) -1. 自分のサーバーを運用している場合は、**Approved ヘッダ**を介してメールの整合性を確認できます。 **Approved ヘッダ**は、このフィールドに入力するトークンまたはシークレットであり、メールで送信されます。 メールが `Approved` ヘッダが、送信したトークンにマッチする場合、そのメールが {% data variables.product.product_name %} からのものであると信頼できます。 ![Approved ヘッダのテキストボックスをメールで送信](/assets/images/help/settings/email_services_approved_header.png) -7. [**Setup notifications**] をクリックします。 ![設定通知ボタン](/assets/images/help/settings/setup_notifications_settings.png) +5. Type up to two email addresses, separated by whitespace, where you'd like notifications to be sent. If you'd like to send emails to more than two accounts, set one of the email addresses to a group email address. +![Email address textbox](/assets/images/help/settings/email_services_addresses.png) +1. If you operate your own server, you can verify the integrity of emails via the **Approved header**. The **Approved header** is a token or secret that you type in this field, and that is sent with the email. If the `Approved` header of an email matches the token, you can trust that the email is from {% data variables.product.product_name %}. +![Email approved header textbox](/assets/images/help/settings/email_services_approved_header.png) +7. Click **Setup notifications**. +![Setup notifications button](/assets/images/help/settings/setup_notifications_settings.png) -## 参考リンク +## Further reading {% ifversion fpt or ghae or ghes or ghec %} -- 「[通知について](/github/managing-subscriptions-and-notifications-on-github/about-notifications)」 +- "[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" {% else %} -- 「[通知について](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)」 -- [通知の配信方法を選択する](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications) -- 「[メール通知について](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)」 -- 「[Web 通知について](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)」{% endif %} +- "[About notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)" +- "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications)" +- "[About email notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)" +- "[About web notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)"{% endif %} diff --git a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md index 1841cf3ab9..60c27fc359 100644 --- a/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md +++ b/translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md @@ -2,9 +2,9 @@ title: Setting repository visibility intro: You can choose who can view your repository. redirect_from: - - /articles/making-a-private-repository-public/ - - /articles/making-a-public-repository-private/ - - /articles/converting-a-public-repo-to-a-private-repo/ + - /articles/making-a-private-repository-public + - /articles/making-a-public-repository-private + - /articles/converting-a-public-repo-to-a-private-repo - /articles/setting-repository-visibility - /github/administering-a-repository/setting-repository-visibility - /github/administering-a-repository/managing-repository-settings/setting-repository-visibility diff --git a/translations/ja-JP/content/repositories/releasing-projects-on-github/about-releases.md b/translations/ja-JP/content/repositories/releasing-projects-on-github/about-releases.md index e4033c0388..b4e5fce59b 100644 --- a/translations/ja-JP/content/repositories/releasing-projects-on-github/about-releases.md +++ b/translations/ja-JP/content/repositories/releasing-projects-on-github/about-releases.md @@ -1,9 +1,9 @@ --- -title: リリースについて -intro: 他の人が使用できるようにソフトウェア、リリースノート、バイナリファイルへのリンクをパッケージしたリリースを作成できます。 +title: About releases +intro: 'You can create a release to package software, along with release notes and links to binary files, for other people to use.' redirect_from: - - /articles/downloading-files-from-the-command-line/ - - /articles/downloading-files-with-curl/ + - /articles/downloading-files-from-the-command-line + - /articles/downloading-files-with-curl - /articles/about-releases - /articles/getting-the-download-count-for-your-releases - /github/administering-a-repository/getting-the-download-count-for-your-releases @@ -17,43 +17,42 @@ versions: topics: - Repositories --- - -## リリースについて +## About releases {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -![リリースの概要](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) +![An overview of releases](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) {% elsif ghes > 3.3 or ghae-issue-4972 %} -![リリースの概要](/assets/images/help/releases/releases-overview-with-contributors.png) +![An overview of releases](/assets/images/help/releases/releases-overview-with-contributors.png) {% else %} -![リリースの概要](/assets/images/help/releases/releases-overview.png) +![An overview of releases](/assets/images/help/releases/releases-overview.png) {% endif %} -リリースは、パッケージ化して、より多くのユーザがダウンロードして使用できるようにすることができるデプロイ可能なソフトウェアのイテレーションです。 +Releases are deployable software iterations you can package and make available for a wider audience to download and use. -リリースは [Git タグ](https://git-scm.com/book/en/Git-Basics-Tagging)に基づきます。タグは、リポジトリの履歴の特定の地点をマークするものです。 タグの日付は異なる時点で作成できるため、リリースの日付とは異なる場合があります。 既存のタグの表示に関する詳細は「[リポジトリのリリースとタグを表示する](/github/administering-a-repository/viewing-your-repositorys-releases-and-tags)」を参照してください。 +Releases are based on [Git tags](https://git-scm.com/book/en/Git-Basics-Tagging), which mark a specific point in your repository's history. A tag date may be different than a release date since they can be created at different times. For more information about viewing your existing tags, see "[Viewing your repository's releases and tags](/github/administering-a-repository/viewing-your-repositorys-releases-and-tags)." -リポジトリで新しいリリースが公開されたときに通知を受け取り、リポジトリで他の更新があったときには通知を受け取らないでいることができます。 詳しい情報については、{% ifversion fpt or ghae or ghes or ghec %}「[サブスクリプションを表示する](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions){% else %}「[リポジトリのリリースを Watch および Watch 解除する](/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository){% endif %}」を参照してください。 +You can receive notifications when new releases are published in a repository without receiving notifications about other updates to the repository. For more information, see {% ifversion fpt or ghae or ghes or ghec %}"[Viewing your subscriptions](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions){% else %}"[Watching and unwatching releases for a repository](/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository){% endif %}." -リポジトリへの読み取りアクセス権を持つ人はリリースを表示および比較できますが、リリースの管理はリポジトリへの書き込み権限を持つ人のみができます。 詳細は「[リポジトリのリリースを管理する](/github/administering-a-repository/managing-releases-in-a-repository)」を参照してください。 +Anyone with read access to a repository can view and compare releases, but only people with write permissions to a repository can manage releases. For more information, see "[Managing releases in a repository](/github/administering-a-repository/managing-releases-in-a-repository)." {% ifversion fpt or ghec %} You can manually create release notes while managing a release. Alternatively, you can automatically generate release notes from a default template, or customize your own release notes template. For more information, see "[Automatically generated release notes](/repositories/releasing-projects-on-github/automatically-generated-release-notes)." -リポジトリへの管理者権限を持つユーザは、{% data variables.large_files.product_name_long %}({% data variables.large_files.product_name_short %})オブジェクトを、{% data variables.product.product_name %} がリリースごとに作成する ZIP ファイルと tarball に含めるかどうかを選択できます。 詳しい情報については、「[リポジトリのアーカイブ内の {% data variables.large_files.product_name_short %} オブジェクトを管理する](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)」を参照してください。 +People with admin permissions to a repository can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.product_name %} creates for each release. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% ifversion fpt or ghec %} -リリースでセキュリティの脆弱性が修正された場合は、リポジトリにセキュリティアドバイザリを公開する必要があります。 {% data variables.product.prodname_dotcom %} は公開された各セキュリティアドバイザリを確認し、それを使用して、影響を受けるリポジトリに {% data variables.product.prodname_dependabot_alerts %} を送信できます。 詳しい情報については、「[GitHub セキュリティアドバイザリについて](/github/managing-security-vulnerabilities/about-github-security-advisories)」 を参照してください。 +If a release fixes a security vulnerability, you should publish a security advisory in your repository. {% data variables.product.prodname_dotcom %} reviews each published security advisory and may use it to send {% data variables.product.prodname_dependabot_alerts %} to affected repositories. For more information, see "[About GitHub Security Advisories](/github/managing-security-vulnerabilities/about-github-security-advisories)." -リポジトリ内のコードに依存しているリポジトリとパッケージを確認するために、依存関係グラフの [**依存関係**] タブを表示することができますが、それによって、新しいリリースの影響を受ける可能性があります。 詳しい情報については、「[依存関係グラフについて](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)」を参照してください。 +You can view the **Dependents** tab of the dependency graph to see which repositories and packages depend on code in your repository, and may therefore be affected by a new release. For more information, see "[About the dependency graph](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)." {% endif %} -リリースAPIを使用して、リリースアセットがダウンロードされた回数などの情報を収集することもできます。 詳しい情報については、「[リリース](/rest/reference/repos#releases)」を参照してください。 +You can also use the Releases API to gather information, such as the number of times people download a release asset. For more information, see "[Releases](/rest/reference/repos#releases)." {% ifversion fpt or ghec %} -## ストレージと帯域幅の容量 +## Storage and bandwidth quotas - リリースに含まれる各ファイルは、{% data variables.large_files.max_file_size %}以下でなければなりません。 リリースの合計サイズにも帯域幅の使用量にも制限はありません。 + Each file included in a release must be under {% data variables.large_files.max_file_size %}. There is no limit on the total size of a release, nor bandwidth usage. {% endif %} diff --git a/translations/ja-JP/content/repositories/releasing-projects-on-github/index.md b/translations/ja-JP/content/repositories/releasing-projects-on-github/index.md index d49aa3ba34..feb05945b2 100644 --- a/translations/ja-JP/content/repositories/releasing-projects-on-github/index.md +++ b/translations/ja-JP/content/repositories/releasing-projects-on-github/index.md @@ -1,9 +1,9 @@ --- -title: GitHub でプロジェクトをリリースする -intro: ほかの人がダウンロードできるように、ソフトウェア、リリースノート、およびバイナリファイルをパッケージ化したリリースを作成できます。 +title: Releasing projects on GitHub +intro: 'You can create a release to package software, release notes, and binary files for other people to download.' redirect_from: - - /categories/85/articles/ - - /categories/releases/ + - /categories/85/articles + - /categories/releases - /github/administering-a-repository/releasing-projects-on-github versions: fpt: '*' diff --git a/translations/ja-JP/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/translations/ja-JP/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md index 633d80b69a..eff47a5b08 100644 --- a/translations/ja-JP/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md +++ b/translations/ja-JP/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md @@ -1,9 +1,9 @@ --- -title: リポジトリのリリースを管理する -intro: リリースを作成し、プロジェクトのイテレーションをバンドルしてユーザに配信できます。 +title: Managing releases in a repository +intro: You can create releases to bundle and deliver iterations of a project to users. redirect_from: - /articles/creating-releases - - /articles/listing-and-editing-releases/ + - /articles/listing-and-editing-releases - /articles/editing-and-deleting-releases - /articles/managing-releases-in-a-repository - /github/administering-a-repository/creating-releases @@ -20,21 +20,20 @@ topics: - Repositories shortTitle: Manage releases --- - {% ifversion fpt or ghes > 3.0 or ghae or ghec %} -## リリース管理について +## About release management You can create new releases with release notes, @mentions of contributors, and links to binary files, as well as edit or delete existing releases. {% ifversion fpt or ghec %} -{% data variables.product.prodname_marketplace %} の特定のリリースからのアクションを公開することもできます。 詳しい情報については、「<a href="/actions/creating-actions/publishing-actions-in-github-marketplace" class="dotcom-only">アクションを {% data variables.product.prodname_marketplace %} で公開する</a>」を参照してください。 +You can also publish an action from a specific release in {% data variables.product.prodname_marketplace %}. For more information, see "<a href="/actions/creating-actions/publishing-actions-in-github-marketplace" class="dotcom-only">Publishing an action in the {% data variables.product.prodname_marketplace %}</a>." -{% data variables.large_files.product_name_long %}({% data variables.large_files.product_name_short %})オブジェクトを、{% data variables.product.product_name %} がリリースごとに作成する ZIP ファイルと tarball に含めるかどうかを選択できます。 詳しい情報については、「[リポジトリのアーカイブ内の {% data variables.large_files.product_name_short %} オブジェクトを管理する](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)」を参照してください。 +You can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.product_name %} creates for each release. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% endif %} -## リリースの作成 +## Creating a release {% include tool-switcher %} @@ -42,7 +41,7 @@ You can create new releases with release notes, @mentions of contributors, and l {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -3. [**Draft a new release**] をクリックします。 +3. Click **Draft a new release**. {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %}![Releases draft button](/assets/images/help/releases/draft-release-button-with-search.png){% else %}![Releases draft button](/assets/images/help/releases/draft_release_button.png){% endif %} 4. {% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}Click **Choose a tag**, type{% else %}Type{% endif %} a version number for your release{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}, and press **Enter**{% endif %}. Alternatively, select an existing tag. @@ -52,32 +51,36 @@ You can create new releases with release notes, @mentions of contributors, and l ![Confirm you want to create a new tag](/assets/images/help/releases/releases-tag-create-confirm.png) {% else %} - ![タグ付きバージョンのリリース](/assets/images/enterprise/releases/releases-tag-version.png) + ![Releases tagged version](/assets/images/enterprise/releases/releases-tag-version.png) {% endif %} 5. If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release. {% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}![Choose a branch](/assets/images/help/releases/releases-choose-branch.png) {% else %}![Releases tagged branch](/assets/images/enterprise/releases/releases-tag-branch.png){% endif %} -6. リリースのタイトルと説明を入力します。 +6. Type a title and description for your release. {%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you @mention any {% data variables.product.product_name %} users in the description, the published release will include a **Contributors** section with an avatar list of all the mentioned users. {%- endif %} {% ifversion fpt or ghec %} Alternatively, you can automatically generate your release notes by clicking **Auto-generate release notes**. {% endif %} - ![リリースの説明](/assets/images/help/releases/releases_description_auto.png) -7. オプションで、コンパイルされたプログラムなどのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。 ![リリースに DMG ファイルを含める](/assets/images/help/releases/releases_adding_binary.gif) -8. リリースが不安定であり、運用準備ができていないことをユーザに通知するには、[**This is a pre-release**] を選択します。 ![リリースをプレリリースとしてマークするチェックボックス](/assets/images/help/releases/prerelease_checkbox.png) + ![Releases description](/assets/images/help/releases/releases_description_auto.png) +7. Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box. + ![Providing a DMG with the Release](/assets/images/help/releases/releases_adding_binary.gif) +8. To notify users that the release is not ready for production and may be unstable, select **This is a pre-release**. + ![Checkbox to mark a release as prerelease](/assets/images/help/releases/prerelease_checkbox.png) {%- ifversion fpt or ghec %} -1. Optionally, if {% data variables.product.prodname_discussions %} are enabled in the repository, select **Create a discussion for this release**, then select the **Category** drop-down menu and click a category for the release discussion. ![リリースディスカッションを作成するためのチェックボックスと、カテゴリを選択するドロップダウンメニュー](/assets/images/help/releases/create-release-discussion.png) +1. Optionally, if {% data variables.product.prodname_discussions %} are enabled in the repository, select **Create a discussion for this release**, then select the **Category** drop-down menu and click a category for the release discussion. + ![Checkbox to create a release discussion and drop-down menu to choose a category](/assets/images/help/releases/create-release-discussion.png) {%- endif %} -9. リリースを公開する準備ができている場合は、[**Publish release**] をクリックします。 リリースの作業を後でする場合は、[**Save draft**] をクリックします。 ![[Publish release] と [Save draft] ボタン](/assets/images/help/releases/release_buttons.png) +9. If you're ready to publicize your release, click **Publish release**. To work on the release later, click **Save draft**. + ![Publish release and Draft release buttons](/assets/images/help/releases/release_buttons.png) {%- ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4972 or ghae-issue-4974 %} You can then view your published or draft releases in the releases feed for your repository. For more information, see "[Viewing your repository's releases and tags](/github/administering-a-repository/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags)." {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} ![Published release with @mentioned contributors](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) - {% else %} + {% else %} ![Published release with @mentioned contributors](/assets/images/help/releases/releases-overview-with-contributors.png) {% endif %} {%- endif %} @@ -105,7 +108,7 @@ If you @mention any {% data variables.product.product_name %} users in the notes {% endcli %} -## リリースの編集 +## Editing a release {% include tool-switcher %} @@ -114,11 +117,14 @@ If you @mention any {% data variables.product.product_name %} users in the notes {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -3. On the right side of the page, next to the release you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. ![リリースの編集](/assets/images/help/releases/edit-release-pencil.png) +3. On the right side of the page, next to the release you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. + ![Edit a release](/assets/images/help/releases/edit-release-pencil.png) {% else %} -3. ページの右側で、編集するリリースの横にある [**Edit release**] をクリックします。 ![リリースの編集](/assets/images/help/releases/edit-release.png) +3. On the right side of the page, next to the release you want to edit, click **Edit release**. + ![Edit a release](/assets/images/help/releases/edit-release.png) {% endif %} -4. Edit the details for the release in the form, then click **Update release**.{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you add or remove any @mentions of GitHub users in the description, those users will be added or removed from the avatar list in the **Contributors** section of the release.{% endif %} ![リリースの更新](/assets/images/help/releases/update-release.png) +4. Edit the details for the release in the form, then click **Update release**.{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you add or remove any @mentions of GitHub users in the description, those users will be added or removed from the avatar list in the **Contributors** section of the release.{% endif %} + ![Update a release](/assets/images/help/releases/update-release.png) {% endwebui %} @@ -128,7 +134,7 @@ Releases cannot currently be edited with {% data variables.product.prodname_cli {% endcli %} -## リリースの削除 +## Deleting a release {% include tool-switcher %} @@ -137,12 +143,16 @@ Releases cannot currently be edited with {% data variables.product.prodname_cli {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -3. On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="The trash icon" %}. ![リリースの削除](/assets/images/help/releases/delete-release-trash.png) +3. On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="The trash icon" %}. + ![Delete a release](/assets/images/help/releases/delete-release-trash.png) {% else %} -3. 削除するリリースの名前をクリックします。 ![リリースを表示するリンク](/assets/images/help/releases/release-name-link.png) -4. ページの右上にある [**Delete**] をクリックします。 ![リリースの削除ボタン](/assets/images/help/releases/delete-release.png) +3. Click the name of the release you wish to delete. + ![Link to view release](/assets/images/help/releases/release-name-link.png) +4. In the upper-right corner of the page, click **Delete**. + ![Delete release button](/assets/images/help/releases/delete-release.png) {% endif %} -5. [**Delete this release**] をクリックします。 ![リリースの削除を確認](/assets/images/help/releases/confirm-delete-release.png) +5. Click **Delete this release**. + ![Confirm delete release](/assets/images/help/releases/confirm-delete-release.png) {% endwebui %} diff --git a/translations/ja-JP/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md b/translations/ja-JP/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md index 8dc8a7e0f6..393e6eb56c 100644 --- a/translations/ja-JP/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md +++ b/translations/ja-JP/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md @@ -1,8 +1,8 @@ --- -title: リポジトリのリリースとタグを表示する -intro: リリース名またはタグのバージョン番号でリポジトリの履歴を時系列順に表示できます。 +title: Viewing your repository's releases and tags +intro: You can view the chronological history of your repository by release name or tag version number. redirect_from: - - /articles/working-with-tags/ + - /articles/working-with-tags - /articles/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-releases-and-tags @@ -16,27 +16,27 @@ topics: - Repositories shortTitle: View releases & tags --- - {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**ヒント**: {% data variables.product.prodname_cli %} を使用してリリースを表示することもできます。 詳しい情報については、{% data variables.product.prodname_cli %} ドキュメントの「[`gh release view`](https://cli.github.com/manual/gh_release_view)」を参照してください。 +**Tip**: You can also view a release using the {% data variables.product.prodname_cli %}. For more information, see "[`gh release view`](https://cli.github.com/manual/gh_release_view)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} -## リリースを表示する +## Viewing releases {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. [Releases] ページの上部にある [**Releases**] をクリックします。 +2. At the top of the Releases page, click **Releases**. -## タグを表示する +## Viewing tags {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. [Releases] ページの上部にある [**Tags**] をクリックします。 ![[Tags] ページ](/assets/images/help/releases/tags-list.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) -## 参考リンク +## Further reading -- 「[タグに署名する](/articles/signing-tags)」 +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md b/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md index b87549a6bf..2a5f059245 100644 --- a/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md +++ b/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md @@ -1,8 +1,8 @@ --- -title: リポジトリグラフについて -intro: リポジトリグラフは、リポジトリのデータを見たり分析したりするための役に立ちます。 +title: About repository graphs +intro: Repository graphs help you view and analyze data for your repository. redirect_from: - - /articles/using-graphs/ + - /articles/using-graphs - /articles/about-repository-graphs - /github/visualizing-repository-data-with-graphs/about-repository-graphs - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/about-repository-graphs @@ -14,19 +14,18 @@ versions: topics: - Repositories --- - -リポジトリグラフは、{% ifversion fpt or ghec %}トラフィック、リポジトリに依存するプロジェクト、{% endif %}リポジトリのコントリビューターとコミット、そしてリポジトリのフォークやネットワークに関する情報を提供します。 自分が管理しているリポジトリがある場合、このデータを使用すれば、リポジトリを誰が使っているのか、なぜ使っているのかをよりよく知ることができます。 +A repository's graphs give you information on {% ifversion fpt or ghec %} traffic, projects that depend on the repository,{% endif %} contributors and commits to the repository, and a repository's forks and network. If you maintain a repository, you can use this data to get a better understanding of who's using your repository and why they're using it. {% ifversion fpt or ghec %} -リポジトリグラフの中には {% data variables.product.prodname_free_user %} のパブリックリポジトリでしか利用できないものもあります。 -- パルス -- コントリビューター -- トラフィック -- コミット -- コードの更新頻度 -- ネットワーク +Some repository graphs are available only in public repositories with {% data variables.product.prodname_free_user %}: +- Pulse +- Contributors +- Traffic +- Commits +- Code frequency +- Network -その他のリポジトリグラフは、すべてのリポジトリで利用できます。 {% data variables.product.prodname_pro %}、{% data variables.product.prodname_team %}、および {% data variables.product.prodname_ghe_cloud %} では、パブリックおよびプライベートリポジトリですべてのリポジトリグラフを利用できます。 {% data reusables.gated-features.more-info %} +All other repository graphs are available in all repositories. Every repository graph is available in public and private repositories with {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %}, and {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} {% endif %} diff --git a/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md b/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md index 7335949eb3..02ea78541a 100644 --- a/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md +++ b/translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md @@ -1,9 +1,9 @@ --- -title: プロジェクトのコントリビューターを表示する -intro: 'リポジトリへのコミットにコントリビュートした人{% ifversion fpt or ghec %}とその依存関係{% endif %}を表示できます。' +title: Viewing a project's contributors +intro: 'You can see who contributed commits to a repository{% ifversion fpt or ghec %} and its dependencies{% endif %}.' redirect_from: - - /articles/i-don-t-see-myself-in-the-contributions-graph/ - - /articles/viewing-contribution-activity-in-a-repository/ + - /articles/i-don-t-see-myself-in-the-contributions-graph + - /articles/viewing-contribution-activity-in-a-repository - /articles/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/viewing-a-projects-contributors @@ -17,35 +17,36 @@ topics: - Repositories shortTitle: View project contributors --- +## About contributors -## コントリビューターについて - -コントリビューターグラフで{% ifversion ghes or ghae %}、コミットの共作者を含めて{% endif %}、リポジトリに貢献した上位 100 人のコントリビューターを表示できます。 マージコミットと空のコミットは、このグラフでコントリビューションとして数えられません。 +You can view the top 100 contributors to a repository{% ifversion ghes or ghae %}, including commit co-authors,{% endif %} in the contributors graph. Merge commits and empty commits aren't counted as contributions for this graph. {% ifversion fpt or ghec %} -プロジェクトの Python 依存関係に貢献した人のリストも表示されます。 この、コミュニティコントリビューターのリストを表示するには、`https://github.com/REPO-OWNER/REPO-NAME/community_contributors` にアクセスしてください。 +You can also see a list of people who have contributed to the project's Python dependencies. To access this list of community contributors, visit `https://github.com/REPO-OWNER/REPO-NAME/community_contributors`. {% endif %} -## コントリビューターグラフにアクセスする +## Accessing the contributors graph {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.accessing-repository-graphs %} -3. 左サイドバーで [**Contributors**] をクリックします。 ![コントリビュータータブ](/assets/images/help/graphs/contributors_tab.png) -4. オプションで、特定の期間におけるコントリビューターを表示するには、クリックしてから、その期間が選択されるまでドラッグしてください。 The contributors graph sums weekly commit numbers onto each Sunday, so your time period must include a Sunday. ![コントリビュータグラフで選択した時間範囲](/assets/images/help/graphs/repo_contributors_click_drag_graph.png) +3. In the left sidebar, click **Contributors**. + ![Contributors tab](/assets/images/help/graphs/contributors_tab.png) +4. Optionally, to view contributors during a specific time period, click, then drag until the time period is selected. The contributors graph sums weekly commit numbers onto each Sunday, so your time period must include a Sunday. + ![Selected time range in the contributors graph](/assets/images/help/graphs/repo_contributors_click_drag_graph.png) -## コントリビューターのトラブルシューティング +## Troubleshooting contributors -リポジトリのコントリビュータグラフにあなたが表示されない場合、以下の理由が考えられます: -- 上位 100 人に入っていない。 -- コミットがデフォルトブランチにマージされていない。 -- コミットの作成に使用したメールアドレスが、{% data variables.product.product_name %} のアカウントに接続されていない。 +If you don't appear in a repository's contributors graph, it may be because: +- You aren't one of the top 100 contributors. +- Your commits haven't been merged into the default branch. +- The email address you used to author the commits isn't connected to your account on {% data variables.product.product_name %}. {% tip %} -**ヒント:** リポジトリへのコミットのコントリビューターを一覧表示する方法については、「[リポジトリ](/rest/reference/repos#list-contributors)」を参照してください。 +**Tip:** To list all commit contributors in a repository, see "[Repositories](/rest/reference/repos#list-contributors)." {% endtip %} -リポジトリ内のあなたのコミットがすべてデフォルト以外のブランチにある場合、コントリビュータグラフには表示されません。 たとえば、`gh-pages`ブランチに対して行われたコミットは、`gh-pages`がリポジトリのデフォルトのブランチでない限り、グラフに含まれません。 コミットをデフォルトブランチにマージするため、プルリクエストを作成できます。 詳しい情報については[プルリクエストについて](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)を参照してください。 +If all your commits in the repository are on non-default branches, you won't be in the contributors graph. For example, commits on the `gh-pages` branch aren't included in the graph unless `gh-pages` is the repository's default branch. To have your commits merged into the default branch, you can create a pull request. For more information, see "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)." -コミットの作成に使用したメールアドレスが {% data variables.product.product_name %} のアカウントに接続されていない場合、コミットはアカウントにリンクされず、コントリビュータグラフに表示されません。 詳しい情報については、「[コミットメールアドレスを設定する](/articles/setting-your-commit-email-address){% ifversion not ghae %}」および「[{% data variables.product.prodname_dotcom %} アカウントにメールアドレスを追加する](/articles/adding-an-email-address-to-your-github-account){% endif %}」を参照してください。 +If the email address you used to author the commits is not connected to your account on {% data variables.product.product_name %}, your commits won't be linked to your account, and you won't appear in the contributors graph. For more information, see "[Setting your commit email address](/articles/setting-your-commit-email-address){% ifversion not ghae %}" and "[Adding an email address to your {% data variables.product.prodname_dotcom %} account](/articles/adding-an-email-address-to-your-github-account){% endif %}." diff --git a/translations/ja-JP/content/repositories/working-with-files/index.md b/translations/ja-JP/content/repositories/working-with-files/index.md index 8a03d297e2..1e874875f7 100644 --- a/translations/ja-JP/content/repositories/working-with-files/index.md +++ b/translations/ja-JP/content/repositories/working-with-files/index.md @@ -2,8 +2,8 @@ title: Working with files intro: Learn how to manage and use files in repositories. redirect_from: - - /categories/81/articles/ - - /categories/manipulating-files/ + - /categories/81/articles + - /categories/manipulating-files - /categories/managing-files-in-a-repository - /github/managing-files-in-a-repository versions: diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-files/editing-files.md b/translations/ja-JP/content/repositories/working-with-files/managing-files/editing-files.md index ff08197769..b52562a21b 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-files/editing-files.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-files/editing-files.md @@ -1,8 +1,8 @@ --- title: Editing files -intro: 'ファイルエディタを使用しているすべてのリポジトリについて、{% data variables.product.product_name %} でファイルを直接編集できます。' +intro: 'You can edit files directly on {% data variables.product.product_name %} in any of your repositories using the file editor.' redirect_from: - - /articles/editing-files/ + - /articles/editing-files - /articles/editing-files-in-your-repository - /github/managing-files-in-a-repository/editing-files-in-your-repository - /articles/editing-files-in-another-user-s-repository @@ -19,39 +19,44 @@ topics: shortTitle: Edit files --- -## リポジトリのファイルを編集する +## Editing files in your repository {% tip %} -**参考**: {% data reusables.repositories.protected-branches-block-web-edits-uploads %} +**Tip**: {% data reusables.repositories.protected-branches-block-web-edits-uploads %} {% endtip %} {% note %} -**参考:** {% data variables.product.product_name %} のファイルエディタでは、[CodeMirror](https://codemirror.net/) が使用されます。 +**Note:** {% data variables.product.product_name %}'s file editor uses [CodeMirror](https://codemirror.net/). {% endnote %} -1. リポジトリ内で、編集するファイルに移動します。 +1. In your repository, browse to the file you want to edit. {% data reusables.repositories.edit-file %} -3. [**Edit file**] タブで、ファイルに必要な変更を加えます。 ![ファイル内の新しいコンテンツ](/assets/images/help/repository/edit-readme-light.png) +3. On the **Edit file** tab, make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## 他のユーザーのリポジトリ内のファイルを編集する +## Editing files in another user's repository When you edit a file in another user's repository, we'll automatically [fork the repository](/articles/fork-a-repo) and [open a pull request](/articles/creating-a-pull-request) for you. -1. 他のユーザーのリポジトリで、編集するファイルが含まれるフォルダに移動します。 編集するファイルの名前をクリックします。 -2. ファイルの中身の上にある {% octicon "pencil" aria-label="The edit icon" %} をクリックします。 この時点で、リポジトリが自動でフォークされます。 -3. ファイルに必要な変更を加えます。 ![ファイル内の新しいコンテンツ](/assets/images/help/repository/edit-readme-light.png) +1. In another user's repository, browse to the folder that contains the file you want to edit. Click the name of the file you want to edit. +2. Above the file content, click {% octicon "pencil" aria-label="The edit icon" %}. At this point, GitHub forks the repository for you. +3. Make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} -6. [**Propose file change**] をクリックします。 ![変更のコミットボタン](/assets/images/help/repository/propose_file_change_button.png) -7. プルリクエストのタイトルと説明を入力します。 ![プルリクエストの説明ページ](/assets/images/help/pull_requests/pullrequest-description.png) -8. **Create pull request**をクリックします。 ![プルリクエストボタン](/assets/images/help/pull_requests/pullrequest-send.png) +6. Click **Propose file change**. +![Commit Changes button](/assets/images/help/repository/propose_file_change_button.png) +7. Type a title and description for your pull request. +![Pull Request description page](/assets/images/help/pull_requests/pullrequest-description.png) +8. Click **Create pull request**. +![Pull Request button](/assets/images/help/pull_requests/pullrequest-send.png) diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md index ac1229f6fe..284c0fc933 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md @@ -2,7 +2,7 @@ title: About Git Large File Storage intro: '{% data variables.product.product_name %} limits the size of files allowed in repositories. To track files beyond this limit, you can use {% data variables.large_files.product_name_long %}.' redirect_from: - - /articles/about-large-file-storage/ + - /articles/about-large-file-storage - /articles/about-git-large-file-storage - /github/managing-large-files/about-git-large-file-storage - /github/managing-large-files/versioning-large-files/about-git-large-file-storage diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md index 0974d2de6a..575108e57e 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md @@ -12,7 +12,7 @@ redirect_from: - /articles/conditions-for-large-files - /github/managing-large-files/conditions-for-large-files - /github/managing-large-files/working-with-large-files/conditions-for-large-files - - /articles/what-is-the-size-limit-for-a-repository/ + - /articles/what-is-the-size-limit-for-a-repository - /articles/what-is-my-disk-quota - /github/managing-large-files/what-is-my-disk-quota - /github/managing-large-files/working-with-large-files/what-is-my-disk-quota @@ -27,80 +27,80 @@ shortTitle: Large files ## About size limits on {% data variables.product.product_name %} {% ifversion fpt or ghec %} -{% data variables.product.product_name %} は、すべての Git リポジトリに対して十分なストレージを提供するよう努めていますが、ファイルとリポジトリのサイズにはハードリミットがあります。 ユーザのパフォーマンスと信頼性を確保するため、リポジトリ全体の健全性のシグナルを積極的に監視しています。 リポジトリの健全性は、サイズ、コミット頻度、コンテンツ、構造など、さまざまな相互作用要因の機能よるものです。 +{% data variables.product.product_name %} tries to provide abundant storage for all Git repositories, although there are hard limits for file and repository sizes. To ensure performance and reliability for our users, we actively monitor signals of overall repository health. Repository health is a function of various interacting factors, including size, commit frequency, contents, and structure. ### File size limits {% endif %} -{% data variables.product.product_name %} limits the size of files allowed in repositories. {% data variables.large_files.warning_size %}より大きいファイルを追加または更新しようとすると、Gitから警告が表示されます。 変更は引き続きリポジトリに正常にプッシュされますが、パフォーマンスへの影響を最小限に抑えるためにコミットを削除することを検討してもよいでしょう。 詳細は「[リポジトリの履歴からファイルを削除する](#removing-files-from-a-repositorys-history)」を参照してください。 +{% data variables.product.product_name %} limits the size of files allowed in repositories. If you attempt to add or update a file that is larger than {% data variables.large_files.warning_size %}, you will receive a warning from Git. The changes will still successfully push to your repository, but you can consider removing the commit to minimize performance impact. For more information, see "[Removing files from a repository's history](#removing-files-from-a-repositorys-history)." {% note %} -**メモ:** ブラウザ経由でリポジトリにファイルを追加する場合、そのファイルは {% data variables.large_files.max_github_browser_size %} 以下でなければなりません。 詳細は「[ファイルをリポジトリに追加する](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)」を参照してください。 +**Note:** If you add a file to a repository via a browser, the file can be no larger than {% data variables.large_files.max_github_browser_size %}. For more information, see "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)." {% endnote %} -{% ifversion ghes %}デフォルトでは、{% endif %}{% data variables.product.product_name %}は{% data variables.large_files.max_github_size %}以上のプッシュをブロックします。 {% ifversion ghes %} ただし、サイト管理者は {% data variables.product.product_location %} に別の制限を設定できます。 For more information, see "[Setting Git push limits](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)."{% endif %} +{% ifversion ghes %}By default, {% endif %}{% data variables.product.product_name %} blocks pushes that exceed {% data variables.large_files.max_github_size %}. {% ifversion ghes %}However, a site administrator can configure a different limit for {% data variables.product.product_location %}. For more information, see "[Setting Git push limits](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)."{% endif %} -To track files beyond this limit, you must use {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}). 詳しい情報については、「[{% data variables.large_files.product_name_long %} について](/repositories/working-with-files/managing-large-files/about-git-large-file-storage)」を参照してください。 +To track files beyond this limit, you must use {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}). For more information, see "[About {% data variables.large_files.product_name_long %}](/repositories/working-with-files/managing-large-files/about-git-large-file-storage)." -If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %} instead of tracking the files. 詳しい情報については、「[大きなバイナリを配布する](#distributing-large-binaries)」を参照してください。 +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %} instead of tracking the files. For more information, see "[Distributing large binaries](#distributing-large-binaries)." -Git is not designed to handle large SQL files. 大規模なデータベースを他の開発者と共有するには、[Dropbox](https://www.dropbox.com/) の使用をお勧めします。 +Git is not designed to handle large SQL files. To share large databases with other developers, we recommend using [Dropbox](https://www.dropbox.com/). {% ifversion fpt or ghec %} ### Repository size limits -リポジトリは小さく保ち、理想としては 1GB 未満、および 5GB 未満にすることを強くお勧めします。 リポジトリが小さいほど、クローン作成が速く、操作やメンテナンスが簡単になります。 リポジトリがインフラストラクチャに過度に影響する場合は、{% data variables.contact.github_support %} から是正措置を求めるメールが送られてくる場合があります。 特に多くのコラボレータが参加している大規模なプロジェクトでは、柔軟に対応するよう努めており、可能な限り解決策を見つけるために協力します。 リポジトリのサイズと全体的な健全性を効果的に管理することで、リポジトリがインフラストラクチャに影響を与えることを防ぎます。 [`github/git-sizer`](https://github.com/github/git-sizer) リポジトリには、リポジトリ分析のためのアドバイスとツールがあります。 +We recommend repositories remain small, ideally less than 1 GB, and less than 5 GB is strongly recommended. Smaller repositories are faster to clone and easier to work with and maintain. If your repository excessively impacts our infrastructure, you might receive an email from {% data variables.contact.github_support %} asking you to take corrective action. We try to be flexible, especially with large projects that have many collaborators, and will work with you to find a resolution whenever possible. You can prevent your repository from impacting our infrastructure by effectively managing your repository's size and overall health. You can find advice and a tool for repository analysis in the [`github/git-sizer`](https://github.com/github/git-sizer) repository. -外部依存関係によって、Git リポジトリが非常に大きくなる場合があります。 リポジトリが外部依存関係で埋まってしまうことを避けるために、パッケージマネージャーの使用をお勧めします。 一般的な言語で人気のあるパッケージマネージャーには、[Bundler](http://bundler.io/)、[Node のパッケージマネージャー](http://npmjs.org/)、[Maven](http://maven.apache.org/) などがあります。 これらのパッケージマネージャーは Git リポジトリの直接使用をサポートしているため、事前にパッケージ化されたソースは必要ありません。 +External dependencies can cause Git repositories to become very large. To avoid filling a repository with external dependencies, we recommend you use a package manager. Popular package managers for common languages include [Bundler](http://bundler.io/), [Node's Package Manager](http://npmjs.org/), and [Maven](http://maven.apache.org/). These package managers support using Git repositories directly, so you don't need pre-packaged sources. -Git はバックアップツールとして機能するようには設計されていません。 ただし、[Arq](https://www.arqbackup.com/)、[Carbonite](http://www.carbonite.com/)、[CrashPlan](https://www.crashplan.com/en-us/) など、バックアップを実行するために特別に設計された多くのソリューションがあります。 +Git is not designed to serve as a backup tool. However, there are many solutions specifically designed for performing backups, such as [Arq](https://www.arqbackup.com/), [Carbonite](http://www.carbonite.com/), and [CrashPlan](https://www.crashplan.com/en-us/). {% endif %} -## ファイルをリポジトリの履歴から削除する +## Removing files from a repository's history {% warning %} -**警告**: この手順では、ファイルをコンピュータのリポジトリと {% data variables.product.product_location %} から恒久的に削除します。 ファイルが重要なものである場合は、ローカルバックアップコピーをリポジトリ外にあるディレクトリに作成してください。 +**Warning**: These procedures will permanently remove files from the repository on your computer and {% data variables.product.product_location %}. If the file is important, make a local backup copy in a directory outside of the repository. {% endwarning %} -### プッシュされていない直近のコミットで追加されたファイルを削除する +### Removing a file added in the most recent unpushed commit -ファイルが直近のコミットで追加され、{% data variables.product.product_location %} にプッシュしていない場合は、ファイルを削除してコミットを修正することができます。 +If the file was added with your most recent commit, and you have not pushed to {% data variables.product.product_location %}, you can delete the file and amend the commit: {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.command_line.switching_directories_procedural %} -3. ファイルを削除するため、`git rm --cached` を入力します。 +3. To remove the file, enter `git rm --cached`: ```shell - $ git rm --cached <em>サイズの大きいファイル</em> - # サイズの大きいファイルを削除するためにステージするが、ディスクには残す + $ git rm --cached <em>giant_file</em> + # Stage our giant file for removal, but leave it on disk ``` -4. `--amend -CHEAD` を使用して、この変更をコミットします。 +4. Commit this change using `--amend -CHEAD`: ```shell $ git commit --amend -CHEAD - # 以前のコミットを変更して修正する - # プッシュされていない履歴からもファイルを削除する必要があるため - # 単に新しいコミットを行うだけでは機能しない + # Amend the previous commit with your change + # Simply making a new commit won't work, as you need + # to remove the file from the unpushed history as well ``` -5. コミットを {% data variables.product.product_location %} にプッシュします。 +5. Push your commits to {% data variables.product.product_location %}: ```shell $ git push - # 書き換えられサイズが小さくなったコミットをプッシュする + # Push our rewritten, smaller commit ``` -### 以前のコミットで追加されたファイルを削除する +### Removing a file that was added in an earlier commit -以前のコミットでファイルを追加した場合は、リポジトリの履歴から削除する必要があります。 リポジトリの履歴からファイルを削除するには、BFG Repo-Cleaner または `git filter-branch` コマンドを使用できます。 詳細は「[機密データをリポジトリから削除する](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)」を参照してください。 +If you added a file in an earlier commit, you need to remove it from the repository's history. To remove files from the repository's history, you can use the BFG Repo-Cleaner or the `git filter-branch` command. For more information see "[Removing sensitive data from a repository](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)." -## 大きなバイナリを配布する +## Distributing large binaries -リポジトリ内で大きなファイルを配布する必要がある場合は、{% data variables.product.product_location %}でリリースを作成できます。 リリースでは、他の人が使用できるように、ソフトウェア、リリースノート、バイナリファイルへのリンクをパッケージ化できます。 詳細は「[リリースについて](/github/administering-a-repository/about-releases)」を参照してください。 +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %}. Releases allow you to package software, release notes, and links to binary files, for other people to use. For more information, visit "[About releases](/github/administering-a-repository/about-releases)." {% ifversion fpt or ghec %} -リリース内のバイナリファイルの合計サイズや、それらの配布に使用される帯域は制限されません。 ただし、個々のファイルは{% data variables.large_files.max_lfs_size %}未満でなければなりません。 +We don't limit the total size of the binary files in the release or the bandwidth used to deliver them. However, each individual file must be smaller than {% data variables.large_files.max_lfs_size %}. {% endif %} diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md index c32b022fd9..d8b8b08de9 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md @@ -2,8 +2,8 @@ title: About storage and bandwidth usage intro: '{% data reusables.large_files.free-storage-bandwidth-amount %}' redirect_from: - - /articles/billing-plans-for-large-file-storage/ - - /articles/billing-plans-for-git-large-file-storage/ + - /articles/billing-plans-for-large-file-storage + - /articles/billing-plans-for-git-large-file-storage - /articles/about-storage-and-bandwidth-usage - /github/managing-large-files/about-storage-and-bandwidth-usage - /github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md index 32969e1fb6..f1cd37622a 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: Git Large File Storage でのコラボレーション -intro: '{% data variables.large_files.product_name_short %}を有効にすると、大容量のファイルも Git で扱う通常のファイルと同じようにフェッチ、修正、プッシュできます。 ただし、{% data variables.large_files.product_name_short %}を持っていないユーザの場合、ワークフローが異なります。' +title: Collaboration with Git Large File Storage +intro: 'With {% data variables.large_files.product_name_short %} enabled, you''ll be able to fetch, modify, and push large files just as you would expect with any file that Git manages. However, a user that doesn''t have {% data variables.large_files.product_name_short %} will experience a different workflow.' redirect_from: - - /articles/collaboration-with-large-file-storage/ + - /articles/collaboration-with-large-file-storage - /articles/collaboration-with-git-large-file-storage - /github/managing-large-files/collaboration-with-git-large-file-storage - /github/managing-large-files/versioning-large-files/collaboration-with-git-large-file-storage @@ -11,37 +11,36 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: コラボレーション +shortTitle: Collaboration --- - -リポジトリのコラボレーターが {% data variables.large_files.product_name_short %}をインストールしていない場合、オリジナルの大容量ファイルにはアクセスできません。 リポジトリのクローンを試みた場合、ポインタファイルをフェッチするのみで、実際のデータにはアクセスできません。 +If collaborators on your repository don't have {% data variables.large_files.product_name_short %} installed, they won't have access to the original large file. If they attempt to clone your repository, they will only fetch the pointer files, and won't have access to any of the actual data. {% tip %} -**ヒント:** {% data variables.large_files.product_name_short %}を有効にしていないユーザに対しては、大きなファイルの扱いについて記載したリポジトリコントリビューターのためのガイドラインを設定することをお勧めします。 たとえば、大容量ファイルを修正しないように、あるいは [Dropbox](http://www.dropbox.com/) や <a href="https://drive.google.com/" data-proofer-ignore>Google Drive</a> といったファイル共有サービスに変更をアップロードするように、コントリビューターに依頼するとよいでしょう。 詳しい情報については、「[リポジトリコントリビューターのためのガイドラインを定める](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)」を参照してください。 +**Tip:** To help users without {% data variables.large_files.product_name_short %} enabled, we recommend you set guidelines for repository contributors that describe how to work with large files. For example, you may ask contributors not to modify large files, or to upload changes to a file sharing service like [Dropbox](http://www.dropbox.com/) or <a href="https://drive.google.com/" data-proofer-ignore>Google Drive</a>. For more information, see "[Setting guidelines for repository contributors](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)." {% endtip %} -## プルリクエストの大容量ファイルを表示する +## Viewing large files in pull requests -{% data variables.product.product_name %}は、プルリクエストの {% data variables.large_files.product_name_short %}オブジェクトを表示しません。 ポインタファイルのみが表示されます。 +{% data variables.product.product_name %} does not render {% data variables.large_files.product_name_short %} objects in pull requests. Only the pointer file is shown: -![大容量ファイルのプルリクエスト例](/assets/images/help/large_files/large_files_pr.png) +![Sample PR for large files](/assets/images/help/large_files/large_files_pr.png) -ポインタファイルに関する詳しい情報については、「[{% data variables.large_files.product_name_long %}について](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)」を参照してください。 +For more information about pointer files, see "[About {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)." -大きなファイルに加えられた変更を表示するには、プルリクエストをローカルでチェックアウトしてdiffを確認します。 詳しい情報については、「[プルリクエストをローカルでチェック アウトする](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally)」を参照してください。 +To view changes made to large files, check out the pull request locally to review the diff. For more information, see "[Checking out pull requests locally](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally)." {% ifversion fpt or ghec %} -## 大容量ファイルをフォークにプッシュする +## Pushing large files to forks -リポジトリのフォークに大容量ファイルをプッシュすると、フォークのオーナーのではなく、親リポジトリの、帯域幅およびストレージのクオータを消費することになります。 +Pushing large files to forks of a repository count against the parent repository's bandwidth and storage quotas, rather than the quotas of the fork owner. -リポジトリネットワークですでに {% data variables.large_files.product_name_short %}オブジェクトがあるか、リポジトリネットワークのルートに書き込みアクセスがある場合、パブリックフォークに {% data variables.large_files.product_name_short %}オブジェクトをプッシュできます。 +You can push {% data variables.large_files.product_name_short %} objects to public forks if the repository network already has {% data variables.large_files.product_name_short %} objects or you have write access to the root of the repository network. {% endif %} -## 参考リンク +## Further reading -- [Git Large File Storage オブジェクトでリポジトリを複製する](/articles/duplicating-a-repository/#mirroring-a-repository-that-contains-git-large-file-storage-objects) +- "[Duplicating a repository with Git Large File Storage objects](/articles/duplicating-a-repository/#mirroring-a-repository-that-contains-git-large-file-storage-objects)" diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md index fe9f359d31..6569c30f30 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: Git Large File Storage を設定する -intro: '[{% data variables.large_files.product_name_short %} をインストール](/articles/installing-git-large-file-storage/) したら、それをリポジトリ内の大容量ファイルに関連付ける必要かあります。' +title: Configuring Git Large File Storage +intro: 'Once [{% data variables.large_files.product_name_short %} is installed](/articles/installing-git-large-file-storage/), you need to associate it with a large file in your repository.' redirect_from: - - /articles/configuring-large-file-storage/ + - /articles/configuring-large-file-storage - /articles/configuring-git-large-file-storage - /github/managing-large-files/configuring-git-large-file-storage - /github/managing-large-files/versioning-large-files/configuring-git-large-file-storage @@ -13,8 +13,7 @@ versions: ghec: '*' shortTitle: Configure Git LFS --- - -{% data variables.product.product_name %} で利用したいファイルがリポジトリにある場合、まずリポジトリからそれらのファイルを削除し、それからローカルで {% data variables.large_files.product_name_short %} に追加する必要があります。 詳細は「[リポジトリ内のファイルを {% data variables.large_files.product_name_short %} に移動する](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)」を参照してください。 +If there are existing files in your repository that you'd like to use {% data variables.product.product_name %} with, you need to first remove them from the repository and then add them to {% data variables.large_files.product_name_short %} locally. For more information, see "[Moving a file in your repository to {% data variables.large_files.product_name_short %}](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)." {% data reusables.large_files.resolving-upload-failures %} @@ -22,46 +21,46 @@ shortTitle: Configure Git LFS {% tip %} -**注釈:** 大容量ファイルを {% data variables.product.product_name %} にプッシュする前に、Enterprise で {% data variables.large_files.product_name_short %} を有効化していることを確認してください。 詳しい情報については「[GitHub Enterprise Server で Git Large File Storage を設定する](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)」を参照してください。 +**Note:** Before trying to push a large file to {% data variables.product.product_name %}, make sure that you've enabled {% data variables.large_files.product_name_short %} on your enterprise. For more information, see "[Configuring Git Large File Storage on GitHub Enterprise Server](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)." {% endtip %} {% endif %} {% data reusables.command_line.open_the_multi_os_terminal %} -2. カレントワーキングディレクトリを、{% data variables.large_files.product_name_short %}で利用したい既存のリポジトリに変更します。 -3. リポジトリにあるファイルの種類を {% data variables.large_files.product_name_short %} と関連付けるには、`git {% data variables.large_files.command_name %} track` の後に、{% data variables.large_files.product_name_short %} に自動的にアップロードしたいファイル拡張子の名前を入力します。 +2. Change your current working directory to an existing repository you'd like to use with {% data variables.large_files.product_name_short %}. +3. To associate a file type in your repository with {% data variables.large_files.product_name_short %}, enter `git {% data variables.large_files.command_name %} track` followed by the name of the file extension you want to automatically upload to {% data variables.large_files.product_name_short %}. - たとえば、_.psd_ ファイルを関連付けるには、以下のコマンドを入力します: + For example, to associate a _.psd_ file, enter the following command: ```shell $ git {% data variables.large_files.command_name %} track "*.psd" > Adding path *.psd ``` - {% data variables.large_files.product_name_short %} に関連付けたいファイルタイプはすべて `git {% data variables.large_files.command_name %} track` で追加する必要があります。 このコマンドは、リポジトリの *.gitattributes* ファイルを修正し、大容量ファイルを {% data variables.large_files.product_name_short %} に関連付けます。 + Every file type you want to associate with {% data variables.large_files.product_name_short %} will need to be added with `git {% data variables.large_files.command_name %} track`. This command amends your repository's *.gitattributes* file and associates large files with {% data variables.large_files.product_name_short %}. {% tip %} - **ヒント:** ローカルの *.gitattributes* ファイルをリポジトリにコミットするよう強くおすすめします。 {% data variables.large_files.product_name_short %} に関連付けられているグローバルな *.gitattributes* ファイルを利用すると、他の Git プロジェクトにコントリビュートする際にコンフリクトを起こすことがあります。 + **Tip:** We strongly suggest that you commit your local *.gitattributes* file into your repository. Relying on a global *.gitattributes* file associated with {% data variables.large_files.product_name_short %} may cause conflicts when contributing to other Git projects. {% endtip %} -4. 以下のコマンドで、関連付けた拡張子に一致するリポジトリにファイルを追加します: +4. Add a file to the repository matching the extension you've associated: ```shell $ git add path/to/file.psd ``` -5. 以下のように、ファイルをコミットし、{% data variables.product.product_name %} にプッシュします: +5. Commit the file and push it to {% data variables.product.product_name %}: ```shell $ git commit -m "add file.psd" $ git push ``` - アップロードしたファイルの Diagnostics 情報が、以下のように表示されるはずです: + You should see some diagnostic information about your file upload: ```shell > Sending file.psd > 44.74 MB / 81.04 MB 55.21 % 14s > 64.74 MB / 81.04 MB 79.21 % 3s ``` -## 参考リンク +## Further reading -- 「[{% data variables.large_files.product_name_long %} とのコラボレーション](/articles/collaboration-with-git-large-file-storage/)」{% ifversion fpt or ghec %} -- 「[リポジトリのアーカイブ内の {% data variables.large_files.product_name_short %} オブジェクトを管理する](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)」{% endif %} +- "[Collaboration with {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage/)"{% ifversion fpt or ghec %} +- "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)"{% endif %} diff --git a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md index b6ebc95329..744ea932b5 100644 --- a/translations/ja-JP/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md +++ b/translations/ja-JP/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: Git Large File Storage をインストールする -intro: '{% data variables.large_files.product_name_short %} を使用するには、Git とは別の新しいプログラムをダウンロードしてインストールする必要があります。' +title: Installing Git Large File Storage +intro: 'In order to use {% data variables.large_files.product_name_short %}, you''ll need to download and install a new program that''s separate from Git.' redirect_from: - - /articles/installing-large-file-storage/ + - /articles/installing-large-file-storage - /articles/installing-git-large-file-storage - /github/managing-large-files/installing-git-large-file-storage - /github/managing-large-files/versioning-large-files/installing-git-large-file-storage @@ -13,105 +13,104 @@ versions: ghec: '*' shortTitle: Install Git LFS --- - {% mac %} -1. [git-lfs.github.com](https://git-lfs.github.com) に移動し、[**Download**] をクリックします。 または、パッケージ マネージャーを使用すれば {% data variables.large_files.product_name_short %} をインストールできます。 - - [Homebrew](http://brew.sh/) を使用するには、`brew install git-lfs` を実行します。 - - [MacPorts](https://www.macports.org/) を使用するには、`port install git-lfs` を実行します。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. Alternatively, you can install {% data variables.large_files.product_name_short %} using a package manager: + - To use [Homebrew](http://brew.sh/), run `brew install git-lfs`. + - To use [MacPorts](https://www.macports.org/), run `port install git-lfs`. - Homebrew または MacPorts を使用して {% data variables.large_files.product_name_short %} をインストールする場合は、スキップしてステップ 6 まで進んでください。 + If you install {% data variables.large_files.product_name_short %} with Homebrew or MacPorts, skip to step six. -2. コンピュータで、ダウンロードしたファイルを探して解凍します。 +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. 現在のワーキングディレクトリを、ダウンロードして解凍したフォルダに変更します。 +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **メモ:** `cd` の後ろに指定するファイル パスは、お使いのオペレーティング システム、ダウンロードした Git LFS のバージョン、{% data variables.large_files.product_name_short %} のダウンロードを保存した場所によって異なります。 + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. ファイルをインストールするには、次のコマンドを実行します: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **メモ:** ファイルをインストールするには、 `sudo ./install.sh` を使用しなければならない場合があります。 + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. インストールが成功したか検証します。 +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. `git {% data variables.large_files.command_name %} install` が成功したことを示すメッセージが表示されない場合は、{% data variables.contact.contact_support %} に連絡してください。 お使いのオペレーティング システムの名前を必ずお伝えください。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endmac %} {% windows %} -1. [git-lfs.github.com](https://git-lfs.github.com) に移動し、[**Download**] をクリックします。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **ヒント:** Windows で {% data variables.large_files.product_name_short %} をインストールする別の方法については、[スタートガイド](https://github.com/github/git-lfs#getting-started)を参照してください。 + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Windows, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. コンピュータで、ダウンロードしたファイルを見つけます。 -3. *git-lfs-windows-1.X.X.exe* というファイルをダブルクリックします。1.X.X は、ダウンロードした Git LFS のバージョンに置き換えてください。 このファイルを開くと、Windows は {% data variables.large_files.product_name_short %} をインストールするセットアップ ウィザードを実行します。 +2. On your computer, locate the downloaded file. +3. Double click on the file called *git-lfs-windows-1.X.X.exe*, where 1.X.X is replaced with the Git LFS version you downloaded. When you open this file Windows will run a setup wizard to install {% data variables.large_files.product_name_short %}. {% data reusables.command_line.open_the_multi_os_terminal %} -5. インストールが成功したか検証します。 +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. `git {% data variables.large_files.command_name %} install` が成功したことを示すメッセージが表示されない場合は、{% data variables.contact.contact_support %} に連絡してください。 お使いのオペレーティング システムの名前を必ずお伝えください。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endwindows %} {% linux %} -1. [git-lfs.github.com](https://git-lfs.github.com) に移動し、[**Download**] をクリックします。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **ヒント:** Linux で {% data variables.large_files.product_name_short %} をインストールする別の方法については、[スタートガイド](https://github.com/github/git-lfs#getting-started)を参照してください。 + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Linux, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. コンピュータで、ダウンロードしたファイルを探して解凍します。 +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. 現在のワーキングディレクトリを、ダウンロードして解凍したフォルダに変更します。 +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **メモ:** `cd` の後ろに指定するファイル パスは、お使いのオペレーティング システム、ダウンロードした Git LFS のバージョン、{% data variables.large_files.product_name_short %} のダウンロードを保存した場所によって異なります。 + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. ファイルをインストールするには、次のコマンドを実行します: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **メモ:** ファイルをインストールするには、 `sudo ./install.sh` を使用しなければならない場合があります。 + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. インストールが成功したか検証します。 +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. `git {% data variables.large_files.command_name %} install` が成功したことを示すメッセージが表示されない場合は、{% data variables.contact.contact_support %} に連絡してください。 お使いのオペレーティング システムの名前を必ずお伝えください。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endlinux %} -## 参考リンク +## Further reading -- 「[{% data variables.large_files.product_name_long %} を構成する](/articles/configuring-git-large-file-storage)」 +- "[Configuring {% data variables.large_files.product_name_long %}](/articles/configuring-git-large-file-storage)" diff --git a/translations/ja-JP/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md b/translations/ja-JP/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md index 649994f091..e634289eb4 100644 --- a/translations/ja-JP/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md +++ b/translations/ja-JP/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md @@ -1,9 +1,9 @@ --- -title: ファイルへのパーマリンクを取得する -intro: '{% data variables.product.product_location %} でファイルを表示する際に y キーを押すと、URL を、表示されているファイルと完全に同じバージョンへのパーマリンクへと更新できます。' +title: Getting permanent links to files +intro: 'When viewing a file on {% data variables.product.product_location %}, you can press the "y" key to update the URL to a permalink to the exact version of the file you see.' redirect_from: - - /articles/getting-a-permanent-link-to-a-file/ - - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url/ + - /articles/getting-a-permanent-link-to-a-file + - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url - /articles/getting-permanent-links-to-files - /github/managing-files-in-a-repository/getting-permanent-links-to-files - /github/managing-files-in-a-repository/managing-files-on-github/getting-permanent-links-to-files @@ -16,43 +16,42 @@ topics: - Repositories shortTitle: Permanent links to files --- - {% tip %} -**参考**: {% data variables.product.product_name %} のすべてのページで [?] を押すと、使用可能なキーボードのショートカットすべてを確認できます。 +**Tip**: Press "?" on any page in {% data variables.product.product_name %} to see all available keyboard shortcuts. {% endtip %} -## ファイルのビューにはブランチの最新バージョンが表示されます +## File views show the latest version on a branch -{% data variables.product.product_location %} でファイルを表示する際、通常はブランチの現在の head でのバージョンが表示されます。 例: +When viewing a file on {% data variables.product.product_location %}, you usually see the version at the current head of a branch. For example: * [https://github.com/github/codeql/blob/**main**/README.md](https://github.com/github/codeql/blob/main/README.md) -GitHub の `codeql` リポジトリを参照し、`main` ブランチの現在のバージョンの `README.md` ファイルを表示します。 +refers to GitHub's `codeql` repository, and shows the `main` branch's current version of the `README.md` file. -ブランチのヘッドにあるファイルのバージョンは、新たなコミットが行われるたびに変更される場合があるため、通常の URL をコピーすると、後で他のユーザが見るときはファイルのコンテンツが同一ではない場合があります。 +The version of a file at the head of branch can change as new commits are made, so if you were to copy the normal URL, the file contents might not be the same when someone looks at it later. -## <kbd>y</kbd> を押して特定のコミット内のファイルへのパーマリンクを取得 +## Press <kbd>y</kbd> to permalink to a file in a specific commit -表示されるファイルの特定のバージョンへのパーマリンクについては、URL でブランチ名を使用する代わりに (つまり、上記の例の `main` 部分)、コミット ID を入力します。 これにより、そのコミットの完全に同じバージョンに永続的にリンクされます。 例: +For a permanent link to the specific version of a file that you see, instead of using a branch name in the URL (i.e. the `main` part in the example above), put a commit id. This will permanently link to the exact version of the file in that commit. For example: * [https://github.com/github/codeql/blob/**b212af08a6cffbb434f3c8a2795a579e092792fd**/README.md](https://github.com/github/codeql/blob/b212af08a6cffbb434f3c8a2795a579e092792fd/README.md) -`main` を特定のコミット ID に置き換え、ファイルの内容は変更されません。 +replaces `main` with a specific commit id and the file content will not change. -コミット SHA を手作業で探すのは不便ですが、ショートカットとして <kbd>y</kbd> を押すと、URL がパーマリンクのバージョンに自動で更新されます。 その後、URL をコピーし、共有すると、自分が表示したのとまったく同じものが表示されます。 +Looking up the commit SHA by hand is inconvenient, however, so as a shortcut you can type <kbd>y</kbd> to automatically update the URL to the permalink version. Then you can copy the URL knowing that anyone you share it with will see exactly what you saw. {% tip %} -**参考**: ブランチ名、特定のコミット SHA、タグなど、URL 内のコミットへと解決できる任意の識別子を配置できます。 +**Tip**: You can put any identifier that can be resolved to a commit in the URL, including branch names, specific commit SHAs, or tags! {% endtip %} -## コードスニペットへのパーマリンクを作成する +## Creating a permanent link to a code snippet -特定バージョンのファイルやプルリクエストにある特定のコード行やコード行の範囲へのパーマリンクを作成できます。 詳細は「[コードスニペットへのパーマリンクを作成する](/articles/creating-a-permanent-link-to-a-code-snippet/)」を参照してください。 +You can create a permanent link to a specific line or range of lines of code in a specific version of a file or pull request. For more information, see "[Creating a permanent link to a code snippet](/articles/creating-a-permanent-link-to-a-code-snippet/)." -## 参考リンク +## Further reading -- 「[GitHub リポジトリをアーカイブする](/articles/archiving-a-github-repository)」 +- "[Archiving a GitHub repository](/articles/archiving-a-github-repository)" diff --git a/translations/ja-JP/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md b/translations/ja-JP/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md index 94ecc61d95..2aa33de78a 100644 --- a/translations/ja-JP/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md +++ b/translations/ja-JP/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md @@ -1,9 +1,9 @@ --- -title: ファイルの変更を追跡する -intro: ファイルの行に対する変更を追跡し、時間の経過とともにファイルの各部分がどのように変化したのかを追跡できます。 +title: Tracking changes in a file +intro: You can trace changes to lines in a file and discover how parts of the file evolved over time. redirect_from: - - /articles/using-git-blame-to-trace-changes-in-a-file/ - - /articles/tracing-changes-in-a-file/ + - /articles/using-git-blame-to-trace-changes-in-a-file + - /articles/tracing-changes-in-a-file - /articles/tracking-changes-in-a-file - /github/managing-files-in-a-repository/tracking-changes-in-a-file - /github/managing-files-in-a-repository/managing-files-on-github/tracking-changes-in-a-file @@ -16,22 +16,23 @@ topics: - Repositories shortTitle: Track file changes --- +With the blame view, you can view the line-by-line revision history for an entire file, or view the revision history of a single line within a file by clicking {% octicon "versions" aria-label="The prior blame icon" %}. Each time you click {% octicon "versions" aria-label="The prior blame icon" %}, you'll see the previous revision information for that line, including who committed the change and when. -Blame ビューでは、{% octicon "versions" aria-label="The prior blame icon" %} をクリックすることで、ファイル全体の行ごとのリビジョン履歴やファイル内の 1 つの行のリビジョン履歴を表示することができます。 {% octicon "versions" aria-label="The prior blame icon" %} をクリックするたびに、変更をコミットした者と時間を含む、その行の過去のリビジョン情報が表示されます。 +![Git blame view](/assets/images/help/repository/git_blame.png) -![Git blame ビュー](/assets/images/help/repository/git_blame.png) +In a file or pull request, you can also use the {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} menu to view Git blame for a selected line or range of lines. -ファイルやプルリクエストでは、{% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} メニューを使って、選択した行や行の範囲の Git blame を表示することもできます。 - -![選択した行の Git blame を表示するオプションのあるケバブメニュー](/assets/images/help/repository/view-git-blame-specific-line.png) +![Kebab menu with option to view Git blame for a selected line](/assets/images/help/repository/view-git-blame-specific-line.png) {% tip %} -**ヒント:** コマンドライン上で、ファイル内の行のリビジョン履歴を表示するために `git blame` を使うこともできます。 詳細は [Git の `git blame` のドキュメンテーション](https://git-scm.com/docs/git-blame)を参照してください。 +**Tip:** On the command line, you can also use `git blame` to view the revision history of lines within a file. For more information, see [Git's `git blame` documentation](https://git-scm.com/docs/git-blame). {% endtip %} {% data reusables.repositories.navigate-to-repo %} -2. クリックして、表示したい行の履歴のファイルを開きます。 -3. ファイルビューの右上隅で [**Blame**] をクリックして blame ビューを開きます。 ![[Blame] ボタン](/assets/images/help/repository/blame-button.png) -4. 特定の行の過去のリビジョンを表示するには、見てみたい変更が見つかるまで {% octicon "versions" aria-label="The prior blame icon" %} をクリックします。 ![さらに前の状態に遡るボタン](/assets/images/help/repository/prior-blame-button.png) +2. Click to open the file whose line history you want to view. +3. In the upper-right corner of the file view, click **Blame** to open the blame view. +![Blame button](/assets/images/help/repository/blame-button.png) +4. To see earlier revisions of a specific line, or reblame, click {% octicon "versions" aria-label="The prior blame icon" %} until you've found the changes you're interested in viewing. +![Prior blame button](/assets/images/help/repository/prior-blame-button.png) diff --git a/translations/ja-JP/content/rest/guides/index.md b/translations/ja-JP/content/rest/guides/index.md index 4b5ebef664..072e826783 100644 --- a/translations/ja-JP/content/rest/guides/index.md +++ b/translations/ja-JP/content/rest/guides/index.md @@ -1,8 +1,8 @@ --- -title: ガイド -intro: REST APIおよび認証の初歩や、さまざまなタスクでREST APIを使用する方法について学びましょう。 +title: Guides +intro: 'Learn about getting started with the REST API, authentication, and how to use the REST API for a variety of tasks.' redirect_from: - - /guides/ + - /guides - /v3/guides versions: fpt: '*' @@ -24,5 +24,10 @@ children: - /getting-started-with-the-git-database-api - /getting-started-with-the-checks-api --- - -This section of the documentation is intended to get you up-and-running with real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. 認証から結果の操作、結果を他のアプリケーションと組み合わせる方法に至るまで、必要な情報をすべて網羅しています。 ここに挙げる各チュートリアルにはプロジェクトがあり、各プロジェクトはパブリックの[platform-samples](https://github.com/github/platform-samples)に保存・文書化されます。 ![Electrocat](/assets/images/electrocat.png) +This section of the documentation is intended to get you up-and-running with +real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. We'll cover everything you need to know, from +authentication, to manipulating results, to combining results with other apps. +Every tutorial here will have a project, and every project will be +stored and documented in our public +[platform-samples](https://github.com/github/platform-samples) repository. +![The Electrocat](/assets/images/electrocat.png) diff --git a/translations/ja-JP/content/rest/guides/traversing-with-pagination.md b/translations/ja-JP/content/rest/guides/traversing-with-pagination.md index 91595eb798..36400d1399 100644 --- a/translations/ja-JP/content/rest/guides/traversing-with-pagination.md +++ b/translations/ja-JP/content/rest/guides/traversing-with-pagination.md @@ -263,4 +263,4 @@ puts "The next page link is #{next_page_href}" [octokit.rb]: https://github.com/octokit/octokit.rb [personal token]: /articles/creating-an-access-token-for-command-line-use [hypermedia-relations]: https://github.com/octokit/octokit.rb#pagination -[listing commits]: /rest/reference/repos#list-commits +[listing commits]: /rest/reference/commits#list-commits diff --git a/translations/ja-JP/content/rest/guides/working-with-comments.md b/translations/ja-JP/content/rest/guides/working-with-comments.md index 3ac0c6f348..371054556f 100644 --- a/translations/ja-JP/content/rest/guides/working-with-comments.md +++ b/translations/ja-JP/content/rest/guides/working-with-comments.md @@ -1,6 +1,6 @@ --- -title: コメントを扱う -intro: REST API を使用すると、プルリクエスト、Issue、およびコミットにある、コメントにアクセスして管理できます。 +title: Working with comments +intro: 'Using the REST API, you can access and manage comments in your pull requests, issues, or commits.' redirect_from: - /guides/working-with-comments/ - /v3/guides/working-with-comments @@ -15,17 +15,27 @@ topics: -各プルリクエストに対して、{% data variables.product.product_name %} は 3 種類のコメント表示を提供しています。プルリクエスト全体に対する[プルリクエストのコメント][PR comment]、プルリクエスト内の[特定行のコメント][PR line comment]、そしてプルリクエスト内の[特定のコメントへのコメント][commit comment]です。 +For any Pull Request, {% data variables.product.product_name %} provides three kinds of comment views: +[comments on the Pull Request][PR comment] as a whole, [comments on a specific line][PR line comment] within the Pull Request, +and [comments on a specific commit][commit comment] within the Pull Request. -Each of these types of comments goes through a different portion of the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. このガイドでは、それぞれにアクセスして操作する方法を説明します。 各例では、"octocat" リポジトリで作成した、[このサンプルのプルリクエスト][sample PR]を使用します。 いつもと同様、サンプルは [platform-samples リポジトリ][platform-samples]にあります。 +Each of these types of comments goes through a different portion of the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. +In this guide, we'll explore how you can access and manipulate each one. For every +example, we'll be using [this sample Pull Request made][sample PR] on the "octocat" +repository. As always, samples can be found in [our platform-samples repository][platform-samples]. -## プルリクエストのコメント +## Pull Request Comments -プルリクエストのコメントにアクセスするには、[Issues API][issues] を経由します。 最初はこれを意外に思うかもしれません。 しかし、プルリクエストがコード付きの Issue に過ぎないことさえ理解すれば、プルリクエストにコメントを作成するため Issues API を使うこともうなずけるでしょう。 +To access comments on a Pull Request, you'll go through [the Issues API][issues]. +This may seem counterintuitive at first. But once you understand that a Pull +Request is just an Issue with code, it makes sense to use the Issues API to +create comments on a Pull Request. -ここでは [Octokit.rb][octokit.rb] を使って Ruby スクリプトを作成し、プルリクエストのコメントをフェッチする方法を示します。 また、[個人アクセストークン][personal token]の作成もおすすめします。 +We'll demonstrate fetching Pull Request comments by creating a Ruby script using +[Octokit.rb][octokit.rb]. You'll also want to create a [personal access token][personal token]. -Octokit.rb を使ってプルリクエストからコメントにアクセスを始めるには、以下のコードが役立つでしょう。 +The following code should help you get started accessing comments from a Pull Request +using Octokit.rb: ``` ruby require 'octokit' @@ -43,13 +53,18 @@ client.issue_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -ここでは、コメントを取得するため Issues API を 呼び出し (`issue_comments`)、取得したいコメントのリポジトリ名 (`octocat/Spoon-Knife`) とプルリクエスト ID (`1176`) の両方を指定しています。 その後は、コメントを反復処理して、各コメントの情報を取得しているだけです。 +Here, we're specifically calling out to the Issues API to get the comments (`issue_comments`), +providing both the repository's name (`octocat/Spoon-Knife`), and the Pull Request ID +we're interested in (`1176`). After that, it's simply a matter of iterating through +the comments to fetch information about each one. -## 行につけるプルリクエストのコメント +## Pull Request Comments on a Line -diff ビュー内では、プルリクエスト内の一つの変更について、特定の側面からディスカッションを開始できます。 これらのコメントは、変更されたファイル内の個々の行について書き込まれます。 このディスカッションのエンドポイントURLは、[Pull Request Review API][PR Review API] から取得されます。 +Within the diff view, you can start a discussion on a particular aspect of a singular +change made within the Pull Request. These comments occur on the individual lines +within a changed file. The endpoint URL for this discussion comes from [the Pull Request Review API][PR Review API]. -以下のコードは、指定したプルリクエスト番号のファイルにあるプルリクエストのコメントすべてをフェッチします。 +The following code fetches all the Pull Request comments made on files, given a single Pull Request number: ``` ruby require 'octokit' @@ -69,13 +84,19 @@ client.pull_request_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -上の例と非常に似ていることにお気づきでしょう。 このビューとプルリクエストのコメントとの違いは、会話の焦点にあります。 プルリクエストに対するコメントは、コードの全体的な方向性についてのディスカッションやアイデアを扱うべきです。 プルリクエストのレビューの一環として行うコメントは、ファイルで特定の変更が実装された方法について特に扱うべきです。 +You'll notice that it's incredibly similar to the example above. The difference +between this view and the Pull Request comment is the focus of the conversation. +A comment made on a Pull Request should be reserved for discussion or ideas on +the overall direction of the code. A comment made as part of a Pull Request review should +deal specifically with the way a particular change was implemented within a file. -## コミットのコメント +## Commit Comments -最後のタイプのコメントは、特に個々のコミットで発生します。 このため、[コミットのコメント API][commit comment API] を使用します。 +The last type of comments occur specifically on individual commits. For this reason, +they make use of [the commit comment API][commit comment API]. -コミットのコメントを取得するには、コミットの SHA1 を使用します。 言い換えれば、プルリクエストに関する識別子は全く使用しません。 次に例を示します。 +To retrieve the comments on a commit, you'll want to use the SHA1 of the commit. +In other words, you won't use any identifier related to the Pull Request. Here's an example: ``` ruby require 'octokit' @@ -93,7 +114,8 @@ client.commit_comments("octocat/Spoon-Knife", "cbc28e7c8caee26febc8c013b0adfb97a end ``` -この API 呼び出しは、単一の行コメントと、コミット全体に対するコメントを取得することに注目してください。 +Note that this API call will retrieve single line comments, as well as comments made +on the entire commit. [PR comment]: https://github.com/octocat/Spoon-Knife/pull/1176#issuecomment-24114792 [PR line comment]: https://github.com/octocat/Spoon-Knife/pull/1176#discussion_r6252889 @@ -104,4 +126,4 @@ end [personal token]: /articles/creating-an-access-token-for-command-line-use [octokit.rb]: https://github.com/octokit/octokit.rb [PR Review API]: /rest/reference/pulls#comments -[commit comment API]: /rest/reference/repos#get-a-commit-comment +[commit comment API]: /rest/reference/commits#get-a-commit-comment diff --git a/translations/ja-JP/content/rest/overview/api-previews.md b/translations/ja-JP/content/rest/overview/api-previews.md index 36d03bec29..7cd8e65bb0 100644 --- a/translations/ja-JP/content/rest/overview/api-previews.md +++ b/translations/ja-JP/content/rest/overview/api-previews.md @@ -165,7 +165,7 @@ GitHub App Manifests allow people to create preconfigured GitHub Apps. See "[Cre ## Deployment statuses -You can now update the `environment` of a [deployment status](/rest/reference/repos#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. +You can now update the `environment` of a [deployment status](/rest/reference/deployments#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. **Custom media type:** `flash-preview` **Announced:** [2018-10-16](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) diff --git a/translations/ja-JP/content/rest/reference/branches.md b/translations/ja-JP/content/rest/reference/branches.md new file mode 100644 index 0000000000..60a187a93b --- /dev/null +++ b/translations/ja-JP/content/rest/reference/branches.md @@ -0,0 +1,30 @@ +--- +title: Branches +intro: 'The branches API allows you to modify branches and their protection settings.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Branches +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Merging + +The Repo Merging API supports merging branches in a repository. This accomplishes +essentially the same thing as merging one branch into another in a local repository +and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. + +The authenticated user will be the author of any merges done through this endpoint. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/collaborators.md b/translations/ja-JP/content/rest/reference/collaborators.md new file mode 100644 index 0000000000..c4842b7049 --- /dev/null +++ b/translations/ja-JP/content/rest/reference/collaborators.md @@ -0,0 +1,35 @@ +--- +title: Collaborators +intro: 'The collaborators API allows you to add, invite, and remove collaborators from a repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Collaborators + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Invitations + +The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. + +Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted +access to invitations **without** also granting access to repository code, while the +`repo` scope grants permission to code as well as invitations. + +### Invite a user to a repository + +Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/commits.md b/translations/ja-JP/content/rest/reference/commits.md new file mode 100644 index 0000000000..79591a09a6 --- /dev/null +++ b/translations/ja-JP/content/rest/reference/commits.md @@ -0,0 +1,68 @@ +--- +title: Commits +intro: 'The commits API allows you to retrieve information and commits, create commit comments, and create commit statuses.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Commits + +The Repo Commits API supports listing, viewing, and comparing commits in a repository. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit comments + +### Custom media types for commit comments + +These are the supported media types for commit comments. You can read more +about the use of media types in the API [here](/rest/overview/media-types). + + application/vnd.github-commitcomment.raw+json + application/vnd.github-commitcomment.text+json + application/vnd.github-commitcomment.html+json + application/vnd.github-commitcomment.full+json + +For more information, see "[Custom media types](/rest/overview/media-types)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit statuses + +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. + +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. + +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. + +Statuses can include a `context` to indicate what service is providing that status. +For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `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. + +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. + +If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/deployments.md b/translations/ja-JP/content/rest/reference/deployments.md new file mode 100644 index 0000000000..1170b20485 --- /dev/null +++ b/translations/ja-JP/content/rest/reference/deployments.md @@ -0,0 +1,90 @@ +--- +title: Deployments +intro: 'The deployments API allows you to create and delete deploy keys, deployments, and deployment environments.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Deploy keys + +{% data reusables.repositories.deploy-keys %} + +Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Deployments + +Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). + +Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. + +Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and +the `description` is a high-level summary of what happened with the deployment. + +GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. + +Below is a simple sequence diagram for how these interactions would work. + +``` ++---------+ +--------+ +-----------+ +-------------+ +| Tooling | | GitHub | | 3rd Party | | Your Server | ++---------+ +--------+ +-----------+ +-------------+ + | | | | + | Create Deployment | | | + |--------------------->| | | + | | | | + | Deployment Created | | | + |<---------------------| | | + | | | | + | | Deployment Event | | + | |---------------------->| | + | | | SSH+Deploys | + | | |-------------------->| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | + | | | Deploy Completed | + | | |<--------------------| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | +``` + +Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. + +Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. + + +### Inactive deployments + +When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. + +You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +## Environments + +The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." + +{% data reusables.gated-features.environments %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/index.md b/translations/ja-JP/content/rest/reference/index.md index 322124750b..eb8dc90939 100644 --- a/translations/ja-JP/content/rest/reference/index.md +++ b/translations/ja-JP/content/rest/reference/index.md @@ -1,7 +1,7 @@ --- -title: リファレンス -shortTitle: リファレンス -intro: GitHub RESTのAPIで使用できるリソースについては、リファレンスドキュメントを参照してください。 +title: Reference +shortTitle: Reference +intro: View reference documentation to learn about the resources available in the GitHub REST API. versions: fpt: '*' ghes: '*' @@ -14,14 +14,19 @@ children: - /activity - /apps - /billing + - /branches - /checks - /codes-of-conduct - /code-scanning - /codespaces + - /commits + - /collaborators + - /deployments - /emojis - /enterprise-admin - /gists - /git + - /pages - /gitignore - /interactions - /issues @@ -36,12 +41,15 @@ children: - /pulls - /rate-limit - /reactions + - /releases - /repos + - /repository-metrics - /scim - /search - /secret-scanning - /teams - /users + - /webhooks - /permissions-required-for-github-apps --- diff --git a/translations/ja-JP/content/rest/reference/packages.md b/translations/ja-JP/content/rest/reference/packages.md index 1a519567fc..8af15e78f9 100644 --- a/translations/ja-JP/content/rest/reference/packages.md +++ b/translations/ja-JP/content/rest/reference/packages.md @@ -1,5 +1,5 @@ --- -title: パッケージ +title: Packages intro: 'With the {% data variables.product.prodname_registry %} API, you can manage packages for your {% data variables.product.prodname_dotcom %} repositories and organizations.' product: '{% data reusables.gated-features.packages %}' versions: @@ -10,16 +10,16 @@ topics: miniTocMaxHeadingLevel: 3 --- -{% data variables.product.prodname_registry %} APIでは、REST APIを使ってパッケージを管理できます。 パッケージのリストアや削除についてさらに学ぶには、「[パッケージのリストアと削除](/packages/learn-github-packages/deleting-and-restoring-a-package)」を参照してください。 +The {% data variables.product.prodname_registry %} API enables you to manage packages using the REST API. To learn more about restoring or deleting packages, see "[Restoring and deleting packages](/packages/learn-github-packages/deleting-and-restoring-a-package)." -このAPIを使うには、個人アクセストークンを使って認証を受けなければなりません。 - - パッケージメタデータにアクセスするには、トークンに`read:packages`スコープが含まれていなければなりません。 - - パッケージやパッケージのバージョンを削除するには、トークンに`read:packages`及び`delete:packages`スコープが含まれていなければなりません。 - - パッケージやパッケージのバージョンをリストアするには、トークンに`read:packages`及び`write:packages`スコープが含まれていなければなりません。 +To use this API, you must authenticate using a personal access token. + - To access package metadata, your token must include the `read:packages` scope. + - To delete packages and package versions, your token must include the `read:packages` and `delete:packages` scopes. + - To restore packages and package versions, your token must include the `read:packages` and `write:packages` scopes. -`package_type`が`npm`、`maven`、`rubygems`、`nuget`のいずれかなら、パッケージは{% data variables.product.prodname_dotcom %}リポジトリからの権限を継承するので、トークンには`repo`スコープも含まれていなければなりません。 パッケージが{% data variables.product.prodname_container_registry %}内にあるなら、`package_type`は`container`であり、この`package_type`のアクセスあるいは管理のためにトークンに`repo`スコープが含まれている必要はありません。 `container`パッケージは、リポジトリは別に詳細な権限を提供します。 詳しい情報については「[{% data variables.product.prodname_registry %}の権限について](/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries)」を参照してください。 +If your `package_type` is `npm`, `maven`, `rubygems`, or `nuget`, then your token must also include the `repo` scope since your package inherits permissions from a {% data variables.product.prodname_dotcom %} repository. If your package is in the {% data variables.product.prodname_container_registry %}, then your `package_type` is `container` and your token does not need the `repo` scope to access or manage this `package_type`. `container` packages offer granular permissions separate from a repository. For more information, see "[About permissions for {% data variables.product.prodname_registry %}](/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries)." -SSOが有効化されたOrganization内のリソースにアクセスするために{% data variables.product.prodname_registry %} APIを使いたい場合は、個人アクセストークンにSSOを有効化しなければなりません。 詳しい情報については「[SAMLシングルサインオンと使う個人アクセストークンの認可](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)」を参照してください。 +If you want to use the {% data variables.product.prodname_registry %} API to access resources in an organization with SSO enabled, then you must enable SSO for your personal access token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} diff --git a/translations/ja-JP/content/rest/reference/pages.md b/translations/ja-JP/content/rest/reference/pages.md new file mode 100644 index 0000000000..713ca428fc --- /dev/null +++ b/translations/ja-JP/content/rest/reference/pages.md @@ -0,0 +1,32 @@ +--- +title: Pages +intro: 'The GitHub Pages API allows you to interact with GitHub Pages sites and build information.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." + +In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: +* `null`: The site has yet to be built. +* `queued`: The build has been requested but not yet begun. +* `building`:The build is in progress. +* `built`: The site has been built. +* `errored`: Indicates an error occurred during the build. + +In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: +* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. +* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: + - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. + - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/permissions-required-for-github-apps.md b/translations/ja-JP/content/rest/reference/permissions-required-for-github-apps.md index 388c85781c..a067fef447 100644 --- a/translations/ja-JP/content/rest/reference/permissions-required-for-github-apps.md +++ b/translations/ja-JP/content/rest/reference/permissions-required-for-github-apps.md @@ -41,18 +41,18 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /rate_limit`](/rest/reference/rate-limit#get-rate-limit-status-for-the-authenticated-user) - [`GET /repos/:owner/:repo`](/rest/reference/repos#get-a-repository) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repos#get-community-profile-metrics) +- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif -%} - [`GET /repos/:owner/:repo/contributors`](/rest/reference/repos#list-repository-contributors) - [`GET /repos/:owner/:repo/forks`](/rest/reference/repos#list-forks) - [`GET /repos/:owner/:repo/languages`](/rest/reference/repos#list-repository-languages) - [`GET /repos/:owner/:repo/license`](/rest/reference/licenses#get-the-license-for-a-repository) - [`GET /repos/:owner/:repo/stargazers`](/rest/reference/activity#list-stargazers) -- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repos#get-the-weekly-commit-activity) -- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repos#get-the-last-year-of-commit-activity) -- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repos#get-all-contributor-commit-activity) -- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repos#get-the-weekly-commit-count) -- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repository-metrics#get-the-weekly-commit-count) +- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) - [`GET /repos/:owner/:repo/subscribers`](/rest/reference/activity#list-watchers) - [`GET /repos/:owner/:repo/tags`](/rest/reference/repos#list-repository-tags) - [`GET /repos/:owner/:repo/topics`](/rest/reference/repos#get-all-repository-topics) @@ -73,14 +73,14 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /users/:username/subscriptions`](/rest/reference/activity#list-repositories-watched-by-a-user) _Collaborators_ -- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/repos#list-repository-collaborators) -- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) +- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/collaborators#list-repository-collaborators) +- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) _Commit comments_ -- [`GET /repos/:owner/:repo/comments`](/rest/reference/repos#list-commit-comments-for-a-repository) -- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#get-a-commit-comment) +- [`GET /repos/:owner/:repo/comments`](/rest/reference/commits#list-commit-comments-for-a-repository) +- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#get-a-commit-comment) - [`GET /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#list-reactions-for-a-commit-comment) -- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#list-commit-comments) +- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#list-commit-comments) _Events_ - [`GET /events`](/rest/reference/activity#list-public-events) @@ -173,7 +173,7 @@ _Search_ - [`DELETE /repos/:owner/:repo/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-for-a-repository) (:write) {% endif -%} {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif -%} - [`PUT /repos/:owner/:repo/topics`](/rest/reference/repos#replace-all-repository-topics) (:write) - [`POST /repos/:owner/:repo/transfer`](/rest/reference/repos#transfer-a-repository) (:write) @@ -186,57 +186,57 @@ _Search_ {% ifversion fpt -%} - [`DELETE /repos/:owner/:repo/vulnerability-alerts`](/rest/reference/repos#disable-vulnerability-alerts) (:write) {% endif -%} -- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/repos#accept-a-repository-invitation) (:write) -- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/repos#decline-a-repository-invitation) (:write) +- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#accept-a-repository-invitation) (:write) +- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#decline-a-repository-invitation) (:write) _Branches_ -- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#get-branch-protection) (:read) -- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#update-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#delete-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#get-admin-branch-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#set-admin-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#delete-admin-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#get-pull-request-review-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#update-pull-request-review-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#delete-pull-request-review-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#get-commit-signature-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#create-commit-signature-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#delete-commit-signature-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#get-status-checks-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#update-status-check-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#remove-status-check-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#get-all-status-check-contexts) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#add-status-check-contexts) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#set-status-check-contexts) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#remove-status-check-contexts) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#get-access-restrictions) (:read) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#delete-access-restrictions) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#get-branch-protection) (:read) +- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#update-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#delete-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#get-admin-branch-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#set-admin-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#delete-admin-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#get-pull-request-review-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#update-pull-request-review-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#delete-pull-request-review-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#get-commit-signature-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#create-commit-signature-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#delete-commit-signature-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#get-status-checks-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#update-status-check-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#remove-status-check-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#get-all-status-check-contexts) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#add-status-check-contexts) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#set-status-check-contexts) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#remove-status-check-contexts) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#get-access-restrictions) (:read) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#delete-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#add-team-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#set-team-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#remove-team-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#add-team-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#set-team-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#remove-team-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#list-users-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#add-user-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#set-user-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#add-user-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#set-user-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Collaborators_ -- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#add-a-repository-collaborator) (:write) -- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#remove-a-repository-collaborator) (:write) +- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#add-a-repository-collaborator) (:write) +- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#remove-a-repository-collaborator) (:write) _Invitations_ -- [`GET /repos/:owner/:repo/invitations`](/rest/reference/repos#list-repository-invitations) (:read) -- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#update-a-repository-invitation) (:write) -- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#delete-a-repository-invitation) (:write) +- [`GET /repos/:owner/:repo/invitations`](/rest/reference/collaborators#list-repository-invitations) (:read) +- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#update-a-repository-invitation) (:write) +- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#delete-a-repository-invitation) (:write) _Keys_ -- [`GET /repos/:owner/:repo/keys`](/rest/reference/repos#list-deploy-keys) (:read) -- [`POST /repos/:owner/:repo/keys`](/rest/reference/repos#create-a-deploy-key) (:write) -- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#get-a-deploy-key) (:read) -- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#delete-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys`](/rest/reference/deployments#list-deploy-keys) (:read) +- [`POST /repos/:owner/:repo/keys`](/rest/reference/deployments#create-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#get-a-deploy-key) (:read) +- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#delete-a-deploy-key) (:write) _Teams_ - [`GET /repos/:owner/:repo/teams`](/rest/reference/repos#list-repository-teams) (:read) @@ -245,10 +245,10 @@ _Teams_ {% ifversion fpt or ghec %} _Traffic_ -- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repos#get-repository-clones) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repos#get-top-referral-paths) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repos#get-top-referral-sources) (:read) -- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repos#get-page-views) (:read) +- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repository-metrics#get-repository-clones) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repository-metrics#get-top-referral-paths) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repository-metrics#get-top-referral-sources) (:read) +- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repository-metrics#get-page-views) (:read) {% endif %} {% ifversion fpt or ghec %} @@ -345,37 +345,37 @@ _Traffic_ - [`GET /repos/:owner/:repo/check-suites/:check_suite_id`](/rest/reference/checks#get-a-check-suite) (:read) - [`GET /repos/:owner/:repo/check-suites/:check_suite_id/check-runs`](/rest/reference/checks#list-check-runs-in-a-check-suite) (:read) - [`POST /repos/:owner/:repo/check-suites/:check_suite_id/rerequest`](/rest/reference/checks#rerequest-a-check-suite) (:write) -- [`GET /repos/:owner/:repo/commits`](/rest/reference/repos#list-commits) (:read) -- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/repos#get-a-commit) (:read) +- [`GET /repos/:owner/:repo/commits`](/rest/reference/commits#list-commits) (:read) +- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/commits#get-a-commit) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-runs`](/rest/reference/checks#list-check-runs-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-suites`](/rest/reference/checks#list-check-suites-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/community/code_of_conduct`](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) (:read) -- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/repos#compare-two-commits) (:read) +- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/commits#compare-two-commits) (:read) - [`GET /repos/:owner/:repo/contents/:path`](/rest/reference/repos#get-repository-content) (:read) {% ifversion fpt or ghes or ghae -%} - [`POST /repos/:owner/:repo/dispatches`](/rest/reference/repos#create-a-repository-dispatch-event) (:write) {% endif -%} - [`POST /repos/:owner/:repo/forks`](/rest/reference/repos#create-a-fork) (:read) -- [`POST /repos/:owner/:repo/merges`](/rest/reference/repos#merge-a-branch) (:write) +- [`POST /repos/:owner/:repo/merges`](/rest/reference/branches#merge-a-branch) (:write) - [`PUT /repos/:owner/:repo/pulls/:pull_number/merge`](/rest/reference/pulls#merge-a-pull-request) (:write) - [`GET /repos/:owner/:repo/readme(?:/(.*))?`](/rest/reference/repos#get-a-repository-readme) (:read) _Branches_ -- [`GET /repos/:owner/:repo/branches`](/rest/reference/repos#list-branches) (:read) -- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/repos#get-a-branch) (:read) +- [`GET /repos/:owner/:repo/branches`](/rest/reference/branches#list-branches) (:read) +- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/branches#get-a-branch) (:read) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#list-apps-with-access-to-the-protected-branch) (:write) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#add-app-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#set-app-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#add-app-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#set-app-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Commit comments_ -- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#update-a-commit-comment) (:write) -- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#delete-a-commit-comment) (:write) +- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#update-a-commit-comment) (:write) +- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#delete-a-commit-comment) (:write) - [`POST /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#create-reaction-for-a-commit-comment) (:read) -- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#create-a-commit-comment) (:read) +- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#create-a-commit-comment) (:read) _Git_ - [`POST /repos/:owner/:repo/git/blobs`](/rest/reference/git#create-a-blob) (:write) @@ -435,15 +435,15 @@ _Releases_ ### Permission on "deployments" -- [`GET /repos/:owner/:repo/deployments`](/rest/reference/repos#list-deployments) (:read) -- [`POST /repos/:owner/:repo/deployments`](/rest/reference/repos#create-a-deployment) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#get-a-deployment) (:read) +- [`GET /repos/:owner/:repo/deployments`](/rest/reference/deployments#list-deployments) (:read) +- [`POST /repos/:owner/:repo/deployments`](/rest/reference/deployments#create-a-deployment) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#get-a-deployment) (:read) {% ifversion fpt or ghes or ghae -%} -- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#delete-a-deployment) (:write) +- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#delete-a-deployment) (:write) {% endif -%} -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#list-deployment-statuses) (:read) -- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#create-a-deployment-status) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/repos#get-a-deployment-status) (:read) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#list-deployment-statuses) (:read) +- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#create-a-deployment-status) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/deployments#get-a-deployment-status) (:read) {% ifversion fpt or ghes or ghec %} ### Permission on "emails" @@ -703,16 +703,16 @@ _Teams_ ### Permission on "pages" -- [`GET /repos/:owner/:repo/pages`](/rest/reference/repos#get-a-github-pages-site) (:read) -- [`POST /repos/:owner/:repo/pages`](/rest/reference/repos#create-a-github-pages-site) (:write) -- [`PUT /repos/:owner/:repo/pages`](/rest/reference/repos#update-information-about-a-github-pages-site) (:write) -- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/repos#delete-a-github-pages-site) (:write) -- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/repos#list-github-pages-builds) (:read) -- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/repos#request-a-github-pages-build) (:write) -- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/repos#get-github-pages-build) (:read) -- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/repos#get-latest-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages`](/rest/reference/pages#get-a-github-pages-site) (:read) +- [`POST /repos/:owner/:repo/pages`](/rest/reference/pages#create-a-github-pages-site) (:write) +- [`PUT /repos/:owner/:repo/pages`](/rest/reference/pages#update-information-about-a-github-pages-site) (:write) +- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/pages#delete-a-github-pages-site) (:write) +- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/pages#list-github-pages-builds) (:read) +- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/pages#request-a-github-pages-build) (:write) +- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/pages#get-github-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/pages#get-latest-pages-build) (:read) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif %} ### Permission on "pull requests" @@ -812,12 +812,12 @@ _Reviews_ ### Permission on "repository hooks" -- [`GET /repos/:owner/:repo/hooks`](/rest/reference/repos#list-repository-webhooks) (:read) -- [`POST /repos/:owner/:repo/hooks`](/rest/reference/repos#create-a-repository-webhook) (:write) -- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#get-a-repository-webhook) (:read) -- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#update-a-repository-webhook) (:write) -- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#delete-a-repository-webhook) (:write) -- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/repos#ping-a-repository-webhook) (:read) +- [`GET /repos/:owner/:repo/hooks`](/rest/reference/webhooks#list-repository-webhooks) (:read) +- [`POST /repos/:owner/:repo/hooks`](/rest/reference/webhooks#create-a-repository-webhook) (:write) +- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#get-a-repository-webhook) (:read) +- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#update-a-repository-webhook) (:write) +- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#delete-a-repository-webhook) (:write) +- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/webhooks#ping-a-repository-webhook) (:read) - [`POST /repos/:owner/:repo/hooks/:hook_id/tests`](/rest/reference/repos#test-the-push-repository-webhook) (:read) {% ifversion ghes %} @@ -930,9 +930,9 @@ _Teams_ ### Permission on "statuses" -- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) (:read) -- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/repos#list-commit-statuses-for-a-reference) (:read) -- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/repos#create-a-commit-status) (:write) +- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) (:read) +- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/commits#list-commit-statuses-for-a-reference) (:read) +- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/commits#create-a-commit-status) (:write) ### Permission on "team discussions" diff --git a/translations/ja-JP/content/rest/reference/pulls.md b/translations/ja-JP/content/rest/reference/pulls.md index bea01f4cac..d8b22a8117 100644 --- a/translations/ja-JP/content/rest/reference/pulls.md +++ b/translations/ja-JP/content/rest/reference/pulls.md @@ -1,6 +1,6 @@ --- title: Pulls -intro: Pulls APIを使うと、Pull Requestのリスト、表示、編集、作成、さらにはマージまでも行えます。 +intro: 'The Pulls API allows you to list, view, edit, create, and even merge pull requests.' redirect_from: - /v3/pulls versions: @@ -13,13 +13,13 @@ topics: miniTocMaxHeadingLevel: 3 --- -Pull Request API を使用すると、Pull Requestを一覧表示、編集、作成、マージできます。 Pull Requestのコメントは、[Issue Comments API](/rest/reference/issues#comments) で管理できます。 +The Pull Request API allows you to list, view, edit, create, and even merge pull requests. Comments on pull requests can be managed via the [Issue Comments API](/rest/reference/issues#comments). -すべてのPull Requestは Issue ですが、すべての Issue がPull Requestというわけではありません。 このため、アサインされた人、ラベル、マイルストーンなどの操作といった、両方の機能で共通するアクションは、[Issues API](/rest/reference/issues) で提供されます。 +Every pull request is an issue, but not every issue is a pull request. For this reason, "shared" actions for both features, like manipulating assignees, labels and milestones, are provided within [the Issues API](/rest/reference/issues). -### Pull Requestのカスタムメディアタイプ +### Custom media types for pull requests -以下がPull Requestでサポートされているメディアタイプです。 +These are the supported media types for pull requests. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json @@ -28,59 +28,60 @@ Pull Request API を使用すると、Pull Requestを一覧表示、編集、作 application/vnd.github.VERSION.diff application/vnd.github.VERSION.patch -詳しい情報については、「[カスタムメディアタイプ](/rest/overview/media-types)」を参照してください。 +For more information, see "[Custom media types](/rest/overview/media-types)." -diff が破損している場合は、{% data variables.contact.contact_support %} にお問い合わせください。 メッセージにはリポジトリ名とPull Request ID を記載してください。 +If a diff is corrupt, contact {% data variables.contact.contact_support %}. Include the repository name and pull request ID in your message. -### リンク関係 +### Link Relations -Pull Requestには以下のリンク関係が含まれる可能性があります。 +Pull Requests have these possible link relations: -| 名前 | 説明 | -| ----------------- | ----------------------------------------------------------------------------------------------------------------- | -| `self` | Pull Requestの API ロケーション。 | -| `html` | Pull Requestの HTML ロケーション。 | -| `Issue` | Pull Requestの [Issue](/rest/reference/issues) の API ロケーション。 | -| `コメント` | Pull Requestの [Issue コメント](/rest/reference/issues#comments) の API ロケーション。 | -| `review_comments` | Pull Requestの [レビューコメント](/rest/reference/pulls#comments) の API ロケーション。 | -| `review_comment` | Pull Requestのリポジトリで、[レビューコメント](/rest/reference/pulls#comments)の API ロケーションを構築するための[URL テンプレート](/rest#hypermedia)。 | -| `commits` | Pull Requestの [コミット](#list-commits-on-a-pull-request) の API ロケーション。 | -| `statuses` | Pull Requestの[コミットステータス](/rest/reference/repos#statuses)、すなわち`head` ブランチのステータスの API ロケーション。 | +Name | Description +-----|-----------| +`self`| The API location of this Pull Request. +`html`| The HTML location of this Pull Request. +`issue`| The API location of this Pull Request's [Issue](/rest/reference/issues). +`comments`| The API location of this Pull Request's [Issue comments](/rest/reference/issues#comments). +`review_comments`| The API location of this Pull Request's [Review comments](/rest/reference/pulls#comments). +`review_comment`| The [URL template](/rest#hypermedia) to construct the API location for a [Review comment](/rest/reference/pulls#comments) in this Pull Request's repository. +`commits`|The API location of this Pull Request's [commits](#list-commits-on-a-pull-request). +`statuses`| The API location of this Pull Request's [commit statuses](/rest/reference/repos#statuses), which are the statuses of its `head` branch. {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} {% endfor %} -## レビュー +## Reviews -Pull Requestレビューは、Pull Request上のPull Requestレビューコメントのグループで、状態とオプションの本文コメントでグループ化されています。 +Pull Request Reviews are groups of Pull Request Review Comments on the Pull +Request, grouped together with a state and optional body comment. {% for operation in currentRestOperations %} {% if operation.subcategory == 'reviews' %}{% include rest_operation %}{% endif %} {% endfor %} -## レビューコメント +## Review comments -Pull Requestレビューコメントは、Pull Requestのレビュー中に unified 形式の diff の一部に付けられたコメントです。 コミットコメントおよび Issue コメントは、Pull Requestレビューコメントとは異なります。 コミットコメントはコミットに直接付けるもので、Issue コメントは、unified 形式の diff の一部を参照することなく付けるものです。 詳しい情報については、「[コミットコメントの作成](/rest/reference/repos#create-a-commit-comment)」および「[Issue コメントの作成](/rest/reference/issues#create-an-issue-comment)」を参照してください。 +Pull request review comments are comments on a portion of the unified diff made during a pull request review. Commit comments and issue comments are different from pull request review comments. You apply commit comments directly to a commit and you apply issue comments without referencing a portion of the unified diff. For more information, see "[Create a commit comment](/rest/reference/commits#create-a-commit-comment)" and "[Create an issue comment](/rest/reference/issues#create-an-issue-comment)." -### Pull Requestレビューコメントのカスタムメディアタイプ +### Custom media types for pull request review comments -以下がPull Requestレビューコメントでサポートされているメディアタイプです。 +These are the supported media types for pull request review comments. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json application/vnd.github.VERSION.html+json application/vnd.github.VERSION.full+json -詳しい情報については、「[カスタムメディアタイプ](/rest/overview/media-types)」を参照してください。 +For more information, see "[Custom media types](/rest/overview/media-types)." {% for operation in currentRestOperations %} {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} {% endfor %} -## レビューリクエスト +## Review requests -Pull Requestの作者、リポジトリのオーナー、およびコラボレータは、リポジトリの書き込みアクセスを持つ人にPull Requestレビューをリクエストできます。 リクエストされたレビュー担当者は、Pull Requestレビューをするようあなたが依頼したという通知を受け取ります。 +Pull request authors and repository owners and collaborators can request a pull request review from anyone with write access to the repository. Each requested reviewer will receive a notification asking them to review the pull request. {% for operation in currentRestOperations %} {% if operation.subcategory == 'review-requests' %}{% include rest_operation %}{% endif %} diff --git a/translations/ja-JP/content/rest/reference/releases.md b/translations/ja-JP/content/rest/reference/releases.md new file mode 100644 index 0000000000..a434451bea --- /dev/null +++ b/translations/ja-JP/content/rest/reference/releases.md @@ -0,0 +1,23 @@ +--- +title: Releases +intro: 'The releases API allows you to create, modify, and delete releases and release assets.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% note %} + +**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. + +{% endnote %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/repos.md b/translations/ja-JP/content/rest/reference/repos.md index b740a1207d..89a55881b8 100644 --- a/translations/ja-JP/content/rest/reference/repos.md +++ b/translations/ja-JP/content/rest/reference/repos.md @@ -30,52 +30,6 @@ To help streamline your workflow, you can use the API to add autolinks to extern {% endfor %} {% endif %} -## Branches - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Collaborators - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Comments - -### Custom media types for commit comments - -These are the supported media types for commit comments. You can read more -about the use of media types in the API [here](/rest/overview/media-types). - - application/vnd.github-commitcomment.raw+json - application/vnd.github-commitcomment.text+json - application/vnd.github-commitcomment.html+json - application/vnd.github-commitcomment.full+json - -For more information, see "[Custom media types](/rest/overview/media-types)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Commits - -The Repo Commits API supports listing, viewing, and comparing commits in a repository. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Community - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% endif %} ## Contents @@ -105,105 +59,12 @@ You can read more about the use of media types in the API [here](/rest/overview/ {% if operation.subcategory == 'contents' %}{% include rest_operation %}{% endif %} {% endfor %} -## Deploy keys - -{% data reusables.repositories.deploy-keys %} - -Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Deployments - -Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). - -Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. - -Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and -the `description` is a high-level summary of what happened with the deployment. - -GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. - -Below is a simple sequence diagram for how these interactions would work. - -``` -+---------+ +--------+ +-----------+ +-------------+ -| Tooling | | GitHub | | 3rd Party | | Your Server | -+---------+ +--------+ +-----------+ +-------------+ - | | | | - | Create Deployment | | | - |--------------------->| | | - | | | | - | Deployment Created | | | - |<---------------------| | | - | | | | - | | Deployment Event | | - | |---------------------->| | - | | | SSH+Deploys | - | | |-------------------->| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | - | | | Deploy Completed | - | | |<--------------------| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | -``` - -Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. - -Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. - - -### Inactive deployments - -When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. - -You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -## Environments - -The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." - -{% data reusables.gated-features.environments %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - ## Forks {% for operation in currentRestOperations %} {% if operation.subcategory == 'forks' %}{% include rest_operation %}{% endif %} {% endfor %} -## Invitations - -The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. - -Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted -access to invitations **without** also granting access to repository code, while the -`repo` scope grants permission to code as well as invitations. - -### Invite a user to a repository - -Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} -{% endfor %} - {% ifversion fpt or ghae or ghes > 3.2 or ghec %} ## Git LFS @@ -214,181 +75,3 @@ Use the API endpoint for adding a collaborator. For more information, see "[Add {% endif %} -## Merging - -The Repo Merging API supports merging branches in a repository. This accomplishes -essentially the same thing as merging one branch into another in a local repository -and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. - -The authenticated user will be the author of any merges done through this endpoint. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Pages - -The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." - -In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: -* `null`: The site has yet to be built. -* `queued`: The build has been requested but not yet begun. -* `building`:The build is in progress. -* `built`: The site has been built. -* `errored`: Indicates an error occurred during the build. - -In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: -* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. -* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: - - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. - - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Releases - -{% note %} - -**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. - -{% endnote %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statistics - -The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different -types of repository activity. - -### A word about caching - -Computing repository statistics is an expensive operation, so we try to return cached -data whenever possible. If the data hasn't been cached when you query a repository's -statistics, you'll receive a `202` response; a background job is also fired to -start compiling these statistics. Give the job a few moments to complete, and -then submit the request again. If the job has completed, that request will receive a -`200` response with the statistics in the response body. - -Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. - -### Statistics exclude some types of commits - -The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). - -To summarize: -- All statistics exclude merge commits. -- Contributor statistics also exclude empty commits. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statuses - -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. - -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. - -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. - -Statuses can include a `context` to indicate what service is providing that status. -For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `security`. You can -then use the [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. - -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. - -If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Traffic - -For repositories that you have push access to, the traffic API provides access -to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - -## Webhooks - -Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} - -If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). - -In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} -{% endfor %} - -### Receiving Webhooks - -In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. - -#### Webhook headers - -{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. - -### PubSubHubbub - -GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. -Topic URLs for a GitHub repository's pushes are in this format: - -`https://github.com/{owner}/{repo}/events/{event}` - -The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." - -#### Response format - -The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. - - Accept: application/json - https://github.com/{owner}/{repo}/events/push.json - -#### Callback URLs - -Callback URLs can use the `http://` protocol. - - # Send updates to postbin.org - http://postbin.org/123 - -#### Subscribing - -The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: - -``` shell -curl -u "user" -i \ - {% data variables.product.api_url_pre %}/hub \ - -F "hub.mode=subscribe" \ - -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ - -F "hub.callback=http://postbin.org/123" -``` - -PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. - -##### Parameters - -Name | Type | Description ------|------|-------------- -``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. -``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. -``hub.callback``|`string` | The URI to receive the updates to the topic. -``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/ja-JP/content/rest/reference/repository-metrics.md b/translations/ja-JP/content/rest/reference/repository-metrics.md new file mode 100644 index 0000000000..aea394d6e0 --- /dev/null +++ b/translations/ja-JP/content/rest/reference/repository-metrics.md @@ -0,0 +1,61 @@ +--- +title: Repository metrics +intro: 'The repository metrics API allows you to retrieve community profile, statistics, and traffic for your repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% ifversion fpt or ghec %} +## Community + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% endif %} + +## Statistics + +The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different +types of repository activity. + +### A word about caching + +Computing repository statistics is an expensive operation, so we try to return cached +data whenever possible. If the data hasn't been cached when you query a repository's +statistics, you'll receive a `202` response; a background job is also fired to +start compiling these statistics. Give the job a few moments to complete, and +then submit the request again. If the job has completed, that request will receive a +`200` response with the statistics in the response body. + +Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. + +### Statistics exclude some types of commits + +The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). + +To summarize: +- All statistics exclude merge commits. +- Contributor statistics also exclude empty commits. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghec %} +## Traffic + +For repositories that you have push access to, the traffic API provides access +to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/content/rest/reference/search.md b/translations/ja-JP/content/rest/reference/search.md index 99d4a14e4f..19f0a12d45 100644 --- a/translations/ja-JP/content/rest/reference/search.md +++ b/translations/ja-JP/content/rest/reference/search.md @@ -58,7 +58,7 @@ GitHub Octocat in:readme user:defunkt const queryString = 'q=' + encodeURIComponent('GitHub Octocat in:readme user:defunkt'); ``` -See "[Searching on GitHub](/articles/searching-on-github/)" +See "[Searching on GitHub](/search-github/searching-on-github)" for a complete list of available qualifiers, their format, and an example of how to use them. For information about how to use operators to match specific quantities, dates, or to exclude results, see "[Understanding the search syntax](/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax/)." diff --git a/translations/ja-JP/content/rest/reference/webhooks.md b/translations/ja-JP/content/rest/reference/webhooks.md new file mode 100644 index 0000000000..c9908012c1 --- /dev/null +++ b/translations/ja-JP/content/rest/reference/webhooks.md @@ -0,0 +1,77 @@ +--- +title: Webhooks +intro: 'The webhooks API allows you to create and manage webhooks for your repositories.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} + +If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). + +In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} +{% endfor %} + +### Receiving Webhooks + +In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. + +#### Webhook headers + +{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. + +### PubSubHubbub + +GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. +Topic URLs for a GitHub repository's pushes are in this format: + +`https://github.com/{owner}/{repo}/events/{event}` + +The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." + +#### Response format + +The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. + + Accept: application/json + https://github.com/{owner}/{repo}/events/push.json + +#### Callback URLs + +Callback URLs can use the `http://` protocol. + + # Send updates to postbin.org + http://postbin.org/123 + +#### Subscribing + +The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: + +``` shell +curl -u "user" -i \ + {% data variables.product.api_url_pre %}/hub \ + -F "hub.mode=subscribe" \ + -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ + -F "hub.callback=http://postbin.org/123" +``` + +PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. + +##### Parameters + +Name | Type | Description +-----|------|-------------- +``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. +``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. +``hub.callback``|`string` | The URI to receive the updates to the topic. +``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-0/20.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-0/20.yml index 96f00dcf71..d825693ff6 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-0/20.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-0/20.yml @@ -11,6 +11,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - 新しくセットアップされたユーザを持たない{% data variables.product.prodname_ghe_server %}で、攻撃者が最初の管理ユーザを作成できました。 - アップグレードの過程で、カスタムのファイアウォールのルールが削除されます。 diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-0/22.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-0/22.yml new file mode 100644 index 0000000000..814b0724d3 --- /dev/null +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-0/22.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - 新しくセットアップされたユーザを持たない{% data variables.product.prodname_ghe_server %}で、攻撃者が最初の管理ユーザを作成できました。 + - アップグレードの過程で、カスタムのファイアウォールのルールが削除されます。 + - Git LFSが追跡するファイル[Webインターフェースからアップロードされたもの](https://github.com/blog/2105-upload-files-to-your-repositories)が、不正にリポジトリに直接追加されてしまいます。 + - 同じリポジトリ内のファイルパスが255文字を超えるblobへのパーマリンクを含むIssueをクローズできませんでした。 + - GitHub Connectで"Users can search GitHub.com"が有効化されている場合、GitHub.comの検索結果にプライベート及びインターナルリポジトリのIssueが含まれません。 + - High Availability構成でレプリカノードがオフラインの場合でも、{% data variables.product.product_name %}が{% data variables.product.prodname_pages %}リクエストをオフラインのノードにルーティングし続ける場合があり、それによってユーザにとっての{% data variables.product.prodname_pages %}の可用性が下がってしまいます。 + - pre-receive フックの処理に固有のリソース制限によって、pre-receive フックに失敗するものが生じることがあります。 diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-1/0.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-1/0.yml index 1d5de0b274..f4db0c2cc8 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-1/0.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-1/0.yml @@ -67,7 +67,7 @@ sections: - | [{% data variables.product.prodname_mobile %}](https://github.com/mobile) filtering allows you to search for and find issues, pull requests, and discussions from your device. New metadata for issues and pull request list items allow you to filter by assignees, checks status, review states, and comment counts. - {% data variables.product.prodname_mobile %} beta is available for {% data variables.product.prodname_ghe_server %}. Sign in with our [Android](https://play.google.com/store/apps/details?id=com.github.android) and [iOS](https://apps.apple.com/app/github/id1477376905) apps to triage notifications and manage issues and pull requests on the go. Administrators can disable mobile support for their Enterprise using the management console or by running `ghe-config app.mobile.enabled false`. For more information, see "[GitHub Mobile](/github/getting-started-with-github/using-github/github-mobile)." + {% data variables.product.prodname_mobile %} beta is available for {% data variables.product.prodname_ghe_server %}. Sign in with our [Android](https://play.google.com/store/apps/details?id=com.github.android) and [iOS](https://apps.apple.com/app/github/id1477376905) apps to triage notifications and manage issues and pull requests on the go. Administrators can disable mobile support for their Enterprise using the management console or by running `ghe-config app.mobile.enabled false`. For more information, see "[GitHub Mobile](/get-started/using-github/github-mobile)." changes: - heading: Administration Changes diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-1/12.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-1/12.yml index 90717317d4..feb0161f06 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-1/12.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-1/12.yml @@ -12,6 +12,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues. - On a freshly set up {% data variables.product.prodname_ghe_server %} without any users, an attacker could create the first admin user. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-1/14.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-1/14.yml new file mode 100644 index 0000000000..b5929d5f56 --- /dev/null +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-1/14.yml @@ -0,0 +1,13 @@ +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues. + - On a freshly set up {% data variables.product.prodname_ghe_server %} without any users, an attacker could create the first admin user. + - Custom firewall rules are removed during the upgrade process. + - Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository. + - Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters. + - When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. + - If {% data variables.product.prodname_actions %} is enabled for {% data variables.product.prodname_ghe_server %}, teardown of a replica node with `ghe-repl-teardown` will succeed, but may return `ERROR:Running migrations`. + - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-2/0-rc1.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-2/0-rc1.yml index 62d2d7a5ae..a59268d4f1 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-2/0-rc1.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-2/0-rc1.yml @@ -244,10 +244,10 @@ sections: - heading: API Changes notes: # https://github.com/github/releases/issues/1253 - - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." # https://github.com/github/releases/issues/969 - - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. + - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Webhooks](/rest/reference/webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. # https://github.com/github/releases/issues/1349 - | diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-2/0.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-2/0.yml index b5f39207ee..dd9ef8063b 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-2/0.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-2/0.yml @@ -246,7 +246,7 @@ sections: - heading: API Changes notes: # https://github.com/github/releases/issues/1253 - - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + - Pagination support has been added to the Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." # https://github.com/github/releases/issues/969 - The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-2/4.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-2/4.yml index f2917e0daa..81a7d69e59 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-2/4.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-2/4.yml @@ -19,6 +19,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - 新しくセットアップされたユーザを持たない{% data variables.product.prodname_ghe_server %}で、攻撃者が最初の管理ユーザを作成できました。 - アップグレードの過程で、カスタムのファイアウォールのルールが削除されます。 diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-2/6.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-2/6.yml new file mode 100644 index 0000000000..03a2c3bd61 --- /dev/null +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-2/6.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - 新しくセットアップされたユーザを持たない{% data variables.product.prodname_ghe_server %}で、攻撃者が最初の管理ユーザを作成できました。 + - アップグレードの過程で、カスタムのファイアウォールのルールが削除されます。 + - Git LFSが追跡するファイル[Webインターフェースからアップロードされたもの](https://github.com/blog/2105-upload-files-to-your-repositories)が、不正にリポジトリに直接追加されてしまいます。 + - 同じリポジトリ内のファイルパスが255文字を超えるblobへのパーマリンクを含むIssueをクローズできませんでした。 + - GitHub Connectで"Users can search GitHub.com"が有効化されている場合、GitHub.comの検索結果にプライベート及びインターナルリポジトリのIssueが含まれません。 + - '{% data variables.product.prodname_registry %}のnpmレジストリは、メタデータのレスポンス中で時間の値を返さなくなります。これは、大きなパフォーマンス改善のために行われました。メタデータレスポンスの一部として時間の値を返すために必要なすべてのデータは保持し続け、既存のパフォーマンスの問題を解決した将来に、この値を返すことを再開します。' + - pre-receive フックの処理に固有のリソース制限によって、pre-receive フックに失敗するものが生じることがあります。 diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-3/0-rc1.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-3/0-rc1.yml index 1d5dfdbdaf..c025012731 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-3/0-rc1.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-3/0-rc1.yml @@ -147,7 +147,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-3/0.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-3/0.yml index f84506c0ac..b007743794 100644 --- a/translations/ja-JP/data/release-notes/enterprise-server/3-3/0.yml +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-3/0.yml @@ -44,6 +44,7 @@ sections: - '{% data variables.product.prodname_ghe_server %} 3.3 includes the public beta of a repository cache for geographically-distributed teams and CI infrastructure. The repository cache keeps a read-only copy of your repositories available in additional geographies, which prevents clients from downloading duplicate Git content from your primary instance. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."' - '{% data variables.product.prodname_ghe_server %} 3.3 includes improvements to the user impersonation process. An impersonation session now requires a justification for the impersonation, actions are recorded in the audit log as being performed as an impersonated user, and the user who is impersonated will receive an email notification that they have been impersonated by an enterprise administrator. For more information, see "[Impersonating a user](/enterprise-server@3.3/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user)."' - A new stream processing service has been added to facilitate the growing set of events that are published to the audit log, including events associated with Git and {% data variables.product.prodname_actions %} activity. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] - heading: トークンの変更 notes: @@ -139,7 +140,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/ja-JP/data/release-notes/enterprise-server/3-3/1.yml b/translations/ja-JP/data/release-notes/enterprise-server/3-3/1.yml new file mode 100644 index 0000000000..673a4c25bc --- /dev/null +++ b/translations/ja-JP/data/release-notes/enterprise-server/3-3/1.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - After upgrading to {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_actions %} may fail to start automatically. To resolve this issue, connect to the appliance via SSH and run the `ghe-actions-start` command. + - On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user. + - アップグレードの過程で、カスタムのファイアウォールのルールが削除されます。 + - Git LFSが追跡するファイル[Webインターフェースからアップロードされたもの](https://github.com/blog/2105-upload-files-to-your-repositories)が、不正にリポジトリに直接追加されてしまいます。 + - 同じリポジトリ内のファイルパスが255文字を超えるblobへのパーマリンクを含むIssueをクローズできませんでした。 + - GitHub Connectで"Users can search GitHub.com"が有効化されている場合、GitHub.comの検索結果にプライベート及びインターナルリポジトリのIssueが含まれません。 + - '{% data variables.product.prodname_registry %}のnpmレジストリは、メタデータのレスポンス中で時間の値を返さなくなります。これは、大きなパフォーマンス改善のために行われました。メタデータレスポンスの一部として時間の値を返すために必要なすべてのデータは保持し続け、既存のパフォーマンスの問題を解決した将来に、この値を返すことを再開します。' + - pre-receive フックの処理に固有のリソース制限によって、pre-receive フックに失敗するものが生じることがあります。 diff --git a/translations/ja-JP/data/release-notes/github-ae/2021-06/2021-12-06.yml b/translations/ja-JP/data/release-notes/github-ae/2021-06/2021-12-06.yml index 214117a2b8..770966b821 100644 --- a/translations/ja-JP/data/release-notes/github-ae/2021-06/2021-12-06.yml +++ b/translations/ja-JP/data/release-notes/github-ae/2021-06/2021-12-06.yml @@ -88,7 +88,7 @@ sections: - | With the [latest version of Octicons](https://github.com/primer/octicons/releases), the states of issues and pull requests are now more visually distinct so you can scan status more easily. For more information, see [{% data variables.product.prodname_blog %}](https://github.blog/changelog/2021-06-08-new-issue-and-pull-request-state-icons/). - | - You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Repositories](/rest/reference/repos#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. + You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Branches](/rest/reference/branches#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. - | You can now upload video files everywhere you write Markdown on {% data variables.product.product_name %}. Share demos, show reproduction steps, and more in issue and pull request comments, as well as in Markdown files within repositories, such as READMEs. For more information, see "[Attaching files](/github/writing-on-github/working-with-advanced-formatting/attaching-files)." - | @@ -113,7 +113,7 @@ sections: - | You can now sort the repositories on a user or organization profile by star count. - | - The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." - | When you define a submodule in {% data variables.product.product_location %} with a relative path, the submodule is now clickable in the web UI. Clicking the submodule in the web UI will take you to the linked repository. Previously, only submodules with absolute URLs were clickable. Relative paths for repositories with the same owner that follow the pattern <code>../<em>REPOSITORY</em></code> or relative paths for repositories with a different owner that follow the pattern <code>../<em>OWNER</em>/<em>REPOSITORY</em></code> are supported. For more information about working with submodules, see [Working with submodules](https://github.blog/2016-02-01-working-with-submodules/) on {% data variables.product.prodname_blog %}. - | diff --git a/translations/ja-JP/data/reusables/accounts/accounts-billed-separately.md b/translations/ja-JP/data/reusables/accounts/accounts-billed-separately.md new file mode 100644 index 0000000000..3e99bbe898 --- /dev/null +++ b/translations/ja-JP/data/reusables/accounts/accounts-billed-separately.md @@ -0,0 +1 @@ +Each account on {% data variables.product.product_name %} is billed separately. Upgrading an organization account enables paid features for the organization's repositories only and does not affect the features available in repositories owned by any associated personal accounts. Similarly, upgrading a personal account enables paid features for the personal account's repositories only and does not affect the repositories of any organization accounts. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." diff --git a/translations/ja-JP/data/reusables/actions/hardware-requirements-3.2.md b/translations/ja-JP/data/reusables/actions/hardware-requirements-3.2.md new file mode 100644 index 0000000000..060c3f8e15 --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/hardware-requirements-3.2.md @@ -0,0 +1,5 @@ +| vCPUs | メモリ | Maximum Concurrency | +|:----- |:------ |:------------------- | +| 32 | 128 GB | 1000ジョブ | +| 64 | 256 GB | 1300ジョブ | +| 96 | 384 GB | 2200ジョブ | \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/actions/hardware-requirements-after.md b/translations/ja-JP/data/reusables/actions/hardware-requirements-after.md new file mode 100644 index 0000000000..420cffb4b3 --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/hardware-requirements-after.md @@ -0,0 +1,7 @@ +| vCPUs | メモリ | Maximum Concurrency | +|:----- |:------ |:------------------- | +| 8 | 64 GB | 300ジョブ | +| 16 | 160 GB | 700ジョブ | +| 32 | 128 GB | 1300ジョブ | +| 64 | 256 GB | 2000ジョブ | +| 96 | 384 GB | 4000ジョブ | \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/actions/hardware-requirements-before.md b/translations/ja-JP/data/reusables/actions/hardware-requirements-before.md new file mode 100644 index 0000000000..d486f4bb79 --- /dev/null +++ b/translations/ja-JP/data/reusables/actions/hardware-requirements-before.md @@ -0,0 +1,6 @@ +| vCPUs | メモリ | 最大ジョブスループット数 | +|:----- |:------ |:------------ | +| 4 | 32 GB | デモまたは軽いテスト | +| 8 | 64 GB | 25ジョブ | +| 16 | 160 GB | 35ジョブ | +| 32 | 256 GB | 100ジョブ | \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/enterprise_installation/hardware-rec-table.md b/translations/ja-JP/data/reusables/enterprise_installation/hardware-rec-table.md index 9b4fdeaa71..ea33695547 100644 --- a/translations/ja-JP/data/reusables/enterprise_installation/hardware-rec-table.md +++ b/translations/ja-JP/data/reusables/enterprise_installation/hardware-rec-table.md @@ -1,28 +1,48 @@ {% ifversion ghes %} -| User licenses | vCPUs | Memory | Attached storage | Root storage | -| :- | -: | -: | -: | -: | -| Trial, demo, or 10 light users | 4 | 32 GB | 150 GB | 200 GB | -| 10 to 3,000 | 8 | 48 GB | 300 GB | 200 GB | -| 3,000 to 5000 | 12 | 64 GB | 500 GB | 200 GB | -| 5,000 to 8000 | 16 | 96 GB | 750 GB | 200 GB | -| 8,000 to 10,000+ | 20 | 160 GB | 1000 GB | 200 GB | +| ユーザライセンス | vCPUs | メモリ | アタッチされたストレージ | ルートストレージ | +|:---------------------- | -----:| ------:| ------------:| --------:| +| トライアル、デモ、あるいは10人の軽量ユーザ | 4 | 32 GB | 150 GB | 200 GB | +| 10-3000 | 8 | 48 GB | 300 GB | 200 GB | +| 3000-5000 | 12 | 64 GB | 500 GB | 200 GB | +| 5000-8000 | 16 | 96 GB | 750 GB | 200 GB | +| 8000-10000+ | 20 | 160 GB | 1000 GB | 200 GB | {% else %} -| User licenses | vCPUs | Memory | Attached storage | Root storage | -| :- | -: | -: | -: | -: | -| Trial, demo, or 10 light users | 2 | 16 GB | 100 GB | 200 GB | -| 10 to 3,000 | 4 | 32 GB | 250 GB | 200 GB | -| 3,000 to 5000 | 8 | 64 GB | 500 GB | 200 GB | -| 5,000 to 8000 | 12 | 96 GB | 750 GB | 200 GB | -| 8,000 to 10,000+ | 16 | 128 GB | 1000 GB | 200 GB | +| ユーザライセンス | vCPUs | メモリ | アタッチされたストレージ | ルートストレージ | +|:---------------------- | -----:| ------:| ------------:| --------:| +| トライアル、デモ、あるいは10人の軽量ユーザ | 2 | 16 GB | 100 GB | 200 GB | +| 10-3000 | 4 | 32 GB | 250 GB | 200 GB | +| 3000-5000 | 8 | 64 GB | 500 GB | 200 GB | +| 5000-8000 | 12 | 96 GB | 750 GB | 200 GB | +| 8000-10000+ | 16 | 128 GB | 1000 GB | 200 GB | {% endif %} {% ifversion ghes %} -If you plan to enable {% data variables.product.prodname_actions %} for the users of your instance, review the requirements for hardware, external storage, and runners in "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server)." +If you plan to enable {% data variables.product.prodname_actions %} for the users of your instance, more resources are required. + +{%- ifversion ghes < 3.2 %} + +{% data reusables.actions.hardware-requirements-before %} + +{%- endif %} + +{%- ifversion ghes = 3.2 %} + +{% data reusables.actions.hardware-requirements-3.2 %} + +{%- endif %} + +{%- ifversion ghes > 3.2 %} + +{% data reusables.actions.hardware-requirements-after %} + +{%- endif %} + +For more information about these requirements, 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#review-hardware-considerations)." {% endif %} diff --git a/translations/ja-JP/data/reusables/gated-features/internal-repos.md b/translations/ja-JP/data/reusables/gated-features/internal-repos.md deleted file mode 100644 index 0f522b719f..0000000000 --- a/translations/ja-JP/data/reusables/gated-features/internal-repos.md +++ /dev/null @@ -1,7 +0,0 @@ -{% ifversion fpt %} -Internal repositories are available on -{% data variables.product.prodname_ghe_cloud %} for organizations that are owned by an enterprise account and {% data variables.product.prodname_ghe_server %} 2.20+. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products) and "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. -{% else %} -Internal repositories are available on -{% data variables.product.prodname_ghe_cloud %} for organizations that are owned by an enterprise account{% ifversion ghae %}, {% data variables.product.prodname_ghe_managed %},{% endif %} and {% data variables.product.prodname_ghe_server %} 2.20+. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)" and "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." -{% endif %} diff --git a/translations/ja-JP/data/reusables/gated-features/saml-sso.md b/translations/ja-JP/data/reusables/gated-features/saml-sso.md deleted file mode 100644 index f2d8332223..0000000000 --- a/translations/ja-JP/data/reusables/gated-features/saml-sso.md +++ /dev/null @@ -1 +0,0 @@ -SAMLシングルサインオンは、{% data variables.product.prodname_ghe_cloud %}{% ifversion ghae %}及び{% data variables.product.prodname_ghe_managed %}{% endif %}で利用できます。 詳しい情報については「[GitHubの製品](/articles/githubs-products)」を参照してください。 diff --git a/translations/ja-JP/data/reusables/gated-features/team-synchronization.md b/translations/ja-JP/data/reusables/gated-features/team-synchronization.md deleted file mode 100644 index acddddb42d..0000000000 --- a/translations/ja-JP/data/reusables/gated-features/team-synchronization.md +++ /dev/null @@ -1 +0,0 @@ -{% ifversion fpt or ghec %}Teamの同期は、{% data variables.product.prodname_ghe_cloud %}を使用するOrganization及びEnterpriseアカウントで利用できます。 {% data reusables.gated-features.more-info-org-products %}{% elsif ghae %}SCIMグループとのTeamの同期は、{% data variables.product.prodname_ghe_managed %}を使用するOrganizationで利用できます。 詳しい情報については「[GitHubの製品](/github/getting-started-with-github/githubs-products)」を参照してください。{% endif %} diff --git a/translations/ja-JP/data/reusables/organizations/organization-plans.md b/translations/ja-JP/data/reusables/organizations/organization-plans.md new file mode 100644 index 0000000000..7a87c02ae6 --- /dev/null +++ b/translations/ja-JP/data/reusables/organizations/organization-plans.md @@ -0,0 +1,8 @@ +{% ifversion fpt or ghec %} +All organizations can own an unlimited number of public and private repositories. You can use organizations for free, with {% data variables.product.prodname_free_team %}, which includes limited features on private repositories. To get the full feature set on private repositories and additional features at the organization level, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} + +If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} + +{% ifversion fpt %} +{% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +{% endif %} \ No newline at end of file diff --git a/translations/ja-JP/data/reusables/organizations/organizations_include.md b/translations/ja-JP/data/reusables/organizations/organizations_include.md index abd85b4867..c3d44c3426 100644 --- a/translations/ja-JP/data/reusables/organizations/organizations_include.md +++ b/translations/ja-JP/data/reusables/organizations/organizations_include.md @@ -6,15 +6,4 @@ Organizationには以下が含まれます。 - The option to [require all organization members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} - The ability to [create and administer classrooms with GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} -{% ifversion fpt or ghec %} -You can use organizations for free, with -{% data variables.product.prodname_free_team %}, which includes unlimited collaborators on unlimited public repositories with full features, and unlimited private repositories with limited features. - -For additional features, including sophisticated user authentication and management, and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} - -If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} - -{% ifversion fpt %} -{% data reusables.enterprise.link-to-ghec-trial %} -{% endif %} -{% endif %} +{% data reusables.organizations.organization-plans %} diff --git a/translations/ja-JP/data/reusables/organizations/team-synchronization.md b/translations/ja-JP/data/reusables/organizations/team-synchronization.md index 877c772412..520d1c96b4 100644 --- a/translations/ja-JP/data/reusables/organizations/team-synchronization.md +++ b/translations/ja-JP/data/reusables/organizations/team-synchronization.md @@ -1,3 +1,3 @@ {% ifversion fpt or ghae or ghec %} -Teamの同期を使い、アイデンティティプロバイダを通じてOrganizationのメンバーのTeamへの追加や削除を自動的に行えます。 詳しい情報については「[アイデンティティプロバイダグループとTeamの同期](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)」を参照してください。 +{% ifversion fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud%}{% else %}You{% endif %} can use team synchronization to automatically add and remove organization members to teams through an identity provider. For more information, see "[Synchronizing a team with an identity provider group]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% endif %} diff --git a/translations/ja-JP/data/reusables/repositories/about-internal-repos.md b/translations/ja-JP/data/reusables/repositories/about-internal-repos.md index bdf6ab4178..f346d966b4 100644 --- a/translations/ja-JP/data/reusables/repositories/about-internal-repos.md +++ b/translations/ja-JP/data/reusables/repositories/about-internal-repos.md @@ -1 +1 @@ -インターナルリポジトリを使って、Enterprise内で「インナーソース」を実践できます。 Enterpriseアカウントのメンバーは、{% ifversion ghes %}プライベートモードを無効化されていても、{% endif %}プロプライエタリな情報をパブリックに共有することなく、オープンソースの方法論を用いてコラボレートできます。 +{% ifversion ghec %}If your organization is owned by an enterprise account, you{% else %}You{% endif %} can use internal repositories to practice "innersource" within your enterprise. Enterpriseアカウントのメンバーは、{% ifversion ghes %}プライベートモードを無効化されていても、{% endif %}プロプライエタリな情報をパブリックに共有することなく、オープンソースの方法論を用いてコラボレートできます。 diff --git a/translations/ja-JP/data/reusables/saml/dotcom-saml-explanation.md b/translations/ja-JP/data/reusables/saml/dotcom-saml-explanation.md index 3908d8a61b..1193514f50 100644 --- a/translations/ja-JP/data/reusables/saml/dotcom-saml-explanation.md +++ b/translations/ja-JP/data/reusables/saml/dotcom-saml-explanation.md @@ -1 +1 @@ -SAMLシングルサインオン(SSO)は、{% data variables.product.prodname_dotcom %}上のOrganizationのオーナー及びEnterpriseのオーナーに対し、リポジトリ、Issue、Pull RequestのようなOrganizationのリソースに対するアクセスをコントロールし、セキュアに保つ方法を提供します。 +SAML single sign-on (SSO) gives organization owners and enterprise owners using {% data variables.product.product_name %} a way to control and secure access to organization resources like repositories, issues, and pull requests. diff --git a/translations/ja-JP/data/reusables/saml/saml-accounts.md b/translations/ja-JP/data/reusables/saml/saml-accounts.md index 821e478205..0d33751848 100644 --- a/translations/ja-JP/data/reusables/saml/saml-accounts.md +++ b/translations/ja-JP/data/reusables/saml/saml-accounts.md @@ -1 +1 @@ -If you configure SAML SSO, members of your {% data variables.product.prodname_dotcom %} organization will continue to log into their user accounts on {% data variables.product.prodname_dotcom %}. SAML SSO を使用する Organization 内のリソースにメンバーがアクセスすると、{% data variables.product.prodname_dotcom %} は認証のためにメンバーを IdP にリダイレクトします。 認証に成功すると、IdP はメンバーを {% data variables.product.prodname_dotcom %} にリダイレクトして戻し、そこでメンバーは Organization のリソースにアクセスできます。 +If you configure SAML SSO, members of your organization will continue to log into their user accounts on {% data variables.product.prodname_dotcom_the_website %}. SAML SSO を使用する Organization 内のリソースにメンバーがアクセスすると、{% data variables.product.prodname_dotcom %} は認証のためにメンバーを IdP にリダイレクトします。 認証に成功すると、IdP はメンバーを {% data variables.product.prodname_dotcom %} にリダイレクトして戻し、そこでメンバーは Organization のリソースにアクセスできます。 diff --git a/translations/ja-JP/data/reusables/saml/saml-session-oauth.md b/translations/ja-JP/data/reusables/saml/saml-session-oauth.md index c58544e881..7e1645a295 100644 --- a/translations/ja-JP/data/reusables/saml/saml-session-oauth.md +++ b/translations/ja-JP/data/reusables/saml/saml-session-oauth.md @@ -1 +1 @@ -SAML シングルサインオンを実施する Organization に所属している場合は、{% data variables.product.prodname_oauth_app %}を認可する前に、アイデンティティプロバイダを通じて認証を求められることがあります。 SAMLに関する詳しい情報については「[SAMLシングルサインオンでの認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)」を参照してください。 +SAML シングルサインオンを実施する Organization に所属している場合は、{% data variables.product.prodname_oauth_app %}を認可する前に、アイデンティティプロバイダを通じて認証を求められることがあります。 For more information about SAML, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} diff --git a/translations/ja-JP/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/translations/ja-JP/data/reusables/secret-scanning/partner-secret-list-private-repo.md index ca74c38eda..ea9ac478dc 100644 --- a/translations/ja-JP/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/translations/ja-JP/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -16,7 +16,9 @@ Amazon Web Services (AWS) | Amazon AWS Temporary Access Key ID | aws_temporary_a {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Asana | Asana Personal Access Token | asana_personal_access_token{% endif %} Atlassian | Atlassian API Token | atlassian_api_token Atlassian | Atlassian JSON Web Token | atlassian_jwt {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -Atlassian | Bitbucket Server Personal Access Token | bitbucket_server_personal_access_token{% endif %} Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token Azure | Azure SAS Token | azure_sas_token Azure | Azure Service Management Certificate | azure_management_certificate +Atlassian | Bitbucket Server Personal Access Token | bitbucket_server_personal_access_token{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Azure | Azure Cache for Redis Access Key | azure_cache_for_redis_access_key{% endif %} Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token Azure | Azure SAS Token | azure_sas_token Azure | Azure Service Management Certificate | azure_management_certificate {%- ifversion ghes < 3.4 or ghae or ghae-issue-5342 %} Azure | Azure SQL Connection String | azure_sql_connection_string{% endif %} Azure | Azure Storage Account Key | azure_storage_account_key {%- ifversion fpt or ghec or ghes > 3.2 %} diff --git a/translations/ja-JP/data/reusables/webhooks/commit_comment_properties.md b/translations/ja-JP/data/reusables/webhooks/commit_comment_properties.md index 7f4ce34c43..3b8618181d 100644 --- a/translations/ja-JP/data/reusables/webhooks/commit_comment_properties.md +++ b/translations/ja-JP/data/reusables/webhooks/commit_comment_properties.md @@ -1,4 +1,4 @@ -| キー | 種類 | 説明 | -| -------- | -------- | ----------------------------------------------------------------- | -| `action` | `string` | 実行されたアクション。 `created `になりうる。 | -| `コメント` | `オブジェクト` | [commit comment](/rest/reference/repos#get-a-commit-comment)リソース。 | +| キー | 種類 | 説明 | +| -------- | -------- | ------------------------------------------------------------------- | +| `action` | `string` | 実行されたアクション。 `created `になりうる。 | +| `コメント` | `オブジェクト` | [commit comment](/rest/reference/commits#get-a-commit-comment)リソース。 | diff --git a/translations/ja-JP/data/reusables/webhooks/deploy_key_properties.md b/translations/ja-JP/data/reusables/webhooks/deploy_key_properties.md index 98b272ae1e..da3b386ad2 100644 --- a/translations/ja-JP/data/reusables/webhooks/deploy_key_properties.md +++ b/translations/ja-JP/data/reusables/webhooks/deploy_key_properties.md @@ -1,4 +1,4 @@ -| キー | 種類 | 説明 | -| -------- | -------- | ----------------------------------------------------------- | -| `action` | `string` | 実行されたアクション。 `created`もしくは`deleted`のいずれか。 | -| `key` | `オブジェクト` | [`deploy key`](/rest/reference/repos#get-a-deploy-key)リソース。 | +| キー | 種類 | 説明 | +| -------- | -------- | ----------------------------------------------------------------- | +| `action` | `string` | 実行されたアクション。 `created`もしくは`deleted`のいずれか。 | +| `key` | `オブジェクト` | [`deploy key`](/rest/reference/deployments#get-a-deploy-key)リソース。 | diff --git a/translations/ja-JP/data/reusables/webhooks/deployment_short_desc.md b/translations/ja-JP/data/reusables/webhooks/deployment_short_desc.md index 63422d2b4f..1e31eeeba3 100644 --- a/translations/ja-JP/data/reusables/webhooks/deployment_short_desc.md +++ b/translations/ja-JP/data/reusables/webhooks/deployment_short_desc.md @@ -1 +1 @@ -デプロイメントが作成されました。 {% data reusables.webhooks.action_type_desc %} 詳しい情報については「[デプロイメント](/rest/reference/repos#list-deployments)」 REST APIを参照してください。 +デプロイメントが作成されました。 {% data reusables.webhooks.action_type_desc %} 詳しい情報については「[デプロイメント](/rest/reference/deployments#list-deployments)」 REST APIを参照してください。 diff --git a/translations/ja-JP/data/reusables/webhooks/deployment_status_short_desc.md b/translations/ja-JP/data/reusables/webhooks/deployment_status_short_desc.md index d852ba202e..d8ed6b4c56 100644 --- a/translations/ja-JP/data/reusables/webhooks/deployment_status_short_desc.md +++ b/translations/ja-JP/data/reusables/webhooks/deployment_status_short_desc.md @@ -1 +1 @@ -デプロイメントが作成されました。 {% data reusables.webhooks.action_type_desc %} 詳しい情報については「[デプロイメントステータス](/rest/reference/repos#list-deployment-statuses)」 REST APIを参照してください。 +デプロイメントが作成されました。 {% data reusables.webhooks.action_type_desc %} 詳しい情報については「[デプロイメントステータス](/rest/reference/deployments#list-deployment-statuses)」 REST APIを参照してください。 diff --git a/translations/ja-JP/data/ui.yml b/translations/ja-JP/data/ui.yml index a5819802e6..49f8365c77 100644 --- a/translations/ja-JP/data/ui.yml +++ b/translations/ja-JP/data/ui.yml @@ -52,7 +52,7 @@ survey: optional: 任意 required: 必須 email_placeholder: email@example.com - email_label: さらに質問がある場合、ご連絡差し上げてもよいでしょうか? + email_label: If we can contact you with more questions, please enter your email address send: 送信 feedback: ありがとうございます!フィードバックをいただきました。 not_support: 返信が必要な場合は、サポートにお問い合わせください。 diff --git a/translations/log/cn-resets.csv b/translations/log/cn-resets.csv index 67609c61a6..d86301cbc4 100644 --- a/translations/log/cn-resets.csv +++ b/translations/log/cn-resets.csv @@ -156,9 +156,14 @@ translations/zh-CN/content/actions/using-github-hosted-runners/index.md,renderin translations/zh-CN/content/admin/advanced-security/configuring-code-scanning-for-your-appliance.md,rendering error translations/zh-CN/content/admin/advanced-security/configuring-secret-scanning-for-your-appliance.md,rendering error translations/zh-CN/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md,rendering error +translations/zh-CN/content/admin/advanced-security/index.md,rendering error translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/allowing-built-in-authentication-for-users-outside-your-identity-provider.md,rendering error +translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md,rendering error +translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md,rendering error +translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md,rendering error translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md,rendering error translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md,rendering error +translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md,rendering error translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md,rendering error translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/index.md,rendering error translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md,rendering error @@ -167,9 +172,16 @@ translations/zh-CN/content/admin/authentication/managing-identity-and-access-for translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md,rendering error translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md,rendering error translations/zh-CN/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md,rendering error translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-tls.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-network-settings/index.md,rendering error translations/zh-CN/content/admin/configuration/configuring-network-settings/network-ports.md,rendering error translations/zh-CN/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md,rendering error @@ -177,25 +189,39 @@ translations/zh-CN/content/admin/configuration/configuring-your-enterprise/confi translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/index.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/managing-github-mobile-for-your-enterprise.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise.md,rendering error translations/zh-CN/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md,rendering error +translations/zh-CN/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md,rendering error translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md,rendering error translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md,rendering error translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md,rendering error translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md,rendering error translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md,rendering error +translations/zh-CN/content/admin/enterprise-management/configuring-clustering/about-clustering.md,rendering error translations/zh-CN/content/admin/enterprise-management/configuring-clustering/cluster-network-configuration.md,rendering error +translations/zh-CN/content/admin/enterprise-management/configuring-clustering/index.md,rendering error translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/about-high-availability-configuration.md,rendering error translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/creating-a-high-availability-replica.md,rendering error +translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/index.md,rendering error +translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md,rendering error +translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/index.md,rendering error +translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md,rendering error +translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md,rendering error translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-cpu-or-memory-resources.md,rendering error translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-storage-capacity.md,rendering error +translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md,rendering error +translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md,rendering error translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md,rendering error translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md,rendering error translations/zh-CN/content/admin/enterprise-support/overview/about-github-enterprise-support.md,rendering error translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md,rendering error translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise.md,rendering error +translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/index.md,rendering error translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md,rendering error translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md,rendering error translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/submitting-a-ticket.md,rendering error @@ -225,10 +251,18 @@ translations/zh-CN/content/admin/github-actions/using-github-actions-in-github-a translations/zh-CN/content/admin/github-actions/using-github-actions-in-github-ae/using-actions-in-github-ae.md,rendering error translations/zh-CN/content/admin/guides.md,rendering error translations/zh-CN/content/admin/index.md,rendering error +translations/zh-CN/content/admin/installation/index.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md,rendering error translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md,rendering error translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md,rendering error +translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md,rendering error 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/overview/about-the-github-enterprise-api.md,rendering error translations/zh-CN/content/admin/overview/about-upgrades-to-new-releases.md,rendering error translations/zh-CN/content/admin/packages/enabling-github-packages-with-aws.md,rendering error translations/zh-CN/content/admin/packages/enabling-github-packages-with-azure-blob-storage.md,rendering error @@ -236,23 +270,58 @@ translations/zh-CN/content/admin/packages/enabling-github-packages-with-minio.md translations/zh-CN/content/admin/packages/getting-started-with-github-packages-for-your-enterprise.md,rendering error translations/zh-CN/content/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages.md,rendering error translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-advanced-security-in-your-enterprise.md,rendering error +translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md,rendering error translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md,rendering error +translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md,rendering error +translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md,rendering error translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md,rendering error +translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md,rendering error translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md,rendering error +translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md,rendering error +translations/zh-CN/content/admin/user-management/index.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/creating-teams.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/index.md,rendering error +translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md,rendering error +translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/removing-organizations-from-your-enterprise.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md,rendering error translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md,rendering error translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/index.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md,rendering error translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md,rendering error +translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md,rendering error translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md,rendering error translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-githubcom.md,rendering error translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md,rendering error +translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md,rendering error translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md,rendering error +translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md,rendering error translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md,rendering error +translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md,rendering error +translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md,rendering error +translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/index.md,rendering error +translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md,rendering error +translations/zh-CN/content/authentication/connecting-to-github-with-ssh/about-ssh.md,rendering error translations/zh-CN/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md,rendering error +translations/zh-CN/content/authentication/connecting-to-github-with-ssh/index.md,rendering error +translations/zh-CN/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md,rendering error translations/zh-CN/content/authentication/index.md,rendering error translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-anonymized-urls.md,rendering error translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md,rendering error @@ -269,20 +338,54 @@ translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/r translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys.md,rendering error translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials.md,rendering error translations/zh-CN/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md,rendering error +translations/zh-CN/content/authentication/managing-commit-signature-verification/index.md,rendering error translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-commits.md,rendering error +translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-tags.md,rendering error +translations/zh-CN/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/changing-two-factor-authentication-delivery-methods-for-your-mobile-device.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication-recovery-methods.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/index.md,rendering error translations/zh-CN/content/authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials.md,rendering error +translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md,rendering error +translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/index.md,rendering error +translations/zh-CN/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md,rendering error translations/zh-CN/content/authentication/troubleshooting-ssh/error-unknown-key-type.md,rendering error +translations/zh-CN/content/authentication/troubleshooting-ssh/index.md,rendering error +translations/zh-CN/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md,rendering error translations/zh-CN/content/billing/index.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/index.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md,rendering error translations/zh-CN/content/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/index.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error translations/zh-CN/content/billing/managing-billing-for-github-packages/about-billing-for-github-packages.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md,rendering error translations/zh-CN/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-your-github-account/index.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md,rendering error +translations/zh-CN/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md,rendering error translations/zh-CN/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md,rendering error translations/zh-CN/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/index.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md,rendering error +translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md,rendering error +translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md,rendering error +translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md,rendering error translations/zh-CN/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md,rendering error translations/zh-CN/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md,rendering error translations/zh-CN/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-the-codeql-workflow-for-compiled-languages.md,rendering error @@ -328,6 +431,7 @@ translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerab translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/viewing-and-updating-vulnerable-dependencies-in-your-repository.md,rendering error translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md,Listed in localization-support#489 translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md,rendering error +translations/zh-CN/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md,rendering error translations/zh-CN/content/codespaces/codespaces-reference/disaster-recovery-for-codespaces.md,rendering error translations/zh-CN/content/codespaces/customizing-your-codespace/changing-the-machine-type-for-your-codespace.md,rendering error translations/zh-CN/content/codespaces/customizing-your-codespace/index.md,rendering error @@ -358,6 +462,7 @@ translations/zh-CN/content/codespaces/setting-up-your-project-for-codespaces/set translations/zh-CN/content/communities/documenting-your-project-with-wikis/about-wikis.md,rendering error translations/zh-CN/content/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam.md,rendering error translations/zh-CN/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md,rendering error +translations/zh-CN/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md,rendering error translations/zh-CN/content/desktop/contributing-and-collaborating-using-github-desktop/adding-and-cloning-repositories/adding-an-existing-project-to-github-using-github-desktop.md,rendering error translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/configuring-and-customizing-github-desktop/about-git-large-file-storage-and-github-desktop.md,rendering error translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/about-connections-to-github.md,rendering error @@ -365,6 +470,7 @@ translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/ins translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/installing-github-desktop.md,rendering error translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/setting-up-github-desktop.md,rendering error translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop.md,rendering error +translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md,rendering error translations/zh-CN/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md,rendering error translations/zh-CN/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md,rendering error translations/zh-CN/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md,rendering error @@ -373,11 +479,13 @@ translations/zh-CN/content/developers/apps/building-oauth-apps/authorizing-oauth translations/zh-CN/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md,rendering error translations/zh-CN/content/developers/apps/getting-started-with-apps/about-apps.md,rendering error translations/zh-CN/content/developers/apps/getting-started-with-apps/activating-optional-features-for-apps.md,rendering error +translations/zh-CN/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md,rendering error translations/zh-CN/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md,rendering error translations/zh-CN/content/developers/apps/guides/using-content-attachments.md,rendering error translations/zh-CN/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md,rendering error translations/zh-CN/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md,rendering error translations/zh-CN/content/developers/github-marketplace/github-marketplace-overview/index.md,rendering error +translations/zh-CN/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md,rendering error translations/zh-CN/content/developers/github-marketplace/using-the-github-marketplace-api-in-your-app/handling-new-purchases-and-free-trials.md,rendering error translations/zh-CN/content/developers/overview/managing-deploy-keys.md,rendering error translations/zh-CN/content/developers/overview/secret-scanning-partner-program.md,rendering error @@ -388,6 +496,8 @@ translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learni translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md,rendering error translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/index.md,rendering error translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md,rendering error +translations/zh-CN/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,rendering error +translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md,rendering error translations/zh-CN/content/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide/about-using-makecode-arcade-with-github-classroom.md,rendering error translations/zh-CN/content/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide/integrate-github-classroom-with-an-ide.md,rendering error translations/zh-CN/content/education/manage-coursework-with-github-classroom/learn-with-github-classroom/view-autograding-results.md,rendering error @@ -413,6 +523,7 @@ translations/zh-CN/content/get-started/getting-started-with-git/updating-credent translations/zh-CN/content/get-started/index.md,rendering error translations/zh-CN/content/get-started/learning-about-github/about-github-advanced-security.md,rendering error translations/zh-CN/content/get-started/learning-about-github/access-permissions-on-github.md,rendering error +translations/zh-CN/content/get-started/learning-about-github/githubs-products.md,rendering error translations/zh-CN/content/get-started/learning-about-github/index.md,rendering error translations/zh-CN/content/get-started/learning-about-github/types-of-github-accounts.md,rendering error translations/zh-CN/content/get-started/onboarding/getting-started-with-github-enterprise-cloud.md,rendering error @@ -428,6 +539,7 @@ translations/zh-CN/content/get-started/signing-up-for-github/index.md,rendering translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md,rendering error translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md,rendering error translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server.md,rendering error +translations/zh-CN/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md,rendering error translations/zh-CN/content/get-started/signing-up-for-github/verifying-your-email-address.md,rendering error translations/zh-CN/content/get-started/using-git/about-git-rebase.md,rendering error translations/zh-CN/content/get-started/using-git/about-git-subtree-merges.md,rendering error @@ -444,46 +556,120 @@ translations/zh-CN/content/get-started/using-github/keyboard-shortcuts.md,render translations/zh-CN/content/get-started/using-github/supported-browsers.md,rendering error translations/zh-CN/content/github-cli/github-cli/creating-github-cli-extensions.md,rendering error translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/about-github-marketplace.md,rendering error +translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md,rendering error +translations/zh-CN/content/github/extending-github/about-webhooks.md,rendering error +translations/zh-CN/content/github/extending-github/git-automation-with-oauth-tokens.md,rendering error +translations/zh-CN/content/github/extending-github/index.md,rendering error translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md,rendering error +translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md,rendering error +translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md,rendering error +translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md,rendering error +translations/zh-CN/content/github/importing-your-projects-to-github/index.md,rendering error +translations/zh-CN/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md,rendering error translations/zh-CN/content/github/index.md,rendering error +translations/zh-CN/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md,rendering error +translations/zh-CN/content/github/site-policy/dmca-takedown-policy.md,rendering error +translations/zh-CN/content/github/site-policy/github-community-guidelines.md,rendering error +translations/zh-CN/content/github/site-policy/github-logo-policy.md,rendering error +translations/zh-CN/content/github/site-policy/github-privacy-statement.md,rendering error +translations/zh-CN/content/github/site-policy/github-subprocessors-and-cookies.md,rendering error translations/zh-CN/content/github/site-policy/github-terms-for-additional-products-and-features.md,rendering error translations/zh-CN/content/github/site-policy/github-terms-of-service.md,rendering error +translations/zh-CN/content/github/site-policy/github-username-policy.md,rendering error +translations/zh-CN/content/github/site-policy/global-privacy-practices.md,rendering error +translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md,rendering error +translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md,rendering error +translations/zh-CN/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md,rendering error +translations/zh-CN/content/github/site-policy/index.md,rendering error translations/zh-CN/content/github/understanding-how-github-uses-and-protects-your-data/managing-data-use-settings-for-your-private-repository.md,rendering error translations/zh-CN/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md,rendering error translations/zh-CN/content/github/working-with-github-support/github-enterprise-cloud-support.md,rendering error translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md,rendering error translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists.md,rendering error +translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md,rendering error translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md,rendering error +translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md,rendering error +translations/zh-CN/content/github/writing-on-github/index.md,rendering error translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md,rendering error translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/index.md,rendering error translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md,rendering error +translations/zh-CN/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md,rendering error translations/zh-CN/content/graphql/guides/index.md,rendering error translations/zh-CN/content/graphql/guides/managing-enterprise-accounts.md,rendering error translations/zh-CN/content/graphql/guides/migrating-graphql-global-node-ids.md,rendering error translations/zh-CN/content/graphql/index.md,rendering error +translations/zh-CN/content/graphql/reference/mutations.md,rendering error translations/zh-CN/content/issues/guides.md,rendering error translations/zh-CN/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md,rendering error translations/zh-CN/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md,rendering error translations/zh-CN/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md,rendering error translations/zh-CN/content/issues/using-labels-and-milestones-to-track-work/managing-labels.md,rendering error +translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md,rendering error +translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md,rendering error +translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md,rendering error +translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/index.md,rendering error +translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md,rendering error +translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md,rendering error +translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md,rendering error +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,rendering error +translations/zh-CN/content/organizations/index.md,rendering error +translations/zh-CN/content/organizations/keeping-your-organization-secure/index.md,rendering error translations/zh-CN/content/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md,rendering error translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,Listed in localization-support#489 translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/index.md,rendering error +translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md,rendering error +translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md,rendering error translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md,rendering error +translations/zh-CN/content/organizations/managing-git-access-to-your-organizations-repositories/index.md,rendering error +translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md,rendering error +translations/zh-CN/content/organizations/managing-membership-in-your-organization/index.md,rendering error +translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md,Listed in localization-support#489 translations/zh-CN/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-organization-settings/renaming-an-organization.md,rendering error translations/zh-CN/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md,rendering error +translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md,rendering error +translations/zh-CN/content/organizations/managing-organization-settings/transferring-organization-ownership.md,rendering error translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md,rendering error +translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md,rendering error translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md,rendering error translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md,rendering error +translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md,rendering error +translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md,rendering error +translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/index.md,rendering error +translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md,rendering error translations/zh-CN/content/organizations/organizing-members-into-teams/about-teams.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/creating-a-team.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/index.md,rendering error translations/zh-CN/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md,rendering error +translations/zh-CN/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md,rendering error translations/zh-CN/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md,rendering error +translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md,rendering error +translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md,rendering error +translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md,rendering error +translations/zh-CN/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md,rendering error translations/zh-CN/content/packages/learn-github-packages/deleting-a-package.md,rendering error translations/zh-CN/content/packages/learn-github-packages/installing-a-package.md,rendering error translations/zh-CN/content/packages/learn-github-packages/introduction-to-github-packages.md,rendering error @@ -496,49 +682,90 @@ translations/zh-CN/content/packages/working-with-a-github-packages-registry/work translations/zh-CN/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md,rendering error translations/zh-CN/content/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry.md,rendering error translations/zh-CN/content/packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry.md,rendering error +translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md,rendering error +translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md,rendering error +translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md,rendering error +translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md,rendering error translations/zh-CN/content/pages/getting-started-with-github-pages/about-github-pages.md,Listed in localization-support#489 translations/zh-CN/content/pages/getting-started-with-github-pages/about-github-pages.md,rendering error +translations/zh-CN/content/pages/index.md,rendering error translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md,rendering error +translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md,rendering error translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md,rendering error translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md,rendering error +translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md,rendering error +translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md,rendering error +translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md,rendering error +translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/index.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md,rendering error +translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md,rendering error translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md,rendering error +translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md,rendering error translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization.md,rendering error +translations/zh-CN/content/pull-requests/committing-changes-to-your-project/index.md,rendering error translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/commit-exists-on-github-but-not-in-my-local-clone.md,rendering error +translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md,rendering error translations/zh-CN/content/repositories/archiving-a-github-repository/archiving-repositories.md,rendering error +translations/zh-CN/content/repositories/archiving-a-github-repository/index.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md,rendering error +translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md,rendering error +translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md,rendering error translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md,rendering error translations/zh-CN/content/repositories/creating-and-managing-repositories/about-repositories.md,rendering error +translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md,rendering error +translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md,rendering error translations/zh-CN/content/repositories/creating-and-managing-repositories/deleting-a-repository.md,rendering error +translations/zh-CN/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md,rendering error translations/zh-CN/content/repositories/creating-and-managing-repositories/transferring-a-repository.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md,rendering error +translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md,rendering error +translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md,rendering error +translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md,rendering error +translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md,rendering error translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md,rendering error +translations/zh-CN/content/repositories/releasing-projects-on-github/about-releases.md,rendering error +translations/zh-CN/content/repositories/releasing-projects-on-github/index.md,rendering error +translations/zh-CN/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md,rendering error +translations/zh-CN/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md,rendering error +translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md,rendering error +translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md,rendering error translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md,rendering error translations/zh-CN/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-files/editing-files.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md,rendering error +translations/zh-CN/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md,rendering error +translations/zh-CN/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md,rendering error translations/zh-CN/content/repositories/working-with-files/using-files/navigating-code-on-github.md,rendering error +translations/zh-CN/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md,rendering error translations/zh-CN/content/rest/guides/basics-of-authentication.md,Listed in localization-support#489 translations/zh-CN/content/rest/guides/basics-of-authentication.md,rendering error translations/zh-CN/content/rest/guides/discovering-resources-for-a-user.md,rendering error translations/zh-CN/content/rest/guides/getting-started-with-the-checks-api.md,rendering error translations/zh-CN/content/rest/guides/getting-started-with-the-rest-api.md,rendering error +translations/zh-CN/content/rest/guides/index.md,rendering error translations/zh-CN/content/rest/guides/traversing-with-pagination.md,rendering error +translations/zh-CN/content/rest/guides/working-with-comments.md,rendering error translations/zh-CN/content/rest/index.md,rendering error translations/zh-CN/content/rest/overview/api-previews.md,rendering error translations/zh-CN/content/rest/overview/other-authentication-methods.md,Listed in localization-support#489 @@ -548,13 +775,23 @@ translations/zh-CN/content/rest/overview/resources-in-the-rest-api.md,rendering translations/zh-CN/content/rest/reference/actions.md,rendering error translations/zh-CN/content/rest/reference/activity.md,rendering error translations/zh-CN/content/rest/reference/apps.md,rendering error +translations/zh-CN/content/rest/reference/branches.md,rendering error +translations/zh-CN/content/rest/reference/collaborators.md,rendering error +translations/zh-CN/content/rest/reference/commits.md,rendering error +translations/zh-CN/content/rest/reference/deployments.md,rendering error translations/zh-CN/content/rest/reference/enterprise-admin.md,rendering error +translations/zh-CN/content/rest/reference/index.md,rendering error translations/zh-CN/content/rest/reference/packages.md,rendering error +translations/zh-CN/content/rest/reference/pages.md,rendering error translations/zh-CN/content/rest/reference/permissions-required-for-github-apps.md,rendering error +translations/zh-CN/content/rest/reference/pulls.md,rendering error +translations/zh-CN/content/rest/reference/releases.md,rendering error translations/zh-CN/content/rest/reference/repos.md,rendering error +translations/zh-CN/content/rest/reference/repository-metrics.md,rendering error translations/zh-CN/content/rest/reference/search.md,rendering error translations/zh-CN/content/rest/reference/secret-scanning.md,rendering error translations/zh-CN/content/rest/reference/teams.md,rendering error +translations/zh-CN/content/rest/reference/webhooks.md,rendering error translations/zh-CN/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md,rendering error translations/zh-CN/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md,rendering error translations/zh-CN/content/search-github/searching-on-github/searching-commits.md,rendering error @@ -584,7 +821,6 @@ translations/zh-CN/data/reusables/dotcom_billing/downgrade-org-to-free.md,broken translations/zh-CN/data/reusables/enterprise-accounts/actions-packages-report-download-enterprise-accounts.md,broken liquid tags translations/zh-CN/data/reusables/enterprise_installation/download-appliance.md,broken liquid tags translations/zh-CN/data/reusables/enterprise_installation/hardware-considerations-all-platforms.md,broken liquid tags -translations/zh-CN/data/reusables/enterprise_installation/hardware-rec-table.md,broken liquid tags translations/zh-CN/data/reusables/enterprise_installation/upgrade-hardware-requirements.md,broken liquid tags translations/zh-CN/data/reusables/enterprise_management_console/badge_indicator.md,broken liquid tags translations/zh-CN/data/reusables/getting-started/marketplace.md,broken liquid tags diff --git a/translations/log/es-resets.csv b/translations/log/es-resets.csv index c017a692dd..57c660d4ab 100644 --- a/translations/log/es-resets.csv +++ b/translations/log/es-resets.csv @@ -212,6 +212,7 @@ translations/es-ES/content/admin/authentication/authenticating-users-for-your-gi translations/es-ES/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md,Listed in localization-support#489 translations/es-ES/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md,rendering error translations/es-ES/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md,rendering error +translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md,rendering error translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md,rendering error translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/index.md,rendering error translations/es-ES/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md,rendering error @@ -219,15 +220,20 @@ translations/es-ES/content/admin/authentication/index.md,rendering error translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md,rendering error translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md,rendering error translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md,rendering error +translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/index.md,rendering error translations/es-ES/content/admin/authentication/managing-identity-and-access-for-your-enterprise/switching-your-saml-configuration-from-an-organization-to-an-enterprise-account.md,rendering error translations/es-ES/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md,rendering error translations/es-ES/content/admin/configuration/configuring-network-settings/configuring-tls.md,rendering error translations/es-ES/content/admin/configuration/configuring-network-settings/network-ports.md,rendering error translations/es-ES/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md,rendering error +translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md,rendering error +translations/es-ES/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md,rendering error +translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,rendering error +translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/index.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/managing-github-mobile-for-your-enterprise.md,rendering error translations/es-ES/content/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise.md,rendering error @@ -297,11 +303,19 @@ translations/es-ES/content/admin/github-actions/using-github-actions-in-github-a translations/es-ES/content/admin/guides.md,Listed in localization-support#489 translations/es-ES/content/admin/guides.md,rendering error translations/es-ES/content/admin/index.md,rendering error +translations/es-ES/content/admin/installation/index.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md,rendering error translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md,rendering error +translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md,rendering error translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md,Listed in localization-support#489 translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md,rendering error translations/es-ES/content/admin/overview/about-enterprise-accounts.md,Listed in localization-support#489 translations/es-ES/content/admin/overview/about-enterprise-accounts.md,rendering error +translations/es-ES/content/admin/overview/about-the-github-enterprise-api.md,rendering error translations/es-ES/content/admin/overview/about-upgrades-to-new-releases.md,rendering error translations/es-ES/content/admin/overview/creating-an-enterprise-account.md,Listed in localization-support#489 translations/es-ES/content/admin/overview/creating-an-enterprise-account.md,rendering error @@ -341,17 +355,22 @@ translations/es-ES/content/admin/user-management/managing-users-in-your-enterpri translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise.md,rendering error translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-githubcom.md,Listed in localization-support#489 translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-githubcom.md,rendering error +translations/es-ES/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md,rendering error translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md,Listed in localization-support#489 translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md,rendering error translations/es-ES/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md,rendering error translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md,rendering error translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md,rendering error translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md,rendering error +translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/index.md,rendering error +translations/es-ES/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md,rendering error translations/es-ES/content/authentication/connecting-to-github-with-ssh/about-ssh.md,rendering error translations/es-ES/content/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account.md,Listed in localization-support#489 translations/es-ES/content/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account.md,rendering error translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md,Listed in localization-support#489 translations/es-ES/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md,rendering error +translations/es-ES/content/authentication/connecting-to-github-with-ssh/index.md,rendering error +translations/es-ES/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md,rendering error translations/es-ES/content/authentication/index.md,rendering error translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-anonymized-urls.md,Listed in localization-support#489 translations/es-ES/content/authentication/keeping-your-account-and-data-secure/about-anonymized-urls.md,rendering error @@ -373,7 +392,10 @@ translations/es-ES/content/authentication/keeping-your-account-and-data-secure/r translations/es-ES/content/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials.md,rendering error translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md,Listed in localization-support#489 translations/es-ES/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md,rendering error +translations/es-ES/content/authentication/managing-commit-signature-verification/index.md,rendering error translations/es-ES/content/authentication/managing-commit-signature-verification/signing-commits.md,rendering error +translations/es-ES/content/authentication/managing-commit-signature-verification/signing-tags.md,rendering error +translations/es-ES/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md,rendering error translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication.md,rendering error translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication.md,rendering error translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/changing-two-factor-authentication-delivery-methods-for-your-mobile-device.md,rendering error @@ -381,9 +403,14 @@ translations/es-ES/content/authentication/securing-your-account-with-two-factor- translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication.md,rendering error translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/index.md,rendering error translations/es-ES/content/authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials.md,rendering error +translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md,rendering error +translations/es-ES/content/authentication/troubleshooting-commit-signature-verification/index.md,rendering error +translations/es-ES/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md,rendering error translations/es-ES/content/authentication/troubleshooting-ssh/error-ssh-add-illegal-option----k.md,Listed in localization-support#489 translations/es-ES/content/authentication/troubleshooting-ssh/error-ssh-add-illegal-option----k.md,rendering error translations/es-ES/content/authentication/troubleshooting-ssh/error-unknown-key-type.md,rendering error +translations/es-ES/content/authentication/troubleshooting-ssh/index.md,rendering error +translations/es-ES/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md,rendering error translations/es-ES/content/billing/index.md,rendering error translations/es-ES/content/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security.md,Listed in localization-support#489 translations/es-ES/content/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security.md,rendering error @@ -391,6 +418,9 @@ translations/es-ES/content/billing/managing-billing-for-github-advanced-security translations/es-ES/content/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage.md,rendering error translations/es-ES/content/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise.md,rendering error translations/es-ES/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md,rendering error +translations/es-ES/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md,rendering error +translations/es-ES/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md,rendering error +translations/es-ES/content/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account.md,rendering error translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md,rendering error translations/es-ES/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md,rendering error translations/es-ES/content/billing/managing-your-license-for-github-enterprise/about-licenses-for-github-enterprise.md,rendering error @@ -501,7 +531,6 @@ translations/es-ES/content/codespaces/customizing-your-codespace/setting-your-de translations/es-ES/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md,rendering error translations/es-ES/content/codespaces/developing-in-codespaces/codespaces-lifecycle.md,Listed in localization-support#489 translations/es-ES/content/codespaces/developing-in-codespaces/codespaces-lifecycle.md,rendering error -translations/es-ES/content/codespaces/developing-in-codespaces/connecting-to-a-private-network.md,rendering error translations/es-ES/content/codespaces/developing-in-codespaces/creating-a-codespace.md,Listed in localization-support#489 translations/es-ES/content/codespaces/developing-in-codespaces/creating-a-codespace.md,rendering error translations/es-ES/content/codespaces/developing-in-codespaces/deleting-a-codespace.md,Listed in localization-support#489 @@ -563,6 +592,7 @@ translations/es-ES/content/developers/apps/building-github-apps/creating-a-githu translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md,rendering error translations/es-ES/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md,rendering error translations/es-ES/content/developers/apps/building-github-apps/managing-allowed-ip-addresses-for-a-github-app.md,rendering error +translations/es-ES/content/developers/apps/building-github-apps/rate-limits-for-github-apps.md,rendering error translations/es-ES/content/developers/apps/building-github-apps/refreshing-user-to-server-access-tokens.md,rendering error translations/es-ES/content/developers/apps/building-oauth-apps/authorizing-oauth-apps.md,rendering error translations/es-ES/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md,rendering error @@ -570,6 +600,7 @@ translations/es-ES/content/developers/apps/getting-started-with-apps/about-apps. translations/es-ES/content/developers/apps/guides/using-content-attachments.md,rendering error translations/es-ES/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md,rendering error translations/es-ES/content/developers/github-marketplace/creating-apps-for-github-marketplace/requirements-for-listing-an-app.md,rendering error +translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md,rendering error translations/es-ES/content/developers/github-marketplace/listing-an-app-on-github-marketplace/writing-a-listing-description-for-your-app.md,rendering error translations/es-ES/content/developers/github-marketplace/selling-your-app-on-github-marketplace/pricing-plans-for-github-marketplace-apps.md,rendering error translations/es-ES/content/developers/github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api.md,rendering error @@ -577,12 +608,14 @@ translations/es-ES/content/developers/overview/managing-deploy-keys.md,rendering translations/es-ES/content/developers/webhooks-and-events/events/github-event-types.md,rendering error translations/es-ES/content/developers/webhooks-and-events/events/issue-event-types.md,Listed in localization-support#489 translations/es-ES/content/developers/webhooks-and-events/events/issue-event-types.md,rendering error +translations/es-ES/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md,rendering error translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md,rendering error translations/es-ES/content/discussions/collaborating-with-your-community-using-discussions/about-discussions.md,rendering error translations/es-ES/content/discussions/guides/best-practices-for-community-conversations-on-github.md,Listed in localization-support#489 translations/es-ES/content/discussions/guides/best-practices-for-community-conversations-on-github.md,rendering error translations/es-ES/content/discussions/index.md,Listed in localization-support#489 translations/es-ES/content/discussions/index.md,rendering error +translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md,rendering error translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md,rendering error translations/es-ES/content/education/guides.md,Listed in localization-support#489 translations/es-ES/content/education/guides.md,rendering error @@ -667,21 +700,39 @@ translations/es-ES/content/github/copilot/github-copilot-telemetry-terms.md,rend translations/es-ES/content/github/copilot/index.md,Listed in localization-support#489 translations/es-ES/content/github/copilot/index.md,rendering error translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-github-marketplace.md,rendering error +translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md,rendering error translations/es-ES/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md,rendering error translations/es-ES/content/github/extending-github/about-webhooks.md,rendering error translations/es-ES/content/github/extending-github/getting-started-with-the-api.md,rendering error +translations/es-ES/content/github/extending-github/git-automation-with-oauth-tokens.md,rendering error +translations/es-ES/content/github/extending-github/index.md,rendering error translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md,rendering error +translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md,rendering error +translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md,rendering error +translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md,rendering error +translations/es-ES/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md,rendering error +translations/es-ES/content/github/importing-your-projects-to-github/index.md,rendering error translations/es-ES/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md,rendering error translations/es-ES/content/github/index.md,Listed in localization-support#489 translations/es-ES/content/github/index.md,rendering error translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md,Listed in localization-support#489 translations/es-ES/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md,rendering error +translations/es-ES/content/github/site-policy/dmca-takedown-policy.md,rendering error translations/es-ES/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md,Listed in localization-support#489 translations/es-ES/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md,rendering error +translations/es-ES/content/github/site-policy/github-community-guidelines.md,rendering error translations/es-ES/content/github/site-policy/github-data-protection-agreement.md,rendering error +translations/es-ES/content/github/site-policy/github-logo-policy.md,rendering error +translations/es-ES/content/github/site-policy/github-privacy-statement.md,rendering error +translations/es-ES/content/github/site-policy/github-subprocessors-and-cookies.md,rendering error translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md,Listed in localization-support#489 translations/es-ES/content/github/site-policy/github-terms-for-additional-products-and-features.md,rendering error translations/es-ES/content/github/site-policy/github-terms-of-service.md,rendering error +translations/es-ES/content/github/site-policy/github-username-policy.md,rendering error +translations/es-ES/content/github/site-policy/global-privacy-practices.md,rendering error +translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md,rendering error +translations/es-ES/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md,rendering error +translations/es-ES/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md,rendering error translations/es-ES/content/github/site-policy/index.md,Listed in localization-support#489 translations/es-ES/content/github/site-policy/index.md,rendering error translations/es-ES/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md,rendering error @@ -691,12 +742,17 @@ translations/es-ES/content/github/working-with-github-support/github-enterprise- translations/es-ES/content/github/working-with-github-support/github-enterprise-cloud-support.md,rendering error translations/es-ES/content/github/working-with-github-support/submitting-a-ticket.md,Listed in localization-support#489 translations/es-ES/content/github/working-with-github-support/submitting-a-ticket.md,rendering error +translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md,rendering error translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists.md,rendering error +translations/es-ES/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md,rendering error translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md,Listed in localization-support#489 translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md,rendering error +translations/es-ES/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md,rendering error +translations/es-ES/content/github/writing-on-github/index.md,rendering error translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md,rendering error translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/index.md,rendering error translations/es-ES/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md,rendering error +translations/es-ES/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md,rendering error translations/es-ES/content/graphql/guides/index.md,rendering error translations/es-ES/content/graphql/guides/managing-enterprise-accounts.md,rendering error translations/es-ES/content/graphql/guides/migrating-graphql-global-node-ids.md,rendering error @@ -730,6 +786,8 @@ translations/es-ES/content/organizations/collaborating-with-groups-in-organizati translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md,rendering error translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md,rendering error translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md,rendering error +translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md,rendering error +translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md,rendering error 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,rendering error translations/es-ES/content/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization.md,rendering error translations/es-ES/content/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization.md,Listed in localization-support#489 @@ -782,13 +840,20 @@ translations/es-ES/content/organizations/managing-peoples-access-to-your-organiz translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md,rendering error +translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md,rendering error translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md,rendering error translations/es-ES/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md,rendering error translations/es-ES/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md,rendering error translations/es-ES/content/organizations/organizing-members-into-teams/about-teams.md,rendering error +translations/es-ES/content/organizations/organizing-members-into-teams/creating-a-team.md,rendering error translations/es-ES/content/organizations/organizing-members-into-teams/index.md,Listed in localization-support#489 translations/es-ES/content/organizations/organizing-members-into-teams/index.md,rendering error translations/es-ES/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md,Listed in localization-support#489 @@ -954,6 +1019,7 @@ translations/es-ES/content/pull-requests/index.md,Listed in localization-support translations/es-ES/content/pull-requests/index.md,rendering error translations/es-ES/content/repositories/archiving-a-github-repository/archiving-repositories.md,rendering error translations/es-ES/content/repositories/archiving-a-github-repository/backing-up-a-repository.md,rendering error +translations/es-ES/content/repositories/archiving-a-github-repository/index.md,rendering error translations/es-ES/content/repositories/archiving-a-github-repository/referencing-and-citing-content.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests.md,Listed in localization-support#489 @@ -966,16 +1032,20 @@ translations/es-ES/content/repositories/configuring-branches-and-merges-in-your- translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md,Listed in localization-support#489 translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md,rendering error +translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md,Listed in localization-support#489 translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/index.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md,rendering error +translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md,rendering error translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md,Listed in localization-support#489 translations/es-ES/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md,rendering error translations/es-ES/content/repositories/creating-and-managing-repositories/about-repositories.md,rendering error +translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md,rendering error translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md,Listed in localization-support#489 translations/es-ES/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md,rendering error +translations/es-ES/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md,rendering error translations/es-ES/content/repositories/creating-and-managing-repositories/deleting-a-repository.md,rendering error translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md,Listed in localization-support#489 translations/es-ES/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md,rendering error @@ -987,11 +1057,13 @@ translations/es-ES/content/repositories/managing-your-repositorys-settings-and-f translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md,Listed in localization-support#489 translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md,rendering error +translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md,Listed in localization-support#489 translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md,rendering error +translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository.md,rendering error translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md,Listed in localization-support#489 translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md,rendering error @@ -1000,21 +1072,33 @@ translations/es-ES/content/repositories/managing-your-repositorys-settings-and-f translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md,Listed in localization-support#489 translations/es-ES/content/repositories/releasing-projects-on-github/about-releases.md,rendering error translations/es-ES/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md,rendering error +translations/es-ES/content/repositories/releasing-projects-on-github/index.md,rendering error translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md,Listed in localization-support#489 translations/es-ES/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md,rendering error +translations/es-ES/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md,rendering error +translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md,rendering error translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md,Listed in localization-support#489 translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md,rendering error translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md,Listed in localization-support#489 translations/es-ES/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md,rendering error +translations/es-ES/content/repositories/working-with-files/index.md,rendering error translations/es-ES/content/repositories/working-with-files/managing-files/creating-new-files.md,Listed in localization-support#489 translations/es-ES/content/repositories/working-with-files/managing-files/creating-new-files.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-files/editing-files.md,rendering error translations/es-ES/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md,Listed in localization-support#489 translations/es-ES/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md,rendering error translations/es-ES/content/repositories/working-with-files/managing-files/renaming-a-file.md,Listed in localization-support#489 translations/es-ES/content/repositories/working-with-files/managing-files/renaming-a-file.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md,rendering error translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md,Listed in localization-support#489 translations/es-ES/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md,rendering error +translations/es-ES/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md,rendering error +translations/es-ES/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md,rendering error translations/es-ES/content/repositories/working-with-files/using-files/navigating-code-on-github.md,rendering error +translations/es-ES/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md,rendering error translations/es-ES/content/rest/guides/basics-of-authentication.md,rendering error translations/es-ES/content/rest/guides/best-practices-for-integrators.md,rendering error translations/es-ES/content/rest/guides/building-a-ci-server.md,rendering error diff --git a/translations/log/ja-resets.csv b/translations/log/ja-resets.csv index 1436db09ed..0ae055f949 100644 --- a/translations/log/ja-resets.csv +++ b/translations/log/ja-resets.csv @@ -153,11 +153,14 @@ translations/ja-JP/content/actions/using-github-hosted-runners/customizing-githu translations/ja-JP/content/admin/advanced-security/configuring-code-scanning-for-your-appliance.md,rendering error translations/ja-JP/content/admin/advanced-security/configuring-secret-scanning-for-your-appliance.md,rendering error translations/ja-JP/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md,rendering error -translations/ja-JP/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md,Listed in localization-support#489 -translations/ja-JP/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md,parsing error +translations/ja-JP/content/admin/advanced-security/index.md,rendering error translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/allowing-built-in-authentication-for-users-outside-your-identity-provider.md,rendering error +translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md,rendering error +translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md,rendering error +translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md,rendering error translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md,rendering error translations/ja-JP/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md,rendering error +translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md,rendering error translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md,rendering error translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/index.md,rendering error translations/ja-JP/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md,rendering error @@ -165,8 +168,16 @@ translations/ja-JP/content/admin/authentication/managing-identity-and-access-for translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/configuring-tls.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-network-settings/index.md,rendering error translations/ja-JP/content/admin/configuration/configuring-network-settings/network-ports.md,rendering error translations/ja-JP/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md,rendering error @@ -174,31 +185,45 @@ translations/ja-JP/content/admin/configuration/configuring-your-enterprise/confi translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/index.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/initializing-github-ae.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/managing-github-mobile-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md,rendering error +translations/ja-JP/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md,rendering error translations/ja-JP/content/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md,rendering error translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md,rendering error translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md,rendering error translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md,rendering error translations/ja-JP/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md,rendering error +translations/ja-JP/content/admin/enterprise-management/configuring-clustering/about-clustering.md,rendering error translations/ja-JP/content/admin/enterprise-management/configuring-clustering/cluster-network-configuration.md,rendering error translations/ja-JP/content/admin/enterprise-management/configuring-clustering/configuring-high-availability-replication-for-a-cluster.md,rendering error +translations/ja-JP/content/admin/enterprise-management/configuring-clustering/index.md,rendering error translations/ja-JP/content/admin/enterprise-management/configuring-clustering/monitoring-cluster-nodes.md,Listed in localization-support#489 translations/ja-JP/content/admin/enterprise-management/configuring-clustering/monitoring-cluster-nodes.md,parsing error translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/about-high-availability-configuration.md,rendering error translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/creating-a-high-availability-replica.md,rendering error +translations/ja-JP/content/admin/enterprise-management/configuring-high-availability/index.md,rendering error +translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md,rendering error +translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/index.md,rendering error +translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md,rendering error +translations/ja-JP/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md,rendering error translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-cpu-or-memory-resources.md,rendering error translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-storage-capacity.md,rendering error +translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md,rendering error +translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md,rendering error translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md,rendering error translations/ja-JP/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md,rendering error translations/ja-JP/content/admin/enterprise-support/overview/about-github-enterprise-support.md,rendering error translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md,rendering error translations/ja-JP/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise.md,rendering error translations/ja-JP/content/admin/enterprise-support/overview/about-support-for-advanced-security.md,rendering error +translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/index.md,rendering error translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/preparing-to-submit-a-ticket.md,rendering error translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md,rendering error translations/ja-JP/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md,rendering error @@ -227,8 +252,17 @@ translations/ja-JP/content/admin/github-actions/managing-access-to-actions-from- translations/ja-JP/content/admin/github-actions/using-github-actions-in-github-ae/index.md,rendering error translations/ja-JP/content/admin/github-actions/using-github-actions-in-github-ae/using-actions-in-github-ae.md,rendering error translations/ja-JP/content/admin/guides.md,rendering error +translations/ja-JP/content/admin/installation/index.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md,rendering error translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md,rendering error translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md,rendering error +translations/ja-JP/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md,rendering error +translations/ja-JP/content/admin/overview/about-enterprise-accounts.md,rendering error +translations/ja-JP/content/admin/overview/about-the-github-enterprise-api.md,rendering error translations/ja-JP/content/admin/overview/about-upgrades-to-new-releases.md,rendering error translations/ja-JP/content/admin/overview/system-overview.md,rendering error translations/ja-JP/content/admin/packages/enabling-github-packages-with-aws.md,rendering error @@ -237,30 +271,62 @@ translations/ja-JP/content/admin/packages/enabling-github-packages-with-minio.md translations/ja-JP/content/admin/packages/getting-started-with-github-packages-for-your-enterprise.md,rendering error translations/ja-JP/content/admin/packages/quickstart-for-configuring-your-minio-storage-bucket-for-github-packages.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-advanced-security-in-your-enterprise.md,rendering error +translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md,rendering error +translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md,rendering error +translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md,rendering error +translations/ja-JP/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment.md,Listed in localization-support#489 translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md,rendering error translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md,Listed in localization-support#489 translations/ja-JP/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md,rendering error +translations/ja-JP/content/admin/user-management/index.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/creating-teams.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/index.md,rendering error +translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md,rendering error +translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/removing-organizations-from-your-enterprise.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md,rendering error translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md,rendering error translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/index.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md,rendering error translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md,rendering error +translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md,rendering error translations/ja-JP/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md,rendering error translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/about-migrations.md,rendering error translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-githubcom.md,rendering error translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md,rendering error translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md,rendering error translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md,rendering error +translations/ja-JP/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md,rendering error translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md,rendering error +translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md,rendering error +translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md,rendering error translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/index.md,rendering error +translations/ja-JP/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md,rendering error +translations/ja-JP/content/authentication/connecting-to-github-with-ssh/about-ssh.md,rendering error translations/ja-JP/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md,rendering error +translations/ja-JP/content/authentication/connecting-to-github-with-ssh/index.md,rendering error +translations/ja-JP/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md,rendering error translations/ja-JP/content/authentication/index.md,rendering error translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-anonymized-urls.md,rendering error translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md,rendering error @@ -277,26 +343,60 @@ translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/r translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys.md,rendering error translations/ja-JP/content/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials.md,rendering error translations/ja-JP/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md,rendering error +translations/ja-JP/content/authentication/managing-commit-signature-verification/index.md,rendering error translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-commits.md,rendering error +translations/ja-JP/content/authentication/managing-commit-signature-verification/signing-tags.md,rendering error +translations/ja-JP/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/changing-two-factor-authentication-delivery-methods-for-your-mobile-device.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication-recovery-methods.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/index.md,rendering error translations/ja-JP/content/authentication/securing-your-account-with-two-factor-authentication-2fa/recovering-your-account-if-you-lose-your-2fa-credentials.md,rendering error +translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md,rendering error +translations/ja-JP/content/authentication/troubleshooting-commit-signature-verification/index.md,rendering error +translations/ja-JP/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md,rendering error translations/ja-JP/content/authentication/troubleshooting-ssh/error-permission-denied-publickey.md,Listed in localization-support#489 translations/ja-JP/content/authentication/troubleshooting-ssh/error-permission-denied-publickey.md,rendering error translations/ja-JP/content/authentication/troubleshooting-ssh/error-unknown-key-type.md,rendering error +translations/ja-JP/content/authentication/troubleshooting-ssh/index.md,rendering error +translations/ja-JP/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md,rendering error translations/ja-JP/content/billing/index.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/index.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md,rendering error translations/ja-JP/content/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security.md,rendering error translations/ja-JP/content/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage.md,Listed in localization-support#489 translations/ja-JP/content/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage.md,parsing error translations/ja-JP/content/billing/managing-billing-for-github-codespaces/managing-spending-limits-for-codespaces.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/index.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error translations/ja-JP/content/billing/managing-billing-for-github-packages/about-billing-for-github-packages.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md,rendering error translations/ja-JP/content/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/index.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md,rendering error +translations/ja-JP/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md,rendering error translations/ja-JP/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md,rendering error translations/ja-JP/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md,rendering error translations/ja-JP/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/index.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md,rendering error +translations/ja-JP/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md,rendering error +translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md,rendering error +translations/ja-JP/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md,rendering error translations/ja-JP/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md,rendering error translations/ja-JP/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning.md,rendering error translations/ja-JP/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md,rendering error @@ -344,6 +444,7 @@ translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerab translations/ja-JP/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/viewing-and-updating-vulnerable-dependencies-in-your-repository.md,rendering error translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md,Listed in localization-support#489 translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md,rendering error +translations/ja-JP/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md,rendering error translations/ja-JP/content/codespaces/codespaces-reference/disaster-recovery-for-codespaces.md,rendering error translations/ja-JP/content/codespaces/customizing-your-codespace/changing-the-machine-type-for-your-codespace.md,rendering error translations/ja-JP/content/codespaces/customizing-your-codespace/index.md,rendering error @@ -352,7 +453,6 @@ translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-de translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-default-region-for-codespaces.md,rendering error translations/ja-JP/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md,rendering error translations/ja-JP/content/codespaces/developing-in-codespaces/codespaces-lifecycle.md,rendering error -translations/ja-JP/content/codespaces/developing-in-codespaces/connecting-to-a-private-network.md,rendering error translations/ja-JP/content/codespaces/developing-in-codespaces/creating-a-codespace.md,rendering error translations/ja-JP/content/codespaces/developing-in-codespaces/deleting-a-codespace.md,rendering error translations/ja-JP/content/codespaces/developing-in-codespaces/developing-in-a-codespace.md,rendering error @@ -375,6 +475,7 @@ translations/ja-JP/content/codespaces/setting-up-your-project-for-codespaces/set translations/ja-JP/content/communities/documenting-your-project-with-wikis/about-wikis.md,rendering error translations/ja-JP/content/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam.md,rendering error translations/ja-JP/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md,rendering error +translations/ja-JP/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md,rendering error translations/ja-JP/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md,Listed in localization-support#489 translations/ja-JP/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md,rendering error translations/ja-JP/content/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors.md,rendering error @@ -389,6 +490,7 @@ translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/ins translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/setting-up-github-desktop.md,rendering error translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop.md,rendering error translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/getting-started-with-github-desktop.md,rendering error +translations/ja-JP/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md,rendering error translations/ja-JP/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md,rendering error translations/ja-JP/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md,rendering error translations/ja-JP/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md,rendering error @@ -406,6 +508,7 @@ translations/ja-JP/content/developers/apps/managing-github-apps/making-a-github- translations/ja-JP/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md,rendering error translations/ja-JP/content/developers/github-marketplace/github-marketplace-overview/index.md,rendering error translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/pricing-plans-for-github-marketplace-apps.md,rendering error +translations/ja-JP/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md,rendering error translations/ja-JP/content/developers/github-marketplace/using-the-github-marketplace-api-in-your-app/handling-new-purchases-and-free-trials.md,rendering error translations/ja-JP/content/developers/overview/managing-deploy-keys.md,rendering error translations/ja-JP/content/developers/overview/secret-scanning-partner-program.md,rendering error @@ -415,6 +518,8 @@ translations/ja-JP/content/developers/webhooks-and-events/webhooks/webhook-event translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md,rendering error translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/index.md,rendering error translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md,rendering error +translations/ja-JP/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,rendering error +translations/ja-JP/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md,rendering error translations/ja-JP/content/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide/about-using-makecode-arcade-with-github-classroom.md,rendering error translations/ja-JP/content/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide/integrate-github-classroom-with-an-ide.md,rendering error translations/ja-JP/content/education/manage-coursework-with-github-classroom/learn-with-github-classroom/view-autograding-results.md,rendering error @@ -434,13 +539,13 @@ translations/ja-JP/content/get-started/getting-started-with-git/caching-your-git translations/ja-JP/content/get-started/getting-started-with-git/configuring-git-to-handle-line-endings.md,rendering error translations/ja-JP/content/get-started/getting-started-with-git/git-workflows.md,rendering error translations/ja-JP/content/get-started/getting-started-with-git/ignoring-files.md,rendering error -translations/ja-JP/content/get-started/getting-started-with-git/index.md,rendering error translations/ja-JP/content/get-started/getting-started-with-git/managing-remote-repositories.md,rendering error translations/ja-JP/content/get-started/getting-started-with-git/updating-credentials-from-the-macos-keychain.md,rendering error translations/ja-JP/content/get-started/index.md,rendering error translations/ja-JP/content/get-started/learning-about-github/about-github-advanced-security.md,Listed in localization-support#489 translations/ja-JP/content/get-started/learning-about-github/about-github-advanced-security.md,parsing error translations/ja-JP/content/get-started/learning-about-github/access-permissions-on-github.md,rendering error +translations/ja-JP/content/get-started/learning-about-github/githubs-products.md,rendering error translations/ja-JP/content/get-started/learning-about-github/index.md,rendering error translations/ja-JP/content/get-started/learning-about-github/types-of-github-accounts.md,rendering error translations/ja-JP/content/get-started/onboarding/getting-started-with-github-enterprise-cloud.md,rendering error @@ -456,6 +561,7 @@ translations/ja-JP/content/get-started/signing-up-for-github/index.md,rendering translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md,rendering error translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md,rendering error translations/ja-JP/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server.md,rendering error +translations/ja-JP/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md,rendering error translations/ja-JP/content/get-started/signing-up-for-github/verifying-your-email-address.md,rendering error translations/ja-JP/content/get-started/using-git/about-git-rebase.md,rendering error translations/ja-JP/content/get-started/using-git/about-git-subtree-merges.md,rendering error @@ -471,48 +577,121 @@ translations/ja-JP/content/get-started/using-github/keyboard-shortcuts.md,render translations/ja-JP/content/get-started/using-github/supported-browsers.md,rendering error translations/ja-JP/content/github-cli/github-cli/creating-github-cli-extensions.md,rendering error translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/about-github-marketplace.md,rendering error +translations/ja-JP/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md,rendering error +translations/ja-JP/content/github/extending-github/about-webhooks.md,rendering error +translations/ja-JP/content/github/extending-github/git-automation-with-oauth-tokens.md,rendering error +translations/ja-JP/content/github/extending-github/index.md,rendering error translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md,rendering error +translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md,rendering error +translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md,rendering error +translations/ja-JP/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md,rendering error +translations/ja-JP/content/github/importing-your-projects-to-github/index.md,rendering error +translations/ja-JP/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md,rendering error translations/ja-JP/content/github/index.md,rendering error +translations/ja-JP/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md,rendering error +translations/ja-JP/content/github/site-policy/dmca-takedown-policy.md,rendering error +translations/ja-JP/content/github/site-policy/github-community-guidelines.md,rendering error +translations/ja-JP/content/github/site-policy/github-logo-policy.md,rendering error +translations/ja-JP/content/github/site-policy/github-privacy-statement.md,rendering error +translations/ja-JP/content/github/site-policy/github-subprocessors-and-cookies.md,rendering error translations/ja-JP/content/github/site-policy/github-terms-for-additional-products-and-features.md,rendering error translations/ja-JP/content/github/site-policy/github-terms-of-service.md,rendering error +translations/ja-JP/content/github/site-policy/github-username-policy.md,rendering error +translations/ja-JP/content/github/site-policy/global-privacy-practices.md,rendering error +translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md,rendering error +translations/ja-JP/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md,rendering error +translations/ja-JP/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md,rendering error +translations/ja-JP/content/github/site-policy/index.md,rendering error translations/ja-JP/content/github/understanding-how-github-uses-and-protects-your-data/managing-data-use-settings-for-your-private-repository.md,rendering error translations/ja-JP/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md,rendering error translations/ja-JP/content/github/working-with-github-support/github-enterprise-cloud-support.md,rendering error translations/ja-JP/content/github/working-with-github-support/submitting-a-ticket.md,rendering error translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md,rendering error translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists.md,rendering error +translations/ja-JP/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md,rendering error translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md,rendering error +translations/ja-JP/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md,rendering error +translations/ja-JP/content/github/writing-on-github/index.md,rendering error translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md,rendering error translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/index.md,rendering error translations/ja-JP/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md,rendering error +translations/ja-JP/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md,rendering error translations/ja-JP/content/graphql/guides/index.md,rendering error translations/ja-JP/content/graphql/guides/managing-enterprise-accounts.md,rendering error translations/ja-JP/content/graphql/guides/migrating-graphql-global-node-ids.md,rendering error translations/ja-JP/content/graphql/index.md,rendering error +translations/ja-JP/content/graphql/reference/mutations.md,rendering error translations/ja-JP/content/issues/guides.md,rendering error translations/ja-JP/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md,rendering error translations/ja-JP/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md,rendering error translations/ja-JP/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md,rendering error translations/ja-JP/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md,rendering error translations/ja-JP/content/issues/using-labels-and-milestones-to-track-work/about-milestones.md,rendering error +translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md,rendering error +translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md,rendering error +translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md,rendering error +translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/index.md,rendering error translations/ja-JP/content/organizations/collaborating-with-your-team/about-team-discussions.md,Listed in localization-support#489 translations/ja-JP/content/organizations/collaborating-with-your-team/about-team-discussions.md,rendering error +translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md,rendering error +translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md,rendering error +translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md,rendering error +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,rendering error +translations/ja-JP/content/organizations/index.md,rendering error +translations/ja-JP/content/organizations/keeping-your-organization-secure/index.md,rendering error translations/ja-JP/content/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md,rendering error translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,Listed in localization-support#489 translations/ja-JP/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/index.md,rendering error +translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md,rendering error +translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md,rendering error translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md,rendering error +translations/ja-JP/content/organizations/managing-git-access-to-your-organizations-repositories/index.md,rendering error +translations/ja-JP/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md,rendering error +translations/ja-JP/content/organizations/managing-membership-in-your-organization/index.md,rendering error +translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-organization-settings/renaming-an-organization.md,rendering error translations/ja-JP/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md,rendering error +translations/ja-JP/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md,rendering error +translations/ja-JP/content/organizations/managing-organization-settings/transferring-organization-ownership.md,rendering error translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md,rendering error +translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md,rendering error translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md,rendering error translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md,rendering error +translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md,rendering error +translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md,rendering error +translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/index.md,rendering error +translations/ja-JP/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md,rendering error translations/ja-JP/content/organizations/organizing-members-into-teams/about-teams.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/creating-a-team.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/index.md,rendering error translations/ja-JP/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md,rendering error +translations/ja-JP/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md,rendering error translations/ja-JP/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md,rendering error +translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md,rendering error +translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md,rendering error +translations/ja-JP/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md,rendering error translations/ja-JP/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md,rendering error translations/ja-JP/content/packages/learn-github-packages/deleting-a-package.md,rendering error translations/ja-JP/content/packages/learn-github-packages/installing-a-package.md,rendering error @@ -525,64 +704,114 @@ translations/ja-JP/content/packages/working-with-a-github-packages-registry/work translations/ja-JP/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md,rendering error translations/ja-JP/content/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry.md,rendering error translations/ja-JP/content/packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry.md,rendering error +translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md,rendering error +translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md,rendering error +translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md,rendering error +translations/ja-JP/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md,rendering error translations/ja-JP/content/pages/getting-started-with-github-pages/about-github-pages.md,rendering error translations/ja-JP/content/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site.md,rendering error +translations/ja-JP/content/pages/index.md,rendering error translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-github-pages-and-jekyll.md,rendering error translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md,rendering error +translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md,rendering error +translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md,rendering error translations/ja-JP/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md,rendering error +translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md,rendering error +translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md,rendering error +translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md,rendering error +translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/index.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/committing-changes-to-a-pull-request-branch-created-from-a-fork.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md,rendering error +translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md,rendering error translations/ja-JP/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md,rendering error +translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md,rendering error translations/ja-JP/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization.md,rendering error +translations/ja-JP/content/pull-requests/committing-changes-to-your-project/index.md,rendering error translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/commit-exists-on-github-but-not-in-my-local-clone.md,rendering error +translations/ja-JP/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md,rendering error translations/ja-JP/content/repositories/archiving-a-github-repository/archiving-repositories.md,rendering error translations/ja-JP/content/repositories/archiving-a-github-repository/backing-up-a-repository.md,rendering error +translations/ja-JP/content/repositories/archiving-a-github-repository/index.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md,rendering error +translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md,rendering error +translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md,rendering error translations/ja-JP/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md,rendering error translations/ja-JP/content/repositories/creating-and-managing-repositories/about-repositories.md,rendering error +translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md,rendering error +translations/ja-JP/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md,rendering error translations/ja-JP/content/repositories/creating-and-managing-repositories/deleting-a-repository.md,rendering error +translations/ja-JP/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md,rendering error translations/ja-JP/content/repositories/creating-and-managing-repositories/renaming-a-repository.md,rendering error translations/ja-JP/content/repositories/creating-and-managing-repositories/transferring-a-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md,rendering error +translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md,rendering error +translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-project-boards-in-a-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md,rendering error +translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md,rendering error translations/ja-JP/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md,rendering error +translations/ja-JP/content/repositories/releasing-projects-on-github/about-releases.md,rendering error +translations/ja-JP/content/repositories/releasing-projects-on-github/index.md,rendering error +translations/ja-JP/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md,rendering error +translations/ja-JP/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md,rendering error +translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md,rendering error +translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md,rendering error translations/ja-JP/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md,rendering error translations/ja-JP/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md,rendering error +translations/ja-JP/content/repositories/working-with-files/managing-files/editing-files.md,rendering error translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md,rendering error +translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md,rendering error translations/ja-JP/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md,rendering error +translations/ja-JP/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md,rendering error +translations/ja-JP/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md,rendering error +translations/ja-JP/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md,rendering error +translations/ja-JP/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md,rendering error translations/ja-JP/content/repositories/working-with-files/using-files/navigating-code-on-github.md,rendering error +translations/ja-JP/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md,rendering error translations/ja-JP/content/rest/guides/discovering-resources-for-a-user.md,rendering error translations/ja-JP/content/rest/guides/getting-started-with-the-rest-api.md,rendering error +translations/ja-JP/content/rest/guides/index.md,rendering error translations/ja-JP/content/rest/guides/traversing-with-pagination.md,rendering error +translations/ja-JP/content/rest/guides/working-with-comments.md,rendering error translations/ja-JP/content/rest/index.md,rendering error translations/ja-JP/content/rest/overview/api-previews.md,rendering error translations/ja-JP/content/rest/reference/actions.md,rendering error translations/ja-JP/content/rest/reference/activity.md,rendering error +translations/ja-JP/content/rest/reference/branches.md,rendering error +translations/ja-JP/content/rest/reference/collaborators.md,rendering error +translations/ja-JP/content/rest/reference/commits.md,rendering error +translations/ja-JP/content/rest/reference/deployments.md,rendering error translations/ja-JP/content/rest/reference/enterprise-admin.md,rendering error +translations/ja-JP/content/rest/reference/index.md,rendering error translations/ja-JP/content/rest/reference/issues.md,rendering error +translations/ja-JP/content/rest/reference/packages.md,rendering error +translations/ja-JP/content/rest/reference/pages.md,rendering error translations/ja-JP/content/rest/reference/permissions-required-for-github-apps.md,rendering error +translations/ja-JP/content/rest/reference/pulls.md,rendering error +translations/ja-JP/content/rest/reference/releases.md,rendering error translations/ja-JP/content/rest/reference/repos.md,rendering error +translations/ja-JP/content/rest/reference/repository-metrics.md,rendering error translations/ja-JP/content/rest/reference/search.md,rendering error translations/ja-JP/content/rest/reference/secret-scanning.md,rendering error translations/ja-JP/content/rest/reference/teams.md,rendering error +translations/ja-JP/content/rest/reference/webhooks.md,rendering error translations/ja-JP/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md,rendering error translations/ja-JP/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md,rendering error translations/ja-JP/content/search-github/searching-on-github/searching-commits.md,rendering error @@ -605,6 +834,7 @@ translations/ja-JP/data/release-notes/enterprise-server/3-1/10.yml,broken liquid translations/ja-JP/data/release-notes/enterprise-server/3-1/11.yml,broken liquid tags translations/ja-JP/data/release-notes/enterprise-server/3-1/12.yml,broken liquid tags translations/ja-JP/data/release-notes/enterprise-server/3-1/13.yml,broken liquid tags +translations/ja-JP/data/release-notes/enterprise-server/3-1/14.yml,broken liquid tags translations/ja-JP/data/release-notes/enterprise-server/3-1/2.yml,broken liquid tags translations/ja-JP/data/release-notes/enterprise-server/3-1/3.yml,broken liquid tags translations/ja-JP/data/release-notes/enterprise-server/3-1/4.yml,broken liquid tags @@ -641,7 +871,6 @@ translations/ja-JP/data/reusables/enterprise-accounts/pages-tab.md,broken liquid translations/ja-JP/data/reusables/enterprise_enterprise_support/submit-support-ticket-first-section.md,broken liquid tags translations/ja-JP/data/reusables/enterprise_installation/download-appliance.md,broken liquid tags translations/ja-JP/data/reusables/enterprise_installation/hardware-considerations-all-platforms.md,broken liquid tags -translations/ja-JP/data/reusables/enterprise_installation/hardware-rec-table.md,broken liquid tags translations/ja-JP/data/reusables/enterprise_installation/upgrade-hardware-requirements.md,broken liquid tags translations/ja-JP/data/reusables/enterprise_management_console/advanced-security-license.md,broken liquid tags translations/ja-JP/data/reusables/enterprise_management_console/badge_indicator.md,broken liquid tags diff --git a/translations/log/pt-resets.csv b/translations/log/pt-resets.csv index 1df66ee60a..b1645c8f87 100644 --- a/translations/log/pt-resets.csv +++ b/translations/log/pt-resets.csv @@ -28,6 +28,7 @@ translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-gith translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings.md,rendering error translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md,rendering error translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/permission-levels-for-a-user-account-repository.md,rendering error +translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership.md,rendering error translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/accessing-an-organization.md,rendering error translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/publicizing-or-hiding-organization-membership.md,rendering error translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization.md,rendering error @@ -158,8 +159,12 @@ translations/pt-BR/content/admin/advanced-security/configuring-code-scanning-for translations/pt-BR/content/admin/advanced-security/configuring-secret-scanning-for-your-appliance.md,rendering error translations/pt-BR/content/admin/advanced-security/deploying-github-advanced-security-in-your-enterprise.md,rendering error translations/pt-BR/content/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise.md,rendering error +translations/pt-BR/content/admin/advanced-security/index.md,rendering error translations/pt-BR/content/admin/advanced-security/overview-of-github-advanced-security-deployment.md,rendering error translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/allowing-built-in-authentication-for-users-outside-your-identity-provider.md,rendering error +translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md,rendering error +translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md,rendering error +translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md,rendering error translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md,rendering error translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md,rendering error translations/pt-BR/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md,rendering error @@ -170,29 +175,58 @@ translations/pt-BR/content/admin/authentication/managing-identity-and-access-for translations/pt-BR/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md,rendering error translations/pt-BR/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md,rendering error translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md,rendering error +translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md,rendering error translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-tls.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-network-settings/index.md,rendering error translations/pt-BR/content/admin/configuration/configuring-network-settings/network-ports.md,rendering error translations/pt-BR/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-custom-footers.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-rate-limits.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/index.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/managing-github-mobile-for-your-enterprise.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise.md,rendering error translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md,rendering error +translations/pt-BR/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md,rendering error translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md,rendering error translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md,rendering error translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md,rendering error translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md,rendering error translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md,rendering error +translations/pt-BR/content/admin/enterprise-management/configuring-clustering/about-clustering.md,rendering error translations/pt-BR/content/admin/enterprise-management/configuring-clustering/cluster-network-configuration.md,rendering error +translations/pt-BR/content/admin/enterprise-management/configuring-clustering/index.md,rendering error translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/about-high-availability-configuration.md,rendering error translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/creating-a-high-availability-replica.md,rendering error +translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/index.md,rendering error +translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md,rendering error +translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/index.md,rendering error +translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md,rendering error +translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md,rendering error translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-cpu-or-memory-resources.md,rendering error translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/increasing-storage-capacity.md,rendering error +translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md,rendering error +translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md,rendering error translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md,rendering error translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md,rendering error translations/pt-BR/content/admin/enterprise-support/overview/about-github-enterprise-support.md,rendering error +translations/pt-BR/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md,rendering error +translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/index.md,rendering error +translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md,rendering error +translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md,rendering error translations/pt-BR/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/index.md,rendering error translations/pt-BR/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md,rendering error translations/pt-BR/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-ae.md,rendering error @@ -212,26 +246,64 @@ translations/pt-BR/content/admin/github-actions/using-github-actions-in-github-a translations/pt-BR/content/admin/github-actions/using-github-actions-in-github-ae/using-actions-in-github-ae.md,rendering error translations/pt-BR/content/admin/guides.md,rendering error translations/pt-BR/content/admin/index.md,rendering error +translations/pt-BR/content/admin/installation/index.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md,rendering error translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md,rendering error +translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md,rendering error translations/pt-BR/content/admin/overview/about-enterprise-accounts.md,rendering error +translations/pt-BR/content/admin/overview/about-the-github-enterprise-api.md,rendering error translations/pt-BR/content/admin/overview/about-upgrades-to-new-releases.md,rendering error translations/pt-BR/content/admin/packages/getting-started-with-github-packages-for-your-enterprise.md,rendering error translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-advanced-security-in-your-enterprise.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md,rendering error translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md,rendering error translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md,rendering error translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md,rendering error +translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md,rendering error +translations/pt-BR/content/admin/user-management/index.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/creating-teams.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/index.md,rendering error +translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md,rendering error +translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/removing-organizations-from-your-enterprise.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/streaming-the-audit-logs-for-organizations-in-your-enterprise-account.md,rendering error translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md,rendering error translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/index.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md,rendering error translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md,rendering error +translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md,rendering error translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md,rendering error translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-githubcom.md,rendering error +translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md,rendering error +translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md,rendering error +translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md,rendering error +translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md,rendering error translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md,rendering error translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md,rendering error +translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md,rendering error +translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md,rendering error +translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md,rendering error translations/pt-BR/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md,rendering error translations/pt-BR/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md,rendering error translations/pt-BR/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md,rendering error @@ -275,12 +347,39 @@ translations/pt-BR/content/authentication/troubleshooting-ssh/error-unknown-key- translations/pt-BR/content/authentication/troubleshooting-ssh/index.md,rendering error translations/pt-BR/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md,rendering error translations/pt-BR/content/billing/index.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/index.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md,rendering error translations/pt-BR/content/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/index.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-your-github-account/index.md,rendering error translations/pt-BR/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md,rendering error +translations/pt-BR/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md,rendering error translations/pt-BR/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md,rendering error translations/pt-BR/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/index.md,rendering error translations/pt-BR/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/index.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md,rendering error +translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md,rendering error +translations/pt-BR/content/billing/managing-your-license-for-github-enterprise/index.md,rendering error +translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md,rendering error translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/creating-and-paying-for-an-organization-on-behalf-of-a-client.md,rendering error +translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md,rendering error translations/pt-BR/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md,rendering error translations/pt-BR/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md,rendering error translations/pt-BR/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-the-codeql-workflow-for-compiled-languages.md,rendering error @@ -317,6 +416,7 @@ translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerab translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/troubleshooting-the-detection-of-vulnerable-dependencies.md,rendering error translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/viewing-and-updating-vulnerable-dependencies-in-your-repository.md,rendering error translations/pt-BR/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md,rendering error +translations/pt-BR/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md,rendering error translations/pt-BR/content/codespaces/codespaces-reference/disaster-recovery-for-codespaces.md,rendering error translations/pt-BR/content/codespaces/customizing-your-codespace/changing-the-machine-type-for-your-codespace.md,rendering error translations/pt-BR/content/codespaces/customizing-your-codespace/index.md,rendering error @@ -349,10 +449,14 @@ translations/pt-BR/content/codespaces/setting-up-your-project-for-codespaces/set translations/pt-BR/content/codespaces/setting-up-your-project-for-codespaces/setting-up-your-python-project-for-codespaces.md,rendering error translations/pt-BR/content/communities/documenting-your-project-with-wikis/about-wikis.md,rendering error translations/pt-BR/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md,rendering error +translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization.md,rendering error +translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository.md,rendering error +translations/pt-BR/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md,rendering error translations/pt-BR/content/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema.md,rendering error translations/pt-BR/content/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/managing-branches.md,rendering error translations/pt-BR/content/desktop/contributing-and-collaborating-using-github-desktop/working-with-your-remote-repository-on-github-or-github-enterprise/creating-an-issue-or-pull-request.md,rendering error translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/creating-your-first-repository-using-github-desktop.md,rendering error +translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md,rendering error translations/pt-BR/content/developers/apps/building-github-apps/authenticating-with-github-apps.md,rendering error translations/pt-BR/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md,rendering error translations/pt-BR/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md,rendering error @@ -363,6 +467,8 @@ translations/pt-BR/content/developers/apps/building-github-apps/refreshing-user- translations/pt-BR/content/developers/apps/building-oauth-apps/authorizing-oauth-apps.md,rendering error translations/pt-BR/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md,rendering error translations/pt-BR/content/developers/apps/getting-started-with-apps/about-apps.md,rendering error +translations/pt-BR/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md,rendering error +translations/pt-BR/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md,rendering error translations/pt-BR/content/developers/apps/guides/index.md,rendering error translations/pt-BR/content/developers/apps/guides/using-content-attachments.md,rendering error translations/pt-BR/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md,rendering error @@ -370,6 +476,7 @@ translations/pt-BR/content/developers/github-marketplace/creating-apps-for-githu translations/pt-BR/content/developers/github-marketplace/github-marketplace-overview/about-github-marketplace.md,rendering error translations/pt-BR/content/developers/github-marketplace/listing-an-app-on-github-marketplace/writing-a-listing-description-for-your-app.md,rendering error translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/pricing-plans-for-github-marketplace-apps.md,rendering error +translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md,rendering error translations/pt-BR/content/developers/overview/managing-deploy-keys.md,rendering error translations/pt-BR/content/developers/webhooks-and-events/events/issue-event-types.md,rendering error translations/pt-BR/content/developers/webhooks-and-events/webhooks/securing-your-webhooks.md,rendering error @@ -377,6 +484,8 @@ translations/pt-BR/content/developers/webhooks-and-events/webhooks/webhook-event translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-campus-advisors.md,rendering error translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-at-your-educational-institution/about-github-campus-program.md,rendering error translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md,rendering error +translations/pt-BR/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,rendering error +translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md,rendering error translations/pt-BR/content/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide/integrate-github-classroom-with-an-ide.md,rendering error translations/pt-BR/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/connect-a-learning-management-system-to-github-classroom.md,rendering error translations/pt-BR/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/create-a-group-assignment.md,rendering error @@ -400,6 +509,7 @@ translations/pt-BR/content/get-started/getting-started-with-git/updating-credent translations/pt-BR/content/get-started/index.md,rendering error translations/pt-BR/content/get-started/learning-about-github/about-github-advanced-security.md,rendering error translations/pt-BR/content/get-started/learning-about-github/access-permissions-on-github.md,rendering error +translations/pt-BR/content/get-started/learning-about-github/githubs-products.md,rendering error translations/pt-BR/content/get-started/learning-about-github/index.md,rendering error translations/pt-BR/content/get-started/learning-about-github/types-of-github-accounts.md,rendering error translations/pt-BR/content/get-started/onboarding/getting-started-with-github-ae.md,rendering error @@ -421,6 +531,7 @@ translations/pt-BR/content/get-started/signing-up-for-github/index.md,rendering translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md,rendering error translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md,rendering error translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server.md,rendering error +translations/pt-BR/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md,rendering error translations/pt-BR/content/get-started/signing-up-for-github/verifying-your-email-address.md,rendering error translations/pt-BR/content/get-started/using-git/about-git-rebase.md,rendering error translations/pt-BR/content/get-started/using-git/about-git-subtree-merges.md,rendering error @@ -437,45 +548,116 @@ translations/pt-BR/content/get-started/using-github/index.md,rendering error translations/pt-BR/content/get-started/using-github/keyboard-shortcuts.md,rendering error translations/pt-BR/content/get-started/using-github/supported-browsers.md,rendering error translations/pt-BR/content/github-cli/github-cli/creating-github-cli-extensions.md,rendering error +translations/pt-BR/content/github-cli/github-cli/github-cli-reference.md,rendering error translations/pt-BR/content/github/copilot/index.md,rendering error translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/about-integrations.md,rendering error translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md,rendering error translations/pt-BR/content/github/extending-github/about-webhooks.md,rendering error +translations/pt-BR/content/github/extending-github/getting-started-with-the-api.md,rendering error +translations/pt-BR/content/github/extending-github/git-automation-with-oauth-tokens.md,rendering error +translations/pt-BR/content/github/extending-github/index.md,rendering error translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/index.md,rendering error +translations/pt-BR/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md,rendering error translations/pt-BR/content/github/index.md,Listed in localization-support#489 translations/pt-BR/content/github/index.md,rendering error +translations/pt-BR/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md,rendering error +translations/pt-BR/content/github/site-policy/dmca-takedown-policy.md,rendering error +translations/pt-BR/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md,rendering error +translations/pt-BR/content/github/site-policy/github-community-guidelines.md,rendering error +translations/pt-BR/content/github/site-policy/github-logo-policy.md,rendering error +translations/pt-BR/content/github/site-policy/github-privacy-statement.md,rendering error +translations/pt-BR/content/github/site-policy/github-subprocessors-and-cookies.md,rendering error translations/pt-BR/content/github/site-policy/github-terms-for-additional-products-and-features.md,rendering error translations/pt-BR/content/github/site-policy/github-terms-of-service.md,rendering error +translations/pt-BR/content/github/site-policy/github-username-policy.md,rendering error +translations/pt-BR/content/github/site-policy/global-privacy-practices.md,rendering error +translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md,rendering error +translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md,rendering error +translations/pt-BR/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md,rendering error +translations/pt-BR/content/github/site-policy/index.md,rendering error +translations/pt-BR/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md,rendering error +translations/pt-BR/content/github/working-with-github-support/github-enterprise-cloud-support.md,rendering error +translations/pt-BR/content/github/working-with-github-support/submitting-a-ticket.md,rendering error +translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md,rendering error translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/forking-and-cloning-gists.md,rendering error +translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md,rendering error translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md,rendering error +translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md,rendering error translations/pt-BR/content/github/writing-on-github/index.md,rendering error translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md,rendering error translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/index.md,rendering error translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md,rendering error +translations/pt-BR/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md,rendering error translations/pt-BR/content/graphql/guides/index.md,rendering error translations/pt-BR/content/graphql/guides/managing-enterprise-accounts.md,rendering error translations/pt-BR/content/graphql/guides/migrating-graphql-global-node-ids.md,rendering error translations/pt-BR/content/graphql/index.md,rendering error +translations/pt-BR/content/graphql/reference/mutations.md,rendering error translations/pt-BR/content/issues/guides.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/about-task-lists.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/creating-an-issue.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/deleting-an-issue.md,rendering error translations/pt-BR/content/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository.md,rendering error +translations/pt-BR/content/issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/about-projects.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/automating-projects.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/creating-a-project.md,rendering error translations/pt-BR/content/issues/trying-out-the-new-projects-experience/customizing-your-project-views.md,rendering error translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-access-to-projects.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-the-visibility-of-your-projects.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/quickstart.md,rendering error +translations/pt-BR/content/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects.md,rendering error +translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md,rendering error +translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md,rendering error +translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md,rendering error +translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/index.md,rendering error +translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md,rendering error translations/pt-BR/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md,rendering error translations/pt-BR/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md,rendering error translations/pt-BR/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md,rendering error translations/pt-BR/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md,rendering error +translations/pt-BR/content/organizations/index.md,rendering error +translations/pt-BR/content/organizations/keeping-your-organization-secure/index.md,rendering error translations/pt-BR/content/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization.md,rendering error +translations/pt-BR/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md,rendering error translations/pt-BR/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,Listed in localization-support#489 translations/pt-BR/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,parsing error -translations/pt-BR/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/adding-github-app-managers-in-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/removing-github-app-managers-from-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-outside-collaborator-to-an-organization-member.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/index.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md,rendering error +translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization.md,rendering error +translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md,rendering error +translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/index.md,rendering error translations/pt-BR/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md,rendering error +translations/pt-BR/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-membership-in-your-organization/index.md,rendering error translations/pt-BR/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-organization-settings/renaming-an-organization.md,rendering error translations/pt-BR/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md,rendering error +translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md,rendering error +translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md,rendering error +translations/pt-BR/content/organizations/managing-organization-settings/transferring-organization-ownership.md,rendering error translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md,rendering error translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md,rendering error translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md,rendering error @@ -490,10 +672,24 @@ translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-o translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md,rendering error translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md,rendering error +translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md,rendering error +translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md,rendering error +translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/index.md,rendering error +translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md,rendering error translations/pt-BR/content/organizations/organizing-members-into-teams/about-teams.md,rendering error +translations/pt-BR/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md,rendering error +translations/pt-BR/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md,rendering error translations/pt-BR/content/organizations/organizing-members-into-teams/creating-a-team.md,rendering error +translations/pt-BR/content/organizations/organizing-members-into-teams/index.md,rendering error translations/pt-BR/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md,rendering error +translations/pt-BR/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md,rendering error +translations/pt-BR/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md,rendering error translations/pt-BR/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md,rendering error +translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md,rendering error +translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md,rendering error +translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md,rendering error translations/pt-BR/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md,rendering error translations/pt-BR/content/packages/learn-github-packages/introduction-to-github-packages.md,rendering error translations/pt-BR/content/packages/learn-github-packages/publishing-a-package.md,rendering error @@ -506,10 +702,23 @@ translations/pt-BR/content/packages/working-with-a-github-packages-registry/work translations/pt-BR/content/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry.md,Listed in localization-support#489 translations/pt-BR/content/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry.md,rendering error translations/pt-BR/content/packages/working-with-a-github-packages-registry/working-with-the-rubygems-registry.md,rendering error +translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md,rendering error +translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md,rendering error +translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md,rendering error +translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md,rendering error translations/pt-BR/content/pages/getting-started-with-github-pages/about-github-pages.md,rendering error +translations/pt-BR/content/pages/index.md,rendering error +translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md,rendering error +translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md,rendering error +translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md,rendering error +translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md,rendering error +translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md,rendering error +translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md,rendering error +translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/adding-a-pull-request-to-the-merge-queue.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md,rendering error +translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/index.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md,rendering error @@ -518,10 +727,13 @@ translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/propos translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md,rendering error +translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md,rendering error translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md,rendering error +translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md,rendering error translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization.md,rendering error translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors.md,rendering error +translations/pt-BR/content/pull-requests/committing-changes-to-your-project/index.md,rendering error translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/commit-exists-on-github-but-not-in-my-local-clone.md,rendering error translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md,rendering error translations/pt-BR/content/repositories/archiving-a-github-repository/archiving-repositories.md,rendering error @@ -570,22 +782,34 @@ translations/pt-BR/content/repositories/working-with-files/using-files/navigatin translations/pt-BR/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md,rendering error translations/pt-BR/content/rest/guides/discovering-resources-for-a-user.md,rendering error translations/pt-BR/content/rest/guides/getting-started-with-the-rest-api.md,rendering error +translations/pt-BR/content/rest/guides/index.md,rendering error translations/pt-BR/content/rest/guides/traversing-with-pagination.md,rendering error +translations/pt-BR/content/rest/guides/working-with-comments.md,rendering error translations/pt-BR/content/rest/index.md,rendering error translations/pt-BR/content/rest/overview/api-previews.md,rendering error translations/pt-BR/content/rest/reference/actions.md,rendering error translations/pt-BR/content/rest/reference/activity.md,rendering error +translations/pt-BR/content/rest/reference/branches.md,rendering error +translations/pt-BR/content/rest/reference/collaborators.md,rendering error +translations/pt-BR/content/rest/reference/commits.md,rendering error +translations/pt-BR/content/rest/reference/deployments.md,rendering error translations/pt-BR/content/rest/reference/enterprise-admin.md,Listed in localization-support#489 translations/pt-BR/content/rest/reference/enterprise-admin.md,rendering error translations/pt-BR/content/rest/reference/gists.md,Listed in localization-support#489 translations/pt-BR/content/rest/reference/gists.md,rendering error +translations/pt-BR/content/rest/reference/index.md,rendering error translations/pt-BR/content/rest/reference/packages.md,rendering error +translations/pt-BR/content/rest/reference/pages.md,rendering error translations/pt-BR/content/rest/reference/permissions-required-for-github-apps.md,rendering error +translations/pt-BR/content/rest/reference/pulls.md,rendering error +translations/pt-BR/content/rest/reference/releases.md,rendering error translations/pt-BR/content/rest/reference/repos.md,Listed in localization-support#489 translations/pt-BR/content/rest/reference/repos.md,rendering error +translations/pt-BR/content/rest/reference/repository-metrics.md,rendering error translations/pt-BR/content/rest/reference/search.md,rendering error translations/pt-BR/content/rest/reference/secret-scanning.md,rendering error translations/pt-BR/content/rest/reference/teams.md,rendering error +translations/pt-BR/content/rest/reference/webhooks.md,rendering error translations/pt-BR/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md,rendering error translations/pt-BR/content/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment.md,rendering error translations/pt-BR/content/search-github/searching-on-github/searching-commits.md,rendering error diff --git a/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md b/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md index 57084beb98..baf34206bf 100644 --- a/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md +++ b/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md @@ -20,6 +20,12 @@ shortTitle: Merge multiple user accounts {% endtip %} +{% warning %} + +**Warning:** Organization and repository access permissions aren't transferable between accounts. If the account you want to delete has an existing access permission, an organization owner or repository administrator will need to invite the account that you want to keep. + +{% endwarning %} + 1. [Transfer any repositories](/articles/how-to-transfer-a-repository) from the account you want to delete to the account you want to keep. Issues, pull requests, and wikis are transferred as well. Verify the repositories exist on the account you want to keep. 2. [Update the remote URLs](/github/getting-started-with-github/managing-remote-repositories) in any local clones of the repositories that were moved. 3. [Delete the account](/articles/deleting-your-user-account) you no longer want to use. diff --git a/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership.md b/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership.md index 8387970369..47f926a386 100644 --- a/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership.md +++ b/translations/pt-BR/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/about-organization-membership.md @@ -1,6 +1,6 @@ --- -title: Sobre associação à organização -intro: Você pode se tornar um integrante de uma organização para colaborar com colegas de trabalho ou contribuidores de código aberto em muitos repositórios de uma vez. +title: About organization membership +intro: You can become a member of an organization to collaborate with coworkers or open-source contributors across many repositories at once. redirect_from: - /articles/about-organization-membership - /github/setting-up-and-managing-your-github-user-account/about-organization-membership @@ -12,42 +12,41 @@ versions: ghec: '*' topics: - Accounts -shortTitle: Associação à organização +shortTitle: Organization membership --- +An organization owner can invite you to join their organization as a member, billing manager, or owner. An organization owner or member with admin privileges for a repository can invite you to collaborate in one or more repositories as an outside collaborator. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -Um proprietário da organização pode convidar você para ingressar na organização dele como um integrante, gerente de cobrança ou proprietário. Um proprietário da organização ou integrante com privilégios administrativos para um repositório pode convidar você para colaborar em um ou mais repositórios como um colaborador externo. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +You can access organizations you're a member of on your profile page. For more information, see "[Accessing an organization](/articles/accessing-an-organization)." -É possível acessar organizações das quais você é integrante em sua página de perfil. Para obter mais informações, consulte "[Acessar uma organização](/articles/accessing-an-organization)". +When you accept an invitation to join an organization, the organization owners may be able to see: -Quando você aceita um convite para ingressar em uma organização, os proprietários da organização podem ver: +- Your public profile information +- Your email address +- If you have two-factor authorization enabled +- Repositories you have access to within the organization, and your access level +- Certain activity within the organization +- Country of request origin +- Your IP address -- Suas informações públicas de perfil -- Seu endereço de e-mail -- Se você tem a autorização de dois fatores habilitada -- Os repositórios aos quais você tem acesso dentro da organização e seu nível de acesso -- Determinadas atividades dentro da organização -- País de origem da solicitação -- Seu endereço IP - -Para obter mais informações, consulte "<a href="/articles/github-privacy-statement/" class="dotcom-only">Declaração de privacidade do {% data variables.product.prodname_dotcom %}</a>. +For more information, see the <a href="/articles/github-privacy-statement/" class="dotcom-only">{% data variables.product.prodname_dotcom %} Privacy Statement</a>. {% note %} - **Observação:** os proprietários não podem ver endereços IP do integrante no log de auditoria da organização. No caso de um incidente de segurança, como comprometimento de uma conta ou compartilhamento acidental de dados confidenciais, os proprietários da organização podem solicitar detalhes de acesso a repositórios privados. As informações que retornamos podem incluir seu endereço IP. + **Note:** Owners are not able to view member IP addresses in the organization's audit log. In the event of a security incident, such as an account compromise or inadvertent sharing of sensitive data, organization owners may request details of access to private repositories. The information we return may include your IP address. {% endnote %} -Por padrão, a visibilidade de sua associação à organização é definida como privada. Você pode optar por divulgar associações individuais à organização no seu perfil. Para obter mais informações, consulte "[Divulgar ou ocultar associação à organização](/articles/publicizing-or-hiding-organization-membership)". +By default, your organization membership visibility is set to private. You can choose to publicize individual organization memberships on your profile. For more information, see "[Publicizing or hiding organization membership](/articles/publicizing-or-hiding-organization-membership)." {% ifversion fpt or ghec %} -Se sua organização pertence a uma conta corporativa, você automaticamente é um integrante da conta corporativa e está visível aos proprietários da conta corporativa. Para obter mais informações, consulte "[Sobre contas corporativas](/admin/overview/about-enterprise-accounts)". +If your organization belongs to an enterprise account, you are automatically a member of the enterprise account and visible to enterprise account owners. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." {% endif %} -É possível ter uma organização a qualquer momento. Para obter mais informações, consulte "[Remover a si mesmo de uma organização](/articles/removing-yourself-from-an-organization)". +You can leave an organization at any time. For more information, see "[Removing yourself from an organization](/articles/removing-yourself-from-an-organization)." -## Leia mais +## Further reading -- "[Sobre organizações](/articles/about-organizations)" -- "[Gerenciar sua associação em organizações](/articles/managing-your-membership-in-organizations)" +- "[About organizations](/articles/about-organizations)" +- "[Managing your membership in organizations](/articles/managing-your-membership-in-organizations)" diff --git a/translations/pt-BR/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md b/translations/pt-BR/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md index a940a03bc6..17ecdbe875 100644 --- a/translations/pt-BR/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md +++ b/translations/pt-BR/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md @@ -24,6 +24,6 @@ To view current and past deployments, click **Environments** on the home page of The deployments page displays the last active deployment of each environment for your repository. If the deployment includes an environment URL, a **View deployment** button that links to the URL is shown next to the deployment. -The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/repos#inactive-deployments)." +The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/deployments#inactive-deployments)." You can also use the REST API to get information about deployments. For more information, see "[Repositories](/rest/reference/repos#deployments)." diff --git a/translations/pt-BR/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/pt-BR/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 1b90750003..0ae07c935f 100644 --- a/translations/pt-BR/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/translations/pt-BR/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service actions.runner.octo-org-octo-repo.runner01.service ``` +If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command: + +```shell +$ systemctl --type=service | grep actions.runner +actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname) +``` + You can use `journalctl` to monitor the real-time activity of the self-hosted runner: ```shell diff --git a/translations/pt-BR/content/actions/learn-github-actions/events-that-trigger-workflows.md b/translations/pt-BR/content/actions/learn-github-actions/events-that-trigger-workflows.md index d21e833b8c..56e92056f6 100644 --- a/translations/pt-BR/content/actions/learn-github-actions/events-that-trigger-workflows.md +++ b/translations/pt-BR/content/actions/learn-github-actions/events-that-trigger-workflows.md @@ -307,7 +307,7 @@ on: ### `deployment_status` -Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/repos#create-a-deployment-status)." +Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/deployments#create-a-deployment-status)." | Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` | | --------------------- | -------------- | ------------ | -------------| @@ -701,7 +701,7 @@ on: {% note %} -**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/repos#get-a-commit)". +**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/commits#get-a-commit)". {% endnote %} diff --git a/translations/pt-BR/content/admin/advanced-security/index.md b/translations/pt-BR/content/admin/advanced-security/index.md index 361b004565..9bb979a9eb 100644 --- a/translations/pt-BR/content/admin/advanced-security/index.md +++ b/translations/pt-BR/content/admin/advanced-security/index.md @@ -1,7 +1,7 @@ --- -title: Gerenciando o GitHub Advanced Security para a sua empresa -shortTitle: Gerenciar o GitHub Advanced Security -intro: 'Você pode configurar {% data variables.product.prodname_advanced_security %} e gerenciar o uso pela sua empresa para atender às necessidades da sua organização.' +title: Managing GitHub Advanced Security for your enterprise +shortTitle: Managing GitHub Advanced Security +intro: 'You can configure {% data variables.product.prodname_advanced_security %} and manage use by your enterprise to suit your organization''s needs.' product: '{% data reusables.gated-features.ghas %}' redirect_from: - /enterprise/admin/configuration/configuring-advanced-security-features @@ -15,8 +15,6 @@ children: - /enabling-github-advanced-security-for-your-enterprise - /configuring-code-scanning-for-your-appliance - /configuring-secret-scanning-for-your-appliance - - /viewing-your-github-advanced-security-usage - /overview-of-github-advanced-security-deployment - /deploying-github-advanced-security-in-your-enterprise --- - diff --git a/translations/pt-BR/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md b/translations/pt-BR/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md deleted file mode 100644 index b5af8b11ea..0000000000 --- a/translations/pt-BR/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Visualizar o seu uso do GitHub Advanced Security -intro: 'Você pode visualizar o uso de sua licença do {% data variables.product.prodname_GH_advanced_security %}.' -permissions: 'Enterprise owners can view usage for {% data variables.product.prodname_GH_advanced_security %}.' -product: '{% data reusables.gated-features.ghas %}' -versions: - ghes: '>=3.1' -type: how_to -topics: - - Advanced Security - - Enterprise - - Licensing -shortTitle: Visualizar o uso avançado de segurança ---- - -## Sobre as licenças para {% data variables.product.prodname_GH_advanced_security %} - -{% data reusables.advanced-security.about-ghas-license-seats %} Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)". - -## Visualizar o uso de licença para {% data variables.product.prodname_GH_advanced_security %} - -Você pode verificar quantas estações a sua licença inclui e quantas estações estão atualmente em uso. - -{% data reusables.enterprise-accounts.access-enterprise %} -{% data reusables.enterprise-accounts.settings-tab %} -{% data reusables.enterprise-accounts.license-tab %} - A seção "{% data variables.product.prodname_GH_advanced_security %}" mostra os detalhes do uso atual. Você pode ver o número total de estações usadas, bem como uma tabela com o número de committers e committers únicos para cada organização. ![Seção de {% data variables.product.prodname_GH_advanced_security %} de licença empresarial](/assets/images/help/billing/ghas-orgs-list-enterprise-ghes.png) -5. Opcionalmente, clique no nome de uma organização em que você é um proprietário para exibir as configurações de segurança e análise para a organização. ![Organização proprietária na seção de {% data variables.product.prodname_GH_advanced_security %} das configurações de cobrança corporativa](/assets/images/help/billing/ghas-orgs-list-enterprise-click-org.png) -6. Na página de configurações "Análise de & segurança" desça até a seção "repositórios de {% data variables.product.prodname_GH_advanced_security %}" para ver uma descrição detalhada do uso por repositório para esta organização. ![{% data variables.product.prodname_GH_advanced_security %} repositories section](/assets/images/help/enterprises/settings-security-analysis-ghas-repos-list.png) Para obter mais informações, consulte "[Gerenciar configurações de segurança e análise para a sua organização](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)". diff --git a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md index 1c418f9bad..3711fe5ef6 100644 --- a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md +++ b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md @@ -1,11 +1,11 @@ --- -title: Desabilitar assinaturas não autenticadas +title: Disabling unauthenticated sign-ups redirect_from: - - /enterprise/admin/articles/disabling-sign-ups/ + - /enterprise/admin/articles/disabling-sign-ups - /enterprise/admin/user-management/disabling-unauthenticated-sign-ups - /enterprise/admin/authentication/disabling-unauthenticated-sign-ups - /admin/authentication/disabling-unauthenticated-sign-ups -intro: 'Se você estiver usando a autenticação integrada, será possível impedir que pessoas não autenticadas criem uma conta.' +intro: 'If you''re using built-in authentication, you can block unauthenticated people from being able to create an account.' versions: ghes: '*' type: how_to @@ -13,11 +13,11 @@ topics: - Accounts - Authentication - Enterprise -shortTitle: Bloquear criação de conta +shortTitle: Block account creation --- - {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -3. Desmarque a seleção na caixa **Enable sign-up** (Habilitar assinatura). ![Caixa de seleção Enable sign-up (Habilitar assinatura)](/assets/images/enterprise/management-console/enable-sign-up.png) +3. Unselect **Enable sign-up**. +![Enable sign-up checkbox](/assets/images/enterprise/management-console/enable-sign-up.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md index 1119df5f02..5d51187af0 100644 --- a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md +++ b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: Autenticar usuários para a instância do GitHub Enterprise Server -intro: 'Você pode usar a autenticação integrada do {% data variables.product.prodname_ghe_server %} ou escolher entre CAS, LDAP ou SAML para integrar suas contas e gerenciar centralmente o acesso dos usuários à {% data variables.product.product_location %}.' +title: Authenticating users for your GitHub Enterprise Server instance +intro: 'You can use {% data variables.product.prodname_ghe_server %}''s built-in authentication, or choose between CAS, LDAP, or SAML to integrate your existing accounts and centrally manage user access to {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/categories/authentication/ - - /enterprise/admin/guides/installation/user-authentication/ - - /enterprise/admin/articles/inviting-users/ - - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance/ + - /enterprise/admin/categories/authentication + - /enterprise/admin/guides/installation/user-authentication + - /enterprise/admin/articles/inviting-users + - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance - /enterprise/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance - /enterprise/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance versions: @@ -20,6 +20,6 @@ children: - /using-ldap - /allowing-built-in-authentication-for-users-outside-your-identity-provider - /changing-authentication-methods -shortTitle: Autenticar usuários +shortTitle: Authenticate users --- diff --git a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md index c87963e7e7..b1276f2de7 100644 --- a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md +++ b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md @@ -1,12 +1,12 @@ --- -title: Usar CAS +title: Using CAS redirect_from: - - /enterprise/admin/articles/configuring-cas-authentication/ - - /enterprise/admin/articles/about-cas-authentication/ + - /enterprise/admin/articles/configuring-cas-authentication + - /enterprise/admin/articles/about-cas-authentication - /enterprise/admin/user-management/using-cas - /enterprise/admin/authentication/using-cas - /admin/authentication/using-cas -intro: 'O CAS é um protocolo de logon único (SSO) para vários aplicativos da web. Uma conta de usuário CAS não consome uma {% ifversion ghes %}licença de{% else %}usuário{% endif %} até o usuário fazer login.' +intro: 'CAS is a single sign-on (SSO) protocol for multiple web applications. A CAS user account does not take up a {% ifversion ghes %}user license{% else %}seat{% endif %} until the user signs in.' versions: ghes: '*' type: how_to @@ -17,10 +17,9 @@ topics: - Identity - SSO --- - {% data reusables.enterprise_user_management.built-in-authentication %} -## Considerações de nome de usuário no CAS +## Username considerations with CAS {% data reusables.enterprise_management_console.username_normalization %} @@ -29,24 +28,25 @@ topics: {% data reusables.enterprise_user_management.two_factor_auth_header %} {% data reusables.enterprise_user_management.external_auth_disables_2fa %} -## Atributos CAS +## CAS attributes -Os atributos a seguir estão disponíveis. +The following attributes are available. -| Nome do atributo | Tipo | Descrição | -| ----------------- | ----------- | ---------------------------------------------------------------------- | -| `nome de usuário` | Obrigatório | Nome do usuário no {% data variables.product.prodname_ghe_server %}. | +| Attribute name | Type | Description | +|--------------------------|----------|-------------| +| `username` | Required | The {% data variables.product.prodname_ghe_server %} username. | -## Configurar o CAS +## Configuring CAS {% warning %} -**Aviso:** antes de configurar o CAS na {% data variables.product.product_location %}, observe que os usuários não poderão usar seus nomes e senhas do CAS para autenticar solicitações de API ou operações do Git por HTTP/HTTPS. Para isso, eles deverão [criar tokens de acesso](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use). +**Warning:** Before configuring CAS on {% data variables.product.product_location %}, note that users will not be able to use their CAS usernames and passwords to authenticate API requests or Git operations over HTTP/HTTPS. Instead, they will need to [create an access token](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use). {% endwarning %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.authentication %} -3. Selecione **CAS**. ![Selecionar CAS](/assets/images/enterprise/management-console/cas-select.png) -4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![Selecionar caixa de autenticação integrada CAS](/assets/images/enterprise/management-console/cas-built-in-authentication.png) -5. No campo **Server URL** (URL do servidor), digite a URL completa do seu servidor CAS. Se o servidor CAS usar um certificado que não pode ser validado pelo {% data variables.product.prodname_ghe_server %}, você poderá usar o comando `ghe-ssl-ca-certificate-install` para instalá-lo como certificado confiável. +3. Select **CAS**. +![CAS select](/assets/images/enterprise/management-console/cas-select.png) +4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![Select CAS built-in authentication checkbox](/assets/images/enterprise/management-console/cas-built-in-authentication.png) +5. In the **Server URL** field, type the full URL of your CAS server. If your CAS server uses a certificate that can't be validated by {% data variables.product.prodname_ghe_server %}, you can use the `ghe-ssl-ca-certificate-install` command to install it as a trusted certificate. diff --git a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md index a7d55a8a16..77d922b9e8 100644 --- a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md +++ b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md @@ -1,11 +1,11 @@ --- title: Using LDAP redirect_from: - - /enterprise/admin/articles/configuring-ldap-authentication/ - - /enterprise/admin/articles/about-ldap-authentication/ - - /enterprise/admin/articles/viewing-ldap-users/ - - /enterprise/admin/hidden/enabling-ldap-sync/ - - /enterprise/admin/hidden/ldap-sync/ + - /enterprise/admin/articles/configuring-ldap-authentication + - /enterprise/admin/articles/about-ldap-authentication + - /enterprise/admin/articles/viewing-ldap-users + - /enterprise/admin/hidden/enabling-ldap-sync + - /enterprise/admin/hidden/ldap-sync - /enterprise/admin/user-management/using-ldap - /enterprise/admin/authentication/using-ldap - /admin/authentication/using-ldap diff --git a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md index b7f582ffcb..33cd83f62b 100644 --- a/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md +++ b/translations/pt-BR/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md @@ -1,8 +1,8 @@ --- title: Using SAML redirect_from: - - /enterprise/admin/articles/configuring-saml-authentication/ - - /enterprise/admin/articles/about-saml-authentication/ + - /enterprise/admin/articles/configuring-saml-authentication + - /enterprise/admin/articles/about-saml-authentication - /enterprise/admin/user-management/using-saml - /enterprise/admin/authentication/using-saml - /admin/authentication/using-saml diff --git a/translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md b/translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md index e42db0fdb3..c82069b7a4 100644 --- a/translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md +++ b/translations/pt-BR/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md @@ -1,10 +1,10 @@ --- -title: Gerenciando os usuários da sua empresa com seu provedor de identidade -shortTitle: Gerenciar usuários com seu IdP +title: Managing your enterprise users with your identity provider +shortTitle: Manage users with your IdP product: '{% data reusables.gated-features.emus %}' -intro: Você pode gerenciar a identidade e o acesso com o seu provedor de identidade e prover contas que só podem contribuir com para a sua empresa. +intro: You can manage identity and access with your identity provider and provision accounts that can only contribute to your enterprise. redirect_from: - - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/ + - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider versions: ghec: '*' topics: diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md index d268ff6b34..2727ae6ddc 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md @@ -1,8 +1,8 @@ --- -title: Configurar nome de host -intro: 'Em vez de usar um endereço IP codificado, é recomendável definir um nome de host para o seu appliance.' +title: Configuring a hostname +intro: We recommend setting a hostname for your appliance instead of using a hard-coded IP address. redirect_from: - - /enterprise/admin/guides/installation/configuring-hostnames/ + - /enterprise/admin/guides/installation/configuring-hostnames - /enterprise/admin/installation/configuring-a-hostname - /enterprise/admin/configuration/configuring-a-hostname - /admin/configuration/configuring-a-hostname @@ -14,19 +14,20 @@ topics: - Fundamentals - Infrastructure --- +If you configure a hostname instead of a hard-coded IP address, you will be able to change the physical hardware that {% data variables.product.product_location %} runs on without affecting users or client software. -Se configurar um nome de host em vez de um endereço IP codificado, você poderá alterar o hardware físico em que a {% data variables.product.product_location %} é executada sem afetar os usuários ou o software cliente. - -A configuração do nome de host no {% data variables.enterprise.management_console %} deve ser definida como um nome de domínio totalmente qualificado (FQDN) que seja resolvido na internet ou dentro da sua rede interna. Por exemplo, a configuração do nome de host pode ser `github.nomedaempresa.com.` Também recomendamos habilitar o isolamento de subdomínio para o nome do host escolhido a fim de mitigar várias vulnerabilidades no estilo de script entre sites. Para obter mais informações sobre as configurações de nome de host, consulte a [Seção 2.1 em HTTP RFC](https://tools.ietf.org/html/rfc1123#section-2). +The hostname setting in the {% data variables.enterprise.management_console %} should be set to an appropriate fully qualified domain name (FQDN) which is resolvable on the internet or within your internal network. For example, your hostname setting could be `github.companyname.com.` We also recommend enabling subdomain isolation for the chosen hostname to mitigate several cross-site scripting style vulnerabilities. For more information on hostname settings, see [Section 2.1 of the HTTP RFC](https://tools.ietf.org/html/rfc1123#section-2). {% data reusables.enterprise_installation.changing-hostname-not-supported %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. Digite o nome do host que você pretende definir para a {% data variables.product.product_location %}. ![Campo para configurar um nome de host](/assets/images/enterprise/management-console/hostname-field.png) -5. Para testar as configurações DNS e SSL do novo nome de host, clique em **Test domain settings** (Testar configurações de domínio). ![Botão Test domain settings (Testar configurações de domínio)](/assets/images/enterprise/management-console/test-domain-settings.png) +4. Type the hostname you'd like to set for {% data variables.product.product_location %}. + ![Field for setting a hostname](/assets/images/enterprise/management-console/hostname-field.png) +5. To test the DNS and SSL settings for the new hostname, click **Test domain settings**. + ![Test domain settings button](/assets/images/enterprise/management-console/test-domain-settings.png) {% data reusables.enterprise_management_console.test-domain-settings-failure %} {% data reusables.enterprise_management_console.save-settings %} -Depois de configurar um nome de host, recomendamos que você habilite o isolamento de subdomínio para a {% data variables.product.product_location %}. Para obter mais informações, consulte "[Habilitar isolamento de subdomínio](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)". +After you configure a hostname, we recommend that you enable subdomain isolation for {% data variables.product.product_location %}. For more information, see "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)." diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md index 1b60876b5c..efcd3a1f2d 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md @@ -1,8 +1,8 @@ --- -title: Configurar servidor proxy web de saída -intro: 'Servidores proxy geram uma camada extra de segurança para a {% data variables.product.product_location %}.' +title: Configuring an outbound web proxy server +intro: 'A proxy server provides an additional level of security for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-a-proxy-server/ + - /enterprise/admin/guides/installation/configuring-a-proxy-server - /enterprise/admin/installation/configuring-an-outbound-web-proxy-server - /enterprise/admin/configuration/configuring-an-outbound-web-proxy-server - /admin/configuration/configuring-an-outbound-web-proxy-server @@ -14,28 +14,30 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: Configurar um proxy de saída +shortTitle: Configure an outbound proxy --- -## Sobre proxies com {% data variables.product.product_name %} +## About proxies with {% data variables.product.product_name %} -Quando houver um servidor proxy habilitado para a {% data variables.product.product_location %}, as mensagens de saída enviadas para o {% data variables.product.prodname_ghe_server %} sairão primeiramente pelo servidor proxy, a menos que o host de destino seja adicionado como exclusão de proxy HTTP. Os tipos de mensagens de saída incluem webhooks de saída, pacotes para upload e fetch de avatares herdados. A URL do servidor proxy é o protocolo, domínio ou endereço IP e o número da porta, por exemplo: `http://127.0.0.1:8123`. +When a proxy server is enabled for {% data variables.product.product_location %}, outbound messages sent by {% data variables.product.prodname_ghe_server %} are first sent through the proxy server, unless the destination host is added as an HTTP proxy exclusion. Types of outbound messages include outgoing webhooks, uploading bundles, and fetching legacy avatars. The proxy server's URL is the protocol, domain or IP address, plus the port number, for example `http://127.0.0.1:8123`. {% note %} -**Observação:** para conectar a {% data variables.product.product_location %} ao {% data variables.product.prodname_dotcom_the_website %}, a sua configuração de proxy deve permitir conectividade com `github.com` e `api.github.com`. Para obter mais informações, consulte "[Conectando sua conta corporativa a {% data variables.product.prodname_dotcom_the_website %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)". +**Note:** To connect {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %}, your proxy configuration must allow connectivity to `github.com` and `api.github.com`. For more information, see "[Connecting your enterprise account to {% data variables.product.prodname_dotcom_the_website %}](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)." {% endnote %} -{% data reusables.actions.proxy-considerations %} Para obter mais informações sobre como usar {% data variables.product.prodname_actions %} com {% data variables.product.prodname_ghe_server %}, consulte "[Primeiros passos com {% data variables.product.prodname_actions %} para {% data variables.product.prodname_ghe_server %}](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server)". +{% data reusables.actions.proxy-considerations %} For more information about using {% data variables.product.prodname_actions %} with {% data variables.product.prodname_ghe_server %}, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/getting-started-with-github-actions-for-github-enterprise-server)." -## Configurar servidor proxy web de saída +## Configuring an outbound web proxy server {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -1. Em **HTTP Proxy Server** (Servidor proxy HTTP), digite a URL do seu servidor proxy. ![Campo para digitar a URL do servidor proxy HTTP](/assets/images/enterprise/management-console/http-proxy-field.png) - -5. Você também pode ir até **HTTP Proxy Exclusion** (Exclusão de proxy HTTP) e digitar qualquer host que não exija acesso por proxy, separando os hosts por vírgulas. Para excluir todos os hosts de um domínio que exige acesso ao proxy, você pode usar `.` como um prefixo curinga. Por exemplo: `octo-org.tentacle` ![Campo para digitar qualquer exclusão de proxy HTTP](/assets/images/enterprise/management-console/http-proxy-exclusion-field.png) +1. Under **HTTP Proxy Server**, type the URL of your proxy server. + ![Field to type the HTTP Proxy Server URL](/assets/images/enterprise/management-console/http-proxy-field.png) + +5. Optionally, under **HTTP Proxy Exclusion**, type any hosts that do not require proxy access, separating hosts with commas. To exclude all hosts in a domain from requiring proxy access, you can use `.` as a wildcard prefix. For example: `.octo-org.tentacle` + ![Field to type any HTTP Proxy Exclusions](/assets/images/enterprise/management-console/http-proxy-exclusion-field.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md index e56576af5b..b6f5cbfb9d 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md @@ -1,8 +1,8 @@ --- -title: Configurar regras de firewall integrado -intro: 'É possível exibir as regras padrão de firewall e personalizar outras regras da {% data variables.product.product_location %}.' +title: Configuring built-in firewall rules +intro: 'You can view default firewall rules and customize rules for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-firewall-settings/ + - /enterprise/admin/guides/installation/configuring-firewall-settings - /enterprise/admin/installation/configuring-built-in-firewall-rules - /enterprise/admin/configuration/configuring-built-in-firewall-rules - /admin/configuration/configuring-built-in-firewall-rules @@ -14,21 +14,20 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: Configurar regras do firewall +shortTitle: Configure firewall rules --- +## About {% data variables.product.product_location %}'s firewall -## Sobre o firewall da {% data variables.product.product_location %} +{% data variables.product.prodname_ghe_server %} uses Ubuntu's Uncomplicated Firewall (UFW) on the virtual appliance. For more information see "[UFW](https://help.ubuntu.com/community/UFW)" in the Ubuntu documentation. {% data variables.product.prodname_ghe_server %} automatically updates the firewall allowlist of allowed services with each release. -O {% data variables.product.prodname_ghe_server %} usa o Uncomplicated Firewall (UFW) do Ubuntu no appliance virtual. Para obter mais informações, consulte "[UFW](https://help.ubuntu.com/community/UFW)" na documentação do Ubuntu. O {% data variables.product.prodname_ghe_server %} atualiza automaticamente a lista de desbloqueio de firewall dos serviços permitidos em cada versão. +After you install {% data variables.product.prodname_ghe_server %}, all required network ports are automatically opened to accept connections. Every non-required port is automatically configured as `deny`, and the default outgoing policy is configured as `allow`. Stateful tracking is enabled for any new connections; these are typically network packets with the `SYN` bit set. For more information, see "[Network ports](/enterprise/admin/guides/installation/network-ports)." -Depois da instalação do {% data variables.product.prodname_ghe_server %}, todas as portas de rede necessárias ficam abertas automaticamente para aceitar conexões. As portas desnecessárias são configuradas automaticamente como `deny`, e a política de saída padrão é configurada como `allow`. O rastreamento com estado fica habilitado para novas conexões; em geral, são pacotes de rede com o conjunto de bits `SYN`. Para obter mais informações, consulte "[Portas de rede](/enterprise/admin/guides/installation/network-ports)". +The UFW firewall also opens several other ports that are required for {% data variables.product.prodname_ghe_server %} to operate properly. For more information on the UFW rule set, see [the UFW README](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213). -O firewall UFW também abre várias outras portas necessárias para o funcionamento adequado do {% data variables.product.prodname_ghe_server %}. Para obter mais informações sobre o conjunto de regras da UFW, consulte [o README da UFW](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213). - -## Exibir as regras padrão de firewall +## Viewing the default firewall rules {% data reusables.enterprise_installation.ssh-into-instance %} -2. Para exibir as regras de firewall padrão, use o comando `sudo ufw status`. Você verá um conteúdo semelhante a este: +2. To view the default firewall rules, use the `sudo ufw status` command. You should see output similar to this: ```shell $ sudo ufw status > Status: active @@ -56,46 +55,46 @@ O firewall UFW também abre várias outras portas necessárias para o funcioname > ghe-9418 (v6) ALLOW Anywhere (v6) ``` -## Adicionar regras personalizadas de firewall +## Adding custom firewall rules {% warning %} -**Aviso:** antes de adicionar regras personalizadas de firewall, faça backup das regras atuais caso você precise voltar a um estado de trabalho conhecido. Se você não conseguir acessar o servidor, entre em contato com o {% data variables.contact.contact_ent_support %} para reconfigurar as regras originais do firewall. Restaurar as regras originais gera tempo de inatividade no servidor. +**Warning:** Before you add custom firewall rules, back up your current rules in case you need to reset to a known working state. If you're locked out of your server, contact {% data variables.contact.contact_ent_support %} to reconfigure the original firewall rules. Restoring the original firewall rules involves downtime for your server. {% endwarning %} -1. Configure uma regra personalizada de firewall. -2. Verifique o status de cada regra com o comando `status numbered`. +1. Configure a custom firewall rule. +2. Check the status of each new rule with the `status numbered` command. ```shell $ sudo ufw status numbered ``` -3. Para fazer backup das regras personalizadas de firewall, use o comando `cp` a fim de movê-las para um novo arquivo. +3. To back up your custom firewall rules, use the `cp`command to move the rules to a new file. ```shell $ sudo cp -r /etc/ufw ~/ufw.backup ``` -Após a atualização da {% data variables.product.product_location %}, você deve reaplicar suas regras personalizadas de firewall. Para isso, é recomendável criar um script. +After you upgrade {% data variables.product.product_location %}, you must reapply your custom firewall rules. We recommend that you create a script to reapply your firewall custom rules. -## Restaurar as regras padrão de firewall +## Restoring the default firewall rules -Se a alteração das regras do firewall ocasionar erros, você poderá redefinir as regras originais no backup. +If something goes wrong after you change the firewall rules, you can reset the rules from your original backup. {% warning %} -**Aviso:** se você não fez backup das regras originais antes de alterar o firewall, entre em contato com o {% data variables.contact.contact_ent_support %} para obter assistência. +**Warning:** If you didn't back up the original rules before making changes to the firewall, contact {% data variables.contact.contact_ent_support %} for further assistance. {% endwarning %} {% data reusables.enterprise_installation.ssh-into-instance %} -2. Para restaurar as regras de backup anteriores, copie-as de volta para o firewall com o comando `cp`. +2. To restore the previous backup rules, copy them back to the firewall with the `cp` command. ```shell $ sudo cp -f ~/ufw.backup/*rules /etc/ufw ``` -3. Reinicie o firewall com o comando `systemctl`. +3. Restart the firewall with the `systemctl` command. ```shell $ sudo systemctl restart ufw ``` -4. Confirme a retomada das regras padrão com o comando `ufw status`. +4. Confirm that the rules are back to their defaults with the `ufw status` command. ```shell $ sudo ufw status > Status: active diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md index 63228d9211..0080d55693 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md @@ -1,8 +1,8 @@ --- -title: Configurar servidores de nomes DNS -intro: 'O {% data variables.product.prodname_ghe_server %} usa o protocolo de configuração dinâmica de host (DHCP) para configurações de DNS quando as concessões de DHCP fornecem servidores de nomes. Se os servidores de nomes não forem fornecidos por uma concessão do protocolo DHCP, ou caso você precise usar configurações DNS específicas, será possível especificá-los manualmente.' +title: Configuring DNS nameservers +intro: '{% data variables.product.prodname_ghe_server %} uses the dynamic host configuration protocol (DHCP) for DNS settings when DHCP leases provide nameservers. If nameservers are not provided by a dynamic host configuration protocol (DHCP) lease, or if you need to use specific DNS settings, you can specify the nameservers manually.' redirect_from: - - /enterprise/admin/guides/installation/about-dns-nameservers/ + - /enterprise/admin/guides/installation/about-dns-nameservers - /enterprise/admin/installation/configuring-dns-nameservers - /enterprise/admin/configuration/configuring-dns-nameservers - /admin/configuration/configuring-dns-nameservers @@ -14,29 +14,28 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: Configurar servidores DNS +shortTitle: Configure DNS servers --- - -Os servidores de nomes que você especificar devem resolver o nome de host da {% data variables.product.product_location %}. +The nameservers you specify must resolve {% data variables.product.product_location %}'s hostname. {% data reusables.enterprise_installation.changing-hostname-not-supported %} -## Configurar servidores de nomes usando o console de máquina virtual +## Configuring nameservers using the virtual machine console {% data reusables.enterprise_installation.open-vm-console-start %} -2. Configure os servidores de nomes da sua instância. +2. Configure nameservers for your instance. {% data reusables.enterprise_installation.vm-console-done %} -## Configurar servidores de nomes usando o shell administrativo +## Configuring nameservers using the administrative shell {% data reusables.enterprise_installation.ssh-into-instance %} -2. Para editar seus servidores de nomes, insira: +2. To edit your nameservers, enter: ```shell $ sudo vim /etc/resolvconf/resolv.conf.d/head ``` -3. Adicione quaisquer entradas `nameserver` e salve o arquivo. -4. Depois de verificar suas alterações, salve o arquivo. -5. Para adicionar as suas novas entradas de nameserver para {% data variables.product.product_location %}, execute o seguinte: +3. Append any `nameserver` entries, then save the file. +4. After verifying your changes, save the file. +5. To add your new nameserver entries to {% data variables.product.product_location %}, run the following: ```shell $ sudo service resolvconf restart $ sudo service dnsmasq restart diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-tls.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-tls.md index 9fcec6ca70..e3a251095c 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-tls.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/configuring-tls.md @@ -2,8 +2,8 @@ title: Configuring TLS intro: 'You can configure Transport Layer Security (TLS) on {% data variables.product.product_location %} so that you can use a certificate that is signed by a trusted certificate authority.' redirect_from: - - /enterprise/admin/articles/ssl-configuration/ - - /enterprise/admin/guides/installation/about-tls/ + - /enterprise/admin/articles/ssl-configuration + - /enterprise/admin/guides/installation/about-tls - /enterprise/admin/installation/configuring-tls - /enterprise/admin/configuration/configuring-tls - /admin/configuration/configuring-tls diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md index 6600be641d..24d09e4f83 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md @@ -1,8 +1,8 @@ --- -title: Habilitar isolamento de subdomínio -intro: 'É possível configurar o isolamento de subdomínio para separar com segurança o conteúdo enviado pelo usuário de outras partes do seu appliance do {% data variables.product.prodname_ghe_server %}.' +title: Enabling subdomain isolation +intro: 'You can set up subdomain isolation to securely separate user-supplied content from other portions of your {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - - /enterprise/admin/guides/installation/about-subdomain-isolation/ + - /enterprise/admin/guides/installation/about-subdomain-isolation - /enterprise/admin/installation/enabling-subdomain-isolation - /enterprise/admin/configuration/enabling-subdomain-isolation - /admin/configuration/enabling-subdomain-isolation @@ -15,51 +15,51 @@ topics: - Infrastructure - Networking - Security -shortTitle: Habilitar isolamento de subdomínio +shortTitle: Enable subdomain isolation --- +## About subdomain isolation -## Sobre isolamento de subdomínio +Subdomain isolation mitigates cross-site scripting and other related vulnerabilities. For more information, see "[Cross-site scripting](http://en.wikipedia.org/wiki/Cross-site_scripting)" on Wikipedia. We highly recommend that you enable subdomain isolation on {% data variables.product.product_location %}. -O isolamento de subdomínios reduz os problemas de script entre sites e outras vulnerabilidades relacionadas. Para obter mais informações, leia mais sobre [scripts entre sites](http://en.wikipedia.org/wiki/Cross-site_scripting) na Wikipedia. É altamente recomendável habilitar o isolamento de subdomínio para a {% data variables.product.product_location %}. +When subdomain isolation is enabled, {% data variables.product.prodname_ghe_server %} replaces several paths with subdomains. After enabling subdomain isolation, attempts to access the previous paths for some user-supplied content, such as `http(s)://HOSTNAME/raw/`, may return `404` errors. -Quando o isolamento do subdomínio está ativado, o {% data variables.product.prodname_ghe_server %} substitui vários caminhos pelos subdomínios. Depois de habilitar o isolamento de subdomínio, as tentativas de acessar os caminhos anteriores para alguns conteúdos fornecidos pelo usuário como `http(s)://HOSTNAME/raw/` podem retornar erros de `404`. +| Path without subdomain isolation | Path with subdomain isolation | +| --- | --- | +| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | +| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | +| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | +| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | +| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | +| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | +| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | +| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | +| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | +| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` | {% ifversion ghes %} +| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} +| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` +| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` +| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` +| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} -| Caminho sem isolamento de subdomínio | Caminho com isolamento de subdomínio | -| -------------------------------------- | ----------------------------------------------------------- | -| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | -| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | -| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | -| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | -| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | -| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | -| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | -| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | -| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | -| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` |{% ifversion ghes %} -| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} -| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` | -| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` | -| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` | -| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} - -## Pré-requisitos +## Prerequisites {% data reusables.enterprise_installation.disable-github-pages-warning %} -Antes de habilitar o isolamento de subdomínio, você deve definir as configurações de rede do novo domínio. +Before you enable subdomain isolation, you must configure your network settings for your new domain. -- Em vez de um endereço IP, especifique um nome de domínio válido como nome de host. Para obter mais informações, consulte "[Configurar nome de host](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)". +- Specify a valid domain name as your hostname, instead of an IP address. For more information, see "[Configuring a hostname](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)." {% data reusables.enterprise_installation.changing-hostname-not-supported %} -- Configure um registro curinga do Sistema de Nomes de Domínio (DNS) ou registros DNS individuais para os subdomínios listados acima. É recomendável criar um registro A para `*.HOSTNAME` que aponte para o endereço IP do servidor, de modo que não seja preciso criar vários registros para cada subdomínio. -- Obtenha um certificado curinga de Segurança da Camada de Transporte (TLS) para `*.HOSTNAME` com Nome Alternativo da Entidade (SAN) para `HOSTNAME` e o domínio curinga `*.HOSTNAME`. Por exemplo, se o nome de host for `github.octoinc.com`, obtenha um certificado com valor de nome comum definido como `*.github.octoinc.com` e valor SAN definido para `github.octoinc.com` e `*.github.octoinc.com`. -- Habilite o TLS no appliance. Para obter mais informações, consulte "[Configurar TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)". +- Set up a wildcard Domain Name System (DNS) record or individual DNS records for the subdomains listed above. We recommend creating an A record for `*.HOSTNAME` that points to your server's IP address so you don't have to create multiple records for each subdomain. +- Get a wildcard Transport Layer Security (TLS) certificate for `*.HOSTNAME` with a Subject Alternative Name (SAN) for both `HOSTNAME` and the wildcard domain `*.HOSTNAME`. For example, if your hostname is `github.octoinc.com`, get a certificate with the Common Name value set to `*.github.octoinc.com` and a SAN value set to both `github.octoinc.com` and `*.github.octoinc.com`. +- Enable TLS on your appliance. For more information, see "[Configuring TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)." -## Habilitar isolamento de subdomínio +## Enabling subdomain isolation {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. Selecione **Subdomain isolation (recommended)** (Isolamento de subdomínio [recomendado]). ![Caixa de seleção para habilitar o isolamento de subdomínio](/assets/images/enterprise/management-console/subdomain-isolation.png) +4. Select **Subdomain isolation (recommended)**. + ![Checkbox to enable subdomain isolation](/assets/images/enterprise/management-console/subdomain-isolation.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/index.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/index.md index 29b618beb1..e3a5d06573 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/index.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/index.md @@ -1,13 +1,13 @@ --- -title: Definir as configurações de rede +title: Configuring network settings redirect_from: - - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl/ - - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings/ + - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl + - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings + - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings + - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings - /enterprise/admin/installation/configuring-your-github-enterprise-server-network-settings - /enterprise/admin/configuration/configuring-network-settings -intro: 'Configure o {% data variables.product.prodname_ghe_server %} com os nomes de host e servidores de nomes DNS obrigatórios na sua rede. Você também pode configurar um servidor proxy ou regras de firewall. Para fins administrativos e de usuário, é preciso permitir o acesso a determinadas portas.' +intro: 'Configure {% data variables.product.prodname_ghe_server %} with the DNS nameservers and hostname required in your network. You can also configure a proxy server or firewall rules. You must allow access to certain ports for administrative and user purposes.' versions: ghes: '*' topics: @@ -23,6 +23,6 @@ children: - /configuring-built-in-firewall-rules - /network-ports - /using-github-enterprise-server-with-a-load-balancer -shortTitle: Definir as configurações de rede +shortTitle: Configure network settings --- diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/network-ports.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/network-ports.md index 4fcd17c1a7..80cfbb860b 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/network-ports.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/network-ports.md @@ -1,10 +1,10 @@ --- title: Network ports redirect_from: - - /enterprise/admin/articles/configuring-firewalls/ - - /enterprise/admin/articles/firewall/ - - /enterprise/admin/guides/installation/network-configuration/ - - /enterprise/admin/guides/installation/network-ports-to-open/ + - /enterprise/admin/articles/configuring-firewalls + - /enterprise/admin/articles/firewall + - /enterprise/admin/guides/installation/network-configuration + - /enterprise/admin/guides/installation/network-ports-to-open - /enterprise/admin/installation/network-ports - /enterprise/admin/configuration/network-ports - /admin/configuration/network-ports diff --git a/translations/pt-BR/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md b/translations/pt-BR/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md index 8f8fdadc5a..b720b6c9a0 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md +++ b/translations/pt-BR/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md @@ -2,7 +2,7 @@ title: Using GitHub Enterprise Server with a load balancer intro: 'Use a load balancer in front of a single {% data variables.product.prodname_ghe_server %} appliance or a pair of appliances in a High Availability configuration.' redirect_from: - - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer/ + - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer - /enterprise/admin/installation/using-github-enterprise-server-with-a-load-balancer - /enterprise/admin/configuration/using-github-enterprise-server-with-a-load-balancer - /admin/configuration/using-github-enterprise-server-with-a-load-balancer diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md index 84a4ef8e25..c0e8a764c7 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md @@ -1,13 +1,13 @@ --- -title: Acesar o shell administrativo (SSH) +title: Accessing the administrative shell (SSH) redirect_from: - - /enterprise/admin/articles/ssh-access/ - - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access/ - - /enterprise/admin/guides/installation/administrative-shell-ssh-access/ - - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey/ + - /enterprise/admin/articles/ssh-access + - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access + - /enterprise/admin/guides/installation/administrative-shell-ssh-access + - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey - /enterprise/admin/installation/accessing-the-administrative-shell-ssh - /enterprise/admin/configuration/accessing-the-administrative-shell-ssh - /admin/configuration/accessing-the-administrative-shell-ssh @@ -19,31 +19,31 @@ topics: - Enterprise - Fundamentals - SSH -shortTitle: Acesso ao shell do administrador (SSH) +shortTitle: Access the admin shell (SSH) --- +## About administrative shell access -## Sobre o acesso ao shell administrativo +If you have SSH access to the administrative shell, you can run {% data variables.product.prodname_ghe_server %}'s command line utilities. SSH access is also useful for troubleshooting, running backups, and configuring replication. Administrative SSH access is managed separately from Git SSH access and is accessible only via port 122. -Se tiver acesso por SSH ao shell administrativo, você poderá executar os utilitários de linha de comando do {% data variables.product.prodname_ghe_server %}. O acesso SSH também é útil para solucionar problemas, fazer backups e configurar a replicação. O acesso a SSH administrativa é gerenciado separadamente do acesso SSH do Git e fica acessível apenas pela porta 122. +## Enabling access to the administrative shell via SSH -## Habilitar o acesso ao shell administrativo por SSH - -Para habilitar o acesso a SSH administrativa, você deve adicionar sua chave pública SSH à lista de chaves autorizadas da instância. +To enable administrative SSH access, you must add your SSH public key to your instance's list of authorized keys. {% tip %} -**Dica:** as alterações nas chaves SSH autorizadas entram em vigor de imediato. +**Tip:** Changes to authorized SSH keys take effect immediately. {% endtip %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -3. Em "SSH access" (Acesso SSH), cole a chave no campo de texto e clique em **Add key** (Adicionar chave). ![Caixa de texto e botão para adicionar uma chave SSH](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) +3. Under "SSH access", paste your key into the text box, then click **Add key**. + ![Text box and button for adding an SSH key](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) {% data reusables.enterprise_management_console.save-settings %} -## Conectar-se ao shell administrativo por SSH +## Connecting to the administrative shell over SSH -Depois de adicionar sua chave SSH à lista, conecte-se à instância por SSH como usuário `admin` na porta 122. +After you've added your SSH key to the list, connect to the instance over SSH as the `admin` user on port 122. ```shell $ ssh -p 122 admin@github.example.com @@ -51,17 +51,17 @@ Last login: Sun Nov 9 07:53:29 2014 from 169.254.1.1 admin@github-example-com:~$ █ ``` -### Solucionar problemas de conectividade com SSH +### Troubleshooting SSH connection problems -Se o erro `Permission denied (publickey)` (Permissão negada [chave pública]) ocorrer quando você tentar se conectar à {% data variables.product.product_location %} via SSH, confirme se a conexão está sendo feita pela porta 122. Talvez seja necessário especificar explicitamente a chave SSH privada em uso. +If you encounter the `Permission denied (publickey)` error when you try to connect to {% data variables.product.product_location %} via SSH, confirm that you are connecting over port 122. You may need to explicitly specify which private SSH key to use. -Para especificar uma chave SSH privada usando a linha de comando, execute `ssh` com o argumento `-i`. +To specify a private SSH key using the command line, run `ssh` with the `-i` argument. ```shell ssh -i /path/to/ghe_private_key -p 122 admin@<em>hostname</em> ``` -Você também pode especificar uma chave SSH privada usando o arquivo de configuração SSH (`~/.ssh/config`). +You can also specify a private SSH key using the SSH configuration file (`~/.ssh/config`). ```shell Host <em>hostname</em> @@ -70,10 +70,10 @@ Host <em>hostname</em> Port 122 ``` -## Acesar o shell administrativo usando o console local +## Accessing the administrative shell using the local console -Em uma situação de emergência, se o acesso por SSH estiver indisponível, você poderá acessar o shell administrativo localmente. Entre como usuário `admin` usando a senha definida na configuração inicial do {% data variables.product.prodname_ghe_server %}. +In an emergency situation, for example if SSH is unavailable, you can access the administrative shell locally. Sign in as the `admin` user and use the password established during initial setup of {% data variables.product.prodname_ghe_server %}. -## Limitações de acesso ao shell administrativo +## Access limitations for the administrative shell -O acesso ao shell administrativo é permitido apenas para solucionar problemas e executar procedimentos de operações documentadas. Modificar arquivos de aplicativos e sistemas, executar programas ou instalar pacotes de software não compatíveis pode anular seu contrato de suporte. Entre em contato com o {% data variables.contact.contact_ent_support %} em caso de perguntas sobre as atividades permitidas pelo contrato. +Administrative shell access is permitted for troubleshooting and performing documented operations procedures only. Modifying system and application files, running programs, or installing unsupported software packages may void your support contract. Please contact {% data variables.contact.contact_ent_support %} if you have a question about the activities allowed by your support contract. diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md index 0013d30c0c..d78d9ed5dd 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md @@ -1,13 +1,13 @@ --- -title: Acessar o console de gerenciamento +title: Accessing the management console intro: '{% data reusables.enterprise_site_admin_settings.about-the-management-console %}' redirect_from: - - /enterprise/admin/articles/about-the-management-console/ - - /enterprise/admin/articles/management-console-for-emergency-recovery/ - - /enterprise/admin/articles/web-based-management-console/ - - /enterprise/admin/categories/management-console/ - - /enterprise/admin/articles/accessing-the-management-console/ - - /enterprise/admin/guides/installation/web-based-management-console/ + - /enterprise/admin/articles/about-the-management-console + - /enterprise/admin/articles/management-console-for-emergency-recovery + - /enterprise/admin/articles/web-based-management-console + - /enterprise/admin/categories/management-console + - /enterprise/admin/articles/accessing-the-management-console + - /enterprise/admin/guides/installation/web-based-management-console - /enterprise/admin/installation/accessing-the-management-console - /enterprise/admin/configuration/accessing-the-management-console - /admin/configuration/accessing-the-management-console @@ -17,40 +17,39 @@ type: how_to topics: - Enterprise - Fundamentals -shortTitle: Acessar o console de gerenciamento +shortTitle: Access the management console --- +## About the {% data variables.enterprise.management_console %} -## Sobre o {% data variables.enterprise.management_console %} +Use the {% data variables.enterprise.management_console %} for basic administrative activities: +- **Initial setup**: Walk through the initial setup process when first launching {% data variables.product.product_location %} by visiting {% data variables.product.product_location %}'s IP address in your browser. +- **Configuring basic settings for your instance**: Configure DNS, hostname, SSL, user authentication, email, monitoring services, and log forwarding on the Settings page. +- **Scheduling maintenance windows**: Take {% data variables.product.product_location %} offline while performing maintenance using the {% data variables.enterprise.management_console %} or administrative shell. +- **Troubleshooting**: Generate a support bundle or view high level diagnostic information. +- **License management**: View or update your {% data variables.product.prodname_enterprise %} license. -Use o {% data variables.enterprise.management_console %} para atividades administrativas básicas: -- **Configuração inicial**: conheça o processo de configuração inicial ao entrar pela primeira vez na {% data variables.product.product_location %} acessando o endereço IP da {% data variables.product.product_location %} no navegador. -- **Configurações básicas da instância**: configure DNS, nome do host, SSL, autenticação do usuário, e-mail, serviços de monitoramento e encaminhamento de logs na página Settings (Configurações). -- **Agendamento de períodos de manutenção**: deixe {% data variables.product.product_location %} off-line durante a manutenção usando o {% data variables.enterprise.management_console %} ou o shell administrativo. -- **Solução de problemas**: gere um pacote de suporte ou exiba informações de diagnóstico de alto nível. -- **Gerenciamento de licenças**: exiba ou atualize a licença do {% data variables.product.prodname_enterprise %}. +You can always reach the {% data variables.enterprise.management_console %} using {% data variables.product.product_location %}'s IP address, even when the instance is in maintenance mode, or there is a critical application failure or hostname or SSL misconfiguration. -É possível chegar ao {% data variables.enterprise.management_console %} usando o endereço IP da {% data variables.product.product_location %}, mesmo quando a instância estiver em modo de manutenção, ou quando houver uma falha grave de aplicativo ou problema de configuração de SSL. +To access the {% data variables.enterprise.management_console %}, you must use the administrator password established during initial setup of {% data variables.product.product_location %}. You must also be able to connect to the virtual machine host on port 8443. If you're having trouble reaching the {% data variables.enterprise.management_console %}, please check intermediate firewall and security group configurations. -Para acessar o {% data variables.enterprise.management_console %}, você deve usar a senha de administrador definida na configuração inicial da {% data variables.product.product_location %}. Você também deve poder se conectar ao host da máquina virtual na porta 8443. Se tiver problemas para chegar ao {% data variables.enterprise.management_console %}, verifique as configurações intermediárias de firewall e grupo de segurança. +## Accessing the {% data variables.enterprise.management_console %} as a site administrator -## Acessar o {% data variables.enterprise.management_console %} como administrador do site - -A primeira vez que você acessar o {% data variables.enterprise.management_console %} como administrador do site, você deve enviar seu arquivo de licença do {% data variables.product.prodname_enterprise %} para efetuar a autenticação no aplicativo. Para obter mais informações, consulte "[Gerenciar a sua licença para {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)." +The first time that you access the {% data variables.enterprise.management_console %} as a site administrator, you must upload your {% data variables.product.prodname_enterprise %} license file to authenticate into the app. For more information, see "[Managing your license for {% data variables.product.prodname_enterprise %}](/billing/managing-your-license-for-github-enterprise)." {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.type-management-console-password %} -## Acessar o {% data variables.enterprise.management_console %} como usuário não autenticado +## Accessing the {% data variables.enterprise.management_console %} as an unauthenticated user -1. Acesse esta URL no navegador substituindo `hostname` pelo nome de host ou endereço IP do {% data variables.product.prodname_ghe_server %}: +1. Visit this URL in your browser, replacing `hostname` with your actual {% data variables.product.prodname_ghe_server %} hostname or IP address: ```shell http(s)://HOSTNAME/setup ``` {% data reusables.enterprise_management_console.type-management-console-password %} -## Desbloquear o {% data variables.enterprise.management_console %} após tentativas de login com falha +## Unlocking the {% data variables.enterprise.management_console %} after failed login attempts -O {% data variables.enterprise.management_console %} trava após dez tentativas de login com falha em um período de dez minutos. Antes de tentar novamente, aguarde o desbloqueio automático da tela de login, que ocorrerá após um período de dez minutos. A contagem é redefinida depois do login bem-sucedido. +The {% data variables.enterprise.management_console %} locks after ten failed login attempts are made in the span of ten minutes. You must wait for the login screen to automatically unlock before attempting to log in again. The login screen automatically unlocks as soon as the previous ten minute period contains fewer than ten failed login attempts. The counter resets after a successful login occurs. -Para bloquear o {% data variables.enterprise.management_console %} imediatamente, use o comando `ghe-reactivate-admin-login` pelo shell administrativo. Para obter mais informações, consulte "[Utilitários da linha de comando](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-reactivate-admin-login)" e "[Acessar o shell administrativo (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)". +To immediately unlock the {% data variables.enterprise.management_console %}, use the `ghe-reactivate-admin-login` command via the administrative shell. For more information, see "[Command line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-reactivate-admin-login)" and "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)." diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md index f7ea13f467..2c3a6f3bb8 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md @@ -1,9 +1,9 @@ --- -title: Utilitários de linha de comando -intro: 'O {% data variables.product.prodname_ghe_server %} tem uma série de utilitários que ajudam a resolver problemas específicos ou a executar determinadas tarefas.' +title: Command-line utilities +intro: '{% data variables.product.prodname_ghe_server %} includes a variety of utilities to help resolve particular problems or perform specific tasks.' redirect_from: - - /enterprise/admin/articles/viewing-all-services/ - - /enterprise/admin/articles/command-line-utilities/ + - /enterprise/admin/articles/viewing-all-services + - /enterprise/admin/articles/command-line-utilities - /enterprise/admin/installation/command-line-utilities - /enterprise/admin/configuration/command-line-utilities - /admin/configuration/command-line-utilities @@ -15,26 +15,25 @@ topics: - Enterprise - SSH --- +You can execute these commands from anywhere on the VM after signing in as an SSH admin user. For more information, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)." -Depois de entrar como usuário administrador com SSH, você pode executar esses comandos de qualquer lugar na VM. Para obter mais informações, consulte "[Acessar o shell administrativo (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/)". - -## Geral +## General ### ghe-announce -Este utilitário insere um banner no topo de cada página do {% data variables.product.prodname_enterprise %}. Você pode usá-lo para enviar uma comunicação a todos os usuários. +This utility sets a banner at the top of every {% data variables.product.prodname_enterprise %} page. You can use it to broadcast a message to your users. {% ifversion ghes %} -Você também pode definir um banner de anúncio usando as configurações empresariais no {% data variables.product.product_name %}. Para obter mais informações, consulte "[Personalizar mensagens de usuário na instância](/enterprise/admin/user-management/customizing-user-messages-on-your-instance#creating-a-global-announcement-banner)". +You can also set an announcement banner using the enterprise settings on {% data variables.product.product_name %}. For more information, see "[Customizing user messages on your instance](/enterprise/admin/user-management/customizing-user-messages-on-your-instance#creating-a-global-announcement-banner)." {% endif %} ```shell -# Configura uma mensagem visível para todos +# Sets a message that's visible to everyone $ ghe-announce -s MESSAGE -> Mensagem de anúncio configurada -# Remove uma mensagem já configurada +> Announcement message set. +# Removes a previously set message $ ghe-announce -u -> Mensagem de anúncio removida +> Removed the announcement message ``` {% ifversion ghes > 3.1 %} @@ -42,18 +41,18 @@ $ ghe-announce -u ### ghe-aqueduct -Este utilitário exibe informações sobre trabalhos em segundo plano, ativos e em fila. Ele fornece os mesmos números de contagem de trabalhos que a barra de estatísticas de administração, na parte superior de todas as páginas. +This utility displays information on background jobs, both active and in the queue. It provides the same job count numbers as the admin stats bar at the top of every page. -Este utilitário pode ajudar a identificar se o servidor de Aqueduct está tendo problemas no processamento de trabalhos em segundo plano. Qualquer dos seguintes cenários pode indicar um problema com o Aqueduct: +This utility can help identify whether the Aqueduct server is having problems processing background jobs. Any of the following scenarios might be indicative of a problem with Aqueduct: -* O número de trabalhos em segundo plano está aumentando, e os trabalhos ativos continuam iguais. -* Os feeds de evento não estão sendo atualizados. -* Webhooks não estão sendo acionados. -* A interface web não atualiza após um push do Git. +* The number of background jobs is increasing, while the active jobs remain the same. +* The event feeds are not updating. +* Webhooks are not being triggered. +* The web interface is not updating after a Git push. -Se você suspeitar que o Aqueduct tem uma falha, entre em contato com {% data variables.contact.contact_ent_support %} para obter ajuda. +If you suspect Aqueduct is failing, contact {% data variables.contact.contact_ent_support %} for help. -Com este comando, também é possível pausar ou retomar trabalhos na fila. +With this command, you can also pause or resume jobs in the queue. ```shell $ ghe-aqueduct status @@ -69,7 +68,7 @@ $ ghe-aqueduct resume --queue <em>QUEUE</em> ### ghe-check-disk-usage -Este utilitário verifica se há arquivos grandes ou arquivos excluídos no disco, mas que ainda têm identificadores abertos. Deve ser executado para liberar espaço na partição raiz. +This utility checks the disk for large files or files that have been deleted but still have open file handles. This should be run when you're trying to free up space on the root partition. ```shell ghe-check-disk-usage @@ -77,18 +76,18 @@ ghe-check-disk-usage ### ghe-cleanup-caches -Este utilitário limpa uma série de caches que podem vir a ocupar espaço extra em disco no volume raiz. Se você perceber que o uso do espaço em disco do volume raiz aumenta muito ao longo do tempo, talvez seja uma boa ideia executar este utilitário e verificar se ele ajuda a reduzir o uso geral. +This utility cleans up a variety of caches that might potentially take up extra disk space on the root volume. If you find your root volume disk space usage increasing notably over time it would be a good idea to run this utility to see if it helps reduce overall usage. ```shell ghe-cleanup-caches ``` ### ghe-cleanup-settings -Este utilitário apaga todas as configurações do {% data variables.enterprise.management_console %}. +This utility wipes all existing {% data variables.enterprise.management_console %} settings. {% tip %} -**Dica**: {% data reusables.enterprise_enterprise_support.support_will_ask_you_to_run_command %} +**Tip**: {% data reusables.enterprise_enterprise_support.support_will_ask_you_to_run_command %} {% endtip %} @@ -98,24 +97,24 @@ ghe-cleanup-settings ### ghe-config -Com este utilitário, você pode recuperar e modificar as definições de configuração da {% data variables.product.product_location %}. +With this utility, you can both retrieve and modify the configuration settings of {% data variables.product.product_location %}. ```shell $ ghe-config <em>core.github-hostname</em> -# Gera o valor de configuração de `core.github-hostname` +# Gets the configuration value of `core.github-hostname` $ ghe-config <em>core.github-hostname</em> <em>'example.com'</em> -# Define o valor de configuração de `core.github-hostname` como `example.com` +# Sets the configuration value of `core.github-hostname` to `example.com` $ ghe-config -l -# Lista todos os valores de configuração +# Lists all the configuration values ``` -Permite encontrar o identificador universalmente exclusivo (UUID) do seu nó em `cluster.conf`. +Allows you to find the universally unique identifier (UUID) of your node in `cluster.conf`. ```shell $ ghe-config <em>HOSTNAME</em>.uuid ``` {% ifversion ghes %} -Permite isentar uma lista de usuários do limite de taxa de da API. Para obter mais informações, consulte "[Recursos na API REST](/rest/overview/resources-in-the-rest-api#rate-limiting)". +Allows you to exempt a list of users from API rate limits. For more information, see "[Resources in the REST API](/rest/overview/resources-in-the-rest-api#rate-limiting)." ``` shell $ ghe-config app.github.rate-limiting-exempt-users "<em>hubot</em> <em>github-actions</em>" @@ -125,9 +124,9 @@ $ ghe-config app.github.rate-limiting-exempt-users "<em>hubot</em> <em>github-ac ### ghe-config-apply -Este utilitário aplica configurações do {% data variables.enterprise.management_console %}, recarrega os serviços do sistema, prepara um dispositivo de armazenamento, recarrega os serviços de aplicativos e executa as migrações pendentes de banco de dados. Ele equivale a clicar em **Save settings** (Salvar configurações) na IU da web do {% data variables.enterprise.management_console %} ou a enviar uma solicitação POST [ao endpoint `/setup/api/configure`](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console). +This utility applies {% data variables.enterprise.management_console %} settings, reloads system services, prepares a storage device, reloads application services, and runs any pending database migrations. It is equivalent to clicking **Save settings** in the {% data variables.enterprise.management_console %}'s web UI or to sending a POST request to [the `/setup/api/configure` endpoint](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console). -É provável que você não precise executar essa ação manualmente, mas é possível fazer isso caso você queira automatizar o processo de salvar suas configurações via SSH. +You will probably never need to run this manually, but it's available if you want to automate the process of saving your settings via SSH. ```shell ghe-config-apply @@ -135,7 +134,7 @@ ghe-config-apply ### ghe-console -Este utilitário abre o console do GitHub Rails no appliance do {% data variables.product.prodname_enterprise %}. {% data reusables.command_line.use_with_support_only %} +This utility opens the GitHub Rails console on your {% data variables.product.prodname_enterprise %} appliance. {% data reusables.command_line.use_with_support_only %} ```shell ghe-console @@ -143,16 +142,16 @@ ghe-console ### ghe-dbconsole -Este utilitário abre uma sessão do banco de dados MySQL no appliance do {% data variables.product.prodname_enterprise %}. {% data reusables.command_line.use_with_support_only %} +This utility opens a MySQL database session on your {% data variables.product.prodname_enterprise %} appliance. {% data reusables.command_line.use_with_support_only %} ```shell ghe-dbconsole ``` ### ghe-es-index-status -Este utilitário retorna um resumo dos índices do Elasticsearch no formato CSV. +This utility returns a summary of Elasticsearch indexes in CSV format. -Imprimir um resumo do índice com uma linha de header em `STDOUT`: +Print an index summary with a header row to `STDOUT`: ```shell $ ghe-es-index-status -do > warning: parser/current is loading parser/ruby23, which recognizes @@ -171,7 +170,7 @@ $ ghe-es-index-status -do > wikis-4,true,true,true,true,100.0,2613dec44bd14e14577803ac1f9e4b7e07a7c234 ``` -Imprimir um resumo do índice e os resultados em `column` para facilitar a leitura: +Print an index summary and pipe results to `column` for readability: ```shell $ ghe-es-index-status -do | column -ts, @@ -193,7 +192,7 @@ $ ghe-es-index-status -do | column -ts, ### ghe-legacy-github-services-report -Este utilitário lista os repositórios no appliance que usam o {% data variables.product.prodname_dotcom %} Services, um método de integração que será descontinuado em 1 de outubro de 2018. Os usuários do seu appliance podem ter configurado o {% data variables.product.prodname_dotcom %} Services para criar notificações de pushes em determinados repositórios. Para obter mais informações, consulte "[Anunciar a depreciação dos serviços de {% data variables.product.prodname_dotcom %}](https://developer.github.com/changes/2018-04-25-github-services-deprecation/)" em {% data variables.product.prodname_blog %} ou "[Substituir serviços de {% data variables.product.prodname_dotcom %}](/developers/overview/replacing-github-services)". Para saber mais sobre este comando ou consultar opções adicionais, use o sinalizador `-h`. +This utility lists repositories on your appliance that use {% data variables.product.prodname_dotcom %} Services, an integration method that will be discontinued on October 1, 2018. Users on your appliance may have set up {% data variables.product.prodname_dotcom %} Services to create notifications for pushes to certain repositories. For more information, see "[Announcing the deprecation of {% data variables.product.prodname_dotcom %} Services](https://developer.github.com/changes/2018-04-25-github-services-deprecation/)" on {% data variables.product.prodname_blog %} or "[Replacing {% data variables.product.prodname_dotcom %} Services](/developers/overview/replacing-github-services)." For more information about this command or for additional options, use the `-h` flag. ```shell ghe-legacy-github-services-report @@ -202,7 +201,7 @@ ghe-legacy-github-services-report ### ghe-logs-tail -Este utilitário permite registrar todos os arquivos de log relevantes da sua instalação. Você pode passar as opções para limitar os logs a conjuntos específicos. Para consultar opções adicionais, use o sinalizador -h. +This utility lets you tail log all relevant log files from your installation. You can pass options in to limit the logs to specific sets. Use the -h flag for additional options. ```shell ghe-logs-tail @@ -210,7 +209,7 @@ ghe-logs-tail ### ghe-maintenance -Este utilitário permite controlar o estado do modo de manutenção da instalação. Ele foi desenvolvido para uso principalmente nos bastidores do {% data variables.enterprise.management_console %}, mas também pode ser usado diretamente. +This utility allows you to control the state of the installation's maintenance mode. It's designed to be used primarily by the {% data variables.enterprise.management_console %} behind-the-scenes, but it can be used directly. ```shell ghe-maintenance -h @@ -218,7 +217,7 @@ ghe-maintenance -h ### ghe-motd -Este utilitário exibe novamente a mensagem do dia (MOTD) que os administradores veem quando acessam a instância através do shell administrativo. A saída contém uma visão geral do estado da instância. +This utility re-displays the message of the day (MOTD) that administrators see when accessing the instance via the administrative shell. The output contains an overview of the instance's state. ```shell ghe-motd @@ -226,7 +225,7 @@ ghe-motd ### ghe-nwo -Este utilitário retorna o nome e o proprietário de um repositório com base no ID do repositório. +This utility returns a repository's name and owner based on the repository ID. ```shell ghe-nwo <em>REPOSITORY_ID</em> @@ -234,36 +233,36 @@ ghe-nwo <em>REPOSITORY_ID</em> ### ghe-org-admin-promote -Use este comando para conceder privilégios de proprietário da organização a usuários com privilégios de administrador do site no appliance ou a qualquer usuário em uma única organização. Você deve especificar um usuário e/ou organização. O comando `ghe-org-admin-promote` sempre solicitará a confirmação antes da execução, a menos que você use o sinalizador `-y` para ignorar essa etapa. +Use this command to give organization owner privileges to users with site admin privileges on the appliance, or to give organization owner privileges to any single user in a single organization. You must specify a user and/or an organization. The `ghe-org-admin-promote` command will always ask for confirmation before running unless you use the `-y` flag to bypass the confirmation. -É possível usar estas opções com o utilitário: +You can use these options with the utility: -- O sinalizador `-u` especifica um nome de usuário. Use este sinalizador para conceder privilégios de proprietário da organização a um usuário. Omita o sinalizador `-u` para promover todos os administradores do site à organização especificada. -- O sinalizador `-o` especifica uma organização. Use este sinalizador para conceder privilégios de proprietário em uma organização. Omita o sinalizador `-o` para conceder permissões de proprietário em todas as organizações a um administrador do site. -- O sinalizador `-a` concede privilégios de proprietário em todas as organizações a todos os administradores do site. -- O sinalizador `-y` ignora a confirmação manual. +- The `-u` flag specifies a username. Use this flag to give organization owner privileges to a specific user. Omit the `-u` flag to promote all site admins to the specified organization. +- The `-o` flag specifies an organization. Use this flag to give owner privileges in a specific organization. Omit the `-o` flag to give owner permissions in all organizations to the specified site admin. +- The `-a` flag gives owner privileges in all organizations to all site admins. +- The `-y` flag bypasses the manual confirmation. -Este utilitário não pode promover um administrador externo a proprietário de todas as organizações. Para promover uma conta de usuário comum a administrador do site, use [ghe-user-promote](#ghe-user-promote). +This utility cannot promote a non-site admin to be an owner of all organizations. You can promote an ordinary user account to a site admin with [ghe-user-promote](#ghe-user-promote). -Conceder privilégios de proprietário da organização em uma organização específica para um administrador específico do site +Give organization owner privileges in a specific organization to a specific site admin ```shell ghe-org-admin-promote -u <em>USERNAME</em> -o <em>ORGANIZATION</em> ``` -Conceder privilégios de proprietário da organização a um administrador do site em todas as organizações +Give organization owner privileges in all organizations to a specific site admin ```shell ghe-org-admin-promote -u <em>USERNAME</em> ``` -Conceder privilégios de proprietário da organização a todos os administradores do site em uma organização específica +Give organization owner privileges in a specific organization to all site admins ```shell ghe-org-admin-promote -o <em>ORGANIZATION</em> ``` -Conceder privilégios de proprietário da organização a todos os administradores do site em todas as organizações +Give organization owner privileges in all organizations to all site admins ```shell ghe-org-admin-promote -a @@ -271,7 +270,7 @@ ghe-org-admin-promote -a ### ghe-reactivate-admin-login -Use este comando para desbloquear imediatamente o {% data variables.enterprise.management_console %} após 10 tentativas de login com falha no período de 10 minutos. +Use this command to immediately unlock the {% data variables.enterprise.management_console %} after 10 failed login attempts in the span of 10 minutes. ```shell $ ghe-reactivate-admin-login @@ -282,51 +281,51 @@ $ ghe-reactivate-admin-login ### ghe-resque-info -Este utilitário exibe informações sobre trabalhos em segundo plano, ativos e em fila. Ele fornece os mesmos números de contagem de trabalhos que a barra de estatísticas de administração, na parte superior de todas as páginas. +This utility displays information on background jobs, both active and in the queue. It provides the same job count numbers as the admin stats bar at the top of every page. -Este utilitário pode ajudar a identificar se o servidor Resque está tendo problemas ao processar trabalhos em segundo plano. Quaisquer dos cenários a seguir podem indicar problemas com o Resque: +This utility can help identify whether the Resque server is having problems processing background jobs. Any of the following scenarios might be indicative of a problem with Resque: -* O número de trabalhos em segundo plano está aumentando, e os trabalhos ativos continuam iguais. -* Os feeds de evento não estão sendo atualizados. -* Webhooks não estão sendo acionados. -* A interface web não atualiza após um push do Git. +* The number of background jobs is increasing, while the active jobs remain the same. +* The event feeds are not updating. +* Webhooks are not being triggered. +* The web interface is not updating after a Git push. -Se você desconfiar de falha no Resque, entre em contato com o {% data variables.contact.contact_ent_support %}. +If you suspect Resque is failing, contact {% data variables.contact.contact_ent_support %} for help. -Com este comando, também é possível pausar ou retomar trabalhos na fila. +With this command, you can also pause or resume jobs in the queue. ```shell $ ghe-resque-info -# lista filas e o número de trabalhos em fila +# lists queues and the number of currently queued jobs $ ghe-resque-info -p <em>QUEUE</em> -# pausa a fila especificada +# pauses the specified queue $ ghe-resque-info -r <em>QUEUE</em> -# retoma a fila especificada +# resumes the specified queue ``` {% endif %} ### ghe-saml-mapping-csv -Este utilitário pode ajudar a mapear os registros SAML. +This utility can help map SAML records. -Para criar um arquivo CSV contendo todo o mapeamento SAML para os seus usuários do {% data variables.product.product_name %}: +To create a CSV file containing all the SAML mapping for your {% data variables.product.product_name %} users: ```shell $ ghe-saml-mapping-csv -d ``` -Para executar uma execução seca de atualização de mapeamentos SAML com novos valores: +To perform a dry run of updating SAML mappings with new values: ```shell $ ghe-saml-mapping-csv -u -n -f /path/to/file ``` -Para atualizar os mapeamentos SAML com novos valores: +To update SAML mappings with new values: ```shell $ ghe-saml-mapping-csv -u -f /path/to/file ``` ### ghe-service-list -Este utilitário lista todos os serviços iniciados ou parados (em execução ou em espera) no appliance. +This utility lists all of the services that have been started or stopped (are running or waiting) on your appliance. ```shell $ ghe-service-list @@ -353,7 +352,7 @@ stop/waiting ### ghe-set-password -Com `ghe-set-password`, você pode definir uma nova senha para autenticação no [{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-management-console). +With `ghe-set-password`, you can set a new password to authenticate into the [{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-management-console). ```shell ghe-set-password <new_password> @@ -361,55 +360,55 @@ ghe-set-password <new_password> ### ghe-ssh-check-host-keys -Este utilitário verifica as chaves do host SSH atuais para identificar chaves vazadas conhecidas. +This utility checks the existing SSH host keys against the list of known leaked SSH host keys. ```shell $ ghe-ssh-check-host-keys ``` -Se houver alguma chave vazada, o utilitário exibirá o status `1` e a seguinte mensagem: +If a leaked host key is found the utility exits with status `1` and a message: ```shell -> Uma ou mais chaves do host SSH foram encontradas na lista de bloqueio. -> Redefina suas chaves de host usando ghe-ssh-roll-host-keys. +> One or more of your SSH host keys were found in the blacklist. +> Please reset your host keys using ghe-ssh-roll-host-keys. ``` -Se não houver chaves de host vazadas, o utilitário exibirá o status `0` e a seguinte mensagem: +If a leaked host key was not found, the utility exits with status `0` and a message: ```shell -> As chaves de host SSH não foram encontradas na lista de bloqueio. -> No momento, nenhuma etapa adicional é necessária/recomendada. +> The SSH host keys were not found in the SSH host key blacklist. +> No additional steps are needed/recommended at this time. ``` ### ghe-ssh-roll-host-keys -Este utilitário acumula as chaves do host SSH e as substitui por chaves recém-geradas. +This utility rolls the SSH host keys and replaces them with newly generated keys. ```shell $ sudo ghe-ssh-roll-host-keys -Continuar para acumular chaves de host SSH? Esta ação excluirá as -chaves atuais em /etc/ssh/ssh_host_* para gerar chaves novas. [y/N] +Proceed with rolling SSH host keys? This will delete the +existing keys in /etc/ssh/ssh_host_* and generate new ones. [y/N] -# Pressione 'Y' para confirmar a exclusão ou use o switch -y para ignorar esta solicitação +# Press 'Y' to confirm deleting, or use the -y switch to bypass this prompt -> chaves de host SSH foram acumuladas com êxito. +> SSH host keys have successfully been rolled. ``` ### ghe-ssh-weak-fingerprints -Este utilitário retorna um relatório de chaves SSH fracas conhecidas armazenadas no appliance do {% data variables.product.prodname_enterprise %}. Você também pode revogar as chaves do usuário como uma ação em lote. O utilitário relatará as chaves de sistema fracas, que você deve revogar manualmente no [{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-management-console). +This utility returns a report of known weak SSH keys stored on the {% data variables.product.prodname_enterprise %} appliance. You can optionally revoke user keys as a bulk action. The utility will report weak system keys, which you must manually revoke in the [{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-management-console). ```shell -# Imprimir um relatório de chaves SSH fracas do usuário e do sistema +# Print a report of weak user and system SSH keys $ ghe-ssh-weak-fingerprints -# Revogar todas as chaves fracas de usuário +# Revoke all weak user keys $ ghe-ssh-weak-fingerprints --revoke ``` ### ghe-ssl-acme -Este utilitário permite instalar um certificado Let's Encrypt no seu appliance do {% data variables.product.prodname_enterprise %}. Para obter mais informações, consulte "[Configurar o TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls)". +This utility allows you to install a Let's Encrypt certificate on your {% data variables.product.prodname_enterprise %} appliance. For more information, see "[Configuring TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls)." -Você pode usar o sinalizador `-x` para remover a configuração ACME. +You can use the `-x` flag to remove the ACME configuration. ```shell ghe-ssl-acme -e @@ -417,11 +416,11 @@ ghe-ssl-acme -e ### ghe-ssl-ca-certificate-install -Este utilitário permite instalar um certificado CA personalizado de raiz no seu appliance do {% data variables.product.prodname_enterprise %}. O certificado deve estar no formato PEM. Além disso, se o seu provedor de certificados incluir vários certificados CA em um só arquivo, você deverá separá-los em arquivos a serem passados individualmente para ` ghe-ssl-ca-certificate-install`. +This utility allows you to install a custom root CA certificate on your {% data variables.product.prodname_enterprise %} server. The certificate must be in PEM format. Furthermore, if your certificate provider includes multiple CA certificates in a single file, you must separate them into individual files that you then pass to `ghe-ssl-ca-certificate-install` one at a time. -Execute este utilitário para adicionar uma cadeia de certificados para verificação de assinatura de commits S/MIME. Para obter mais informações, consulte "[Sobre a verificação de assinatura de commit](/enterprise/{{ currentVersion }}/user/articles/about-commit-signature-verification/)". +Run this utility to add a certificate chain for S/MIME commit signature verification. For more information, see "[About commit signature verification](/enterprise/{{ currentVersion }}/user/articles/about-commit-signature-verification/)." -Execute este utilitário quando a {% data variables.product.product_location %} não conseguir se conectar a outro servidor por ele estar usando um certificado SSL autoassinado ou um certificado SSL para o qual não há o pacote CA necessário. Uma forma de confirmar essa questão é executar `openssl s_client -connect host:port -verify 0 -CApath /etc/ssl/certs` na {% data variables.product.product_location %}. Se o certificado SSL do servidor remoto puder ser verificado, sua `SSL-Session` deverá ter um código de retorno 0, conforme mostrado abaixo. +Run this utility when {% data variables.product.product_location %} is unable to connect to another server because the latter is using a self-signed SSL certificate or an SSL certificate for which it doesn't provide the necessary CA bundle. One way to confirm this is to run `openssl s_client -connect host:port -verify 0 -CApath /etc/ssl/certs` from {% data variables.product.product_location %}. If the remote server's SSL certificate can be verified, your `SSL-Session` should have a return code of 0, as shown below. ``` SSL-Session: @@ -436,7 +435,7 @@ SSL-Session: Verify return code: 0 (ok) ``` -Por outro lado, se o certificado SSL do servidor remoto *não* puder ser verificado, sua `SSL-Session` deverá ter um código de retorno diferente de zero: +If, on the other hand, the remote server's SSL certificate can *not* be verified, your `SSL-Session` should have a nonzero return code: ``` SSL-Session: @@ -451,9 +450,9 @@ SSL-Session: Verify return code: 27 (certificate not trusted) ``` -É possível usar estas opções adicionais com o utilitário: -- O sinalizador `-r` permite desinstalar um certificado CA; -- O sinalizador `-h` exibe mais informações de uso. +You can use these additional options with the utility: +- The `-r` flag allows you to uninstall a CA certificate. +- The `-h` flag displays more usage information. ```shell ghe-ssl-ca-certificate-install -c <em>/path/to/certificate</em> @@ -461,9 +460,9 @@ ghe-ssl-ca-certificate-install -c <em>/path/to/certificate</em> ### ghe-ssl-generate-csr -Com este utilitário, você pode gerar uma chave privada e uma solicitação de assinatura de certificado (CSR, Certificate Signing Request) a ser compartilhada com uma autoridade certificada comercial ou privada para obter um certificado válido na sua instância. Para obter mais informações, consulte "[Configurar o TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls)". +This utility allows you to generate a private key and certificate signing request (CSR), which you can share with a commercial or private certificate authority to get a valid certificate to use with your instance. For more information, see "[Configuring TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls)." -Para saber mais sobre este comando ou consultar opções adicionais, use o sinalizador `-h`. +For more information about this command or for additional options, use the `-h` flag. ```shell ghe-ssl-generate-csr @@ -471,7 +470,7 @@ ghe-ssl-generate-csr ### ghe-storage-extend -Algumas plataformas exigem este script para aumentar o volume de usuários. Para obter mais informações, consulte "[Aumentar a capacidade de armazenamento](/enterprise/admin/guides/installation/increasing-storage-capacity/)". +Some platforms require this script to expand the user volume. For more information, see "[Increasing Storage Capacity](/enterprise/admin/guides/installation/increasing-storage-capacity/)". ```shell $ ghe-storage-extend @@ -479,7 +478,7 @@ $ ghe-storage-extend ### ghe-version -Este utilitário imprime a versão, a plataforma e a compilação da {% data variables.product.product_location %}. +This utility prints the version, platform, and build of {% data variables.product.product_location %}. ```shell $ ghe-version @@ -487,26 +486,26 @@ $ ghe-version ### ghe-webhook-logs -Este utilitário retorna logs de entrega de webhook para os administradores revisarem e identificarem problemas. +This utility returns webhook delivery logs for administrators to review and identify any issues. ```shell ghe-webhook-logs ``` -Para exibir todas as entregas de hook falhas do último dia: +To show all failed hook deliveries in the past day: {% ifversion ghes %} ```shell ghe-webhook-logs -f -a <em>YYYY-MM-DD</em> ``` -O formato da data deve ser `AAAA-MM-DD`, `AAAA-MM-DD HH:MM:SS`, ou `AAAA-MM-DD HH:MM:SS (+/-) HH:M`. +The date format should be `YYYY-MM-DD`, `YYYY-MM-DD HH:MM:SS`, or `YYYY-MM-DD HH:MM:SS (+/-) HH:M`. {% else %} ```shell ghe-webhook-logs -f -a <em>YYYYMMDD</em> ``` {% endif %} -Para exibir a carga útil total do hook, o resultado e quaisquer exceções para a entrega: +To show the full hook payload, result, and any exceptions for the delivery: {% ifversion ghes %} ```shell ghe-webhook-logs -g <em>delivery-guid</em> @@ -521,7 +520,7 @@ ghe-webhook-logs -g <em>delivery-guid</em> -v ### ghe-cluster-status -Verifique a saúde dos seus nós e serviços em uma implantação de clustering de {% data variables.product.prodname_ghe_server %}. +Check the health of your nodes and services in a cluster deployment of {% data variables.product.prodname_ghe_server %}. ```shell $ ghe-cluster-status @@ -529,26 +528,26 @@ $ ghe-cluster-status ### ghe-cluster-support-bundle -Este utilitário cria um pacote de suporte tarball com logs importantes de cada nó em configurações de replicação geográfica ou de cluster. +This utility creates a support bundle tarball containing important logs from each of the nodes in either a Geo-replication or Clustering configuration. -O comando cria o tarball em */tmp* por padrão, mas você também pode criar em `cat` para `STDOUT` a fim de facilitar a transmissão por SSH. Fazer isso é útil caso a interface da web não responda ou baixe um pacote de suporte de */setup/support* que não funcione. Você deve usar este comando se quiser gerar um pacote *estendido*, com logs mais antigos. Também é possível usá-lo para fazer upload do pacote de suporte de cluster diretamente para o suporte do {% data variables.product.prodname_enterprise %}. +By default, the command creates the tarball in */tmp*, but you can also have it `cat` the tarball to `STDOUT` for easy streaming over SSH. This is helpful in the case where the web UI is unresponsive or downloading a support bundle from */setup/support* doesn't work. You must use this command if you want to generate an *extended* bundle, containing older logs. You can also use this command to upload the cluster support bundle directly to {% data variables.product.prodname_enterprise %} support. -Para criar um pacote padrão: +To create a standard bundle: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-cluster-support-bundle -o' > cluster-support-bundle.tgz ``` -Para criar um pacote estendido: +To create an extended bundle: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-cluster-support-bundle -x -o' > cluster-support-bundle.tgz ``` -Para enviar um pacote para {% data variables.contact.github_support %}: +To send a bundle to {% data variables.contact.github_support %}: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-cluster-support-bundle -u' ``` -Para enviar um pacote para {% data variables.contact.github_support %} e associar o pacote a um tíquete: +To send a bundle to {% data variables.contact.github_support %} and associate the bundle with a ticket: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-cluster-support-bundle -t <em>ticket-id</em>' ``` @@ -556,7 +555,7 @@ $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-cluster-support-bundle -t <em>ticke {% ifversion ghes %} ### ghe-cluster-failover -Falha ao sair de nós de cluster ativos para nós de cluster passivo. Para obter mais informações, consulte "[Iniciar um failover para seu cluster de réplica](/enterprise/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster)". +Fail over from active cluster nodes to passive cluster nodes. For more information, see "[Initiating a failover to your replica cluster](/enterprise/admin/enterprise-management/initiating-a-failover-to-your-replica-cluster)." ```shell ghe-cluster-failover @@ -565,43 +564,43 @@ ghe-cluster-failover ### ghe-dpages -Este utilitário permite que você gerencie o servidor distribuído {% data variables.product.prodname_pages %}. +This utility allows you to manage the distributed {% data variables.product.prodname_pages %} server. ```shell ghe-dpages ``` -Para mostrar um resumo da localização e saúde do repositório: +To show a summary of repository location and health: ```shell ghe-dpages status ``` -Para evacuar um serviço de armazenamento {% data variables.product.prodname_pages %} antes de evacuar um nó de cluster: +To evacuate a {% data variables.product.prodname_pages %} storage service before evacuating a cluster node: ```shell ghe-dpages evacuate pages-server-<em>UUID</em> ``` ### ghe-spokes -Este utilitário permite gerenciar as três cópias de cada repositório nos servidores distribuídos do git. +This utility allows you to manage the three copies of each repository on the distributed git servers. ```shell ghe-spokes ``` -Para mostrar um resumo da localização e saúde do repositório: +To show a summary of repository location and health: ```shell ghe-spokes status ``` -Para mostrar os servidores em que o repositório está armazenado: +To show the servers in which the repository is stored: ```shell ghe-spokes route ``` -Para evacuar os serviços de armazenamento em um nó de cluster: +To evacuate storage services on a cluster node: ```shell ghe-spokes server evacuate git-server-<em>UUID</em> @@ -609,7 +608,7 @@ ghe-spokes server evacuate git-server-<em>UUID</em> ### ghe-storage -Este utilitário permite remover todos os serviços de armazenamento antes de remover um nó de cluster. +This utility allows you to evacuate all storage services before evacuating a cluster node. ```shell ghe-storage evacuate storage-server-<em>UUID</em> @@ -619,7 +618,7 @@ ghe-storage evacuate storage-server-<em>UUID</em> ### ghe-btop -Interface do tipo `top` para as operações atuais do Git. +A `top`-like interface for current Git operations. ```shell ghe-btop [ <port number> | --help | --usage ] @@ -627,7 +626,7 @@ ghe-btop [ <port number> | --help | --usage ] #### ghe-governor -Este utilitário ajuda a analisar o tráfego do Git. Ela consulta arquivos de dados do _Governador_, localizados em `/data/user/gitmon`. {% data variables.product.company_short %} mantém uma hora de dados por arquivo, retidos por duas semanas. Para obter mais informações, consulte [Analisando tráfego do Git que usa o Governador](https://github.community/t/analyzing-git-traffic-using-governor/13516) em {% data variables.product.prodname_gcf %}. +This utility helps to analyze Git traffic. It queries _Governor_ data files, located under `/data/user/gitmon`. {% data variables.product.company_short %} holds one hour of data per file, retained for two weeks. For more information, see [Analyzing Git traffic using Governor](https://github.community/t/analyzing-git-traffic-using-governor/13516) in {% data variables.product.prodname_gcf %}. ```bash ghe-governor <subcommand> <column> [options] @@ -640,7 +639,7 @@ Usage: ghe-governor [-h] <subcommand> args OPTIONS: -h | --help Show this message. -Os subcomandos válidos são: +Valid subcommands are: aggregate Find the top (n) groups of queries for a grouping function and metric health Summarize all recent activity on one or more servers top Find the top (n) queries for a given metric @@ -652,7 +651,7 @@ Try ghe-governor <subcommand> --help for more information on the arguments each ### ghe-repo -Este utilitário permite mudar para o diretório de um repositório e abrir um shell interativo como usuário do `git`. Você pode fazer a inspeção ou manutenção manual de um repositório usando comandos como `git-*` ou `git-nw-*`. +This utility allows you to change to a repository's directory and open an interactive shell as the `git` user. You can perform manual inspection or maintenance of a repository via commands like `git-*` or `git-nw-*`. ```shell ghe-repo <em>username</em>/<em>reponame</em> @@ -660,64 +659,64 @@ ghe-repo <em>username</em>/<em>reponame</em> ### ghe-repo-gc -Este utilitário empacota manualmente uma rede de repositórios para otimizar o armazenamento do pacote. Se você tem um repositório muito grande, esse comando pode ajudar a reduzir o tamanho. O {% data variables.product.prodname_enterprise %} executa automaticamente este comando durante toda a sua interação com uma rede de repositórios. +This utility manually repackages a repository network to optimize pack storage. If you have a large repository, running this command may help reduce its overall size. {% data variables.product.prodname_enterprise %} automatically runs this command throughout your interaction with a repository network. -Você pode adicionar o argumento opcional `--prune` para remover objetos inacessíveis do Git que não são referenciados em um branch, tag ou qualquer outra referência. Fazer isso é útil principalmente para remover de imediato [informações confidenciais já eliminadas](/enterprise/user/articles/remove-sensitive-data/). +You can add the optional `--prune` argument to remove unreachable Git objects that aren't referenced from a branch, tag, or any other ref. This is particularly useful for immediately removing [previously expunged sensitive information](/enterprise/user/articles/remove-sensitive-data/). ```shell ghe-repo-gc <em>username</em>/<em>reponame</em> ``` -## Importação e exportação +## Import and export ### ghe-migrator -O `ghe-migrator` é uma ferramenta de alta fidelidade que ajuda a fazer migrações de uma instância do GitHub para outra. Você pode consolidar suas instâncias ou mover a organização, os usuários, as equipes e os repositórios do GitHub.com para o {% data variables.product.prodname_enterprise %}. +`ghe-migrator` is a hi-fidelity tool to help you migrate from one GitHub instance to another. You can consolidate your instances or move your organization, users, teams, and repositories from GitHub.com to {% data variables.product.prodname_enterprise %}. -Para obter mais informações, consulte nosso guia sobre [como migrar dados de usuário, organização e repositório](/enterprise/admin/guides/migrations/). +For more information, please see our guide on [migrating user, organization, and repository data](/enterprise/admin/guides/migrations/). ### git-import-detect -Em uma URL, detecta qual tipo de sistema de gerenciamento de controle de origem está na outra extremidade. Provavelmente esse processo já é conhecido nas importações manuais, mas pode ser muito útil em scripts automatizados. +Given a URL, detect which type of source control management system is at the other end. During a manual import this is likely already known, but this can be very useful in automated scripts. ```shell git-import-detect ``` ### git-import-hg-raw -Este utilitário importa um repositório Mercurial para este repositório Git. Para obter mais informações, consulte [Importar dados de sistemas de controle de versões de terceiros](/enterprise/{}/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." +This utility imports a Mercurial repository to this Git repository. For more information, see "[Importing data from third party version control systems](/enterprise/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." ```shell git-import-hg-raw ``` ### git-import-svn-raw -Este utilitário importa histórico do Subversion e dados de arquivos para um branch do Git. Trata-se de uma cópia direta da árvore, ignorando qualquer distinção de trunk ou branch. Para obter mais informações, consulte [Importar dados de sistemas de controle de versões de terceiros](/enterprise/{}/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." +This utility imports Subversion history and file data into a Git branch. This is a straight copy of the tree, ignoring any trunk or branch distinction. For more information, see "[Importing data from third party version control systems](/enterprise/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." ```shell git-import-svn-raw ``` ### git-import-tfs-raw -Este utilitário faz a importação a partir do Controle de Versão da Fundação da Equipe (TFVC). Para obter mais informações, consulte [Importar dados de sistemas de controle de versões de terceiros](/enterprise/{}/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." +This utility imports from Team Foundation Version Control (TFVC). For more information, see "[Importing data from third party version control systems](/enterprise/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." ```shell git-import-tfs-raw ``` ### git-import-rewrite -Este utilitário reescreve o repositório importado. Isso dá a você a oportunidade de renomear autores e, para o Subversion e TFVC, produz branches Git baseados em pastas. Para obter mais informações, consulte [Importar dados de sistemas de controle de versões de terceiros](/enterprise/{}/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." +This utility rewrites the imported repository. This gives you a chance to rename authors and, for Subversion and TFVC, produces Git branches based on folders. For more information, see "[Importing data from third party version control systems](/enterprise/admin/guides/migrations/importing-data-from-third-party-version-control-systems/)." ```shell git-import-rewrite ``` -## Suporte +## Support ### ghe-diagnostics -Este utilitário faz uma série de verificações e reúne informações sobre a instalação que você pode enviar ao suporte para ajudar a diagnosticar problemas. +This utility performs a variety of checks and gathers information about your installation that you can send to support to help diagnose problems you're having. -No momento, a saída do utilitário é semelhante ao download das informações de diagnóstico no {% data variables.enterprise.management_console %}, mas ele pode ter melhorias adicionais ao longo do tempo que não estão disponíveis na interface da web. Para obter mais informações, consulte "[Criar e compartilhar arquivos de diagnóstico](/enterprise/admin/guides/enterprise-support/providing-data-to-github-support#creating-and-sharing-diagnostic-files)". +Currently, this utility's output is similar to downloading the diagnostics info in the {% data variables.enterprise.management_console %}, but may have additional improvements added to it over time that aren't available in the web UI. For more information, see "[Creating and sharing diagnostic files](/enterprise/admin/guides/enterprise-support/providing-data-to-github-support#creating-and-sharing-diagnostic-files)." ```shell ghe-diagnostics @@ -726,26 +725,26 @@ ghe-diagnostics ### ghe-support-bundle {% data reusables.enterprise_enterprise_support.use_ghe_cluster_support_bundle %} -Esse utilitário cria um tarball do pacote de suporte com logs importantes da sua instância. +This utility creates a support bundle tarball containing important logs from your instance. -O comando cria o tarball em */tmp* por padrão, mas você também pode criar em `cat` para `STDOUT` a fim de facilitar a transmissão por SSH. Fazer isso é útil caso a interface da web não responda ou baixe um pacote de suporte de */setup/support* que não funcione. Você deve usar este comando se quiser gerar um pacote *estendido*, com logs mais antigos. Também é possível usá-lo para fazer upload do pacote de suporte diretamente para o suporte do {% data variables.product.prodname_enterprise %}. +By default, the command creates the tarball in */tmp*, but you can also have it `cat` the tarball to `STDOUT` for easy streaming over SSH. This is helpful in the case where the web UI is unresponsive or downloading a support bundle from */setup/support* doesn't work. You must use this command if you want to generate an *extended* bundle, containing older logs. You can also use this command to upload the support bundle directly to {% data variables.product.prodname_enterprise %} support. -Para criar um pacote padrão: +To create a standard bundle: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -o' > support-bundle.tgz ``` -Para criar um pacote estendido: +To create an extended bundle: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -x -o' > support-bundle.tgz ``` -Para enviar um pacote para {% data variables.contact.github_support %}: +To send a bundle to {% data variables.contact.github_support %}: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -u' ``` -Para enviar um pacote para {% data variables.contact.github_support %} e associar o pacote a um tíquete: +To send a bundle to {% data variables.contact.github_support %} and associate the bundle with a ticket: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -t <em>ticket-id</em>' @@ -753,32 +752,32 @@ $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -t <em>ticket-id</em ### ghe-support-upload -Este utilitário envia informações do seu appliance para o suporte do {% data variables.product.prodname_enterprise %}. Você pode especificar um arquivo local ou fornecer um fluxo de até 100 MB de dados via `STDIN`. Os dados carregados também podem ser associados a um tíquete de suporte. +This utility sends information from your appliance to {% data variables.product.prodname_enterprise %} support. You can either specify a local file, or provide a stream of up to 100MB of data via `STDIN`. The uploaded data can optionally be associated with a support ticket. -Para enviar um arquivo para {% data variables.contact.github_support %} e associar o arquivo a um tíquete: +To send a file to {% data variables.contact.github_support %} and associate the file with a ticket: ```shell ghe-support-upload -f <em>path/to/your/file</em> -t <em>ticket-id</em> ``` -Para fazer upload de dados via `STDIN` e associá-los a dados de um tíquete: +To upload data via `STDIN` and associating the data with a ticket: ```shell <em>ghe-repl-status -vv</em> | ghe-support-upload -t <em>ticket-id</em> -d "<em>Verbose Replication Status</em>" ``` -Neste exemplo, `ghe-repl-status -vv` envia informações detalhadas do status de um appliance réplica. Substitua `ghe-repl-status -vv` pelos dados que você deseja transmitir a `STDIN` e faça uma breve descrição dos dados em `Verbose Replication Status`. {% data reusables.enterprise_enterprise_support.support_will_ask_you_to_run_command %} +In this example, `ghe-repl-status -vv` sends verbose status information from a replica appliance. You should replace `ghe-repl-status -vv` with the specific data you'd like to stream to `STDIN`, and `Verbose Replication Status` with a brief description of the data. {% data reusables.enterprise_enterprise_support.support_will_ask_you_to_run_command %} -## Atualização do {% data variables.product.prodname_ghe_server %} +## Upgrading {% data variables.product.prodname_ghe_server %} ### ghe-upgrade -Este utilitário instala ou verifica um pacote de atualização. Também é possível usá-lo para voltar a uma versão de patch em casos de falha ou interrupção de uma atualização. Para obter mais informações, consulte "[Atualizar o {% data variables.product.prodname_ghe_server %}](/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-github-enterprise-server/)". +This utility installs or verifies an upgrade package. You can also use this utility to roll back a patch release if an upgrade fails or is interrupted. For more information, see "[Upgrading {% data variables.product.prodname_ghe_server %}](/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-github-enterprise-server/)." -Para verificar um pacote de atualização: +To verify an upgrade package: ```shell ghe-upgrade --verify <em>UPGRADE-PACKAGE-FILENAME</em> ``` -Para instalar um pacote de atualização: +To install an upgrade package: ```shell ghe-upgrade <em>UPGRADE-PACKAGE-FILENAME</em> ``` @@ -787,43 +786,43 @@ ghe-upgrade <em>UPGRADE-PACKAGE-FILENAME</em> ### ghe-upgrade-scheduler -Este utilitário gerencia a instalação programada de pacotes de atualização. Você pode exibir, criar ou remover instalações programadas. Crie as programações usando expressões cron. Para obter mais informações, leia mais sobre [Cron na Wikipedia](https://en.wikipedia.org/wiki/Cron#Overview). +This utility manages scheduled installation of upgrade packages. You can show, create new, or remove scheduled installations. You must create schedules using cron expressions. For more information, see the [Cron Wikipedia entry](https://en.wikipedia.org/wiki/Cron#Overview). -Para agendar uma nova instalação para um pacote: +To schedule a new installation for a package: ```shell $ ghe-upgrade-scheduler -c "0 2 15 12 *" <em>UPGRADE-PACKAGE-FILENAME</em> ``` -Para exibir instalações programadas para um pacote: +To show scheduled installations for a package: ```shell $ ghe-upgrade-scheduler -s <em>UPGRADE PACKAGE FILENAME</em> > 0 2 15 12 * /usr/local/bin/ghe-upgrade -y -s <em>UPGRADE-PACKAGE-FILENAME</em> > /data/user/common/<em>UPGRADE-PACKAGE-FILENAME</em>.log 2>&1 ``` -Para remover instalações programadas para um pacote: +To remove scheduled installations for a package: ```shell $ ghe-upgrade-scheduler -r <em>UPGRADE PACKAGE FILENAME</em> ``` ### ghe-update-check -Este utilitário verificará se uma nova versão do patch do {% data variables.product.prodname_enterprise %} está disponível. Se estiver e se houver espaço disponível na sua instância, ele baixará o pacote. Por padrão, a versão fica salva em */var/lib/ghe-updates*. Um administrador pode [realizar a atualização](/enterprise/admin/guides/installation/updating-the-virtual-machine-and-physical-resources/). +This utility will check to see if a new patch release of {% data variables.product.prodname_enterprise %} is available. If it is, and if space is available on your instance, it will download the package. By default, it's saved to */var/lib/ghe-updates*. An administrator can then [perform the upgrade](/enterprise/admin/guides/installation/updating-the-virtual-machine-and-physical-resources/). -Um arquivo contendo o status do download fica disponível em */var/lib/ghe-updates/ghe-update-check.status*. +A file containing the status of the download is available at */var/lib/ghe-updates/ghe-update-check.status*. -Para verificar a versão mais recente do {% data variables.product.prodname_enterprise %}, use o switch `-i`. +To check for the latest {% data variables.product.prodname_enterprise %} release, use the `-i` switch. ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-update-check' ``` -## Gerenciamento de usuários +## User management ### ghe-license-usage -Este utilitário exporta uma lista de usuários da instalação em formato JSON. Se sua instância estiver conectada ao {% data variables.product.prodname_ghe_cloud %}, {% data variables.product.prodname_ghe_server %} usa essa informação para reportar informações de licenciamento ao {% data variables.product.prodname_ghe_cloud %}. Para obter mais informações, consulte "[Conectando a sua conta corporativa a {% data variables.product.prodname_ghe_cloud %} ](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)". +This utility exports a list of the installation's users in JSON format. If your instance is connected to {% data variables.product.prodname_ghe_cloud %}, {% data variables.product.prodname_ghe_server %} uses this information for reporting licensing information to {% data variables.product.prodname_ghe_cloud %}. For more information, see "[Connecting your enterprise account to {% data variables.product.prodname_ghe_cloud %} ](/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud)." -Por padrão, a lista de usuários no arquivo JSON resultante é criptografada. Use o sinalizador `-h` para ver mais opções. +By default, the list of users in the resulting JSON file is encrypted. Use the `-h` flag for more options. ```shell ghe-license-usage @@ -831,7 +830,7 @@ ghe-license-usage ### ghe-org-membership-update -Este utilitário aplicará a configuração padrão de visibilidade da associação da organização a todos os integrantes da sua instância. Para obter mais informações, consulte "[Configurar a visibilidade da associação à organização](/enterprise/{{ currentVersion }}/admin/guides/user-management/configuring-visibility-for-organization-membership)". As opções de configuração são `públicas` ou `privadas`. +This utility will enforce the default organization membership visibility setting on all members in your instance. For more information, see "[Configuring visibility for organization membership](/enterprise/{{ currentVersion }}/admin/guides/user-management/configuring-visibility-for-organization-membership)." Setting options are `public` or `private`. ```shell ghe-org-membership-update --visibility=<em>SETTING</em> @@ -839,7 +838,7 @@ ghe-org-membership-update --visibility=<em>SETTING</em> ### ghe-user-csv -Este utilitário exporta uma lista de todos os usuários na instalação em formato CSV. O arquivo CSV inclui o endereço de e-mail, o tipo de usuário (por exemplo, administrador), a quantidade de repositórios, chaves SSH e associações os usuários têm na organização, o endereço IP mais recente e outras informações. Use o sinalizador `-h` para ver mais opções. +This utility exports a list of all the users in the installation into CSV format. The CSV file includes the email address, which type of user they are (e.g., admin, user), how many repositories they have, how many SSH keys, how many organization memberships, last logged IP address, etc. Use the `-h` flag for more options. ```shell ghe-user-csv -o > users.csv @@ -847,7 +846,7 @@ ghe-user-csv -o > users.csv ### ghe-user-demote -Este utilitário rebaixa o usuário especificado do status de administrador para o status de usuário regular. É recomendável usar a IU da web para executar esta ação, mas informe esse utilitário em caso de erro na execução do utilitário `ghe-user-promotion` se você precisar rebaixar um usuário novamente da CLI. +This utility demotes the specified user from admin status to that of a regular user. We recommend using the web UI to perform this action, but provide this utility in case the `ghe-user-promote` utility is run in error and you need to demote a user again from the CLI. ```shell ghe-user-demote <em>some-user-name</em> @@ -855,7 +854,7 @@ ghe-user-demote <em>some-user-name</em> ### ghe-user-promote -Este utilitário promove a conta de usuário especificada a administrador do site. +This utility promotes the specified user account to a site administrator. ```shell ghe-user-promote <em>some-user-name</em> @@ -863,7 +862,7 @@ ghe-user-promote <em>some-user-name</em> ### ghe-user-suspend -Este utilitário suspende o usuário especificado, impedindo-o de fazer login, push ou pull nos seus repositórios. +This utility suspends the specified user, preventing them from logging in, pushing, or pulling from your repositories. ```shell ghe-user-suspend <em>some-user-name</em> @@ -871,7 +870,7 @@ ghe-user-suspend <em>some-user-name</em> ### ghe-user-unsuspend -Este utilitário cancela a suspensão do usuário especificado, liberando o acesso para fazer login, push ou pull nos seus repositórios. +This utility unsuspends the specified user, granting them access to login, push, and pull from your repositories. ```shell ghe-user-unsuspend <em>some-user-name</em> diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md index 2016ad5438..7a347ea3ce 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md @@ -1,20 +1,20 @@ --- -title: Configurar backups no appliance -shortTitle: Configuração de backups +title: Configuring backups on your appliance +shortTitle: Configuring backups redirect_from: - - /enterprise/admin/categories/backups-and-restores/ - - /enterprise/admin/articles/backup-and-recovery/ - - /enterprise/admin/articles/backing-up-github-enterprise/ - - /enterprise/admin/articles/restoring-github-enterprise/ - - /enterprise/admin/articles/backing-up-repository-data/ - - /enterprise/admin/articles/restoring-enterprise-data/ - - /enterprise/admin/articles/restoring-repository-data/ - - /enterprise/admin/articles/backing-up-enterprise-data/ - - /enterprise/admin/guides/installation/backups-and-disaster-recovery/ + - /enterprise/admin/categories/backups-and-restores + - /enterprise/admin/articles/backup-and-recovery + - /enterprise/admin/articles/backing-up-github-enterprise + - /enterprise/admin/articles/restoring-github-enterprise + - /enterprise/admin/articles/backing-up-repository-data + - /enterprise/admin/articles/restoring-enterprise-data + - /enterprise/admin/articles/restoring-repository-data + - /enterprise/admin/articles/backing-up-enterprise-data + - /enterprise/admin/guides/installation/backups-and-disaster-recovery - /enterprise/admin/installation/configuring-backups-on-your-appliance - /enterprise/admin/configuration/configuring-backups-on-your-appliance - /admin/configuration/configuring-backups-on-your-appliance -intro: 'Como parte de um plano de recuperação de desastre, é possível proteger os dados de produção na {% data variables.product.product_location %} configurando backups automatizados.' +intro: 'As part of a disaster recovery plan, you can protect production data on {% data variables.product.product_location %} by configuring automated backups.' versions: ghes: '*' type: how_to @@ -24,118 +24,117 @@ topics: - Fundamentals - Infrastructure --- +## About {% data variables.product.prodname_enterprise_backup_utilities %} -## Sobre o {% data variables.product.prodname_enterprise_backup_utilities %} +{% data variables.product.prodname_enterprise_backup_utilities %} is a backup system you install on a separate host, which takes backup snapshots of {% data variables.product.product_location %} at regular intervals over a secure SSH network connection. You can use a snapshot to restore an existing {% data variables.product.prodname_ghe_server %} instance to a previous state from the backup host. -O {% data variables.product.prodname_enterprise_backup_utilities %} é um sistema de backup a ser instalado em um host separado, que tira instantâneos de backup da {% data variables.product.product_location %} em intervalos regulares em uma conexão de rede SSH segura. É possível usar um instantâneo para voltar uma instância do {% data variables.product.prodname_ghe_server %} a um estado anterior do host de backup. +Only data added since the last snapshot will transfer over the network and occupy additional physical storage space. To minimize performance impact, backups are performed online under the lowest CPU/IO priority. You do not need to schedule a maintenance window to perform a backup. -Somente os dados adicionados desde o último instantâneo serão transferidos pela rede e ocuparão espaço adicional de armazenamento físico. Para minimizar o impacto no desempenho, os backups são feitos online com a menor prioridade de E/S de CPU. Não é necessário programar um período de manutenção para fazer backups. +For more detailed information on features, requirements, and advanced usage, see the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#readme). -Para obter informações mais detalhadas sobre recursos, requisitos e uso avançado, consulte o [README do {% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#readme). +## Prerequisites -## Pré-requisitos +To use {% data variables.product.prodname_enterprise_backup_utilities %}, you must have a Linux or Unix host system separate from {% data variables.product.product_location %}. -Para usar o {% data variables.product.prodname_enterprise_backup_utilities %}, você deve ter um sistema host Linux ou Unix separado da {% data variables.product.product_location %}. +You can also integrate {% data variables.product.prodname_enterprise_backup_utilities %} into an existing environment for long-term permanent storage of critical data. -Também é possível integrar o {% data variables.product.prodname_enterprise_backup_utilities %} a um ambiente para fins de armazenamento permanente em longo prazo de dados essenciais. +We recommend that the backup host and {% data variables.product.product_location %} be geographically distant from each other. This ensures that backups are available for recovery in the event of a major disaster or network outage at the primary site. -É recomendável que o host de backup e a {% data variables.product.product_location %} estejam geograficamente distantes. Essa medida garante que os backups estejam disponíveis para recuperação em casos de grandes desastres ou falhas de rede no site primário. +Physical storage requirements will vary based on Git repository disk usage and expected growth patterns: -Os requisitos de armazenamento físico variam com base no uso do disco do repositório Git e nos padrões de crescimento esperados: +| Hardware | Recommendation | +| -------- | --------- | +| **vCPUs** | 2 | +| **Memory** | 2 GB | +| **Storage** | Five times the primary instance's allocated storage | -| Hardware | Recomendação | -| ----------------- | --------------------------------------------------------- | -| **vCPUs** | 2 | -| **Memória** | 2 GB | -| **Armazenamento** | Cinco vezes o armazenamento alocado da instância primária | +More resources may be required depending on your usage, such as user activity and selected integrations. -Podem ser necessários mais recursos dependendo do uso, como atividade do usuário e integrações selecionadas. - -## Instalar o {% data variables.product.prodname_enterprise_backup_utilities %} +## Installing {% data variables.product.prodname_enterprise_backup_utilities %} {% note %} -**Observação:** para garantir a disponibilidade imediata de um appliance recuperado, faça backups visando a instância principal, mesmo em uma configuração de replicação geográfica. +**Note:** To ensure a recovered appliance is immediately available, perform backups targeting the primary instance even in a Geo-replication configuration. {% endnote %} -1. Baixe a [versão mais recente do {% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils/releases) e extraia o arquivo com o comando `tar`. +1. Download the latest [{% data variables.product.prodname_enterprise_backup_utilities %} release](https://github.com/github/backup-utils/releases) and extract the file with the `tar` command. ```shell - $ tar -xzvf /path/to/github-backup-utils-v<em>MAJOR.MINOR.PATCH</em>.tar.gz + $ tar -xzvf /path/to/github-backup-utils-v<em>MAJOR.MINOR.PATCH</em>.tar.gz ``` -2. Copie o arquivo `backup.config-example` para `backup.config` e abra em um editor. -3. Defina o valor `GHE_HOSTNAME` para o nome de host ou endereço IP da instância primária do {% data variables.product.prodname_ghe_server %}. +2. Copy the included `backup.config-example` file to `backup.config` and open in an editor. +3. Set the `GHE_HOSTNAME` value to your primary {% data variables.product.prodname_ghe_server %} instance's hostname or IP address. {% note %} - **Observação:** Se o seu {% data variables.product.product_location %} for implantado como um cluster ou em uma configuração de alta disponibilidade usando um balanceador de carga, o `GHE_HOSTNAME` poderá ser o nome de host do balanceador da carga, desde que permita o acesso SSH (na porta 122) a {% data variables.product.product_location %}. + **Note:** If your {% data variables.product.product_location %} is deployed as a cluster or in a high availability configuration using a load balancer, the `GHE_HOSTNAME` can be the load balancer hostname, as long as it allows SSH access (on port 122) to {% data variables.product.product_location %}. {% endnote %} -4. Defina o valor `GHE_DATA_DIR` no local do arquivo do sistema onde você deseja arquivar os instantâneos de backup. -5. Abra a página das configurações da instância primária em `https://HOSTNAME/setup/settings` e adicione a chave SSH do host de backup à lista de chaves SSH autorizadas. Para obter mais informações, consulte [Acessar o shell administrativo (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/). -6. Verifique a conectividade SSH com a {% data variables.product.product_location %} usando o comando `ghe-host-check`. +4. Set the `GHE_DATA_DIR` value to the filesystem location where you want to store backup snapshots. +5. Open your primary instance's settings page at `https://HOSTNAME/setup/settings` and add the backup host's SSH key to the list of authorized SSH keys. For more information, see [Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/guides/installation/accessing-the-administrative-shell-ssh/). +6. Verify SSH connectivity with {% data variables.product.product_location %} with the `ghe-host-check` command. ```shell - $ bin/ghe-host-check - ``` - 7. Para criar um backup completo inicial, execute o comando `ghe-backup`. + $ bin/ghe-host-check + ``` + 7. To create an initial full backup, run the `ghe-backup` command. ```shell - $ bin/ghe-backup + $ bin/ghe-backup ``` -Para obter mais informações sobre uso avançado, consulte o [arquivo README do {% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#readme). +For more information on advanced usage, see the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#readme). -## Programar um backup +## Scheduling a backup -É possível programar backups regulares no host de backup com o comando `cron(8)` ou um serviço de agendamento semelhante. A frequência configurada determinará o objetivo do ponto de recuperação (RPO) nos piores cenários do seu plano de recuperação. Por exemplo, ao programar backups diários à meia-noite, você pode perder até 24 horas de dados em caso de desastre. É recomendável começar com backups a cada hora, garantindo a possibilidade de perdas menores (no máximo de uma hora) caso os dados primários do site sejam destruídos. +You can schedule regular backups on the backup host using the `cron(8)` command or a similar command scheduling service. The configured backup frequency will dictate the worst case recovery point objective (RPO) in your recovery plan. For example, if you have scheduled the backup to run every day at midnight, you could lose up to 24 hours of data in a disaster scenario. We recommend starting with an hourly backup schedule, guaranteeing a worst case maximum of one hour of data loss if the primary site data is destroyed. -Se houver sobreposição de tentativas de backup, o comando `ghe-backup` será interrompido com uma mensagem de erro, informando a existência de um backup simultâneo. Nesse caso, é recomendável diminuir a frequência dos backups programados. Para obter mais informações, consulte a seção "Agendar backups" do [ arquivo README do {% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#scheduling-backups). +If backup attempts overlap, the `ghe-backup` command will abort with an error message, indicating the existence of a simultaneous backup. If this occurs, we recommended decreasing the frequency of your scheduled backups. For more information, see the "Scheduling backups" section of the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#scheduling-backups). -## Restaurar um backup +## Restoring a backup -Em caso de interrupção prolongada ou evento catastrófico no site primário, é possível restaurar a {% data variables.product.product_location %} provisionando outro appliance do {% data variables.product.prodname_enterprise %} e executando uma restauração no host de backup. Antes de restaurar um appliance, você deve adicionar a chave SSH do host de backup ao appliance de destino do {% data variables.product.prodname_enterprise %} como chave SSH autorizada. +In the event of prolonged outage or catastrophic event at the primary site, you can restore {% data variables.product.product_location %} by provisioning another {% data variables.product.prodname_enterprise %} appliance and performing a restore from the backup host. You must add the backup host's SSH key to the target {% data variables.product.prodname_enterprise %} appliance as an authorized SSH key before restoring an appliance. {% ifversion ghes %} {% note %} -**Nota:** Se {% data variables.product.product_location %} tiver {% data variables.product.prodname_actions %} habilitado, você deverá primeiro configurar o provedor de armazenamento externo de {% data variables.product.prodname_actions %} no aplicativo de substituição antes de executar o comando `ghe-restore`. Para obter mais informações, consulte "[Backup e restauração de {% data variables.product.prodname_ghe_server %} com {% data variables.product.prodname_actions %} ativado](/admin/github-actions/backing-up-and-restoring-github-enterprise-server-with-github-actions-enabled)." +**Note:** If {% data variables.product.product_location %} has {% data variables.product.prodname_actions %} enabled, you must first configure the {% data variables.product.prodname_actions %} external storage provider on the replacement appliance before running the `ghe-restore` command. For more information, see "[Backing up and restoring {% data variables.product.prodname_ghe_server %} with {% data variables.product.prodname_actions %} enabled](/admin/github-actions/backing-up-and-restoring-github-enterprise-server-with-github-actions-enabled)." {% endnote %} {% endif %} {% note %} -**Observação:** Ao executar backup para {% data variables.product.product_location %}, aplicam-se as mesmas regras de suporte de versão. Você só pode restaurar dados de no máximo duas versões do recursos para trás. +**Note:** When performing backup restores to {% data variables.product.product_location %}, the same version supportability rules apply. You can only restore data from at most two feature releases behind. -Por exemplo, se você receber um backup do GHES 3.0.x, você poderá restaurá-lo em uma instância GHES 3.2.x. No entanto, você não poderá restaurar dados de um backup do GHES 2.22.x para 3.2., porque seriam três saltos entre as versões (2.22 > 3.0 > 3.1 > 3.2). Primeiro, você deverá restaurar em uma instância de 3.1.x e, em seguida, atualizar para 3.2.x. +For example, if you take a backup from GHES 3.0.x, you can restore it into a GHES 3.2.x instance. But, you cannot restore data from a backup of GHES 2.22.x onto 3.2.x, because that would be three jumps between versions (2.22 > 3.0 > 3.1 > 3.2). You would first need to restore onto a 3.1.x instance, and then upgrade to 3.2.x. {% endnote %} -Para restaurar a {% data variables.product.product_location %} do instantâneo mais recente bem-sucedido, use o comando `ghe-restore`. Você verá um conteúdo semelhante a este: +To restore {% data variables.product.product_location %} from the last successful snapshot, use the `ghe-restore` command. You should see output similar to this: ```shell $ ghe-restore -c 169.154.1.1 -> Verificando chaves vazadas no instantâneo do backup em restauração... -> * Sem chavez vazadas -> Conexão 169.154.1.1:122 OK (v2.9.0) +> Checking for leaked keys in the backup snapshot that is being restored ... +> * No leaked keys found +> Connect 169.154.1.1:122 OK (v2.9.0) -> AVISO: todos os dados no appliance GitHub Enterprise 169.154.1.1 (v2.9.0) -> serão substituídos por dados do instantâneo 20170329T150710. -> Antes de prosseguir, confirme se o host de restauração está correto. -> Digite 'sim' para continuar: <em>sim</em> +> WARNING: All data on GitHub Enterprise appliance 169.154.1.1 (v2.9.0) +> will be overwritten with data from snapshot 20170329T150710. +> Please verify that this is the correct restore host before continuing. +> Type 'yes' to continue: <em>yes</em> -> Iniciando restauração de 169.154.1.1:122 a partir do instantâneo 20170329T150710 -# ...saída truncada -> Restauração concluída de 169.154.1.1:122 a partir do instantâneo 20170329T150710 -> Acesse https://169.154.1.1/setup/settings para revisar a configuração do appliance. +> Starting restore of 169.154.1.1:122 from snapshot 20170329T150710 +# ...output truncated +> Completed restore of 169.154.1.1:122 from snapshot 20170329T150710 +> Visit https://169.154.1.1/setup/settings to review appliance configuration. ``` {% note %} -**Observação:** as configurações de rede são excluídas do instantâneo de backup. Você deve configurar manualmente a rede no appliance de destino do {% data variables.product.prodname_ghe_server %} conforme o seu ambiente. +**Note:** The network settings are excluded from the backup snapshot. You must manually configure the network on the target {% data variables.product.prodname_ghe_server %} appliance as required for your environment. {% endnote %} -Você pode usar estas opções adicionais com o comando `ghe-restore`: -- O sinalizador `-c` substitui as configurações, os certificados e os dados de licença no host de destino, mesmo que já configurado. Omita esse sinalizador se você estiver configurando uma instância de preparo para fins de teste e se quiser manter a configuração no destino. Para obter mais informações, consulte a seção "Usar comandos de backup e restauração" do [README do {% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils#using-the-backup-and-restore-commands). -- O sinalizador `-s` permite selecionar outro instantâneo de backup. +You can use these additional options with `ghe-restore` command: +- The `-c` flag overwrites the settings, certificate, and license data on the target host even if it is already configured. Omit this flag if you are setting up a staging instance for testing purposes and you wish to retain the existing configuration on the target. For more information, see the "Using using backup and restore commands" section of the [{% data variables.product.prodname_enterprise_backup_utilities %} README](https://github.com/github/backup-utils#using-the-backup-and-restore-commands). +- The `-s` flag allows you to select a different backup snapshot. diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md index b436cd30b6..e0987ad337 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md @@ -1,11 +1,11 @@ --- -title: Configurar notificações de e-mail -intro: 'Para facilitar a resposta rápida dos usuários à atividade em {% data variables.product.product_name %}, você pode configurar {% data variables.product.product_location %} para enviar notificações por e-mail para problema, pull request e comentários do commit.' +title: Configuring email for notifications +intro: 'To make it easy for users to respond quickly to activity on {% data variables.product.product_name %}, you can configure {% data variables.product.product_location %} to send email notifications for issue, pull request, and commit comments.' redirect_from: - - /enterprise/admin/guides/installation/email-configuration/ - - /enterprise/admin/articles/configuring-email/ - - /enterprise/admin/articles/troubleshooting-email/ - - /enterprise/admin/articles/email-configuration-and-troubleshooting/ + - /enterprise/admin/guides/installation/email-configuration + - /enterprise/admin/articles/configuring-email + - /enterprise/admin/articles/troubleshooting-email + - /enterprise/admin/articles/email-configuration-and-troubleshooting - /enterprise/admin/user-management/configuring-email-for-notifications - /admin/configuration/configuring-email-for-notifications versions: @@ -17,85 +17,100 @@ topics: - Fundamentals - Infrastructure - Notifications -shortTitle: Configurar notificações de e-mail +shortTitle: Configure email notifications --- - {% ifversion ghae %} -Os proprietários das empresas podem configurar e-mails para notificações. +Enterprise owners can configure email for notifications. {% endif %} -## Configurar SMTP para sua empresa +## Configuring SMTP for your enterprise {% ifversion ghes %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. Na parte superior da página, clique em **Settings** (Configurações). ![Guia Settings (Configurações)](/assets/images/enterprise/management-console/settings-tab.png) -3. Na barra lateral esquerda, clique em **Email**. ![Guia E-mail](/assets/images/enterprise/management-console/email-sidebar.png) -4. Selecione **Enable email** (Habilitar e-mail). Fazer isso vai habilitar os e-mails enviados (saída) e recebidos (entrada). No entanto, para que o recebimento de e-mails funcione, você terá que definir suas configurações de DNS conforme descrito em "[Configurar o DNS e o firewall para o recebimento de e-mails](#configuring-dns-and-firewall-settings-to-allow-incoming-emails)". ![Habilitar e-mail de saída](/assets/images/enterprise/management-console/enable-outbound-email.png) -5. Digite as configurações para o seu servidor SMTP. - - No campo **Server address** (Endereço do servidor), digite o endereço do seu servidor SMTP. - - No campo **Port** (Porta), digite a porta que o servidor SMTP usa para enviar e-mails. - - No campo **Domain** (Domínio), digite o nome do domínio que o servidor SMTP enviará com resposta HELO, se houver. - - Selecione o menu suspenso **Autenticação** e escolha o tipo de criptografia usado pelo seu servidor SMTP. - - No campo **No-reply email address** (Endereço de e-mail no-reply), digite o endereço de e-mail para usar nos campos De e Para em todos os e-mails de notificação. -6. Se você quiser descartar todos os e-mails recebidos destinados ao endereço no-reply, selecione **Discard email addressed to the no-reply email address** (Descartar e-mails recebidos no endereço no-reply). ![Caixa de seleção para descartar e-mails destinados ao endereço no-reply](/assets/images/enterprise/management-console/discard-noreply-emails.png) -7. Em **Support** (Suporte), escolha um tipo de link para dar suporte adicional aos usuários. - - **Email:** endereço de e-mail interno. - - **URL:** link para um site interno de suporte. Você deve incluir `http://` ou `https://`. ![E-mail ou URL de suporte](/assets/images/enterprise/management-console/support-email-url.png) -8. [Teste a entrega de e-mails](#testing-email-delivery). +2. At the top of the page, click **Settings**. +![Settings tab](/assets/images/enterprise/management-console/settings-tab.png) +3. In the left sidebar, click **Email**. +![Email tab](/assets/images/enterprise/management-console/email-sidebar.png) +4. Select **Enable email**. This will enable both outbound and inbound email, however for inbound email to work you will also need to configure your DNS settings as described below in "[Configuring DNS and firewall +settings to allow incoming emails](#configuring-dns-and-firewall-settings-to-allow-incoming-emails)." +![Enable outbound email](/assets/images/enterprise/management-console/enable-outbound-email.png) +5. Type the settings for your SMTP server. + - In the **Server address** field, type the address of your SMTP server. + - In the **Port** field, type the port that your SMTP server uses to send email. + - In the **Domain** field, type the domain name that your SMTP server will send with a HELO response, if any. + - Select the **Authentication** dropdown, and choose the type of encryption used by your SMTP server. + - In the **No-reply email address** field, type the email address to use in the From and To fields for all notification emails. +6. If you want to discard all incoming emails that are addressed to the no-reply email address, select **Discard email addressed to the no-reply email address**. +![Checkbox to discard emails addressed to the no-reply email address](/assets/images/enterprise/management-console/discard-noreply-emails.png) +7. Under **Support**, choose a type of link to offer additional support to your users. + - **Email:** An internal email address. + - **URL:** A link to an internal support site. You must include either `http://` or `https://`. + ![Support email or URL](/assets/images/enterprise/management-console/support-email-url.png) +8. [Test email delivery](#testing-email-delivery). {% elsif ghae %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.email-tab %} -2. Selecione **Enable email** (Habilitar e-mail). ![Caixa de seleção "Habilitar" para configurações de e-mail](/assets/images/enterprise/configuration/ae-enable-email-configure.png) -3. Digite as configurações para o seu servidor de e-mail. - - No campo **Server address** (Endereço do servidor), digite o endereço do seu servidor SMTP. - - No campo **Port** (Porta), digite a porta que o servidor SMTP usa para enviar e-mails. - - No campo **Domain** (Domínio), digite o nome do domínio que o servidor SMTP enviará com resposta HELO, se houver. - - Selecione o menu suspenso **Autenticação** e escolha o tipo de criptografia usado pelo seu servidor SMTP. - - No campo **No-reply email address** (Endereço de e-mail no-reply), digite o endereço de e-mail para usar nos campos De e Para em todos os e-mails de notificação. -4. Se você quiser descartar todos os e-mails recebidos destinados ao endereço no-reply, selecione **Discard email addressed to the no-reply email address** (Descartar e-mails recebidos no endereço no-reply). ![Caixa de seleção "Descartar" para configurações de e-mail](/assets/images/enterprise/configuration/ae-discard-email.png) -5. Clique em **Configurações de e-mail de teste**. ![Botão "Configurações de e-mail de teste" para configurações de e-mail](/assets/images/enterprise/configuration/ae-test-email.png) -6. Em "Enviar e-mail de teste para", digite o endereço de e-mail em que você deseja enviar um e-mail de teste e, em seguida, clique em **Enviar e-mail de teste**. ![Botão "Enviar e-mail de teste" para definição de configurações de e-mail](/assets/images/enterprise/configuration/ae-send-test-email.png) -7. Clique em **Salvar**. ![Botão "Salvar" para configuração de contato de suporte do Enterprise](/assets/images/enterprise/configuration/ae-save.png) +2. Select **Enable email**. + !["Enable" checkbox for email settings configuration](/assets/images/enterprise/configuration/ae-enable-email-configure.png) +3. Type the settings for your email server. + - In the **Server address** field, type the address of your SMTP server. + - In the **Port** field, type the port that your SMTP server uses to send email. + - In the **Domain** field, type the domain name that your SMTP server will send with a HELO response, if any. + - Select the **Authentication** dropdown, and choose the type of encryption used by your SMTP server. + - In the **No-reply email address** field, type the email address to use in the From and To fields for all notification emails. +4. If you want to discard all incoming emails that are addressed to the no-reply email address, select **Discard email addressed to the no-reply email address**. + !["Discard" checkbox for email settings configuration](/assets/images/enterprise/configuration/ae-discard-email.png) +5. Click **Test email settings**. + !["Test email settings" button for email settings configuration](/assets/images/enterprise/configuration/ae-test-email.png) +6. Under "Send test email to," type the email address where you want to send a test email, then click **Send test email**. + !["Send test email" button for email settings configuration](/assets/images/enterprise/configuration/ae-send-test-email.png) +7. Click **Save**. + !["Save" button for enterprise support contact configuration](/assets/images/enterprise/configuration/ae-save.png) {% endif %} {% ifversion ghes %} -## Testar a entrega de e-mails +## Testing email delivery -1. Na parte superior da seção **Email**, clique em **Test email settings** (Testar configurações de e-mail). ![Configurações de e-mail de teste](/assets/images/enterprise/management-console/test-email.png) -2. No campo **Send test email to** (Enviar e-mail de teste para), digite um endereço que receberá o e-mail de teste. ![Endereço de e-mail de teste](/assets/images/enterprise/management-console/test-email-address.png) -3. Clique em **Send test email** (Enviar e-mail de teste). ![Enviar e-mail de teste](/assets/images/enterprise/management-console/test-email-address-send.png) +1. At the top of the **Email** section, click **Test email settings**. +![Test email settings](/assets/images/enterprise/management-console/test-email.png) +2. In the **Send test email to** field, type an address to send the test email to. +![Test email address](/assets/images/enterprise/management-console/test-email-address.png) +3. Click **Send test email**. +![Send test email](/assets/images/enterprise/management-console/test-email-address-send.png) {% tip %} - **Dica:** se ocorrerem erros de SMTP durante o envio de um e-mail de teste, como falhas de entrega imediatas ou erros de configuração de e-mail de saída, você os verá na caixa de diálogo Configurações de e-mail de teste. + **Tip:** If SMTP errors occur while sending a test email—such as an immediate delivery failure or an outgoing mail configuration error—you will see them in the Test email settings dialog box. {% endtip %} -4. Se houver falha no teste, consulte a [solução de problemas das suas configurações de e-mail](#troubleshooting-email-delivery). -5. Quando o teste for concluído com êxito, clique em **Save settings** (Salvar configurações) na parte inferior da página. ![Botão Save settings (Salvar configurações)](/assets/images/enterprise/management-console/save-settings.png) -6. Aguarde a conclusão da execução de suas configurações. ![Configurar a instância](/assets/images/enterprise/management-console/configuration-run.png) +4. If the test email fails, [troubleshoot your email settings](#troubleshooting-email-delivery). +5. When the test email succeeds, at the bottom of the page, click **Save settings**. +![Save settings button](/assets/images/enterprise/management-console/save-settings.png) +6. Wait for the configuration run to complete. +![Configuring your instance](/assets/images/enterprise/management-console/configuration-run.png) -## Configurar DNS e firewall para o recebimento de e-mails +## Configuring DNS and firewall settings to allow incoming emails -Se quiser permitir o recebimento de respostas para os e-mails de notificação, você deverá definir suas configurações DNS. +If you want to allow email replies to notifications, you must configure your DNS settings. -1. A porta 25 da instância deve estar acessível para o seu servidor SMTP. -2. Crie um registro A que aponte para `reply.[hostname]`. Dependendo do provedor DNS e da configuração do host da instância, você poderá criar um único registro A que aponte para `*.[hostname]`. -3. Crie um registro MX que aponte para `reply.[hostname]`, de forma que os e-mails desse domínio sejam roteados para a instância. -4. Crie um registro MX que aponte `noreply.[hostname]` para `[hostname]`, de forma que as respostas ao endereço `cc` nos e-mails de notificação sejam roteadas para a instância. Para obter mais informações, consulte {% ifversion ghes %}"[Configurando notificações](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications){% else %}"[Sobre notificações de e-mail](/github/receiving-notifications-about-activity-on-github/about-email-notifications)"{% endif %}." +1. Ensure that port 25 on the instance is accessible to your SMTP server. +2. Create an A record that points to `reply.[hostname]`. Depending on your DNS provider and instance host configuration, you may be able to instead create a single A record that points to `*.[hostname]`. +3. Create an MX record that points to `reply.[hostname]` so that emails to that domain are routed to the instance. +4. Create an MX record that points `noreply.[hostname]` to `[hostname]` so that replies to the `cc` address in notification emails are routed to the instance. For more information, see {% ifversion ghes %}"[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications){% else %}"[About email notifications](/github/receiving-notifications-about-activity-on-github/about-email-notifications){% endif %}." -## Resolver problemas na entrega de e-mails +## Troubleshooting email delivery -### Criar um pacote de suporte +### Create a Support Bundle -Se não conseguir determinar o que houve de errado na mensagem de erro exibida, você pode baixar um [pacote de suporte](/enterprise/{{ currentVersion }}/admin/guides/enterprise-support/providing-data-to-github-support) com toda a conversa SMTP entre o seu servidor de e-mail e o {% data variables.product.prodname_ghe_server %}. Depois de fazer o download e extrair o pacote, verifique as entradas em *enterprise-manage-logs/unicorn.log* e veja o log completo de conversas SMTP com os erros relacionados. +If you cannot determine what is wrong from the displayed error message, you can download a [support bundle](/enterprise/{{ currentVersion }}/admin/guides/enterprise-support/providing-data-to-github-support) containing the entire SMTP conversation between your mail server and {% data variables.product.prodname_ghe_server %}. Once you've downloaded and extracted the bundle, check the entries in *enterprise-manage-logs/unicorn.log* for the entire SMTP conversation log and any related errors. -O log unicorn mostrará uma transação semelhante a esta: +The unicorn log should show a transaction similar to the following: ```shell -Este é um e-mail de teste gerado em https://10.0.0.68/setup/settings -Conexão aberta: smtp.yourdomain.com:587 +This is a test email generated from https://10.0.0.68/setup/settings +Connection opened: smtp.yourdomain.com:587 -> "220 smtp.yourdomain.com ESMTP nt3sm2942435pbc.14\r\n" <- "EHLO yourdomain.com\r\n" -> "250-smtp.yourdomain.com at your service, [1.2.3.4]\r\n" @@ -105,8 +120,8 @@ Conexão aberta: smtp.yourdomain.com:587 -> "250-ENHANCEDSTATUSCODES\r\n" -> "250 PIPELINING\r\n" <- "STARTTLS\r\n" --> "220 2.0.0 Pronto para começar TLS\r\n" -Conexão TLS iniciada +-> "220 2.0.0 Ready to start TLS\r\n" +TLS connection started <- "EHLO yourdomain.com\r\n" -> "250-smtp.yourdomain.com at your service, [1.2.3.4]\r\n" -> "250-SIZE 35882577\r\n" @@ -119,36 +134,36 @@ Conexão TLS iniciada <- "dGhpc2lzbXlAYWRkcmVzcy5jb20=\r\n" -> "334 UGFzc3dvcmQ6\r\n" <- "aXRyZWFsbHl3YXM=\r\n" --> "535-5.7.1 Nome de usuário e senha não aceitos. Saiba mais em\r\n" +-> "535-5.7.1 Username and Password not accepted. Learn more at\r\n" -> "535 5.7.1 http://support.yourdomain.com/smtp/auth-not-accepted nt3sm2942435pbc.14\r\n" ``` -Esse log mostra que o appliance: +This log shows that the appliance: -* Abriu uma conexão com o servidor SMTP (`Conexão aberta: smtp.yourdomain.com:587`); -* Fez a conexão com êxito e decidiu usar TLS (`Conexão TLS iniciada`); -* A autenticação de `login` foi feita (`<- "AUTH LOGIN\r\n"`); -* O servidor SMTP rejeitou a autenticação como inválida (`-> "535-5.7.1 Nome de usuário e senha não aceitos.`). +* Opened a connection with the SMTP server (`Connection opened: smtp.yourdomain.com:587`). +* Successfully made a connection and chose to use TLS (`TLS connection started`). +* The `login` authentication type was performed (`<- "AUTH LOGIN\r\n"`). +* The SMTP Server rejected the authentication as invalid (`-> "535-5.7.1 Username and Password not accepted.`). -### Consultar logs da {% data variables.product.product_location %} +### Check {% data variables.product.product_location %} logs -Se você tiver de verificar o funcionamento do dos e-mails de entrada, examine dois arquivos de log na sua instância: */var/log/mail.log* e */var/log/mail-replies/metroplex.log*. +If you need to verify that your inbound email is functioning, there are two log files that you can examine on your instance: To verify that */var/log/mail.log* and */var/log/mail-replies/metroplex.log*. -*/var/log/mail.log* verifica se as mensagens estão chegando ao seu servidor. Veja um exemplo de resposta de e-mail com êxito: +*/var/log/mail.log* verifies that messages are reaching your server. Here's an example of a successful email reply: ``` -Oct 30 00:47:18 54-171-144-1 postfix/smtpd[13210]: conectado de st11p06mm-asmtp002.mac.com[17.172.124.250] +Oct 30 00:47:18 54-171-144-1 postfix/smtpd[13210]: connect from st11p06mm-asmtp002.mac.com[17.172.124.250] Oct 30 00:47:19 54-171-144-1 postfix/smtpd[13210]: 51DC9163323: client=st11p06mm-asmtp002.mac.com[17.172.124.250] Oct 30 00:47:19 54-171-144-1 postfix/cleanup[13216]: 51DC9163323: message-id=<b2b9c260-4aaa-4a93-acbb-0b2ddda68579@me.com> -Oct 30 00:47:19 54-171-144-1 postfix/qmgr[17250]: 51DC9163323: from=<tcook@icloud.com>, size=5048, nrcpt=1 (fila ativa) -Oct 30 00:47:19 54-171-144-1 postfix/virtual[13217]: 51DC9163323: to=<reply+i-1-1801beb4df676a79250d1e61e54ab763822c207d-5@reply.ghe.tjl2.co.ie>, relay=virtual, delay=0.12, delays=0.11/0/0/0, dsn=2.0.0, status=sent (entregue a maildir) -Oct 30 00:47:19 54-171-144-1 postfix/qmgr[17250]: 51DC9163323: removido -Oct 30 00:47:19 54-171-144-1 postfix/smtpd[13210]: desconectado de st11p06mm-asmtp002.mac.com[17.172.124.250] +Oct 30 00:47:19 54-171-144-1 postfix/qmgr[17250]: 51DC9163323: from=<tcook@icloud.com>, size=5048, nrcpt=1 (queue active) +Oct 30 00:47:19 54-171-144-1 postfix/virtual[13217]: 51DC9163323: to=<reply+i-1-1801beb4df676a79250d1e61e54ab763822c207d-5@reply.ghe.tjl2.co.ie>, relay=virtual, delay=0.12, delays=0.11/0/0/0, dsn=2.0.0, status=sent (delivered to maildir) +Oct 30 00:47:19 54-171-144-1 postfix/qmgr[17250]: 51DC9163323: removed +Oct 30 00:47:19 54-171-144-1 postfix/smtpd[13210]: disconnect from st11p06mm-asmtp002.mac.com[17.172.124.250] ``` -Observe que o cliente se conecta e depois a fila fica ativa. Em seguida, a mensagem é entregue, o cliente é removido da fila e a sessão é desconectada. +Note that the client first connects; then, the queue becomes active. Then, the message is delivered, the client is removed from the queue, and the session disconnects. -*/var/log/mail-replies/metroplex.log* mostra se os e-mails de entrada estão sendo processados para adicionar problemas e pull requests como respostas. Veja um exemplo de mensagem com êxito: +*/var/log/mail-replies/metroplex.log* shows whether inbound emails are being processed to add to issues and pull requests as replies. Here's an example of a successful message: ``` [2014-10-30T00:47:23.306 INFO (5284) #] metroplex: processing <b2b9c260-4aaa-4a93-acbb-0b2ddda68579@me.com> @@ -156,19 +171,19 @@ Observe que o cliente se conecta e depois a fila fica ativa. Em seguida, a mensa [2014-10-30T00:47:23.334 DEBUG (5284) #] Moving /data/user/mail/reply/new/1414630039.Vfc00I12000eM445784.ghe-tjl2-co-ie => /data/user/incoming-mail/success ``` -Você notará que `metroplex` captura a mensagem de entrada, processa essa mensagem e, em seguida, transfere o arquivo para `/data/user/incoming-mail/success`.{% endif %} +You'll notice that `metroplex` catches the inbound message, processes it, then moves the file over to `/data/user/incoming-mail/success`.{% endif %} -### Verificar as configurações DNS +### Verify your DNS settings -Para processar corretamente os e-mails de entrada, você deve configurar um registro A válido (ou CNAME) e um registro MX. Para obter mais informações, consulte "[Definir as configurações de DNS e firewall para permitir recebimento de e-mails](#configuring-dns-and-firewall-settings-to-allow-incoming-emails)". +In order to properly process inbound emails, you must configure a valid A Record (or CNAME), as well as an MX Record. For more information, see "[Configuring DNS and firewall settings to allow incoming emails](#configuring-dns-and-firewall-settings-to-allow-incoming-emails)." -### Verificar as configurações de firewall ou grupo de segurança do AWS +### Check firewall or AWS Security Group settings -Se a {% data variables.product.product_location %} estiver atrás de um firewall ou estiver funcionando com um grupo de segurança do AWS, verifique se a porta 25 está aberta para todos os servidores de e-mail que enviam mensagens para `reply@reply.[hostname]`. +If {% data variables.product.product_location %} is behind a firewall or is being served through an AWS Security Group, make sure port 25 is open to all mail servers that send emails to `reply@reply.[hostname]`. -### Entrar em contato com o suporte +### Contact support {% ifversion ghes %} -Se você não conseguir resolver o problema, entre em contato com o {% data variables.contact.contact_ent_support %}. Para nos ajudar a resolver a questão, anexe o arquivo de saída de `http(s)://[hostname]/setup/diagnostics` ao seu e-mail. +If you're still unable to resolve the problem, contact {% data variables.contact.contact_ent_support %}. Please attach the output file from `http(s)://[hostname]/setup/diagnostics` to your email to help us troubleshoot your problem. {% elsif ghae %} -Você pode entrar em contato com {% data variables.contact.github_support %} para ajudar a configurar o e-mail de notificações a serem enviadas através do seu servidor SMTP. Para obter mais informações, consulte "[Receber ajuda de {% data variables.contact.github_support %}](/admin/enterprise-support/receiving-help-from-github-support)". +You can contact {% data variables.contact.github_support %} for help configuring email for notifications to be sent through your SMTP server. For more information, see "[Receiving help from {% data variables.contact.github_support %}](/admin/enterprise-support/receiving-help-from-github-support)." {% endif %} diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md index d5d41ee13a..d341653ffe 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md @@ -2,12 +2,12 @@ title: Configuring GitHub Pages for your enterprise intro: 'You can enable or disable {% data variables.product.prodname_pages %} for your enterprise{% ifversion ghes %} and choose whether to make sites publicly accessible{% endif %}.' redirect_from: - - /enterprise/admin/guides/installation/disabling-github-enterprise-pages/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-pages/ + - /enterprise/admin/guides/installation/disabling-github-enterprise-pages + - /enterprise/admin/guides/installation/configuring-github-enterprise-pages - /enterprise/admin/installation/configuring-github-pages-on-your-appliance - /enterprise/admin/configuration/configuring-github-pages-on-your-appliance - /admin/configuration/configuring-github-pages-on-your-appliance - - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise/ + - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise - /admin/configuration/configuring-github-pages-for-your-enterprise versions: ghes: '*' diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md index 1bbbe0efc6..0d0af44dc0 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md @@ -1,11 +1,11 @@ --- -title: Configurar a sincronização de hora -intro: 'O {% data variables.product.prodname_ghe_server %} sincroniza automaticamente o relógio conectando-se a servidores NTP. Você pode definir os servidores NTP usados para sincronizar o relógio ou pode usar os servidores NTP padrão.' +title: Configuring time synchronization +intro: '{% data variables.product.prodname_ghe_server %} automatically synchronizes its clock by connecting to NTP servers. You can set the NTP servers that are used to synchronize the clock, or you can use the default NTP servers.' redirect_from: - - /enterprise/admin/articles/adjusting-the-clock/ - - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings/ - - /enterprise/admin/articles/setting-ntp-servers/ - - /enterprise/admin/categories/time/ + - /enterprise/admin/articles/adjusting-the-clock + - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings + - /enterprise/admin/articles/setting-ntp-servers + - /enterprise/admin/categories/time - /enterprise/admin/installation/configuring-time-synchronization - /enterprise/admin/configuration/configuring-time-synchronization - /admin/configuration/configuring-time-synchronization @@ -17,31 +17,33 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: Definir configurações de hora +shortTitle: Configure time settings --- - -## Alterar os servidores NTP padrão +## Changing the default NTP servers {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. Na barra lateral esquerda, clique em **Time** (Hora). ![Botão Time (Hora) na barra lateral do {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/sidebar-time.png) -3. Em "Primary NTP server" (Servidor NTP primário), digite o nome do host do servidor NTP primário. Em "Secondary NTP server" (Servidor NTP secundário), digite o nome do host do servidor NTP secundário. ![Campos de servidores NTP primário e secundário no {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/ntp-servers.png) -4. Na parte inferior da página, clique em **Save settings** (Salvar configurações). ![Botão Save settings (Salvar configurações) no {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/save-settings.png) -5. Aguarde a conclusão da execução de suas configurações. +2. In the left sidebar, click **Time**. + ![The Time button in the {% data variables.enterprise.management_console %} sidebar](/assets/images/enterprise/management-console/sidebar-time.png) +3. Under "Primary NTP server," type the hostname of the primary NTP server. Under "Secondary NTP server," type the hostname of the secondary NTP server. + ![The fields for primary and secondary NTP servers in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/ntp-servers.png) +4. At the bottom of the page, click **Save settings**. + ![The Save settings button in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/save-settings.png) +5. Wait for the configuration run to complete. -## Corrigir descompassos de tempo +## Correcting a large time drift -O protocolo NTP corrige continuamente pequenas discrepâncias de sincronização de tempo. Você pode usar o shell administrativo para sincronizar a hora de imediato. +The NTP protocol continuously corrects small time synchronization discrepancies. You can use the administrative shell to synchronize time immediately. {% note %} -**Notas:** - - Você não pode modificar o Tempo Universal Coordenado (UTC); - - Você deve impedir seu hipervisor de tentar configurar o relógio da máquina virtual. Para obter mais informações, consulte a documentação fornecida pelo provedor de virtualização. +**Notes:** + - You can't modify the Coordinated Universal Time (UTC) zone. + - You should prevent your hypervisor from trying to set the virtual machine's clock. For more information, see the documentation provided by the virtualization provider. {% endnote %} -- Use o comando `chronyc` para sincronizar seu servidor com o servidor NTP configurado. Por exemplo: +- Use the `chronyc` command to synchronize the server with the configured NTP server. For example: ```shell $ sudo chronyc -a makestep diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md index 63a4e30d1b..8444f9199d 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md @@ -1,13 +1,13 @@ --- -title: Habilitar e programar o modo de manutenção -intro: 'Alguns procedimentos de manutenção padrão, como atualizar a {% data variables.product.product_location %} ou fazer backups de restauração, exigem que a instância esteja offline para uso normal.' +title: Enabling and scheduling maintenance mode +intro: 'Some standard maintenance procedures, such as upgrading {% data variables.product.product_location %} or restoring backups, require the instance to be taken offline for normal use.' redirect_from: - - /enterprise/admin/maintenance-mode/ - - /enterprise/admin/categories/maintenance-mode/ - - /enterprise/admin/articles/maintenance-mode/ - - /enterprise/admin/articles/enabling-maintenance-mode/ - - /enterprise/admin/articles/disabling-maintenance-mode/ - - /enterprise/admin/guides/installation/maintenance-mode/ + - /enterprise/admin/maintenance-mode + - /enterprise/admin/categories/maintenance-mode + - /enterprise/admin/articles/maintenance-mode + - /enterprise/admin/articles/enabling-maintenance-mode + - /enterprise/admin/articles/disabling-maintenance-mode + - /enterprise/admin/guides/installation/maintenance-mode - /enterprise/admin/installation/enabling-and-scheduling-maintenance-mode - /enterprise/admin/configuration/enabling-and-scheduling-maintenance-mode - /admin/configuration/enabling-and-scheduling-maintenance-mode @@ -19,52 +19,55 @@ topics: - Fundamentals - Maintenance - Upgrades -shortTitle: Configurar modo de manutenção +shortTitle: Configure maintenance mode --- +## About maintenance mode -## Sobre o modo de manutenção +Some types of operations require that you take {% data variables.product.product_location %} offline and put it into maintenance mode: +- Upgrading to a new version of {% data variables.product.prodname_ghe_server %} +- Increasing CPU, memory, or storage resources allocated to the virtual machine +- Migrating data from one virtual machine to another +- Restoring data from a {% data variables.product.prodname_enterprise_backup_utilities %} snapshot +- Troubleshooting certain types of critical application issues -Alguns tipos de operações requerem que a {% data variables.product.product_location %} esteja offline e no modo de manutenção: -- Atualizar para uma nova versão do {% data variables.product.prodname_ghe_server %}; -- Aumentar a capacidade dos recursos de CPU, memória ou armazenamento alocados na máquina virtual; -- Migrar dados de uma máquina virtual para outra; -- Restaurar dados de um instantâneo do {% data variables.product.prodname_enterprise_backup_utilities %}; -- Solucionar determinados tipos de problemas graves no aplicativo. +We recommend that you schedule a maintenance window for at least 30 minutes in the future to give users time to prepare. When a maintenance window is scheduled, all users will see a banner when accessing the site. -É recomendável programar um período de manutenção de no mínimo 30 minutos para que os usuários tenham tempo de se preparar. Quando houver um período de manutenção programado, todos os usuários verão um banner ao acessar o site. +![End user banner about scheduled maintenance](/assets/images/enterprise/maintenance/maintenance-scheduled.png) -![Banner para usuário final sobre manutenção programada](/assets/images/enterprise/maintenance/maintenance-scheduled.png) +When the instance is in maintenance mode, all normal HTTP and Git access is refused. Git fetch, clone, and push operations are also rejected with an error message indicating that the site is temporarily unavailable. GitHub Actions jobs will not be executed. Visiting the site in a browser results in a maintenance page. -Quando a instância estiver em modo de manutenção, todos os acessos regulares por HTTP e Git serão recusados. Operações de fetch, clonagem e push também são rejeitadas, e uma mensagem de erro indicará que o site está temporariamente indisponível. Os trabalhos com GitHub Actions não serão executados. O acesso ao site por navegador levará a uma página de manutenção. +![The maintenance mode splash screen](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) -![Tela inicial do modo de manutenção](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) - -## Habilitar o modo de manutenção imediatamente ou programar um período de manutenção mais tarde +## Enabling maintenance mode immediately or scheduling a maintenance window for a later time {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. Na parte superior do {% data variables.enterprise.management_console %}, clique em **Maintenance** (Manutenção). ![Guia de manutenção](/assets/images/enterprise/management-console/maintenance-tab.png) -3. Em "Enable and schedule" (Habilitar e programar), decida se você quer habilitar o modo de manutenção imediatamente ou programar um período de manutenção depois. - - Para habilitar o modo de manutenção imediatamente, use o menu suspenso e clique em **Now** (Agora). ![Menu suspenso com a opção para habilitar o modo de manutenção agora](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) - - Para programar um período de manutenção depois, use o menu suspenso e clique no horário em que você pretende iniciar o período de manutenção.![Menu suspenso com a opção para habilitar o modo de manutenção em duas horas](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) -4. Selecione **Enable maintenance mode** (Habilitar modo de manutenção). ![Caixa de seleção para habilitar ou programar o modo de manutenção](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) +2. At the top of the {% data variables.enterprise.management_console %}, click **Maintenance**. + ![Maintenance tab](/assets/images/enterprise/management-console/maintenance-tab.png) +3. Under "Enable and schedule", decide whether to enable maintenance mode immediately or to schedule a maintenance window for a future time. + - To enable maintenance mode immediately, use the drop-down menu and click **now**. + ![Drop-down menu with the option to enable maintenance mode now selected](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) + - To schedule a maintenance window for a future time, use the drop-down menu and click a start time. + ![Drop-down menu with the option to schedule a maintenance window in two hours selected](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) +4. Select **Enable maintenance mode**. + ![Checkbox for enabling or scheduling maintenance mode](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} -## Programar o modo de manutenção com a {% data variables.product.prodname_enterprise_api %} +## Scheduling maintenance mode with {% data variables.product.prodname_enterprise_api %} -Você pode programar o modo de manutenção para horas ou datas diferentes na {% data variables.product.prodname_enterprise_api %}. Para obter mais informações, consulte "[Console de gerenciamento](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)". +You can schedule maintenance for different times or dates with {% data variables.product.prodname_enterprise_api %}. For more information, see "[Management Console](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)." -## Habilitar ou desabilitar o modo de manutenção para todos os nós do cluster +## Enabling or disabling maintenance mode for all nodes in a cluster -Com o utilitário `ghe-cluster-maintenance`, você pode definir ou cancelar as definições do modo de manutenção para cada nó de um cluster. +With the `ghe-cluster-maintenance` utility, you can set or unset maintenance mode for every node in a cluster. ```shell $ ghe-cluster-maintenance -h -# Mostra opções +# Shows options $ ghe-cluster-maintenance -q -# Consultas no modo atual +# Queries the current mode $ ghe-cluster-maintenance -s -# Define o modo de manutenção +# Sets maintenance mode $ ghe-cluster-maintenance -u -# Cancela a definição do modo de manutenção +# Unsets maintenance mode ``` diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md index c22bf16165..a4343fa9a8 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md @@ -1,10 +1,10 @@ --- -title: Habilitar o modo privado -intro: 'No modo privado, o {% data variables.product.prodname_ghe_server %} exige que todos os usuários façam login para acessar a instalação.' +title: Enabling private mode +intro: 'In private mode, {% data variables.product.prodname_ghe_server %} requires every user to sign in to access the installation.' redirect_from: - - /enterprise/admin/articles/private-mode/ - - /enterprise/admin/guides/installation/security/ - - /enterprise/admin/guides/installation/securing-your-instance/ + - /enterprise/admin/articles/private-mode + - /enterprise/admin/guides/installation/security + - /enterprise/admin/guides/installation/securing-your-instance - /enterprise/admin/installation/enabling-private-mode - /enterprise/admin/configuration/enabling-private-mode - /admin/configuration/enabling-private-mode @@ -21,15 +21,15 @@ topics: - Privacy - Security --- - -Você deve habilitar o modo privado se a {% data variables.product.product_location %} estiver acessível publicamente pela Internet. No modo privado, os usuários não podem clonar anonimamente repositórios em `git://`. Se a autenticação integrada também estiver habilitada, o administrador deverá convidar novos usuários para criar uma conta na instância. Para obter mais informações, consulte "[Usar autenticação integrada](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)". +You must enable private mode if {% data variables.product.product_location %} is publicly accessible over the Internet. In private mode, users cannot anonymously clone repositories over `git://`. If built-in authentication is also enabled, an administrator must invite new users to create an account on the instance. For more information, see "[Using built-in authentication](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)." {% data reusables.enterprise_installation.image-urls-viewable-warning %} -Com o modo privado habilitado, você pode permitir que operações não autenticadas do Git (e qualquer pessoa com acesso de rede à {% data variables.product.product_location %}) leia o código de um repositório público na sua instância com o acesso de leitura anônimo do Git habilitado. Para obter mais informações, consulte "[Permitir que administradores habilitem o acesso de leitura anônimo do Git a repositórios públicos](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)". +With private mode enabled, you can allow unauthenticated Git operations (and anyone with network access to {% data variables.product.product_location %}) to read a public repository's code on your instance with anonymous Git read access enabled. For more information, see "[Allowing admins to enable anonymous Git read access to public repositories](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)." {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -4. Selecione **Private mode** (Modo privado). ![Caixa de seleção para habilitar o modo privado](/assets/images/enterprise/management-console/private-mode-checkbox.png) +4. Select **Private mode**. + ![Checkbox for enabling private mode](/assets/images/enterprise/management-console/private-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/index.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/index.md index aa921c6d45..ff4c39c4da 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/index.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/index.md @@ -2,10 +2,10 @@ title: Configuring your enterprise intro: 'After {% data variables.product.product_name %} is up and running, you can configure your enterprise to suit your organization''s needs.' redirect_from: - - /enterprise/admin/guides/installation/basic-configuration/ - - /enterprise/admin/guides/installation/administrative-tools/ - - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts/ - - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/basic-configuration + - /enterprise/admin/guides/installation/administrative-tools + - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts + - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance - /enterprise/admin/installation/configuring-the-github-enterprise-server-appliance - /enterprise/admin/configuration/configuring-your-enterprise versions: diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md index 610a1878cc..36e474e3e2 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md @@ -2,7 +2,7 @@ title: Site admin dashboard intro: '{% data reusables.enterprise_site_admin_settings.about-the-site-admin-dashboard %}' redirect_from: - - /enterprise/admin/articles/site-admin-dashboard/ + - /enterprise/admin/articles/site-admin-dashboard - /enterprise/admin/installation/site-admin-dashboard - /enterprise/admin/configuration/site-admin-dashboard - /admin/configuration/site-admin-dashboard diff --git a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md index 9885a92c9a..40a22785f7 100644 --- a/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md +++ b/translations/pt-BR/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md @@ -1,9 +1,9 @@ --- -title: Solução de problemas de SSL -intro: 'Em caso de problemas de SSL com seu appliance, veja o que você pode fazer para resolvê-los.' +title: Troubleshooting SSL errors +intro: 'If you run into SSL issues with your appliance, you can take actions to resolve them.' redirect_from: - - /enterprise/admin/articles/troubleshooting-ssl-errors/ - - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration/ + - /enterprise/admin/articles/troubleshooting-ssl-errors + - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration - /enterprise/admin/installation/troubleshooting-ssl-errors - /enterprise/admin/configuration/troubleshooting-ssl-errors - /admin/configuration/troubleshooting-ssl-errors @@ -17,66 +17,65 @@ topics: - Networking - Security - Troubleshooting -shortTitle: Solucionar problemas de erros SSL +shortTitle: Troubleshoot SSL errors --- +## Removing the passphrase from your key file -## Remover a frase secreta do arquivo de chave +If you have a Linux machine with OpenSSL installed, you can remove your passphrase. -Se você tiver uma máquina Linux com OpenSSL instalado, será possível remover a frase secreta. - -1. Renomeie seu arquivo de chave original. +1. Rename your original key file. ```shell $ mv yourdomain.key yourdomain.key.orig ``` -2. Gere uma nova chave SSH sem frase secreta. +2. Generate a new key without a passphrase. ```shell $ openssl rsa -in yourdomain.key.orig -out yourdomain.key ``` -A senha da chave será solicitada quando você executar esse comando. +You'll be prompted for the key's passphrase when you run this command. -Para obter mais informações sobre o OpenSSL, consulte a [Documentação do OpenSSL](https://www.openssl.org/docs/). +For more information about OpenSSL, see [OpenSSL's documentation](https://www.openssl.org/docs/). -## Converter o certificado ou chave SSL em formato PEM +## Converting your SSL certificate or key into PEM format -Se você tiver o OpenSSL instalado, é possível converter sua chave em formato PEM com o comando `openssl`. Por exemplo, você pode converter uma chave do formato DER para o formato PEM. +If you have OpenSSL installed, you can convert your key into PEM format by using the `openssl` command. For example, you can convert a key from DER format into PEM format. ```shell $ openssl rsa -in yourdomain.der -inform DER -out yourdomain.key -outform PEM ``` -Se não tiver, você pode usar a ferramenta SSL Converter para converter seu certificado em formato PEM. Para obter mais informações, consulte a [documentação da ferramenta SSL Converter](https://www.sslshopper.com/ssl-converter.html). +Otherwise, you can use the SSL Converter tool to convert your certificate into the PEM format. For more information, see the [SSL Converter tool's documentation](https://www.sslshopper.com/ssl-converter.html). -## Instalação parada após upload de chave +## Unresponsive installation after uploading a key -Se a {% data variables.product.product_location %} parar de funcionar após o upload de uma chave SSL, [entre em contato com o suporte do {% data variables.product.prodname_enterprise %}](https://enterprise.github.com/support) informando detalhes específicos, inclusive uma cópia do seu certificado SSL. +If {% data variables.product.product_location %} is unresponsive after uploading an SSL key, please [contact {% data variables.product.prodname_enterprise %} Support](https://enterprise.github.com/support) with specific details, including a copy of your SSL certificate. -## Erros de validade de certificado +## Certificate validity errors -Se não conseguirem verificar a validade de um certificado SSL, clientes como navegadores da web e Gits de linha de comando exibirão uma mensagem de erro. Isso costuma acontecer com certificados autoassinados e certificados de "raiz encadeada" emitidos a partir de um certificado raiz intermediário não reconhecido pelo cliente. +Clients such as web browsers and command-line Git will display an error message if they cannot verify the validity of an SSL certificate. This often occurs with self-signed certificates as well as "chained root" certificates issued from an intermediate root certificate that is not recognized by the client. -Se você estiver usando um certificado assinado por uma autoridade de certificação (CA), o arquivo de certificado que você carregar no {% data variables.product.prodname_ghe_server %} deverá incluir uma cadeia de certificados com o certificado raiz da autoridade certificada em questão. Para criar esse arquivo, concatene toda a sua cadeia de certificados (ou "pacote de certificados") até o fim, garantindo que o certificado principal com o nome de host seja o primeiro. Na maioria dos sistemas, fazer isso é possível com um comando semelhante ao seguinte: +If you are using a certificate signed by a certificate authority (CA), the certificate file that you upload to {% data variables.product.prodname_ghe_server %} must include a certificate chain with that CA's root certificate. To create such a file, concatenate your entire certificate chain (or "certificate bundle") onto the end of your certificate, ensuring that the principal certificate with your hostname comes first. On most systems you can do this with a command similar to: ```shell $ cat yourdomain.com.crt bundle-certificates.crt > yourdomain.combined.crt ``` -Você deve poder baixar um pacote de certificados (por exemplo, `bundle-certificates.crt`) da sua autoridade certificada ou do fornecedor de SSL. +You should be able to download a certificate bundle (for example, `bundle-certificates.crt`) from your certificate authority or SSL vendor. -## Instalar certificados raiz de autoridade de certificação (CA) autoassinada ou não confiável +## Installing self-signed or untrusted certificate authority (CA) root certificates -Se o seu appliance do {% data variables.product.prodname_ghe_server %} interage na rede com outras máquinas que usam certificados autoassinados ou não confiáveis, será necessário importar o certificado raiz da CA de assinatura para o armazenamento geral do sistema a fim de acessar esses sistemas por HTTPS. +If your {% data variables.product.prodname_ghe_server %} appliance interacts with other machines on your network that use a self-signed or untrusted certificate, you will need to import the signing CA's root certificate into the system-wide certificate store in order to access those systems over HTTPS. -1. Obtenha o certificado raiz da autoridade de certificação local e verifique se ele está no formato PEM. -2. Copie o arquivo para o seu appliance do {% data variables.product.prodname_ghe_server %} via SSH como usuário "admin" na porta 122. +1. Obtain the CA's root certificate from your local certificate authority and ensure it is in PEM format. +2. Copy the file to your {% data variables.product.prodname_ghe_server %} appliance over SSH as the "admin" user on port 122. ```shell $ scp -P 122 rootCA.crt admin@HOSTNAME:/home/admin ``` -3. Conecte-se ao shell administrativo do {% data variables.product.prodname_ghe_server %} via SSH como usuário "admin" na porta 122. +3. Connect to the {% data variables.product.prodname_ghe_server %} administrative shell over SSH as the "admin" user on port 122. ```shell $ ssh -p 122 admin@HOSTNAME ``` -4. Importe o certificado no armazenamento geral do sistema. +4. Import the certificate into the system-wide certificate store. ```shell $ ghe-ssl-ca-certificate-install -c rootCA.crt ``` diff --git a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md index 5a1202b892..ac01707283 100644 --- a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md +++ b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md @@ -3,9 +3,9 @@ title: Connecting your enterprise account to GitHub Enterprise Cloud shortTitle: Connect enterprise accounts intro: 'After you enable {% data variables.product.prodname_github_connect %}, you can share specific features and workflows between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom/ + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom - /enterprise/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud - /enterprise/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud - /admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud @@ -34,15 +34,19 @@ To configure a connection, your proxy configuration must allow connectivity to ` After enabling {% data variables.product.prodname_github_connect %}, you will be able to enable features such as unified search and unified contributions. For more information about all of the features available, see "[Managing connections between your enterprise accounts](/admin/configuration/managing-connections-between-your-enterprise-accounts)." -When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: +When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, or enable {% data variables.product.prodname_github_connect %} features, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: {% ifversion ghes %} - The public key portion of your {% data variables.product.prodname_ghe_server %} license - A hash of your {% data variables.product.prodname_ghe_server %} license - The customer name on your {% data variables.product.prodname_ghe_server %} license - The version of {% data variables.product.product_location_enterprise %}{% endif %} -- The hostname of your {% data variables.product.product_name %} instance +- The hostname of {% data variables.product.product_location %} - The organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %} that's connected to {% data variables.product.product_location %} - The authentication token that's used by {% data variables.product.product_location %} to make requests to {% data variables.product.prodname_dotcom_the_website %} +- If Transport Layer Security (TLS) is enabled and configured on {% data variables.product.product_location %}{% ifversion ghes %} +- The {% data variables.product.prodname_github_connect %} features that are enabled on {% data variables.product.product_location %}, and the date and time of enablement{% endif %} + +{% data variables.product.prodname_github_connect %} syncs the above connection data between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %} weekly, from the day and approximate time that {% data variables.product.prodname_github_connect %} was enabled. Enabling {% data variables.product.prodname_github_connect %} also creates a {% data variables.product.prodname_github_app %} owned by your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account. {% data variables.product.product_name %} uses the {% data variables.product.prodname_github_app %}'s credentials to make requests to {% data variables.product.prodname_dotcom_the_website %}. {% ifversion ghes %} diff --git a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md index 2691561e8b..cc41266506 100644 --- a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md +++ b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md @@ -70,19 +70,23 @@ You can enable the dependency graph via the {% data variables.enterprise.managem {% endif %} {% data reusables.enterprise_site_admin_settings.sign-in %} 1. In the administrative shell, enable the dependency graph on {% data variables.product.product_location %}: - ``` shell - $ {% ifversion ghes > 3.1 %}ghe-config app.dependency-graph.enabled true{% else %}ghe-config app.github.dependency-graph-enabled true{% endif %} + {% ifversion ghes > 3.1 %}```shell + ghe-config app.dependency-graph.enabled true ``` + {% else %}```shell + ghe-config app.github.dependency-graph-enabled true + ghe-config app.github.vulnerability-alerting-and-settings-enabled true + ```{% endif %} {% note %} **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)." {% endnote %} -1. Apply the configuration. +2. Apply the configuration. ```shell $ ghe-config-apply ``` -1. Return to {% data variables.product.prodname_ghe_server %}. +3. Return to {% data variables.product.prodname_ghe_server %}. {% endif %} ### Enabling {% data variables.product.prodname_dependabot_alerts %} diff --git a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md index 22ccd67d2e..dd4e7113c3 100644 --- a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md +++ b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified contributions between your enterprise account and GitHub shortTitle: Enable unified contributions intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow {% data variables.product.prodname_ghe_cloud %} members to highlight their work on {% data variables.product.product_name %} by sending the contribution counts to their {% data variables.product.prodname_dotcom_the_website %} profiles.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom diff --git a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md index e857470482..0235337178 100644 --- a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md +++ b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified search between your enterprise account and GitHub.com shortTitle: Enable unified search intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow search of {% data variables.product.prodname_dotcom_the_website %} for members of your enterprise on {% data variables.product.product_name %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom diff --git a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md index c5a822c47a..f46553f059 100644 --- a/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md +++ b/translations/pt-BR/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md @@ -3,9 +3,9 @@ title: Managing connections between your enterprise accounts intro: 'With {% data variables.product.prodname_github_connect %}, you can share certain features and data between {% data variables.product.product_location %} and your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %}.' redirect_from: - /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom - /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud diff --git a/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/about-clustering.md b/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/about-clustering.md index 9c29f3448c..77aa3f9b25 100644 --- a/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/about-clustering.md +++ b/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/about-clustering.md @@ -1,10 +1,10 @@ --- -title: Sobre clustering -intro: 'Com o clustering do {% data variables.product.prodname_ghe_server %}, os serviços que compõem o {% data variables.product.prodname_ghe_server %} podem ser dimensionados em vários nós.' +title: About clustering +intro: '{% data variables.product.prodname_ghe_server %} clustering allows services that make up {% data variables.product.prodname_ghe_server %} to be scaled out across multiple nodes.' redirect_from: - /enterprise/admin/clustering/overview - /enterprise/admin/clustering/about-clustering - - /enterprise/admin/clustering/clustering-overview/ + - /enterprise/admin/clustering/clustering-overview - /enterprise/admin/enterprise-management/about-clustering - /admin/enterprise-management/about-clustering versions: @@ -14,23 +14,22 @@ topics: - Clustering - Enterprise --- +## Clustering architecture -## Arquitetura de clustering +{% data variables.product.prodname_ghe_server %} is comprised of a set of services. In a cluster, these services run across multiple nodes and requests are load balanced between them. Changes are automatically stored with redundant copies on separate nodes. Most of the services are equal peers with other instances of the same service. The exceptions to this are the `mysql-server` and `redis-server` services. These operate with a single _primary_ node with one or more _replica_ nodes. -O {% data variables.product.prodname_ghe_server %} é formado por um conjunto de serviços. Em um cluster, esses serviços são executados em vários nós e as solicitações são balanceadas por carga entre eles. As alterações são armazenadas automaticamente com cópias redundantes em nós separados. A maioria dos serviços são pares iguais com outras instâncias do mesmo serviço. As exceções são os serviços `mysql-server` e `redis-server`, que operam em um único nó _primário_ com um ou mais nós _réplica_. +Learn more about [services required for clustering](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering). -Saiba mais sobre os [serviços necessários para os agrupamentos](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering). +## Is clustering right for my organization? -## Clustering é a opção ideal para a minha organização? +{% data reusables.enterprise_clustering.clustering-scalability %} However, setting up a redundant and scalable cluster can be complex and requires careful planning. This additional complexity will need to be planned for during installation, disaster recovery scenarios, and upgrades. -{% data reusables.enterprise_clustering.clustering-scalability %} No entanto, configurar um cluster redundante e dimensionável pode ser uma tarefa complexa e requer planejamento cuidadoso. A complexidade adicional deve ser planejada para a instalação, os cenários de recuperação de desastre e as atualizações. +{% data variables.product.prodname_ghe_server %} requires low latency between nodes and is not intended for redundancy across geographic locations. -O {% data variables.product.prodname_ghe_server %} requer baixa latência entre os nós e não foi feito para a redundância entre locais geográficos. - -O clustering fornece redundância, mas não foi feito para substituir uma configuração de alta disponibilidade. Para obter mais informações, consulte [Configuração de alta disponibilidade](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability). A configuração de um failover primário/secundário é muito mais simples do que o clustering e funcionará perfeitamente para várias organizações. Para obter mais informações, consulte [Diferenças entre clustering e alta disponibilidade](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/). +Clustering provides redundancy, but it is not intended to replace a High Availability configuration. For more information, see [High Availability configuration](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability). A primary/secondary failover configuration is far simpler than clustering and will serve the needs of many organizations. For more information, see [Differences between Clustering and High Availability](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/). {% data reusables.package_registry.packages-cluster-support %} -## Como faço para obter acesso ao clustering? +## How do I get access to clustering? -O clustering foi feito para situações específicas de dimensionamento e não se aplica a todas as organizações. Se você está pensando em usar o clustering, converse com seu representante exclusivo ou {% data variables.contact.contact_enterprise_sales %}. +Clustering is designed for specific scaling situations and is not intended for every organization. If clustering is something you'd like to consider, please contact your dedicated representative or {% data variables.contact.contact_enterprise_sales %}. diff --git a/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/index.md b/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/index.md index bee90dc628..3738fe80e6 100644 --- a/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/index.md +++ b/translations/pt-BR/content/admin/enterprise-management/configuring-clustering/index.md @@ -1,10 +1,10 @@ --- -title: Configurar o agrupamento -intro: Saiba mais sobre clustering e diferenças com alta disponibilidade. +title: Configuring clustering +intro: Learn about clustering and differences with high availability. redirect_from: - /enterprise/admin/clustering/setting-up-the-cluster-instances - /enterprise/admin/clustering/managing-a-github-enterprise-server-cluster - - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster/ + - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster - /enterprise/admin/enterprise-management/configuring-clustering versions: ghes: '*' diff --git a/translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/index.md b/translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/index.md index 4f388d3267..f2287f14df 100644 --- a/translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/index.md +++ b/translations/pt-BR/content/admin/enterprise-management/configuring-high-availability/index.md @@ -1,12 +1,12 @@ --- -title: Configurar alta disponibilidade +title: Configuring high availability redirect_from: - /enterprise/admin/installation/configuring-github-enterprise-server-for-high-availability - - /enterprise/admin/guides/installation/high-availability-cluster-configuration/ - - /enterprise/admin/guides/installation/high-availability-configuration/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability/ + - /enterprise/admin/guides/installation/high-availability-cluster-configuration + - /enterprise/admin/guides/installation/high-availability-configuration + - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability - /enterprise/admin/enterprise-management/configuring-high-availability -intro: 'O {% data variables.product.prodname_ghe_server %} dá suporte ao modo de alta disponibilidade da operação visando minimizar o tempo de inatividade do serviço em caso de falha de hardware ou interrupção prolongada da rede.' +intro: '{% data variables.product.prodname_ghe_server %} supports a high availability mode of operation designed to minimize service disruption in the event of hardware failure or major network outage affecting the primary appliance.' versions: ghes: '*' topics: @@ -18,6 +18,6 @@ children: - /recovering-a-high-availability-configuration - /removing-a-high-availability-replica - /about-geo-replication -shortTitle: Configurar alta disponibilidade +shortTitle: Configure high availability --- diff --git a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md index 7a428fdd2d..8d39fdb11a 100644 --- a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md +++ b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md @@ -1,9 +1,9 @@ --- -title: Configurar collectd -intro: 'O {% data variables.product.prodname_enterprise %} pode coletar dados com `collectd` e enviá-los para um servidor externo `collectd`. Reunimos um conjunto padrão de dados e outras métricas, como uso de CPU, consumo de memória e disco, tráfego e erros da interface de rede e carga geral da VM.' +title: Configuring collectd +intro: '{% data variables.product.prodname_enterprise %} can gather data with `collectd` and send it to an external `collectd` server. Among other metrics, we gather a standard set of data such as CPU utilization, memory and disk consumption, network interface traffic and errors, and the VM''s overall load.' redirect_from: - /enterprise/admin/installation/configuring-collectd - - /enterprise/admin/articles/configuring-collectd/ + - /enterprise/admin/articles/configuring-collectd - /enterprise/admin/enterprise-management/configuring-collectd - /admin/enterprise-management/configuring-collectd versions: @@ -16,15 +16,14 @@ topics: - Monitoring - Performance --- +## Set up an external `collectd` server -## Configurar um servidor externo `collectd` +If you haven't already set up an external `collectd` server, you will need to do so before enabling `collectd` forwarding on {% data variables.product.product_location %}. Your `collectd` server must be running `collectd` version 5.x or higher. -Se você ainda não configurou um servidor externo `collectd`, será preciso fazê-lo antes de ativar o encaminhamento `collectd` na {% data variables.product.product_location %}. Seu servidor `collectd` deve estar executando uma versão `collectd` 5.x ou superior. +1. Log into your `collectd` server. +2. Create or edit the `collectd` configuration file to load the network plugin and populate the server and port directives with the proper values. On most distributions, this is located at `/etc/collectd/collectd.conf` -1. Faça login no servidor `collectd`. -2. Crie ou edite o arquivo de configuração `collectd` para carregar o plugin de rede e preencher as diretivas de servidor e porta com os valores adequados. Na maioria das distribuições, esses dados ficam em `/etc/collectd/collectd.conf` - -Exemplo de *collectd.conf* para executar um servidor `collectd`: +An example *collectd.conf* to run a `collectd` server: LoadPlugin network ... @@ -33,34 +32,34 @@ Exemplo de *collectd.conf* para executar um servidor `collectd`: Listen "0.0.0.0" "25826" </Plugin> -## Habilitar o encaminhamento collectd no {% data variables.product.prodname_enterprise %} +## Enable collectd forwarding on {% data variables.product.prodname_enterprise %} -Por padrão, o encaminhamento `collectd` fica desabilitado no {% data variables.product.prodname_enterprise %}. Siga as etapas abaixo para habilitar e configurar o encaminhamento `collectd`: +By default, `collectd` forwarding is disabled on {% data variables.product.prodname_enterprise %}. Follow the steps below to enable and configure `collectd` forwarding: {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -1. Abaixo das configurações de encaminhamento de log, selecione **Enable collectd forwarding** (Habilitar encaminhamento collectd). -1. No campo **Server address** (Endereço do servidor), digite o endereço do servidor `collectd` para o qual você deseja encaminhar as estatísticas do appliance do {% data variables.product.prodname_enterprise %}. -1. No campo **Port** (Porta), digite a porta usada para conexão com o servidor `collectd` (o padrão é 25826). -1. No menu suspenso **Cryptographic setup** (Configuração criptográfica), selecione o nível de segurança das comunicações com o servidor `collectd` (nenhum, pacotes assinados ou pacotes criptografados). +1. Below the log forwarding settings, select **Enable collectd forwarding**. +1. In the **Server address** field, type the address of the `collectd` server to which you'd like to forward {% data variables.product.prodname_enterprise %} appliance statistics. +1. In the **Port** field, type the port used to connect to the `collectd` server. (Defaults to 25826) +1. In the **Cryptographic setup** dropdown menu, select the security level of communications with the `collectd` server. (None, signed packets, or encrypted packets.) {% data reusables.enterprise_management_console.save-settings %} -## Exportar dados coletados com `ghe-export-graphs` +## Exporting collectd data with `ghe-export-graphs` -A ferramenta de linha de comando `ghe-export-graphs` exportará os dados que `collectd` armazenar em bancos de dados RRD. O comando transforma os dados em XML e os exporta para um único tarball (.tgz). +The command-line tool `ghe-export-graphs` will export the data that `collectd` stores in RRD databases. This command turns the data into XML and exports it into a single tarball (.tgz). -Seu uso principal é fornecer à equipe do {% data variables.contact.contact_ent_support %} dados sobre o desempenho de uma VM sem que seja necessário baixar um pacote de suporte completo. Ele não deve ser incluído nas exportações de backup regulares e não há contrapartida de importação. Se você entrar em contato com o {% data variables.contact.contact_ent_support %} para fins de solução de problemas, esses dados podem ser solicitados. +Its primary use is to provide the {% data variables.contact.contact_ent_support %} team with data about a VM's performance, without the need for downloading a full Support Bundle. It shouldn't be included in your regular backup exports and there is no import counterpart. If you contact {% data variables.contact.contact_ent_support %}, we may ask for this data to assist with troubleshooting. -### Uso +### Usage ```shell ssh -p 122 admin@[hostname] -- 'ghe-export-graphs' && scp -P 122 admin@[hostname]:~/graphs.tar.gz . ``` -## Solução de Problemas +## Troubleshooting -### Central do servidor collectd não recebe dados +### Central collectd server receives no data -{% data variables.product.prodname_enterprise %} vem com a versão 5.x. de `collectd`. `collectd` 5.x não é retrocompatível com a série de versões 4.x. Seu servidor central `collectd` precisa ser da versão 5.x para aceitar os dados enviados pela {% data variables.product.product_location %}. +{% data variables.product.prodname_enterprise %} ships with `collectd` version 5.x. `collectd` 5.x is not backwards compatible with the 4.x release series. Your central `collectd` server needs to be at least version 5.x to accept data sent from {% data variables.product.product_location %}. -Em caso de dúvidas ou perguntas, entre em contato com o {% data variables.contact.contact_ent_support %}. +For help with further questions or issues, contact {% data variables.contact.contact_ent_support %}. diff --git a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/index.md b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/index.md index 2a896818f9..bb04a0812b 100644 --- a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/index.md +++ b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/index.md @@ -1,9 +1,9 @@ --- -title: Monitorar seu dispositivo -intro: 'O aumento do uso da {% data variables.product.product_location %} ao longo do tempo acarreta também o aumento do uso dos recursos do sistema, como CPU, memória e armazenamento. Você pode configurar o monitoramento e os alertas para identificar os possíveis problemas antes que eles impactem negativamente o desempenho ou a disponibilidade do aplicativo.' +title: Monitoring your appliance +intro: 'As use of {% data variables.product.product_location %} increases over time, the utilization of system resources, like CPU, memory, and storage will also increase. You can configure monitoring and alerting so that you''re aware of potential issues before they become critical enough to negatively impact application performance or availability.' redirect_from: - - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting/ - - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting + - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance - /enterprise/admin/installation/monitoring-your-github-enterprise-server-appliance - /enterprise/admin/enterprise-management/monitoring-your-appliance versions: diff --git a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md index 9af44a3f22..83d8dda6b5 100644 --- a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md +++ b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md @@ -1,9 +1,9 @@ --- -title: Monitorar usando SNMP -intro: 'O {% data variables.product.prodname_enterprise %} fornece dados sobre o uso de disco, CPU, memória e muito mais no SNMP.' +title: Monitoring using SNMP +intro: '{% data variables.product.prodname_enterprise %} provides data on disk usage, CPU utilization, memory usage, and more over SNMP.' redirect_from: - /enterprise/admin/installation/monitoring-using-snmp - - /enterprise/admin/articles/monitoring-using-snmp/ + - /enterprise/admin/articles/monitoring-using-snmp - /enterprise/admin/enterprise-management/monitoring-using-snmp - /admin/enterprise-management/monitoring-using-snmp versions: @@ -15,101 +15,107 @@ topics: - Monitoring - Performance --- +SNMP is a common standard for monitoring devices over a network. We strongly recommend enabling SNMP so you can monitor the health of {% data variables.product.product_location %} and know when to add more memory, storage, or processor power to the host machine. -O SNMP é um padrão comum para monitorar dispositivos em uma rede. É altamente recomendável ativar o SNMP para monitorar a integridade da {% data variables.product.product_location %} e saber quando adicionar mais memória, armazenamento ou potência do processador à máquina host. +{% data variables.product.prodname_enterprise %} has a standard SNMP installation, so you can take advantage of the [many plugins](http://www.monitoring-plugins.org/doc/man/check_snmp.html) available for Nagios or for any other monitoring system. -O {% data variables.product.prodname_enterprise %} tem uma instalação SNMP padrão que permite aproveitar [vários plugins](http://www.monitoring-plugins.org/doc/man/check_snmp.html) disponíveis para Nagios ou qualquer outro sistema de monitoramento. - -## Configurar SMTP v2c +## Configuring SNMP v2c {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. No campo **Community string** (String de comunidade), insira a nova string da comunidade. Se deixada em branco, essa informação fica como `public` por padrão. ![Campo para adicionar a string da comunidade](/assets/images/enterprise/management-console/community-string.png) +4. In the **Community string** field, enter a new community string. If left blank, this defaults to `public`. +![Field to add the community string](/assets/images/enterprise/management-console/community-string.png) {% data reusables.enterprise_management_console.save-settings %} -5. Teste a configuração SNMP executando o seguinte comando em uma estação de trabalho separada com suporte a SNMP na rede: +5. Test your SNMP configuration by running the following command on a separate workstation with SNMP support in your network: ```shell # community-string is your community string # hostname is the IP or domain of your Enterprise instance $ snmpget -v 2c -c <em>community-string</em> -O e <em>hostname</em> hrSystemDate.0 ``` -Isso deve retornar o horário do sistema no host do {% data variables.product.product_location %}. +This should return the system time on {% data variables.product.product_location %} host. -## Segurança baseada no usuário +## User-based security -Se habilitar o SNMP v3, você poderá aproveitar o aumento da segurança baseada no usuário por meio do User Security Model (USM). É possível especificar um nível de segurança para cada usuário: -- `noAuthNoPriv`: este nível de segurança não oferece autenticação nem privacidade. -- `authNoPriv`: este nível de segurança oferece autenticação, mas não privacidade. Para consultar o appliance, você precisará de nome de usuário e senha (com pelo menos oito caracteres). As informações são enviadas sem criptografia, de modo semelhante ao SNMPv2. O protocolo de autenticação pode ser MD5 ou SHA, e o padrão é SHA. -- `authPriv`: este nível de segurança oferece autenticação e privacidade. A autenticação (com senha de no mínimo oito caracteres) é necessária, e as respostas são criptografadas. Não é necessário usar uma senha de privacidade, mas, se houver, ela deve ter no mínimo oito caracteres. Se não houver senha de privacidade, a senha de autenticação será usada. O protocolo de privacidade pode ser DES ou AES, e o padrão é AES. +If you enable SNMP v3, you can take advantage of increased user based security through the User Security Model (USM). For each unique user, you can specify a security level: +- `noAuthNoPriv`: This security level provides no authentication and no privacy. +- `authNoPriv`: This security level provides authentication but no privacy. To query the appliance you'll need a username and password (that must be at least eight characters long). Information is sent without encryption, similar to SNMPv2. The authentication protocol can be either MD5 or SHA and defaults to SHA. +- `authPriv`: This security level provides authentication with privacy. Authentication, including a minimum eight-character authentication password, is required and responses are encrypted. A privacy password is not required, but if provided it must be at least eight characters long. If a privacy password isn't provided, the authentication password is used. The privacy protocol can be either DES or AES and defaults to AES. -## Configurar usuários para o SNMP v3 +## Configuring users for SNMP v3 {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. Selecione **SNMP v3**. ![Botão para habilitar o SNMP v3](/assets/images/enterprise/management-console/enable-snmpv3.png) -5. Em "Username" (Nome de usuário), digite o nome exclusivo do seu usuário SNMP v3. ![Campo para digitar o nome de usuário SNMP v3](/assets/images/enterprise/management-console/snmpv3-username.png) -6. No menu suspenso **Security Level** (Nível de segurança), clique no nível de segurança do seu usuário SNMP v3. ![Menu suspenso para o nível de segurança do usuário SNMP v3](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) -7. Para usuários SNMP v3 com nível de segurança `authnopriv`: ![Configurações para o nível de segurança authnopriv](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) +4. Select **SNMP v3**. +![Button to enable SNMP v3](/assets/images/enterprise/management-console/enable-snmpv3.png) +5. In "Username", type the unique username of your SNMP v3 user. +![Field to type the SNMP v3 username](/assets/images/enterprise/management-console/snmpv3-username.png) +6. In the **Security Level** dropdown menu, click the security level for your SNMP v3 user. +![Dropdown menu for the SNMP v3 user's security level](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) +7. For SNMP v3 users with the `authnopriv` security level: + ![Settings for the authnopriv security level](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} -8. Para usuários SNMP v3 com nível de segurança `authpriv`: ![Configurações para o nível de segurança authpriv](/assets/images/enterprise/management-console/snmpv3-authpriv.png) +8. For SNMP v3 users with the `authpriv` security level: + ![Settings for the authpriv security level](/assets/images/enterprise/management-console/snmpv3-authpriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} - - Como alternativa, em "Privacy password" (senha de privacidade), digite a senha de privacidade. - - No lado direito de "Privacy password" (Senha de privacidade), no menu suspenso **Protocol** (Protocolo), clique no protocolo de privacidade que você deseja usar. -9. Clique em **Add user** (Adicionar usuário). ![Botão para adicionar usuário SNMP v3](/assets/images/enterprise/management-console/snmpv3-adduser.png) + - Optionally, in "Privacy password", type the privacy password. + - On the right side of "Privacy password", in the **Protocol** dropdown menu, click the privacy protocol method you want to use. +9. Click **Add user**. +![Button to add SNMP v3 user](/assets/images/enterprise/management-console/snmpv3-adduser.png) {% data reusables.enterprise_management_console.save-settings %} -#### Consultar dados SNMP +#### Querying SNMP data -As informações de hardware e software do appliance estão disponíveis no SNMP v3. Devido à falta de criptografia e privacidade para os níveis de segurança dw `noAuthNoPriv` e `authNoPriv`, excluimos a tabela `hrSWRun` (1.3.6.1.2.1.25.4) dos relatórios SNMP resultantes. Incluímos esta tabela para o caso de você estar usando o nível de segurança `authPriv`. Para obter mais informações, consulte a "[Documentação de referência do OID](http://oidref.com/1.3.6.1.2.1.25.4)". +Both hardware and software-level information about your appliance is available with SNMP v3. Due to the lack of encryption and privacy for the `noAuthNoPriv` and `authNoPriv` security levels, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports. We include this table if you're using the `authPriv` security level. For more information, see the "[OID reference documentation](http://oidref.com/1.3.6.1.2.1.25.4)." -Com o SNMP v2c, ficam disponíveis somente as informações em nível de hardware. Os aplicativos e serviços no {% data variables.product.prodname_enterprise %} não têm OIDs configurados para reportar métricas. Diversas MIBs estão disponíveis, o que pode ser visto ao executar `snmpwalk` em uma estação de trabalho à parte com suporte SNMP na rede: +With SNMP v2c, only hardware-level information about your appliance is available. The applications and services within {% data variables.product.prodname_enterprise %} do not have OIDs configured to report metrics. Several MIBs are available, which you can see by running `snmpwalk` on a separate workstation with SNMP support in your network: ```shell -# community-string é a string de sua comunidade -# hostname é o IP ou domínio da sua instância Enterprise +# community-string is your community string +# hostname is the IP or domain of your Enterprise instance $ snmpwalk -v 2c -c <em>community-string</em> -O e <em>hostname</em> ``` -Entre os MIBs disponíveis para SNMP, o mais útil é `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25). Consulte a tabela a seguir para ver objetos importantes dessa MIB: +Of the available MIBs for SNMP, the most useful is `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25). See the table below for some important objects in this MIB: -| Nome | OID | Descrição | -| -------------------------- | ------------------------ | ------------------------------------------------------------------------------------- | -| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | A noção dos hosts de data e hora locais de um dia. | -| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | Tempo transcorrido desde a última inicialização do host. | -| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | Quantidade de RAM no host. | -| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | Número de contextos de processo carregados ou em execução no host. | -| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | Quantidade de espaço de armazenamento consumido no host, em hrStorageAllocationUnits. | -| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | Tamanho em bytes de um hrStorageAllocationUnit. | +| Name | OID | Description | +| ---- | --- | ----------- | +| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | The hosts notion of the local date and time of day. | +| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | How long it's been since the host was last initialized. | +| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | The amount of RAM on the host. | +| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | The number of process contexts currently loaded or running on the host. | +| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | The amount of storage space consumed on the host, in hrStorageAllocationUnits. | +| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | The size, in bytes, of an hrStorageAllocationUnit | -Por exemplo, para consultar `hrMemorySize` com SNMP v3, execute o seguinte comando em outra estação de trabalho com suporte a SNMP na sua rede: +For example, to query for `hrMemorySize` with SNMP v3, run the following command on a separate workstation with SNMP support in your network: ```shell -# username é o nome exclusivo do seu usuário do SNMP v3 -# auth password é a senha de autenticação -# privacy password é a senha de privacidade -# hostname é o IP ou domínio da sua instância do Enterprise +# username is the unique username of your SNMP v3 user +# auth password is the authentication password +# privacy password is the privacy password +# hostname is the IP or domain of your Enterprise instance $ snmpget -v 3 -u <em>username</em> -l authPriv \ -A "<em>auth password</em>" -a SHA \ -X "<em>privacy password</em>" -x AES \ -O e <em>hostname</em> HOST-RESOURCES-MIB::hrMemorySize.0 ``` -Para consultar `hrMemorySize` com SNMP v2c, execute o seguinte comando em outra estação de trabalho com suporte a SNMP na sua rede: +With SNMP v2c, to query for `hrMemorySize`, run the following command on a separate workstation with SNMP support in your network: ```shell -# community-string é a string da sua comunidade -# hostname é o IP ou domínio da sua instância do Enterprise +# community-string is your community string +# hostname is the IP or domain of your Enterprise instance snmpget -v 2c -c <em>community-string</em> <em>hostname</em> HOST-RESOURCES-MIB::hrMemorySize.0 ``` {% tip %} -**Observação:** Para evitar vazamento de informações sobre serviços que estão em execução no aparelho, excluímos a tabela `hrSWRun` (1.3.6.1.2.1.25.4) dos relatórios SNMP resultantes, a menos que você esteja usando o nível de segurança `Priv` com SNMP v3. Incluímos a tabela `hrSWRun` para o caso de você estar usando o nível de segurança `authPriv`. +**Note:** To prevent leaking information about services running on your appliance, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports unless you're using the `authPriv` security level with SNMP v3. If you're using the `authPriv` security level, we include the `hrSWRun` table. {% endtip %} -Para obter mais informações sobre mapeamentos OID para atributos comuns do sistema no SNMP, consulte "[OID de SNMP do Linux para estatísticas de CPU, memória e disco](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)". +For more information on OID mappings for common system attributes in SNMP, see "[Linux SNMP OID’s for CPU, Memory and Disk Statistics](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)". diff --git a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md index 63c58de324..fff12c9155 100644 --- a/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md +++ b/translations/pt-BR/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md @@ -1,8 +1,8 @@ --- -title: Limites de alerta recomendados -intro: 'É possível configurar um alerta para receber notificações sobre os problemas de recursos do sistema antes que eles afetem o desempenho do appliance do {% data variables.product.prodname_ghe_server %}.' +title: Recommended alert thresholds +intro: 'You can configure an alert to notify you of system resource issues before they affect your {% data variables.product.prodname_ghe_server %} appliance''s performance.' redirect_from: - - /enterprise/admin/guides/installation/about-recommended-alert-thresholds/ + - /enterprise/admin/guides/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/recommended-alert-thresholds - /enterprise/admin/enterprise-management/recommended-alert-thresholds @@ -16,38 +16,37 @@ topics: - Monitoring - Performance - Storage -shortTitle: Limites de alerta recomendados +shortTitle: Recommended alert thresholds --- +## Monitoring storage -## Monitorar o armazenamento +We recommend that you monitor both the root and user storage devices and configure an alert with values that allow for ample response time when available disk space is low. -É recomendável monitorar seus dispositivos de armazenamento raiz e de usuário, bem como configurar um alerta com valores que definam um tempo de resposta longo quando o espaço em disco disponível estiver baixo. +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Disk use exceeds 70% of total available | +| **Critical** | Disk use exceeds 85% of total available | -| gravidade | Limite | -| ----------- | -------------------------------------------- | -| **Aviso** | Uso do disco excede 70% do total disponível. | -| **Crítico** | Uso do disco excede 85% do total disponível. | +You can adjust these values based on the total amount of storage allocated, historical growth patterns, and expected time to respond. We recommend over-allocating storage resources to allow for growth and prevent the downtime required to allocate additional storage. -Você pode ajustar esses valores com base na quantidade de armazenamento total alocada, nos padrões históricos de crescimento e no tempo esperado de resposta. Recomendamos a superalocação dos recursos de armazenamento para permitir o crescimento e evitar o tempo de inatividade necessário para alocar armazenamento adicional. +## Monitoring CPU and load average usage -## Monitoramento de CPU e uso médio de carga +Although it is normal for CPU usage to fluctuate based on resource-intense Git operations, we recommend configuring an alert for abnormally high CPU utilization, as prolonged spikes can mean your instance is under-provisioned. We recommend monitoring the fifteen-minute system load average for values nearing or exceeding the number of CPU cores allocated to the virtual machine. -Embora seja normal haver oscilação no uso de CPU conforme as operações do Git, é recomendável configurar um alerta para identificar usos de CPU altos demais, já que os picos prolongados podem indicar provisionamento insuficiente da sua instância. Recomendamos monitorar a média de carga do sistema a cada quinze minutos para valores próximos ou superiores ao número de núcleos de CPU alocados à máquina virtual. +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Fifteen minute load average exceeds 1x CPU cores | +| **Critical** | Fifteen minute load average exceeds 2x CPU cores | -| gravidade | Limite | -| ----------- | ---------------------------------------------------------- | -| **Aviso** | Média de carga de quinze minutos excede 1x núcleos de CPU. | -| **Crítico** | Média de carga de quinze minutos excede 2x núcleos de CPU. | +We also recommend that you monitor virtualization "steal" time to ensure that other virtual machines running on the same host system are not using all of the instance's resources. -Também é recomendável monitorar o tempo de "roubo" da virtualização para garantir que outras máquinas virtuais em execução no mesmo sistema host não usem todos os recursos da instância. +## Monitoring memory usage -## Monitorar o uso de memória +The amount of physical memory allocated to {% data variables.product.product_location %} can have a large impact on overall performance and application responsiveness. The system is designed to make heavy use of the kernel disk cache to speed up Git operations. We recommend that the normal RSS working set fit within 50% of total available RAM at peak usage. -A quantidade de memória física alocada para a {% data variables.product.product_location %} pode ter um grande impacto no desempenho geral e na capacidade de resposta do aplicativo. O sistema é projetado para fazer uso intenso do cache de disco do kernel a fim de acelerar as operações do Git. Recomendamos que o conjunto de trabalho RSS normal caiba em 50% do total de RAM disponível no uso máximo. +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Sustained RSS usage exceeds 50% of total available memory | +| **Critical** | Sustained RSS usage exceeds 70% of total available memory | -| gravidade | Limite | -| ----------- | ---------------------------------------------------------------- | -| **Aviso** | Uso de RSS sustentado excede 50% do total de memória disponível. | -| **Crítico** | Uso de RSS sustentado excede 70% do total de memória disponível. | - -Se a memória estiver esgotada, o killer OOM do kernel tentará liberar recursos de memória eliminando à força os processos de aplicativos pesados da RAM, o que pode causar a interrupção do serviço. É recomendável alocar mais memória do que o necessário para a máquina virtual no curso normal das operações. +If memory is exhausted, the kernel OOM killer will attempt to free memory resources by forcibly killing RAM heavy application processes, which could result in a disruption of service. We recommend allocating more memory to the virtual machine than is required in the normal course of operations. diff --git a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md index bdee30b5d2..126dce06e2 100644 --- a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md +++ b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md @@ -1,9 +1,9 @@ --- -title: Atualizar a máquina virtual e os recursos físicos -intro: 'A atualização de software e hardware virtuais envolve algum tempo de inatividade para sua instância. Portanto, planeje a atualização com bastante antecedência.' +title: Updating the virtual machine and physical resources +intro: 'Upgrading the virtual software and virtual hardware requires some downtime for your instance, so be sure to plan your upgrade in advance.' redirect_from: - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm/' - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources/' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources' - /enterprise/admin/installation/updating-the-virtual-machine-and-physical-resources - /enterprise/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources versions: @@ -17,6 +17,6 @@ children: - /increasing-storage-capacity - /increasing-cpu-or-memory-resources - /migrating-from-github-enterprise-1110x-to-2123 -shortTitle: Atualizar VM & Recursos +shortTitle: Update VM & resources --- diff --git a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md index 16a23c89c4..912f655881 100644 --- a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md +++ b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md @@ -1,16 +1,16 @@ --- -title: Migrar do GitHub Enterprise 11.10.x para o 2.1.23 +title: Migrating from GitHub Enterprise 11.10.x to 2.1.23 redirect_from: - /enterprise/admin/installation/migrating-from-github-enterprise-1110x-to-2123 - - /enterprise/admin-guide/migrating/ - - /enterprise/admin/articles/migrating-github-enterprise/ - - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x/ - - /enterprise/admin/articles/upgrading-to-a-newer-release/ - - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x/ + - /enterprise/admin-guide/migrating + - /enterprise/admin/articles/migrating-github-enterprise + - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x + - /enterprise/admin/articles/upgrading-to-a-newer-release + - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x - /enterprise/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23 - /enterprise/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 - /admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 -intro: 'Para migrar do {% data variables.product.prodname_enterprise %} 11.10.x para o 2.1.23, você precisará configurar uma nova instância do appliance e migrar os dados da instância anterior.' +intro: 'To migrate from {% data variables.product.prodname_enterprise %} 11.10.x to 2.1.23, you''ll need to set up a new appliance instance and migrate data from the previous instance.' versions: ghes: '*' type: how_to @@ -18,81 +18,85 @@ topics: - Enterprise - Migration - Upgrades -shortTitle: Migrar de 11.10.x para 2.1.23 +shortTitle: Migrate from 11.10.x to 2.1.23 --- +Migrations from {% data variables.product.prodname_enterprise %} 11.10.348 and later are supported. Migrating from {% data variables.product.prodname_enterprise %} 11.10.348 and earlier is not supported. You must first upgrade to 11.10.348 in several upgrades. For more information, see the 11.10.348 upgrading procedure, "[Upgrading to the latest release](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)." -Há suporte para migrações do {% data variables.product.prodname_enterprise %} 11.10.348 e mais recentes. Não há suporte para migrações do {% data variables.product.prodname_enterprise %} 11.10.348 e versões anteriores. Você deve atualizar o 11.10.348 em várias etapas de atualização. Para obter mais informações, consulte o procedimento de atualização do 11.10.348, "[Atualizar para a versão mais recente](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)". +To upgrade to the latest version of {% data variables.product.prodname_enterprise %}, you must first migrate to {% data variables.product.prodname_ghe_server %} 2.1, then you can follow the normal upgrade process. For more information, see "[Upgrading {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)". -Para atualizar para a versão mais recente do {% data variables.product.prodname_enterprise %}, você deve migrar para a versão {% data variables.product.prodname_ghe_server %} 2.1 e só então poderá seguir o processo regular. Para obter mais informações, consulte "[Atualizar o {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)". +## Prepare for the migration -## Preparar para a migração - -1. Revise o guia de provisionamento e instalação e verifique se foram atendidos todos os pré-requisitos necessários para provisionar e configurar o {% data variables.product.prodname_enterprise %} 2.1.23 no seu ambiente. Para obter mais informações, consulte "[Provisionar e instalar](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)". -2. Verifique se a instância atual está sendo executada em uma versão de atualização compatível. -3. Configure a versão mais recente do {% data variables.product.prodname_enterprise_backup_utilities %}. Para obter mais informações, consulte [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils). - - Se você já configurou backups programados usando o {% data variables.product.prodname_enterprise_backup_utilities %}, certifique-se de atualizar para a versão mais recente. - - Se você não estiver executando backups programados no momento, configure o {% data variables.product.prodname_enterprise_backup_utilities %}. -4. Faça um instantâneo inicial de backup completo da instância atual usando o comando `ghe-backup`. Se você já configurou backups programados na instância atual, não será necessário obter o instantâneo. +1. Review the Provisioning and Installation guide and check that all prerequisites needed to provision and configure {% data variables.product.prodname_enterprise %} 2.1.23 in your environment are met. For more information, see "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)." +2. Verify that the current instance is running a supported upgrade version. +3. Set up the latest version of the {% data variables.product.prodname_enterprise_backup_utilities %}. For more information, see [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils). + - If you have already configured scheduled backups using {% data variables.product.prodname_enterprise_backup_utilities %}, make sure you have updated to the latest version. + - If you are not currently running scheduled backups, set up {% data variables.product.prodname_enterprise_backup_utilities %}. +4. Take an initial full backup snapshot of the current instance using the `ghe-backup` command. If you have already configured scheduled backups for your current instance, you don't need to take a snapshot of your instance. {% tip %} - **Dica:** durante a obtenção do instantâneo, você pode deixar a instância online e em uso. Você fará outro instantâneo durante a parte de manutenção da migração. Como os backups são incrementais, o instantâneo inicial reduz a quantidade de dados transferidos no instantâneo final, o que pode reduzir o período de manutenção. + **Tip:** You can leave the instance online and in active use during the snapshot. You'll take another snapshot during the maintenance portion of the migration. Since backups are incremental, this initial snapshot reduces the amount of data transferred in the final snapshot, which may shorten the maintenance window. {% endtip %} -5. Determine o método para alternar o tráfego de rede do usuário para a nova instância. Após a migração, todo o tráfego de rede HTTP e Git será direcionado para a nova instância. - - **DNS** - Esse método é recomendável para todos os ambientes porque é simples e funciona bem, mesmo ao migrar de um datacenter para outro. Antes de iniciar a migração, reduza o TTL do registro DNS para cinco minutos ou menos e permita a propagação da alteração. Quando a migração for concluída, atualize o(s) registro(s) DNS de modo a apontar para o endereço IP da nova instância. - - **Atribuição de endereço IP** - Este método só está disponível na migração de VMware para VMware e é recomendado apenas se o método DNS não estiver disponível. Antes de iniciar a migração, você terá que desligar a instância antiga e atribuir seu endereço IP à nova instância. -6. Programe um período de manutenção. O período de manutenção deve abranger tempo suficiente para transferir os dados do host de backup para a nova instância. Esse período varia com base no tamanho do instantâneo de backup e na largura de banda de rede disponível. Durante esse período, sua instância atual ficará indisponível e em modo de manutenção enquanto você migra para a nova instância. +5. Determine the method for switching user network traffic to the new instance. After you've migrated, all HTTP and Git network traffic directs to the new instance. + - **DNS** - We recommend this method for all environments, as it's simple and works well even when migrating from one datacenter to another. Before starting migration, reduce the existing DNS record's TTL to five minutes or less and allow the change to propagate. Once the migration is complete, update the DNS record(s) to point to the IP address of the new instance. + - **IP address assignment** - This method is only available on VMware to VMware migration and is not recommended unless the DNS method is unavailable. Before starting the migration, you'll need to shut down the old instance and assign its IP address to the new instance. +6. Schedule a maintenance window. The maintenance window should include enough time to transfer data from the backup host to the new instance and will vary based on the size of the backup snapshot and available network bandwidth. During this time your current instance will be unavailable and in maintenance mode while you migrate to the new instance. -## Fazer a migração +## Perform the migration -1. Provisione uma nova instância do {% data variables.product.prodname_enterprise %} 2.1. Para obter mais informações, consulte o guia "[Provisionar e instalar](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)" da plataforma de destino. -2. Em um navegador, vá até o novo endereço IP do appliance réplica e faça o upload da sua licença do {% data variables.product.prodname_enterprise %}. -3. Defina uma senha de administrador. -5. Clique em **Migrate** (Migrar). ![Escolher o tipo de instalação](/assets/images/enterprise/migration/migration-choose-install-type.png) -6. Cole a chave SSH de acesso ao host de backup em "Add new SSH key" (Adicionar nova chave SSH). ![Autorizar o backup](/assets/images/enterprise/migration/migration-authorize-backup-host.png) -7. Clique em **Adicionar chave** e, em seguida, clique em **Continuar**. -8. Copie o comando `ghe-restore` a ser executado no host do backup para migrar os dados para a nova instância. ![Iniciar a migração](/assets/images/enterprise/migration/migration-restore-start.png) -9. Habilite o modo de manutenção na instância antiga e aguarde a conclusão de todos os processos ativos. Para obter mais informações, consulte "[Habilitar e programar o modo de manutenção](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)". +1. Provision a new {% data variables.product.prodname_enterprise %} 2.1 instance. For more information, see the "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)" guide for your target platform. +2. In a browser, navigate to the new replica appliance's IP address and upload your {% data variables.product.prodname_enterprise %} license. +3. Set an admin password. +5. Click **Migrate**. +![Choosing install type](/assets/images/enterprise/migration/migration-choose-install-type.png) +6. Paste your backup host access SSH key into "Add new SSH key". +![Authorizing backup](/assets/images/enterprise/migration/migration-authorize-backup-host.png) +7. Click **Add key** and then click **Continue**. +8. Copy the `ghe-restore` command that you'll run on the backup host to migrate data to the new instance. +![Starting a migration](/assets/images/enterprise/migration/migration-restore-start.png) +9. Enable maintenance mode on the old instance and wait for all active processes to complete. For more information, see "[Enabling and scheduling maintenance mode](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)." {% note %} - **Observação:** a partir deste momento, a instância ficará indisponível para uso regular. + **Note:** The instance will be unavailable for normal use from this point forward. {% endnote %} -10. No host do backup, execute o comando `ghe-backup` para fazer o último instantâneo de backup. Essa ação garante a obtenção de todos os dados da instância antiga. -11. No host de backup, execute o comando `ghe-restore` que você copiou na tela de status de restauração da nova instância para restaurar o instantâneo mais recente. +10. On the backup host, run the `ghe-backup` command to take a final backup snapshot. This ensures that all data from the old instance is captured. +11. On the backup host, run the `ghe-restore` command you copied on the new instance's restore status screen to restore the latest snapshot. ```shell $ ghe-restore 169.254.1.1 The authenticity of host '169.254.1.1:122' can't be established. - A impressão digital da chave RSA é fe:96:9e:ac:d0:22:7c:cf:22:68:f2:c3:c9:81:53:d1. - Tem certeza de que deseja continuar com a conexão (sim/não)? yes + RSA key fingerprint is fe:96:9e:ac:d0:22:7c:cf:22:68:f2:c3:c9:81:53:d1. + Are you sure you want to continue connecting (yes/no)? yes Connect 169.254.1.1:122 OK (v2.0.0) Starting restore of 169.254.1.1:122 from snapshot 20141014T141425 Restoring Git repositories ... - Restaurando o GitHub Pages... - Restaurando anexos de ativos... - Restaurando entregas de hooks... - Restaurando o database MySQL... - Restaurando o database Redis... - Restaurando chaves SSH autorizadas... - Restaurando índices do Elasticsearch... - Restaurando chaves SSH de host... + Restoring GitHub Pages ... + Restoring asset attachments ... + Restoring hook deliveries ... + Restoring MySQL database ... + Restoring Redis database ... + Restoring SSH authorized keys ... + Restoring Elasticsearch indices ... + Restoring SSH host keys ... Completed restore of 169.254.1.1:122 from snapshot 20141014T141425 Visit https://169.254.1.1/setup/settings to review appliance configuration. ``` -12. Volte à tela de status de restauração da nova instância para confirmar a conclusão da restauração. ![Tela de restauração concluída](/assets/images/enterprise/migration/migration-status-complete.png) -13. Clique em **Continue to settings** (Continuar em configurações) para revisar e ajustar as informações de configuração importadas da instância anterior. ![Revisar configurações importadas](/assets/images/enterprise/migration/migration-status-complete.png) -14. Clique em **Save settings** (Salvar configurações). +12. Return to the new instance's restore status screen to see that the restore completed. +![Restore complete screen](/assets/images/enterprise/migration/migration-status-complete.png) +13. Click **Continue to settings** to review and adjust the configuration information and settings that were imported from the previous instance. +![Review imported settings](/assets/images/enterprise/migration/migration-status-complete.png) +14. Click **Save settings**. {% note %} - **Observação:** você pode usar a nova instância depois de aplicar as definições de configuração e reiniciar o servidor. + **Note:** You can use the new instance after you've applied configuration settings and restarted the server. {% endnote %} -15. Alterne o tráfego de rede do usuário da instância antiga para a nova instância usando a atribuição de endereço DNS ou IP. -16. Atualize para a versão de patch mais recente da versão {{ currentVersion }}. Para obter mais informações, consulte "[Atualizar o {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)". +15. Switch user network traffic from the old instance to the new instance using either DNS or IP address assignment. +16. Upgrade to the latest patch release of {{ currentVersion }}. For more information, see "[Upgrading {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)." diff --git a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md index 2111abfe4f..67ec886148 100644 --- a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md +++ b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md @@ -3,7 +3,7 @@ title: Upgrade requirements intro: 'Before upgrading {% data variables.product.prodname_ghe_server %}, review these recommendations and requirements to plan your upgrade strategy.' redirect_from: - /enterprise/admin/installation/upgrade-requirements - - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release/ + - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release - /enterprise/admin/enterprise-management/upgrade-requirements - /admin/enterprise-management/upgrade-requirements versions: diff --git a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md index 4f60cb3784..7d618961ca 100644 --- a/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md +++ b/translations/pt-BR/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md @@ -3,15 +3,15 @@ title: Upgrading GitHub Enterprise Server intro: 'Upgrade {% data variables.product.prodname_ghe_server %} to get the latest features and security updates.' redirect_from: - /enterprise/admin/installation/upgrading-github-enterprise-server - - /enterprise/admin/articles/upgrading-to-the-latest-release/ - - /enterprise/admin/articles/migrations-and-upgrades/ - - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine/ - - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases/ - - /enterprise/admin/articles/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch/ - - /enterprise/admin/guides/installation/upgrading-github-enterprise/ + - /enterprise/admin/articles/upgrading-to-the-latest-release + - /enterprise/admin/articles/migrations-and-upgrades + - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine + - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases + - /enterprise/admin/articles/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch + - /enterprise/admin/guides/installation/upgrading-github-enterprise - /enterprise/admin/enterprise-management/upgrading-github-enterprise-server - /admin/enterprise-management/upgrading-github-enterprise-server versions: diff --git a/translations/pt-BR/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md b/translations/pt-BR/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md index ee53e70982..19b17f289b 100644 --- a/translations/pt-BR/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md +++ b/translations/pt-BR/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md @@ -1,9 +1,9 @@ --- -title: Sobre o suporte Premium do GitHub para o GitHub Enterprise Server -intro: 'O {% data variables.contact.premium_support %} é uma opção de suporte complementar pago oferecida aos clientes do {% data variables.product.prodname_enterprise %}.' +title: About GitHub Premium Support for GitHub Enterprise Server +intro: '{% data variables.contact.premium_support %} is a paid, supplemental support offering for {% data variables.product.prodname_enterprise %} customers.' redirect_from: - - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise/ - - /enterprise/admin/guides/enterprise-support/about-premium-support/ + - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise + - /enterprise/admin/guides/enterprise-support/about-premium-support - /enterprise/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server - /admin/enterprise-support/about-github-premium-support-for-github-enterprise-server versions: @@ -12,30 +12,29 @@ type: overview topics: - Enterprise - Support -shortTitle: Suporte Premium para GHES +shortTitle: Premium Support for GHES --- - {% note %} -**Notas:** +**Notes:** -- Os termos do {% data variables.contact.premium_support %} estão sujeitos a alteração sem aviso prévio e entram em vigor a partir de setembro de 2018. Se a sua compra do {% data variables.contact.premium_support %} foi feita antes de 17 de setembro de 2018, seu plano pode ser diferente. Entre em contato com {% data variables.contact.premium_support %} para obter mais detalhes. +- The terms of {% data variables.contact.premium_support %} are subject to change without notice and are effective as of September 2018. If you purchased {% data variables.contact.premium_support %} prior to September 17, 2018, your plan might be different. Contact {% data variables.contact.premium_support %} for more details. - {% data reusables.support.data-protection-and-privacy %} -- Este artigo contém os termos do {% data variables.contact.premium_support %} para os clientes do {% data variables.product.prodname_ghe_server %}. Os termos podem ser diferentes para clientes do {% data variables.product.prodname_ghe_cloud %} ou do {% data variables.product.prodname_enterprise %} que compram o {% data variables.product.prodname_ghe_server %} e o {% data variables.product.prodname_ghe_cloud %} juntos. Para obter mais informações, consulte "<a href="/articles/about-github-premium-support-for-github-enterprise-cloud" class="dotcom-only">Sobre o{% data variables.contact.premium_support %} para {% data variables.product.prodname_ghe_cloud %}</a>" e "[Sobre o{% data variables.contact.premium_support %} para {% data variables.product.prodname_enterprise %}](/enterprise/{{ currentVersion }}/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise)". +- This article contains the terms of {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %} customers. The terms may be different for customers of {% data variables.product.prodname_ghe_cloud %} or {% data variables.product.prodname_enterprise %} customers who purchase {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %} together. For more information, see "<a href="/articles/about-github-premium-support-for-github-enterprise-cloud" class="dotcom-only">About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_cloud %}</a>" and "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_enterprise %}](/enterprise/{{ currentVersion }}/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise)." {% endnote %} -## Sobre o {% data variables.contact.premium_support %} +## About {% data variables.contact.premium_support %} -Além de todos os benefícios do {% data variables.contact.enterprise_support %}, o {% data variables.contact.premium_support %} oferece: - - Suporte gravado, em inglês, por meio do nosso portal de suporte 24 horas por dia, 7 dais por semana - - Suporte por telefone, em inglês, 24 horas por dias, 7 dias por semana - - Um Contrato de nível de serviço (SLA, Service Level Agreement) com tempos de resposta inicial garantidos - - Acesso a conteúdo premium - - Verificação de integridade agendadas - - Serviços gerenciados +In addition to all of the benefits of {% data variables.contact.enterprise_support %}, {% data variables.contact.premium_support %} offers: + - Written support, in English, through our support portal 24 hours per day, 7 days per week + - Phone support, in English, 24 hours per day, 7 days per week + - A Service Level Agreement (SLA) with guaranteed initial response times + - Access to premium content + - Scheduled health checks + - Managed services {% data reusables.support.about-premium-plans %} @@ -45,25 +44,25 @@ Além de todos os benefícios do {% data variables.contact.enterprise_support %} {% data reusables.support.contacting-premium-support %} -## Horas de operação +## Hours of operation -O {% data variables.contact.premium_support %} está disponível 24 horas por dia, 7 dias por semana. Se a sua compra do {% data variables.contact.premium_support %} foi feita antes de 17 de setembro de 2018, o suporte é limitado nos feriados. Para obter mais informações sobre os feriados do {% data variables.contact.premium_support %}, consulte o calendário em "[Sobre o {% data variables.contact.github_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support)". +{% data variables.contact.premium_support %} is available 24 hours a day, 7 days per week. If you purchased {% data variables.contact.premium_support %} prior to September 17, 2018, support is limited during holidays. For more information on holidays {% data variables.contact.premium_support %} observes, see the holiday schedule at "[About {% data variables.contact.github_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support)." {% data reusables.support.service-level-agreement-response-times %} {% data reusables.enterprise_enterprise_support.installing-releases %} -Você deve instalar a versão mínima compatível do {% data variables.product.prodname_ghe_server %} conforme a seção Versões compatíveis do seu contrato de licença em até 90 dias após o pedido do {% data variables.contact.premium_support %}. +You must install the minimum supported version of {% data variables.product.prodname_ghe_server %} pursuant to the Supported Releases section of your applicable license agreement within 90 days of placing an order for {% data variables.contact.premium_support %}. -## Atribuindo uma prioridade a um tíquete de suporte +## Assigning a priority to a support ticket -Ao entrar em contato com {% data variables.contact.premium_support %}, você pode escolher uma das quatro prioridades para o tíquete: {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %} ou {% data variables.product.support_ticket_priority_low %}. +When you contact {% data variables.contact.premium_support %}, you can choose one of four priorities for the ticket: {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %}, or {% data variables.product.support_ticket_priority_low %}. {% data reusables.support.github-can-modify-ticket-priority %} {% data reusables.support.ghes-priorities %} -## Resolução e fechamento de tíquete de suporte +## Resolving and closing support tickets {% data reusables.support.premium-resolving-and-closing-tickets %} diff --git a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/index.md b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/index.md index 0945eff920..68f0cb423b 100644 --- a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/index.md +++ b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/index.md @@ -1,8 +1,8 @@ --- -title: Receber ajuda do Suporte do GitHub -intro: 'Você pode entrar em contato com {% data variables.contact.enterprise_support %} para relatar uma série de problemas referentes à sua empresa.' +title: Receiving help from GitHub Support +intro: 'You can contact {% data variables.contact.enterprise_support %} to report a range of issues for your enterprise.' redirect_from: - - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support - /enterprise/admin/enterprise-support/receiving-help-from-github-support versions: ghes: '*' @@ -14,6 +14,6 @@ children: - /preparing-to-submit-a-ticket - /submitting-a-ticket - /providing-data-to-github-support -shortTitle: Receber ajuda do Suporte +shortTitle: Receive help from Support --- diff --git a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md index 6d1cb5f386..66c4f8ca9d 100644 --- a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md +++ b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md @@ -1,10 +1,10 @@ --- -title: Enviar dados ao suporte do GitHub -intro: 'Como o {% data variables.contact.github_support %} não tem acesso ao seu ambiente, precisamos que você nos envie algumas informações adicionais.' +title: Providing data to GitHub Support +intro: 'Since {% data variables.contact.github_support %} doesn''t have access to your environment, we require some additional information from you.' redirect_from: - - /enterprise/admin/guides/installation/troubleshooting/ - - /enterprise/admin/articles/support-bundles/ - - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support/ + - /enterprise/admin/guides/installation/troubleshooting + - /enterprise/admin/articles/support-bundles + - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support - /enterprise/admin/enterprise-support/providing-data-to-github-support - /admin/enterprise-support/providing-data-to-github-support versions: @@ -13,145 +13,148 @@ type: how_to topics: - Enterprise - Support -shortTitle: Fornecer dados para o suporte +shortTitle: Provide data to Support --- +## Creating and sharing diagnostic files -## Criar e compartilhar arquivos de diagnóstico +Diagnostics are an overview of a {% data variables.product.prodname_ghe_server %} instance's settings and environment that contains: -Os diagnósticos são uma visão geral das configurações e do ambiente de uma instância do {% data variables.product.prodname_ghe_server %}. Os diagnósticos contêm: +- Client license information, including company name, expiration date, and number of user licenses +- Version numbers and SHAs +- VM architecture +- Host name, private mode, SSL settings +- Load and process listings +- Network settings +- Authentication method and details +- Number of repositories, users, and other installation data -- Informações da licença do cliente, incluindo o nome da empresa, data de validade e número de licenças de usuário -- Números de versão e SHAs; -- Arquitetura de VMs; -- Nome de host, modo privado, configurações de SSL; -- Listagens de carga e processo; -- Configurações de rede; -- Método e detalhes de autenticação; -- Número de repositórios, usuários e outros dados de instalação. +You can download the diagnostics for your instance from the {% data variables.enterprise.management_console %} or by running the `ghe-diagnostics` command-line utility. -Você pode baixar o diagnóstico da sua instância no {% data variables.enterprise.management_console %} ou executando o utilitário da linha de comando `ghe-diagnostics`. +### Creating a diagnostic file from the {% data variables.enterprise.management_console %} -### Criar um arquivo de diagnóstico no {% data variables.enterprise.management_console %} - -Você pode usar esse método se não tiver sua chave SSH disponível no momento. +You can use this method if you don't have your SSH key readily available. {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.type-management-console-password %} {% data reusables.enterprise_management_console.support-link %} -5. Clique em **Download diagnostics info** (Baixar informações de diagnóstico). +5. Click **Download diagnostics info**. -### Criar um arquivo de diagnóstico usando SSH +### Creating a diagnostic file using SSH -Você pode usar esse método sem entrar no {% data variables.enterprise.management_console %}. +You can use this method without signing into the {% data variables.enterprise.management_console %}. -Use o utilitário da linha de comando [ghe-diagnostics](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-diagnostics) para recuperar o diagnóstico da sua instância. +Use the [ghe-diagnostics](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-diagnostics) command-line utility to retrieve the diagnostics for your instance. ```shell $ ssh -p122 admin@<em>hostname</em> -- 'ghe-diagnostics' > diagnostics.txt ``` -## Criar e compartilhar pacotes de suporte +## Creating and sharing support bundles -Depois do envio da sua solicitação de suporte, podemos pedir que você compartilhe um pacote de suporte com a nossa equipe. O pacote de suporte é um arquivo tar compactado com gzip que inclui diagnósticos e logs importantes da sua instância, como: +After you submit your support request, we may ask you to share a support bundle with our team. The support bundle is a gzip-compressed tar archive that includes diagnostics and important logs from your instance, such as: -- Logs relacionados à autenticação que podem ser úteis na solução de problemas de erros de autenticação, ou na configuração de LDAP, CAS ou SAML; -- Log do {% data variables.enterprise.management_console %}; -- `github-logs/exceptions.log`: informações sobre 500 erros encontrados no site; -- `github-logs/audit.log`: logs de auditoria do {% data variables.product.prodname_ghe_server %}; -- `babeld-logs/babeld.log`: logs de proxy do Git; -- `system-logs/haproxy.log`: logs de HAProxy; -- `elasticsearch-logs/github-enterprise.log`: logs de ElasticSearch; -- `configuration-logs/ghe-config.log`: logs de configuração do {% data variables.product.prodname_ghe_server %}; -- `collectd/logs/collectd.log`: logs coletados; -- `mail-logs/mail.log`: logs de entrega de e-mail por SMTP; +- Authentication-related logs that may be helpful when troubleshooting authentication errors, or configuring LDAP, CAS, or SAML +- {% data variables.enterprise.management_console %} log +- `github-logs/exceptions.log`: Information about 500 errors encountered on the site +- `github-logs/audit.log`: {% data variables.product.prodname_ghe_server %} audit logs +- `babeld-logs/babeld.log`: Git proxy logs +- `system-logs/haproxy.log`: HAProxy logs +- `elasticsearch-logs/github-enterprise.log`: Elasticsearch logs +- `configuration-logs/ghe-config.log`: {% data variables.product.prodname_ghe_server %} configuration logs +- `collectd/logs/collectd.log`: Collectd logs +- `mail-logs/mail.log`: SMTP email delivery logs -Para obter mais informações, consulte "[Gerar logs de auditoria](/enterprise/{{ currentVersion }}/admin/guides/installation/audit-logging)". +For more information, see "[Audit logging](/enterprise/{{ currentVersion }}/admin/guides/installation/audit-logging)." -Os pacotes de suporte incluem logs dos últimos dois dias. Para obter logs dos últimos sete dias, você pode baixar um pacote de suporte estendido. Para obter mais informações, consulte "[Criar e compartilhar pacotes de suporte estendidos](#creating-and-sharing-extended-support-bundles)". +Support bundles include logs from the past two days. To get logs from the past seven days, you can download an extended support bundle. For more information, see "[Creating and sharing extended support bundles](#creating-and-sharing-extended-support-bundles)." {% tip %} -**Dica:** ao entrar em contato com o {% data variables.contact.github_support %}, você receberá um e-mail de confirmação com um link de referência do tíquete. Se o {% data variables.contact.github_support %} solicitar o upload de um pacote de suporte, você pode usar o link de referência do tíquete para fazer o upload requisitado. +**Tip:** When you contact {% data variables.contact.github_support %}, you'll be sent a confirmation email that will contain a ticket reference link. If {% data variables.contact.github_support %} asks you to upload a support bundle, you can use the ticket reference link to upload the support bundle. {% endtip %} -### Criar um pacote de suporte no {% data variables.enterprise.management_console %} +### Creating a support bundle from the {% data variables.enterprise.management_console %} -Você pode usar essas etapas para criar e compartilhar um pacote de suporte se conseguir acessar o {% data variables.enterprise.management_console %} e se tiver acesso à internet. +You can use these steps to create and share a support bundle if you can access the web-based {% data variables.enterprise.management_console %} and have outbound internet access. {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.type-management-console-password %} {% data reusables.enterprise_management_console.support-link %} -5. Clique em **Download support bundle** (Baixar pacote de suporte). +5. Click **Download support bundle**. {% data reusables.enterprise_enterprise_support.sign-in-to-support %} {% data reusables.enterprise_enterprise_support.upload-support-bundle %} -### Criar um pacote de suporte usando SSH +### Creating a support bundle using SSH -Você pode usar esses passos para criar e compartilhar um pacote de suporte se você tiver acesso de SSH ao {% data variables.product.product_location %} e tiver acesso à internet de saída. +You can use these steps to create and share a support bundle if you have SSH access to {% data variables.product.product_location %} and have outbound internet access. {% data reusables.enterprise_enterprise_support.use_ghe_cluster_support_bundle %} -1. Baixe o pacote de suporte via SSH: +1. Download the support bundle via SSH: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -o' > support-bundle.tgz ``` - Para obter mais informações sobre o comando `ghe-support-bundle`, consulte "[Utilitários da linha de comando](/enterprise/admin/guides/installation/command-line-utilities#ghe-support-bundle)". + For more information about the `ghe-support-bundle` command, see "[Command-line utilities](/enterprise/admin/guides/installation/command-line-utilities#ghe-support-bundle)". {% data reusables.enterprise_enterprise_support.sign-in-to-support %} {% data reusables.enterprise_enterprise_support.upload-support-bundle %} -### Carregar um pacote de suporte usando sua conta corporativa +### Uploading a support bundle using your enterprise account {% data reusables.enterprise-accounts.access-enterprise-on-dotcom %} {% data reusables.enterprise-accounts.settings-tab %} -3. Na barra lateral esquerda, clique em **Enterprise licensing** (Licenciamento Empresarial). ![Aba "Licenciamento empresarial" na barra lateral de configurações da conta corporativa](/assets/images/help/enterprises/enterprise-licensing-tab.png) -4. Em "Ajuda de {% data variables.product.prodname_enterprise %}", clique em **Fazer upload de um pacote de suporte**. ![Fazer upload de um link para pacote de suporte](/assets/images/enterprise/support/upload-support-bundle.png) -5. Em "Selecione uma conta corporativa", selecione a conta associada ao pacote de suporte no menu suspenso. ![Escolher a conta corporativa do pacote de suporte](/assets/images/enterprise/support/support-bundle-account.png) -6. Em "Fazer upload de um pacote de suporte para {% data variables.contact.enterprise_support %}", selecione seu pacote de suporte, clique **Escolher arquivo** ou arraste seu arquivo de pacote de suporte para **Escolher arquivo**. ![Fazer upload de um arquivo para pacote de suporte](/assets/images/enterprise/support/choose-support-bundle-file.png) -7. Clique em **Fazer upload**. +3. In the left sidebar, click **Enterprise licensing**. + !["Enterprise licensing" tab in the enterprise account settings sidebar](/assets/images/help/enterprises/enterprise-licensing-tab.png) +4. Under "{% data variables.product.prodname_enterprise %} Help", click **Upload a support bundle**. + ![Upload a support bundle link](/assets/images/enterprise/support/upload-support-bundle.png) +5. Under "Select an enterprise account", select the support bundle's associated account from the drop-down menu. + ![Choose the support bundle's enterprise account](/assets/images/enterprise/support/support-bundle-account.png) +6. Under "Upload a support bundle for {% data variables.contact.enterprise_support %}", to select your support bundle, click **Choose file**, or drag your support bundle file onto **Choose file**. + ![Upload support bundle file](/assets/images/enterprise/support/choose-support-bundle-file.png) +7. Click **Upload**. -### Fazer upload de um pacote de suporte usando SSH +### Uploading a support bundle directly using SSH -Você pode fazer upload diretamente de um pacote de suporte para o nosso servidor nas seguintes situações: -- Você tem acesso de SSH a {% data variables.product.product_location %}. -- São permitidas conexões HTTPS de saída sobre a por meio da porta TCP 443 de {% data variables.product.product_location %} para _enterprise-bundles.github.com_ e _esbtoolsproduction.blob.core.windows.net_. +You can directly upload a support bundle to our server if: +- You have SSH access to {% data variables.product.product_location %}. +- Outbound HTTPS connections over TCP port 443 are allowed from {% data variables.product.product_location %} to _enterprise-bundles.github.com_ and _esbtoolsproduction.blob.core.windows.net_. -1. Faça upload do pacote para o nosso servidor de pacotes de suporte: +1. Upload the bundle to our support bundle server: ```shell $ ssh -p122 admin@<em>hostname</em> -- 'ghe-support-bundle -u' ``` -## Criar e compartilhar pacotes de suporte estendidos +## Creating and sharing extended support bundles -Os pacotes de suporte incluem logs dos últimos dois dias, enquanto os pacotes de suporte _estendidos_ incluem logs dos últimos sete dias. Se os eventos que o {% data variables.contact.github_support %} está investigando tiverem ocorrido há mais de dois dias, poderemos solicitar que você compartilhe um pacote de suporte estendido. Você precisará do acesso SSH para baixar um pacote estendido, e não é possível fazer o download de um pacote estendido no {% data variables.enterprise.management_console %}. +Support bundles include logs from the past two days, while _extended_ support bundles include logs from the past seven days. If the events that {% data variables.contact.github_support %} is investigating occurred more than two days ago, we may ask you to share an extended support bundle. You will need SSH access to download an extended bundle - you cannot download an extended bundle from the {% data variables.enterprise.management_console %}. -Para evitar que fiquem grandes demais, os pacotes só têm logs que não passaram por rotação nem compactação. A rotação de arquivos de registro no {% data variables.product.prodname_ghe_server %} acontece em várias frequências (diária ou semanalmente) para diferentes arquivos, dependendo das expectativas de tamanho dos registros. +To prevent bundles from becoming too large, bundles only contain logs that haven't been rotated and compressed. Log rotation on {% data variables.product.prodname_ghe_server %} happens at various frequencies (daily or weekly) for different log files, depending on how large we expect the logs to be. -### Criar um pacote de suporte estendido usando SSH +### Creating an extended support bundle using SSH -Você pode usar essas etapas para criar e compartilhar um pacote de suporte estendido se você tiver acesso de SSH ao {% data variables.product.product_location %} e tiver acesso à internet de saída. +You can use these steps to create and share an extended support bundle if you have SSH access to {% data variables.product.product_location %} and you have outbound internet access. -1. Baixe o pacote de suporte estendido via SSH adicionando o sinalizador `-x` ao comando `ghe-support-bundle`: +1. Download the extended support bundle via SSH by adding the `-x` flag to the `ghe-support-bundle` command: ```shell $ ssh -p 122 admin@<em>hostname</em> -- 'ghe-support-bundle -o -x' > support-bundle.tgz ``` {% data reusables.enterprise_enterprise_support.sign-in-to-support %} {% data reusables.enterprise_enterprise_support.upload-support-bundle %} -### Fazer upload de um pacote de suporte estendido usando SSH +### Uploading an extended support bundle directly using SSH -Você pode fazer upload diretamente de um pacote de suporte para o nosso servidor nas seguintes situações: -- Você tem acesso de SSH a {% data variables.product.product_location %}. -- São permitidas conexões HTTPS de saída sobre a por meio da porta TCP 443 de {% data variables.product.product_location %} para _enterprise-bundles.github.com_ e _esbtoolsproduction.blob.core.windows.net_. +You can directly upload a support bundle to our server if: +- You have SSH access to {% data variables.product.product_location %}. +- Outbound HTTPS connections over TCP port 443 are allowed from {% data variables.product.product_location %} to _enterprise-bundles.github.com_ and _esbtoolsproduction.blob.core.windows.net_. -1. Faça upload do pacote para o nosso servidor de pacotes de suporte: +1. Upload the bundle to our support bundle server: ```shell $ ssh -p122 admin@<em>hostname</em> -- 'ghe-support-bundle -u -x' ``` -## Leia mais +## Further reading -- [Sobre o {% data variables.contact.enterprise_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support) -- [Sobre o {% data variables.contact.premium_support %} para {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server). +- "[About {% data variables.contact.enterprise_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support)" +- "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)." diff --git a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md index 20d397448c..9e60d8c73a 100644 --- a/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md +++ b/translations/pt-BR/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md @@ -1,8 +1,8 @@ --- -title: Entrar em contato com o suporte do GitHub -intro: 'Entre em contato com {% data variables.contact.enterprise_support %} usando o {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} ou{% endif %} o portal de suporte.' +title: Reaching GitHub Support +intro: 'Contact {% data variables.contact.enterprise_support %} using the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or{% endif %} the support portal.' redirect_from: - - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support - /enterprise/admin/enterprise-support/reaching-github-support - /admin/enterprise-support/reaching-github-support versions: @@ -12,48 +12,47 @@ topics: - Enterprise - Support --- +## Using automated ticketing systems -## Usar sistemas automatizados de geração de tíquetes +Though we'll do our best to respond to automated support requests, we typically need more information than an automated ticketing system can give us to solve your issue. Whenever possible, please initiate support requests from a person or machine that {% data variables.contact.enterprise_support %} can interact with. For more information, see "[Preparing to submit a ticket](/enterprise/admin/guides/enterprise-support/preparing-to-submit-a-ticket)." -Embora a nossa equipe de suporte faça o melhor para responder às solicitações automatizadas, resolver o problema costuma exigir mais informações do que o sistema automatizado de geração de tíquetes pode nos dar. Sempre que possível, inicie as solicitações de suporte com uma pessoa ou máquina com quem o {% data variables.contact.enterprise_support %} consiga interagir. Para obter mais informações, consulte "[Preparar para enviar um tíquete](/enterprise/admin/guides/enterprise-support/preparing-to-submit-a-ticket)". - -## Entrar em contato com o {% data variables.contact.enterprise_support %} +## Contacting {% data variables.contact.enterprise_support %} {% data reusables.support.zendesk-old-tickets %} -Os clientes de {% data variables.contact.enterprise_support %} podem abrir um tíquete de suporte usando o {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} ou o {% data variables.contact.contact_enterprise_portal %}{% elsif ghae %} o {% data variables.contact.contact_ae_portal %}{% endif %}. Para obter mais informações, consulte "[Enviar um tíquete](/enterprise/admin/guides/enterprise-support/submitting-a-ticket)". +{% data variables.contact.enterprise_support %} customers can open a support ticket using the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or the {% data variables.contact.contact_enterprise_portal %}{% elsif ghae %} the {% data variables.contact.contact_ae_portal %}{% endif %}. For more information, see "[Submitting a ticket](/enterprise/admin/guides/enterprise-support/submitting-a-ticket)." {% ifversion ghes %} -## Entrar em contato com o {% data variables.contact.premium_support %} +## Contacting {% data variables.contact.premium_support %} -Os clientes do {% data variables.contact.enterprise_support %} podem abrir um tíquete de suporte usando o {% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} ou o {% data variables.contact.contact_enterprise_portal %}. Marque sua prioridade como {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %} ou {% data variables.product.support_ticket_priority_low %}. Para obter mais informações, consulte "[Atribuir uma prioridade a um tíquete de suporte](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server#assigning-a-priority-to-a-support-ticket)" e "[Enviar um tíquete](/enterprise/admin/guides/enterprise-support/submitting-a-ticket)". +{% data variables.contact.enterprise_support %} customers can open a support ticket using the {% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or the {% data variables.contact.contact_enterprise_portal %}. Mark its priority as {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %}, or {% data variables.product.support_ticket_priority_low %}. For more information, see "[Assigning a priority to a support ticket](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server#assigning-a-priority-to-a-support-ticket)" and "[Submitting a ticket](/enterprise/admin/guides/enterprise-support/submitting-a-ticket)." -### Exibir tíquetes de suporte antigos +### Viewing past support tickets -É possível usar o {% data variables.contact.enterprise_portal %} para exibir tíquetes de suporte antigos. +You can use the {% data variables.contact.enterprise_portal %} to view past support tickets. -1. Navegue até o {% data variables.contact.contact_enterprise_portal %}. -2. Clique em **Meus tíquetes**. +1. Navigate to the {% data variables.contact.contact_enterprise_portal %}. +2. Click **My tickets**. {% endif %} -## Entrar em contato com o departamento de vendas +## Contacting sales -Para preços , licenças, renovações, cotações, pagamentos e outras questões relacionadas, entre em contato com {% data variables.contact.contact_enterprise_sales %} ou ligue para [+1 (877) 448-4820](tel:+1-877-448-4820). +For pricing, licensing, renewals, quotes, payments, and other related questions, contact {% data variables.contact.contact_enterprise_sales %} or call [+1 (877) 448-4820](tel:+1-877-448-4820). {% ifversion ghes %} -## Entrar em contato com o departamento de treinamento +## Contacting training -Para saber mais sobre as opções de treinamento, inclusive treinamentos personalizados, consulte o site de treinamento do [{% data variables.product.company_short %}](https://services.github.com/). +To learn more about training options, including customized trainings, see [{% data variables.product.company_short %}'s training site](https://services.github.com/). {% note %} -**Observação:** o {% data variables.product.premium_plus_support_plan %} inclui treinamento. Para obter mais informações, consulte a seção "[Sobre o {% data variables.contact.premium_support %} para {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)". +**Note:** Training is included in the {% data variables.product.premium_plus_support_plan %}. For more information, see "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)." {% endnote %} {% endif %} -## Leia mais +## Further reading -- [Sobre o {% data variables.contact.enterprise_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support) -- [Sobre o {% data variables.contact.premium_support %} para {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server). +- "[About {% data variables.contact.enterprise_support %}](/enterprise/admin/guides/enterprise-support/about-github-enterprise-support)" +- "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)." diff --git a/translations/pt-BR/content/admin/installation/index.md b/translations/pt-BR/content/admin/installation/index.md index 8af5a227ed..385c4412e7 100644 --- a/translations/pt-BR/content/admin/installation/index.md +++ b/translations/pt-BR/content/admin/installation/index.md @@ -1,13 +1,13 @@ --- -title: 'Instalar o {% data variables.product.prodname_enterprise %}' -shortTitle: Instalar -intro: 'Os administradores do sistema e os especialistas em operações e segurança podem instalar o {% data variables.product.prodname_ghe_server %}.' +title: 'Installing {% data variables.product.prodname_enterprise %}' +shortTitle: Installing +intro: 'System administrators and operations and security specialists can install {% data variables.product.prodname_ghe_server %}.' redirect_from: - - /enterprise/admin-guide/ - - /enterprise/admin/guides/installation/ - - /enterprise/admin/categories/customization/ - - /enterprise/admin/categories/general/ - - /enterprise/admin/categories/logging-and-monitoring/ + - /enterprise/admin-guide + - /enterprise/admin/guides/installation + - /enterprise/admin/categories/customization + - /enterprise/admin/categories/general + - /enterprise/admin/categories/logging-and-monitoring - /enterprise/admin/installation versions: ghes: '*' @@ -19,9 +19,8 @@ topics: children: - /setting-up-a-github-enterprise-server-instance --- - -Para obter mais informações ou comprar o {% data variables.product.prodname_enterprise %}, consulte [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). +For more information, or to purchase {% data variables.product.prodname_enterprise %}, see [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). {% data reusables.enterprise_installation.request-a-trial %} -Em caso de dúvidas sobre o processo de instalação, consulte "[Trabalhar com o suporte do {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/enterprise-support/)". +If you have questions about the installation process, see "[Working with {% data variables.product.prodname_enterprise %} Support](/enterprise/admin/guides/enterprise-support/)." diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md index a4f275c719..c1df769365 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: Configurar uma instância do GitHub Enterprise Server -intro: 'Você pode instalar o {% data variables.product.prodname_ghe_server %} na plataforma de virtualização suportada à sua escolha.' +title: Setting up a GitHub Enterprise Server instance +intro: 'You can install {% data variables.product.prodname_ghe_server %} on the supported virtualization platform of your choice.' redirect_from: - /enterprise/admin/installation/getting-started-with-github-enterprise-server - - /enterprise/admin/guides/installation/supported-platforms/ - - /enterprise/admin/guides/installation/provisioning-and-installation/ - - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance/ + - /enterprise/admin/guides/installation/supported-platforms + - /enterprise/admin/guides/installation/provisioning-and-installation + - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance - /enterprise/admin/installation/setting-up-a-github-enterprise-server-instance versions: ghes: '*' @@ -20,6 +20,6 @@ children: - /installing-github-enterprise-server-on-vmware - /installing-github-enterprise-server-on-xenserver - /setting-up-a-staging-instance -shortTitle: Configurar uma instância +shortTitle: Set up an instance --- diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md index 74be10baf8..4fbe447d97 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md @@ -1,8 +1,8 @@ --- -title: Instalar o GitHub Enterprise Server no AWS -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no Amazon Web Services (AWS), você deve iniciar uma instância do Amazon Elastic Compute Cloud (EC2) e, em seguida, criar e vincular um volume de dados separado do Amazon Elastic Block Store (EBS).' +title: Installing GitHub Enterprise Server on AWS +intro: 'To install {% data variables.product.prodname_ghe_server %} on Amazon Web Services (AWS), you must launch an Amazon Elastic Compute Cloud (EC2) instance and create and attach a separate Amazon Elastic Block Store (EBS) data volume.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws - /enterprise/admin/installation/installing-github-enterprise-server-on-aws - /admin/installation/installing-github-enterprise-server-on-aws versions: @@ -13,103 +13,103 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar no AWS +shortTitle: Install on AWS --- - -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Você deve ter uma conta do AWS que possa iniciar instâncias do EC2 e criar volumes EBS. Para obter mais informações, consulte o [site do Amazon Web Services](https://aws.amazon.com/). -- A maioria das ações necessárias para iniciar a {% data variables.product.product_location %} também pode ser executada usando o console de gerenciamento do AWS. No entanto, é recomendável instalar a interface da linha de comando (CLI) do AWS para a configuração inicial. Veja abaixo alguns exemplos de uso da CLI do AWS. Para obter mais informações, consulte os guias "[Trabalhar com o console de gerenciamento do AWS](http://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/getting-started.html)" e "[O que é a interface da linha de comando do AWS](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html)". +- You must have an AWS account capable of launching EC2 instances and creating EBS volumes. For more information, see the [Amazon Web Services website](https://aws.amazon.com/). +- Most actions needed to launch {% data variables.product.product_location %} may also be performed using the AWS management console. However, we recommend installing the AWS command line interface (CLI) for initial setup. Examples using the AWS CLI are included below. For more information, see Amazon's guides "[Working with the AWS Management Console](http://docs.aws.amazon.com/awsconsolehelpdocs/latest/gsg/getting-started.html)" and "[What is the AWS Command Line Interface](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html)." -Para usar este guia, você deve conhecer os seguintes conceitos do AWS: +This guide assumes you are familiar with the following AWS concepts: - - [Iniciar instâncias do EC2](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/LaunchingAndUsingInstances.html) - - [Gerenciar volumes do EBS](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) - - [Usar grupos de segurança](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) (para gerenciar o acesso de rede à instância) - - [Endereços de IP elástica (EIP)](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) (altamente recomendável para ambientes de produção) - - [EC2 e Virtual Private Cloud](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html) (se você pretende iniciar uma nuvem virtual privada) - - [Preços do AWS](https://aws.amazon.com/pricing/) (para calcular e gerenciar custos) + - [Launching EC2 Instances](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/LaunchingAndUsingInstances.html) + - [Managing EBS Volumes](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) + - [Using Security Groups](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) (For managing network access to your instance) + - [Elastic IP Addresses (EIP)](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) (Strongly recommended for production environments) + - [EC2 and Virtual Private Cloud](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html) (If you plan to launch into a Virtual Private Cloud) + - [AWS Pricing](https://aws.amazon.com/pricing/) (For calculating and managing costs) -Para obter uma visão geral da arquitetura, consulte o "[Diagrama de arquitetura AWS para implantar o GitHub Enterprise Server](/assets/images/installing-github-enterprise-server-on-aws.png)". +For an architectural overview, see the "[AWS Architecture Diagram for Deploying GitHub Enterprise Server](/assets/images/installing-github-enterprise-server-on-aws.png)". -Este guia recomenda o princípio do menor privilégio ao configurar {% data variables.product.product_location %} no AWS. Para obter mais informações, consulte a [Documentação do Gerencimaento de acesso e Identidade (IAM) do AWS](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). +This guide recommends the principle of least privilege when setting up {% data variables.product.product_location %} on AWS. For more information, refer to the [AWS Identity and Access Management (IAM) documentation](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Determinar o tipo de instância +## Determining the instance type -Antes de lançar {% data variables.product.product_location %} no AWS, você deverá determinar o tipo de máquina que melhor se adequa às necessidades da sua organização. Para revisar os requisitos mínimos para {% data variables.product.product_name %}, consulte "[Requisitos mínimos](#minimum-requirements)". +Before launching {% data variables.product.product_location %} on AWS, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} {% data reusables.enterprise_installation.aws-instance-recommendation %} -## Selecionar a AMI do {% data variables.product.prodname_ghe_server %} +## Selecting the {% data variables.product.prodname_ghe_server %} AMI -É possível selecionar uma Amazon Machine Image (AMI) para o {% data variables.product.prodname_ghe_server %} usando o portal do {% data variables.product.prodname_ghe_server %} na CLI do AWS. +You can select an Amazon Machine Image (AMI) for {% data variables.product.prodname_ghe_server %} using the {% data variables.product.prodname_ghe_server %} portal or the AWS CLI. -As AMIs para o {% data variables.product.prodname_ghe_server %} estão disponíveis na região (EUA-Leste e EUA-Oeste) do AWS GovCloud. Com isso, os clientes dos EUA com requisitos regulamentares específicos podem executar o {% data variables.product.prodname_ghe_server %} em um ambiente em nuvem de conformidade federal. Para obter mais informações sobre a conformidade do AWS com padrões federais e outros, consulte a [página do AWS GovCloud (EUA)](http://aws.amazon.com/govcloud-us/) e a [página de conformidade do AWS](https://aws.amazon.com/compliance/). +AMIs for {% data variables.product.prodname_ghe_server %} are available in the AWS GovCloud (US-East and US-West) region. This allows US customers with specific regulatory requirements to run {% data variables.product.prodname_ghe_server %} in a federally compliant cloud environment. For more information on AWS's compliance with federal and other standards, see [AWS's GovCloud (US) page](http://aws.amazon.com/govcloud-us/) and [AWS's compliance page](https://aws.amazon.com/compliance/). -### Usar o portal do {% data variables.product.prodname_ghe_server %} para selecionar uma AMI +### Using the {% data variables.product.prodname_ghe_server %} portal to select an AMI {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-appliance %} -3. No menu suspenso Select your platform (Selecionar plataforma), clique em **Amazon Web Services**. -4. No menu suspenso Select your AWS region (Selecionar região do AWS), escolha a região. -5. Anote a ID da AMI. +3. In the Select your platform drop-down menu, click **Amazon Web Services**. +4. In the Select your AWS region drop-down menu, choose your desired region. +5. Take note of the AMI ID that is displayed. -### Usar a CLI do AWS para selecionar uma AMI +### Using the AWS CLI to select an AMI -1. Usando a CLI do AWS, obtenha uma lista de imagens do {% data variables.product.prodname_ghe_server %} publicadas pelas IDs do AWS no {% data variables.product.prodname_dotcom %}(`025577942450` para GovCloud e `895557238572` para outras regiões). Para obter mais informações, consulte "[describe-images](http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html)" na documentação do AWS. +1. Using the AWS CLI, get a list of {% data variables.product.prodname_ghe_server %} images published by {% data variables.product.prodname_dotcom %}'s AWS owner IDs (`025577942450` for GovCloud, and `895557238572` for other regions). For more information, see "[describe-images](http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-images.html)" in the AWS documentation. ```shell aws ec2 describe-images \ --owners <em>OWNER ID</em> \ --query 'sort_by(Images,&Name)[*].{Name:Name,ImageID:ImageId}' \ --output=text ``` -2. Anote a ID da AMI para a imagem mais recente do {% data variables.product.prodname_ghe_server %}. +2. Take note of the AMI ID for the latest {% data variables.product.prodname_ghe_server %} image. -## Criar um grupo de segurança +## Creating a security group -Se estiver configurando a AMI pela primeira vez, você terá que criar um grupo de segurança e adicionar uma nova regra de grupo de segurança para cada porta na tabela abaixo. Para obter mais informações, consulte o guia do AWS "[Usar grupos de segurança](http://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-sg.html)". +If you're setting up your AMI for the first time, you will need to create a security group and add a new security group rule for each port in the table below. For more information, see the AWS guide "[Using Security Groups](http://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-sg.html)." -1. Usando a CLI do AWS, crie um grupo de segurança. Para obter mais informações, consulte "[criar-grupo-de-segurança](http://docs.aws.amazon.com/cli/latest/reference/ec2/create-security-group.html)" na documentação do AWS. +1. Using the AWS CLI, create a new security group. For more information, see "[create-security-group](http://docs.aws.amazon.com/cli/latest/reference/ec2/create-security-group.html)" in the AWS documentation. ```shell $ aws ec2 create-security-group --group-name <em>SECURITY_GROUP_NAME</em> --description "<em>SECURITY GROUP DESCRIPTION</em>" ``` -2. Anote a ID (`sg-xxxxxxxx`) do grupo de segurança que você acabou de criar. +2. Take note of the security group ID (`sg-xxxxxxxx`) of your newly created security group. -3. Crie uma regra de grupo de segurança para cada porta da tabela abaixo. Para obter mais informações, consulte "[autorizar-ingresso-no-grupo-de-segurança](http://docs.aws.amazon.com/cli/latest/reference/ec2/authorize-security-group-ingress.html)" na documentação AWS. +3. Create a security group rule for each of the ports in the table below. For more information, see "[authorize-security-group-ingress](http://docs.aws.amazon.com/cli/latest/reference/ec2/authorize-security-group-ingress.html)" in the AWS documentation. ```shell $ aws ec2 authorize-security-group-ingress --group-id <em>SECURITY_GROUP_ID</em> --protocol <em>PROTOCOL</em> --port <em>PORT_NUMBER</em> --cidr <em>SOURCE IP RANGE</em> ``` - Esta tabela identifica o uso de cada porta. + This table identifies what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance -Para criar a instância, você deve iniciar uma instância EC2 com sua AMI do {% data variables.product.prodname_ghe_server %} e vincular um volume de armazenamento adicional aos dados da sua instância. Para obter mais informações, consulte "[Considerações de hardware](#hardware-considerations)". +To create the instance, you'll need to launch an EC2 instance with your {% data variables.product.prodname_ghe_server %} AMI and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." {% note %} -**Observação:** é possível criptografar o disco de dados para obter um nível suplementar de segurança e garantir que qualquer dado gravado em sua instância está protegido. Usar discos criptografados gera um leve impacto no desempenho. Se você decidir criptografar o volume, é altamente recomendável fazer isso **antes** de iniciar a instância pela primeira vez. Para obter mais informações, consulte o [Guia Amazon sobre criptografia EBS](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html). +**Note:** You can encrypt the data disk to gain an extra level of security and ensure that any data you write to your instance is protected. There is a slight performance impact when using encrypted disks. If you decide to encrypt your volume, we strongly recommend doing so **before** starting your instance for the first time. + For more information, see the [Amazon guide on EBS encryption](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html). {% endnote %} {% warning %} -**Aviso:** se você decidir habilitar a criptografia depois de configurar a instância, será necessário migrar seus dados para o volume criptografado, o que vai gerar tempo de inatividade para os usuários. +**Warning:** If you decide to enable encryption after you've configured your instance, you will need to migrate your data to the encrypted volume, which will incur some downtime for your users. {% endwarning %} -### Iniciar uma instância do EC2 +### Launching an EC2 instance -Na CLI do AWS, inicie uma instância do EC2 usando sua AMI e o grupo de segurança que você criou. Vincule um novo dispositivo de bloqueio para uso como volume de armazenamento dos dados da sua instância e configure o tamanho com base na contagem de licença de usuário. Para obter mais informações, consulte "[executar-instâncias](http://docs.aws.amazon.com/cli/latest/reference/ec2/run-instances.html)" na documentação do AWS. +In the AWS CLI, launch an EC2 instance using your AMI and the security group you created. Attach a new block device to use as a storage volume for your instance data, and configure the size based on your user license count. For more information, see "[run-instances](http://docs.aws.amazon.com/cli/latest/reference/ec2/run-instances.html)" in the AWS documentation. ```shell aws ec2 run-instances \ @@ -121,21 +121,21 @@ aws ec2 run-instances \ --ebs-optimized ``` -### Alocar uma IP elástica e associá-la com a instância +### Allocating an Elastic IP and associating it with the instance -Se for uma instância de produção, é recomendável alocar uma IP Elástica (EIP) e associá-la à instância antes de seguir para a configuração do {% data variables.product.prodname_ghe_server %}. Caso contrário, o endereço IP público da instância não será retido após a reinicialização da instância. Para obter mais informações, consulte "[Alocar um endereço de IP elástica](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-allocating)" e "[Associar um endereço de IP elástica a uma instância em execução](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-associating)" na documentação da Amazon. +If this is a production instance, we strongly recommend allocating an Elastic IP (EIP) and associating it with the instance before proceeding to {% data variables.product.prodname_ghe_server %} configuration. Otherwise, the public IP address of the instance will not be retained after instance restarts. For more information, see "[Allocating an Elastic IP Address](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-allocating)" and "[Associating an Elastic IP Address with a Running Instance](http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html#using-instance-addressing-eips-associating)" in the Amazon documentation. -As instâncias primária e de réplica devem receber EIPs separados nas configurações de alta disponibilidade de produção. Para obter mais informações, consulte "[Configurar o {% data variables.product.prodname_ghe_server %} para alta disponibilidade](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability/)". +Both primary and replica instances should be assigned separate EIPs in production High Availability configurations. For more information, see "[Configuring {% data variables.product.prodname_ghe_server %} for High Availability](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability/)." -## Configurar a instância do {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md index ee09f2f006..514b440f73 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Azure intro: 'To install {% data variables.product.prodname_ghe_server %} on Azure, you must deploy onto a DS-series instance and use Premium-LRS storage.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure - /enterprise/admin/installation/installing-github-enterprise-server-on-azure - /admin/installation/installing-github-enterprise-server-on-azure versions: diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md index 7effd9e94a..e8d6a0059e 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md @@ -1,8 +1,8 @@ --- -title: Instalar o GitHub Enterprise Server no Google Cloud Platform -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no Google Cloud Platform, você deve fazer a implantação em um tipo de máquina compatível e usar um disco padrão persistente ou SSD persistente.' +title: Installing GitHub Enterprise Server on Google Cloud Platform +intro: 'To install {% data variables.product.prodname_ghe_server %} on Google Cloud Platform, you must deploy onto a supported machine type and use a persistent standard disk or a persistent SSD.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform - /enterprise/admin/installation/installing-github-enterprise-server-on-google-cloud-platform - /admin/installation/installing-github-enterprise-server-on-google-cloud-platform versions: @@ -13,70 +13,69 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar no GCP +shortTitle: Install on GCP --- - -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- É preciso ter uma conta do Google Cloud Platform que possa iniciar instâncias de máquina virtual (VM) do Google Compute Engine (GCE). Para obter mais informações, consulte o [site do Google Cloud Platform](https://cloud.google.com/) e a [documentação do Google Cloud Platform](https://cloud.google.com/docs/). -- A maioria das ações necessárias para iniciar sua instância também pode ser executada usando o [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console). No entanto, é recomendável instalar a ferramenta de linha de comando gcloud compute para a configuração inicial. Veja abaixo alguns exemplos de uso da ferramenta de linha de comando gcloud compute. Para obter mais informações, consulte o guia de instalação e configuração do "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)" na documentação do Google. +- You must have a Google Cloud Platform account capable of launching Google Compute Engine (GCE) virtual machine (VM) instances. For more information, see the [Google Cloud Platform website](https://cloud.google.com/) and the [Google Cloud Platform Documentation](https://cloud.google.com/docs/). +- Most actions needed to launch your instance may also be performed using the [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console). However, we recommend installing the gcloud compute command-line tool for initial setup. Examples using the gcloud compute command-line tool are included below. For more information, see the "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)" installation and setup guide in the Google documentation. -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Determinar o tipo de máquina +## Determining the machine type -Antes de iniciar a {% data variables.product.product_location %} no Google Cloud Platform, você terá que determinar o tipo de máquina virtual que melhor se adapta às demandas da sua organização. Para revisar os requisitos mínimos para {% data variables.product.product_name %}, consulte "[Requisitos mínimos](#minimum-requirements)". +Before launching {% data variables.product.product_location %} on Google Cloud Platform, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} -{% data variables.product.company_short %} recomenda uma máquina de uso geral e de alta memória para {% data variables.product.prodname_ghe_server %}. Para obter mais informações, consulte "[Tipos de máquina](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" na documentação do Google Compute Engine. +{% data variables.product.company_short %} recommends a general-purpose, high-memory machine for {% data variables.product.prodname_ghe_server %}. For more information, see "[Machine types](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" in the Google Compute Engine documentation. -## Selecionar a imagem do {% data variables.product.prodname_ghe_server %} +## Selecting the {% data variables.product.prodname_ghe_server %} image -1. Usando a ferramenta de linha de comando [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/), liste as imagens públicas do {% data variables.product.prodname_ghe_server %}: +1. Using the [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/) command-line tool, list the public {% data variables.product.prodname_ghe_server %} images: ```shell $ gcloud compute images list --project github-enterprise-public --no-standard-images ``` -2. Anote o nome da imagem GCE mais recente do {% data variables.product.prodname_ghe_server %}. +2. Take note of the image name for the latest GCE image of {% data variables.product.prodname_ghe_server %}. -## Configurar o firewall +## Configuring the firewall -Máquinas virtuais GCE são criadas como integrantes de uma rede que tem um firewall. Na rede associada à VM do {% data variables.product.prodname_ghe_server %}, você terá que configurar o firewall para permitir as portas necessárias da tabela abaixo. Para obter mais informações sobre as regras de firewall no Google Cloud Platform, consulte o guia "[Visão geral das regras de firewall](https://cloud.google.com/vpc/docs/firewalls)" do Google. +GCE virtual machines are created as a member of a network, which has a firewall. For the network associated with the {% data variables.product.prodname_ghe_server %} VM, you'll need to configure the firewall to allow the required ports listed in the table below. For more information about firewall rules on Google Cloud Platform, see the Google guide "[Firewall Rules Overview](https://cloud.google.com/vpc/docs/firewalls)." -1. Usando a ferramenta de linha de comando gcloud compute, crie a rede. Para obter mais informações, consulte "[criar redes com gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" na documentação do Google. +1. Using the gcloud compute command-line tool, create the network. For more information, see "[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" in the Google documentation. ```shell $ gcloud compute networks create <em>NETWORK-NAME</em> --subnet-mode auto ``` -2. Crie uma regra de firewall para cada porta da tabela abaixo. Para obter mais informações, consulte "[regras de firewall do gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" na documentação do Google. +2. Create a firewall rule for each of the ports in the table below. For more information, see "[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" in the Google documentation. ```shell $ gcloud compute firewall-rules create <em>RULE-NAME</em> \ --network <em>NETWORK-NAME</em> \ --allow tcp:22,tcp:25,tcp:80,tcp:122,udp:161,tcp:443,udp:1194,tcp:8080,tcp:8443,tcp:9418,icmp ``` - Esta tabela identifica as portas necessárias e o uso de cada uma delas. + This table identifies the required ports and what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## Alocar uma IP estática e associá-la com a VM +## Allocating a static IP and assigning it to the VM -Se você estiver trabalhando com um appliance de produção, é altamente recomendável reservar um endereço IP externo estático e atribuí-lo à VM do {% data variables.product.prodname_ghe_server %}. Caso contrário, o endereço IP público da VM não será retido após a reinicialização. Para obter mais informações, consulte o guia "[Reservar um endereço IP externo estático](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)" do Google. +If this is a production appliance, we strongly recommend reserving a static external IP address and assigning it to the {% data variables.product.prodname_ghe_server %} VM. Otherwise, the public IP address of the VM will not be retained after restarts. For more information, see the Google guide "[Reserving a Static External IP Address](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)." -Nas configurações de alta disponibilidade de produção, os appliances primário e réplica devem receber endereços IP estáticos separados. +In production High Availability configurations, both primary and replica appliances should be assigned separate static IP addresses. -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance -Para criar a instância do {% data variables.product.prodname_ghe_server %}, você deve criar uma instância do GCE com a imagem do {% data variables.product.prodname_ghe_server %} e vincular um volume de armazenamento adicional aos dados da sua instância. Para obter mais informações, consulte "[Considerações de hardware](#hardware-considerations)". +To create the {% data variables.product.prodname_ghe_server %} instance, you'll need to create a GCE instance with your {% data variables.product.prodname_ghe_server %} image and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." -1. Usando a ferramenta de linha de comando gcloud compute, crie um disco de dados para usar como volume de armazenamento para os dados da sua instância e configure o tamanho com base na contagem de licenças de usuário. Para obter mais informações, consulte "[criar discos no gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" na documentação do Google. +1. Using the gcloud compute command-line tool, create a data disk to use as an attached storage volume for your instance data, and configure the size based on your user license count. For more information, see "[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" in the Google documentation. ```shell $ gcloud compute disks create <em>DATA-DISK-NAME</em> --size <em>DATA-DISK-SIZE</em> --type <em>DATA-DISK-TYPE</em> --zone <em>ZONE</em> ``` -2. Em seguida, crie uma instância usando o nome da imagem selecionada do {% data variables.product.prodname_ghe_server %} e vincule o disco de dados. Para obter mais informações, consulte "[criar instâncias no gcloud compute](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" na documentação do Google. +2. Then create an instance using the name of the {% data variables.product.prodname_ghe_server %} image you selected, and attach the data disk. For more information, see "[gcloud compute instances create](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" in the Google documentation. ```shell $ gcloud compute instances create <em>INSTANCE-NAME</em> \ --machine-type n1-standard-8 \ @@ -88,15 +87,15 @@ Para criar a instância do {% data variables.product.prodname_ghe_server %}, voc --image-project github-enterprise-public ``` -## Configurar a instância +## Configuring the instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md index 72324a7003..7901cb3efd 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md @@ -1,8 +1,8 @@ --- -title: Instalar o GitHub Enterprise Server no Hyper-V -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no Hyper-V, você deve fazer a implantação em uma máquina que execute o Windows Server 2008 através do Windows Server 2019.' +title: Installing GitHub Enterprise Server on Hyper-V +intro: 'To install {% data variables.product.prodname_ghe_server %} on Hyper-V, you must deploy onto a machine running Windows Server 2008 through Windows Server 2019.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v - /enterprise/admin/installation/installing-github-enterprise-server-on-hyper-v - /admin/installation/installing-github-enterprise-server-on-hyper-v versions: @@ -13,62 +13,61 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar no Hyper-V +shortTitle: Install on Hyper-V --- - -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Seu sistema operacional deve estar entre o Windows Server 2008 e o Windows Server 2019, que são compatíveis com o Hyper-V. -- A maioria das ações necessárias para criar sua máquina virtual (VM) também pode ser executada usando o [Gerenciador do Hyper-V](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). No entanto, a configuração inicial é recomendável com o shell de linha de comando do Windows PowerShell. Veja abaixo alguns exemplos com o PowerShell. Para obter mais informações, consulte "[Introdução ao Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)" no guia da Microsoft. +- You must have Windows Server 2008 through Windows Server 2019, which support Hyper-V. +- Most actions needed to create your virtual machine (VM) may also be performed using the [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). However, we recommend using the Windows PowerShell command-line shell for initial setup. Examples using PowerShell are included below. For more information, see the Microsoft guide "[Getting Started with Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)." -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Baixar a imagem do {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecione {% data variables.product.prodname_dotcom %} On-premises e clique em **Hyper-V**. -5. Clique em **Download for Hyper-V** (Baixar para Hyper-V). +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **Hyper-V (VHD)**. +5. Click **Download for Hyper-V (VHD)**. -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. No PowerShell, crie uma máquina virtual Generation 1, configure o tamanho com base na contagem de licenças de usuário e anexe a imagem do {% data variables.product.prodname_ghe_server %} que você baixou. Para obter mais informações, consulte "[Nova VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" na documentação da Microsoft. +1. In PowerShell, create a new Generation 1 virtual machine, configure the size based on your user license count, and attach the {% data variables.product.prodname_ghe_server %} image you downloaded. For more information, see "[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VM -Generation 1 -Name <em>VM_NAME</em> -MemoryStartupBytes <em>MEMORY_SIZE</em> -BootDevice VHD -VHDPath <em>PATH_TO_VHD</em> ``` -{% data reusables.enterprise_installation.create-attached-storage-volume %} Substitua `PATH_TO_DATA_DISK` pelo caminho no local em que você criará o disco. Para obter mais informações, consulte "[Novo VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" na documentação da Microsoft. +{% data reusables.enterprise_installation.create-attached-storage-volume %} Replace `PATH_TO_DATA_DISK` with the path to the location where you create the disk. For more information, see "[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VHD -Path <em>PATH_TO_DATA_DISK</em> -SizeBytes <em>DISK_SIZE</em> ``` -3. Vincule o disco de dados à sua instância. Para obter mais informações, consulte "[Adicionar VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" na documentação da Microsoft. +3. Attach the data disk to your instance. For more information, see "[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Add-VMHardDiskDrive -VMName <em>VM_NAME</em> -Path <em>PATH_TO_DATA_DISK</em> ``` -4. Inicie a VM. Para obter mais informações, consulte "[Iniciar a VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" na documentação da Microsoft. +4. Start the VM. For more information, see "[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Start-VM -Name <em>VM_NAME</em> ``` -5. Obtenha o endereço IP da sua VM. Para obter mais informações, consulte "[Obter VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" na documentação da Microsoft. +5. Get the IP address of your VM. For more information, see "[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> (Get-VMNetworkAdapter -VMName <em>VM_NAME</em>).IpAddresses ``` -6. Copie o endereço IP da VM e cole em um navegador da web. +6. Copy the VM's IP address and paste it into a web browser. -## Configurar a instância do {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md index b9d7576c95..1c1de12f10 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md @@ -1,8 +1,8 @@ --- -title: Instalar o GitHub Enterprise Server no OpenStack KVM -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no OpenStack KVM, você deve ter acesso ao OpenStack e baixar a imagem QCOW2 do {% data variables.product.prodname_ghe_server %}.' +title: Installing GitHub Enterprise Server on OpenStack KVM +intro: 'To install {% data variables.product.prodname_ghe_server %} on OpenStack KVM, you must have OpenStack access and download the {% data variables.product.prodname_ghe_server %} QCOW2 image.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm - /enterprise/admin/installation/installing-github-enterprise-server-on-openstack-kvm - /admin/installation/installing-github-enterprise-server-on-openstack-kvm versions: @@ -13,47 +13,46 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar no OpenStack +shortTitle: Install on OpenStack --- - -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Você deve ter acesso a uma instalação do OpenStack Horizon, a interface de usuário baseada na web para os serviços do OpenStack. Para obter mais informações, consulte a [Documentação do Horizon](https://docs.openstack.org/horizon/latest/). +- You must have access to an installation of OpenStack Horizon, the web-based user interface to OpenStack services. For more information, see the [Horizon documentation](https://docs.openstack.org/horizon/latest/). -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Baixar a imagem do {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecione o {% data variables.product.prodname_dotcom %} On-premises e clique em **OpenStack KVM (QCOW2)**. -5. Clique em **Download for OpenStack KVM (QCOW2)** (Baixar para OpenStack KVM [QCOW2]). +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **OpenStack KVM (QCOW2)**. +5. Click **Download for OpenStack KVM (QCOW2)**. -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. No OpenStack Horizon, faça upload da imagem do {% data variables.product.prodname_ghe_server %} que você baixou. Para obter instruções, consulte a seção "Fazer upload de uma imagem" do guia OpenStack "[Fazer upload e gerenciar imagens](https://docs.openstack.org/horizon/latest/user/manage-images.html)". -{% data reusables.enterprise_installation.create-attached-storage-volume %} Para obter instruções, consulte o guia OpenStack "[Criar e gerenciar volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)". -3. Crie um grupo de segurança e adicione uma nova regra de grupo de segurança para cada porta na tabela abaixo. Para ver as instruções, consulte o guia do OpenStack "[Configurar o acesso e a segurança nas instâncias](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)". +1. In OpenStack Horizon, upload the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the "Upload an image" section of the OpenStack guide "[Upload and manage images](https://docs.openstack.org/horizon/latest/user/manage-images.html)." +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the OpenStack guide "[Create and manage volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)." +3. Create a security group, and add a new security group rule for each port in the table below. For instructions, see the OpenStack guide "[Configure access and security for instances](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)." {% data reusables.enterprise_installation.necessary_ports %} -4. Você também pode associar um IP flutuante à instância. Dependendo da sua configuração do OpenStack, talvez seja necessário alocar um IP flutuante para o projeto e associá-lo à instância. Entre em contato com o administrador do sistema para determinar se esse é o seu caso. Para obter mais informações, consulte "[Alocar endereço IP flutuante a uma instância](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" na documentação do OpenStack. -5. Inicie a {% data variables.product.product_location %} usando a imagem, o volume de dados e o grupo de segurança criados nas etapas anteriores. Para ver as instruções, consulte "[Iniciar e gerenciar instâncias](https://docs.openstack.org/horizon/latest/user/launch-instances.html)" no guia do OpenStack. +4. Optionally, associate a floating IP to the instance. Depending on your OpenStack setup, you may need to allocate a floating IP to the project and associate it to the instance. Contact your system administrator to determine if this is the case for you. For more information, see "[Allocate a floating IP address to an instance](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" in the OpenStack documentation. +5. Launch {% data variables.product.product_location %} using the image, data volume, and security group created in the previous steps. For instructions, see the OpenStack guide "[Launch and manage instances](https://docs.openstack.org/horizon/latest/user/launch-instances.html)." -## Configurar a instância do {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md index 5217f4f42f..e725f7fd72 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md @@ -1,11 +1,11 @@ --- -title: Instalar o GitHub Enterprise Server no VMware -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no VMware, você deve fazer o download do cliente do VMware vSphere e, em seguida, fazer o download e implantar o software do {% data variables.product.prodname_ghe_server %}.' +title: Installing GitHub Enterprise Server on VMware +intro: 'To install {% data variables.product.prodname_ghe_server %} on VMware, you must download the VMware vSphere client, and then download and deploy the {% data variables.product.prodname_ghe_server %} software.' redirect_from: - - /enterprise/admin/articles/getting-started-with-vmware/ - - /enterprise/admin/articles/installing-vmware-tools/ - - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums/ - - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware/ + - /enterprise/admin/articles/getting-started-with-vmware + - /enterprise/admin/articles/installing-vmware-tools + - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums + - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware - /enterprise/admin/installation/installing-github-enterprise-server-on-vmware - /admin/installation/installing-github-enterprise-server-on-vmware versions: @@ -16,45 +16,44 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: Instalar em VMware +shortTitle: Install on VMware --- - -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Você deve ter um Hypervisor VMware vSphere ESXi aplicado a uma máquina bare metal que vai executar a {% data variables.product.product_location %}. As versões 5.5 a 6.7 são compatíveis. O Hpervisor ESXi é grátis e não inclui o Servidor vCenter (opcional). Para obter mais informações, consulte a [documentação do VMware ESXi](https://www.vmware.com/products/esxi-and-esx.html). -- Você precisará de acesso a um cliente vSphere. Se tiver o servidor vCenter, você poderá usar o cliente vSphere Web. Para obter mais informações, consulte "[Fazer login no servidor vCenter pelo cliente web vSphere](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)" no guia da VMware. +- You must have a VMware vSphere ESXi Hypervisor, applied to a bare metal machine that will run {% data variables.product.product_location %}s. We support versions 5.5 through 6.7. The ESXi Hypervisor is free and does not include the (optional) vCenter Server. For more information, see [the VMware ESXi documentation](https://www.vmware.com/products/esxi-and-esx.html). +- You will need access to a vSphere Client. If you have vCenter Server you can use the vSphere Web Client. For more information, see the VMware guide "[Log in to vCenter Server by Using the vSphere Web Client](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)." -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Baixar a imagem do {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecione {% data variables.product.prodname_dotcom %} On-premises e clique em **VMware ESXi/vSphere (OVA)**. -5. Clique em **Download for VMware ESXi/vSphere (OVA)** (Baixar para VMware ESXi/vSphere [OVA]). +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **VMware ESXi/vSphere (OVA)**. +5. Click **Download for VMware ESXi/vSphere (OVA)**. -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. Usando o cliente vSphere Windows ou vCenter Web, importe a imagem do {% data variables.product.prodname_ghe_server %} que você baixou. Para ver as instruções, consulte "[Implantar modelo OVF ou OVA](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)" no guia da VMware. - - Ao selecionar um armazenamento de dados, escolha um que tenha espaço suficiente para hospedar os discos da VM. Para as especificações mínimas de hardware recomendadas para o tamanho da sua instância, consulte "[Considerações de hardware](#hardware-considerations)". Recomendamos um provisionamento robusto com lazy zeroing. - - Desmarque a caixa **Power on after deployment** (Ligar após a implantação), pois você terá que adicionar um volume de armazenamento anexado aos dados do repositório após o provisionamento da VM. -{% data reusables.enterprise_installation.create-attached-storage-volume %} Para obter instruções, consulte "[Adicionar novo disco rígido a uma máquina virtual](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)" no guia da VMware. +1. Using the vSphere Windows Client or the vCenter Web Client, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the VMware guide "[Deploy an OVF or OVA Template](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)." + - When selecting a datastore, choose one with sufficient space to host the VM's disks. For the minimum hardware specifications recommended for your instance size, see "[Hardware considerations](#hardware-considerations)." We recommend thick provisioning with lazy zeroing. + - Leave the **Power on after deployment** box unchecked, as you will need to add an attached storage volume for your repository data after provisioning the VM. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the VMware guide "[Add a New Hard Disk to a Virtual Machine](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)." -## Configurar a instância do {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md index a230f5e77a..0f2545636d 100644 --- a/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md +++ b/translations/pt-BR/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md @@ -1,63 +1,63 @@ --- -title: Instalar o GitHub Enterprise Server no XenServer -intro: 'Para instalar o {% data variables.product.prodname_ghe_server %} no XenServer, você deve implantar a imagem de disco do {% data variables.product.prodname_ghe_server %} em um host do XenServer.' +title: Installing GitHub Enterprise Server on XenServer +intro: 'To install {% data variables.product.prodname_ghe_server %} on XenServer, you must deploy the {% data variables.product.prodname_ghe_server %} disk image to a XenServer host.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver - /enterprise/admin/installation/installing-github-enterprise-server-on-xenserver - /admin/installation/installing-github-enterprise-server-on-xenserver versions: - ghes: <=3.2 + ghes: '<=3.2' type: tutorial topics: - Administrator - Enterprise - Infrastructure - Set up -shortTitle: Instalar no XenServer +shortTitle: Install on XenServer --- {% note %} - **Observação:** O suporte para {% data variables.product.prodname_ghe_server %} no XenServer será descontinuado em {% data variables.product.prodname_ghe_server %} 3.3. Para obter mais informações, consulte as observações sobre a versão [{% data variables.product.prodname_ghe_server %} 3.1](/admin/release-notes#3.1.0) + **Note:** Support for {% data variables.product.prodname_ghe_server %} on XenServer will be discontinued in {% data variables.product.prodname_ghe_server %} 3.3. For more information, see the [{% data variables.product.prodname_ghe_server %} 3.1 release notes](/admin/release-notes#3.1.0) {% endnote %} -## Pré-requisitos +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- Você deve instalar o XenServer Hypervisor na máquina que executará a sua máquina virtual (VM) do {% data variables.product.prodname_ghe_server %}. As versões 6.0 a 7.0 são compatíveis. -- É recomendável usar o Console de gerenciamento do XenCenter Windows para a configuração inicial (veja as instruções de uso abaixo). Para obter mais informações, consulte "[Como baixar e instalar uma nova versão do XenCenter](https://support.citrix.com/article/CTX118531)" no guia do Citrix. +- You must install the XenServer Hypervisor on the machine that will run your {% data variables.product.prodname_ghe_server %} virtual machine (VM). We support versions 6.0 through 7.0. +- We recommend using the XenCenter Windows Management Console for initial setup. Instructions using the XenCenter Windows Management Console are included below. For more information, see the Citrix guide "[How to Download and Install a New Version of XenCenter](https://support.citrix.com/article/CTX118531)." -## Considerações de hardware +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## Baixar a imagem do {% data variables.product.prodname_ghe_server %} +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Selecione {% data variables.product.prodname_dotcom %} On-premises e clique em **XenServer (VHD)**. -5. Para baixar o arquivo de licença, clique em **Download license** (Baixar licença). +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **XenServer (VHD)**. +5. To download your license file, click **Download license**. -## Criar a instância do {% data variables.product.prodname_ghe_server %} +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. No XenCenter, importe a imagem do {% data variables.product.prodname_ghe_server %} que você baixou. Para obter instruções, consulte "[Importar imagens de disco](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)" no guia do XenCenter. - - Na etapa "Enable Operating System Fixup" (Habilitar correção do sistema operacional), selecione **Don't use Operating System Fixup** (Não usar correção do sistema operacional). - - Ao concluir, deixe a VM desligada. -{% data reusables.enterprise_installation.create-attached-storage-volume %} Para obter instruções, consulte "[Adicionar discos virtuais](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)" no guia do XenCenter. +1. In XenCenter, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the XenCenter guide "[Import Disk Images](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)." + - For the "Enable Operating System Fixup" step, select **Don't use Operating System Fixup**. + - Leave the VM powered off when you're finished. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the XenCenter guide "[Add Virtual Disks](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)." -## Configurar a instância do {% data variables.product.prodname_ghe_server %} +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} Para obter mais informações, consulte "[Configurar o appliance do {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)". +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## Leia mais +## Further reading -- "[Visão geral do sistema](/enterprise/admin/guides/installation/system-overview){% ifversion ghes %} -- "[Sobre atualizações para novas versões](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/pt-BR/content/admin/overview/about-enterprise-accounts.md b/translations/pt-BR/content/admin/overview/about-enterprise-accounts.md index fae7b08ba4..8b277fe208 100644 --- a/translations/pt-BR/content/admin/overview/about-enterprise-accounts.md +++ b/translations/pt-BR/content/admin/overview/about-enterprise-accounts.md @@ -2,7 +2,7 @@ title: About enterprise accounts intro: 'With {% data variables.product.product_name %}, you can use an enterprise account to {% ifversion ghec %}enable collaboration between your organizations, while giving{% elsif ghes or ghae %}give{% endif %} administrators a single point of visibility and management.' redirect_from: - - /articles/about-github-business-accounts/ + - /articles/about-github-business-accounts - /articles/about-enterprise-accounts - /enterprise/admin/installation/about-enterprise-accounts - /enterprise/admin/overview/about-enterprise-accounts diff --git a/translations/pt-BR/content/admin/overview/about-the-github-enterprise-api.md b/translations/pt-BR/content/admin/overview/about-the-github-enterprise-api.md index f8c7bc6f64..13c1255fff 100644 --- a/translations/pt-BR/content/admin/overview/about-the-github-enterprise-api.md +++ b/translations/pt-BR/content/admin/overview/about-the-github-enterprise-api.md @@ -1,11 +1,11 @@ --- -title: Sobre a API do GitHub Enterprise -intro: '{% data variables.product.product_name %} é compatível com APIs REST e do GraphQL.' +title: About the GitHub Enterprise API +intro: '{% data variables.product.product_name %} supports REST and GraphQL APIs.' redirect_from: - /enterprise/admin/installation/about-the-github-enterprise-server-api - - /enterprise/admin/articles/about-the-enterprise-api/ - - /enterprise/admin/articles/using-the-api/ - - /enterprise/admin/categories/api/ + - /enterprise/admin/articles/about-the-enterprise-api + - /enterprise/admin/articles/using-the-api + - /enterprise/admin/categories/api - /enterprise/admin/overview/about-the-github-enterprise-server-api - /admin/overview/about-the-github-enterprise-server-api versions: @@ -16,12 +16,12 @@ topics: shortTitle: GitHub Enterprise API --- -Com as APIs, você pode automatizar muitas tarefas administrativas. Veja alguns exemplos: +With the APIs, you can automate many administrative tasks. Some examples include: {% ifversion ghes %} -- Fazer alterações no {% data variables.enterprise.management_console %}. Para obter mais informações, consulte "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)." -- Configurar a sincronização LDAP. Para obter mais informações, consulte "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#admin-stats)".{% endif %} -- Colete estatísticas sobre sua empresa. Para obter mais informações, consulte " As[Estatísticas de Administrador](/rest/reference/enterprise-admin#admin-stats)". -- Gerenciar sua conta corporativa. Para obter mais informações, consulte "[Contas corporativas](/graphql/guides/managing-enterprise-accounts)". +- Perform changes to the {% data variables.enterprise.management_console %}. For more information, see "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)." +- Configure LDAP sync. For more information, see "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)."{% endif %} +- Collect statistics about your enterprise. For more information, see "[Admin stats](/rest/reference/enterprise-admin#admin-stats)." +- Manage your enterprise account. For more information, see "[Enterprise accounts](/graphql/guides/managing-enterprise-accounts)." -Para a documentação completa sobre {% data variables.product.prodname_enterprise_api %}, consulte [{% data variables.product.prodname_dotcom %} API REST](/rest) e [{% data variables.product.prodname_dotcom%} API do GraphQL](/graphql). +For the complete documentation for {% data variables.product.prodname_enterprise_api %}, see [{% data variables.product.prodname_dotcom %} REST API](/rest) and [{% data variables.product.prodname_dotcom%} GraphQL API](/graphql). diff --git a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md index f6e5d66fad..3756eb9670 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md @@ -1,10 +1,10 @@ --- -title: Aplicando políticas para insights de dependência na sua empresa -intro: Você pode aplicar políticas de ingiths de dependência nas organizações da sua empresa ou permitir que as políticas sejam definidas em cada organização. +title: Enforcing policies for dependency insights in your enterprise +intro: 'You can enforce policies for dependency insights within your enterprise''s organizations, or allow policies to be set in each organization.' permissions: Enterprise owners can enforce policies for dependency insights in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-a-policy-on-dependency-insights/ + - /articles/enforcing-a-policy-on-dependency-insights - /articles/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account @@ -17,19 +17,21 @@ topics: - Enterprise - Organizations - Policies -shortTitle: Políticas para insights de dependência +shortTitle: Policies for dependency insights --- -## Sobre políticas de insights de dependência na sua empresa +## About policies for dependency insights in your enterprise -Os insights de dependência mostram todos os pacotes dos quais os repositórios nas organizações da sua empresa dependem. Os insights de dependência incluem informações agregadas sobre consultorias de segurança e licenças. Para obter mais informações, consulte "[Visualizar os insights para a sua organização](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)". +Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. For more information, see "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)." -## Aplicando uma política de visibilidade de insights de dependência +## Enforcing a policy for visibility of dependency insights -Em todas as organizações pertencentes à sua empresa, é possível controlar se os integrantes da organização podem ver os insights de dependência. Você também pode permitir que proprietários administrem a configuração no nível da organização. Para obter mais informações, consulte "[Alterar a visibilidade dos insights de dependência da organização](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)". +Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. For more information, see "[Changing the visibility of your organization's dependency insights](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. Na barra lateral esquerda, clique em **Organizações**. ![Aba Organizações na barra lateral da empresa](/assets/images/help/business-accounts/settings-policies-org-tab.png) -4. Em "Organization policies" (Políticas da organização), revise as informações sobre como alterar a configuração. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. Em "Organization policies" (Políticas da organização), use o menu suspenso e escolha uma política. ![Menu suspenso com opções de políticas da organização](/assets/images/help/business-accounts/organization-policy-drop-down.png) +3. In the left sidebar, click **Organizations**. + ![Organizations tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-policies-org-tab.png) +4. Under "Organization policies", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization policies", use the drop-down menu and choose a policy. + ![Drop-down menu with organization policies options](/assets/images/help/business-accounts/organization-policy-drop-down.png) diff --git a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md index 0844fb1881..580c1dcf78 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Aplicando políticas para configurações de segurança na sua empresa -intro: É possível impor políticas para gerenciar as configurações de segurança nas organizações da sua empresa ou permitir que as políticas sejam definidas em cada organização. +title: Enforcing policies for security settings in your enterprise +intro: 'You can enforce policies to manage security settings in your enterprise''s organizations, or allow policies to be set in each organization.' permissions: Enterprise owners can enforce policies for security settings in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/enforcing-security-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-security-settings-for-organizations-in-your-business-account + - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account - /articles/enforcing-security-settings-in-your-enterprise-account - /github/articles/managing-allowed-ip-addresses-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-security-settings-in-your-enterprise-account @@ -21,62 +21,64 @@ topics: - Enterprise - Policies - Security -shortTitle: Políticas de configurações de segurança +shortTitle: Policies for security settings --- -## Sobre políticas para configurações de segurança na sua empresa +## About policies for security settings in your enterprise -É possível aplicar políticas para controlar as configurações de segurança das organizações pertencentes à sua empresa em {% data variables.product.product_name %}. Por padrão, os proprietários da organização podem gerenciar as configurações de segurança. Para obter mais informações, consulte "[Mantendo sua organização segura](/organizations/keeping-your-organization-secure)". +You can enforce policies to control the security settings for organizations owned by your enterprise on {% data variables.product.product_name %}. By default, organization owners can manage security settings. For more information, see "[Keeping your organization secure](/organizations/keeping-your-organization-secure)." {% ifversion ghec or ghes %} -## Exigir autenticação de dois fatores para organizações na sua empresa +## Requiring two-factor authentication for organizations in your enterprise -Os proprietários corporativos podem exigir que integrantes da organização, gerentes de cobrança e colaboradores externos em todas as organizações pertencentes a uma empresa usem autenticação de dois fatores para proteger suas contas pessoais. +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 personal accounts. -Antes de poder exigir a autenticação 2FA para todas as organizações pertencentes à sua empresa, você deve habilitar a autenticação de dois fatores para a sua própria conta. Para obter mais informações, consulte "[Proteger sua conta com autenticação de dois fatores (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa/)". +Before you can require 2FA for all organizations owned by your enterprise, you must enable two-factor authentication for your own account. For more information, see "[Securing your account with two-factor authentication (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa/)." {% warning %} -**Avisos:** +**Warnings:** -- Se você exigir autenticação de dois fatores para a sua empresa, os integrantes, colaboradores externos e gerentes de cobrança (incluindo contas bot) em todas as organizações pertencentes à sua empresa que não utilizem 2FA serão removidos da organização e perderão acesso aos repositórios dela. Eles também perderão acesso às bifurcações dos repositórios privados da organização. Se a autenticação de dois fatores for habilitada para a conta pessoal deles em até três meses após a remoção da organização, será possível restabelecer as configurações e os privilégios de acesso deles. Para obter mais informações, consulte "[Restabelecer ex-integrantes da organização](/articles/reinstating-a-former-member-of-your-organization)". -- Qualquer proprietário da organização, integrante, gerente de cobrança ou colaborador externo em qualquer das organizações pertencentes à sua empresa que desabilite a 2FA para a conta pessoal dele depois que você tiver habilitado a autenticação de dois fatores obrigatória será removido automaticamente da organização. -- Se você for o único proprietário de uma empresa que exige autenticação de dois fatores, não poderá desabilitar 2FA para sua conta pessoal sem desabilitar a autenticação de dois fatores obrigatória para a empresa. +- When you require two-factor authentication for your enterprise, members, outside collaborators, and billing managers (including bot accounts) in all organizations owned by your enterprise who do not use 2FA will be removed from the organization and lose access to its repositories. They will also lose access to their forks of the organization's private repositories. You can reinstate their access privileges and settings if they enable two-factor authentication for their personal account within three months of their removal from your organization. For more information, see "[Reinstating a former member of 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 personal 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 personal account without disabling required two-factor authentication for the enterprise. {% endwarning %} -Antes de exigir o uso da autenticação de dois fatores, é recomendável notificar os integrantes da organização, colaboradores externos e gerentes de cobrança e pedir que eles configurem 2FA nas contas deles. Os proprietários da organização podem ver se integrantes e colaboradores externos já utilizam 2FA na página People (Pessoas) de cada organização. Para obter mais informações, consulte "[Ver se os usuários na organização têm a 2FA habilitada](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)". +Before you require use of two-factor authentication, we recommend notifying organization members, outside collaborators, and billing managers and asking them to set up 2FA for their accounts. Organization owners can see if members and outside collaborators already use 2FA on each organization's People page. For more information, see "[Viewing whether users in your organization have 2FA enabled](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -4. Em "Two-factor authentication" (Autenticação de dois fatores), revise as informações sobre como alterar a configuração. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. Em "Two-factor authentication" (Autenticação de dois fatores), selecione **Require two-factor authentication for all organizations in your business** (Exigir autenticação de dois fatores para todas as organizações na empresa) e clique em **Save** (Salvar). ![Caixa de seleção para exigir autenticação de dois fatores](/assets/images/help/business-accounts/require-2fa-checkbox.png) -6. Se solicitado, leia as informações sobre os integrantes e colaboradores externos que serão removidos das organizações pertencentes à sua empresa. Para confirmar a alteração, digite o nome da sua empresa e clique em **Remover integrantes& exigir autenticação de dois fatores**. ![Caixa Confirm two-factor enforcement (Confirmar exigência de dois fatores)](/assets/images/help/business-accounts/confirm-require-2fa.png) -7. Como alternativa, se algum integrante ou colaborador externo for removido das organizações pertencentes à sua empresa, recomendamos enviar um convite para restabelecer os privilégios e o acesso à organização que ele tinha anteriormente. Cada pessoa precisa habilitar a autenticação de dois fatores para poder aceitar o convite. +4. Under "Two-factor authentication", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Two-factor authentication", select **Require two-factor authentication for all organizations in your business**, then click **Save**. + ![Checkbox to require two-factor authentication](/assets/images/help/business-accounts/require-2fa-checkbox.png) +6. If prompted, read the information about members and outside collaborators who will be removed from the organizations owned by your enterprise. To confirm the change, type your enterprise's name, then click **Remove members & require two-factor authentication**. + ![Confirm two-factor enforcement box](/assets/images/help/business-accounts/confirm-require-2fa.png) +7. Optionally, if any members or outside collaborators are removed from the organizations owned by your enterprise, we recommend sending them an invitation to reinstate their former privileges and access to your organization. Each person must enable two-factor authentication before they can accept your invitation. {% endif %} {% ifversion ghec or ghae %} -## Gerenciar endereços IP permitidos para organizações na sua empresa +## Managing allowed IP addresses for organizations in your enterprise {% ifversion ghae %} -Você pode restringir o tráfego de rede para a sua empresa em {% data variables.product.product_name %}. Para obter mais informações, consulte "[Restringir tráfego de rede para a sua empresa](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)". +You can restrict network traffic to your enterprise on {% data variables.product.product_name %}. For more information, see "[Restricting network traffic to your enterprise](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)." {% elsif ghec %} -Os proprietários de empresas podem restringir o acesso a ativos pertencentes a organizações em uma empresa, configurando uma lista de permissão de endereços IP específicos. {% data reusables.identity-and-permissions.ip-allow-lists-example-and-restrictions %} +Enterprise owners can restrict access to assets owned by organizations in an enterprise by configuring an allow list for specific IP addresses. {% data reusables.identity-and-permissions.ip-allow-lists-example-and-restrictions %} {% data reusables.identity-and-permissions.ip-allow-lists-cidr-notation %} -{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} +{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} -Você também pode configurar endereços IP permitidos para uma organização individual. Para obter mais informações, consulte "[Gerenciar endereços IP permitidos para a sua organização](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)". +You can also configure allowed IP addresses for an individual organization. For more information, see "[Managing allowed IP addresses for your organization](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)." -### Adicionar endereços IP permitidos +### Adding an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -85,19 +87,20 @@ Você também pode configurar endereços IP permitidos para uma organização in {% data reusables.identity-and-permissions.ip-allow-lists-add-description %} {% data reusables.identity-and-permissions.ip-allow-lists-add-entry %} -### Permitindo acesso de {% data variables.product.prodname_github_apps %} +### Allowing access by {% data variables.product.prodname_github_apps %} {% data reusables.identity-and-permissions.ip-allow-lists-githubapps-enterprise %} -### Habilitar endereços IP permitidos +### Enabling allowed IP addresses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -3. Em "IP allow list" (Lista de permissões IP), selecione **Enable IP allow list** (Habilitar lista de permissões IP). ![Caixa de seleção para permitir endereços IP](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) -4. Clique em **Salvar**. +3. Under "IP allow list", select **Enable IP allow list**. + ![Checkbox to allow IP addresses](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) +4. Click **Save**. -### Editar endereços IP permitidos +### Editing an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -105,9 +108,9 @@ Você também pode configurar endereços IP permitidos para uma organização in {% data reusables.identity-and-permissions.ip-allow-lists-edit-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-ip %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-description %} -8. Clique em **Atualizar**. +8. Click **Update**. -### Excluir endereços IP permitidos +### Deleting an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -115,7 +118,7 @@ Você também pode configurar endereços IP permitidos para uma organização in {% data reusables.identity-and-permissions.ip-allow-lists-delete-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-confirm-deletion %} -### Usar {% data variables.product.prodname_actions %} com uma lista endereços IP permitidos +### Using {% data variables.product.prodname_actions %} with an IP allow list {% data reusables.github-actions.ip-allow-list-self-hosted-runners %} @@ -123,11 +126,11 @@ Você também pode configurar endereços IP permitidos para uma organização in {% endif %} -## Gerenciando as autoridades de certificados de SSH da sua empresa +## Managing SSH certificate authorities for your enterprise -Você pode usar as autoridades de certificados SSH (CA) para permitir que os integrantes de qualquer organização pertencente à sua empresa acessem os repositórios da organização usando certificados SSH que você fornecer. {% data reusables.organizations.can-require-ssh-cert %} Para obter mais informações, consulte "[Sobre autoridades certificadas de SSH](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)". +You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %} For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)." -### Adicionar uma autoridade certificada de SSH +### Adding an SSH certificate authority {% data reusables.organizations.add-extension-to-cert %} @@ -137,9 +140,9 @@ Você pode usar as autoridades de certificados SSH (CA) para permitir que os int {% data reusables.organizations.new-ssh-ca %} {% data reusables.organizations.require-ssh-cert %} -### Excluir uma autoridade certificada de SSH +### Deleting an SSH certificate authority -A exclusão de uma CA não pode ser desfeita. Se você quiser usar a mesma CA no futuro, precisará fazer upload dela novamente. +Deleting a CA cannot be undone. If you want to use the same CA in the future, you'll need to upload the CA again. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -148,8 +151,8 @@ A exclusão de uma CA não pode ser desfeita. Se você quiser usar a mesma CA no {% ifversion ghec or ghae %} -## Leia mais +## Further reading -- "[Sobre a identidade e gerenciamento de acesso para a sua empresa](/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise)" +- "[About identity and access management for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise)" {% endif %} diff --git a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md index 1925e10389..251c60ac98 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md @@ -1,11 +1,11 @@ --- -title: Aplicando políticas de quadros de projeto na sua empresa -intro: É possível aplicar políticas para projetos nas organizações da sua empresa ou permitir que as políticas sejam definidas em cada organização. +title: Enforcing project board policies in your enterprise +intro: 'You can enforce policies for projects within your enterprise''s organizations, or allow policies to be set in each organization.' permissions: Enterprise owners can enforce policies for project boards in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account + - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-project-board-policies-in-your-enterprise-account @@ -19,29 +19,31 @@ topics: - Enterprise - Policies - Projects -shortTitle: Políticas do quadro de projetos +shortTitle: Project board policies --- -## Sobre políticas para quadros de projetos na sua empresa +## About policies for project boards in your enterprise -Você pode aplicar políticas para controlar como os integrantes da sua empresa em {% data variables.product.product_name %} gerenciam os quadros de projeto. Você também pode permitir que proprietários da organização gerenciem as políticas para os quadros de projeto. Para obter mais informações, consulte "[Sobre quadros de projeto](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)". +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. For more information, see "[About project boards](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)." -## Aplicar política para quadros de projeto de toda a organização +## Enforcing a policy for organization-wide project boards -Em todas as organizações pertencentes à sua empresa, é possível habilitar ou desabilitar quadros de projeto em toda a organização ou permitir que os proprietários administrem a configuração no nível da organização. +Across all organizations owned by your enterprise, you can enable or disable organization-wide project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. Em "Organization projects" (Projetos da organização), revise as informações sobre como alterar a configuração. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. Em "Organization projects" (Projetos da organização), use o menu suspenso e escolha uma política. ![Menu suspenso com opções de políticas de quadros de projeto da organização](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) +4. Under "Organization projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization projects", use the drop-down menu and choose a policy. + ![Drop-down menu with organization project board policy options](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) -## Aplicar política para quadros de projeto de repositório +## Enforcing a policy for repository project boards -Em todas as organizações pertencentes à sua empresa, é possível habilitar ou desabilitar quadros de projeto no nível de repositório ou permitir que os proprietários administrem a configuração no nível da organização. +Across all organizations owned by your enterprise, you can enable or disable repository-level project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. Em "Repository projects" (Projetos de repositório), revise as informações sobre como alterar a configuração. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. Em "Repository projects" (Projetos de repositório), use o menu suspenso e escolha uma política. ![Menu suspenso com opções de políticas de quadros de projeto de repositório](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) +4. Under "Repository projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Repository projects", use the drop-down menu and choose a policy. + ![Drop-down menu with repository project board policy options](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) diff --git a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md index 68e7fb8975..be790e0250 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md @@ -10,26 +10,26 @@ redirect_from: - /enterprise/admin/user-management/restricting-repository-creation-in-your-instance - /enterprise/admin/user-management/preventing-users-from-deleting-organization-repositories - /enterprise/admin/installation/setting-git-push-limits - - /enterprise/admin/guides/installation/git-server-settings/ - - /enterprise/admin/articles/setting-git-push-limits/ + - /enterprise/admin/guides/installation/git-server-settings + - /enterprise/admin/articles/setting-git-push-limits - /enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories - /enterprise/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories - /enterprise/admin/developer-workflow/blocking-force-pushes-on-your-appliance - /enterprise/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes-to-a-repository - - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance/ - - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository/ + - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance + - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository - /enterprise/admin/user-management/preventing-users-from-changing-anonymous-git-read-access - - /enterprise/admin/articles/blocking-force-pushes-to-a-repository/ - - /enterprise/admin/articles/block-force-pushes/ - - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account/ - - /enterprise/admin/articles/blocking-force-pushes-for-an-organization/ - - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization/ + - /enterprise/admin/articles/blocking-force-pushes-to-a-repository + - /enterprise/admin/articles/block-force-pushes + - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account + - /enterprise/admin/articles/blocking-force-pushes-for-an-organization + - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes - /enterprise/admin/policies/enforcing-repository-management-policies-in-your-enterprise - /admin/policies/enforcing-repository-management-policies-in-your-enterprise - - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account + - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-repository-management-policies-in-your-enterprise-account diff --git a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md index 09efb2dc2d..14860a36f6 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md @@ -1,11 +1,11 @@ --- -title: Aplicando políticas de equipe na sua empresa -intro: É possível aplicar políticas para equipes nas organizações da sua empresa ou permitir que as políticas sejam definidas em cada organização. +title: Enforcing team policies in your enterprise +intro: 'You can enforce policies for teams in your enterprise''s organizations, or allow policies to be set in each organization.' permissions: Enterprise owners can enforce policies for teams in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-team-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-team-settings-for-organizations-in-your-business-account + - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-team-policies-in-your-enterprise-account @@ -19,19 +19,21 @@ topics: - Enterprise - Policies - Teams -shortTitle: Políticas de equipe +shortTitle: Team policies --- -## Sobre políticas para equipes na sua empresa +## About policies for teams in your enterprise -Você pode aplicar políticas para controlar como os integrantes da sua empresa em {% data variables.product.product_name %} gerenciam as equipes. Você também pode permitir que proprietários da organização gerenciem as políticas para as equipes. Para obter mais informações, consulte "[Sobre equipes](/organizations/organizing-members-into-teams/about-teams)". +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." -## Aplicar política para discussões de equipe +## Enforcing a policy for team discussions -Em todas as organizações pertencentes à sua empresa, é possível habilitar ou desabilitar discussões de equipe ou permitir que os proprietários administrem a configuração no nível da organização. Para obter mais informações, consulte "[Sobre discussões de equipe](/organizations/collaborating-with-your-team/about-team-discussions/)". +Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. For more information, see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions/)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. Na barra lateral esquerda, clique em **Teams** (Equipes). ![Aba Equipes na barra lateral da empresa](/assets/images/help/business-accounts/settings-teams-tab.png) -4. Em "Team discussions" (Discussões de equipe), revise as informações sobre como alterar a configuração. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. Em "Team discussions" (Discussões de equipe), use o menu suspenso e escolha uma política. ![Menu suspenso com opções de políticas de discussão de equipe](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) +3. In the left sidebar, click **Teams**. + ![Teams tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-teams-tab.png) +4. Under "Team discussions", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Team discussions", use the drop-down menu and choose a policy. + ![Drop-down menu with team discussion policy options](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) diff --git a/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md b/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md index 0a6dd5fea3..48b09b3704 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md @@ -1,6 +1,6 @@ --- -title: Criar um script de hook pre-receive -intro: Use os scripts de hooks pre-receive a fim de criar requisitos para aceitar ou rejeitar um push com base no conteúdo. +title: Creating a pre-receive hook script +intro: Use pre-receive hook scripts to create requirements for accepting or rejecting a push based on the contents. miniTocMaxHeadingLevel: 3 redirect_from: - /enterprise/admin/developer-workflow/creating-a-pre-receive-hook-script @@ -13,144 +13,143 @@ topics: - Enterprise - Policies - Pre-receive hooks -shortTitle: Scripts de hook pre-receive +shortTitle: Pre-receive hook scripts --- +You can see examples of pre-receive hooks for {% data variables.product.prodname_ghe_server %} in the [`github/platform-samples` repository](https://github.com/github/platform-samples/tree/master/pre-receive-hooks). -Veja exemplos de hooks pre-receive para o {% data variables.product.prodname_ghe_server %} no repositório [`github/platform-samples`](https://github.com/github/platform-samples/tree/master/pre-receive-hooks). +## Writing a pre-receive hook script +A pre-receive hook script executes in a pre-receive hook environment on {% data variables.product.product_location %}. When you create a pre-receive hook script, consider the available input, output, exit status, and environment variables. -## Gravar um script de hook pre-receive -Um script de hook pre-receive é executado em um ambiente de hook pre-receive em {% data variables.product.product_location %}. Ao criar um script de hook pre-receive, considere a entrada, saída, estado de saída e variáveis de ambiente disponíveis. - -### Entrada (`stdin`) -Depois que um push ocorrer e antes que qualquer ref seja atualizado para o repositório remoto, o processo `git-receive-pack` em {% data variables.product.product_location %} irá invocar o script de do hook pre-receive. A entrada padrão para o script, `stdin`, é uma string que contém uma linha atualizar cada ref. Cada linha contém o nome antigo do objeto para ref, o novo nome do objeto para o ref e o nome completo do ref. +### Input (`stdin`) +After a push occurs and before any refs are updated for the remote repository, the `git-receive-pack` process on {% data variables.product.product_location %} invokes the pre-receive hook script. Standard input for the script, `stdin`, is a string containing a line for each ref to update. Each line contains the old object name for the ref, the new object name for the ref, and the full name of the ref. ``` <old-value> SP <new-value> SP <ref-name> LF ``` -Essa frase representa os argumentos a seguir. +This string represents the following arguments. -| Argumento | Descrição | -|:------------------- |:------------------------------------------------------------------------------------------------- | -| `<old-value>` | Nome de objeto antigo armazenado na ref.<br> Ao criar uma nova ref, o valor será 40 zeros. | -| `<new-value>` | Novo nome de objeto a ser armazenado na ref.<br> Ao excluir uma ref, o valor será 40 zeros. | -| `<ref-name>` | O nome completo da ref. | +| Argument | Description | +| :------------- | :------------- | +| `<old-value>` | Old object name stored in the ref.<br> When you create a new ref, the value is 40 zeroes. | +| `<new-value>` | New object name to be stored in the ref.<br> When you delete a ref, the value is 40 zeroes. | +| `<ref-name>` | The full name of the ref. | -Para obter mais informações sobre `git-receive-pack`, consulte "[git-receive-pack](https://git-scm.com/docs/git-receive-pack)" na documentação do Git. Para obter mais informações sobre refs, consulte "[Referências do Git](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" no *Pro Git*. +For more information about `git-receive-pack`, see "[git-receive-pack](https://git-scm.com/docs/git-receive-pack)" in the Git documentation. For more information about refs, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in *Pro Git*. -### Saída (`stdout`) +### Output (`stdout`) -A saída padrão do script, `stdout`, é remetida de volta para o cliente. Qualquer `echo` será visível para o usuário na linha de comando ou na interface do usuário. +The standard output for the script, `stdout`, is passed back to the client. Any `echo` statements will be visible to the user on the command line or in the user interface. -### Status de saída +### Exit status -O status de saída de um script pre-receive determina se o push será aceito. +The exit status of a pre-receive script determines if the push will be accepted. -| Valor de status de saída | Ação | -|:------------------------ |:---------------------- | -| 0 | O push será aceito. | -| Diferente de zero | O push será rejeitado. | +| Exit-status value | Action | +| :- | :- | +| 0 | The push will be accepted. | +| non-zero | The push will be rejected. | -### Variáveis de ambiente +### Environment variables -Além da entrada padrão para o seu script do hook pre-receive, `stdin`, {% data variables.product.prodname_ghe_server %} disponibiliza as variáveis a seguir no ambiente Bash para a execução do seu script. Para obter mais informações sobre `stdin` para o seu script de hook de pre-receive, consulte "[Entrada (`stdin`)](#input-stdin)". +In addition to the standard input for your pre-receive hook script, `stdin`, {% data variables.product.prodname_ghe_server %} makes the following variables available in the Bash environment for your script's execution. For more information about `stdin` for your pre-receive hook script, see "[Input (`stdin`)](#input-stdin)." -Diferentes variáveis de ambiente estão disponíveis para o seu script de hook pre-receive dependendo do que acionar o script. +Different environment variables are available to your pre-receive hook script depending on what triggers the script to run. -- [Sempre disponível](#always-available) -- [Disponível para pushes a partir da interface web ou API](#available-for-pushes-from-the-web-interface-or-api) -- [Disponível para merge de pull request](#available-for-pull-request-merges) -- [Disponível para pushes que usam autenticação SSH](#available-for-pushes-using-ssh-authentication) +- [Always available](#always-available) +- [Available for pushes from the web interface or API](#available-for-pushes-from-the-web-interface-or-api) +- [Available for pull request merges](#available-for-pull-request-merges) +- [Available for pushes using SSH authentication](#available-for-pushes-using-ssh-authentication) -#### Sempre disponível +#### Always available -As seguintes variáveis estão sempre disponíveis no ambiente de do hook pre-receive. +The following variables are always available in the pre-receive hook environment. -| Variável | Descrição | Valor de exemplo | -|:------------------------- |:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:------------------------------------------------------------------ | -| <pre>$GIT_DIR</pre> | Caminho para o repositório remoto na instância | /data/user/repositories/a/ab/<br>a1/b2/34/100001234/1234.git | -| <pre>$GIT_PUSH_OPTION_COUNT</pre> | O número de opções de push enviadas pelo cliente com `--push-option`. Para obter mais informações, consulte "[git-push](https://git-scm.com/docs/git-push#Documentation/git-push.txt---push-optionltoptiongt)" na documentação do Git. | 1 | -| <pre>$GIT\_PUSH\_OPTION\_<em>N</em></pre> | Quando _N_ for um número inteiro a partir de 0, esta variável vai conter a string de opção de push enviada pelo cliente. A primeira opção enviada é armazenada em `GIT_PUSH_OPTION_0`, a segunda opção enviada é armazenada em `GIT_PUSH_OPTION_1`, e assim por diante. Para obter mais informações sobre as opções de push, consulte "[git-push](https://git-scm.com/docs/git-push#git-push---push-optionltoptiongt)" na documentação do Git. | abcd |{% ifversion ghes %} -| <pre>$GIT_USER_AGENT</pre> | String de usuário-agente enviada pelo cliente Git que realizou push das alterações | git/2.0.0{% endif %} -| <pre>$GITHUB_REPO_NAME</pre> | Nome do repositório que está sendo atualizado no formato _NAME_/_OWNER_ | octo-org/hello-enterprise | -| <pre>$GITHUB_REPO_PUBLIC</pre> | Booleano público, que representa se o repositório está sendo atualizado | <ul><li>true: A visibilidade do repositório é pública</li><li>false: A visibilidade do repositório é privada ou interna</li></ul> | -| <pre>$GITHUB_USER_IP</pre> | Endereço IP do cliente que iniciou o push | 192.0.2.1 | -| <pre>$GITHUB_USER_LOGIN</pre> | Nome de usuário para a conta que iniciou o push | octocat | +| Variable | Description | Example value | +| :- | :- | :- | +| <pre>$GIT_DIR</pre> | Path to the remote repository on the instance | /data/user/repositories/a/ab/<br>a1/b2/34/100001234/1234.git | +| <pre>$GIT_PUSH_OPTION_COUNT</pre> | The number of push options that were sent by the client with `--push-option`. For more information, see "[git-push](https://git-scm.com/docs/git-push#Documentation/git-push.txt---push-optionltoptiongt)" in the Git documentation. | 1 | +| <pre>$GIT\_PUSH\_OPTION\_<em>N</em></pre> | Where _N_ is an integer starting at 0, this variable contains the push option string that was sent by the client. The first option that was sent is stored in `GIT_PUSH_OPTION_0`, the second option that was sent is stored in `GIT_PUSH_OPTION_1`, and so on. For more information about push options, see "[git-push](https://git-scm.com/docs/git-push#git-push---push-optionltoptiongt)" in the Git documentation. | abcd |{% ifversion ghes %} +| <pre>$GIT_USER_AGENT</pre> | User-agent string sent by the Git client that pushed the changes | git/2.0.0{% endif %} +| <pre>$GITHUB_REPO_NAME</pre> | Name of the repository being updated in _NAME_/_OWNER_ format | octo-org/hello-enterprise | +| <pre>$GITHUB_REPO_PUBLIC</pre> | Boolean representing whether the repository being updated is public | <ul><li>true: Repository's visibility is public</li><li>false: Repository's visibility is private or internal</li></ul> +| <pre>$GITHUB_USER_IP</pre> | IP address of client that initiated the push | 192.0.2.1 | +| <pre>$GITHUB_USER_LOGIN</pre> | Username for account that initiated the push | octocat | -#### Disponível para pushes a partir da interface web ou API +#### Available for pushes from the web interface or API -A variável `$GITHUB_VIA` está disponível no ambiente de pre-receive quando a atualização de ref que aciona o hook por meio da interface da web ou da API para {% data variables.product.prodname_ghe_server %}. O valor descreve a ação que atualizou o ref. +The `$GITHUB_VIA` variable is available in the pre-receive hook environment when the ref update that triggers the hook occurs via either the web interface or the API for {% data variables.product.prodname_ghe_server %}. The value describes the action that updated the ref. -| Valor | Ação | Mais informações | -|:-------------------------- |:------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| <pre>auto-merge deployment api</pre> | Merge automático do branch base através de uma implantação criada com a API | "[Repositórios](/rest/reference/repos#create-a-deployment)" na documentação da API REST | -| <pre>blob#save</pre> | Mudar para o conteúdo de um arquivo na interface web | "[Editando arquivos](/repositories/working-with-files/managing-files/editing-files)" | -| <pre>branch merge api</pre> | Merge de um branch através da API | "[Repositórios](/rest/reference/repos#merge-a-branch)" na documentação da API REST | -| <pre>branches page delete button</pre> | Exclusão de um branch na interface web | "[Criar e excluir branches dentro do seu repositório](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)" | -| <pre>git refs create api</pre> | Criação de um ref através da API | "[Banco de dados Git](/rest/reference/git#create-a-reference)" na documentação da API REST | -| <pre>git refs delete api</pre> | Exclusão de uma ref através da API | "[Banco de dados Git](/rest/reference/git#delete-a-reference)" na documentação da API REST | -| <pre>git refs update api</pre> | Atualização de um ref através da API | "[Banco de dados Git](/rest/reference/git#update-a-reference)" na documentação da API REST | -| <pre>git repo contents api</pre> | Mudança no conteúdo de um arquivo através da API | "[Repositórios](/rest/reference/repos#create-or-update-file-contents)" na documentação da API REST | -| <pre>merge base into head</pre> | Atualizar o branch de tópico do branch de base quando o branch de base exigir verificações de status rigorosas (via **Atualizar branch** em um pull request, por exemplo) | "[Sobre branches protegidos](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" | -| <pre>pull request branch delete button</pre> | Exclusão de um branch de tópico de um pull request na interface web | "[Excluindo e restaurando branches em uma pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" | -| <pre>pull request branch undo button</pre> | Restauração de um branch de tópico de um pull request na interface web | "[Excluindo e restaurando branches em uma pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" | -| <pre>pull request merge api</pre> | Merge de um pull request através da API | "[Pulls](/rest/reference/pulls#merge-a-pull-request)" na documentação da API REST | -| <pre>pull request merge button</pre> | Merge de um pull request na interface web | "[Fazer merge de uma pull request](/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request#merging-a-pull-request-on-github)" | -| <pre>pull request revert button</pre> | Reverter um pull request | "[Reverter uma pull request](/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request)" | -| <pre>releases delete button</pre> | Exclusão de uma versão | "[Gerenciar versões em um repositório](/github/administering-a-repository/managing-releases-in-a-repository#deleting-a-release)" | -| <pre>stafftools branch restore</pre> | Restauração de um branch do painel de administração do site | "[Painel de administração do site](/admin/configuration/site-admin-dashboard#repositories)" | -| <pre>tag create api</pre> | Criação de uma tag através da API | "[Banco de dados Git](/rest/reference/git#create-a-tag-object)" na documentação da API REST | -| <pre>slumlord (#<em>SHA</em>)</pre> | Commit por meio do Subversion | "[Compatibilidade para clientes de Subversion](/github/importing-your-projects-to-github/support-for-subversion-clients#making-commits-to-subversion)" | -| <pre>web branch create</pre> | Criação de um branch através da interface web | "[Criar e excluir branches dentro do seu repositório](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#creating-a-branch)" | +| Value | Action | More information | +| :- | :- | :- | +| <pre>auto-merge deployment api</pre> | Automatic merge of the base branch via a deployment created with the API | "[Create a deployment](/rest/reference/deployments#create-a-deployment)" in the REST API documentation | +| <pre>blob#save</pre> | Change to a file's contents in the web interface | "[Editing files](/repositories/working-with-files/managing-files/editing-files)" | +| <pre>branch merge api</pre> | Merge of a branch via the API | "[Merge a branch](/rest/reference/branches#merge-a-branch)" in the REST API documentation | +| <pre>branches page delete button</pre> | Deletion of a branch in the web interface | "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)" | +| <pre>git refs create api</pre> | Creation of a ref via the API | "[Git database](/rest/reference/git#create-a-reference)" in the REST API documentation | +| <pre>git refs delete api</pre> | Deletion of a ref via the API | "[Git database](/rest/reference/git#delete-a-reference)" in the REST API documentation | +| <pre>git refs update api</pre> | Update of a ref via the API | "[Git database](/rest/reference/git#update-a-reference)" in the REST API documentation | +| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Create or update file contents](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | +| <pre>merge base into head</pre> | Update of the topic branch from the base branch when the base branch requires strict status checks (via **Update branch** in a pull request, for example) | "[About protected branches](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" | +| <pre>pull request branch delete button</pre> | Deletion of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" | +| <pre>pull request branch undo button</pre> | Restoration of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" | +| <pre>pull request merge api</pre> | Merge of a pull request via the API | "[Pulls](/rest/reference/pulls#merge-a-pull-request)" in the REST API documentation | +| <pre>pull request merge button</pre> | Merge of a pull request in the web interface | "[Merging a pull request](/github/collaborating-with-issues-and-pull-requests/merging-a-pull-request#merging-a-pull-request-on-github)" | +| <pre>pull request revert button</pre> | Revert of a pull request | "[Reverting a pull request](/github/collaborating-with-issues-and-pull-requests/reverting-a-pull-request)" | +| <pre>releases delete button</pre> | Deletion of a release | "[Managing releases in a repository](/github/administering-a-repository/managing-releases-in-a-repository#deleting-a-release)" | +| <pre>stafftools branch restore</pre> | Restoration of a branch from the site admin dashboard | "[Site admin dashboard](/admin/configuration/site-admin-dashboard#repositories)" | +| <pre>tag create api</pre> | Creation of a tag via the API | "[Git database](/rest/reference/git#create-a-tag-object)" in the REST API documentation | +| <pre>slumlord (#<em>SHA</em>)</pre> | Commit via Subversion | "[Support for Subversion clients](/github/importing-your-projects-to-github/support-for-subversion-clients#making-commits-to-subversion)" | +| <pre>web branch create</pre> | Creation of a branch via the web interface | "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#creating-a-branch)" | -#### Disponível para merge de pull request +#### Available for pull request merges -As variáveis a seguir estão disponíveis no ambiente de hook pre-receive quando o push que aciona o hook é um push devido ao merge de um pull request. +The following variables are available in the pre-receive hook environment when the push that triggers the hook is a push due to the merge of a pull request. -| Variável | Descrição | Valor de exemplo | -|:-------------------------- |:------------------------------------------------------------------------ |:---------------------------- | -| <pre>$GITHUB_PULL_REQUEST_AUTHOR_LOGIN</pre> | Nome de usuário da conta que criou o pull request | octocat | -| <pre>$GITHUB_PULL_REQUEST_HEAD</pre> | O nome do branch de tópico do pull request, no formato `USERNAME:BRANCH` | <nobr>octocat:fix-bug</nobr> | -| <pre>$GITHUB_PULL_REQUEST_BASE</pre> | O nome do branch de base do pull request no formato `USERNAME:BRANCH` | octocat:main | +| Variable | Description | Example value | +| :- | :- | :- | +| <pre>$GITHUB_PULL_REQUEST_AUTHOR_LOGIN</pre> | Username of account that authored the pull request | octocat | +| <pre>$GITHUB_PULL_REQUEST_HEAD</pre> | The name of the pull request's topic branch, in the format `USERNAME:BRANCH` | <nobr>octocat:fix-bug</nobr> | +| <pre>$GITHUB_PULL_REQUEST_BASE</pre> | The name of the pull request's base branch, in the format `USERNAME:BRANCH` | octocat:main | -#### Disponível para pushes que usam autenticação SSH +#### Available for pushes using SSH authentication -| Variável | Descrição | Valor de exemplo | -|:-------------------------- |:------------------------------------------------------------------------------- |:----------------------------------------------- | -| <pre>$GITHUB_PUBLIC_KEY_FINGERPRINT</pre> | A impressão digital da chave pública para o usuário que fez push das alterações | a1:b2:c3:d4:e5:f6:g7:h8:i9:j0:k1:l2:m3:n4:o5:p6 | +| Variable | Description | Example value | +| :- | :- | :- | +| <pre>$GITHUB_PUBLIC_KEY_FINGERPRINT</pre> | The public key fingerprint for the user who pushed the changes | a1:b2:c3:d4:e5:f6:g7:h8:i9:j0:k1:l2:m3:n4:o5:p6 | -## Configurar permissões e fazer push de um hook pre-receive para o {% data variables.product.prodname_ghe_server %} +## Setting permissions and pushing a pre-receive hook to {% data variables.product.prodname_ghe_server %} -Um script de hook pre-receive está contido em um repositório em {% data variables.product.product_location %}. O administrador do site deve considerar as permissões do repositório e garantir que somente os usuários adequados tenham acesso. +A pre-receive hook script is contained in a repository on {% data variables.product.product_location %}. A site administrator must take into consideration the repository permissions and ensure that only the appropriate users have access. -Recomendamos consolidar os hooks em um único repositório. Se o repositório consolidado do hook for público, será possível usar `README.md` para explicar a execução das políticas. Além disso, é possível aceitar contribuições via pull request. No entanto, os hooks pre-receive só podem ser adicionados pelo branch padrão. Em fluxos de trabalho de teste, devem ser usados forks do repositório com a devida configuração. +We recommend consolidating hooks to a single repository. If the consolidated hook repository is public, the `README.md` can be used to explain policy enforcements. Also, contributions can be accepted via pull requests. However, pre-receive hooks can only be added from the default branch. For a testing workflow, forks of the repository with configuration should be used. -1. Para usuários de Mac, certifique-se de que os scripts tenham estas permissões de execução: +1. For Mac users, ensure the scripts have execute permissions: ```shell $ sudo chmod +x <em>SCRIPT_FILE.sh</em> ``` - Para usuários de Windows, certifique-se de que os scripts tenham estas permissões de execução: + For Windows users, ensure the scripts have execute permissions: ```shell git update-index --chmod=+x <em>SCRIPT_FILE.sh</em> ``` -2. Faça o commit e push para o repositório designado para os hooks pre-receive em {% data variables.product.product_location %}. +2. Commit and push to the designated repository for pre-receive hooks on {% data variables.product.product_location %}. ```shell $ git commit -m "<em>YOUR COMMIT MESSAGE</em>" $ git push ``` -3. [Crie o hook pre-receive](/enterprise/{{ currentVersion }}/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance/#creating-pre-receive-hooks) na instância do {% data variables.product.prodname_ghe_server %}. +3. [Create the pre-receive hook](/enterprise/{{ currentVersion }}/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance/#creating-pre-receive-hooks) on the {% data variables.product.prodname_ghe_server %} instance. -## Testar scripts pre-receive no local -Você pode testar um script do hook pre-receive localmente antes de criá-lo ou atualizá-lo em {% data variables.product.product_location %}. Uma forma de fazer isso é criar um ambiente Docker local para funcionar como repositório remoto que pode executar o hook pre-receive. +## Testing pre-receive scripts locally +You can test a pre-receive hook script locally before you create or update it on {% data variables.product.product_location %}. One method is to create a local Docker environment to act as a remote repository that can execute the pre-receive hook. {% data reusables.linux.ensure-docker %} -2. Crie um arquivo de nome `Dockerfile.dev` contendo: +2. Create a file called `Dockerfile.dev` containing: ```dockerfile FROM gliderlabs/alpine:3.3 @@ -172,7 +171,7 @@ Você pode testar um script do hook pre-receive localmente antes de criá-lo ou CMD ["/usr/sbin/sshd", "-D"] ``` -3. Crie um script pre-receive de teste chamado `always_reject.sh`. Este exemplo de script rejeitará todos os pushes, o que é importante para bloquear um repositório: +3. Create a test pre-receive script called `always_reject.sh`. This example script will reject all pushes, which is useful for locking a repository: ``` #!/usr/bin/env bash @@ -181,13 +180,13 @@ Você pode testar um script do hook pre-receive localmente antes de criá-lo ou exit 1 ``` -4. Certifique-se de que os scripts `always_reject.sh` têm permissões de execução: +4. Ensure the `always_reject.sh` scripts has execute permissions: ```shell $ chmod +x always_reject.sh ``` -5. No diretório contendo `Dockerfile.dev`, crie uma imagem: +5. From the directory containing `Dockerfile.dev`, build an image: ```shell $ docker build -f Dockerfile.dev -t pre-receive.dev . @@ -205,37 +204,37 @@ Você pode testar um script do hook pre-receive localmente antes de criá-lo ou > Generating public/private ed25519 key pair. > Your identification has been saved in /home/git/.ssh/id_ed25519. > Your public key has been saved in /home/git/.ssh/id_ed25519.pub. - ....saída truncada.... + ....truncated output.... > Initialized empty Git repository in /home/git/test.git/ > Successfully built dd8610c24f82 ``` -6. Execute um contêiner de dados que contenha uma chave SSH gerada: +6. Run a data container that contains a generated SSH key: ```shell $ docker run --name data pre-receive.dev /bin/true ``` -7. Copie o hook pre-receive de teste `always_reject.sh` no contêiner de dados: +7. Copy the test pre-receive hook `always_reject.sh` into the data container: ```shell $ docker cp always_reject.sh data:/home/git/test.git/hooks/pre-receive ``` -8. Execute um contêiner de aplicativo que execute `sshd` e o hook. Anote o ID do contêiner: +8. Run an application container that runs `sshd` and executes the hook. Take note of the container id that is returned: ```shell $ docker run -d -p 52311:22 --volumes-from data pre-receive.dev > 7f888bc700b8d23405dbcaf039e6c71d486793cad7d8ae4dd184f4a47000bc58 ``` -9. Copie a chave SSH gerada do contêiner de dados para a máquina local: +9. Copy the generated SSH key from the data container to the local machine: ```shell $ docker cp data:/home/git/.ssh/id_ed25519 . ``` -10. Modifique o remote de um repositório de teste e faça push para o repo `test.git` no contêiner Docker. Este exemplo usa o `git@github.com:octocat/Hello-World.git`, mas você pode usar o repositório da sua preferência. Este exemplo pressupõe que a sua máquina local (127.0.0.1) está vinculando a porta 52311, mas você pode usar outro endereço IP se o docker estiver sendo executado em uma máquina remota. +10. Modify the remote of a test repository and push to the `test.git` repo within the Docker container. This example uses `git@github.com:octocat/Hello-World.git` but you can use any repository you want. This example assumes your local machine (127.0.0.1) is binding port 52311, but you can use a different IP address if docker is running on a remote machine. ```shell $ git clone git@github.com:octocat/Hello-World.git @@ -243,18 +242,18 @@ Você pode testar um script do hook pre-receive localmente antes de criá-lo ou $ git remote add test git@127.0.0.1:test.git $ GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 52311 -i ../id_ed25519" git push -u test main > Warning: Permanently added '[192.168.99.100]:52311' (ECDSA) to the list of known hosts. - > Contando objetos: 7, concluído. + > Counting objects: 7, done. > Delta compression using up to 4 threads. - > Comprimindo objetos: 100% (3/3), concluído. - > Gravando objetos: 100% (7/7), 700 bytes | 0 bytes/s, concluído. + > Compressing objects: 100% (3/3), done. + > Writing objects: 100% (7/7), 700 bytes | 0 bytes/s, done. > Total 7 (delta 0), reused 7 (delta 0) > remote: error: rejecting all pushes > To git@192.168.99.100:test.git - > ! [remote rejected] master -> master (pre-receive hook declined) + > ! [remote rejected] main -> main (pre-receive hook declined) > error: failed to push some refs to 'git@192.168.99.100:test.git' ``` - Observe que o push foi rejeitado após a execução do hook pre-receive e o eco da saída do script. + Notice that the push was rejected after executing the pre-receive hook and echoing the output from the script. -## Leia mais - - "[Personalizar o Git - Um exemplo da aplicação da política do Git](https://git-scm.com/book/en/v2/Customizing-Git-An-Example-Git-Enforced-Policy)" no *site do Pro Git* +## Further reading + - "[Customizing Git - An Example Git-Enforced Policy](https://git-scm.com/book/en/v2/Customizing-Git-An-Example-Git-Enforced-Policy)" from the *Pro Git website* diff --git a/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md b/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md index 8940eee075..1a2e868839 100644 --- a/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md +++ b/translations/pt-BR/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md @@ -1,9 +1,9 @@ --- -title: Gerenciar hooks pre-receive no appliance do GitHub Enterprise Server -intro: 'Configure o uso que as pessoas farão dos hooks pre-receive em seus appliances do {% data variables.product.prodname_ghe_server %}.' +title: Managing pre-receive hooks on the GitHub Enterprise Server appliance +intro: 'Configure how people will use pre-receive hooks within their {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - /enterprise/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance/ + - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance - /enterprise/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - /admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance versions: @@ -13,51 +13,64 @@ topics: - Enterprise - Policies - Pre-receive hooks -shortTitle: Gerenciar hooks pre-receive +shortTitle: Manage pre-receive hooks --- - -## Criar hooks pre-receive +## Creating pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -4. Clique em **Add pre-receive hook** (Adicionar hooks pre-receive). ![Adicionar hook pre-receive](/assets/images/enterprise/site-admin-settings/add-pre-receive-hook.png) -5. No campo **Hook name** (Nome do hook), informe o nome do hook que você pretende criar. ![Nomear hook pre-receive](/assets/images/enterprise/site-admin-settings/hook-name.png) -6. No menu suspenso **Environment** (Ambiente), selecione o ambiente em que você pretende executar o hook. ![Ambiente de hook](/assets/images/enterprise/site-admin-settings/environment.png) -7. Em **Script**, no menu suspenso **Select hook repository** (Selecionar repositório de hook), selecione o repositório que contém o script de hook pre-receive. No menu suspenso **Select file** (Selecionar arquivo), selecione o nome do arquivo de scripts do hook pre-receive. ![Script de hook](/assets/images/enterprise/site-admin-settings/hook-script.png) -8. Selecione **Use the exit-status to accept or reject pushes** (Usar status de saída para aceitar ou rejeitar pushes) para aplicar seu script. Ao desmarcar essa opção, você pode testar o script enquanto o valor do status de saída é ignorado. Nesse modo, a saída do script ficará visível para o usuário na linha de comando, mas não na interface da web. ![Usar status de saída](/assets/images/enterprise/site-admin-settings/use-exit-status.png) -9. Selecione **Enable this pre-receive hook on all repositories by default** (Habilitar este hooks pre-receive em todos os repositórios por padrão) se quiser que o hook pre-receive seja executado em todos os repositórios. ![Habilitar hooks em todos os repositório](/assets/images/enterprise/site-admin-settings/enable-hook-all-repos.png) -10. Selecione **Administrators can enable and disable this hook** (Administradores podem habilitar e desabilitar este hook) para permitir que os integrantes da organização com permissões de administrador ou proprietário decidam se querem habilitar ou desabilitar esse hook pre-receive. ![Habilitar ou desabilitar hooks para administradores](/assets/images/enterprise/site-admin-settings/admins-enable-hook.png) +4. Click **Add pre-receive hook**. +![Add pre-receive hook](/assets/images/enterprise/site-admin-settings/add-pre-receive-hook.png) +5. In the **Hook name** field, enter the name of the hook that you want to create. +![Name pre-receive hook](/assets/images/enterprise/site-admin-settings/hook-name.png) +6. From the **Environment** drop-down menu, select the environment on which you want the hook to run. +![Hook environment](/assets/images/enterprise/site-admin-settings/environment.png) +7. Under **Script**, from the **Select hook repository** drop-down menu, select the repository that contains your pre-receive hook script. From the **Select file** drop-down menu, select the filename of the pre-receive hook script. +![Hook script](/assets/images/enterprise/site-admin-settings/hook-script.png) +8. Select **Use the exit-status to accept or reject pushes** to enforce your script. Unselecting this option allows you to test the script while the exit-status value is ignored. In this mode, the output of the script will be visible to the user in the command-line but not on the web interface. +![Use exit-status](/assets/images/enterprise/site-admin-settings/use-exit-status.png) +9. Select **Enable this pre-receive hook on all repositories by default** if you want the pre-receive hook to run on all repositories. +![Enable hook all repositories](/assets/images/enterprise/site-admin-settings/enable-hook-all-repos.png) +10. Select **Administrators can enable and disable this hook** to allow organization members with admin or owner permissions to select whether they wish to enable or disable this pre-receive hook. +![Admins enable or disable hook](/assets/images/enterprise/site-admin-settings/admins-enable-hook.png) -## Editar hooks pre-receive +## Editing pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -1. Ao lado do hook pre-receive que deseja editar, clique em {% octicon "pencil" aria-label="The edit icon" %}.![Editar hooks pre-receive](/assets/images/enterprise/site-admin-settings/edit-pre-receive-hook.png) +1. Next to the pre-receive hook that you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. +![Edit pre-receive](/assets/images/enterprise/site-admin-settings/edit-pre-receive-hook.png) -## Excluir hooks pre-receive +## Deleting pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -2. Ao lado do hook pre-receive que deseja excluir, clique em {% octicon "x" aria-label="X symbol" %}.![Editar hooks pre-receive](/assets/images/enterprise/site-admin-settings/delete-pre-receive-hook.png) +2. Next to the pre-receive hook that you want to delete, click {% octicon "x" aria-label="X symbol" %}. +![Edit pre-receive](/assets/images/enterprise/site-admin-settings/delete-pre-receive-hook.png) -## Configurar hooks pre-receive para uma organização +## Configure pre-receive hooks for an organization -O administrador da organização só pode configurar permissões de hook para a organização se o administrador do site tiver selecionado a opção **Administrators can enable or disable this hook** (Administradores podem habilitar e desabilitar este hook) ao criar o hook pre-receive. Para configurar hooks pre-receive em um repositório, você deve ser administrador ou proprietário da organização. +An organization administrator can only configure hook permissions for an organization if the site administrator selected the **Administrators can enable or disable this hook** option when they created the pre-receive hook. To configure pre-receive hooks for a repository, you must be an organization administrator or owner. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -4. Na barra lateral esquerda, clique em **Hooks**. ![Barra lateral de hooks](/assets/images/enterprise/orgs-and-teams/hooks-sidebar.png) -5. Ao lado do hook pre-receive que você pretende configurar, clique no menu suspenso **Hook permissions** (Permissões de hook). Selecione se deseja habilitar ou desabilitar o hook pre-receive, ou permitir que ele seja configurado pelos administradores do repositório. ![Permissões de hook](/assets/images/enterprise/orgs-and-teams/hook-permissions.png) +4. In the left sidebar, click **Hooks**. +![Hooks sidebar](/assets/images/enterprise/orgs-and-teams/hooks-sidebar.png) +5. Next to the pre-receive hook that you want to configure, click the **Hook permissions** drop-down menu. Select whether to enable or disable the pre-receive hook, or allow it to be configured by the repository administrators. +![Hook permissions](/assets/images/enterprise/orgs-and-teams/hook-permissions.png) -## Configurar hooks pre-receive para um repositório +## Configure pre-receive hooks for a repository -O proprietário do repositório só pode configurar um hook se o administrador do site tiver selecionado a opção **Administrators can enable or disable this hook** (Administradores podem habilitar e desabilitar este hook) ao criar o hook pre-receive. Em uma organização, o proprietário da organização também deve ter selecionado a permissão de hook **Configurable** (Configurável). Para configurar hooks pre-receive em um repositório, você deve ser proprietário do repositório. +A repository owner can only configure a hook if the site administrator selected the **Administrators can enable or disable this hook** option when they created the pre-receive hook. In an organization, the organization owner must also have selected the **Configurable** hook permission. To configure pre-receive hooks for a repository, you must be a repository owner. {% data reusables.profile.enterprise_access_profile %} -2. Clique em **Repositories** (Repositórios) e selecione em qual repsitório você deseja configurar hooks pre-receive. ![Repositórios](/assets/images/enterprise/repos/repositories.png) +2. Click **Repositories** and select which repository you want to configure pre-receive hooks for. +![Repositories](/assets/images/enterprise/repos/repositories.png) {% data reusables.repositories.sidebar-settings %} -4. Na barra lateral esquerda, clique em **Hooks & Services** (Hooks e serviços). ![Hooks e serviços](/assets/images/enterprise/repos/hooks-services.png) -5. Ao lado do hook pre-receive que você pretende configurar, clique no menu suspenso **Hook permissions** (Permissões de hook). Defina se você vai habilitar ou desabilitar os hooks pre-receive. ![Permissões do hook repositório](/assets/images/enterprise/repos/repo-hook-permissions.png) +4. In the left sidebar, click **Hooks & Services**. +![Hooks and services](/assets/images/enterprise/repos/hooks-services.png) +5. Next to the pre-receive hook that you want to configure, click the **Hook permissions** drop-down menu. Select whether to enable or disable the pre-receive hook. +![Repository hook permissions](/assets/images/enterprise/repos/repo-hook-permissions.png) diff --git a/translations/pt-BR/content/admin/user-management/index.md b/translations/pt-BR/content/admin/user-management/index.md index 04b54b29a9..5e5f8682b2 100644 --- a/translations/pt-BR/content/admin/user-management/index.md +++ b/translations/pt-BR/content/admin/user-management/index.md @@ -1,9 +1,9 @@ --- -title: 'Gerenciar usuários, organizações e repositórios' -shortTitle: 'Gerenciar usuários, organizações e repositórios' -intro: 'Este guia descreve os métodos de autenticação para usuários que fazem login na sua empresa, além de mostrar como criar organizações e equipes para acesso e colaboração nos repositórios, bem como sugerir práticas recomendadas para a segurança do usuário.' +title: 'Managing users, organizations, and repositories' +shortTitle: 'Managing users, organizations, and repositories' +intro: 'This guide describes authentication methods for users signing in to your enterprise, how to create organizations and teams for repository access and collaboration, and suggested best practices for user security.' redirect_from: - - /enterprise/admin/categories/user-management/ + - /enterprise/admin/categories/user-management - /enterprise/admin/developer-workflow/using-webhooks-for-continuous-integration - /enterprise/admin/migrations - /enterprise/admin/clustering diff --git a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md index 2a11a6f413..f02cedf911 100644 --- a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md +++ b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md @@ -1,12 +1,12 @@ --- -title: Adicionar pessoas a equipes +title: Adding people to teams redirect_from: - - /enterprise/admin/articles/adding-teams/ - - /enterprise/admin/articles/adding-or-inviting-people-to-teams/ - - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams/ + - /enterprise/admin/articles/adding-teams + - /enterprise/admin/articles/adding-or-inviting-people-to-teams + - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams - /enterprise/admin/user-management/adding-people-to-teams - /admin/user-management/adding-people-to-teams -intro: 'Após a criação de uma equipe, os administradores da organização podem adicionar usuários da {% data variables.product.product_location %} e determinar quais repositórios eles poderão acessar.' +intro: 'Once a team has been created, organization admins can add users from {% data variables.product.product_location %} to the team and determine which repositories they have access to.' versions: ghes: '*' type: how_to @@ -16,13 +16,12 @@ topics: - Teams - User account --- +Each team has its own individually defined [access permissions for repositories owned by your organization](/articles/permission-levels-for-an-organization). -Cada equipe tem suas próprias [ permissões de acesso definidas individualmente para os repositórios pertencentes à organização](/articles/permission-levels-for-an-organization). +- Members with the owner role can add or remove existing organization members from all teams. +- Members of teams that give admin permissions can only modify team membership and repositories for that team. -- Integrantes com função de Proprietário podem adicionar ou remover os integrantes atuais de todas as equipes da organização. -- Integrantes de equipes que concedem permissões de administrador só podem modificar a participação e as permissões de repositórios de sua própria equipe. - -## Configurar uma equipe +## Setting up a team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -30,8 +29,8 @@ Cada equipe tem suas próprias [ permissões de acesso definidas individualmente {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} -## Mapear equipes para grupos LDAP (em instâncias com sincronização LDAP para autenticação de usuários) +## Mapping teams to LDAP groups (for instances using LDAP Sync for user authentication) {% data reusables.enterprise_management_console.badge_indicator %} -Para adicionar um novo integrante a uma equipe sincronizada com um grupo LDAP, adicione o usuário como integrante do grupo LDAP ou entre em contato com o administrador do LDAP. +To add a new member to a team synced to an LDAP group, add the user as a member of the LDAP group, or contact your LDAP administrator. diff --git a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/index.md b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/index.md index 11ee5f9dd3..9df1581688 100644 --- a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/index.md +++ b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/index.md @@ -1,8 +1,8 @@ --- title: Managing organizations in your enterprise redirect_from: - - /enterprise/admin/articles/adding-users-and-teams/ - - /enterprise/admin/categories/admin-bootcamp/ + - /enterprise/admin/articles/adding-users-and-teams + - /enterprise/admin/categories/admin-bootcamp - /enterprise/admin/user-management/organizations-and-teams - /enterprise/admin/user-management/managing-organizations-in-your-enterprise - /articles/managing-organizations-in-your-enterprise-account diff --git a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md index 326579e0a6..10a117009a 100644 --- a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md +++ b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md @@ -1,9 +1,9 @@ --- -title: Gerenciar projetos usando o Jira -intro: 'Você pode integrar o Jira com {% data variables.product.prodname_enterprise %} para o gerenciamento de projeto.' +title: Managing projects using Jira +intro: 'You can integrate Jira with {% data variables.product.prodname_enterprise %} for project management.' redirect_from: - - /enterprise/admin/guides/installation/project-management-using-jira/ - - /enterprise/admin/articles/project-management-using-jira/ + - /enterprise/admin/guides/installation/project-management-using-jira + - /enterprise/admin/articles/project-management-using-jira - /enterprise/admin/developer-workflow/managing-projects-using-jira - /enterprise/admin/developer-workflow/customizing-your-instance-with-integrations - /enterprise/admin/user-management/managing-projects-using-jira @@ -14,57 +14,56 @@ type: how_to topics: - Enterprise - Project management -shortTitle: Gerenciamento de projetos com Jira +shortTitle: Project management with Jira --- +## Connecting Jira to a {% data variables.product.prodname_enterprise %} organization -## Conectar o Jira a uma organização de {% data variables.product.prodname_enterprise %} +1. Sign into your {% data variables.product.prodname_enterprise %} account at http[s]://[hostname]/login. If already signed in, click on the {% data variables.product.prodname_dotcom %} logo in the top left corner. +2. Click on your profile icon under the {% data variables.product.prodname_dotcom %} logo and select the organization you would like to connect with Jira. -1. Entre na sua conta do {% data variables.product.prodname_enterprise %} em http[s]://[hostname]/login. Se já conectado, clique no logotipo de {% data variables.product.prodname_dotcom %} no canto superior esquerdo. -2. Clique no seu ícone de perfil abaixo do logotipo de {% data variables.product.prodname_dotcom %} e selecione a organização que você deseja que se conecte com o Jira. + ![Select an organization](/assets/images/enterprise/orgs-and-teams/profile-select-organization.png) - ![Selecione uma organização](/assets/images/enterprise/orgs-and-teams/profile-select-organization.png) +3. Click on the **Edit _organization name_ settings** link. -3. Clique no link de configuração **Editar _nome da organização_ **. + ![Edit organization settings](/assets/images/enterprise/orgs-and-teams/edit-organization-settings.png) - ![Editar configurações da organização](/assets/images/enterprise/orgs-and-teams/edit-organization-settings.png) +4. In the left sidebar, under **Developer settings**, click **OAuth Apps**. -4. Na barra lateral esquerda, em **Configurações do desenvolvedor**, clique em **Aplicativos OAuth**. + ![Select OAuth Apps](/assets/images/enterprise/orgs-and-teams/organization-dev-settings-oauth-apps.png) - ![Selecionar aplicativos OAuth](/assets/images/enterprise/orgs-and-teams/organization-dev-settings-oauth-apps.png) +5. Click on the **Register new application** button. -5. Clique no botão **Registrar novo aplicativo**. + ![Register new application button](/assets/images/enterprise/orgs-and-teams/register-oauth-application-button.png) - ![Botão para cadastrar novo aplicativo](/assets/images/enterprise/orgs-and-teams/register-oauth-application-button.png) +6. Fill in the application settings: + - In the **Application name** field, type "Jira" or any name you would like to use to identify the Jira instance. + - In the **Homepage URL** field, type the full URL of your Jira instance. + - In the **Authorization callback URL** field, type the full URL of your Jira instance. +7. Click **Register application**. +8. At the top of the page, note the **Client ID** and **Client Secret**. You will need these for configuring your Jira instance. -6. Defina as configurações do aplicativo: - - No campo **do nome do aplicativo**, digite "Jira" ou qualquer nome que você gostaria de usar para identificar a instância do Jira. - - No campo **Homepage URL**, digite a URL completa da sua instância do Jira. - - No campo **URL de retorno de chamada de autorização**, digite a URL completa de sua instância do Jira. -7. Clique em **Register application** (Registrar aplicativo). -8. Na parte superior da página, anote os dados dos campos **Client ID** (ID do cliente) e **Client Secret** (Segredo do cliente). Você precisará dessas informações para configurar sua instância do Jira. +## Jira instance configuration -## Configuração da instância do Jira +1. On your Jira instance, log into an account with administrative access. +2. At the top of the page, click the settings (gear) icon and choose **Applications**. -1. Na instância do Jira, faça login em uma conta com acesso administrativo. -2. Na parte superior da página, clique no ícone de configurações (engrenagem) e selecione **Aplicativos**. + ![Select Applications on Jira settings](/assets/images/enterprise/orgs-and-teams/jira/jira-applications.png) - ![Selecionar aplicativos nas configurações do Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-applications.png) +3. In the left sidebar, under **Integrations**, click **DVCS accounts**. -3. Na barra lateral esquerda, em **Integrações**, clique em **contas DVCS**. + ![Jira Integrations menu - DVCS accounts](/assets/images/enterprise/orgs-and-teams/jira/jira-integrations-dvcs.png) - ![Menu de Integrações do Jira - Contas DVCS](/assets/images/enterprise/orgs-and-teams/jira/jira-integrations-dvcs.png) +4. Click **Link Bitbucket Cloud or {% data variables.product.prodname_dotcom %} account**. -4. Clique **Link Bitbucket Cloud ou conta de {% data variables.product.prodname_dotcom %}**. + ![Link GitHub account to Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-link-github-account.png) - ![Vincular conta do GitHub ao Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-link-github-account.png) - -5. No modal **Add New Account** (Adicionar nova conta), defina as configurações do {% data variables.product.prodname_enterprise %}: - - No menu suspenso **Host**, selecione **{% data variables.product.prodname_enterprise %}**. - - No campo **Team or User Account** (Conta de equipe ou usuário), digite o nome da sua organização ou conta pessoal do {% data variables.product.prodname_enterprise %}. - - No campo **OAuth Key** (Chave OAuth), informe o Client ID (ID do cliente) do seu aplicativo de desenvolvedor do {% data variables.product.prodname_enterprise %}. - - No campo **OAuth Secret** (Segredo OAuth), informe o Client Secret (Segredo do cliente) do seu aplicativo de desenvolvedor do {% data variables.product.prodname_enterprise %}. - - Se você não desejar vincular novos repositórios que pertencem à sua organização de {% data variables.product.prodname_enterprise %} ou conta pessoal, desmarque a opção **Vincular novos repositórios automaticamente**. - - Se você não quiser ativar commits inteligentes, desmarque **Habilitar commits inteligentes**. - - Clique em **Salvar**. -6. Revise as permissões que você vai conceder à sua conta do {% data variables.product.prodname_enterprise %} e clique em **Authorize application** (Autorizar aplicativo). -7. Se necessário, digite a senha para continuar. +5. In the **Add New Account** modal, fill in your {% data variables.product.prodname_enterprise %} settings: + - From the **Host** dropdown menu, choose **{% data variables.product.prodname_enterprise %}**. + - In the **Team or User Account** field, type the name of your {% data variables.product.prodname_enterprise %} organization or personal account. + - In the **OAuth Key** field, type the Client ID of your {% data variables.product.prodname_enterprise %} developer application. + - In the **OAuth Secret** field, type the Client Secret for your {% data variables.product.prodname_enterprise %} developer application. + - If you don't want to link new repositories owned by your {% data variables.product.prodname_enterprise %} organization or personal account, deselect **Auto Link New Repositories**. + - If you don't want to enable smart commits, deselect **Enable Smart Commits**. + - Click **Add**. +6. Review the permissions you are granting to your {% data variables.product.prodname_enterprise %} account and click **Authorize application**. +7. If necessary, type your password to continue. diff --git a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md index 3fa128279e..41cbf9b46b 100644 --- a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md +++ b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md @@ -1,11 +1,11 @@ --- -title: Impedir os usuários de criarem organizações +title: Preventing users from creating organizations redirect_from: - - /enterprise/admin/articles/preventing-users-from-creating-organizations/ - - /enterprise/admin/hidden/preventing-users-from-creating-organizations/ + - /enterprise/admin/articles/preventing-users-from-creating-organizations + - /enterprise/admin/hidden/preventing-users-from-creating-organizations - /enterprise/admin/user-management/preventing-users-from-creating-organizations - /admin/user-management/preventing-users-from-creating-organizations -intro: Você pode impedir que usuários criem organizações na sua empresa. +intro: You can prevent users from creating organizations in your enterprise. versions: ghes: '*' ghae: '*' @@ -14,9 +14,8 @@ topics: - Enterprise - Organizations - Policies -shortTitle: Evitar a criação de organização +shortTitle: Prevent organization creation --- - {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} {% data reusables.enterprise-accounts.policies-tab %} @@ -24,4 +23,5 @@ shortTitle: Evitar a criação de organização {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -4. No menu suspenso em "Users can create organizations" (Usuários podem criar organizações), clique em **Enabled** (Habilitado) ou **Disabled** (Desabilitado). ![Menu suspenso Users can create organizations (Usuários podem criar organizações)](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) +4. Under "Users can create organizations", use the drop-down menu and click **Enabled** or **Disabled**. +![Users can create organizations drop-down](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) diff --git a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md index 373f4381fc..8ee2d906ec 100644 --- a/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: Enterprise owners can view aggregated actions from all of the organizatio product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account/ + - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account - /articles/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise-account diff --git a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md index ff100011d4..96c09af594 100644 --- a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md @@ -2,15 +2,15 @@ title: Configuring Git Large File Storage for your enterprise intro: '{% data reusables.enterprise_site_admin_settings.configuring-large-file-storage-short-description %}' redirect_from: - - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise/ + - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise - /enterprise/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server - /enterprise/admin/installation/configuring-git-large-file-storage - /enterprise/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server - /enterprise/admin/installation/migrating-to-a-different-git-large-file-storage-server - - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance/ - - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server/ + - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository + - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization + - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance + - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server - /enterprise/admin/user-management/configuring-git-large-file-storage-for-your-enterprise - /admin/user-management/configuring-git-large-file-storage-for-your-enterprise versions: diff --git a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md index 5d09062a31..e02538d16a 100644 --- a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md @@ -1,20 +1,20 @@ --- -title: Desabilitar o acesso ao SSH do Git na sua empresa +title: Disabling Git SSH access on your enterprise redirect_from: - - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/articles/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/articles/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise/ + - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account + - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account + - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance + - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance + - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization + - /enterprise/admin/articles/disabling-ssh-access-for-an-organization + - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository + - /enterprise/admin/articles/disabling-ssh-access-to-a-repository + - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise - /enterprise/admin/installation/disabling-git-ssh-access-on-github-enterprise-server - /enterprise/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-your-enterprise -intro: Você pode impedir que as pessoas usem o Git através do SSH para certos ou todos os repositórios da sua empresa. +intro: You can prevent people from using Git over SSH for certain or all repositories on your enterprise. versions: ghes: '*' ghae: '*' @@ -24,10 +24,9 @@ topics: - Policies - Security - SSH -shortTitle: Desabilitar SSH para Git +shortTitle: Disable SSH for Git --- - -## Desabilitar o acesso por SSH do Git a repositórios específicos +## Disabling Git SSH access to a specific repository {% data reusables.enterprise_site_admin_settings.override-policy %} @@ -37,9 +36,10 @@ shortTitle: Desabilitar SSH para Git {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -1. Em "Git SSH access" (Acesso por SSH do Git), use o menu suspenso e clique em **Disabled** (Desabilitado). ![Menu suspenso de acesso por SSH do Git com a opção Desabilitado](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) +1. Under "Git SSH access", use the drop-down menu, and click **Disabled**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) -## Desabilitar o acesso por SSH do Git a todos os repositórios pertencentes a um usuário ou organização +## Disabling Git SSH access to all repositories owned by a user or organization {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user-or-org %} @@ -47,9 +47,10 @@ shortTitle: Desabilitar SSH para Git {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -7. Em "Git SSH access" (Acesso por SSH do Git), use o menu suspenso e clique em **Disabled** (Desabilitado). Em seguida, selecione **Enforce on all repositories** (Aplicar a todos os repositórios). ![Menu suspenso de acesso por SSH do Git com a opção Desabilitado](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) -## Desabilitar acesso SSH do Git para todos os repositórios da sua empresa +## Disabling Git SSH access to all repositories in your enterprise {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} @@ -58,4 +59,5 @@ shortTitle: Desabilitar SSH para Git {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -7. Em "Git SSH access" (Acesso por SSH do Git), use o menu suspenso e clique em **Disabled** (Desabilitado). Em seguida, selecione **Enforce on all repositories** (Aplicar a todos os repositórios). ![Menu suspenso de acesso por SSH do Git com a opção Desabilitado](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) diff --git a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md index 3e58fe206f..90b442a4b8 100644 --- a/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md +++ b/translations/pt-BR/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md @@ -1,8 +1,8 @@ --- -title: Solução de problemas com hooks de serviço -intro: 'Se as cargas não estiverem sendo entregues, verifique se há problemas comuns.' +title: Troubleshooting service hooks +intro: 'If payloads aren''t being delivered, check for these common problems.' redirect_from: - - /enterprise/admin/articles/troubleshooting-service-hooks/ + - /enterprise/admin/articles/troubleshooting-service-hooks - /enterprise/admin/developer-workflow/troubleshooting-service-hooks - /enterprise/admin/user-management/troubleshooting-service-hooks - /admin/user-management/troubleshooting-service-hooks @@ -11,33 +11,38 @@ versions: ghae: '*' topics: - Enterprise -shortTitle: Solução de problemas de hooks de serviço +shortTitle: Troubleshoot service hooks --- +## Getting information on deliveries -## Obter informações nas entregas - -Você pode encontrar informações sobre a resposta mais recente de todas as entregas de hooks de serviço em qualquer repositório. +You can find information for the last response of all service hooks deliveries on any repository. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. Navegue até o repositório que você está investigando. -3. Clique no link **Hooks** na barra de navegação lateral. ![Barra lateral de hooks](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. Clique no link **Latest Delivery** (Entrega mais recente) no hook de serviço que apresentou problemas. ![Detalhes de hooks](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) -5. Em **Remote Calls** (Chamadas remotas), você verá os cabeçalhos usados durante o POST para o servidor remoto e a resposta que o servidor remoto enviou de volta à instalação. +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. + ![Hook Details](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) +5. Under **Remote Calls**, you'll see the headers that were used when POSTing to the remote server along with the response that the remote server sent back to your installation. -## Exibir a carga +## Viewing the payload {% data reusables.enterprise_site_admin_settings.access-settings %} -2. Navegue até o repositório que você está investigando. -3. Clique no link **Hooks** na barra de navegação lateral. ![Barra lateral de hooks](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. Clique no link **Latest Delivery** (Entrega mais recente) no hook de serviço que apresentou problemas. -5. Clique em **Entrega**. ![Exibir a carga](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. Click **Delivery**. + ![Viewing the payload](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) -## Exibir entregas anteriores +## Viewing past deliveries -As entregas ficam armazenadas por 15 dias. +Deliveries are stored for 15 days. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. Navegue até o repositório que você está investigando. -3. Clique no link **Hooks** na barra de navegação lateral. ![Barra lateral de hooks](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. Clique no link **Latest Delivery** (Entrega mais recente) no hook de serviço que apresentou problemas. -5. Para exibir outras entregas de um hook específico, clique em **More for this Hook ID** (Mais informações sobre este ID de hook): ![Exibir mais entregas](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. To view other deliveries to that specific hook, click **More for this Hook ID**: + ![Viewing more deliveries](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md index 437c124738..b7fb055a49 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md @@ -1,8 +1,8 @@ --- -title: Auditar chaves SSH -intro: Os administradores do site podem iniciar uma auditoria em toda a instância das chaves SSH. +title: Auditing SSH keys +intro: Site administrators can initiate an instance-wide audit of SSH keys. redirect_from: - - /enterprise/admin/articles/auditing-ssh-keys/ + - /enterprise/admin/articles/auditing-ssh-keys - /enterprise/admin/user-management/auditing-ssh-keys - /admin/user-management/auditing-ssh-keys versions: @@ -15,52 +15,51 @@ topics: - Security - SSH --- +Once initiated, the audit disables all existing SSH keys and forces users to approve or reject them before they're able to clone, pull, or push to any repositories. An audit is useful in situations where an employee or contractor leaves the company and you need to ensure that all keys are verified. -Depois de iniciada, a auditoria desabilita todas as chaves SSH e força os usuários a aprová-las ou rejeitá-las antes que eles possam clonar, fazer pull ou fazer push para qualquer repositório. Auditorias são úteis nos casos em que um funcionário ou contratado sai da empresa e você deve garantir a verificação de todas as chaves. +## Initiating an audit -## Iniciar uma auditoria +You can initiate an SSH key audit from the "All users" tab of the site admin dashboard: -Você pode iniciar uma auditoria de chave SSH na guia "All users" (Todos os usuários) do painel de administração do site: +![Starting a public key audit](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) -![Iniciar auditoria de chave pública](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) +After you click the "Start public key audit" button, you'll be taken to a confirmation screen explaining what will happen next: -Depois de clicar no botão "Start public key audit" (Iniciar auditoria de chave pública), você será redirecionado para uma tela de confirmação explicando as próximas etapas: +![Confirming the audit](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) -![Confirmar a auditoria](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) +After you click the "Begin audit" button, all SSH keys are invalidated and will require approval. You'll see a notification indicating the audit has begun. -Depois de clicar no botão "Begin audit" (Iniciar auditoria), todas as chaves SSH serão invalidadas e exigirão aprovação. Você verá uma notificação indicando o início da auditoria. +## What users see -## O que os usuários veem - -Se o usuário tentar fazer qualquer operação no Git por SSH, a operação vai falhar e a seguinte mensagem será exibida: +If a user attempts to perform any git operation over SSH, it will fail and provide them with the following message: ```shell -ERROR: Olá, <em>username</em>. Estamos fazendo uma auditoria de chave SSH. -Acesse http(s)://<em>hostname</em>/settings/ssh/audit/2 -para aprovar esta chave e validar a segurança. +ERROR: Hi <em>username</em>. We're doing an SSH key audit. +Please visit http(s)://<em>hostname</em>/settings/ssh/audit/2 +to approve this key so we know it's safe. Fingerprint: ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 -fatal: remote desativado inesperadamente +fatal: The remote end hung up unexpectedly ``` -Quando clicar no link, o usuário deverá aprovar as chaves da própria conta: +When they follow the link, they're asked to approve the keys on their account: -![Auditar chaves](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) +![Auditing keys](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) -Depois de aprovar ou rejeitar as chaves, o usuário poderá interagir normalmente com os repositórios. +After they approve or reject their keys, they'll be able interact with repositories as usual. -## Adicionar chave SSH +## Adding an SSH key -Os novos usuários deverão informar a senha ao adicionar uma chave SSH: +New users will be prompted for their password when adding an SSH key: -![Confirmação de senha](/assets/images/help/settings/sudo_mode_popup.png) +![Password confirmation](/assets/images/help/settings/sudo_mode_popup.png) -Quando adicionar a chave, o usuário receberá um e-mail de notificação como este: +When a user adds a key, they'll receive a notification email that will look something like this: + + The following SSH key was added to your account: - A chave SSH abaixo foi adicionada à sua conta: - [title] ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 - - Se achar que a chave foi adicionada por engano, você poderá removê-la e desabilitar o acesso por este caminho: - + + If you believe this key was added in error, you can remove the key and disable access at the following location: + http(s)://HOSTNAME/settings/ssh diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md index 4ba9e7af8d..b73c09ee99 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md @@ -1,8 +1,8 @@ --- -title: Auditar de usuários em toda a sua empresa -intro: 'O painel do log de auditoria mostra aos administradores do site as ações realizadas por todos os usuários e organizações de toda a sua empresa dentro do mês atual e dos seis meses anteriores. O log de auditoria inclui detalhes como quem realizou a ação, qual foi a ação e quando a ação foi realizada.' +title: Auditing users across your enterprise +intro: 'The audit log dashboard shows site administrators the actions performed by all users and organizations across your enterprise within the current month and previous six months. The audit log includes details such as who performed the action, what the action was, and when the action was performed.' redirect_from: - - /enterprise/admin/guides/user-management/auditing-users-across-an-organization/ + - /enterprise/admin/guides/user-management/auditing-users-across-an-organization - /enterprise/admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-enterprise @@ -16,105 +16,104 @@ topics: - Organizations - Security - User account -shortTitle: Auditoria de usuários +shortTitle: Audit users --- +## Accessing the audit log -## Acessar o log de auditoria +The audit log dashboard gives you a visual display of audit data across your enterprise. -O painel de log de auditoria oferece uma exibição visual de dados de auditoria na sua empresa. - -![Painel de log de auditoria da instância](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) +![Instance wide audit log dashboard](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -No mapa, você pode aplicar zoom e visão panorâmica para ver os eventos do mundo todo. Posicione o mouse sobre um país para ver a contagem de eventos ocorridos nele. +Within the map, you can pan and zoom to see events around the world. Hover over a country to see a quick count of events from that country. -## Pesquisar eventos na sua empresa +## Searching for events across your enterprise -O log de auditoria lista as seguintes informações sobre as ações feitas na sua empresa: +The audit log lists the following information about actions made within your enterprise: -* [O repositório](#search-based-on-the-repository) em que a ação ocorreu; -* [O usuário](#search-based-on-the-user) que fez a ação; -* [A organização](#search-based-on-the-organization) a que a ação pertence; -* [O tipo de ação](#search-based-on-the-action-performed) ocorrida; -* [O país](#search-based-on-the-location) em que a ação ocorreu; -* [A data e a hora](#search-based-on-the-time-of-action) em que a ação ocorreu. +* [The repository](#search-based-on-the-repository) an action was performed in +* [The user](#search-based-on-the-user) who performed the action +* [Which organization](#search-based-on-the-organization) an action pertained to +* [The action](#search-based-on-the-action-performed) that was performed +* [Which country](#search-based-on-the-location) the action took place in +* [The date and time](#search-based-on-the-time-of-action) the action occurred {% warning %} -**Notas:** +**Notes:** -- Embora não seja possível usar texto para pesquisar entradas de auditoria, você pode criar consultas de pesquisa usando filtros diversificados. {% data variables.product.product_name %} é compatível com muitos operadores para fazer pesquisa em {% data variables.product.product_name %}. Para obter mais informações, consulte "[Sobre a pesquisa no {% data variables.product.prodname_dotcom %}](/github/searching-for-information-on-github/about-searching-on-github)". -- Os registros de auditoria estão disponíveis para o mês atual e todos os dias dos seis meses anteriores. +- While you can't use text to search for audit entries, you can construct search queries using a variety of filters. {% data variables.product.product_name %} supports many operators for searching across {% data variables.product.product_name %}. For more information, see "[About searching on {% data variables.product.prodname_dotcom %}](/github/searching-for-information-on-github/about-searching-on-github)." +- Audit records are available for the current month and every day of the previous six months. {% endwarning %} -### Pesquisar com base no repositório +### Search based on the repository -O qualificador `repo` limita as ações a um repositório específico pertencente à sua organização. Por exemplo: +The `repo` qualifier limits actions to a specific repository owned by your organization. For example: -* `repo:my-org/our-repo` localiza todos os eventos que ocorreram no repositório `our-repo` na organização `my-org`. -* `repo:my-org/our-repo repo:my-org/another-repo` localiza todos os eventos que ocorreram para ambos repositórios `our-repo` e `another-repo` na organização `my-org`. -* `-repo:my-org/not-this-repo` exclui todos os eventos que ocorreram no repositório `not-this-repo` na organização `my-org`. +* `repo:my-org/our-repo` finds all events that occurred for the `our-repo` repository in the `my-org` organization. +* `repo:my-org/our-repo repo:my-org/another-repo` finds all events that occurred for both the `our-repo` and `another-repo` repositories in the `my-org` organization. +* `-repo:my-org/not-this-repo` excludes all events that occurred for the `not-this-repo` repository in the `my-org` organization. -Você deve incluir o nome da sua organização no qualificador `repo`; pesquisar somente `repo:our-repo` não funcionará. +You must include your organization's name within the `repo` qualifier; searching for just `repo:our-repo` will not work. -### Pesquisar com base no usuário +### Search based on the user -O qualificador `actor` incluir eventos com base no integrante da organização que fez a ação. Por exemplo: +The `actor` qualifier scopes events based on the member of your organization that performed the action. For example: -* `actor:octocat` localiza todos os eventos feitos por `octocat`. -* `actor:octocat actor:hubot` localiza todos os eventos realizados por ambos `octocat` e `hubot`. -* `-actor:hubot` exclui todos os eventos realizados por `hubot`. +* `actor:octocat` finds all events performed by `octocat`. +* `actor:octocat actor:hubot` finds all events performed by both `octocat` and `hubot`. +* `-actor:hubot` excludes all events performed by `hubot`. -Só é possível usar o nome de usuário do {% data variables.product.product_name %}, e não o nome verdadeiro da pessoa. +You can only use a {% data variables.product.product_name %} username, not an individual's real name. -### Pesquisar com base na organização +### Search based on the organization -O qualificador `org` limita as ações a uma organização específica. Por exemplo: +The `org` qualifier limits actions to a specific organization. For example: -* `org:my-org` encontrou todos os eventos que ocorreram na organização `minha-org`. -* `org:my-org action:team` localiza todos os eventos de equipe que ocorreram na organização `my-org`; -* `-org:my-org` exclui todos os eventos que ocorreram na organização `minha-org`. +* `org:my-org` finds all events that occurred for the `my-org` organization. +* `org:my-org action:team` finds all team events performed within the `my-org` organization. +* `-org:my-org` excludes all events that occurred for the `my-org` organization. -### Pesquisar com base na ação +### Search based on the action performed -O qualificador `action` pesquisa eventos específicos, agrupados em categorias. Para informações sobre os eventos associados a essas categorias, consulte "[Ações auditadas](/admin/user-management/audited-actions)". +The `action` qualifier searches for specific events, grouped within categories. For information on the events associated with these categories, see "[Audited actions](/admin/user-management/audited-actions)". -| Categoria | Descrição | -| --------- | --------------------------------------------------------------------------------- | -| `hook` | Tem todas as atividades relacionadas a webhooks. | -| `org` | Tem todas as atividades relacionadas à associação na organização. | -| `repo` | Tem todas as atividades relacionadas aos repositórios pertencentes à organização. | -| `equipe` | Tem todas as atividades relacionadas às equipes na organização. | +| Category name | Description +|------------------|------------------- +| `hook` | Contains all activities related to webhooks. +| `org` | Contains all activities related organization membership +| `repo` | Contains all activities related to the repositories owned by your organization. +| `team` | Contains all activities related to teams in your organization. -Você pode pesquisar conjuntos específicos de ações usando esses termos. Por exemplo: +You can search for specific sets of actions using these terms. For example: -* `action:team` localiza todos os eventos agrupados na categoria da equipe; -* `-action:billing` exclui todos os eventos na categoria de cobrança. +* `action:team` finds all events grouped within the team category. +* `-action:billing` excludes all events in the billing category. -Cada categoria tem um conjunto de eventos associados que você pode usar no filtro. Por exemplo: +Each category has a set of associated events that you can filter on. For example: -* `action:team.create` localiza todos os eventos em que uma equipe foi criada; -* `-action:billing.change_email` exclui todos os eventos em que a categoria de cobrança foi alterada. +* `action:team.create` finds all events where a team was created. +* `-action:billing.change_email` excludes all events where the billing email was changed. -### Pesquisar com base no local +### Search based on the location -O qualificador `country` filtra as ações com base no país de origem. -- Você pode usar o código de duas letras do país ou o nome completo. -- Países com duas ou mais palavras devem ficar entre aspas. Por exemplo: - * `country:de` localiza todos os eventos ocorridos na Alemanha; - * `country:Mexico` localiza todos os eventos ocorridos no México; - * `country:"United States"` localiza todos os eventos ocorridos nos Estados Unidos. +The `country` qualifier filters actions by the originating country. +- You can use a country's two-letter short code or its full name. +- Countries with spaces in their name must be wrapped in quotation marks. For example: + * `country:de` finds all events that occurred in Germany. + * `country:Mexico` finds all events that occurred in Mexico. + * `country:"United States"` all finds events that occurred in the United States. -### Pesquisar com base na hora da ação +### Search based on the time of action -O qualificador `created` filtra as ações com base na hora em que elas ocorreram. -- Defina as datas usando o formato `YYYY-MM-DD` (ano, mês, dia). -- As datas têm qualificadores [antes de, depois de e intervalos](/enterprise/{{ currentVersion }}/user/articles/search-syntax). Por exemplo: - * `created:2014-07-08` localiza todos os eventos ocorridos em 8 de julho de 2014; - * `created:>=2014-07-01` localiza todos os eventos ocorridos depois de 8 de julho de 2014; - * `created:<=2014-07-01` localiza todos os eventos ocorridos antes de 8 de julho de 2014; - * `created:2014-07-01..2014-07-31` localiza todos os eventos ocorridos em julho de 2014. +The `created` qualifier filters actions by the time they occurred. +- Define dates using the format of `YYYY-MM-DD`--that's year, followed by month, followed by day. +- Dates support [greater than, less than, and range qualifiers](/enterprise/{{ currentVersion }}/user/articles/search-syntax). For example: + * `created:2014-07-08` finds all events that occurred on July 8th, 2014. + * `created:>=2014-07-01` finds all events that occurred on or after July 8th, 2014. + * `created:<=2014-07-01` finds all events that occurred on or before July 8th, 2014. + * `created:2014-07-01..2014-07-31` finds all events that occurred in the month of July 2014. diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md index 875b87de20..f6396f94cc 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Personalizar mensagens de usuário para sua empresa -shortTitle: Personalizar mensagens de usuário +title: Customizing user messages for your enterprise +shortTitle: Customizing user messages redirect_from: - - /enterprise/admin/user-management/creating-a-custom-sign-in-message/ + - /enterprise/admin/user-management/creating-a-custom-sign-in-message - /enterprise/admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-for-your-enterprise -intro: 'Você pode criar mensagens personalizadas que os usuários verão em {% data variables.product.product_location %}.' +intro: 'You can create custom messages that users will see on {% data variables.product.product_location %}.' versions: ghes: '*' ghae: '*' @@ -15,98 +15,108 @@ topics: - Enterprise - Maintenance --- +## About user messages -## Sobre mensagens de usuário - -Existem vários tipos de mensagens de usuário. -- Mensagens que aparecem na página {% ifversion ghes %}página de ingresso ou {% endif %}saída{% ifversion ghes or ghae %} -- Mensagens obrigatórias, que aparecem uma vez em uma janela pop-up que deve ser ignorada{% endif %}{% ifversion ghes or ghae %} -- Banners de anúncios, que aparecem na parte superior de cada página{% endif %} +There are several types of user messages. +- Messages that appear on the {% ifversion ghes %}sign in or {% endif %}sign out page{% ifversion ghes or ghae %} +- Mandatory messages, which appear once in a pop-up window that must be dismissed{% endif %}{% ifversion ghes or ghae %} +- Announcement banners, which appear at the top of every page{% endif %} {% ifversion ghes %} {% note %} -**Observação:** se você estiver usando SAML para fazer autenticação, a página de login será apresentada pelo seu provedor de identidade e não será possível personalizá-la pelo {% data variables.product.prodname_ghe_server %}. +**Note:** If you are using SAML for authentication, the sign in page is presented by your identity provider and is not customizable via {% data variables.product.prodname_ghe_server %}. {% endnote %} -Você pode usar markdown para formatar sua mensagem. Para obter mais informações, consulte "[Sobre gravação e formatação no {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github/)". +You can use Markdown to format your message. For more information, see "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github/)." -## Criar mensagem personalizada de login +## Creating a custom sign in message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes %}À direita de{% else %}em{% endif %} "Página de login", clique **Adicionar mensagem** ou **Editar mensagem**. ![{% ifversion ghes %}Botão de mensagem de Adicionar{% else %}Editar{% endif %}](/assets/images/enterprise/site-admin-settings/edit-message.png) -6. Em **Sign in message** (Mensagem de login), digite a mensagem que você pretende exibir para os usuários. ![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} +5. {% ifversion ghes %}To the right of{% else %}Under{% endif %} "Sign in page", click **Add message** or **Edit message**. +![{% ifversion ghes %}Add{% else %}Edit{% endif %} message button](/assets/images/enterprise/site-admin-settings/edit-message.png) +6. Under **Sign in message**, type the message you'd like users to see. +![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![Botão Preview (Visualizar)](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) -8. Revise a mensagem renderizada. ![Mensagem de login renderizada](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) +8. Review the rendered message. +![Sign in message rendered](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% endif %} -## Criar mensagem personalizada de logout +## Creating a custom sign out message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes or ghae %}À direita de{% else %}em{% endif %} "página de logout", clique em **Adicionar mensagem** ou **Editar mensagem**. ![Botão Add message (Adicionar mensagem)](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) -6. Em **Sign out message** (Mensagem de logout), digite a mensagem que você pretende exibir para os usuários. ![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} +5. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Sign out page", click **Add message** or **Edit message**. +![Add message button](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) +6. Under **Sign out message**, type the message you'd like users to see. +![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![Botão Preview (Visualizar)](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) -8. Revise a mensagem renderizada. ![Mensagem de logout renderizada](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) +8. Review the rendered message. +![Sign out message rendered](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% ifversion ghes or ghae %} -## Criar uma mensagem obrigatória +## Creating a mandatory message -Você pode criar uma mensagem obrigatória que {% data variables.product.product_name %} mostrará a todos os usuários na primeira vez que efetuarem o login depois de salvar a mensagem. A mensagem aparece em uma janela pop-up que o usuário deve ignorar antes que o usuário possa usar o {% data variables.product.product_location %}. +You can create a mandatory message that {% data variables.product.product_name %} will show to all users the first time they sign in after you save the message. The message appears in a pop-up window that the user must dismiss before the user can use {% data variables.product.product_location %}. -As mensagens obrigatórias têm uma série de usos. +Mandatory messages have a variety of uses. -- Fornecer informações de integração para novos funcionários -- Contar para os usuários como obter ajuda com {% data variables.product.product_location %} -- Garantir que todos os usuários leiam seus termos de serviço para usar {% data variables.product.product_location %} +- Providing onboarding information for new employees +- Telling users how to get help with {% data variables.product.product_location %} +- Ensuring that all users read your terms of service for using {% data variables.product.product_location %} -Se você incluir caixas de seleção de Markdown na mensagem, todas as caixas de seleção deverão ser selecionadas antes de o usuário poder ignorar a mensagem. Por exemplo, se você incluir seus termos de serviço na mensagem obrigatória, você poderá exigir que cada usuário marque uma caixa de seleção para confirmar que o usuário leu os termos. +If you include Markdown checkboxes in the message, all checkboxes must be selected before the user can dismiss the message. For example, if you include your terms of service in the mandatory message, you can require that each user selects a checkbox to confirm the user has read the terms. -Cada vez que um usuário vê uma mensagem obrigatória, um evento de log de auditoria é criado. O evento inclui a versão da mensagem que o usuário visualizou. Para obter mais informações, consulte "[Ações auditadas](/admin/user-management/audited-actions)". +Each time a user sees a mandatory message, an audit log event is created. The event includes the version of the message that the user saw. For more information see "[Audited actions](/admin/user-management/audited-actions)." {% note %} -**Observação:** Se você alterar a mensagem obrigatória para {% data variables.product.product_location %}, os usuários que já reconheceram a mensagem não visualizarão a nova mensagem. +**Note:** If you change the mandatory message for {% data variables.product.product_location %}, users who have already acknowledged the message will not see the new message. {% endnote %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. À direita da "Mensagem obrigatória", clique em **Adicionar mensagem**. ![Botão de adicionar mensagem obrigatória](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) -1. Em "Mensagem obrigatória", na caixa de texto, digite sua mensagem. ![Caixa de texto obrigatória](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) +1. To the right of "Mandatory message", click **Add message**. + ![Add mandatory message button](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) +1. Under "Mandatory message", in the text box, type your message. + ![Mandatory message text box](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} {% ifversion ghes or ghae %} -## Criar um banner de anúncio global +## Creating a global announcement banner -Você pode definir um banner de anúncio global para ser exibido para todos os usuários na parte superior de cada página. +You can set a global announcement banner to be displayed to all users at the top of every page. {% ifversion ghae or ghes %} -Você também pode definir um banner de anúncio{% ifversion ghes %} no shell administrativo usando um utilitário de linha de comando ou{% endif %} usando a API. Para obter mais informações, consulte {% ifversion ghes %}"[Utilitários de linha de comando](/enterprise/admin/configuration/command-line-utilities#ghe-announce)" e {% endif %}"[Administração de {% data variables.product.prodname_enterprise %}](/rest/reference/enterprise-admin#announcements)". +You can also set an announcement banner{% ifversion ghes %} in the administrative shell using a command line utility or{% endif %} using the API. For more information, see {% ifversion ghes %}"[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)" and {% endif %}"[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#announcements)." {% else %} -Você também pode definir um banner de anúncio no shell administrativo usando um utilitário de linha de comando. Para obter mais informações, consulte "[Utilitários de linha de comando](/enterprise/admin/configuration/command-line-utilities#ghe-announce)". +You can also set an announcement banner in the administrative shell using a command line utility. For more information, see "[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)." {% endif %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. {% ifversion ghes or ghae %}À direita de{% else %}em{% endif %} "Anúncio", clique em **Adicionar anúncio**. ![Botão Add message (Adicionar mensagem)](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) -1. Em "Anúncio", no campo de texto, digite o anúncio que deseja exibir em um banner. ![Campo de texto para digitar o anúncio](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) -1. Opcionalmente, em "Expira em", selecione o menu suspenso do calendário e clique em uma data de validade. ![Menu suspenso do calendário para escolher data de vencimento](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) +1. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Announcement", click **Add announcement**. + ![Add announcement button](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) +1. Under "Announcement", in the text field, type the announcement you want displayed in a banner. + ![Text field to enter announcement](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) +1. Optionally, under "Expires on", select the calendar drop-down menu and click an expiration date. + ![Calendar drop-down menu to choose expiration date](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/index.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/index.md index 0c5f98c3c6..4b8443a834 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/index.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: Gerenciar usuários na sua empresa -intro: Você pode controlar atividades do usuário e gerenciar configurações de usuário. +title: Managing users in your enterprise +intro: You can audit user activity and manage user settings. redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise - - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons/ + - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons - /enterprise/admin/user-management/basic-account-settings - /enterprise/admin/user-management/user-security - /enterprise/admin/user-management/managing-users-in-your-enterprise @@ -33,6 +33,5 @@ children: - /auditing-ssh-keys - /customizing-user-messages-for-your-enterprise - /rebuilding-contributions-data -shortTitle: Gerenciar usuários +shortTitle: Manage users --- - diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md index 0422222d6b..bdb7d0b4f9 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Convidar pessoas para gerenciar sua empresa -intro: 'Você pode {% ifversion ghec %}convidar pessoas para se tornarem proprietários corporativos ou gerentes de cobrança para{% elsif ghes %}adicionar proprietários corporativos à conta corporativa{% endif %}. Você também pode remover proprietários corporativos {% ifversion ghec %}ou gerentes de cobrança {% endif %}que não precisam mais de acesso à conta corporativa.' +title: Inviting people to manage your enterprise +intro: 'You can {% ifversion ghec %}invite people to become enterprise owners or billing managers for{% elsif ghes %}add enterprise owners to{% endif %} your enterprise account. You can also remove enterprise owners {% ifversion ghec %}or billing managers {% endif %}who no longer need access to the enterprise account.' product: '{% data reusables.gated-features.enterprise-accounts %}' permissions: 'Enterprise owners can {% ifversion ghec %}invite other people to become{% elsif ghes %}add{% endif %} additional enterprise administrators.' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise - /github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account - - /articles/inviting-people-to-collaborate-in-your-business-account/ + - /articles/inviting-people-to-collaborate-in-your-business-account - /articles/inviting-people-to-manage-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise versions: @@ -17,59 +17,64 @@ topics: - Administrator - Enterprise - User account -shortTitle: Convidar pessoas para gerenciar +shortTitle: Invite people to manage --- -## Sobre os usuários que podem gerenciar a sua conta corporativa +## About users who can manage your enterprise account -{% data reusables.enterprise-accounts.enterprise-administrators %} Para obter mais informações, consulte "[Funções em uma empresa](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise)." +{% data reusables.enterprise-accounts.enterprise-administrators %} For more information, see "[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise)." {% ifversion ghes %} -Se você deseja gerenciar os proprietários e gerentes de cobrança para uma conta corporativa em {% data variables.product.prodname_dotcom_the_website %}, consulte "[Convidando pessoas para gerenciar sua empresa](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)" na documentação do {% data variables.product.prodname_ghe_cloud %}. +If you want to manage owners and billing managers for an enterprise account on {% data variables.product.prodname_dotcom_the_website %}, see "[Inviting people to manage your enterprise](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)" in the {% data variables.product.prodname_ghe_cloud %} documentation. {% endif %} {% ifversion ghec %} -Se sua empresa usa {% data variables.product.prodname_emus %}, os proprietários da empresa só poderão ser adicionados ou removidos por meio do seu provedor de identidade. Para obter mais informações, consulte "[Sobre {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." +If your enterprise uses {% data variables.product.prodname_emus %}, enterprise owners can only be added or removed through your identity provider. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." {% endif %} {% tip %} -**Dica:** para obter mais informações sobre como gerenciar usuários em uma organização de sua conta corporativa, consulte "[Gerenciar integrantes em sua organização](/articles/managing-membership-in-your-organization)" e "[Gerenciar acessos de pessoas à sua organização com funções](/articles/managing-peoples-access-to-your-organization-with-roles)". +**Tip:** For more information on managing users within an organization owned by your enterprise account, see "[Managing membership in your organization](/articles/managing-membership-in-your-organization)" and "[Managing people's access to your organization with roles](/articles/managing-peoples-access-to-your-organization-with-roles)." {% endtip %} -## {% ifversion ghec %}Convidando{% elsif ghes %}adicionando{% endif %} um administrador corporativo à sua conta corporativa +## {% ifversion ghec %}Inviting{% elsif ghes %}Adding{% endif %} an enterprise administrator to your enterprise account -{% ifversion ghec %}Depois de convidar alguém para juntar-se à conta corporativa, a pessoa deverá aceitar o convite por e-mail antes que possa acessar a conta corporativa. Convites pendentes vencem após 7 dias.{% endif %} +{% ifversion ghec %}After you invite someone to join the enterprise account, they must accept the emailed invitation before they can access the enterprise account. Pending invitations will expire after 7 days.{% endif %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} -1. Na barra lateral esquerda, clique em **Administrators** (Administradores). ![Aba Administrators (Administradores) na barra lateral esquerda](/assets/images/help/business-accounts/administrators-tab.png) -1. Acima da lista de administradores, clique em {% ifversion ghec %}**Convidar administrador**{% elsif ghes %}**Add proprietário**{% endif %}. +1. In the left sidebar, click **Administrators**. + ![Administrators tab in the left sidebar](/assets/images/help/business-accounts/administrators-tab.png) +1. Above the list of administrators, click {% ifversion ghec %}**Invite admin**{% elsif ghes %}**Add owner**{% endif %}. {% ifversion ghec %} - ![Botão "Convidar administrador" acima da lista de proprietários corporativos](/assets/images/help/business-accounts/invite-admin-button.png) + !["Invite admin" button above the list of enterprise owners](/assets/images/help/business-accounts/invite-admin-button.png) {% elsif ghes %} - ![Botão "Adicionar o proprietário" acima da lista de proprietários corporativos](/assets/images/help/business-accounts/add-owner-button.png) + !["Add owner" button above the list of enterprise owners](/assets/images/help/business-accounts/add-owner-button.png) {% endif %} -1. Digite o nome de usuário, nome completo ou endereço de e-mail da pessoa que você quer convidar para ser um administrador corporativo e depois selecione a pessoa adequada a partir dos resultados. ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} -1. Selecione **Owner** (Proprietário) ou **Billing Manager** (Gerente de cobrança). ![Caixa de diálogo modal com opções de funções](/assets/images/help/business-accounts/invite-admins-roles.png) -1. Clique em **Send Invitation** (Enviar convite). ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} -1. Clique em **Salvar**. !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} +1. Type the username, full name, or email address of the person you want to invite to become an enterprise administrator, then select the appropriate person from the results. + ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} +1. Select **Owner** or **Billing Manager**. + ![Modal box with role choices](/assets/images/help/business-accounts/invite-admins-roles.png) +1. Click **Send Invitation**. + ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} +1. Click **Add**. + !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} -## Remover um administrador de sua conta corporativa +## Removing an enterprise administrator from your enterprise account -Somente proprietários corporativos podem remover outros administradores corporativos da conta corporativa. +Only enterprise owners can remove other enterprise administrators from the enterprise account. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} -1. Ao lado do nome de usuário da pessoa que você deseja remover, clique em {% octicon "gear" aria-label="The Settings gear" %} e, em seguida, clique em **Remover proprietário**{% ifversion ghec %} ou **Remover gerente de cobrança**{% endif %}. +1. Next to the username of the person you'd like to remove, click {% octicon "gear" aria-label="The Settings gear" %}, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. {% ifversion ghec %} - ![Ajuste de configurações com menu option (opções) para remover um administrador corporativo](/assets/images/help/business-accounts/remove-admin.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/remove-admin.png) {% elsif ghes %} - ![Ajuste de configurações com menu option (opções) para remover um administrador corporativo](/assets/images/help/business-accounts/ghes-remove-owner.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/ghes-remove-owner.png) {% endif %} -1. Leia a confirmação, clique **Remover proprietário**{% ifversion ghec %} ou **Remover gerente de cobrança**{% endif %}. +1. Read the confirmation, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md index 6c82819f94..ce92ba1dc4 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md @@ -1,9 +1,9 @@ --- -title: Gerenciar usuários inativos +title: Managing dormant users redirect_from: - - /enterprise/admin/articles/dormant-users/ - - /enterprise/admin/articles/viewing-dormant-users/ - - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant/ + - /enterprise/admin/articles/dormant-users + - /enterprise/admin/articles/viewing-dormant-users + - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant - /enterprise/admin/user-management/managing-dormant-users - /admin/user-management/managing-dormant-users intro: '{% data reusables.enterprise-accounts.dormant-user-activity-threshold %}' @@ -17,26 +17,29 @@ topics: - Enterprise - Licensing --- - {% data reusables.enterprise-accounts.dormant-user-activity %} {% ifversion ghes or ghae%} -## Exibir usuários inativos +## Viewing dormant users {% data reusables.enterprise-accounts.viewing-dormant-users %} {% data reusables.enterprise_site_admin_settings.access-settings %} -3. Na barra lateral esquerda, clique em **Dormant users** (Usuários inativos). ![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} -4. Para suspender todos os usuários inativos nesta lista, na parte superior da página, clique em **Suspend all** (Suspender todos). ![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} +3. In the left sidebar, click **Dormant users**. +![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} +4. To suspend all the dormant users in this list, at the top of the page, click **Suspend all**. +![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} -## Determinar se uma conta de usuário está inativa +## Determining whether a user account is dormant {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user %} {% data reusables.enterprise_site_admin_settings.click-user %} -5. Na seção **User info** (Informações de usuário), um ponto vermelho com a palavra "Inativo" indica que a conta do usuário está inativa, e um ponto verde com a palavra "Ativo" indica que a conta do usuário está ativa. ![Conta de usuário inativa](/assets/images/enterprise/stafftools/dormant-user.png) ![Conta de usuário ativa](/assets/images/enterprise/stafftools/active-user.png) +5. In the **User info** section, a red dot with the word "Dormant" indicates the user account is dormant, and a green dot with the word "Active" indicates the user account is active. +![Dormant user account](/assets/images/enterprise/stafftools/dormant-user.png) +![Active user account](/assets/images/enterprise/stafftools/active-user.png) -## Configurar o limite de inatividade +## Configuring the dormancy threshold {% data reusables.enterprise_site_admin_settings.dormancy-threshold %} @@ -44,7 +47,8 @@ topics: {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.options-tab %} -4. Em "Dormancy threshold" (Limite de inatividade), use o menu suspenso e clique no limite de inatividade desejado.![Menu suspenso do limite de inatividade](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) +4. Under "Dormancy threshold", use the drop-down menu, and click the desired dormancy threshold. +![The Dormancy threshold drop-down menu](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) {% endif %} @@ -54,14 +58,15 @@ topics: {% warning %} -**Observação:** Durante o beta privado, as melhorias constantes no recurso de download de relatório podem limitar a sua disponibilidade. +**Note:** During the private beta, ongoing improvements to the report download feature may limit its availability. {% endwarning %} -## Fazendo o download do relatório de usuários inativos da conta corporativa +## Downloading the dormant users report from your enterprise account {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.enterprise-accounts-compliance-tab %} -1. Para fazer o download do seu relatório de usuários inativos (beta) como um arquivo CSV, em "Outro", clique em {% octicon "download" aria-label="The Download icon" %} **Download**. ![Botão Baixar em "Outro" na página de conformidade](/assets/images/help/business-accounts/dormant-users-download-button.png) +1. To download your Dormant Users (beta) report as a CSV file, under "Other", click {% octicon "download" aria-label="The Download icon" %} **Download**. + ![Download button under "Other" on the Compliance page](/assets/images/help/business-accounts/dormant-users-download-button.png) {% endif %} diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md index 780a4f4191..0227145d68 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md @@ -1,8 +1,8 @@ --- title: Promoting or demoting a site administrator redirect_from: - - /enterprise/admin/articles/promoting-a-site-administrator/ - - /enterprise/admin/articles/demoting-a-site-administrator/ + - /enterprise/admin/articles/promoting-a-site-administrator + - /enterprise/admin/articles/demoting-a-site-administrator - /enterprise/admin/user-management/promoting-or-demoting-a-site-administrator - /admin/user-management/promoting-or-demoting-a-site-administrator intro: 'Site administrators can promote any normal user account to a site administrator, as well as demote other site administrators to regular users.' diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md index 9d692ecaff..fc57c1bf12 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md @@ -1,8 +1,8 @@ --- -title: Recriar dados de contribuições -intro: Talvez você precise recriar os dados das contribuições para vincular os commits existentes a uma conta de usuário. +title: Rebuilding contributions data +intro: You may need to rebuild contributions data to link existing commits to a user account. redirect_from: - - /enterprise/admin/articles/rebuilding-contributions-data/ + - /enterprise/admin/articles/rebuilding-contributions-data - /enterprise/admin/user-management/rebuilding-contributions-data - /admin/user-management/rebuilding-contributions-data versions: @@ -12,15 +12,16 @@ topics: - Enterprise - Repositories - User account -shortTitle: Recriar contribuições +shortTitle: Rebuild contributions --- +Whenever a commit is pushed to {% data variables.product.prodname_enterprise %}, it is linked to a user account if they are both associated with the same email address. However, existing commits are *not* retroactively linked when a user registers a new email address or creates a new account. -Sempre que é enviado para o {% data variables.product.prodname_enterprise %}, o commit é vinculado a uma conta de usuário caso ambos estejam associados ao mesmo endereço de e-mail. No entanto, os commits *não* são vinculados retroativamente quando um usuário registra um endereço de e-mail ou cria uma conta. - -1. Acesse a página de perfil do usuário. +1. Visit the user's profile page. {% data reusables.enterprise_site_admin_settings.access-settings %} -3. À esquerda na página, clique em **Admin** (Administrador). ![Guia Admin (Administrador)](/assets/images/enterprise/site-admin-settings/admin-tab.png) -4. Em **Contributions data** (Dados de contribuição), clique em **Rebuild** (Recompilar). ![Botão Rebuild (Recompilar)](/assets/images/enterprise/site-admin-settings/rebuild-button.png) +3. On the left side of the page, click **Admin**. + ![Admin tab](/assets/images/enterprise/site-admin-settings/admin-tab.png) +4. Under **Contributions data**, click **Rebuild**. +![Rebuild button](/assets/images/enterprise/site-admin-settings/rebuild-button.png) {% data variables.product.prodname_enterprise %} will now start background jobs to re-link commits with that user's account. - ![Trabalhos recompilados em fila](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) + ![Queued rebuild jobs](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md index 48597db35d..e1586d12d0 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md @@ -1,11 +1,11 @@ --- -title: Funções em uma empresa -intro: 'Todas as pessoas em uma empresa são integrantes da empresa. Para controlar o acesso às configurações e dados da sua empresa, você pode atribuir diferentes funções aos integrantes da sua empresa.' +title: Roles in an enterprise +intro: 'Everyone in an enterprise is a member of the enterprise. To control access to your enterprise''s settings and data, you can assign different roles to members of your enterprise.' product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise - /github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account - - /articles/permission-levels-for-a-business-account/ + - /articles/permission-levels-for-a-business-account - /articles/roles-for-an-enterprise-account - /github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise versions: @@ -16,61 +16,61 @@ topics: - Enterprise --- -## Sobre funções em uma empresa +## About roles in an enterprise -Todas as pessoas em uma empresa são integrantes da empresa. Você também pode atribuir funções administrativas aos integrantes da sua empresa. Cada função de administrador está associada a uma função empresarial e fornece permissão para a execução de tarefas específicas na empresa. +Everyone in an enterprise is a member of the enterprise. You can also assign administrative roles to members of your enterprise. Each administrator role maps to business functions and provides permissions to do specific tasks within the enterprise. {% data reusables.enterprise-accounts.enterprise-administrators %} {% ifversion ghec %} -Se sua empresa não usar {% data variables.product.prodname_emus %}, você poderá convidar alguém para uma função administrativa usando uma conta de usuário em {% data variables.product.product_name %} que ele controle. Para obter mais informações, consulte[Convidando pessoas para gerenciar a sua empresa](/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise)". +If your enterprise does not use {% data variables.product.prodname_emus %}, you can invite someone to an administrative role using a user account on {% data variables.product.product_name %} that they control. For more information, see "[Inviting people to manage your enterprise](/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise)". -Em uma empresa que usa {% data variables.product.prodname_emus %}, novos proprietários e integrantes devem ser fornecidos por meio de seu provedor de identidade. Os proprietários corporativos e proprietários da organização não podem adicionar novos integrantes ou proprietários à empresa usando {% data variables.product.prodname_dotcom %}. É possível selecionar a função corporativa do integrante usando seu IdP e este não pode ser alterado em {% data variables.product.prodname_dotcom %}. Você pode selecionar a função de um integrante em uma organização em {% data variables.product.prodname_dotcom %}. Para obter mais informações, consulte "[Sobre {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." +In an enterprise using {% data variables.product.prodname_emus %}, new owners and members must be provisioned through your identity provider. Enterprise owners and organization owners cannot add new members or owners to the enterprise using {% data variables.product.prodname_dotcom %}. You can select a member's enterprise role using your IdP and it cannot be changed on {% data variables.product.prodname_dotcom %}. You can select a member's role in an organization on {% data variables.product.prodname_dotcom %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." {% else %} -Para obter mais informações sobre como adicionar pessoas à sua empresa, consulte "[Autenticação](/admin/authentication)". +For more information about adding people to your enterprise, see "[Authentication](/admin/authentication)". {% endif %} -## Proprietário corporativo +## Enterprise owner -Os proprietários corporativos têm controle total da empresa e podem executar todas as ações, incluindo: -- Gerenciar os administradores -- {% ifversion ghec %}Adicionar e remover {% elsif ghae or ghes %}Managing{% endif %} organizações{% ifversion ghec %}para e de {% elsif ghae or ghes %} na{% endif %} empresa -- Gerenciar as configurações da empresa -- Aplicar a política nas organizações +Enterprise owners have complete control over the enterprise and can take every action, including: +- Managing administrators +- {% ifversion ghec %}Adding and removing {% elsif ghae or ghes %}Managing{% endif %} organizations {% ifversion ghec %}to and from {% elsif ghae or ghes %} in{% endif %} the enterprise +- Managing enterprise settings +- Enforcing policy across organizations {% ifversion ghec %}- Managing billing settings{% endif %} -Os proprietários corporativos não podem acessar as configurações ou o conteúdo da organização, a menos que sejam incluídos como proprietário da organização ou recebam acesso direto a um repositório de propriedade da organização. Da mesma forma, os proprietários de organizações na sua empresa não têm acesso à empresa propriamente dita, a não ser que você os torne proprietários da empresa. +Enterprise owners cannot access organization settings or content unless they are made an organization owner or given direct access to an organization-owned repository. Similarly, owners of organizations in your enterprise do not have access to the enterprise itself unless you make them enterprise owners. -Um proprietário da empresa só consumirá uma licença se for um proprietário ou integrante de pelo menos uma organização dentro da empresa. {% ifversion ghec %}Os proprietários de empresas devem ter uma conta pessoal em {% data variables.product.prodname_dotcom %}.{% endif %} Como prática recomendada, sugerimos que você converta apenas algumas pessoas da sua empresa em proprietários para reduzir o risco para a sua empresa. +An enterprise owner will only consume a license if they are an owner or member of at least one organization within the enterprise. {% ifversion ghec %}Enterprise owners must have a personal account on {% data variables.product.prodname_dotcom %}.{% endif %} As a best practice, we recommend making only a few people in your company enterprise owners, to reduce the risk to your business. -## Integrantes da empresa +## Enterprise members -Os integrantes das organizações pertencentes à sua empresa também são automaticamente integrantes da empresa. Os integrantes podem colaborar em organizações e podem ser proprietários de organizações, mas os integrantes não podem acessar ou definir as configurações corporativas{% ifversion ghec %}, incluindo as configurações de cobrança{% endif %}. +Members of organizations owned by your enterprise are also automatically members of the enterprise. Members can collaborate in organizations and may be organization owners, but members cannot access or configure enterprise settings{% ifversion ghec %}, including billing settings{% endif %}. -As pessoas na sua empresa podem ter diferentes níveis de acesso às várias organizações pertencentes à sua empresa e aos repositórios dessas organizações. Você pode ver os recursos aos quais cada pessoa tem acesso. Para obter mais informações, consulte "[Visualizar pessoas na sua empresa](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)". +People in your enterprise may have different levels of access to the various organizations owned by your enterprise and to repositories within those organizations. You can view the resources that each person has access to. For more information, see "[Viewing people in your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)." -Para obter mais informações sobre permissões no nível da organização, consulte "[Funções em uma organização](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". +For more information about organization-level permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -Pessoas com acesso de colaborador externo aos repositórios pertencentes à sua organização também estão listadas na aba Pessoas da sua empresa, mas não são integrantes da empresa e não têm qualquer acesso à mesma. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +People with outside collaborator access to repositories owned by your organization are also listed in your enterprise's People tab, but are not enterprise members and do not have any access to the enterprise. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." {% ifversion ghec %} -## Gerente de cobrança +## Billing manager -Os gerentes de cobrança só têm acesso às configurações de cobrança da sua empresa. Gerentes de cobrança para a sua empresa podem: -- Visualizar e gerenciar licenças de usuário, pacotes do {% data variables.large_files.product_name_short %} e outras configurações de cobrança -- Exibir uma lista dos gerentes de cobrança -- Adicionar ou remover outros gerentes de cobrança +Billing managers only have access to your enterprise's billing settings. Billing managers for your enterprise can: +- View and manage user licenses, {% data variables.large_files.product_name_short %} packs and other billing settings +- View a list of billing managers +- Add or remove other billing managers -Os gerentes de cobrança só consumirão uma licença se forem um proprietário ou integrante de pelo menos uma organização dentro da empresa. Os gerentes de cobrança não têm acesso a organizações ou repositórios na sua empresa e não podem adicionar ou remover os proprietários da empresa. Os gerentes de cobrança devem ter uma conta pessoal no {% data variables.product.prodname_dotcom %}. +Billing managers will only consume a license if they are an owner or member of at least one organization within the enterprise. Billing managers do not have access to organizations or repositories in your enterprise, and cannot add or remove enterprise owners. Billing managers must have a personal account on {% data variables.product.prodname_dotcom %}. -## Sobre titularidades de suporte +## About support entitlements {% data reusables.enterprise-accounts.support-entitlements %} -## Leia mais +## Further reading -- "[Sobre contas corporativas](/admin/overview/about-enterprise-accounts)" +- "[About enterprise accounts](/admin/overview/about-enterprise-accounts)" {% endif %} diff --git a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md index 08148b0c9f..f64cdf6334 100644 --- a/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md +++ b/translations/pt-BR/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md @@ -1,11 +1,11 @@ --- title: Suspending and unsuspending users redirect_from: - - /enterprise/admin/articles/suspending-a-user/ - - /enterprise/admin/articles/unsuspending-a-user/ - - /enterprise/admin/articles/viewing-suspended-users/ - - /enterprise/admin/articles/suspended-users/ - - /enterprise/admin/articles/suspending-and-unsuspending-users/ + - /enterprise/admin/articles/suspending-a-user + - /enterprise/admin/articles/unsuspending-a-user + - /enterprise/admin/articles/viewing-suspended-users + - /enterprise/admin/articles/suspended-users + - /enterprise/admin/articles/suspending-and-unsuspending-users - /enterprise/admin/user-management/suspending-and-unsuspending-users - /admin/user-management/suspending-and-unsuspending-users intro: 'If a user leaves or moves to a different part of the company, you should remove or modify their ability to access {% data variables.product.product_location %}.' diff --git a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md index 8a251eeb1b..f3d8b48da6 100644 --- a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md @@ -1,13 +1,13 @@ --- -title: Exportar dados de migração da sua empresa -intro: 'Para alterar as plataformas ou mover de uma instância de teste para uma instância de produção você pode exportar os dados de migração de uma instância do {% data variables.product.prodname_ghe_server %} preparando a instância, bloqueando os repositórios e gerando um arquivo de migração.' +title: Exporting migration data from your enterprise +intro: 'To change platforms or move from a trial instance to a production instance, you can export migration data from a {% data variables.product.prodname_ghe_server %} instance by preparing the instance, locking the repositories, and generating a migration archive.' redirect_from: - - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise/ + - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise - /enterprise/admin/migrations/exporting-migration-data-from-github-enterprise-server - /enterprise/admin/migrations/preparing-the-github-enterprise-server-source-instance - /enterprise/admin/migrations/exporting-the-github-enterprise-server-source-repositories - - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance/ - - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories/ + - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance + - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories - /enterprise/admin/user-management/exporting-migration-data-from-your-enterprise - /admin/user-management/exporting-migration-data-from-your-enterprise versions: @@ -17,42 +17,41 @@ topics: - API - Enterprise - Migration -shortTitle: Exportar da sua empresa +shortTitle: Export from your enterprise --- +## Preparing the {% data variables.product.prodname_ghe_server %} source instance -## Preparar a instância de origem de {% data variables.product.prodname_ghe_server %} +1. Verify that you are a site administrator on the {% data variables.product.prodname_ghe_server %} source. The best way to do this is to verify that you can [SSH into the instance](/enterprise/admin/guides/installation/accessing-the-administrative-shell-ssh/). -1. Verifique se você é administrador do site na origem do {% data variables.product.prodname_ghe_server %}. A melhor maneira de fazer isso é verificar se você consegue fazer [SSH na instância](/enterprise/admin/guides/installation/accessing-the-administrative-shell-ssh/). - -2. {% data reusables.enterprise_migrations.token-generation %} na instância de origem do {% data variables.product.prodname_ghe_server %}. +2. {% data reusables.enterprise_migrations.token-generation %} on the {% data variables.product.prodname_ghe_server %} source instance. {% data reusables.enterprise_migrations.make-a-list %} -## Exportar os repositórios de origem de {% data variables.product.prodname_ghe_server %} +## Exporting the {% data variables.product.prodname_ghe_server %} source repositories {% data reusables.enterprise_migrations.locking-repositories %} {% data reusables.enterprise_installation.ssh-into-instance %} -2. Para preparar a exportação de um repositório, use o comando `ghe-migrator add` com a URL do repositório: - * Se você estiver bloqueando o repositório, adicione `--lock` ao comando. Se estiver executando um teste, não será necessário incluir `--lock`. +2. To prepare a repository for export, use the `ghe-migrator add` command with the repository's URL: + * If you're locking the repository, append the command with `--lock`. If you're performing a trial run, `--lock` is not needed. ```shell $ ghe-migrator add https://<em>hostname</em>/<em>username</em>/<em>reponame</em> --lock ``` - * Você pode excluir anexos de arquivos adicionando `--exclude_attachments` ao comando. {% data reusables.enterprise_migrations.exclude-file-attachments %} - * Para preparar a exportação de vários repositórios de uma só vez, crie um arquivo de texto listando cada URL do repositório em uma linha separada e execute o comando `ghe-migrator add` com o sinalizador `-i` e o caminho para o seu arquivo de texto. + * You can exclude file attachments by appending `--exclude_attachments` to the command. {% data reusables.enterprise_migrations.exclude-file-attachments %} + * To prepare multiple repositories at once for export, create a text file listing each repository URL on a separate line, and run the `ghe-migrator add` command with the `-i` flag and the path to your text file. ```shell $ ghe-migrator add -i <em>PATH</em>/<em>TO</em>/<em>YOUR</em>/<em>REPOSITORY_URLS</em>.txt ``` -3. Quando solicitado, informe seu nome de usuário do {% data variables.product.prodname_ghe_server %}: +3. When prompted, enter your {% data variables.product.prodname_ghe_server %} username: ```shell - Insira o nome de usuário autorizado para a migração: admin + Enter username authorized for migration: admin ``` -4. Quando o token de acesso pessoal for solicitado, informe o token de acesso que você criou na seção "[Preparar a instância de origem do {% data variables.product.prodname_ghe_server %}](#preparing-the-github-enterprise-server-source-instance)": +4. When prompted for a personal access token, enter the access token you created in "[Preparing the {% data variables.product.prodname_ghe_server %} source instance](#preparing-the-github-enterprise-server-source-instance)": ```shell - Insira o token de acesso pessoal: ************** + Enter personal access token: ************** ``` -5. Após a conclusão do `ghe-migrator add`, ele imprimirá o "GUID de Migração" exclusivo gerado para identificar a exportação e a lista dos recursos adicionados à exportação. Você usará o GUID de Migração gerado nas etapas subsequentes `ghe-migrator add` e `ghe-migrator export` para informar que o `ghe-migrator` deve continuar operando na mesma exportação. +5. When `ghe-migrator add` has finished it will print the unique "Migration GUID" that it generated to identify this export as well as a list of the resources that were added to the export. You will use the Migration GUID that it generated in subsequent `ghe-migrator add` and `ghe-migrator export` steps to tell `ghe-migrator` to continue operating on the same export. ```shell > 101 models added to export > Migration GUID: <em>example-migration-guid</em> @@ -74,32 +73,32 @@ shortTitle: Exportar da sua empresa > attachments | 4 > projects | 2 ``` - Sempre que você adicionar um novo repositório com o GUID de Migração atual, ele atualizará a exportação atual. Se você executar `ghe-migrator add` novamente sem GUID de Migração, ele vai iniciar uma nova exportação e gerar um novo GUID de Migração. **Não reutilize o GUID de Migração gerado durante uma exportação quando você começar a preparar a migração para importar**. + Each time you add a new repository with an existing Migration GUID it will update the existing export. If you run `ghe-migrator add` again without a Migration GUID it will start a new export and generate a new Migration GUID. **Do not re-use the Migration GUID generated during an export when you start preparing your migration for import**. -3. Se você bloqueou o repositório de origem, é possível usar o comando `ghe-migrator target_url` para personalizar uma mensagem de bloqueio na página de repositório que vincula ao novo local do repositório. Informe a URL do repositório de origem, a URL do repositório de destino e o GUID de Migração da Etapa 5: +3. If you locked the source repository, you can use the `ghe-migrator target_url` command to set a custom lock message on the repository page that links to the repository's new location. Pass the source repository URL, the target repository URL, and the Migration GUID from Step 5: ```shell $ ghe-migrator target_url https://<em>hostname</em>/<em>username</em>/<em>reponame</em> https://<em>target_hostname</em>/<em>target_username</em>/<em>target_reponame</em> -g <em>MIGRATION_GUID</em> ``` -6. Para adicionar mais repositórios à mesma exportação, use o comando `ghe-migrator add` com o sinalizador `-g`. Informe a nova URL do repositório e o GUID de Migração da Etapa 5: +6. To add more repositories to the same export, use the `ghe-migrator add` command with the `-g` flag. You'll pass in the new repository URL and the Migration GUID from Step 5: ```shell $ ghe-migrator add https://<em>hostname</em>/<em>username</em>/<em>other_reponame</em> -g <em>MIGRATION_GUID</em> --lock ``` -7. Quando terminar de adicionar os repositórios, gere o arquivo de migração usando o comando `ghe-migrator export` com o sinalizador `-g` e o GUID de Migração da Etapa 5: +7. When you've finished adding repositories, generate the migration archive using the `ghe-migrator export` command with the `-g` flag and the Migration GUID from Step 5: ```shell $ ghe-migrator export -g <em>MIGRATION_GUID</em> > Archive saved to: /data/github/current/tmp/<em>MIGRATION_GUID</em>.tar.gz ``` * {% data reusables.enterprise_migrations.specify-staging-path %} -8. Fechar a conexão com {% data variables.product.product_location %}: +8. Close the connection to {% data variables.product.product_location %}: ```shell $ exit > logout > Connection to <em>hostname</em> closed. ``` -9. Copie o arquivo de migração para o seu computador usando o comando [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp). O arquivo terá o nome do GUID de Migração: +9. Copy the migration archive to your computer using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command. The archive file will be named with the Migration GUID: ```shell $ scp -P 122 admin@<em>hostname</em>:/data/github/current/tmp/<em>MIGRATION_GUID</em>.tar.gz ~/Desktop ``` diff --git a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md index 4dbec812f1..2b27547b72 100644 --- a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md +++ b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: Migrar dados para e da sua empresa -intro: 'É possível exportar dados de usuário, organização e repositório de {% data variables.product.prodname_ghe_server %} ou {% data variables.product.prodname_dotcom_the_website %}, e depois importar esses dados para o {% data variables.product.product_location %}.' +title: Migrating data to and from your enterprise +intro: 'You can export user, organization, and repository data from {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_dotcom_the_website %}, then import that data into {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise/ - - /enterprise/admin/categories/migrations-and-upgrades/ + - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise + - /enterprise/admin/categories/migrations-and-upgrades - /enterprise/admin/migrations/overview - /enterprise/admin/user-management/migrating-data-to-and-from-your-enterprise versions: @@ -17,6 +17,6 @@ children: - /preparing-to-migrate-data-to-your-enterprise - /migrating-data-to-your-enterprise - /importing-data-from-third-party-version-control-systems -shortTitle: Migração para uma empresa +shortTitle: Migration for an enterprise --- diff --git a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md index 51fb38ae96..e6eedafa28 100644 --- a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md @@ -1,15 +1,15 @@ --- -title: Migrar dados para a sua empresa -intro: 'Após gerar um arquivo de migração, você poderá importar os dados para a sua instância de destino do {% data variables.product.prodname_ghe_server %}. Antes de aplicar as alterações permanentemente na instância de destino, será possível revisá-las para resolver possíveis conflitos.' +title: Migrating data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise/ + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise - /enterprise/admin/migrations/applying-the-imported-data-on-github-enterprise-server - /enterprise/admin/migrations/reviewing-migration-data - /enterprise/admin/migrations/completing-the-import-on-github-enterprise-server - - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise/ - - /enterprise/admin/guides/migrations/reviewing-the-imported-data/ - - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise/ - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server/ + - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise + - /enterprise/admin/guides/migrations/reviewing-the-imported-data + - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server - /enterprise/admin/user-management/migrating-data-to-your-enterprise - /admin/user-management/migrating-data-to-your-enterprise versions: @@ -18,95 +18,94 @@ type: how_to topics: - Enterprise - Migration -shortTitle: Importar para a sua empresa +shortTitle: Import to your enterprise --- +## Applying the imported data on {% data variables.product.prodname_ghe_server %} -## Aplicar os dados importados em {% data variables.product.prodname_ghe_server %} +Before you can migrate data to your enterprise, you must prepare the data and resolve any conflicts. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." -Antes de migrar dados para sua empresa, você deve preparar os dados e resolver quaisquer conflitos. Para obter mais informações, consulte "[Preparar para migrar dados para sua empresa](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)". - -Depois de preparar os dados e os conflitos de resolução, você poderá aplicar os dados importados em {% data variables.product.product_name %}. +After you prepare the data and resolve conflicts, you can apply the imported data on {% data variables.product.product_name %}. {% data reusables.enterprise_installation.ssh-into-target-instance %} -2. Usando o comando `ghe-migrator import`, comece o processo de importação. Você precisará do seguinte: - * Seu Migration GUID. Para obter mais informações, consulte "[Preparar para migrar dados para sua empresa](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)". - * Seu token de acesso pessoal para autenticação. O token de acesso pessoal que você usa é apenas para autenticação como administrador do site e não requer nenhum escopo específico. Para mais informação, consulte "[Criando um token de acesso pessoal](/github/authenticating-to-github/creating-a-personal-access-token)." +2. Using the `ghe-migrator import` command, start the import process. You'll need: + * Your Migration GUID. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." + * Your personal access token for authentication. The personal access token that you use is only for authentication as a site administrator, and does not require any specific scope. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." ```shell $ ghe-migrator import /home/admin/<em>MIGRATION_GUID</em>.tar.gz -g <em>MIGRATION_GUID</em> -u <em>username</em> -p <em>TOKEN</em> - + > Starting GitHub::Migrator > Import 100% complete / ``` * {% data reusables.enterprise_migrations.specify-staging-path %} -## Revisar dados de migração +## Reviewing migration data -Por padrão, o `ghe-migrator audit` devolve todos os registros. Também é possível filtrar os registros por: +By default, `ghe-migrator audit` returns every record. It also allows you to filter records by: - * Tipos de registro; - * Estado de registro. + * The types of records. + * The state of the records. -Os tipos de registro correspondem aos encontrados nos [dados migrados](/enterprise/admin/guides/migrations/about-migrations/#migrated-data). +The record types match those found in the [migrated data](/enterprise/admin/guides/migrations/about-migrations/#migrated-data). -## Filtros por tipo de registro +## Record type filters -| Tipo de registro | Nome do filtro | -| --------------------------------------------- | ----------------------------- | -| Usuários | `usuário` | -| Organizações | `organização` | -| Repositórios | `repositório` | -| Equipes | `equipe` | -| Marcos | `marco` | -| Quadros de projeto | `project` | -| Problemas | `problema` | -| Comentários dos problemas | `issue_comment` | -| Pull requests | `pull_request` | -| Revisões de pull request | `pull_request_review` | -| Comentários de commit | `commit_comment` | -| Comentários das revisões de pull request | `pull_request_review_comment` | -| Versões | `versão` | -| Ações feitas em problemas ou em pull requests | `issue_event` | -| Branches protegidos | `protected_branch` | +| Record type | Filter name | +|-----------------------|--------| +| Users | `user` +| Organizations | `organization` +| Repositories | `repository` +| Teams | `team` +| Milestones | `milestone` +| Project boards | `project` +| Issues | `issue` +| Issue comments | `issue_comment` +| Pull requests | `pull_request` +| Pull request reviews | `pull_request_review` +| Commit comments | `commit_comment` +| Pull request review comments | `pull_request_review_comment` +| Releases | `release` +| Actions taken on pull requests or issues | `issue_event` +| Protected branches | `protected_branch` -## Filtros por estado de registro +## Record state filters -| Estado de registro | Descrição | -| ------------------ | --------------------------------------- | -| `export` | O registro será exportado. | -| `import` | O registro será importado. | -| `map` | O registro será mapeado. | -| `rename` | O registro será renomeado. | -| `merge` | O registro passará por merge. | -| `exported` | O registro foi exportado com êxito. | -| `imported` | O registro foi importado com êxito. | -| `mapped` | O registro foi mapeado com êxito. | -| `renamed` | O registro foi renomeado com êxito. | -| `merged` | O registro passou por merge com êxito. | -| `failed_export` | Houve falha ao exportar o registro. | -| `failed_import` | Houve falha ao importar o registro. | -| `failed_map` | Houve falha ao mapear o registro. | -| `failed_rename` | Houve falha ao renomear o registro. | -| `failed_merge` | Houve falha ao fazer merge no registro. | +| Record state | Description | +|-----------------|----------------| +| `export` | The record will be exported. | +| `import` | The record will be imported. | +| `map` | The record will be mapped. | +| `rename` | The record will be renamed. | +| `merge` | The record will be merged. | +| `exported` | The record was successfully exported. | +| `imported` | The record was successfully imported. | +| `mapped` | The record was successfully mapped. | +| `renamed` | The record was successfully renamed. | +| `merged` | The record was successfully merged. | +| `failed_export` | The record failed to export. | +| `failed_import` | The record failed to be imported. | +| `failed_map` | The record failed to be mapped. | +| `failed_rename` | The record failed to be renamed. | +| `failed_merge` | The record failed to be merged. | -## Filtrar registros auditados +## Filtering audited records -Com o comando `ghe-migrator audit`, é possível filtrar com base no tipo de registro usando o sinalizador `-m`. Da mesma forma, você pode filtrar no estado de importação usando o sinalizador `-s`. O comando fica parecido com o seguinte: +With the `ghe-migrator audit` command, you can filter based on the record type using the `-m` flag. Similarly, you can filter on the import state using the `-s` flag. The command looks like this: ```shell $ ghe-migrator audit -m <em>RECORD_TYPE</em> -s <em>STATE</em> -g <em>MIGRATION_GUID</em> ``` -Por exemplo, para visualizar todas as organizações e equipes importadas com êxito, você digitaria: +For example, to view every successfully imported organization and team, you would enter: ```shell $ ghe-migrator audit -m organization,team -s mapped,renamed -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state > organization,https://gh.source/octo-org/,https://ghe.target/octo-org/,renamed ``` -**É altamente recomendável fazer auditoria em todas as importações que tiveram falha.** Para fazer isso, insira: +**We strongly recommend auditing every import that failed.** To do that, you will enter: ```shell $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state @@ -114,40 +113,40 @@ $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g < > repository,https://gh.source/octo-org/octo-project,https://ghe.target/octo-org/octo-project,failed ``` -Em caso de problemas com falhas na importação, entre em contato com o {% data variables.contact.contact_ent_support %}. +If you have any concerns about failed imports, contact {% data variables.contact.contact_ent_support %}. -## Concluir a importação em {% data variables.product.prodname_ghe_server %} +## Completing the import on {% data variables.product.prodname_ghe_server %} -Depois que sua migração for aplicada à sua instância de destino e você tiver revisado a migração, você desbloqueará os repositórios e os excluirá da fonte. Antes de excluir os dados da origem, é recomendável aguardar cerca de duas semanas para garantir o funcionamento adequado de todos os procedimentos. +After your migration is applied to your target instance and you have reviewed the migration, you''ll unlock the repositories and delete them off the source. Before deleting your source data we recommend waiting around two weeks to ensure that everything is functioning as expected. -## Desbloquear repositórios na instância de destino +## Unlocking repositories on the target instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} -## Desbloquear repositórios na origem +## Unlocking repositories on the source -### Desbloquear repositórios de uma organização no {% data variables.product.prodname_dotcom_the_website %} +### Unlocking repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -Para desbloquear repositórios em uma organização do {% data variables.product.prodname_dotcom_the_website %}, você enviará uma solicitação `DELETE` para o <a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">ponto de extremidade de desbloqueio da migração</a>. Você precisará do seguinte: - * Token de acesso para autenticação. - * `id` exclusivo da migração; - * Nome do repositório a ser desbloqueado. +To unlock the repositories on a {% data variables.product.prodname_dotcom_the_website %} organization, you'll send a `DELETE` request to <a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">the migration unlock endpoint</a>. You'll need: + * Your access token for authentication + * The unique `id` of the migration + * The name of the repository to unlock ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ -H "Accept: application/vnd.github.wyandotte-preview+json" \ https://api.github.com/orgs/<em>orgname</em>/migrations/<em>id</em>/repos/<em>repo_name</em>/lock ``` -### Excluir repositórios de uma organização no {% data variables.product.prodname_dotcom_the_website %} +### Deleting repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -Após desbloquear os repositórios da organização de {% data variables.product.prodname_dotcom_the_website %}, você deverá excluir todos os repositórios previamente migrados usando [o ponto de extremidade de exclusão do repositório](/rest/reference/repos/#delete-a-repository). Você precisará do token de acesso para autenticação: +After unlocking the {% data variables.product.prodname_dotcom_the_website %} organization's repositories, you should delete every repository you previously migrated using [the repository delete endpoint](/rest/reference/repos/#delete-a-repository). You'll need your access token for authentication: ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ https://api.github.com/repos/<em>orgname</em>/<em>repo_name</em> ``` -### Desbloquear repositórios de uma instância do {% data variables.product.prodname_ghe_server %} +### Unlocking repositories from a {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} diff --git a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md index b9b8d5d8d9..12b0ae88e1 100644 --- a/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md +++ b/translations/pt-BR/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: Preparar-se para migrar dados para a sua empresa -intro: 'Após gerar um arquivo de migração, você poderá importar os dados para a sua instância de destino do {% data variables.product.prodname_ghe_server %}. Antes de aplicar as alterações permanentemente na instância de destino, será possível revisá-las para resolver possíveis conflitos.' +title: Preparing to migrate data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - /enterprise/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server - /enterprise/admin/migrations/generating-a-list-of-migration-conflicts - /enterprise/admin/migrations/reviewing-migration-conflicts - /enterprise/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings - - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise/ + - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise - /enterprise/admin/user-management/preparing-to-migrate-data-to-your-enterprise - /admin/user-management/preparing-to-migrate-data-to-your-enterprise versions: @@ -15,12 +15,11 @@ type: how_to topics: - Enterprise - Migration -shortTitle: Prepare-se para fazer a migração dos dados +shortTitle: Prepare to migrate data --- +## Preparing the migrated data for import to {% data variables.product.prodname_ghe_server %} -## Preparar os dados migrados para importação para {% data variables.product.prodname_ghe_server %} - -1. Usando o comando [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp), copie o arquivo de migração gerado na organização ou instância de origem para o destino no {% data variables.product.prodname_ghe_server %}: +1. Using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy the migration archive generated from your source instance or organization to your {% data variables.product.prodname_ghe_server %} target: ```shell $ scp -P 122 <em>/path/to/archive/MIGRATION_GUID.tar.gz</em> admin@<em>hostname</em>:/home/admin/ @@ -28,122 +27,122 @@ shortTitle: Prepare-se para fazer a migração dos dados {% data reusables.enterprise_installation.ssh-into-target-instance %} -3. Use o comando `ghe-migrator prepare` para preparar o arquivo para importação na instância de destino e gerar um novo GUID de Migração para uso nas etapas subsequentes: +3. Use the `ghe-migrator prepare` command to prepare the archive for import on the target instance and generate a new Migration GUID for you to use in subsequent steps: ```shell ghe-migrator prepare /home/admin/<em>MIGRATION_GUID</em>.tar.gz ``` - * Para começar uma nova tentativa de importação, execute o comando `ghe-migrator` novamente e obtenha um novo GUID de Migração. + * To start a new import attempt, run `ghe-migrator prepare` again and get a new Migration GUID. * {% data reusables.enterprise_migrations.specify-staging-path %} -## Gerar uma lista de conflitos de migração +## Generating a list of migration conflicts -1. Usando o comando `ghe-migrator conflicts` com o GUID de migração, gere um arquivo *conflicts.csv*: +1. Using the `ghe-migrator conflicts` command with the Migration GUID, generate a *conflicts.csv* file: ```shell $ ghe-migrator conflicts -g <em>MIGRATION_GUID</em> > conflicts.csv ``` - - Se nenhum conflito for relatado, você poderá importar os dados com segurança seguindo as etapas em "[Migrar dados para a sua empresa](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)". -2. Se houver conflitos, usando o comando [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp), copie *conflicts.csv* para o seu computador local: + - If no conflicts are reported, you can safely import the data by following the steps in "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)". +2. If there are conflicts, using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy *conflicts.csv* to your local computer: ```shell $ scp -P 122 admin@<em>hostname</em>:conflicts.csv ~/Desktop ``` -3. Continue em "[Resolver conflitos de migração ou configurar mapeamentos personalizados](#resolving-migration-conflicts-or-setting-up-custom-mappings)". +3. Continue to "[Resolving migration conflicts or setting up custom mappings](#resolving-migration-conflicts-or-setting-up-custom-mappings)". -## Revisar conflitos de migração +## Reviewing migration conflicts -1. Usando o editor de texto ou um [software de planilha compatível com CSV](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support), abra o arquivo *conflicts.csv*. -2. Seguindo os exemplos e tabelas de referência abaixo, revise o arquivo *conflicts.csv* para garantir a execução das ações adequadas na importação. +1. Using a text editor or [CSV-compatible spreadsheet software](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support), open *conflicts.csv*. +2. With guidance from the examples and reference tables below, review the *conflicts.csv* file to ensure that the proper actions will be taken upon import. -O arquivo *conflicts.csv* contém um *mapa de migração* de conflitos e ações recomendadas. O mapa de migração lista quais dados estão sendo migrados da origem e como eles serão aplicados ao destino. +The *conflicts.csv* file contains a *migration map* of conflicts and recommended actions. A migration map lists out both what data is being migrated from the source, and how the data will be applied to the target. -| `nome_modelo` | `url_origem` | `url_destino` | `ação_recomendada` | -| ------------- | ------------------------------------------------------ | ------------------------------------------------------ | ------------------ | -| `usuário` | `https://exemplo-gh.source/octocat` | `https://exemplo-gh.target/octocat` | `map` | -| `organização` | `https://exemplo-gh.source/octo-org` | `https://exemplo-gh.target/octo-org` | `map` | -| `repositório` | `https://exemplo-gh.source/octo-org/widgets` | `https://exemplo-gh.target/octo-org/widgets` | `rename` | -| `equipe` | `https://exemplo-gh.source/orgs/octo-org/teams/admins` | `https://exemplo-gh.target/orgs/octo-org/teams/admins` | `merge` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | +| `organization` | `https://example-gh.source/octo-org` | `https://example-gh.target/octo-org` | `map` | +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/widgets` | `rename` | +| `team` | `https://example-gh.source/orgs/octo-org/teams/admins` | `https://example-gh.target/orgs/octo-org/teams/admins` | `merge` | -Cada linha do arquivo *conflicts.csv* mostra as seguintes informações: +Each row in *conflicts.csv* provides the following information: -| Nome | Descrição | -| ------------------ | ------------------------------------------------------------------------- | -| `nome_modelo` | Tipo de dado que está sendo alterado. | -| `url_origem` | URL de origem dos dados. | -| `url_destino` | URL esperada de destino dos dados. | -| `ação_recomendada` | Ação preferencial que o `ghe-migrator` vai executar ao importar os dados. | +| Name | Description | +|--------------|---------------| +| `model_name` | The type of data being changed. | +| `source_url` | The source URL of the data. | +| `target_url` | The expected target URL of the data. | +| `recommended_action` | The preferred action `ghe-migrator` will take when importing the data. | -### Mapeamentos possíveis para cada tipo de registro +### Possible mappings for each record type -O `ghe-migrator` pode executar várias ações de mapeamento diferentes quando transfere os dados: +There are several different mapping actions that `ghe-migrator` can take when transferring data: -| `Ação` | Descrição | Modelos aplicáveis | -| --------------- | ------------------------------------------------------------------------------------- | ------------------------------------ | -| `import` | (padrão) Os dados da origem são importados para o destino. | Todos os tipos de registro | -| `map` | Os dados da origem são substituídos pelos dados existentes no destino. | Usuários, organizações, repositórios | -| `rename` | Os dados da origem são renomeados e copiados para o destino. | Usuários, organizações, repositórios | -| `map_or_rename` | Se houver destino, mapeie para o destino. Se não houver, renomeie o modelo importado. | Usuários | -| `merge` | Os dados da origem são combinados com os dados existentes no destino. | Equipes | +| `action` | Description | Applicable models | +|------------------------|-------------|-------------------| +| `import` | (default) Data from the source is imported to the target. | All record types +| `map` | Data from the source is replaced by existing data on the target. | Users, organizations, repositories +| `rename` | Data from the source is renamed, then copied over to the target. | Users, organizations, repositories +| `map_or_rename` | If the target exists, map to that target. Otherwise, rename the imported model. | Users +| `merge` | Data from the source is combined with existing data on the target. | Teams -**É altamente recomendável que você revise o arquivo *conflicts.csv* e utilize [`ghe-migror audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) para garantir que as ações adequadas estão sendo tomadas.** Se tudo estiver em ordem, você poderá continuar a "[Migrar os dados para a sua empresa](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)". +**We strongly suggest you review the *conflicts.csv* file and use [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) to ensure that the proper actions are being taken.** If everything looks good, you can continue to "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)". -## Resolver conflitos de migração ou configurar mapeamentos personalizados +## Resolving migration conflicts or setting up custom mappings -Se achar que o `ghe-migrator` fará uma alteração incorreta, você poderá fazer correções alterando os dados em *conflicts.csv*. Você pode alterar qualquer linha no arquivo *conflicts.csv*. +If you believe that `ghe-migrator` will perform an incorrect change, you can make corrections by changing the data in *conflicts.csv*. You can make changes to any of the rows in *conflicts.csv*. -Por exemplo, digamos que você perceba que o usuário `octocat` da origem está sendo mapeado para `octocat` no destino: +For example, let's say you notice that the `octocat` user from the source is being mapped to `octocat` on the target: -| `nome_modelo` | `url_origem` | `url_destino` | `ação_recomendada` | -| ------------- | ----------------------------------- | ----------------------------------- | ------------------ | -| `usuário` | `https://exemplo-gh.source/octocat` | `https://exemplo-gh.target/octocat` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` -Você pode optar por mapear o usuário para outro usuário no destino. Suponha que você saiba que `octocat` deveria ser `monalisa` no destino. É possível alterar a coluna `url_destino` no arquivo *conflicts.csv* para se referir a `monalisa`: +You can choose to map the user to a different user on the target. Suppose you know that `octocat` should actually be `monalisa` on the target. You can change the `target_url` column in *conflicts.csv* to refer to `monalisa`: -| `nome_modelo` | `url_origem` | `url_destino` | `ação_recomendada` | -| ------------- | ----------------------------------- | ------------------------------------ | ------------------ | -| `usuário` | `https://exemplo-gh.source/octocat` | `https://exemplo-gh.target/monalisa` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `map` -Em outra situação, se você quiser renomear o repositório `octo-org/widgets` como `octo-org/amazing-widgets` na instância de destino, altere `url_destino` para `octo-org/amazing-widgets` e `ação_recomendada` para `rename`: +As another example, if you want to rename the `octo-org/widgets` repository to `octo-org/amazing-widgets` on the target instance, change the `target_url` to `octo-org/amazing-widgets` and the `recommend_action` to `rename`: -| `nome_modelo` | `url_origem` | `url_destino` | `ação_recomendada` | -| ------------- | -------------------------------------------- | ---------------------------------------------------- | ------------------ | -| `repositório` | `https://exemplo-gh.source/octo-org/widgets` | `https://exemplo-gh.target/octo-org/amazing-widgets` | `rename` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/amazing-widgets` | `rename` | -### Adicionar mapeamentos personalizados +### Adding custom mappings -Uma situação comum durante as migrações é o cenário em que os usuários migrados têm nomes de usuários diferentes no destino e na origem. +A common scenario during a migration is for migrated users to have different usernames on the target than they have on the source. -Com uma lista de nomes de usuários da origem e uma lista de nomes de usuários do destino, você pode criar um arquivo CSV com mapeamentos personalizados e aplicá-la para garantir que o nome de usuário e o conteúdo de cada usuário sejam atribuídos corretamente no fim da migração. +Given a list of usernames from the source and a list of usernames on the target, you can build a CSV file with custom mappings and then apply it to ensure each user's username and content is correctly attributed to them at the end of a migration. -Você pode gerar um arquivo em formato CSV dos usuários que estão sendo migrados para aplicar mapeamentos personalizados usando o comando [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data): +You can quickly generate a CSV of users being migrated in the CSV format needed to apply custom mappings by using the [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) command: ```shell $ ghe-migrator audit -m user -g <em>MIGRATION_GUID</em> > users.csv ``` -Agora você pode editar esse CSV, inserir a nova URL para cada usuário que pretende mapear ou renomear e atualizar a quarta coluna para aplicar `map` ou `rename`. +Now, you can edit that CSV and enter the new URL for each user you would like to map or rename, and then update the fourth column to have `map` or `rename` as appropriate. -Por exemplo, para renomear o usuário `octocat` como `monalisa` no destino `https://example-gh.target`, você deveria criar uma linha com o seguinte conteúdo: +For example, to rename the user `octocat` to `monalisa` on the target `https://example-gh.target` you would create a row with the following content: -| `nome_modelo` | `url_origem` | `url_destino` | `estado` | -| ------------- | ----------------------------------- | ------------------------------------ | -------- | -| `usuário` | `https://exemplo-gh.source/octocat` | `https://exemplo-gh.target/monalisa` | `rename` | +| `model_name` | `source_url` | `target_url` | `state` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `rename` -O mesmo processo pode ser usado para criar mapeamentos em cada registro compatível com mapeamentos personalizados. Para obter mais informações, consulte a nossa [tabela com as possibilidades de mapeamento em registros](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type). +The same process can be used to create mappings for each record that supports custom mappings. For more information, see [our table on the possible mappings for records](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type). -### Aplicar dados de migração modificados +### Applying modified migration data -1. Depois de fazer as alterações, use o comando [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) para aplicar o seu *conflicts.csv* modificado (ou qualquer outro arquivo de mapeamento *.csv* no formato correto) para a instância de destino: +1. After making changes, use the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command to apply your modified *conflicts.csv* (or any other mapping *.csv* file in the correct format) to the target instance: ```shell $ scp -P 122 ~/Desktop/conflicts.csv admin@<em>hostname</em>:/home/admin/ ``` -2. Mapeie novamente os dados de migração usando o comando `mapa do ghe-migrator`, passando pelo caminho para o seu arquivo *.csv* modificado e pelo GUID de Migração: +2. Re-map the migration data using the `ghe-migrator map` command, passing in the path to your modified *.csv* file and the Migration GUID: ```shell $ ghe-migrator map -i conflicts.csv -g <em>MIGRATION_GUID</em> ``` -3. Se o comando `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` ainda reportar conflitos, execute o processo de resolução de conflitos de migração novamente. +3. If the `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` command reports that conflicts still exist, run through the migration conflict resolution process again. diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md index 5497c4d51a..edc50c6daa 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md @@ -1,8 +1,8 @@ --- -title: Painel Atividade -intro: O painel de atividades oferece uma visão geral de toda a atividade da sua empresa. +title: Activity dashboard +intro: The Activity dashboard gives you an overview of all the activity in your enterprise. redirect_from: - - /enterprise/admin/articles/activity-dashboard/ + - /enterprise/admin/articles/activity-dashboard - /enterprise/admin/installation/activity-dashboard - /enterprise/admin/user-management/activity-dashboard - /admin/user-management/activity-dashboard @@ -12,21 +12,22 @@ versions: topics: - Enterprise --- +The Activity dashboard provides weekly, monthly, and yearly graphs of the number of: +- New pull requests +- Merged pull requests +- New issues +- Closed issues +- New issue comments +- New repositories +- New user accounts +- New organizations +- New teams -O painel Atividade gera gráficos semanais, mensais e anuais informando o número de: -- Novas pull requests; -- Pull requests com merge; -- Novos problemas; -- Problemas encerrados; -- Comentários de novos problemas; -- Novos repositórios; -- Novas contas de usuário; -- Novas organizações; -- Novas equipes. +![Activity dashboard](/assets/images/enterprise/activity/activity-dashboard-yearly.png) -![Painel Atividade](/assets/images/enterprise/activity/activity-dashboard-yearly.png) +## Accessing the Activity dashboard -## Acessar o painel Atividade - -1. Na parte superior da página, clique em **Explore** (Explorar). ![Guia Explore (Explorar)](/assets/images/enterprise/settings/ent-new-explore.png) -2. No canto superior direito da página, clique em **Activity** (Atividade). ![Botão Activity (Atividade)](/assets/images/enterprise/activity/activity-button.png) +1. At the top of any page, click **Explore**. +![Explore tab](/assets/images/enterprise/settings/ent-new-explore.png) +2. In the upper-right corner, click **Activity**. +![Activity button](/assets/images/enterprise/activity/activity-button.png) diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md index b6d652f87a..0b39b98872 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md @@ -1,8 +1,8 @@ --- -title: Gerar logs de auditoria -intro: '{% data variables.product.product_name %} mantém registros de{% ifversion ghes %} sistema auditado,{% endif %} eventos de usuários, organização e repositórios. Os logs são úteis para fins de depuração e conformidade interna e externa.' +title: Audit logging +intro: '{% data variables.product.product_name %} keeps logs of audited{% ifversion ghes %} system,{% endif %} user, organization, and repository events. Logs are useful for debugging and internal and external compliance.' redirect_from: - - /enterprise/admin/articles/audit-logging/ + - /enterprise/admin/articles/audit-logging - /enterprise/admin/installation/audit-logging - /enterprise/admin/user-management/audit-logging - /admin/user-management/audit-logging @@ -16,31 +16,30 @@ topics: - Logging - Security --- +For a full list, see "[Audited actions](/admin/user-management/audited-actions)." For more information on finding a particular action, see "[Searching the audit log](/admin/user-management/searching-the-audit-log)." -Para obter uma lista completa, consulte "[Ações auditadas](/admin/user-management/audited-actions)". Para obter mais informações sobre como encontrar uma ação em particular, consulte "[Pesquisar no log de auditoria](/admin/user-management/searching-the-audit-log)". +## Push logs -## Logs de push - -Todas as operações de push no Git têm um log. Para obter mais informações, consulte "[Visualizar logs de push](/admin/user-management/viewing-push-logs)". +Every Git push operation is logged. For more information, see "[Viewing push logs](/admin/user-management/viewing-push-logs)." {% ifversion ghes %} -## Eventos do sistema +## System events -Todos os eventos auditados do sistema, inclusive pushes e pulls, são registrados em logs no caminho `/var/log/github/audit.log`. Os logs passam por rotação a cada 24 horas e ficam guardados por sete dias. +All audited system events, including all pushes and pulls, are logged to `/var/log/github/audit.log`. Logs are automatically rotated every 24 hours and are retained for seven days. -O pacote de suporte inclui logs de sistema. Para obter mais informações, consulte "[Fornecer dados para suporte de {% data variables.product.prodname_dotcom %}](/admin/enterprise-support/providing-data-to-github-support)." +The support bundle includes system logs. For more information, see "[Providing data to {% data variables.product.prodname_dotcom %} Support](/admin/enterprise-support/providing-data-to-github-support)." -## Pacotes de suporte +## Support bundles -Todas as informações de auditoria são registradas no arquivo `audit.log`, no diretório `github-logs` de qualquer pacote de suporte. Se o encaminhamento de logs estiver habilitado, você poderá transmitir esses dados para um consumidor de fluxo de syslog externo, como o [Splunk](http://www.splunk.com/) ou o [Logstash](http://logstash.net/). Todas as entradas desse log usam a palavra-chave `github_audit` e podem ser filtradas por ela. Para obter mais informações, consulte "[Encaminhamento de registro](/admin/user-management/log-forwarding)". +All audit information is logged to the `audit.log` file in the `github-logs` directory of any support bundle. If log forwarding is enabled, you can stream this data to an external syslog stream consumer such as [Splunk](http://www.splunk.com/) or [Logstash](http://logstash.net/). All entries from this log use and can be filtered with the `github_audit` keyword. For more information see "[Log forwarding](/admin/user-management/log-forwarding)." -Por exemplo, esta entrada mostra que um repositório foi criado. +For example, this entry shows that a new repository was created. ``` Oct 26 01:42:08 github-ent github_audit: {:created_at=>1351215728326, :actor_ip=>"10.0.0.51", :data=>{}, :user=>"some-user", :repo=>"some-user/some-repository", :actor=>"some-user", :actor_id=>2, :user_id=>2, :action=>"repo.create", :repo_id=>1, :from=>"repositories#create"} ``` -Este exemplo mostra que houve push dos commits para um repositório. +This example shows that commits were pushed to a repository. ``` Oct 26 02:19:31 github-ent github_audit: { "pid":22860, "ppid":22859, "program":"receive-pack", "git_dir":"/data/repositories/some-user/some-repository.git", "hostname":"github-ent", "pusher":"some-user", "real_ip":"10.0.0.51", "user_agent":"git/1.7.10.4", "repo_id":1, "repo_name":"some-user/some-repository", "transaction_id":"b031b7dc7043c87323a75f7a92092ef1456e5fbaef995c68", "frontend_ppid":1, "repo_public":true, "user_name":"some-user", "user_login":"some-user", "frontend_pid":18238, "frontend":"github-ent", "user_email":"some-user@github.example.com", "user_id":2, "pgroup":"github-ent_22860", "status":"post_receive_hook", "features":" report-status side-band-64k", "received_objects":3, "receive_pack_size":243, "non_fast_forward":false, "current_ref":"refs/heads/main" } diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md index 2c57090629..87a3c98508 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md @@ -3,7 +3,7 @@ title: Audited actions intro: You can search the audit log for a wide variety of actions. miniTocMaxHeadingLevel: 3 redirect_from: - - /enterprise/admin/articles/audited-actions/ + - /enterprise/admin/articles/audited-actions - /enterprise/admin/installation/audited-actions - /enterprise/admin/user-management/audited-actions - /admin/user-management/audited-actions diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md index cc9bf504b9..7f6e8c800e 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md @@ -2,7 +2,7 @@ title: Log forwarding intro: '{% data variables.product.product_name %} uses `syslog-ng` to forward {% ifversion ghes %}system{% elsif ghae %}Git{% endif %} and application logs to the server you specify.' redirect_from: - - /enterprise/admin/articles/log-forwarding/ + - /enterprise/admin/articles/log-forwarding - /enterprise/admin/installation/log-forwarding - /enterprise/admin/enterprise-management/log-forwarding - /admin/enterprise-management/log-forwarding diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md index 3d1dc49337..589354bd37 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md @@ -1,7 +1,7 @@ --- -title: Gerenciar webhooks globais -shortTitle: Gerenciar webhooks globais -intro: Você pode configurar webhooks globais para notificar servidores web externos quando os eventos ocorrerem na sua empresa. +title: Managing global webhooks +shortTitle: Manage global webhooks +intro: You can configure global webhooks to notify external web servers when events occur within your enterprise. permissions: Enterprise owners can manage global webhooks for an enterprise account. redirect_from: - /enterprise/admin/user-management/about-global-webhooks @@ -9,7 +9,7 @@ redirect_from: - /admin/user-management/managing-global-webhooks - /admin/user-management/managing-users-in-your-enterprise/managing-global-webhooks - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - - /articles/configuring-webhooks-for-organization-events-in-your-business-account/ + - /articles/configuring-webhooks-for-organization-events-in-your-business-account - /articles/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/configuring-webhooks-for-organization-events-in-your-enterprise-account @@ -23,65 +23,77 @@ topics: - Webhooks --- -## Sobre webhooks globais +## About global webhooks -Você pode usar webhooks globais para notificar um servidor web externo quando os eventos ocorrerem dentro de sua empresa. Você pode configurar o servidor para receber a carga do webhook e, em seguida, executar um aplicativo ou código que monitora, responde ou aplica regras para gestão de usuários e organizações para a sua empresa. Para obter mais informações, consulte "[Webhooks](/developers/webhooks-and-events/webhooks). +You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. For more information, see "[Webhooks](/developers/webhooks-and-events/webhooks)." -Por exemplo, você pode configurar {% data variables.product.product_location %} para enviar um webhook quando alguém criar, excluir ou modificar um repositório ou organização dentro da sua empresa. Você pode configurar o servidor para executar automaticamente uma tarefa depois de receber o webhook. +For example, you can configure {% data variables.product.product_location %} to send a webhook when someone creates, deletes, or modifies a repository or organization within your enterprise. You can configure the server to automatically perform a task after receiving the webhook. -![Lista de webhooks globais](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) +![List of global webhooks](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) {% data reusables.enterprise_user_management.manage-global-webhooks-api %} -## Adicionar um webhook global +## Adding a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. Clique em **Add webhook** (Adicionar webhook). ![Botão Add webhook (Adicionar webhook) na página Webhooks na central de administração](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) -6. Digite a URL em que você gostaria de receber cargas. ![Campo para digitar URL de carga](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) -7. Você também pode usar o menu suspenso **Content type** (Tipo de conteúdo) e clicar em um formato de carga. ![Menu suspenso com opções de tipo de conteúdo](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) -8. Como alternativa, no campo **Secret** (Segredo), digite uma string para usar como chave `secret`. ![Campo para digitar uma string e usar como chave secreta](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) -9. Opcionalmente, se a URL da sua carga HTTPS e você não quiser que {% data variables.product.prodname_ghe_server %} verifique os certificados SSL ao entregar as cargas, selecione **Desabilitar verificação SSL**. Leia as informações sobre a verificação SSL e clique em **I understand my webhooks may not be secure** (Eu entendo que meus webhooks podem não ser seguros). ![Caixa de seleção para desabilitar a verificação SSL](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) +5. Click **Add webhook**. + ![Add webhook button on Webhooks page in Admin center](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) +6. Type the URL where you'd like to receive payloads. + ![Field to type a payload URL](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) +7. Optionally, use the **Content type** drop-down menu, and click a payload format. + ![Drop-down menu listing content type options](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) +8. Optionally, in the **Secret** field, type a string to use as a `secret` key. + ![Field to type a string to use as a secret key](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) +9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. Read the information about SSL verification, then click **I understand my webhooks may not be secure**. + ![Checkbox for disabling SSL verification](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) {% warning %} - **Aviso:** a verificação SSL ajuda a garantir a entrega segura das cargas do hook. Não é recomendável desabilitar a verificação SSL. + **Warning:** SSL verification helps ensure that hook payloads are delivered securely. We do not recommend disabling SSL verification. {% endwarning %} -10. Decida se você quer que o webhook seja acionado para todos os eventos ou somente para determinados eventos. ![Botões com opções de receber cargas para todos os eventos ou para eventos específicos](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) - - Para todos os eventos, selecione **Send me everything** (Enviar tudo). - - Para eventos específicos, selecione **Let me select individual events** (Selecionar eventos individualmente). -11. Se você escolher eventos individuais, selecione os eventos que acionarão o webhook. +10. Decide if you'd like this webhook to trigger for every event or for selected events. + ![Radio buttons with options to receive payloads for every event or selected events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) + - For every event, select **Send me everything**. + - To choose specific events, select **Let me select individual events**. +11. If you chose to select individual events, select the events that will trigger the webhook. {% ifversion ghec %} - ![Caixas de seleção para eventos de webhook globais individuais](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events.png) + ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events.png) {% elsif ghes or ghae %} - ![Caixas de seleção para eventos de webhook globais individuais](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events-ghes-and-ae.png) + ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events-ghes-and-ae.png) {% endif %} -12. Confirme que a caixa de seleção **ativa** esteja marcada. ![Caixa de seleção Active (Ativo) marcada](/assets/images/help/business-accounts/webhook-active.png) -13. Clique em **Add webhook** (Adicionar webhook). +12. Confirm that the **Active** checkbox is selected. + ![Selected Active checkbox](/assets/images/help/business-accounts/webhook-active.png) +13. Click **Add webhook**. -## Editar um webhook global +## Editing a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. Ao lado do webhook que você pretende editar, clique em **Edit** (Editar). ![Botão Edit (Editar) ao lado de um webhook](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) -6. Atualize as configurações do webhook. -7. Clique em **Update webhook** (Atualizar webhook). +5. Next to the webhook you'd like to edit, click **Edit**. + ![Edit button next to a webhook](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) +6. Update the webhook's settings. +7. Click **Update webhook**. -## Excluir um webhook global +## Deleting a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. Ao lado do webhook que você pretende excluir, clique em **Delete** (Excluir). ![Botão Delete (Excluir) ao lado de um webhook](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) -6. Leia as informações sobre como excluir um webhook e clique em **Yes, delete webhook** (Sim, excluir webhook). ![Caixa pop-up com informações de aviso e botão para confirmar a exclusão do webhook](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) +5. Next to the webhook you'd like to delete, click **Delete**. + ![Delete button next to a webhook](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) +6. Read the information about deleting a webhook, then click **Yes, delete webhook**. + ![Pop-up box with warning information and button to confirm deleting the webhook](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) -## Exibir respostas e entregas recentes +## Viewing recent deliveries and responses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. Na lista de webhooks, clique no webhook em que você gostaria de ver entregas. ![Lista de webhooks com links para exibir cada webhook](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) -6. Em "Recent deliveries" (Entregas recentes), clique em uma entrega para ver detalhes. ![Lista das entregas recentes do webhook com links para exibir detalhes](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) +5. In the list of webhooks, click the webhook for which you'd like to see deliveries. + ![List of webhooks with links to view each webhook](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) +6. Under "Recent deliveries", click a delivery to view details. + ![List of the webhook's recent deliveries with links to view details](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md index 7cf6473763..9fc020f88a 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md @@ -1,8 +1,8 @@ --- -title: Pesquisar no log de auditoria -intro: Os administradores do site podem pesquisar uma extensa lista de ações auditadas sobre a empresa. +title: Searching the audit log +intro: Site administrators can search an extensive list of audited actions on the enterprise. redirect_from: - - /enterprise/admin/articles/searching-the-audit-log/ + - /enterprise/admin/articles/searching-the-audit-log - /enterprise/admin/installation/searching-the-audit-log - /enterprise/admin/user-management/searching-the-audit-log - /admin/user-management/searching-the-audit-log @@ -15,37 +15,37 @@ topics: - Enterprise - Logging --- +## Search query syntax -## Sintaxe de consulta de pesquisa +Compose a search query from one or more key:value pairs separated by AND/OR logical operators. -Crie uma consulta de pesquisa com um ou mais pares chave-valor separados por operadores lógicos AND/OR. +Key | Value +--------------:| -------------------------------------------------------- +`actor_id` | ID of the user account that initiated the action +`actor` | Name of the user account that initiated the action +`oauth_app_id` | ID of the OAuth application associated with the action +`action` | Name of the audited action +`user_id` | ID of the user affected by the action +`user` | Name of the user affected by the action +`repo_id` | ID of the repository affected by the action (if applicable) +`repo` | Name of the repository affected by the action (if applicable) +`actor_ip` | IP address from which the action was initiated +`created_at` | Time at which the action occurred +`from` | View from which the action was initiated +`note` | Miscellaneous event-specific information (in either plain text or JSON format) +`org` | Name of the organization affected by the action (if applicable) +`org_id` | ID of the organization affected by the action (if applicable) -| Tecla | Valor | -| --------------:| ----------------------------------------------------------------------------------------- | -| `actor_id` | ID da conta do usuário que iniciou a ação. | -| `actor` | Nome da conta do usuário que iniciou a ação. | -| `oauth_app_id` | ID do aplicativo OAuth associado à ação. | -| `Ação` | Nome da ação auditada | -| `user_id` | ID do usuário afetado pela ação. | -| `usuário` | Nome do usuário afetado pela ação. | -| `repo_id` | ID do repositório afetado pela ação (se aplicável). | -| `repo` | Nome do repositório afetado pela ação (se aplicável). | -| `actor_ip` | Endereço IP do qual a ação foi iniciada. | -| `created_at` | Hora em que a ação ocorreu. | -| `from` | Exibição da qual a ação foi iniciada. | -| `note` | Informações diversas sobre eventos específicos (em texto sem formatação ou formato JSON). | -| `org` | Nome da organização afetada pela ação (se aplicável). | -| `org_id` | ID da organização afetada pela ação (se aplicável). | - -Por exemplo, para ver todas as ações que afetaram o repositório `octocat/Spoon-Knife` desde o início de 2017: +For example, to see all actions that have affected the repository `octocat/Spoon-Knife` since the beginning of 2017: `repo:"octocat/Spoon-Knife" AND created_at:[2017-01-01 TO *]` -Para obter uma lista completa de ações, consulte "[Ações auditadas](/admin/user-management/audited-actions)". +For a full list of actions, see "[Audited actions](/admin/user-management/audited-actions)." -## Pesquisar no log de auditoria +## Searching the audit log {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -4. Digite uma consulta de pesquisa.![Consulta de pesquisa](/assets/images/enterprise/site-admin-settings/search-query.png) +4. Type a search query. +![Search query](/assets/images/enterprise/site-admin-settings/search-query.png) diff --git a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md index 2ad756c56e..5f6e5fb089 100644 --- a/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md +++ b/translations/pt-BR/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md @@ -1,8 +1,8 @@ --- -title: Exibir logs de push -intro: Os administradores do site podem ver uma lista de operações de push do Git para qualquer repositório na empresa. +title: Viewing push logs +intro: Site administrators can view a list of Git push operations for any repository on the enterprise. redirect_from: - - /enterprise/admin/articles/viewing-push-logs/ + - /enterprise/admin/articles/viewing-push-logs - /enterprise/admin/installation/viewing-push-logs - /enterprise/admin/user-management/viewing-push-logs - /admin/user-management/viewing-push-logs @@ -16,30 +16,31 @@ topics: - Git - Logging --- +Push log entries show: -As entradas de log de push mostram o seguinte: +- Who initiated the push +- Whether it was a force push or not +- The branch someone pushed to +- The protocol used to push +- The originating IP address +- The Git client used to push +- The SHA hashes from before and after the operation -- Quem iniciou o push; -- Se o push foi forçado ou não; -- O branch para o qual o push foi feito; -- O protocolo usado para fazer push; -- O endereço IP de origem; -- O cliente Git usado para fazer push; -- Os hashes SHA de antes e depois da operação. +## Viewing a repository's push logs -## Exibir os logs de push do repositório - -1. Efetue o login em {% data variables.product.prodname_ghe_server %} como administrador do site. -1. Navegue até um repositório. -1. No canto superior direito da página do repositório, clique em {% octicon "rocket" aria-label="The rocket ship" %}. ![Ícone de foguete para acessar as configurações de administrador do site](/assets/images/enterprise/site-admin-settings/access-new-settings.png) +1. Sign into {% data variables.product.prodname_ghe_server %} as a site administrator. +1. Navigate to a repository. +1. In the upper-right corner of the repository's page, click {% octicon "rocket" aria-label="The rocket ship" %}. + ![Rocketship icon for accessing site admin settings](/assets/images/enterprise/site-admin-settings/access-new-settings.png) {% data reusables.enterprise_site_admin_settings.security-tab %} -4. Na barra lateral esquerda, clique em **Push Log** (Log de push). ![Guia de log de push](/assets/images/enterprise/site-admin-settings/push-log-tab.png) +4. In the left sidebar, click **Push Log**. +![Push log tab](/assets/images/enterprise/site-admin-settings/push-log-tab.png) {% ifversion ghes %} -## Exibir os logs de push do repositório na linha de comando +## Viewing a repository's push logs on the command-line {% data reusables.enterprise_installation.ssh-into-instance %} -1. No repositório do Git adequado, abra o arquivo de log de auditoria: +1. In the appropriate Git repository, open the audit log file: ```shell ghe-repo <em>owner</em>/<em>repository</em> -c "less audit_log" ``` diff --git a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md index 6ea05fc7fd..3fd9e67aef 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md +++ b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: Fazer downgrade do Git Large File Storage -intro: 'Você pode fazer downgrade de armazenamento e largura de banda do {% data variables.large_files.product_name_short %} em incrementos de 50 GB por mês.' +title: Downgrading Git Large File Storage +intro: 'You can downgrade storage and bandwidth for {% data variables.large_files.product_name_short %} by increments of 50 GB per month.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-git-large-file-storage - - /articles/downgrading-storage-and-bandwidth-for-a-personal-account/ - - /articles/downgrading-storage-and-bandwidth-for-an-organization/ + - /articles/downgrading-storage-and-bandwidth-for-a-personal-account + - /articles/downgrading-storage-and-bandwidth-for-an-organization - /articles/downgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage versions: @@ -16,19 +16,18 @@ topics: - LFS - Organizations - User account -shortTitle: Fazer downgrade no armazenamento do LFS do Git +shortTitle: Downgrade Git LFS storage --- +When you downgrade your number of data packs, your change takes effect on your next billing date. For more information, see "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)." -Quando você faz downgrade do número de pacotes de dados, as alterações entram em vigor na próxima data de cobrança. Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)". - -## Fazer downgrade de armazenamento e largura de banda de uma conta pessoal +## Downgrading storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-remove-data %} {% data reusables.large_files.downgrade_data_packs %} -## Fazer downgrade de armazenamento e largura de banda de uma organização +## Downgrading storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/index.md b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/index.md index 57ee64b469..1705e89890 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/index.md +++ b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/index.md @@ -1,12 +1,12 @@ --- -title: Gerenciar a cobrança do Git Large File Storage +title: Managing billing for Git Large File Storage shortTitle: Git Large File Storage -intro: 'Você pode visualizar a utilização, atualizar e fazer downgrade do {% data variables.large_files.product_name_long %}.' +intro: 'You can view usage for, upgrade, and downgrade {% data variables.large_files.product_name_long %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage - - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account/ - - /articles/managing-large-file-storage-and-bandwidth-for-your-organization/ - - /articles/managing-storage-and-bandwidth-usage/ + - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account + - /articles/managing-large-file-storage-and-bandwidth-for-your-organization + - /articles/managing-storage-and-bandwidth-usage - /articles/managing-billing-for-git-large-file-storage versions: fpt: '*' diff --git a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md index 74ea797db9..524d077114 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md +++ b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: Atualizar o Git Large File Storage -intro: 'Você pode comprar pacotes de dados adicionais para aumentar a cota de largura de banda mensal e a capacidade total de armazenamento do {% data variables.large_files.product_name_short %}.' +title: Upgrading Git Large File Storage +intro: 'You can purchase additional data packs to increase your monthly bandwidth quota and total storage capacity for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-git-large-file-storage - - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account/ - - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization/ + - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account + - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization - /articles/upgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage versions: @@ -16,10 +16,9 @@ topics: - Organizations - Upgrades - User account -shortTitle: Atualizar armazenamento do LFS do Git +shortTitle: Upgrade Git LFS storage --- - -## Comprar mais armazenamento e largura de banda para uma conta pessoal +## Purchasing additional storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -27,7 +26,7 @@ shortTitle: Atualizar armazenamento do LFS do Git {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## Comprar mais armazenamento e largura de banda para uma organização +## Purchasing additional storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} @@ -36,9 +35,9 @@ shortTitle: Atualizar armazenamento do LFS do Git {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## Leia mais +## Further reading -- "[Sobre a cobrança do {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)" -- "[Sobre o uso de armazenamento e largura de banda](/articles/about-storage-and-bandwidth-usage)" -- "[Exibir o uso do {% data variables.large_files.product_name_long %}](/articles/viewing-your-git-large-file-storage-usage)" -- "[Controlar versões em arquivos grandes](/articles/versioning-large-files)" +- "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)" +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Viewing your {% data variables.large_files.product_name_long %} usage](/articles/viewing-your-git-large-file-storage-usage)" +- "[Versioning large files](/articles/versioning-large-files)" diff --git a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md index 253c574892..3cdfaa78d0 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md +++ b/translations/pt-BR/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md @@ -1,10 +1,10 @@ --- -title: Exibir o uso do Git Large File Storage -intro: 'Você pode auditar a cota de largura de banda mensal da sua conta e o armazenamento restante do {% data variables.large_files.product_name_short %}.' +title: Viewing your Git Large File Storage usage +intro: 'You can audit your account''s monthly bandwidth quota and remaining storage for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-git-large-file-storage-usage - - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account/ - - /articles/viewing-storage-and-bandwidth-usage-for-an-organization/ + - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account + - /articles/viewing-storage-and-bandwidth-usage-for-an-organization - /articles/viewing-your-git-large-file-storage-usage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage versions: @@ -15,25 +15,24 @@ topics: - LFS - Organizations - User account -shortTitle: Visualizar o uso do LFS do Git +shortTitle: View Git LFS usage --- - {% data reusables.large_files.owner_quota_only %} {% data reusables.large_files.does_not_carry %} -## Exibir o uso de armazenamento e largura de banda de uma conta pessoal +## Viewing storage and bandwidth usage for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-data %} -## Exibir o uso de armazenamento e largura de banda de uma organização +## Viewing storage and bandwidth usage for an organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.lfs-data %} -## Leia mais +## Further reading -- "[Sobre o uso de armazenamento e largura de banda](/articles/about-storage-and-bandwidth-usage)" -- "[Atualizar o {% data variables.large_files.product_name_long %}](/articles/upgrading-git-large-file-storage/)" +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Upgrading {% data variables.large_files.product_name_long %}](/articles/upgrading-git-large-file-storage/)" diff --git a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md index 97871d519a..6d6d6bba9d 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md +++ b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: Cancelar um app do GitHub Marketplace -intro: 'Você pode cancelar e remover um app do {% data variables.product.prodname_marketplace %} da sua conta a qualquer momento.' +title: Canceling a GitHub Marketplace app +intro: 'You can cancel and remove a {% data variables.product.prodname_marketplace %} app from your account at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/canceling-a-github-marketplace-app - - /articles/canceling-an-app-for-your-personal-account/ - - /articles/canceling-an-app-for-your-organization/ + - /articles/canceling-an-app-for-your-personal-account + - /articles/canceling-an-app-for-your-organization - /articles/canceling-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app versions: @@ -17,30 +17,29 @@ topics: - Organizations - Trials - User account -shortTitle: Cancelar um aplicativo do Marketplace +shortTitle: Cancel a Marketplace app --- +When you cancel an app, your subscription remains active until the end of your current billing cycle. The cancellation takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -Quando você cancela um app, sua assinatura permanece ativa até o fim do ciclo de cobrança atual. O cancelamento entra em vigor na próxima data de cobrança. Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)". - -Quando você cancela uma versão de avaliação gratuita em um plano pago, a assinatura é imediatamente cancelada e você perde acesso ao app. Se você não cancelar a versão de avaliação gratuita dentro do período de avaliação, o método de pagamento registrado para a conta será aplicado para o plano escolhido no fim do período de avaliação. Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)". +When you cancel a free trial on a paid plan, your subscription is immediately canceled and you will lose access to the app. If you don't cancel your free trial within the trial period, the payment method on file for your account will be charged for the plan you chose at the end of the trial period. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## Cancelar um app da sua conta pessoal +## Canceling an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## Cancelar a versão de avaliação gratuita de um app da sua conta pessoal +## Canceling a free trial for an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-free-trial-billing-settings %} {% data reusables.marketplace.cancel-app %} -## Cancelar um app da organização +## Canceling an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -51,7 +50,7 @@ Quando você cancela uma versão de avaliação gratuita em um plano pago, a ass {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## Cancelar a versão de avaliação gratuita de um app da organização +## Canceling a free trial for an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md index 49399ddc62..8a8f94379f 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: Fazer downgrade do plano de cobrança de um app do GitHub Marketplace -intro: 'Se você quiser usar um plano de cobrança diferente, faça downgrade do seu app do {% data variables.product.prodname_marketplace %} a qualquer momento.' +title: Downgrading the billing plan for a GitHub Marketplace app +intro: 'If you''d like to use a different billing plan, you can downgrade your {% data variables.product.prodname_marketplace %} app at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/downgrading-an-app-for-your-personal-account/ - - /articles/downgrading-an-app-for-your-organization/ + - /articles/downgrading-an-app-for-your-personal-account + - /articles/downgrading-an-app-for-your-organization - /articles/downgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,14 +16,13 @@ topics: - Marketplace - Organizations - User account -shortTitle: Downgrade de plano de cobrança +shortTitle: Downgrade billing plan --- - -Quando você faz downgrade de um app, sua assinatura permanece ativa até o final do ciclo de cobrança atual. O downgrade entra em vigor na próxima data de cobrança. Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)". +When you downgrade an app, your subscription remains active until the end of your current billing cycle. The downgrade takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## Fazer downgrade de um app da sua conta pessoal +## Downgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -32,7 +31,7 @@ Quando você faz downgrade de um app, sua assinatura permanece ativa até o fina {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## Fazer downgrade de um app da sua organização +## Downgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -44,6 +43,6 @@ Quando você faz downgrade de um app, sua assinatura permanece ativa até o fina {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## Leia mais +## Further reading -- "[Cancelar um app do {% data variables.product.prodname_marketplace %}](/articles/canceling-a-github-marketplace-app/)" +- "[Canceling a {% data variables.product.prodname_marketplace %} app](/articles/canceling-a-github-marketplace-app/)" diff --git a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/index.md b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/index.md index 02294989d0..3b0caf19f6 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/index.md +++ b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/index.md @@ -1,11 +1,11 @@ --- -title: Gerenciar a cobrança dos apps do GitHub Marketplace -shortTitle: Aplicativos do GitHub Marketplace -intro: 'Você pode atualizar, fazer downgrade ou cancelar apps do {% data variables.product.prodname_marketplace %} a qualquer momento.' +title: Managing billing for GitHub Marketplace apps +shortTitle: GitHub Marketplace apps +intro: 'You can upgrade, downgrade, or cancel {% data variables.product.prodname_marketplace %} apps at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps - - /articles/managing-your-personal-account-s-apps/ - - /articles/managing-your-organization-s-apps/ + - /articles/managing-your-personal-account-s-apps + - /articles/managing-your-organization-s-apps - /articles/managing-billing-for-github-marketplace-apps versions: fpt: '*' diff --git a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md index 9efa03107b..d381202232 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/pt-BR/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: Atualizar o plano de cobrança de um app do GitHub Marketplace -intro: 'É possível atualizar o app do {% data variables.product.prodname_marketplace %} para um plano diferente a qualquer momento.' +title: Upgrading the billing plan for a GitHub Marketplace app +intro: 'You can upgrade your {% data variables.product.prodname_marketplace %} app to a different plan at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/upgrading-an-app-for-your-personal-account/ - - /articles/upgrading-an-app-for-your-organization/ + - /articles/upgrading-an-app-for-your-personal-account + - /articles/upgrading-an-app-for-your-organization - /articles/upgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,12 +16,11 @@ topics: - Organizations - Upgrades - User account -shortTitle: Atualizar plano de cobrança +shortTitle: Upgrade billing plan --- +When you upgrade an app, your payment method is charged a prorated amount based on the time remaining until your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -Quando você atualiza um app, é cobrado na forma de pagamento um valor proporcional com base no tempo restante até a data da próxima cobrança. Para obter mais informações, consulte "[Sobre a cobrança do {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)". - -## Atualizar um app da sua conta pessoal +## Upgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,7 +29,7 @@ Quando você atualiza um app, é cobrado na forma de pagamento um valor proporci {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## Atualizar um app da organização +## Upgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md index 1b7348c65c..30be96c9c4 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md @@ -1,14 +1,14 @@ --- -title: Sobre a cobrança de contas do GitHub -intro: 'O {% data variables.product.company_short %} oferece produtos gratuitos e pagos para cada desenvolvedor ou equipe.' +title: About billing for GitHub accounts +intro: '{% data variables.product.company_short %} offers free and paid products for every developer or team.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-accounts - - /articles/what-is-the-total-cost-of-using-an-organization-account/ - - /articles/what-are-the-costs-of-using-an-organization-account/ - - /articles/what-plan-should-i-choose/ - - /articles/do-you-have-custom-plans/ - - /articles/user-account-billing-plans/ - - /articles/organization-billing-plans/ + - /articles/what-is-the-total-cost-of-using-an-organization-account + - /articles/what-are-the-costs-of-using-an-organization-account + - /articles/what-plan-should-i-choose + - /articles/do-you-have-custom-plans + - /articles/user-account-billing-plans + - /articles/organization-billing-plans - /articles/github-s-billing-plans - /articles/about-billing-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/about-billing-for-github-accounts @@ -21,20 +21,22 @@ topics: - Discounts - Fundamentals - Upgrades -shortTitle: Sobre a cobrança +shortTitle: About billing --- -Para obter mais informações sobre os produtos disponíveis para sua conta, consulte "[Produtos do {% data variables.product.prodname_dotcom %}](/articles/github-s-products)". Você pode ver o preço e uma lista completa dos recursos de cada produto em <{% data variables.product.pricing_url %}>. O {% data variables.product.product_name %} não oferece assinaturas nem produtos personalizados. +For more information about the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data variables.product.product_name %} does not offer custom products or subscriptions. -Você pode optar pela cobrança mensal ou anual, além de poder atualizar ou fazer downgrade da assinatura a qualquer momento. Para obter mais informações, consulte "[Gerenciar cobrança para sua conta do {% data variables.product.prodname_dotcom %}](/articles/managing-billing-for-your-github-account)." +You can choose monthly or yearly billing, and you can upgrade or downgrade your subscription at any time. For more information, see "[Managing billing for your {% data variables.product.prodname_dotcom %} account](/articles/managing-billing-for-your-github-account)." -É possível comprar outros recursos e produtos com suas informações de pagamento existentes do {% data variables.product.product_name %}. Para obter mais informações, consulte "[Sobre a cobrança no {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +You can purchase other features and products with your existing {% data variables.product.product_name %} payment information. For more information, see "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." + +{% data reusables.accounts.accounts-billed-separately %} {% data reusables.user_settings.context_switcher %} {% tip %} -**Dica:** o {% data variables.product.prodname_dotcom %} tem programas para estudantes e docentes acadêmicos, que incluem descontos acadêmicos. Para obter mais informações, visite [{% data variables.product.prodname_education %}](https://education.github.com/). +**Tip:** {% data variables.product.prodname_dotcom %} has programs for verified students and academic faculty, which include academic discounts. For more information, visit [{% data variables.product.prodname_education %}](https://education.github.com/). {% endtip %} diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md index 94838f242b..6209f8ad3b 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md @@ -1,11 +1,11 @@ --- -title: Assinaturas com desconto para contas do GitHub -intro: 'O {% data variables.product.product_name %} oferece descontos para estudantes, professores, instituições educacionais, organizações sem fins lucrativos e bibliotecas.' +title: Discounted subscriptions for GitHub accounts +intro: '{% data variables.product.product_name %} provides discounts to students, educators, educational institutions, nonprofits, and libraries.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts - - /articles/discounted-personal-accounts/ - - /articles/discounted-organization-accounts/ - - /articles/discounted-billing-plans/ + - /articles/discounted-personal-accounts + - /articles/discounted-organization-accounts + - /articles/discounted-billing-plans - /articles/discounted-subscriptions-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts versions: @@ -18,29 +18,28 @@ topics: - Discounts - Nonprofits - User account -shortTitle: Assinaturas com desconto +shortTitle: Discounted subscriptions --- - {% tip %} -**Dica**: os descontos para o {% data variables.product.prodname_dotcom %} não se aplicam a assinaturas para outros recursos e produtos pagos. +**Tip**: Discounts for {% data variables.product.prodname_dotcom %} do not apply to subscriptions for other paid products and features. {% endtip %} -## Descontos para contas pessoais +## Discounts for personal accounts -Além de repositórios públicos e privados ilimitados para alunos e docentes com o {% data variables.product.prodname_free_user %}, os alunos confirmados podem se inscrever no {% data variables.product.prodname_student_pack %} para receber outros benefícios de parceiros do {% data variables.product.prodname_dotcom %}. Para obter mais informações, consulte "[Aplicar a um pacote de desenvolvedor para estudante](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-a-student-developer-pack)". +In addition to the unlimited public and private repositories for students and faculty with {% data variables.product.prodname_free_user %}, verified students can apply for the {% data variables.product.prodname_student_pack %} to receive additional benefits from {% data variables.product.prodname_dotcom %} partners. For more information, see "[Apply for a student developer pack](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-a-student-developer-pack)." -## Descontos para escolas e universidades +## Discounts for schools and universities -Os docentes acadêmicos confirmados podem se inscrever na {% data variables.product.prodname_team %} para atividades de ensino ou pesquisa acadêmica. Para obter mais informações, consulte "[Usar {% data variables.product.prodname_dotcom %} na sua sala de aula e pesquisa](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research)". Também é possível solicitar brindes de material educacional para os alunos. Para obter mais informações, visite [{% data variables.product.prodname_education %}](https://education.github.com/). +Verified academic faculty can apply for {% data variables.product.prodname_team %} for teaching or academic research. For more information, see "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/free-pro-team@latest/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research)." You can also request educational materials goodies for your students. For more information, visit [{% data variables.product.prodname_education %}](https://education.github.com/). -## Descontos para organizações sem fins lucrativos e bibliotecas +## Discounts for nonprofits and libraries -O {% data variables.product.product_name %} oferece gratuitamente o {% data variables.product.prodname_team %} a organizações com repositórios privados ilimitados, colaboradores ilimitados e um recurso completo para qualificação de organizações e bibliotecas como 501(c)3 (ou equivalente). Você pode solicitar um desconto para sua organização na [nossa página de organizações sem fins lucrativos](https://github.com/nonprofit). +{% data variables.product.product_name %} provides free {% data variables.product.prodname_team %} for organizations with unlimited private repositories, unlimited collaborators, and a full feature set to qualifying 501(c)3 (or equivalent) organizations and libraries. You can request a discount for your organization on [our nonprofit page](https://github.com/nonprofit). -Se a sua organização já tiver uma assinatura paga, a última transação dela será reembolsada depois que tiver sido aplicado o desconto para organizações sem fins lucrativos. +If your organization already has a paid subscription, your organization's last transaction will be refunded once your nonprofit discount has been applied. -## Leia mais +## Further reading -- "[Sobre a cobrança no {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)" diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md index 8aa5cf5ba2..cdaa744340 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md @@ -1,20 +1,20 @@ --- -title: Fazer downgrade da sua assinatura do GitHub -intro: 'Você pode fazer o downgrade da assinatura para qualquer tipo de conta em {% data variables.product.product_location %} a qualquer momento.' +title: Downgrading your GitHub subscription +intro: 'You can downgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-your-github-subscription - - /articles/downgrading-your-personal-account-s-billing-plan/ - - /articles/how-do-i-cancel-my-account/ - - /articles/downgrading-a-user-account-to-free/ - - /articles/removing-paid-seats-from-your-organization/ - - /articles/downgrading-your-organization-s-paid-seats/ - - /articles/downgrading-your-organization-s-billing-plan/ - - /articles/downgrading-an-organization-with-per-seat-pricing-to-free/ - - /articles/downgrading-an-organization-with-per-repository-pricing-to-free/ - - /articles/downgrading-your-organization-to-free/ - - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan/ - - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan/ - - /articles/downgrading-your-github-billing-plan/ + - /articles/downgrading-your-personal-account-s-billing-plan + - /articles/how-do-i-cancel-my-account + - /articles/downgrading-a-user-account-to-free + - /articles/removing-paid-seats-from-your-organization + - /articles/downgrading-your-organization-s-paid-seats + - /articles/downgrading-your-organization-s-billing-plan + - /articles/downgrading-an-organization-with-per-seat-pricing-to-free + - /articles/downgrading-an-organization-with-per-repository-pricing-to-free + - /articles/downgrading-your-organization-to-free + - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan + - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan + - /articles/downgrading-your-github-billing-plan - /articles/downgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/downgrading-your-github-subscription versions: @@ -26,63 +26,71 @@ topics: - Organizations - Repositories - User account -shortTitle: Downgrade da assinatura +shortTitle: Downgrade subscription --- +## Downgrading your {% data variables.product.product_name %} subscription -## Rebaixando sua assinatura {% data variables.product.product_name %} +When you downgrade your user account or organization's subscription, pricing and account feature changes take effect on your next billing date. Changes to your paid user account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. For more information, see "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." -Quando você faz o downgrade (rebaixa) a assinatura da sua conta de usuário ou organização, as alterações de preços e recursos da conta fazem efeito a partir da próxima data de faturamento. Alterações em sua conta de usuário paga ou assinatura de organização não afetam assinaturas ou pagamentos para outros recursos pagos {% data variables.product.prodname_dotcom %}. Para obter mais informações, consulte "[Como a atualização ou o downgrade afeta o processo de cobrança?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." +## Downgrading your user account's subscription -## Fazer downgrade da sua assinatura de conta de usuário - -Se você fizer o downgrade da sua conta de usuário de {% data variables.product.prodname_pro %} para {% data variables.product.prodname_free_user %}, a conta perderá o acesso a ferramentas avançadas de revisão de código em repositórios privados. {% data reusables.gated-features.more-info %} +If you downgrade your user account from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, the account will lose access to advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. Em "Plano atual", use o menu suspenso **Editar** e clique em **Fazer downgrade para grátis**. ![Botão Downgrade to free (Fazer downgrade para o Free)](/assets/images/help/billing/downgrade-to-free.png) -5. Leia as informações sobre os recursos aos quais sua organização deixará de ter acesso na próxima data de sua cobrança e clique em **Eu compreendi. Continue com o downgrade**. ![Continuar com o botão de downgrade](/assets/images/help/billing/continue-with-downgrade.png) +1. Under "Current plan", use the **Edit** drop-down and click **Downgrade to Free**. + ![Downgrade to free button](/assets/images/help/billing/downgrade-to-free.png) +5. Read the information about the features your user account will no longer have access to on your next billing date, then click **I understand. Continue with downgrade**. + ![Continue with downgrade button](/assets/images/help/billing/continue-with-downgrade.png) -Se você tiver publicado um site do {% data variables.product.prodname_pages %} em um repositório privado e adicionado um domínio personalizado, remova ou atualize seus registros DNS antes de fazer downgrade do {% data variables.product.prodname_pro %} para {% data variables.product.prodname_free_user %}, a fim de evitar o risco de uma aquisição de domínio. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". +If you published a {% data variables.product.prodname_pages %} site in a private repository and added a custom domain, remove or update your DNS records before downgrading from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, to avoid the risk of a domain takeover. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -## Rebaixando a assinatura da sua organização +## Downgrading your organization's subscription {% data reusables.dotcom_billing.org-billing-perms %} -Se você fizer o downgrade da sua organização de {% data variables.product.prodname_team %} para {% data variables.product.prodname_free_team %}, para uma organização, a conta perderá o acesso a ferramentas avançadas de colaboração e gerenciamento para equipes. +If you downgrade your organization from {% data variables.product.prodname_team %} to {% data variables.product.prodname_free_team %} for an organization, the account will lose access to advanced collaboration and management tools for teams. -Se você fizer o downgrade da sua organização de {% data variables.product.prodname_ghe_cloud %} para {% data variables.product.prodname_team %} ou {% data variables.product.prodname_free_team %}, a conta perderá o acesso a controles avançados de segurança, conformidade e implantação. {% data reusables.gated-features.more-info %} +If you downgrade your organization from {% data variables.product.prodname_ghe_cloud %} to {% data variables.product.prodname_team %} or {% data variables.product.prodname_free_team %}, the account will lose access to advanced security, compliance, and deployment controls. {% data reusables.gated-features.more-info %} {% data reusables.organizations.billing-settings %} -1. Em "Plano atual", use o menu suspenso **Editar** e clique na opção de downgrade que você deseja. ![Botão Downgrade (Fazer downgrade)](/assets/images/help/billing/downgrade-option-button.png) +1. Under "Current plan", use the **Edit** drop-down and click the downgrade option you want. + ![Downgrade button](/assets/images/help/billing/downgrade-option-button.png) {% data reusables.dotcom_billing.confirm_cancel_org_plan %} -## Fazer downgrade da assinatura de uma organização com o preço antigo por repositório +## Downgrading an organization's subscription with legacy per-repository pricing {% data reusables.dotcom_billing.org-billing-perms %} -{% data reusables.dotcom_billing.switch-legacy-billing %} Para obter mais informações, consulte "[Mudar sua organização de um preço por repositório para um preço por usuário](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)". +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[Switching your organization from per-repository to per-user pricing](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. Em "Assinaturas", selecione o menu suspenso "Editar" e clique em **Editar plano**. ![Menu suspenso Editar plano](/assets/images/help/billing/edit-plan-dropdown.png) -1. Em "Billing/Plans" (Cobrança/Planos), ao lado do plano que deseja alterar, clique em **Downgrade**. ![Botão Downgrade (Fazer downgrade)](/assets/images/help/billing/downgrade-plan-option-button.png) -1. Insira o motivo pelo qual você está fazendo o downgrade da sua conta e clique em **Fazer downgrade do plano**. ![Caixa de texto para motivo de downgrade e botão de downgrade](/assets/images/help/billing/downgrade-plan-button.png) +5. Under "Subscriptions", select the "Edit" drop-down, and click **Edit plan**. + ![Edit Plan dropdown](/assets/images/help/billing/edit-plan-dropdown.png) +1. Under "Billing/Plans", next to the plan you want to change, click **Downgrade**. + ![Downgrade button](/assets/images/help/billing/downgrade-plan-option-button.png) +1. Enter the reason you're downgrading your account, then click **Downgrade plan**. + ![Text box for downgrade reason and downgrade button](/assets/images/help/billing/downgrade-plan-button.png) -## Remover estações pagas da sua organização +## Removing paid seats from your organization -Para reduzir o número de estações pagas usadas pela sua organização, remova integrantes dela ou converta integrantes em colaboradores externos e conceda a eles acesso somente a repositórios públicos. Para obter mais informações, consulte: -- "[Remover um integrante da organização](/articles/removing-a-member-from-your-organization)" -- "[Converter um integrante da organização em colaborador externo](/articles/converting-an-organization-member-to-an-outside-collaborator)" -- "[Gerenciar o acesso de um indivíduo a um repositório da organização](/articles/managing-an-individual-s-access-to-an-organization-repository)" +To reduce the number of paid seats your organization uses, you can remove members from your organization or convert members to outside collaborators and give them access to only public repositories. For more information, see: +- "[Removing a member from your organization](/articles/removing-a-member-from-your-organization)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" {% data reusables.organizations.billing-settings %} -1. Em "Plano atual", use o menu suspenso **Editar** e clique em **Remover estações**. ![menu suspenso para remover estações](/assets/images/help/billing/remove-seats-dropdown.png) -1. Em "Remove seats" (Remover estações), selecione o número de estações em que você deseja fazer downgrade. ![opção de remover estações](/assets/images/help/billing/remove-seats-amount.png) -1. Revise as informações sobre seu novo pagamento na sua próxima data de cobrança e clique em **Remove seats** (Remover estações). ![botão de remover estações](/assets/images/help/billing/remove-seats-button.png) +1. Under "Current plan", use the **Edit** drop-down and click **Remove seats**. + ![remove seats dropdown](/assets/images/help/billing/remove-seats-dropdown.png) +1. Under "Remove seats", select the number of seats you'd like to downgrade to. + ![remove seats option](/assets/images/help/billing/remove-seats-amount.png) +1. Review the information about your new payment on your next billing date, then click **Remove seats**. + ![remove seats button](/assets/images/help/billing/remove-seats-button.png) -## Leia mais +## Further reading -- "[Produtos do {% data variables.product.prodname_dotcom %}](/articles/github-s-products)" -- "[Como a atualização ou o downgrade afetam o processo de cobrança?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" -- "[Sobre a cobrança no {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)" -- "[Remover forma de pagamento](/articles/removing-a-payment-method)" -- "[Sobre preços por usuário](/articles/about-per-user-pricing)" +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +- "[Removing a payment method](/articles/removing-a-payment-method)" +- "[About per-user pricing](/articles/about-per-user-pricing)" diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/index.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/index.md index f2b6ec6a40..7801363423 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/index.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/index.md @@ -1,17 +1,17 @@ --- -title: Gerenciar a cobrança de sua conta GitHub -shortTitle: Sua conta no GitHub -intro: '{% ifversion fpt %}{% data variables.product.product_name %} oferece produtos grátis e pagos para cada conta. Você pode atualizar, fazer o downgrade e visualizar as alterações pendentes da assinatura da sua conta a qualquer momento.{% elsif ghec or ghes or ghae %}Você pode gerenciar a cobrança para {% data variables.product.product_name %}{% ifversion ghae %}.{% elsif ghec or ghes %} a partir da sua conta corporativa em {% data variables.product.prodname_dotcom_the_website %}.{% endif %}{% endif %}' +title: Managing billing for your GitHub account +shortTitle: Your GitHub account +intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade, downgrade, and view pending changes to your account''s subscription at any time.{% elsif ghec or ghes or ghae %}You can manage billing for {% data variables.product.product_name %}{% ifversion ghae %}.{% elsif ghec or ghes %} from your enterprise account on {% data variables.product.prodname_dotcom_the_website %}.{% endif %}{% endif %}' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account - - /categories/97/articles/ - - /categories/paying-for-user-accounts/ - - /articles/paying-for-your-github-user-account/ - - /articles/managing-billing-on-github/ - - /articles/changing-your-personal-account-s-billing-plan/ - - /categories/billing/ - - /categories/3/articles/ - - /articles/managing-your-organization-s-paid-seats/ + - /categories/97/articles + - /categories/paying-for-user-accounts + - /articles/paying-for-your-github-user-account + - /articles/managing-billing-on-github + - /articles/changing-your-personal-account-s-billing-plan + - /categories/billing + - /categories/3/articles + - /articles/managing-your-organization-s-paid-seats - /articles/managing-billing-for-your-github-account versions: fpt: '*' diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md index 82e5a8e8b3..fee3631236 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md @@ -1,22 +1,23 @@ --- title: Upgrading your GitHub subscription intro: 'You can upgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' +miniTocMaxHeadingLevel: 3 redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-your-github-subscription - - /articles/upgrading-your-personal-account-s-billing-plan/ - - /articles/upgrading-your-personal-account/ - - /articles/upgrading-your-personal-account-from-free-to-a-paid-account/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal/ - - /articles/500-error-while-upgrading/ - - /articles/upgrading-your-organization-s-billing-plan/ - - /articles/changing-your-organization-billing-plan/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal/ - - /articles/upgrading-your-organization-account/ - - /articles/switching-from-per-repository-to-per-user-pricing/ - - /articles/adding-seats-to-your-organization/ - - /articles/upgrading-your-github-billing-plan/ + - /articles/upgrading-your-personal-account-s-billing-plan + - /articles/upgrading-your-personal-account + - /articles/upgrading-your-personal-account-from-free-to-a-paid-account + - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal + - /articles/500-error-while-upgrading + - /articles/upgrading-your-organization-s-billing-plan + - /articles/changing-your-organization-billing-plan + - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal + - /articles/upgrading-your-organization-account + - /articles/switching-from-per-repository-to-per-user-pricing + - /articles/adding-seats-to-your-organization + - /articles/upgrading-your-github-billing-plan - /articles/upgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/upgrading-your-github-subscription versions: @@ -30,9 +31,16 @@ topics: - User account shortTitle: Upgrade your subscription --- + +## About subscription upgrades + +{% data reusables.accounts.accounts-billed-separately %} + +When you upgrade the subscription for an account, the upgrade changes the paid features available for that account only, and not any other accounts you use. + ## Upgrading your personal account's subscription -You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} +You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories owned by your user account. Upgrading your personal account does not affect any organizations you may manage or repositories owned by those organizations. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -45,9 +53,13 @@ You can upgrade your personal account from {% data variables.product.prodname_fr {% data reusables.dotcom_billing.enter-payment-info %} {% data reusables.dotcom_billing.finish_upgrade %} -## Upgrading your organization's subscription +## Managing your organization's subscription -You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. {% data reusables.gated-features.more-info-org-products %} +You can upgrade your organization's subscription to a different product, add seats to your existing product, or switch from per-repository to per-user pricing. + +### Upgrading your organization's subscription + +You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. Upgrading an organization does not affect your personal account or repositories owned by your personal account. {% data reusables.gated-features.more-info-org-products %} {% data reusables.dotcom_billing.org-billing-perms %} @@ -66,7 +78,7 @@ If you upgraded your organization to {% data variables.product.prodname_ghe_clou If you'd like to use an enterprise account with {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## Adding seats to your organization +### Adding seats to your organization If you'd like additional users to have access to your {% data variables.product.prodname_team %} organization's private repositories, you can purchase more seats anytime. @@ -75,7 +87,7 @@ If you'd like additional users to have access to your {% data variables.product. {% data reusables.dotcom_billing.number-of-seats %} {% data reusables.dotcom_billing.confirm-add-seats %} -## Switching your organization from per-repository to per-user pricing +### Switching your organization from per-repository to per-user pricing {% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." diff --git a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md index e25b14208f..6b946551a5 100644 --- a/translations/pt-BR/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md +++ b/translations/pt-BR/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md @@ -1,11 +1,11 @@ --- -title: Exibir e gerenciar alterações pendentes na sua assinatura -intro: É possível exibir e cancelar alterações pendentes em assinaturas antes que elas tenham efeito na próxima data de cobrança. +title: Viewing and managing pending changes to your subscription +intro: You can view and cancel pending changes to your subscriptions before they take effect on your next billing date. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-and-managing-pending-changes-to-your-subscription - - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-billing-plan/ + - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-billing-plan - /articles/viewing-and-managing-pending-changes-to-your-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription versions: @@ -15,14 +15,13 @@ type: how_to topics: - Organizations - User account -shortTitle: Alterações de assinatura pendentes +shortTitle: Pending subscription changes --- +You can cancel pending changes to your account's subscription as well as pending changes to your subscriptions to other paid features and products. -Você pode cancelar alterações pendentes na assinatura da sua conta ou de outros recursos e produtos pagos. +When you cancel a pending change, your subscription will not change on your next billing date (unless you make a subsequent change to your subscription before your next billing date). -Quando você cancela uma alteração pendente, sua assinatura não é alterada na próxima data de cobrança (a menos que você faça uma alteração subsequente na assinatura antes da próxima data de cobrança). - -## Exibir e gerenciar alterações pendentes na assinatura da sua conta pessoal +## Viewing and managing pending changes to your personal account's subscription {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,13 +29,13 @@ Quando você cancela uma alteração pendente, sua assinatura não é alterada n {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## Exibir e gerenciar alterações pendentes na assinatura da sua organização +## Viewing and managing pending changes to your organization's subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.review-pending-changes %} {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## Leia mais +## Further reading -- "[Produtos do {% data variables.product.prodname_dotcom %}](/articles/github-s-products)" +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md index 060d303e44..0454458409 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md @@ -1,16 +1,16 @@ --- -title: Adicionar informações aos recibos -intro: 'Você pode adicionar informações extras aos recibos do {% data variables.product.product_name %}, como imposto ou informações contábeis exigidas pela empresa ou pelo país.' +title: Adding information to your receipts +intro: 'You can add extra information to your {% data variables.product.product_name %} receipts, such as tax or accounting information required by your company or country.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-information-to-your-receipts - - /articles/can-i-add-my-credit-card-number-to-my-receipts/ - - /articles/can-i-add-extra-information-to-my-receipts--2/ - - /articles/how-can-i-add-extra-information-to-my-receipts/ - - /articles/could-you-add-my-card-number-to-my-receipts/ - - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts/ - - /articles/adding-information-to-your-personal-account-s-receipts/ - - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts/ - - /articles/adding-information-to-your-organization-s-receipts/ + - /articles/can-i-add-my-credit-card-number-to-my-receipts + - /articles/can-i-add-extra-information-to-my-receipts--2 + - /articles/how-can-i-add-extra-information-to-my-receipts + - /articles/could-you-add-my-card-number-to-my-receipts + - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts + - /articles/adding-information-to-your-personal-account-s-receipts + - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts + - /articles/adding-information-to-your-organization-s-receipts - /articles/adding-information-to-your-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-information-to-your-receipts versions: @@ -21,29 +21,28 @@ topics: - Organizations - Receipts - User account -shortTitle: Adicionar aos seus recibos +shortTitle: Add to your receipts --- - -Seus recibos incluem sua assinatura do {% data variables.product.prodname_dotcom %}, bem como qualquer assinatura para [outros recursos e produtos pagos](/articles/about-billing-on-github). +Your receipts include your {% data variables.product.prodname_dotcom %} subscription as well as any subscriptions for [other paid features and products](/articles/about-billing-on-github). {% warning %} -**Aviso**: por motivos de segurança, é enfaticamente recomendável não incluir informações confidenciais ou financeiras (como números de cartão de crédito) nos recibos. +**Warning**: For security reasons, we strongly recommend against including any confidential or financial information (such as credit card numbers) on your receipts. {% endwarning %} -## Adicionar informações aos recibos da sua conta pessoal +## Adding information to your personal account's receipts {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.user_settings.payment-info-link %} {% data reusables.dotcom_billing.extra_info_receipt %} -## Adicionar informações ao recibos da sua organização +## Adding information to your organization's receipts {% note %} -**Observação**: {% data reusables.dotcom_billing.org-billing-perms %} +**Note**: {% data reusables.dotcom_billing.org-billing-perms %} {% endnote %} diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md index e47c79d118..bb9fc0e76c 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md @@ -1,20 +1,20 @@ --- -title: Adicionar ou editar uma forma de pagamento -intro: Você pode adicionar uma forma de pagamento à sua conta ou atualizar a forma atual a qualquer momento. +title: Adding or editing a payment method +intro: You can add a payment method to your account or update your account's existing payment method at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-or-editing-a-payment-method - - /articles/updating-your-personal-account-s-payment-method/ - - /articles/how-do-i-update-my-credit-card/ - - /articles/updating-your-account-s-credit-card/ - - /articles/updating-your-personal-account-s-credit-card/ - - /articles/updating-your-personal-account-s-paypal-information/ - - /articles/does-github-provide-invoicing/ - - /articles/switching-payment-methods-for-your-personal-account/ - - /articles/paying-for-your-github-organization-account/ - - /articles/updating-your-organization-s-credit-card/ - - /articles/updating-your-organization-s-paypal-information/ - - /articles/updating-your-organization-s-payment-method/ - - /articles/switching-payment-methods-for-your-organization/ + - /articles/updating-your-personal-account-s-payment-method + - /articles/how-do-i-update-my-credit-card + - /articles/updating-your-account-s-credit-card + - /articles/updating-your-personal-account-s-credit-card + - /articles/updating-your-personal-account-s-paypal-information + - /articles/does-github-provide-invoicing + - /articles/switching-payment-methods-for-your-personal-account + - /articles/paying-for-your-github-organization-account + - /articles/updating-your-organization-s-credit-card + - /articles/updating-your-organization-s-paypal-information + - /articles/updating-your-organization-s-payment-method + - /articles/switching-payment-methods-for-your-organization - /articles/adding-or-editing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-or-editing-a-payment-method versions: @@ -24,29 +24,31 @@ type: how_to topics: - Organizations - User account -shortTitle: Gerenciar um método de pagamento +shortTitle: Manage a payment method --- - {% data reusables.dotcom_billing.payment-methods %} {% data reusables.dotcom_billing.same-payment-method %} -Não fornecemos fatura nem damos suporte a ordens de compra para contas pessoais. Enviamos recibos por e-mail mensal ou anualmente na data de cobrança da sua conta. Se seu país, empresa ou contador exigir que seus recibos forneçam mais detalhes, você também pode [adicionar informações extras](/articles/adding-information-to-your-personal-account-s-receipts). +We don't provide invoicing or support purchase orders for personal accounts. We email receipts monthly or yearly on your account's billing date. If your company, country, or accountant requires your receipts to provide more detail, you can also [add extra information](/articles/adding-information-to-your-personal-account-s-receipts) to your receipts. -## Atualizar a forma de pagamento da sua conta pessoal +## Updating your personal account's payment method {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.update_payment_method %} -1. Se sua conta tiver informações de cobrança existentes que você deseja atualizar, clique em **Editar**. ![Botão de Cobrança de novo cartão](/assets/images/help/billing/billing-information-edit-button.png) +1. If your account has existing billing information that you want to update, click **Edit**. +![Billing New Card button](/assets/images/help/billing/billing-information-edit-button.png) {% data reusables.dotcom_billing.enter-billing-info %} -1. Se sua conta tem um método de pagamento existente que você deseja atualizar, clique em **Editar**. ![Botão de Cobrança de novo cartão](/assets/images/help/billing/billing-payment-method-edit-button.png) +1. If your account has an existing payment method that you want to update, click **Edit**. +![Billing New Card button](/assets/images/help/billing/billing-payment-method-edit-button.png) {% data reusables.dotcom_billing.enter-payment-info %} -## Atualizar a forma de pagamento da sua organização +## Updating your organization's payment method {% data reusables.dotcom_billing.org-billing-perms %} -Se sua organização estiver fora dos EUA ou se você estiver usando uma conta de verificação corporativa para pagar pelo {% data variables.product.product_name %}, o PayPal pode ser uma forma prática de pagamento. +If your organization is outside of the US or if you're using a corporate checking account to pay for {% data variables.product.product_name %}, PayPal could be a helpful method of payment. {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.update_payment_method %} -1. Se sua conta tiver um cartão de crédito existente que você deseja atualizar, clique em **Novo Cartão**. ![Botão de Cobrança de novo cartão](/assets/images/help/billing/billing-new-card-button.png) +1. If your account has an existing credit card that you want to update, click **New Card**. +![Billing New Card button](/assets/images/help/billing/billing-new-card-button.png) {% data reusables.dotcom_billing.enter-payment-info %} diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md index 547926adf6..539ae1e931 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md @@ -1,11 +1,11 @@ --- -title: Alterar a duração do ciclo de cobrança -intro: 'Você pode pagar pela assinatura da sua conta, bem como de outros recursos e produtos pagos em um ciclo de cobrança mensal ou anual.' +title: Changing the duration of your billing cycle +intro: You can pay for your account's subscription and other paid features and products on a monthly or yearly billing cycle. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle - - /articles/monthly-and-yearly-billing/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-organization/ + - /articles/monthly-and-yearly-billing + - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account + - /articles/switching-between-monthly-and-yearly-billing-for-your-organization - /articles/changing-the-duration-of-your-billing-cycle - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle versions: @@ -16,30 +16,31 @@ topics: - Organizations - Repositories - User account -shortTitle: Ciclo de cobrança +shortTitle: Billing cycle --- +When you change your billing cycle's duration, your {% data variables.product.prodname_dotcom %} subscription, along with any other paid features and products, will be moved to your new billing cycle on your next billing date. -Quando você altera a duração do ciclo de cobrança, sua assinatura do {% data variables.product.prodname_dotcom %}, em conjunto com outros recursos e produtos pagos, são movidos para o novo ciclo de cobrança na próxima data de cobrança. - -## Alterar a duração do ciclo de cobrança da sua conta pessoal +## Changing the duration of your personal account's billing cycle {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -## Alterar a duração do ciclo de cobrança da organização +## Changing the duration of your organization's billing cycle {% data reusables.dotcom_billing.org-billing-perms %} -### Alterar a duração de uma assinatura por usuário +### Changing the duration of a per-user subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -### Alterar a duração de um plano herdado por repositório +### Changing the duration of a legacy per-repository plan {% data reusables.organizations.billing-settings %} -4. Em "Billing overview" (Visão geral de cobrança), clique em **Change plan** (Alterar plano). ![Botão de alteração de plano na visão geral de cobrança](/assets/images/help/billing/billing_overview_change_plan.png) -5. No canto superior direito, clique em **Switch to monthly billing** (Alternar para cobrança mensal) ou **Switch to yearly billing** (Alternar para cobrança anual). ![Seção de informações de cobrança](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) +4. Under "Billing overview", click **Change plan**. + ![Billing overview change plan button](/assets/images/help/billing/billing_overview_change_plan.png) +5. At the top right corner, click **Switch to monthly billing** or **Switch to yearly billing**. + ![Billing information section](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/index.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/index.md index 987b0cdaeb..c8d94f174f 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/index.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/index.md @@ -1,15 +1,15 @@ --- -title: Gerenciar as configurações de cobrança do GitHub -shortTitle: Configurações de faturamento -intro: 'As configurações de cobrança de sua conta se aplicam à todos os recursos pagos ou produtos que você adiciona à conta. É possível gerenciar configurações como forma de pagamento, ciclo de cobrança e e-mail de cobrança. Você também pode visualizar informações de cobrança, como sua assinatura, data de cobrança, histórico de pagamento e recibos anteriores.' +title: Managing your GitHub billing settings +shortTitle: Billing settings +intro: 'Your account''s billing settings apply to every paid feature or product you add to the account. You can manage settings like your payment method, billing cycle, and billing email. You can also view billing information such as your subscription, billing date, payment history, and past receipts.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings - - /articles/viewing-and-managing-your-personal-account-s-billing-information/ - - /articles/paying-for-user-accounts/ - - /articles/viewing-and-managing-your-organization-s-billing-information/ - - /articles/paying-for-organization-accounts/ - - /categories/paying-for-organization-accounts/articles/ - - /categories/99/articles/ + - /articles/viewing-and-managing-your-personal-account-s-billing-information + - /articles/paying-for-user-accounts + - /articles/viewing-and-managing-your-organization-s-billing-information + - /articles/paying-for-organization-accounts + - /categories/paying-for-organization-accounts/articles + - /categories/99/articles - /articles/managing-your-github-billing-settings versions: fpt: '*' diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md index 6e9257c061..2a416cdc8f 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md @@ -1,11 +1,11 @@ --- -title: Resgatar um cupom -intro: 'Se você tiver um cupom, poderá resgatá-lo em uma assinatura {% data variables.product.prodname_dotcom %} paga.' +title: Redeeming a coupon +intro: 'If you have a coupon, you can redeem it towards a paid {% data variables.product.prodname_dotcom %} subscription.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/redeeming-a-coupon - - /articles/where-do-i-add-a-coupon-code/ - - /articles/redeeming-a-coupon-for-your-personal-account/ - - /articles/redeeming-a-coupon-for-organizations/ + - /articles/where-do-i-add-a-coupon-code + - /articles/redeeming-a-coupon-for-your-personal-account + - /articles/redeeming-a-coupon-for-organizations - /articles/redeeming-a-coupon - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/redeeming-a-coupon versions: @@ -18,23 +18,24 @@ topics: - Organizations - User account --- - -O {% data variables.product.product_name %} não poderá efetuar um reembolso se uma conta for paga antes da aplicação de um cupom. Também não poderemos transferir um cupom resgatado ou fornecer um novo cupom se você aplicar o cupom na conta errada. Verifique se você está aplicando o cupom na conta correta antes de resgatá-lo. +{% data variables.product.product_name %} can't issue a refund if you pay for an account before applying a coupon. We also can't transfer a redeemed coupon or give you a new coupon if you apply it to the wrong account. Confirm that you're applying the coupon to the correct account before you redeem a coupon. {% data reusables.dotcom_billing.coupon-expires %} -Não é possível aplicar cupons em planos pagos para apps {% data variables.product.prodname_marketplace %}. +You cannot apply coupons to paid plans for {% data variables.product.prodname_marketplace %} apps. -## Resgatar um cupom na conta pessoal +## Redeeming a coupon for your personal account {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. Em "Redeem your coupon" (Resgatar um cupom), clique em **Choose** (Escolher) ao lado do nome de usuário da sua conta *pessoal*. ![Botão Choose (Escolher)](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) +4. Under "Redeem your coupon", click **Choose** next to your *personal* account's username. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) {% data reusables.dotcom_billing.redeem_coupon %} -## Resgatar um cupom na organização +## Redeeming a coupon for your organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. Em "Redeem your coupon" (Resgatar um cupom), clique em **Choose** (Escolher) ao lado da *organização* na qual deseja aplicar o cupom. Se quiser aplicar o cupom em uma organização que ainda não existe, clique em **Create a new organization** (Criar organização). ![Botão Choose (Escolher)](/assets/images/help/settings/redeem-coupon-choose-button.png) +4. Under "Redeem your coupon", click **Choose** next to the *organization* you want to apply the coupon to. If you'd like to apply your coupon to a new organization that doesn't exist yet, click **Create a new organization**. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button.png) {% data reusables.dotcom_billing.redeem_coupon %} diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md index 4248b2ee5b..8e7fe2ed0b 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md @@ -1,12 +1,12 @@ --- -title: Remover uma forma de pagamento -intro: 'Se não estiver usando a forma de pagamento para as assinaturas pagas no {% data variables.product.prodname_dotcom %}, você poderá removê-la para deixar de armazená-la na conta.' +title: Removing a payment method +intro: 'If you aren''t using your payment method for any paid subscriptions on {% data variables.product.prodname_dotcom %}, you can remove the payment method so it''s no longer stored in your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/removing-a-payment-method - - /articles/removing-a-credit-card-associated-with-your-user-account/ - - /articles/removing-a-payment-method-associated-with-your-user-account/ - - /articles/removing-a-credit-card-associated-with-your-organization/ - - /articles/removing-a-payment-method-associated-with-your-organization/ + - /articles/removing-a-credit-card-associated-with-your-user-account + - /articles/removing-a-payment-method-associated-with-your-user-account + - /articles/removing-a-credit-card-associated-with-your-organization + - /articles/removing-a-payment-method-associated-with-your-organization - /articles/removing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/removing-a-payment-method versions: @@ -17,18 +17,17 @@ topics: - Organizations - User account --- - -Se estiver pagando a assinatura do {% data variables.product.product_name %} com um cupom e não estiver usando a forma de pagamento para qualquer outro [recurso ou produto pago](/articles/about-billing-on-github) no {% data variables.product.product_name %}, você poderá remover as informações do cartão de crédito ou do PayPal. +If you're paying for your {% data variables.product.product_name %} subscription with a coupon, and you aren't using your payment method for any [other paid features or products](/articles/about-billing-on-github) on {% data variables.product.product_name %}, you can remove your credit card or PayPal information. {% data reusables.dotcom_billing.coupon-expires %} {% tip %} -**Dica:** se você [fizer downgrade da conta para um produto grátis](/articles/downgrading-your-github-subscription) e não tiver assinaturas de outros recursos ou produtos pagos, removeremos automaticamente suas informações de pagamento. +**Tip:** If you [downgrade your account to a free product](/articles/downgrading-your-github-subscription) and you don't have subscriptions for any other paid features or products, we'll automatically remove your payment information. {% endtip %} -## Remover a forma de pagamento da conta pessoal +## Removing your personal account's payment method {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -36,7 +35,7 @@ Se estiver pagando a assinatura do {% data variables.product.product_name %} com {% data reusables.dotcom_billing.remove-payment-method %} {% data reusables.dotcom_billing.remove_payment_info %} -## Remover a forma de pagamento da organização +## Removing your organization's payment method {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md index f28bf8530a..66805ec15f 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md @@ -1,12 +1,12 @@ --- -title: Definir seu e-mail de cobrança -intro: 'O e-mail de cobrança da conta é o endereço para o qual o {% data variables.product.product_name %} envia recibos e outras comunicações relacionadas a cobranças.' +title: Setting your billing email +intro: 'Your account''s billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-your-billing-email - - /articles/setting-your-personal-account-s-billing-email/ - - /articles/can-i-change-what-email-address-received-my-github-receipt/ - - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email/' - - /articles/setting-your-organization-s-billing-email/ + - /articles/setting-your-personal-account-s-billing-email + - /articles/can-i-change-what-email-address-received-my-github-receipt + - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email' + - /articles/setting-your-organization-s-billing-email - /articles/setting-your-billing-email - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/setting-your-billing-email versions: @@ -16,51 +16,58 @@ type: how_to topics: - Organizations - User account -shortTitle: E-mail de cobrança +shortTitle: Billing email --- +## Setting your personal account's billing email -## Configurar o e-mail de cobrança da conta pessoal +Your personal account's primary email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. -O e-mail principal da conta pessoal é o endereço para o qual o {% data variables.product.product_name %} envia recibos e outras comunicações relacionadas a cobranças. +Your primary email address is the first email listed in your account email settings. +We also use your primary email address as our billing email address. -O endereço de e-mail principal é o primeiro e-mail relacionado nas configurações de e-mail da conta. O endereço de e-mail principal também é usado como endereço de e-mail de cobrança. +If you'd like to change your billing email, see "[Changing your primary email address](/articles/changing-your-primary-email-address)." -Se quiser alterar o e-mail de cobrança, consulte "[Alterar endereço de e-mail principal](/articles/changing-your-primary-email-address)". +## Setting your organization's billing email -## Configurar o e-mail de cobrança da organização - -O e-mail de cobrança da organização é o endereço para o qual o {% data variables.product.product_name %} envia recibos e outras comunicações relacionadas a cobranças. O endereço de e-mail não precisa ser exclusivo para a conta da organização. +Your organization's billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. The email address does not need to be unique to the organization account. {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} -1. Em "Gerenciamento de cobrança", à direita do endereço de e-mail de cobrança, clique em **Editar**. ![E-mails de cobrança atual](/assets/images/help/billing/billing-change-email.png) -2. Insira um endereço de e-mail válido e clique **Atualizar**. ![Altere modal do endereço de e-mail de cobrança](/assets/images/help/billing/billing-change-email-modal.png) +1. Under "Billing management", to the right of the billing email address, click **Edit**. + ![Current billing emails](/assets/images/help/billing/billing-change-email.png) +2. Type a valid email address, then click **Update**. + ![Change billing email address modal](/assets/images/help/billing/billing-change-email-modal.png) -## Gerenciar destinatários adicionais para o e-mail de cobrança da sua organização +## Managing additional recipients for your organization's billing email -Se você tiver usuários que desejem receber relatórios de cobrança, você poderá adicionar seus endereços de e-mail como destinatários de e-mail de cobrança. Esse recurso está disponível apenas para organizações que não são gerenciadas por uma empresa. +If you have users that want to receive billing reports, you can add their email addresses as billing email recipients. This feature is only available to organizations that are not managed by an enterprise. {% data reusables.dotcom_billing.org-billing-perms %} -### Adicionar um destinatário para notificações de cobrança +### Adding a recipient for billing notifications {% data reusables.organizations.billing-settings %} -1. Em gerenciamento de cobrança, à direita "destinatários de e-mail", clique em **Adicionar**. ![Adicionar destinatário](/assets/images/help/billing/billing-add-email-recipient.png) -1. Digite o endereço de e-mail do destinatário e, em seguida, clique em **Adicionar**. ![Adicionar modal de destinatário](/assets/images/help/billing/billing-add-email-recipient-modal.png) +1. Under "Billing management", to the right of "Email recipients", click **Add**. + ![Add recipient](/assets/images/help/billing/billing-add-email-recipient.png) +1. Type the email address of the recipient, then click **Add**. + ![Add recipient modal](/assets/images/help/billing/billing-add-email-recipient-modal.png) -### Alterar o destinatário primário para notificações de cobrança +### Changing the primary recipient for billing notifications -Deve-se sempre designar um endereço como o destinatário principal. O endereço com esta designação não pode ser removido até que um novo destinatário principal seja selecionado. +One address must always be designated as the primary recipient. The address with this designation can't be removed until a new primary recipient is selected. {% data reusables.organizations.billing-settings %} -1. Em "Gestão de cobrança", encontre o endereço de e-mail que deseja definir como principal destinatário. -1. À direita do endereço de e-mail, use o menu suspenso "Editar" e, em seguida, clique em **Marcar como primário**. ![Marque o destinatário primário](/assets/images/help/billing/billing-change-primary-email-recipient.png) +1. Under "Billing management", find the email address you want to set as the primary recipient. +1. To the right of the email address, use the "Edit" drop-down menu, and click **Mark as primary**. + ![Mark primary recipient](/assets/images/help/billing/billing-change-primary-email-recipient.png) -### Remover um destinatário das notificações de cobrança +### Removing a recipient from billing notifications {% data reusables.organizations.billing-settings %} -1. Em "Destinatários de e-mail", encontre o endereço de e-mail que deseja remover. -1. Para inserir o usuário na lista, clique em **Editar**. ![Editar destinatário](/assets/images/help/billing/billing-edit-email-recipient.png) -1. À direita do endereço de e-mail, use o menu suspenso "Editar" e clique em **Remover**. ![Remover destinatário](/assets/images/help/billing/billing-remove-email-recipient.png) -1. Revise a instrução de confirmação e clique em **Remover**. +1. Under "Email recipients", find the email address you want to remove. +1. For the user's entry in the list, click **Edit**. + ![Edit recipient](/assets/images/help/billing/billing-edit-email-recipient.png) +1. To the right of the email address, use the "Edit" drop-down menu, and click **Remove**. + ![Remove recipient](/assets/images/help/billing/billing-remove-email-recipient.png) +1. Review the confirmation prompt, then click **Remove**. diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md index 41eae14c1a..efa7701ca9 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md @@ -1,9 +1,9 @@ --- -title: Solucionar problemas de cobrança no cartão de crédito recusada -intro: 'Se o cartão de crédito que você usa para pagar o {% data variables.product.product_name %} for recusado, você poderá tomar várias medidas para garantir que os pagamentos sejam efetuados e que sua conta não seja bloqueada.' +title: Troubleshooting a declined credit card charge +intro: 'If the credit card you use to pay for {% data variables.product.product_name %} is declined, you can take several steps to ensure that your payments go through and that you are not locked out of your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/troubleshooting-a-declined-credit-card-charge - - /articles/what-do-i-do-if-my-card-is-declined/ + - /articles/what-do-i-do-if-my-card-is-declined - /articles/troubleshooting-a-declined-credit-card-charge - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge versions: @@ -12,27 +12,26 @@ versions: type: how_to topics: - Troubleshooting -shortTitle: Cobrança de cartão de crédito recusada +shortTitle: Declined credit card charge --- +If your card is declined, we'll send you an email about why the payment was declined. You'll have a few days to resolve the problem before we try charging you again. -Se o seu cartão for recusado, nós enviaremos um e-mail para você informando o motivo da recusa do pagamento. Você terá alguns dias para resolver o problema antes que tentemos fazer a cobrança novamente. +## Check your card's expiration date -## Verificar a data de expiração do cartão +If your card has expired, you'll need to update your account's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -Se o seu cartão tiver expirado, você precisará atualizar as informações de pagamento da sua conta. Para obter mais informações, consulte "[Adicionar ou editar forma de pagamento](/articles/adding-or-editing-a-payment-method)". +## Verify your bank's policy on card restrictions -## Verificar a política do banco sobre restrições no cartão +Some international banks place restrictions on international, e-commerce, and automatically recurring transactions. If you're having trouble making a payment with your international credit card, call your bank to see if there are any restrictions on your card. -Alguns bancos internacionais impõem restrições em transações internacionais, de comércio eletrônico ou automaticamente recorrentes. Se você estiver tendo problemas para fazer um pagamento com seu cartão de crédito internacional, ligue para o banco e confira se há alguma restrição no cartão. +We also support payments through PayPal. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -Também aceitamos pagamentos via PayPal. Para obter mais informações, consulte "[Adicionar ou editar forma de pagamento](/articles/adding-or-editing-a-payment-method)". +## Contact your bank for details about the transaction -## Entrar em contato com o banco para ver detalhes da transação +Your bank can provide additional information about declined payments if you specifically ask about the attempted transaction. If there are restrictions on your card and you need to call your bank, provide this information to your bank: -O banco poderá fornecer informações adicionais sobre pagamentos recusados se você perguntar especificamente sobre a tentativa de transação. Caso haja restrições no seu cartão e você precise ligar para o banco, forneça as seguintes informações: - -- **O valor que está sendo cobrado**. É o valor cobrado pela assinatura que aparece nos recibos da conta. Para obter mais informações, consulte "[Visualizar o histórico de pagamentos e os recibos](/articles/viewing-your-payment-history-and-receipts)". -- **A data em que o {% data variables.product.product_name %} fez a cobrança.** A data de cobrança na sua conta aparece nos recibos. -- **O número de ID da transação**. O número de ID da transação aparece nos recibos. -- **O nome do lojista**. O nome do lojista é {% data variables.product.prodname_dotcom %}. -- **A mensagem de erro que seu banco enviou com a cobrança recusada**. Você pode encontrar a mensagem de erro do seu banco no e-mail que enviamos a você quando uma cobrança é recusada. +- **The amount you're being charged.** The amount for your subscription appears on your account's receipts. For more information, see "[Viewing your payment history and receipts](/articles/viewing-your-payment-history-and-receipts)." +- **The date when {% data variables.product.product_name %} bills you.** Your account's billing date appears on your receipts. +- **The transaction ID number.** Your account's transaction ID appears on your receipts. +- **The merchant name.** The merchant name is {% data variables.product.prodname_dotcom %}. +- **The error message your bank sent with the declined charge.** You can find your bank's error message on the email we send you when a charge is declined. diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md index 5e0d03ac52..b59da1c080 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md @@ -1,14 +1,14 @@ --- -title: Desbloquear uma conta bloqueada -intro: Os recursos pagos da sua organização estão bloqueados se o seu pagamento estiver atrasado devido a problemas de cobrança. +title: Unlocking a locked account +intro: Your organization's paid features are locked if your payment is past due because of billing problems. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/unlocking-a-locked-account - - /articles/what-happens-if-my-account-is-locked/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges/ - - /articles/what-happens-if-my-repository-is-locked/ - - /articles/unlocking-a-locked-personal-account/ - - /articles/unlocking-a-locked-organization-account/ + - /articles/what-happens-if-my-account-is-locked + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges + - /articles/what-happens-if-my-repository-is-locked + - /articles/unlocking-a-locked-personal-account + - /articles/unlocking-a-locked-organization-account - /articles/unlocking-a-locked-account - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/unlocking-a-locked-account versions: @@ -20,15 +20,14 @@ topics: - Downgrades - Organizations - User account -shortTitle: Conta bloqueada +shortTitle: Locked account --- +You can unlock and access your account by updating your organization's payment method and resuming paid status. We do not ask you to pay for the time elapsed in locked mode. -Você pode desbloquear e acessar sua conta atualizando a forma de pagamento da sua organização e retomando o status de pago. sem precisar pagar pelo tempo decorrido no modo bloqueado. +You can downgrade your organization to {% data variables.product.prodname_free_team %} to continue with the same advanced features in public repositories. For more information, see "[Downgrading your {% data variables.product.product_name %} subscription](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)." -Você pode fazer o downgrade da sua organização para o {% data variables.product.prodname_free_team %} para continuar com os mesmos recursos avançados em repositórios públicos. Para obter mais informações, consulte "[Rebaixando sua assinatura {% data variables.product.product_name %}](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)." +## Unlocking an organization's features due to a declined payment -## Desbloqueando recursos da organização devido a pagamento recusado +If your organization's advanced features are locked due to a declined payment, you'll need to update your billing information to trigger a newly authorized charge. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -Se os recursos avançados de sua organização foram bloqueados devido a pagamento recusado, você precisará atualizar as informações de cobrança para que uma nova cobrança seja autorizada. Para obter mais informações, consulte "[Adicionar ou editar forma de pagamento](/articles/adding-or-editing-a-payment-method)". - -Se as novas informações de cobrança forem aprovadas, cobraremos imediatamente pelo produto pago que você escolheu. A organização será desbloqueada assim que o pagamento for confirmado. +If the new billing information is approved, we will immediately charge you for the paid product you chose. The organization will automatically unlock when a successful payment has been made. diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md index 9645ab675b..c643ca0c2c 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md @@ -1,11 +1,11 @@ --- -title: Exibir histórico de pagamento e recibos -intro: Você pode exibir o histórico de pagamentos da sua conta e baixar recibos anteriores a qualquer momento. +title: Viewing your payment history and receipts +intro: You can view your account's payment history and download past receipts at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-payment-history-and-receipts - - /articles/downloading-receipts/ - - /articles/downloading-receipts-for-personal-accounts/ - - /articles/downloading-receipts-for-organizations/ + - /articles/downloading-receipts + - /articles/downloading-receipts-for-personal-accounts + - /articles/downloading-receipts-for-organizations - /articles/viewing-your-payment-history-and-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts versions: @@ -17,17 +17,16 @@ topics: - Organizations - Receipts - User account -shortTitle: Visualizar histórico & recibos +shortTitle: View history & receipts --- - -## Exibir recibos da sua conta pessoal +## Viewing receipts for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.view-payment-history %} {% data reusables.dotcom_billing.download_receipt %} -## Exibir recibos da sua organização +## Viewing receipts for your organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md b/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md index d5ad203c0a..b62ebd0208 100644 --- a/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md +++ b/translations/pt-BR/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md @@ -1,13 +1,13 @@ --- -title: Exibir assinaturas e data de cobrança -intro: 'Nas configurações de cobrança da sua conta, você pode exibir a assinatura da conta, outros produtos e recursos pagos e a próxima data de cobrança.' +title: Viewing your subscriptions and billing date +intro: 'You can view your account''s subscription, your other paid features and products, and your next billing date in your account''s billing settings.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-subscriptions-and-billing-date - - /articles/finding-your-next-billing-date/ - - /articles/finding-your-personal-account-s-next-billing-date/ - - /articles/finding-your-organization-s-next-billing-date/ - - /articles/viewing-your-plans-and-billing-date/ + - /articles/finding-your-next-billing-date + - /articles/finding-your-personal-account-s-next-billing-date + - /articles/finding-your-organization-s-next-billing-date + - /articles/viewing-your-plans-and-billing-date - /articles/viewing-your-subscriptions-and-billing-date versions: fpt: '*' @@ -17,22 +17,21 @@ topics: - Accounts - Organizations - User account -shortTitle: Assinaturas & data de cobrança +shortTitle: Subscriptions & billing date --- - -## Localizar a próxima data de cobrança da sua conta pessoal +## Finding your personal account's next billing date {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.next_billing_date %} -## Localizar a próxima data de cobrança da sua organização +## Finding your organization's next billing date {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.next_billing_date %} -## Leia mais +## Further reading -- "[Sobre a cobrança das contas do {% data variables.product.prodname_dotcom %}](/articles/about-billing-for-github-accounts)" +- "[About billing for {% data variables.product.prodname_dotcom %} accounts](/articles/about-billing-for-github-accounts)" diff --git a/translations/pt-BR/content/billing/managing-your-license-for-github-enterprise/index.md b/translations/pt-BR/content/billing/managing-your-license-for-github-enterprise/index.md index 4ad790fff5..9f270733c2 100644 --- a/translations/pt-BR/content/billing/managing-your-license-for-github-enterprise/index.md +++ b/translations/pt-BR/content/billing/managing-your-license-for-github-enterprise/index.md @@ -1,17 +1,17 @@ --- -title: Gerenciando a sua licença para o GitHub Enterprise -shortTitle: Licença do GitHub Enterprise -intro: '{% data variables.product.prodname_enterprise %} inclui opções de implantação auto-hospedadas. Se você hospedar uma instância de {% data variables.product.prodname_ghe_server %}, você deverá desbloquear a instância com um arquivo de licença. Você pode visualizar, gerenciar e atualizar o arquivo de licença.' +title: Managing your license for GitHub Enterprise +shortTitle: GitHub Enterprise license +intro: '{% data variables.product.prodname_enterprise %} includes both cloud and self-hosted deployment options. If you host a {% data variables.product.prodname_ghe_server %} instance, you must unlock the instance with a license file. You can view, manage, and update the license file.' redirect_from: - /free-pro-team@latest/billing/managing-your-license-for-github-enterprise - /enterprise/admin/installation/managing-your-github-enterprise-license - - /enterprise/admin/categories/licenses/ - - /enterprise/admin/articles/license-files/ - - /enterprise/admin/installation/about-license-files/ - - /enterprise/admin/articles/downloading-your-license/ - - /enterprise/admin/installation/downloading-your-license/ - - /enterprise/admin/articles/upgrading-your-license/ - - /enterprise/admin/installation/updating-your-license/ + - /enterprise/admin/categories/licenses + - /enterprise/admin/articles/license-files + - /enterprise/admin/installation/about-license-files + - /enterprise/admin/articles/downloading-your-license + - /enterprise/admin/installation/downloading-your-license + - /enterprise/admin/articles/upgrading-your-license + - /enterprise/admin/installation/updating-your-license - /enterprise/admin/installation/managing-your-github-enterprise-server-license - /enterprise/admin/overview/managing-your-github-enterprise-license versions: diff --git a/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md b/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md index 188dbeef7f..b74ec44276 100644 --- a/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md +++ b/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md @@ -1,9 +1,9 @@ --- -title: Sobre organizações para empresas de compras -intro: 'As empresas usam organizações para colaborar em projetos compartilhados com vários proprietários e administradores. Você pode criar uma organização para seu cliente, fazer um pagamento no nome dele e, por fim, passar a propriedade da organização ao cliente.' +title: About organizations for procurement companies +intro: 'Businesses use organizations to collaborate on shared projects with multiple owners and administrators. You can create an organization for your client, make a payment on their behalf, then pass ownership of the organization to your client.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-organizations-for-procurement-companies - - /articles/about-organizations-for-resellers/ + - /articles/about-organizations-for-resellers - /articles/about-organizations-for-procurement-companies - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies versions: @@ -12,28 +12,27 @@ versions: type: overview topics: - Organizations -shortTitle: Sobre organizações +shortTitle: About organizations --- +To access an organization, each member must sign into their own personal user account. -Para acessar uma organização, cada integrante deve entrar na própria conta de usuário pessoal. +Organization members can have different roles, such as *owner* or *billing manager*: -Os integrantes da organização podem ter diferentes funções, como *proprietário* ou *gerente de cobrança*: +- **Owners** have complete administrative access to an organization and its contents. +- **Billing managers** can manage billing settings, and cannot access organization contents. Billing managers are not shown in the list of organization members. -- **Proprietários** têm acesso administrativo completo a uma organização e seu conteúdo. -- **Gerentes de cobrança** podem gerenciar configurações de cobrança e não podem acessar o conteúdo da organização. Os gerentes de cobrança não são mostrados na lista de integrantes da organização. +## Payments and pricing for organizations -## Pagamentos e preços para organizações +We don't provide quotes for organization pricing. You can see our published pricing for [organizations](https://github.com/pricing) and [Git Large File Storage](/articles/about-storage-and-bandwidth-usage/). We do not provide discounts for procurement companies or for renewal orders. -Não fornecemos cotações de preços para organização. É possível ver nossos preços publicados para [organizações](https://github.com/pricing) e [Git Large File Storage](/articles/about-storage-and-bandwidth-usage/). Não fornecemos descontos para empresas de compras nem para pedidos de renovação. +We accept payment in US dollars, although end users may be located anywhere in the world. -Aceitamos pagamento em dólares americanos, embora os usuários finais possam estar localizados em qualquer lugar do mundo. +We accept payment by credit card and PayPal. We don't accept payment by purchase order or invoice. -Aceitamos pagamento por cartão de crédito e PayPal. Não aceitamos pagamento por ordem de compra ou fatura. +For easier and more efficient purchasing, we recommend that procurement companies set up yearly billing for their clients' organizations. -Para mais facilidade e eficiência de compra, é recomendável que as empresas de compras definam anualmente a cobrança para as organizações de seus clientes. +## Further reading -## Leia mais - -- "[Criar e pagar para uma organização em nome de um cliente](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client)" -- "[Atualizar ou fazer downgrade da organização paga do cliente](/articles/upgrading-or-downgrading-your-client-s-paid-organization)" -- "[Renovar a organização paga do cliente](/articles/renewing-your-client-s-paid-organization)" +- "[Creating and paying for an organization on behalf of a client](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client)" +- "[Upgrading or downgrading your client's paid organization](/articles/upgrading-or-downgrading-your-client-s-paid-organization)" +- "[Renewing your client's paid organization](/articles/renewing-your-client-s-paid-organization)" diff --git a/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md b/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md index f531e4951d..0b9fc6ffef 100644 --- a/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md +++ b/translations/pt-BR/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md @@ -1,11 +1,11 @@ --- -title: Configurar organizações pagas para empresas de compras -shortTitle: Organizações pagas para empresas de compras -intro: 'Se você pagar o {% data variables.product.product_name %} em nome de um cliente, poderá definir as configurações da organização e do pagamento para otimizar a conveniência e a segurança.' +title: Setting up paid organizations for procurement companies +shortTitle: Paid organizations for procurement companies +intro: 'If you pay for {% data variables.product.product_name %} on behalf of a client, you can configure their organization and payment settings to optimize convenience and security.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies - - /articles/setting-up-and-paying-for-organizations-for-resellers/ - - /articles/setting-up-and-paying-for-organizations-for-procurement-companies/ + - /articles/setting-up-and-paying-for-organizations-for-resellers + - /articles/setting-up-and-paying-for-organizations-for-procurement-companies - /articles/setting-up-paid-organizations-for-procurement-companies versions: fpt: '*' diff --git a/translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md b/translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md index d629122ab7..067cab1c4a 100644 --- a/translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md +++ b/translations/pt-BR/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md @@ -2,9 +2,9 @@ title: Managing vulnerabilities in your project's dependencies intro: 'You can track your repository''s dependencies and receive {% data variables.product.prodname_dependabot_alerts %} when {% data variables.product.product_name %} detects vulnerable dependencies.' redirect_from: - - /articles/updating-your-project-s-dependencies/ - - /articles/updating-your-projects-dependencies/ - - /articles/managing-security-vulnerabilities-in-your-projects-dependencies/ + - /articles/updating-your-project-s-dependencies + - /articles/updating-your-projects-dependencies + - /articles/managing-security-vulnerabilities-in-your-projects-dependencies - /articles/managing-vulnerabilities-in-your-projects-dependencies - /github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies versions: diff --git a/translations/pt-BR/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md b/translations/pt-BR/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md index f894a5a45f..7130649af7 100644 --- a/translations/pt-BR/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md +++ b/translations/pt-BR/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md @@ -1,72 +1,72 @@ --- -title: Permitir que seu codespace acesse um registro de imagens privadas -intro: 'Você pode usar segredos para permitir que {% data variables.product.prodname_codespaces %} acesse um registro de imagens privada' +title: Allowing your codespace to access a private image registry +intro: 'You can use secrets to allow {% data variables.product.prodname_codespaces %} to access a private image registry' versions: fpt: '*' ghec: '*' topics: - Codespaces product: '{% data reusables.gated-features.codespaces %}' -shortTitle: Registro de imagem privada +shortTitle: Private image registry --- -## Sobre registros de imagens privadas e {% data variables.product.prodname_codespaces %} +## About private image registries and {% data variables.product.prodname_codespaces %} -Um registro é um espaço seguro para armazenar, gerenciar e buscar imagens privadas de contêineres. Você pode usar um para armazenar um ou mais devcontainers. Existem muitos exemplos de registros, como {% data variables.product.prodname_dotcom %} registro do contêiner, registro de contêiner do Azure ou DockerHub. +A registry is a secure space for storing, managing, and fetching private container images. You may use one to store one or more devcontainers. There are many examples of registries, such as {% data variables.product.prodname_dotcom %} Container Registry, Azure Container Registry, or DockerHub. -O registro do contêiner de {% data variables.product.prodname_dotcom %} pode ser configurado para puxar imagens container sem precisar fornecer qualquer credencial para {% data variables.product.prodname_codespaces %}. Para outros registros de imagem, você deve criar segredos em {% data variables.product.prodname_dotcom %} para armazenar os detalhes de acesso, o que permitirá que {% data variables.product.prodname_codespaces %} acesse imagens armazenadas nesse registro. +{% data variables.product.prodname_dotcom %} Container Registry can be configured to pull container images seamlessly, without having to provide any authentication credentials to {% data variables.product.prodname_codespaces %}. For other image registries, you must create secrets in {% data variables.product.prodname_dotcom %} to store the access details, which will allow {% data variables.product.prodname_codespaces %} to access images stored in that registry. -## Acessando imagens armazenadas no registro do contêiner de {% data variables.product.prodname_dotcom %} +## Accessing images stored in {% data variables.product.prodname_dotcom %} Container Registry -O registro de contêiner de {% data variables.product.prodname_dotcom %} é a maneira mais fácil de {% data variables.product.prodname_github_codespaces %} de consumir imagens de contêiner de desenvolvimento. +{% data variables.product.prodname_dotcom %} Container Registry is the easiest way for {% data variables.product.prodname_github_codespaces %} to consume devcontainer container images. -Para obter mais informações, consulte "[Trabalhando com o registro do contêiner](/packages/working-with-a-github-packages-registry/working-with-the-container-registry)". +For more information, see "[Working with the Container registry](/packages/working-with-a-github-packages-registry/working-with-the-container-registry)". -### Acessar uma imagem publicada no mesmo repositório que o codespace +### Accessing an image published to the same repository as the codespace -Se você publicar uma imagem de contêiner do {% data variables.product.prodname_dotcom %} no mesmo repositório em que o codespace está sendo lançado, você poderá de buscar automaticamente essa imagem na criação de um codespace. Você não terá que fornecer qualquer credencial adicional, a menos a opção **Herdar acesso do repositório** tenha sido desmarcada quando a imagem do contêiner foi publicada. +If you publish a container image to {% data variables.product.prodname_dotcom %} Container Registry in the same repository that the codespace is being launched in, you will automatically be able to fetch that image on codespace creation. You won't have to provide any additional credentials, unless the **Inherit access from repo** option was unselected when the container image was published. -#### Herdando acesso a partir do repositório no qual uma imagem foi publicada +#### Inheriting access from the repository from which an image was published -Por padrão, quando você publica uma imagem de contêiner no registro do contêiner de {% data variables.product.prodname_dotcom %}, a imagem herda a configuração de acesso do repositório no qual a imagem foi publicada. Por exemplo, se o repositório for público, a imagem também é pública. Se o repositório for privado, a imagem também é privada, mas pode ser acessada a partir do repositório. +By default, when you publish a container image to {% data variables.product.prodname_dotcom %} Container Registry, the image inherits the access setting of the repository from which the image was published. For example, if the repository is public, the image is also public. If the repository is private, the image is also private, but is accessible from the repository. -Este comportamento é controlado pela opção de **Herdar acesso do repositório**. O **Acesso herdado do repo** é selecionado por padrão ao publicar {% data variables.product.prodname_actions %}, mas não ao publicar diretamente no registro do contêiner de {% data variables.product.prodname_dotcom %} usando um Token de Acesso Pessoal (PAT). +This behavior is controlled by the **Inherit access from repo** option. **Inherit access from repo** is selected by default when publishing via {% data variables.product.prodname_actions %}, but not when publishing directly to {% data variables.product.prodname_dotcom %} Container Registry using a Personal Access Token (PAT). -Se a opção **Herdar acesso do repositório** não foi selecionada quando a imagem foi publicada, você pode adicionar o repositório manualmente aos controles de acesso da imagem de contêiner. Para obter mais informações, consulte "[Configurar o controle de acesso e visibilidade de um pacote](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)". +If the **Inherit access from repo** option was not selected when the image was published, you can manually add the repository to the published container image's access controls. For more information, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)." -### Ao acessar uma imagem publicada na organização, um codespace será lançado em +### Accessing an image published to the organization a codespace will be launched in -Se você deseja que uma imagem de contêiner possa ser acessada por todos os codespaces em uma organização, recomendamos que você publique a imagem do contêiner com visibilidade interna. Isso tornará a imagem visível automaticamente para todos os códigos dentro da organização, a menos que o repositório no qual o código é iniciado seja público. +If you want a container image to be accessible to all codespaces in an organization, we recommend that you publish the container image with internal visibility. This will automatically make the image visible to all codespaces within the organization, unless the repository the codespace is launched from is public. -Se o codespace for lançado a partir de um repositório público que faz referência uma imagem interna ou privada, você deverá permitir manualmente o acesso do repositório público à imagem interna do contêiner. Isto impede que a imagem interna seja acidentalmente divulgada publicamente. Para obter mais informações, consulte "[Garantir o acesso dos codespaces para o seu pacote](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#ensuring-codespaces-access-to-your-package)". +If the codespace is being launched from a public repository referencing an internal or private image, you must manually allow the public repository access to the internal container image. This prevents the internal image from being accidentally leaked publicly. For more information, see "[Ensuring Codespaces access to your package](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#ensuring-codespaces-access-to-your-package)." -### Acessar um contêiner privado a partir de um subconjunto de repositórios em uma organização +### Accessing a private container from a subset of repositories in an organization -Se você deseja permitir que um subconjunto de repositórios de uma organização acesse uma imagem de contêiner ou permitir que uma imagem interna ou privada seja acessada a partir de um codespace lançado em um repositório público, você pode adicionar repositórios manualmente às configurações de acesso da <span class="x x-first x-last">imagem</span> de um container. Para obter mais informações, consulte "[Garantindo o acesso de codespaces de segurança ao seu pacote](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#ensuring-codespaces-access-to-your-package)<span class="x x-first x-last">.</span>" +If you want to allow a subset of an organization's repositories to access a container image, or allow an internal or private image to be accessed from a codespace launched in a public repository, you can manually add repositories to a container <span class="x x-first x-last">image's</span> access settings. For more information, see "[Ensuring Codespaces access to your package](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#ensuring-codespaces-access-to-your-package)<span class="x x-first x-last">.</span>" -### Publicando uma imagem de contêiner a partir de um codespace +### Publishing a container image from a codespace -O acesso seguro a partir de um codespace para o registro de um contêiner de {% data variables.product.prodname_dotcom %} é limitado à extração de imagens de contêineres. Se você deseja publicar a imagem de um contêiner de dentro de um codespace, você deve usar um token de acesso pessoal (PAT) com o escopo `write:packages`. +Seamless access from a codespace to {% data variables.product.prodname_dotcom %} Container Registry is limited to pulling container images. If you want to publish a container image from inside a codespace, you must use a personal access token (PAT) with the `write:packages` scope. -Recomendamos publicar imagens via {% data variables.product.prodname_actions %}. Para obter mais informações, consulte "[Publicar imagens Docker](/actions/publishing-packages/publishing-docker-images)". +We recommend publishing images via {% data variables.product.prodname_actions %}. For more information, see "[Publishing Docker images](/actions/publishing-packages/publishing-docker-images)." -## Acessando as imagens armazenadas em outros registros de contêiner +## Accessing images stored in other container registries -Se você estiver acessando um contêiner a partir de um registro que não é registro de contêiner de {% data variables.product.prodname_dotcom %}, {% data variables.product.prodname_codespaces %} irá verificar a presença de três segredos, que define o nome de servidor, nome de usuário, e token de acesso pessoal (PAT) para um registro de contêiner. Se estes segredos forem encontrados, {% data variables.product.prodname_codespaces %} disponibilizará o registro dentro do seu codespace. +If you are accessing a container image from a registry that isn't {% data variables.product.prodname_dotcom %} Container Registry, {% data variables.product.prodname_codespaces %} checks for the presence of three secrets, which define the server name, username, and personal access token (PAT) for a container registry. If these secrets are found, {% data variables.product.prodname_codespaces %} will make the registry available inside your codespace. - `<*>_CONTAINER_REGISTRY_SERVER` - `<*>_CONTAINER_REGISTRY_USER` - `<*>_CONTAINER_REGISTRY_PASSWORD` -É possível armazenar segredos a nível do usuário, repositório ou organização, permitindo que você os compartilhe de forma segura entre diferentes codespaces. Ao criar um conjunto de segredos para um registro de imagem privado, você deverá substituir o "<*>" no nome por um identificador consistente. Para mais informações, consulte "[Gerenciar segredos criptografados para seus códigos](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)" e "[Gerenciar segredos criptografados para seu repositório e organização para os codespaces](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)". +You can store secrets at the user, repository, or organization-level, allowing you to share them securely between different codespaces. When you create a set of secrets for a private image registry, you need to replace the "<*>" in the name with a consistent identifier. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)" and "[Managing encrypted secrets for your repository and organization for Codespaces](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)." -Se você estiver definindo os segredos no nível do usuário ou da organização. certifique-se de atribuir esses segredos para o repositório no qual você irá criar o codespace, escolhendo uma política de acesso na lista suspensa. +If you are setting the secrets at the user or organization level, make sure to assign those secrets to the repository you'll be creating the codespace in by choosing an access policy from the dropdown list. -![Exemplo de segredo do registro de imagem](/assets/images/help/codespaces/secret-repository-access.png) +![Image registry secret example](/assets/images/help/codespaces/secret-repository-access.png) -### Exemplos de segredos +### Example secrets -Para uma lista de imagens privadas no Azure, você pode criar os seguintes segredos: +For a private image registry in Azure, you could create the following secrets: ``` ACR_CONTAINER_REGISTRY_SERVER = mycompany.azurecr.io @@ -74,22 +74,48 @@ ACR_CONTAINER_REGISTRY_USER = acr-user-here ACR_CONTAINER_REGISTRY_PASSWORD = <PAT> ``` -Para obter informações sobre registros de imagens comuns, consulte "[Servidores de registro de imagens comuns](#common-image-registry-servers)". +For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." Note that accessing AWS Elastic Container Registry (ECR) is different. -![Exemplo de segredo do registro de imagem](/assets/images/help/settings/codespaces-image-registry-secret-example.png) +![Image registry secret example](/assets/images/help/settings/codespaces-image-registry-secret-example.png) -Após adicionar os segredos, pode ser que você precise parar e, em seguida, iniciar o processo de codespace para que as novas variáveis de ambiente sejam passadas para o contêiner. Para obter mais informações, consulte "[Suspender ou interromper um codespace](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)". +Once you've added the secrets, you may need to stop and then start the codespace you are in for the new environment variables to be passed into the container. For more information, see "[Suspending or stopping a codespace](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)." -### Servidores de registro de imagens comuns +#### Accessing AWS Elastic Container Registry -Alguns dos servidores comuns de registro de imagens estão listados abaixo: +To access AWS Elastic Container Registry (ECR), you can provide an AWS access key ID and secret key, and {% data variables.product.prodname_dotcom %} can retrieve an access token for you and log in on your behalf. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = <AWS_ACCESS_KEY_ID> +*_container_REGISTRY_PASSWORD = <AWS_SECRET_KEY> +``` + +You must also ensure you have the appropriate AWS IAM permissions to perform the credential swap (e.g. `sts:GetServiceBearerToken`) as well as the ECR read operation (either `AmazonEC2ContainerRegistryFullAccess` or `ReadOnlyAccess`). + +Alternatively, if you don't want GitHub to perform the credential swap on your behalf, you can provide an authorization token fetched via AWS's APIs or CLI. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = AWS +*_container_REGISTRY_PASSWORD = <TOKEN> +``` + +Since these tokens are short lived and need to be refreshed periodically, we recommend providing an access key ID and secret. + +While these secrets can have any name, so long as the `*_CONTAINER_REGISTRY_SERVER` is an ECR URL, we recommend using `ECR_CONTAINER_REGISTRY_*` unless you are dealing with multiple ECR registries. + +For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." + +### Common image registry servers + +Some of the common image registry servers are listed below: - [DockerHub](https://docs.docker.com/engine/reference/commandline/info/) - `https://index.docker.io/v1/` -- [Registro de Contêiner do GitHub](/packages/working-with-a-github-packages-registry/working-with-the-container-registry) - `ghcr.io` -- [Registro do Contêiner do Azure](https://docs.microsoft.com/azure/container-registry/) - `<registry name>.azurecr.io` -- [Registry Container Elastic do AWS](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html) - `<aws_account_id>.dkr.ecr.<region>.amazonaws.com` -- [Registro de Contêiner do Google Cloud](https://cloud.google.com/container-registry/docs/overview#registries) - `gcr.io` (US), `eu.gcr.io` (EU), `asia.gcr.io` (Asia) +- [GitHub Container Registry](/packages/working-with-a-github-packages-registry/working-with-the-container-registry) - `ghcr.io` +- [Azure Container Registry](https://docs.microsoft.com/azure/container-registry/) - `<registry name>.azurecr.io` +- [AWS Elastic Container Registry](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html) - `<aws_account_id>.dkr.ecr.<region>.amazonaws.com` +- [Google Cloud Container Registry](https://cloud.google.com/container-registry/docs/overview#registries) - `gcr.io` (US), `eu.gcr.io` (EU), `asia.gcr.io` (Asia) -#### Acessando o AWS Elastic Container Registry +## Debugging private image registry access -Se você deseja acessar AWS Elastic Container Registry (ECR), você deverá fornecer um token de autorização AWS no `ECR_CONTAINER_REGISTRY_PASSWORD`. Este token de autorização não é o mesmo que a chave do seu segredo. Você pode obter um token de autorização do AWS usando as APIs ou CLI do AWS. Estes tokens têm uma vida útil curta e devem ser atualizados periodicamente. Para obter mais informações, consulte a"[documentação de autenticação de registro privado](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html) do ECR do AWS". +If you are having trouble pulling an image from a private image registry, make sure you are able to run `docker login -u <user> -p <password> <server>`, using the values of the secrets defined above. If login fails, ensure that the login credentials are valid and that you have the apprioriate permissions on the server to fetch a container image. If login succeeds, make sure that these values are copied appropriately into the right {% data variables.product.prodname_codespaces %} secrets, either at the user, repository, or organization level and try again. \ No newline at end of file diff --git a/translations/pt-BR/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md b/translations/pt-BR/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md index 4ddd9466a3..6df3c42808 100644 --- a/translations/pt-BR/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md +++ b/translations/pt-BR/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md @@ -18,12 +18,12 @@ A codespace will stop running after a period of inactivity. You can specify the {% endwarning %} -## Setting your default timeout - {% include tool-switcher %} {% webui %} +## Setting your default timeout + {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.codespaces-tab %} 1. Under "Default idle timeout", enter the time that you want, then click **Save**. The time must be between 5 minutes and 240 minutes (4 hours). @@ -33,14 +33,16 @@ A codespace will stop running after a period of inactivity. You can specify the {% cli %} +## Setting your timeout period + {% data reusables.cli.cli-learn-more %} -To set the timeout period, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (5 hours). +To set the timeout period when you create a codespace, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (4 hours). ```shell gh codespace create --idle-timeout 90m ``` -If you do not specify a timeout period when creating a codespace, then your default timeout period will be used. You cannot currently specify a default timeout period for all future codespaces through {% data variables.product.prodname_cli %}. +If you don't specify a timeout period when you create a codespace, then the default timeout period will be used. For information about setting a default timeout period, click the "Web browser" tab on this page. You can't currently specify a default timeout period through {% data variables.product.prodname_cli %}. {% endcli %} diff --git a/translations/pt-BR/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md b/translations/pt-BR/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md index f534a02538..7e68cd8fd1 100644 --- a/translations/pt-BR/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md +++ b/translations/pt-BR/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md @@ -37,10 +37,19 @@ By default, a codespace can only access the repository from which it was created {% data reusables.organizations.click-codespaces %} 1. Under "User permissions", select one of the following options: - * **Allow for all users** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. * **Selected users** to select specific organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members and outside collaborators** to allow all your organization members as well as outside collaborators to use {% data variables.product.prodname_codespaces %}. - ![Radio buttons for "User permissions"](/assets/images/help/codespaces/organization-user-permission-settings.png) + ![Radio buttons for "User permissions"](/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png) + + {% note %} + + **Note:** When you select **Allow for all members and outside collaborators**, all outside collaborators who have been added to specific repositories can create and use {% data variables.product.prodname_codespaces %}. Your organization will be billed for all usage incurred by outside collaborators. For more information on managing outside collaborators, see "[About outside collaborators](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization#about-outside-collaborators)." + + {% endnote %} + +1. Click **Save**. ## Disabling {% data variables.product.prodname_codespaces %} for your organization diff --git a/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization.md b/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization.md index dc5729925d..bfd7c24b47 100644 --- a/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization.md +++ b/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization.md @@ -1,6 +1,6 @@ --- -title: Restringir interações na organização -intro: É possível aplicar temporariamente um período de atividade limitada para determinados usuários em todos os repositórios públicos pertencentes à sua organização. +title: Limiting interactions in your organization +intro: You can temporarily enforce a period of limited activity for certain users in all public repositories owned by your organization. redirect_from: - /github/setting-up-and-managing-organizations-and-teams/limiting-interactions-in-your-organization - /articles/limiting-interactions-in-your-organization @@ -11,35 +11,37 @@ versions: permissions: Organization owners can limit interactions in an organization. topics: - Community -shortTitle: Limitar interações no org +shortTitle: Limit interactions in org --- -## Sobre limites temporários de interação +## About temporary interaction limits -O limite de interações na organização habilita limites de interação temporária para todos os repositórios públicos pertencentes à organização. {% data reusables.community.interaction-limits-restrictions %} +Limiting interactions in your organization enables temporary interaction limits for all public repositories owned by the organization. {% data reusables.community.interaction-limits-restrictions %} -{% data reusables.community.interaction-limits-duration %} Após a duração do seu limite passar, os usuários podem retomar a atividade normal nos repositórios públicos da sua organização. +{% data reusables.community.interaction-limits-duration %} After the duration of your limit passes, users can resume normal activity in your organization's public repositories. {% data reusables.community.types-of-interaction-limits %} -Os integrantes da organização não são afetados por nenhum dos tipos de limite. +Members of the organization are not affected by any of the limit types. -Quando você habilita restrições de atividades para toda a organização, você não pode habilitar ou desabilitar restrições de interação em repositórios individuais. Para obter mais informações sobre limitação de atividade para um repositório individual, consulte "[Limitar interações no repositório](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)". +When you enable organization-wide activity limitations, you can't enable or disable interaction limits on individual repositories. For more information on limiting activity for an individual repository, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." -Os proprietários da organização também podem bloquear os usuários por um determinado período de tempo. Após o término do bloqueio, o usuário é automaticamente desbloqueado. Para obter mais informações, consulte "[Bloquear um usuário em sua organização](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)". +Organization owners can also block users for a specific amount of time. After the block expires, the user is automatically unblocked. For more information, see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)." -## Restringir interações na organização +## Limiting interactions in your organization {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -1. Na barra lateral de configurações da organização, clique em **Configurações de moderação**. !["Configurações de moderação" na barra lateral das configurações da organização](/assets/images/help/organizations/org-settings-moderation-settings.png) -1. Em "Configurações de moderação", clique em **Limites de interação**. !["Limites de interação" na barra lateral de configurações da organização](/assets/images/help/organizations/org-settings-interaction-limits.png) +1. In the organization settings sidebar, click **Moderation settings**. + !["Moderation settings" in the organization settings sidebar](/assets/images/help/organizations/org-settings-moderation-settings.png) +1. Under "Moderation settings", click **Interaction limits**. + !["Interaction limits" in the organization settings sidebar](/assets/images/help/organizations/org-settings-interaction-limits.png) {% data reusables.community.set-interaction-limit %} - ![Opções Temporary interaction limit (Restrições de interação temporárias)](/assets/images/help/organizations/organization-temporary-interaction-limits-options.png) + ![Temporary interaction limit options](/assets/images/help/organizations/organization-temporary-interaction-limits-options.png) -## Leia mais -- "[Denunciar abuso ou spam](/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam)" -- "[Gerenciar o acesso de um indivíduo a um repositório da organização](/articles/managing-an-individual-s-access-to-an-organization-repository)" -- "[Níveis de permissão do repositório de conta de usuário](/articles/permission-levels-for-a-user-account-repository)" +## Further reading +- "[Reporting abuse or spam](/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" +- "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)" - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository.md b/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository.md index e5fd438915..fd429115bd 100644 --- a/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository.md +++ b/translations/pt-BR/content/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository.md @@ -1,6 +1,6 @@ --- -title: Restringir interações no repositório -intro: É possível aplicar temporariamente um período de atividades limitadas para certos usuários em um repositório público. +title: Limiting interactions in your repository +intro: You can temporarily enforce a period of limited activity for certain users on a public repository. redirect_from: - /articles/limiting-interactions-with-your-repository/ - /articles/limiting-interactions-in-your-repository @@ -11,30 +11,32 @@ versions: permissions: People with admin permissions to a repository can temporarily limit interactions in that repository. topics: - Community -shortTitle: Limitar interações no repositório +shortTitle: Limit interactions in repo --- -## Sobre limites temporários de interação +## About temporary interaction limits {% data reusables.community.interaction-limits-restrictions %} -{% data reusables.community.interaction-limits-duration %} Após a duração do seu limite, os usuários podem retomar à atividade normal no seu repositório. +{% data reusables.community.interaction-limits-duration %} After the duration of your limit passes, users can resume normal activity in your repository. {% data reusables.community.types-of-interaction-limits %} -Você também pode habilitar limitações de atividade em todos os repositórios pertencentes à sua conta de usuário ou organização. Se o limite de um usuário ou organização estiver habilitado, não será possível limitar a atividade para repositórios individuais pertencentes à conta. Para obter mais informações, consulte "[Limitar interações para a sua conta de usuário](/communities/moderating-comments-and-conversations/limiting-interactions-for-your-user-account)" e "[Limitar interações na sua organização](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)". +You can also enable activity limitations on all repositories owned by your user account or an organization. If a user-wide or organization-wide limit is enabled, you can't limit activity for individual repositories owned by the account. For more information, see "[Limiting interactions for your user account](/communities/moderating-comments-and-conversations/limiting-interactions-for-your-user-account)" and "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)." -## Restringir interações no repositório +## Limiting interactions in your repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} -1. Na barra lateral esquerda, clique em **Configurações de moderação**. !["Configurações de moderação" na barra lateral de configurações do repositório](/assets/images/help/repository/repo-settings-moderation-settings.png) -1. Em "Configurações de moderação", clique em **Limites de interação**. ![Interaction limits (Restrições de interação) em Settings (Configurações) do repositório ](/assets/images/help/repository/repo-settings-interaction-limits.png) +1. In the left sidebar, click **Moderation settings**. + !["Moderation settings" in repository settings sidebar](/assets/images/help/repository/repo-settings-moderation-settings.png) +1. Under "Moderation settings", click **Interaction limits**. + ![Interaction limits in repository settings ](/assets/images/help/repository/repo-settings-interaction-limits.png) {% data reusables.community.set-interaction-limit %} - ![Opções Temporary interaction limit (Restrições de interação temporárias)](/assets/images/help/repository/temporary-interaction-limits-options.png) + ![Temporary interaction limit options](/assets/images/help/repository/temporary-interaction-limits-options.png) -## Leia mais -- "[Denunciar abuso ou spam](/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam)" -- "[Gerenciar o acesso de um indivíduo a um repositório da organização](/articles/managing-an-individual-s-access-to-an-organization-repository)" -- "[Níveis de permissão do repositório de conta de usuário](/articles/permission-levels-for-a-user-account-repository)" +## Further reading +- "[Reporting abuse or spam](/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" +- "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)" - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/pt-BR/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md b/translations/pt-BR/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md index 8389515f5c..cd8481cdd1 100644 --- a/translations/pt-BR/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md +++ b/translations/pt-BR/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md @@ -1,9 +1,9 @@ --- -title: Gerenciar comentários conflituosos -intro: 'Você pode {% ifversion fpt or ghec %}ocultar, editar,{% else %}editar{% endif %} ou excluir comentários sobre problemas, pull request e commits.' +title: Managing disruptive comments +intro: 'You can {% ifversion fpt or ghec %}hide, edit,{% else %}edit{% endif %} or delete comments on issues, pull requests, and commits.' redirect_from: - - /articles/editing-a-comment/ - - /articles/deleting-a-comment/ + - /articles/editing-a-comment + - /articles/deleting-a-comment - /articles/managing-disruptive-comments - /github/building-a-strong-community/managing-disruptive-comments versions: @@ -13,72 +13,79 @@ versions: ghec: '*' topics: - Community -shortTitle: Gerenciar comentários +shortTitle: Manage comments --- -## Ocultar um comentário +## Hiding a comment -Qualquer pessoa com acesso de gravação em um repositório podem ocultar comentários sobre problemas, pull requests e commits. +Anyone with write access to a repository can hide comments on issues, pull requests, and commits. -Se um comentário não diz respeito ao assunto, está desatualizado ou resolvido, pode ser que você queira ocultar o comentário para manter o foco da discussão ou fazer uma pull request mais simples para navegar e revisar. Comentários ocultos são minimizados, mas as pessoas com acesso de leitura no repositório podem expandi-los. +If a comment is off-topic, outdated, or resolved, you may want to hide a comment to keep a discussion focused or make a pull request easier to navigate and review. Hidden comments are minimized but people with read access to the repository can expand them. -![Comentário minimizado](/assets/images/help/repository/hidden-comment.png) +![Minimized comment](/assets/images/help/repository/hidden-comment.png) -1. Navegue até o comentário que deseja ocultar. -2. No canto superior direito do comentário, clique em {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} e em **Hide** (Ocultar). ![Ícone horizontal kebab e menu comment moderation (moderação de comentários) mostrando as opções edit, hide, delete (editar, ocultar, excluir)](/assets/images/help/repository/comment-menu.png) -3. Com o menu suspenso "Choose a reason" (Selecione um motivo), clique em um motivo para ocultar o comentário. Depois clique em **Hide comment** (Ocultar comentário). +1. Navigate to the comment you'd like to hide. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Hide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete options](/assets/images/help/repository/comment-menu.png) +3. Using the "Choose a reason" drop-down menu, click a reason to hide the comment. Then click, **Hide comment**. {% ifversion fpt or ghec %} - ![Menu suspenso Choose reason for hiding comment (Selecione um motivo para ocultar o comentário)](/assets/images/help/repository/choose-reason-for-hiding-comment.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment.png) {% else %} - ![Menu suspenso Choose reason for hiding comment (Selecione um motivo para ocultar o comentário)](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) {% endif %} -## Mostrar um comentário +## Unhiding a comment -Qualquer pessoa com acesso de gravação em um repositório pode reexibir comentários sobre problemas, pull requests e commits. +Anyone with write access to a repository can unhide comments on issues, pull requests, and commits. -1. Navegue até o comentário que deseja mostrar. -2. No canto superior direito do comentário, clique em **{% octicon "fold" aria-label="The fold icon" %} Show comment** (Mostrar comentário). ![Mostrar texto de comentário](/assets/images/help/repository/hidden-comment-show.png) -3. No lado direito do comentário expandido, clique em {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} e **Unhide** (Mostrar). ![Ícone horizontal kebab e menu comment moderation (moderação de comentários) mostrando as opções edit, unhide, delete (editar, mostrar, excluir)](/assets/images/help/repository/comment-menu-hidden.png) +1. Navigate to the comment you'd like to unhide. +2. In the upper-right corner of the comment, click **{% octicon "fold" aria-label="The fold icon" %} Show comment**. + ![Show comment text](/assets/images/help/repository/hidden-comment-show.png) +3. On the right side of the expanded comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Unhide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, unhide, delete options](/assets/images/help/repository/comment-menu-hidden.png) -## Editar um comentário +## Editing a comment -Qualquer pessoa com acesso de gravação em um repositório pode editar comentários sobre problemas, pull requests e commits. +Anyone with write access to a repository can edit comments on issues, pull requests, and commits. -Considera-se apropriado editar um comentário e remover o conteúdo que não contribui para a conversa e viole o código de conduta da sua comunidade{% ifversion fpt or ghec %} ou as diretrizes [da Comunidade do GitHub](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. +It's appropriate to edit a comment and remove content that doesn't contribute to the conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -Quando editar um comentário, anote a localização de onde o comentário foi removido e, opcionalmente, os motivos para a remoção. +When you edit a comment, note the location that the content was removed from and optionally, the reason for removing it. -Qualquer pessoa com acesso de leitura em um repositório pode visualizar o histórico de edição do comentário. O menu suspenso **edited** (editado) na parte superior do comentário tem um histório de edições mostrando o usuário e o horário de cada edição. +Anyone with read access to a repository can view a comment's edit history. The **edited** dropdown at the top of the comment contains a history of edits showing the user and timestamp for each edit. -![Comentário com observação adicional que o conteúdo foi redacted (suprimido)](/assets/images/help/repository/content-redacted-comment.png) +![Comment with added note that content was redacted](/assets/images/help/repository/content-redacted-comment.png) -Autores do comentário e pessoas com acesso de gravação a um repositório podem excluir informações confidenciais do histórico de edição de um comentário. Para obter mais informações, consulte "[Controlar as alterações em um comentário](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)". +Comment authors and anyone with write access to a repository can also delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)." -1. Navegue até o comentário que deseja editar. -2. No canto superior direito do comentário, clique em{% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} e em **Edit** (Editar). ![Ícone horizontal kebab e menu comment moderation (moderação de comentários) mostrando as opções edit, hide, delete e report (editar, ocultar, excluir e denunciar)](/assets/images/help/repository/comment-menu.png) -3. Na janela do comentário, exclua o conteúdo que deseja remover e digite `[REDACTED]` para substitui-lo. ![Janela de comentário com conteúdo redacted (suprimido)](/assets/images/help/issues/redacted-content-comment.png) -4. Na parte inferior do comentário, digite uma observação indicando que editou o comentário e, opcionalmente, o motivo da edição. ![Janela de comentário com observação adicional que o conteúdo foi redacted (suprimido)](/assets/images/help/issues/note-content-redacted-comment.png) -5. Clique em **Update comment** (Atualizar comentário). +1. Navigate to the comment you'd like to edit. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Edit**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. In the comment window, delete the content you'd like to remove, then type `[REDACTED]` to replace it. + ![Comment window with redacted content](/assets/images/help/issues/redacted-content-comment.png) +4. At the bottom of the comment, type a note indicating that you have edited the comment, and optionally, why you edited the comment. + ![Comment window with added note that content was redacted](/assets/images/help/issues/note-content-redacted-comment.png) +5. Click **Update comment**. -## Excluir um comentário +## Deleting a comment -Qualquer pessoa com acesso de gravação em um repositório pode excluir comentários sobre problemas, pull requests e commits. Proprietários de organização, mantenedores de equipes e o autor do comentário também podem excluir um comentário na página da equipe. +Anyone with write access to a repository can delete comments on issues, pull requests, and commits. Organization owners, team maintainers, and the comment author can also delete a comment on a team page. -Excluir um comentário é o seu último recurso como moderador. É apropriado excluir um comentário se todo o comentário não adicionar conteúdo construtivo a uma conversa e violar o código de conduta da sua comunidade{% ifversion fpt or ghec %} ou [Diretrizes da Comunidade](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. +Deleting a comment is your last resort as a moderator. It's appropriate to delete a comment if the entire comment adds no constructive content to a conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -Excluir um comentário cria um evento na linha do tempo visível a qualquer um com acesso de leitura no repositório. No entanto, o nome de usuário da pessoa que excluiu o comentário somente pode ser visualizado pelas pessoas com acesso de gravação ao repositório. Para qualquer pessoa sem acesso de gravação, o evento na linha do tempo é anônimo. +Deleting a comment creates a timeline event that is visible to anyone with read access to the repository. However, the username of the person who deleted the comment is only visible to people with write access to the repository. For anyone without write access, the timeline event is anonymized. -![Evento anônimo de linha do tempo de um comentário excluído](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) +![Anonymized timeline event for a deleted comment](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) -Se o comentário contém algum conteúdo construtivo que contribui para a conversa sobre o problema ou pull request, você pode editar o comentário. +If a comment contains some constructive content that adds to the conversation in the issue or pull request, you can edit the comment instead. {% note %} -**Observação:** o comentário inicial (ou texto) de um problema ou pull request não pode ser excluído. Entretanto, você pode editar textos de problemas e pull requests para remover conteúdo indesejável. +**Note:** The initial comment (or body) of an issue or pull request can't be deleted. Instead, you can edit issue and pull request bodies to remove unwanted content. {% endnote %} -1. Navegue até o comentário que deseja excluir. -2. No canto superior direito do comentário, clique em {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} e em **Delete** (Excluir). ![Ícone horizontal kebab e menu comment moderation (moderação de comentários) mostrando as opções edit, hide, delete e report (editar, ocultar, excluir e denunciar)](/assets/images/help/repository/comment-menu.png) -3. Opcionalmente, escreva um comentário informando que você deletou o comentário e por quê. +1. Navigate to the comment you'd like to delete. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Delete**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. Optionally, write a comment noting that you deleted a comment and why. diff --git a/translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md b/translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md index 519c6e953e..cf34ff73d0 100644 --- a/translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md +++ b/translations/pt-BR/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md @@ -1,121 +1,120 @@ --- -title: Atalhos de teclado -intro: 'É possível usar atalhos de teclado no {% data variables.product.prodname_desktop %}.' +title: Keyboard shortcuts +intro: 'You can use keyboard shortcuts in {% data variables.product.prodname_desktop %}.' redirect_from: - - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop/ + - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop - /desktop/getting-started-with-github-desktop/keyboard-shortcuts - /desktop/installing-and-configuring-github-desktop/keyboard-shortcuts versions: fpt: '*' --- - {% mac %} -Atalhos de teclado do GitHub Desktop no macOS +GitHub Desktop keyboard shortcuts on macOS -## Atalhos para o site +## Site wide shortcuts -| Atalho | Descrição | -| ------------------------------------ | --------------------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>,</kbd> | Ir para Preferences (Preferências) | -| <kbd>⌘</kbd><kbd>H</kbd> | Ocultar o aplicativo do {% data variables.product.prodname_desktop %} -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | Ocultar todos os outros aplicativos | -| <kbd>⌘</kbd><kbd>Q</kbd> | Sair do {% data variables.product.prodname_desktop %} -| <kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | Alternar a exibição em tela cheia | -| <kbd>⌘</kbd><kbd>0</kbd> | Redefinir o zoom para o tamanho de texto padrão | -| <kbd>⌘</kbd><kbd>=</kbd> | Aumentar o zoom em textos e imagens | -| <kbd>⌘</kbd><kbd>-</kbd> | Diminuir o zoom em textos e imagens | -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | Alternar as ferramentas de desenvolvedor | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>,</kbd> | Go to Preferences +|<kbd>⌘</kbd><kbd>H</kbd> | Hide the {% data variables.product.prodname_desktop %} application +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | Hide all other applications +|<kbd>⌘</kbd><kbd>Q</kbd> | Quit {% data variables.product.prodname_desktop %} +|<kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | Toggle full screen view +|<kbd>⌘</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>⌘</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>⌘</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | Toggle Developer Tools -## Repositórios +## Repositories -| Atalho | Descrição | -| ------------------------------------ | -------------------------------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>N</kbd> | Adicionar um novo repositório | -| <kbd>⌘</kbd><kbd>O</kbd> | Adicionar um repositório local | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | Clonar um repositório do {% data variables.product.prodname_dotcom %} -| <kbd>⌘</kbd><kbd>T</kbd> | Exibir uma lista dos repositórios | -| <kbd>⌘</kbd><kbd>P</kbd> | Usar os commits mais recentes do {% data variables.product.prodname_dotcom %} -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | Usar as alterações mais recentes do {% data variables.product.prodname_dotcom %} -| <kbd>⌘</kbd><kbd>⌫</kbd> | Remover um repositório | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | Exibir o repositório no {% data variables.product.prodname_dotcom %} -| <kbd>⌃</kbd><kbd>`</kbd> | Abrir o repositório na sua ferramenta de terminal preferida | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | Exibir o repositório no Localizador | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | Abrir o repositório na sua ferramenta de edição preferida | -| <kbd>⌘</kbd><kbd>I</kbd> | Criar um problema em {% data variables.product.prodname_dotcom %} +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>N</kbd> | Add a new repository +|<kbd>⌘</kbd><kbd>O</kbd> | Add a local repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>⌘</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>⌫</kbd> | Remove an existing repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>⌃</kbd><kbd>`</kbd> | Open repository in your preferred terminal tool +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | Show the repository in Finder +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>⌘</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} ## Branches -| Atalho | Descrição | -| ------------------------------------ | --------------------------------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>1</kbd> | Exibir todas as alterações antes de fazer o commit | -| <kbd>⌘</kbd><kbd>2</kbd> | Exibir o histórico de commits | -| <kbd>⌘</kbd><kbd>B</kbd> | Exibir todos os branches | -| <kbd>⌘</kbd><kbd>G</kbd> | Ir para o campo de resumo de commits | -| <kbd>⌘</kbd><kbd>Enter</kbd> | Realizar commit de alterações quando o campo de resumo ou descrição estiver ativo | -| <kbd>space (Espaço)</kbd> | Selecione ou desmarque todos os arquivos destacados | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | Criar um branch | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | Renomear o branch atual | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | Excluir o branch atual | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | Atualizar o branch padrão | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | Comparar a outro branch | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | Fazer um merge com o branch atual | -| <kbd>⌃</kbd><kbd>H</kbd> | Exibir ou ocultar alterações stashed | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | Comparar branches no {% data variables.product.prodname_dotcom %} -| <kbd>⌘</kbd><kbd>R</kbd> | Exibir a pull request atual no {% data variables.product.prodname_dotcom %} +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>⌘</kbd><kbd>2</kbd> | Show your commit history +|<kbd>⌘</kbd><kbd>B</kbd> | Show all your branches +|<kbd>⌘</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>⌘</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | Create a new branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | Update from default branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>⌃</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endmac %} {% windows %} -Atalhos de teclado do GitHub Desktop no Windows +GitHub Desktop keyboard shortcuts on Windows -## Atalhos para o site +## Site wide shortcuts -| Atalho | Descrição | -| ------------------------------------------- | ----------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>,</kbd> | Ir para Opções | -| <kbd>F11</kbd> | Alternar a exibição em tela cheia | -| <kbd>Ctrl</kbd><kbd>0</kbd> | Redefinir o zoom para o tamanho de texto padrão | -| <kbd>Ctrl</kbd><kbd>=</kbd> | Aumentar o zoom em textos e imagens | -| <kbd>Ctrl</kbd><kbd>-</kbd> | Diminuir o zoom em textos e imagens | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | Alternar as ferramentas de desenvolvedor | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>,</kbd> | Go to Options +|<kbd>F11</kbd> | Toggle full screen view +|<kbd>Ctrl</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>Ctrl</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>Ctrl</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | Toggle Developer Tools -## Repositórios +## Repositories -| Atalho de teclado | Descrição | -| ------------------------------------------- | -------------------------------------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>N</kbd> | Adicionar um novo repositório | -| <kbd>Ctrl</kbd><kbd>O</kbd> | Adicionar um repositório local | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | Clonar um repositório do {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>T</kbd> | Exibir uma lista dos repositórios | -| <kbd>Ctrl</kbd><kbd>P</kbd> | Usar os commits mais recentes do {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | Usar as alterações mais recentes do {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>Delete</kbd> | Remover um repositório | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | Exibir o repositório no {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>`</kbd> | Abrir o repositório na sua ferramenta de linha de comando preferida | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | Exibir o repositório no Explorador | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | Abrir o repositório na sua ferramenta de edição preferida | -| <kbd>Ctrl</kbd><kbd>I</kbd> | Criar um problema em {% data variables.product.prodname_dotcom %} +| Keyboard Shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>N</kbd> | Add a new repository +|<kbd>Ctrl</kbd><kbd>O</kbd> | Add a local repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>Ctrl</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Delete</kbd> | Remove an existing repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>`</kbd> | Open repository in your preferred command line tool +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | Show the repository in Explorer +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>Ctrl</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} ## Branches -| Atalho | Descrição | -| ------------------------------------------- | --------------------------------------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>1</kbd> | Exibir todas as alterações antes de fazer o commit | -| <kbd>Ctrl</kbd><kbd>2</kbd> | Exibir o histórico de commits | -| <kbd>Ctrl</kbd><kbd>B</kbd> | Exibir todos os branches | -| <kbd>Ctrl</kbd><kbd>G</kbd> | Ir para o campo de resumo de commits | -| <kbd>Ctrl</kbd><kbd>Enter</kbd> | Realizar commit de alterações quando o campo de resumo ou descrição estiver ativo | -| <kbd>space (Espaço)</kbd> | Selecione ou desmarque todos os arquivos destacados | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | Criar um branch | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | Renomear o branch atual | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | Excluir o branch atual | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | Atualizar o branch padrão | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | Comparar a outro branch | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | Fazer um merge com o branch atual | -| <kbd>Ctrl</kbd><kbd>H</kbd> | Exibir ou ocultar alterações stashed | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | Comparar branches no {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>R</kbd> | Exibir a pull request atual no {% data variables.product.prodname_dotcom %} +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>Ctrl</kbd><kbd>2</kbd> | Show your commit history +|<kbd>Ctrl</kbd><kbd>B</kbd> | Show all your branches +|<kbd>Ctrl</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>Ctrl</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | Create a new branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | Update from default branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>Ctrl</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endwindows %} diff --git a/translations/pt-BR/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md b/translations/pt-BR/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md index cc15507cf3..1ea8edbf72 100644 --- a/translations/pt-BR/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md +++ b/translations/pt-BR/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md @@ -239,16 +239,16 @@ While most of your API interaction should occur using your server-to-server inst #### Deployment Statuses -* [List deployment statuses](/rest/reference/repos#list-deployment-statuses) -* [Create a deployment status](/rest/reference/repos#create-a-deployment-status) -* [Get a deployment status](/rest/reference/repos#get-a-deployment-status) +* [List deployment statuses](/rest/reference/deployments#list-deployment-statuses) +* [Create a deployment status](/rest/reference/deployments#create-a-deployment-status) +* [Get a deployment status](/rest/reference/deployments#get-a-deployment-status) #### Deployments -* [List deployments](/rest/reference/repos#list-deployments) -* [Create a deployment](/rest/reference/repos#create-a-deployment) -* [Get a deployment](/rest/reference/repos#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} -* [Delete a deployment](/rest/reference/repos#delete-a-deployment){% endif %} +* [List deployments](/rest/reference/deployments#list-deployments) +* [Create a deployment](/rest/reference/deployments#create-a-deployment) +* [Get a deployment](/rest/reference/deployments#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} +* [Delete a deployment](/rest/reference/deployments#delete-a-deployment){% endif %} #### Events @@ -609,7 +609,7 @@ While most of your API interaction should occur using your server-to-server inst * [Get a repository](/rest/reference/repos#get-a-repository) * [Update a repository](/rest/reference/repos#update-a-repository) * [Delete a repository](/rest/reference/repos#delete-a-repository) -* [Compare two commits](/rest/reference/repos#compare-two-commits) +* [Compare two commits](/rest/reference/commits#compare-two-commits) * [List repository contributors](/rest/reference/repos#list-repository-contributors) * [List forks](/rest/reference/repos#list-forks) * [Create a fork](/rest/reference/repos#create-a-fork) @@ -641,68 +641,68 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Branches -* [List branches](/rest/reference/repos#list-branches) -* [Get a branch](/rest/reference/repos#get-a-branch) -* [Get branch protection](/rest/reference/repos#get-branch-protection) -* [Update branch protection](/rest/reference/repos#update-branch-protection) -* [Delete branch protection](/rest/reference/repos#delete-branch-protection) -* [Get admin branch protection](/rest/reference/repos#get-admin-branch-protection) -* [Set admin branch protection](/rest/reference/repos#set-admin-branch-protection) -* [Delete admin branch protection](/rest/reference/repos#delete-admin-branch-protection) -* [Get pull request review protection](/rest/reference/repos#get-pull-request-review-protection) -* [Update pull request review protection](/rest/reference/repos#update-pull-request-review-protection) -* [Delete pull request review protection](/rest/reference/repos#delete-pull-request-review-protection) -* [Get commit signature protection](/rest/reference/repos#get-commit-signature-protection) -* [Create commit signature protection](/rest/reference/repos#create-commit-signature-protection) -* [Delete commit signature protection](/rest/reference/repos#delete-commit-signature-protection) -* [Get status checks protection](/rest/reference/repos#get-status-checks-protection) -* [Update status check protection](/rest/reference/repos#update-status-check-protection) -* [Remove status check protection](/rest/reference/repos#remove-status-check-protection) -* [Get all status check contexts](/rest/reference/repos#get-all-status-check-contexts) -* [Add status check contexts](/rest/reference/repos#add-status-check-contexts) -* [Set status check contexts](/rest/reference/repos#set-status-check-contexts) -* [Remove status check contexts](/rest/reference/repos#remove-status-check-contexts) -* [Get access restrictions](/rest/reference/repos#get-access-restrictions) -* [Delete access restrictions](/rest/reference/repos#delete-access-restrictions) +* [List branches](/rest/reference/branches#list-branches) +* [Get a branch](/rest/reference/branches#get-a-branch) +* [Get branch protection](/rest/reference/branches#get-branch-protection) +* [Update branch protection](/rest/reference/branches#update-branch-protection) +* [Delete branch protection](/rest/reference/branches#delete-branch-protection) +* [Get admin branch protection](/rest/reference/branches#get-admin-branch-protection) +* [Set admin branch protection](/rest/reference/branches#set-admin-branch-protection) +* [Delete admin branch protection](/rest/reference/branches#delete-admin-branch-protection) +* [Get pull request review protection](/rest/reference/branches#get-pull-request-review-protection) +* [Update pull request review protection](/rest/reference/branches#update-pull-request-review-protection) +* [Delete pull request review protection](/rest/reference/branches#delete-pull-request-review-protection) +* [Get commit signature protection](/rest/reference/branches#get-commit-signature-protection) +* [Create commit signature protection](/rest/reference/branches#create-commit-signature-protection) +* [Delete commit signature protection](/rest/reference/branches#delete-commit-signature-protection) +* [Get status checks protection](/rest/reference/branches#get-status-checks-protection) +* [Update status check protection](/rest/reference/branches#update-status-check-protection) +* [Remove status check protection](/rest/reference/branches#remove-status-check-protection) +* [Get all status check contexts](/rest/reference/branches#get-all-status-check-contexts) +* [Add status check contexts](/rest/reference/branches#add-status-check-contexts) +* [Set status check contexts](/rest/reference/branches#set-status-check-contexts) +* [Remove status check contexts](/rest/reference/branches#remove-status-check-contexts) +* [Get access restrictions](/rest/reference/branches#get-access-restrictions) +* [Delete access restrictions](/rest/reference/branches#delete-access-restrictions) * [List teams with access to the protected branch](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) -* [Add team access restrictions](/rest/reference/repos#add-team-access-restrictions) -* [Set team access restrictions](/rest/reference/repos#set-team-access-restrictions) -* [Remove team access restriction](/rest/reference/repos#remove-team-access-restrictions) +* [Add team access restrictions](/rest/reference/branches#add-team-access-restrictions) +* [Set team access restrictions](/rest/reference/branches#set-team-access-restrictions) +* [Remove team access restriction](/rest/reference/branches#remove-team-access-restrictions) * [List user restrictions of protected branch](/rest/reference/repos#list-users-with-access-to-the-protected-branch) -* [Add user access restrictions](/rest/reference/repos#add-user-access-restrictions) -* [Set user access restrictions](/rest/reference/repos#set-user-access-restrictions) -* [Remove user access restrictions](/rest/reference/repos#remove-user-access-restrictions) -* [Merge a branch](/rest/reference/repos#merge-a-branch) +* [Add user access restrictions](/rest/reference/branches#add-user-access-restrictions) +* [Set user access restrictions](/rest/reference/branches#set-user-access-restrictions) +* [Remove user access restrictions](/rest/reference/branches#remove-user-access-restrictions) +* [Merge a branch](/rest/reference/branches#merge-a-branch) #### Repository Collaborators -* [List repository collaborators](/rest/reference/repos#list-repository-collaborators) -* [Check if a user is a repository collaborator](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) -* [Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator) -* [Remove a repository collaborator](/rest/reference/repos#remove-a-repository-collaborator) -* [Get repository permissions for a user](/rest/reference/repos#get-repository-permissions-for-a-user) +* [List repository collaborators](/rest/reference/collaborators#list-repository-collaborators) +* [Check if a user is a repository collaborator](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) +* [Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator) +* [Remove a repository collaborator](/rest/reference/collaborators#remove-a-repository-collaborator) +* [Get repository permissions for a user](/rest/reference/collaborators#get-repository-permissions-for-a-user) #### Repository Commit Comments -* [List commit comments for a repository](/rest/reference/repos#list-commit-comments-for-a-repository) -* [Get a commit comment](/rest/reference/repos#get-a-commit-comment) -* [Update a commit comment](/rest/reference/repos#update-a-commit-comment) -* [Delete a commit comment](/rest/reference/repos#delete-a-commit-comment) -* [List commit comments](/rest/reference/repos#list-commit-comments) -* [Create a commit comment](/rest/reference/repos#create-a-commit-comment) +* [List commit comments for a repository](/rest/reference/commits#list-commit-comments-for-a-repository) +* [Get a commit comment](/rest/reference/commits#get-a-commit-comment) +* [Update a commit comment](/rest/reference/commits#update-a-commit-comment) +* [Delete a commit comment](/rest/reference/commits#delete-a-commit-comment) +* [List commit comments](/rest/reference/commits#list-commit-comments) +* [Create a commit comment](/rest/reference/commits#create-a-commit-comment) #### Repository Commits -* [List commits](/rest/reference/repos#list-commits) -* [Get a commit](/rest/reference/repos#get-a-commit) -* [List branches for head commit](/rest/reference/repos#list-branches-for-head-commit) +* [List commits](/rest/reference/commits#list-commits) +* [Get a commit](/rest/reference/commits#get-a-commit) +* [List branches for head commit](/rest/reference/commits#list-branches-for-head-commit) * [List pull requests associated with commit](/rest/reference/repos#list-pull-requests-associated-with-commit) #### Repository Community * [Get the code of conduct for a repository](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) {% ifversion fpt or ghec %} -* [Get community profile metrics](/rest/reference/repos#get-community-profile-metrics) +* [Get community profile metrics](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif %} #### Repository Contents @@ -722,40 +722,40 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Hooks -* [List repository webhooks](/rest/reference/repos#list-repository-webhooks) -* [Create a repository webhook](/rest/reference/repos#create-a-repository-webhook) -* [Get a repository webhook](/rest/reference/repos#get-a-repository-webhook) -* [Update a repository webhook](/rest/reference/repos#update-a-repository-webhook) -* [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) -* [Ping a repository webhook](/rest/reference/repos#ping-a-repository-webhook) +* [List repository webhooks](/rest/reference/webhooks#list-repository-webhooks) +* [Create a repository webhook](/rest/reference/webhooks#create-a-repository-webhook) +* [Get a repository webhook](/rest/reference/webhooks#get-a-repository-webhook) +* [Update a repository webhook](/rest/reference/webhooks#update-a-repository-webhook) +* [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) +* [Ping a repository webhook](/rest/reference/webhooks#ping-a-repository-webhook) * [Test the push repository webhook](/rest/reference/repos#test-the-push-repository-webhook) #### Repository Invitations -* [List repository invitations](/rest/reference/repos#list-repository-invitations) -* [Update a repository invitation](/rest/reference/repos#update-a-repository-invitation) -* [Delete a repository invitation](/rest/reference/repos#delete-a-repository-invitation) -* [List repository invitations for the authenticated user](/rest/reference/repos#list-repository-invitations-for-the-authenticated-user) -* [Accept a repository invitation](/rest/reference/repos#accept-a-repository-invitation) -* [Decline a repository invitation](/rest/reference/repos#decline-a-repository-invitation) +* [List repository invitations](/rest/reference/collaborators#list-repository-invitations) +* [Update a repository invitation](/rest/reference/collaborators#update-a-repository-invitation) +* [Delete a repository invitation](/rest/reference/collaborators#delete-a-repository-invitation) +* [List repository invitations for the authenticated user](/rest/reference/collaborators#list-repository-invitations-for-the-authenticated-user) +* [Accept a repository invitation](/rest/reference/collaborators#accept-a-repository-invitation) +* [Decline a repository invitation](/rest/reference/collaborators#decline-a-repository-invitation) #### Repository Keys -* [List deploy keys](/rest/reference/repos#list-deploy-keys) -* [Create a deploy key](/rest/reference/repos#create-a-deploy-key) -* [Get a deploy key](/rest/reference/repos#get-a-deploy-key) -* [Delete a deploy key](/rest/reference/repos#delete-a-deploy-key) +* [List deploy keys](/rest/reference/deployments#list-deploy-keys) +* [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) +* [Get a deploy key](/rest/reference/deployments#get-a-deploy-key) +* [Delete a deploy key](/rest/reference/deployments#delete-a-deploy-key) #### Repository Pages -* [Get a GitHub Pages site](/rest/reference/repos#get-a-github-pages-site) -* [Create a GitHub Pages site](/rest/reference/repos#create-a-github-pages-site) -* [Update information about a GitHub Pages site](/rest/reference/repos#update-information-about-a-github-pages-site) -* [Delete a GitHub Pages site](/rest/reference/repos#delete-a-github-pages-site) -* [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) -* [Request a GitHub Pages build](/rest/reference/repos#request-a-github-pages-build) -* [Get GitHub Pages build](/rest/reference/repos#get-github-pages-build) -* [Get latest pages build](/rest/reference/repos#get-latest-pages-build) +* [Get a GitHub Pages site](/rest/reference/pages#get-a-github-pages-site) +* [Create a GitHub Pages site](/rest/reference/pages#create-a-github-pages-site) +* [Update information about a GitHub Pages site](/rest/reference/pages#update-information-about-a-github-pages-site) +* [Delete a GitHub Pages site](/rest/reference/pages#delete-a-github-pages-site) +* [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) +* [Request a GitHub Pages build](/rest/reference/pages#request-a-github-pages-build) +* [Get GitHub Pages build](/rest/reference/pages#get-github-pages-build) +* [Get latest pages build](/rest/reference/pages#get-latest-pages-build) {% ifversion ghes %} #### Repository Pre Receive Hooks @@ -782,11 +782,11 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Stats -* [Get the weekly commit activity](/rest/reference/repos#get-the-weekly-commit-activity) -* [Get the last year of commit activity](/rest/reference/repos#get-the-last-year-of-commit-activity) -* [Get all contributor commit activity](/rest/reference/repos#get-all-contributor-commit-activity) -* [Get the weekly commit count](/rest/reference/repos#get-the-weekly-commit-count) -* [Get the hourly commit count for each day](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +* [Get the weekly commit activity](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +* [Get the last year of commit activity](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +* [Get all contributor commit activity](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +* [Get the weekly commit count](/rest/reference/repository-metrics#get-the-weekly-commit-count) +* [Get the hourly commit count for each day](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) {% ifversion fpt or ghec %} #### Repository Vulnerability Alerts @@ -812,9 +812,9 @@ While most of your API interaction should occur using your server-to-server inst #### Statuses -* [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) -* [List commit statuses for a reference](/rest/reference/repos#list-commit-statuses-for-a-reference) -* [Create a commit status](/rest/reference/repos#create-a-commit-status) +* [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) +* [List commit statuses for a reference](/rest/reference/commits#list-commit-statuses-for-a-reference) +* [Create a commit status](/rest/reference/commits#create-a-commit-status) #### Team Discussions @@ -837,10 +837,10 @@ While most of your API interaction should occur using your server-to-server inst {% ifversion fpt or ghec %} #### Traffic -* [Get repository clones](/rest/reference/repos#get-repository-clones) -* [Get top referral paths](/rest/reference/repos#get-top-referral-paths) -* [Get top referral sources](/rest/reference/repos#get-top-referral-sources) -* [Get page views](/rest/reference/repos#get-page-views) +* [Get repository clones](/rest/reference/repository-metrics#get-repository-clones) +* [Get top referral paths](/rest/reference/repository-metrics#get-top-referral-paths) +* [Get top referral sources](/rest/reference/repository-metrics#get-top-referral-sources) +* [Get page views](/rest/reference/repository-metrics#get-page-views) {% endif %} {% ifversion fpt or ghec %} diff --git a/translations/pt-BR/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md b/translations/pt-BR/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md index 0ccdcca7ea..3b4da45422 100644 --- a/translations/pt-BR/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md +++ b/translations/pt-BR/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md @@ -1,6 +1,6 @@ --- -title: Diferenças entre os aplicativos GitHub e OAuth -intro: 'Entender as diferenças entre {% data variables.product.prodname_github_apps %} e {% data variables.product.prodname_oauth_apps %} ajudará você a decidir qual aplicativo você deseja criar. O {% data variables.product.prodname_oauth_app %} atua como usuário do GitHub, enquanto o {% data variables.product.prodname_github_app %} usa sua própria identidade quando instalado em uma organização ou em repositórios de uma organização.' +title: Differences between GitHub Apps and OAuth Apps +intro: 'Understanding the differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} will help you decide which app you want to create. An {% data variables.product.prodname_oauth_app %} acts as a GitHub user, whereas a {% data variables.product.prodname_github_app %} uses its own identity when installed on an organization or on repositories within an organization.' redirect_from: - /early-access/integrations/integrations-vs-oauth-applications/ - /apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type/ @@ -14,100 +14,99 @@ versions: topics: - GitHub Apps - OAuth Apps -shortTitle: Aplicativos GitHub & Aplicativos OAuth +shortTitle: GitHub Apps & OAuth Apps --- +## Who can install GitHub Apps and authorize OAuth Apps? -## Quem pode instalar aplicativos GitHub e autorizar aplicativos OAuth? - -Você pode instalar os aplicativos GitHub em sua conta pessoal ou em organizações das quais você é proprietário. Se você tiver permissões de administrador em um repositório, você poderá instalar os aplicativos GitHub em contas de organização. Se um aplicativo GitHub for instalado em um repositório e exigir permissões de organização, o proprietário da organização deverá aprovar o aplicativo. +You can install GitHub Apps in your personal account or organizations you own. If you have admin permissions in a repository, you can install GitHub Apps on organization accounts. If a GitHub App is installed in a repository and requires organization permissions, the organization owner must approve the application. {% data reusables.apps.app_manager_role %} -Por outro lado, os usuários _autorizam_ aplicativos OAuth, que dão ao aplicativo a capacidade de atuar como usuário autenticado. Por exemplo, você pode autorizar um aplicativo OAuth que encontra todas as notificações para o usuário autenticado. Você sempre pode revogar as permissões de um aplicativo OAuth. +By contrast, users _authorize_ OAuth Apps, which gives the app the ability to act as the authenticated user. For example, you can authorize an OAuth App that finds all notifications for the authenticated user. You can always revoke permissions from an OAuth App. {% data reusables.apps.deletes_ssh_keys %} -| Aplicativos do GitHub | Aplicativos OAuth | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Você deve ser proprietário de uma organização ou ter permissões de administrador em um repositório para instalar um aplicativo do GitHub em uma organização. Se um aplicativo GitHub for instalado em um repositório e exigir permissões de organização, o proprietário da organização deverá aprovar o aplicativo. | Você pode autorizar um aplicativo OAuth para ter acesso a recursos. | -| Você pode instalar um aplicativo GitHub no seu repositório pessoal. | Você pode autorizar um aplicativo OAuth para ter acesso a recursos. | -| Você deve ser um proprietário da organização, proprietário pessoal do repositório ou ter permissões de administrador em um repositório para desinstalar um aplicativo GitHub e remover seu acesso. | Você pode excluir um token de acesso do OAuth para remover o acesso. | -| Você deve ser um proprietário de uma organização ou ter permissões de administrador em um repositório para solicitar a instalação de um aplicativo GitHub. | Se uma política de aplicativos da organização estiver ativa, qualquer integrante da organização poderá solicitar a instalação de um aplicativo OAuth em uma organização. Um proprietário da organização deve aprovar ou negar a solicitação. | +| GitHub Apps | OAuth Apps | +| ----- | ------ | +| You must be an organization owner or have admin permissions in a repository to install a GitHub App on an organization. If a GitHub App is installed in a repository and requires organization permissions, the organization owner must approve the application. | You can authorize an OAuth app to have access to resources. | +| You can install a GitHub App on your personal repository. | You can authorize an OAuth app to have access to resources.| +| You must be an organization owner, personal repository owner, or have admin permissions in a repository to uninstall a GitHub App and remove its access. | You can delete an OAuth access token to remove access. | +| You must be an organization owner or have admin permissions in a repository to request a GitHub App installation. | If an organization application policy is active, any organization member can request to install an OAuth App on an organization. An organization owner must approve or deny the request. | -## O que o aplicativo GitHub e o aplicativo OAuth podem acessar? +## What can GitHub Apps and OAuth Apps access? -Os proprietários de contas podem usar um {% data variables.product.prodname_github_app %} em uma conta sem conceder acesso a outra. Por exemplo, você pode instalar um serviço de criação de terceiros na organização do seu empregador, mas decidir não conceder esse acesso de serviço de criação aos repositórios na sua conta pessoal. Um aplicativo GitHub permanece instalado se a pessoa que o configura sair da organização. +Account owners can use a {% data variables.product.prodname_github_app %} in one account without granting access to another. For example, you can install a third-party build service on your employer's organization, but decide not to grant that build service access to repositories in your personal account. A GitHub App remains installed if the person who set it up leaves the organization. -Um aplicativo OAuth _authorized_ tem acesso a todos os recursos acessíveis do usuário ou do proprietário da organização. +An _authorized_ OAuth App has access to all of the user's or organization owner's accessible resources. -| Aplicativos do GitHub | Aplicativos OAuth | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| A instalação de um aplicativo GitHub concede o acesso do aplicativo aos repositórios escolhidos por um usuário ou conta de organização. | Autorizar um aplicativo OAuth concede acesso aos recursos acessíveis do usuário. Por exemplo, repositórios que podem acessar. | -| O token de instalação de um aplicativo GitHub perde acesso aos recursos se um administrador remover repositórios da instalação. | Um token de acesso do OAuth perde acesso aos recursos quando o usuário perde acesso, como quando perdem acesso de gravação em um repositório. | -| Os tokens de acesso de instalação são limitados a repositórios especificados com as permissões escolhidas pelo criador do aplicativo. | Um token de acesso do OAuth é limitado por meio de escopos. | -| Os aplicativos GitHub podem solicitar acesso separado para problemas e pull requests sem acessar o conteúdo real do repositório. | Os aplicativos OAuth precisam solicitar o escopo do `repositório` para obter acesso a problemas, pull requests ou qualquer coisa que seja propriedade do repositório. | -| Os aplicativos GitHub não estão sujeitos às políticas do aplicativo da organização. Um aplicativo GitHub só tem acesso aos repositórios que o proprietário de uma organização concedeu. | Se uma política de aplicativos da organização estiver ativa, somente um proprietário da organização poderá autorizar a instalação de um aplicativo OAuth. Se instalado, o aplicativo OAuth ganhará acesso a qualquer coisa visível para o token que o proprietário da organização tem dentro da organização aprovada. | -| Um aplicativo GitHub recebe um evento do webhook quando uma instalação é alterada ou removida. Isto informa ao criador do aplicativo quando receberam mais ou menos acesso aos recursos de uma organização. | Os aplicativos OAuth podem perder acesso a uma organização ou repositório a qualquer momento com na alteração de acesso do usuário concedido. O aplicativo OAuth não irá informá-lo quando perde acesso a um recurso. | +| GitHub Apps | OAuth Apps | +| ----- | ------ | +| Installing a GitHub App grants the app access to a user or organization account's chosen repositories. | Authorizing an OAuth App grants the app access to the user's accessible resources. For example, repositories they can access. | +| The installation token from a GitHub App loses access to resources if an admin removes repositories from the installation. | An OAuth access token loses access to resources when the user loses access, such as when they lose write access to a repository. | +| Installation access tokens are limited to specified repositories with the permissions chosen by the creator of the app. | An OAuth access token is limited via scopes. | +| GitHub Apps can request separate access to issues and pull requests without accessing the actual contents of the repository. | OAuth Apps need to request the `repo` scope to get access to issues, pull requests, or anything owned by the repository. | +| GitHub Apps aren't subject to organization application policies. A GitHub App only has access to the repositories an organization owner has granted. | If an organization application policy is active, only an organization owner can authorize the installation of an OAuth App. If installed, the OAuth App gains access to anything visible to the token the organization owner has within the approved organization. | +| A GitHub App receives a webhook event when an installation is changed or removed. This tells the app creator when they've received more or less access to an organization's resources. | OAuth Apps can lose access to an organization or repository at any time based on the granting user's changing access. The OAuth App will not inform you when it loses access to a resource. | -## Identificação baseada em token +## Token-based identification {% note %} -**Observação:** Os aplicativos GitHub também podem usar token baseado em usuários. Para obter mais informações, consulte "[Identificar e autorizar usuários para aplicativos GitHub](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)". +**Note:** GitHub Apps can also use a user-based token. For more information, see "[Identifying and authorizing users for GitHub Apps](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)." {% endnote %} -| Aplicativos do GitHub | Aplicativos OAuth | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Um aplicativo GitHub pode solicitar um token de acesso de instalação usando uma chave privada com um formato de token do JSON fora da banda. | Um aplicativo OAuth pode trocar um token de solicitação por um token de acesso após um redirecionamento por meio de uma solicitação da web. | -| Um token de instalação identifica o aplicativo como o bot do aplicativo GitHub, como, por exemplo, @jenkins-bot. | Um token de acesso identifica o aplicativo como o usuário que concedeu o token ao aplicativo, como, por exemplo, o @octocat. | -| Os tokens de instalação expiram após um tempo predefinido (atualmente, 1 hora). | Os tokens do OAuth permanecem ativos até que sejam cancelados pelo cliente. | -| {% data reusables.apps.api-rate-limits-non-ghec %}{% ifversion fpt or ghec %} Aplicam-se limites de taxa mais altos para {% data variables.product.prodname_ghe_cloud %}. Para obter mais informações, consulte "[Limites de taxas para os aplicativos GitHub](/developers/apps/rate-limits-for-github-apps)."{% endif %} | Os tokens do OAuth usam o limite de taxa de usuário de 5.000 solicitações por hora. | -| Os aumentos no limite de taxa pode ser concedido tanto no nível do aplicativo GitHub (afetando todas as instalações) quanto no nível de instalação individual. | Os aumentos no limite de taxa são concedidos pelo aplicativo OAuth. Todo token concedido para que o aplicativo OAuth obtém um aumento do limite. | -| {% data variables.product.prodname_github_apps %} pode efetuar a autenticação em nome do usuário, que é denominado de solicitações de usuário para servidor. O fluxo para autorizar é o mesmo que o fluxo de autorização do aplicativo OAuth. Os tokens de usuário para servidor podem expirar e ser renovados com um token de atualização. Para obter mais informações, consulte "[Atualizando tokens de acesso do usuário para servidor](/apps/building-github-apps/refreshing-user-to-server-access-tokens/)" e "[identificando e autorizando os usuários para os aplicativos GitHub](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)". | O fluxo do OAuth usado por {% data variables.product.prodname_oauth_apps %} autoriza um {% data variables.product.prodname_oauth_app %} em nome do usuário. Este é o mesmo fluxo de uso na autorização de usuário para servidor do {% data variables.product.prodname_github_app %}. | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| A GitHub App can request an installation access token by using a private key with a JSON web token format out-of-band. | An OAuth app can exchange a request token for an access token after a redirect via a web request. | +| An installation token identifies the app as the GitHub Apps bot, such as @jenkins-bot. | An access token identifies the app as the user who granted the token to the app, such as @octocat. | +| Installation tokens expire after a predefined amount of time (currently 1 hour). | OAuth tokens remain active until they're revoked by the customer. | +| {% data reusables.apps.api-rate-limits-non-ghec %}{% ifversion fpt or ghec %} Higher rate limits apply for {% data variables.product.prodname_ghe_cloud %}. For more information, see "[Rate limits for GitHub Apps](/developers/apps/rate-limits-for-github-apps)."{% endif %} | OAuth tokens use the user's rate limit of 5,000 requests per hour. | +| Rate limit increases can be granted both at the GitHub Apps level (affecting all installations) and at the individual installation level. | Rate limit increases are granted per OAuth App. Every token granted to that OAuth App gets the increased limit. | +| {% data variables.product.prodname_github_apps %} can authenticate on behalf of the user, which is called user-to-server requests. The flow to authorize is the same as the OAuth App authorization flow. User-to-server tokens can expire and be renewed with a refresh token. For more information, see "[Refreshing user-to-server access tokens](/apps/building-github-apps/refreshing-user-to-server-access-tokens/)" and "[Identifying and authorizing users for GitHub Apps](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)." | The OAuth flow used by {% data variables.product.prodname_oauth_apps %} authorizes an {% data variables.product.prodname_oauth_app %} on behalf of the user. This is the same flow used in {% data variables.product.prodname_github_app %} user-to-server authorization. | -## Solicitar níveis de permissão para os recursos +## Requesting permission levels for resources -Ao contrário dos aplicativos OAuth, os aplicativos GitHub têm permissões direcionadas que lhes permitem solicitar acesso apenas ao que precisam. Por exemplo, uma Integração Contínua (CI) do aplicativo GitHub pode solicitar acesso de leitura ao conteúdo do repositório e acesso de gravação à API de status. Outro aplicativo GitHub não pode ter acesso de leitura ou de gravação para o código, mas ainda assim pode gerenciar problemas, etiquetas e marcos. Os aplicativos OAuth não podem usar permissões granulares. +Unlike OAuth apps, GitHub Apps have targeted permissions that allow them to request access only to what they need. For example, a Continuous Integration (CI) GitHub App can request read access to repository content and write access to the status API. Another GitHub App can have no read or write access to code but still have the ability to manage issues, labels, and milestones. OAuth Apps can't use granular permissions. -| Access | Aplicativos GitHub (permissões de `leitura` ou `gravação`) | Aplicativos OAuth | -| --------------------------------------------------------- | ----------------------------------------------------------------- | --------------------------------------------- | -| **Para acesso a repositórios públicos** | O repositório público precisa ser escolhido durante a instalação. | Escopo do `public_repo`. | -| **Para acesso ao código/conteúdo do repositório** | Conteúdo do repositório | Escopo do `repositório`. | -| **Para acesso a problema, etiquetas e marcos** | Problemas | Escopo do `repositório`. | -| **Para acesso a pull requests, etiquetas e marcos** | Pull requests | Escopo do `repositório`. | -| **Para acesso ao status do commit (para criações de CI)** | Status do commit | Escopo do `repo:status`. | -| **Para acesso às implantações e status de implantação** | Implantações | Escopo do `repo_deployment`. | -| **Para receber eventos por meio de um webhook** | Um aplicativo de GitHub inclui um webhook por padrão. | Escopo `write:repo_hook` ou `write:org_hook`. | +| Access | GitHub Apps (`read` or `write` permissions) | OAuth Apps | +| ------ | ----- | ----------- | +| **For access to public repositories** | Public repository needs to be chosen during installation. | `public_repo` scope. | +| **For access to repository code/contents** | Repository contents | `repo` scope. | +| **For access to issues, labels, and milestones** | Issues | `repo` scope. | +| **For access to pull requests, labels, and milestones** | Pull requests | `repo` scope. | +| **For access to commit statuses (for CI builds)** | Commit statuses | `repo:status` scope. | +| **For access to deployments and deployment statuses** | Deployments | `repo_deployment` scope. | +| **To receive events via a webhook** | A GitHub App includes a webhook by default. | `write:repo_hook` or `write:org_hook` scope. | -## Descoberta de repositório +## Repository discovery -| Aplicativos do GitHub | Aplicativos OAuth | -| --------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Os aplicativos GitHub podem olhar para `/installation/repositórios` para ver os repositórios que a instalação pode acessar. | Aplicativos OAuth podem olhar para `/user/repos` para obter uma visualização do usuário ou para `/orgs/:org/repos` para obter uma visualização da organização dos repositórios repositórios acessíveis. | -| Os aplicativos GitHub recebem webhooks quando os repositórios são adicionados ou removidos da instalação. | Os aplicativos OAuth criam webhooks de organização para notificações quando um novo repositório é criado dentro de uma organização. | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub Apps can look at `/installation/repositories` to see repositories the installation can access. | OAuth Apps can look at `/user/repos` for a user view or `/orgs/:org/repos` for an organization view of accessible repositories. | +| GitHub Apps receive webhooks when repositories are added or removed from the installation. | OAuth Apps create organization webhooks for notifications when a new repository is created within an organization. | ## Webhooks -| Aplicativos do GitHub | Aplicativos OAuth | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Por padrão, os aplicativos GitHub têm um único webhook que recebe os eventos que estão configurados para receber para cada repositório ao qual têm acesso. | Os aplicativos OAuth solicitam o escopo do webhook para criar um webhook do repositório para cada repositório do qual precisam receber eventos. | -| O aplicativo GitHub recebe certos eventos a nível da organização com a permissão do integrante da organização. | Os aplicativos OAuth solicitam o escopo do webhook da organização para criar um webhook da organização para cada organização da qual precisam para receber eventos a nível da organização. | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| By default, GitHub Apps have a single webhook that receives the events they are configured to receive for every repository they have access to. | OAuth Apps request the webhook scope to create a repository webhook for each repository they need to receive events from. | +| GitHub Apps receive certain organization-level events with the organization member's permission. | OAuth Apps request the organization webhook scope to create an organization webhook for each organization they need to receive organization-level events from. | -## Acesso Git +## Git access -| Aplicativos do GitHub | Aplicativos OAuth | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Os aplicativos GitHub solicitam permissão de conteúdo de repositórios e usam seu token de instalação para efetuar a autenticação por meio do [Git baseado em HTTP](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | Os aplicativos OAuth solicitam escopo `write:public_key` e [Criar uma chave de implantação](/rest/reference/repos#create-a-deploy-key) por meio da API. Você pode usar essa chave para realizar comandos do Git. | -| O token é usado como senha HTTP. | O token é usado como nome de usuário HTTP. | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | +| The token is used as the HTTP password. | The token is used as the HTTP username. | -## Máquina vs. contas de bot +## Machine vs. bot accounts -Contas de usuário de máquina são contas de usuário baseadas no OAuth que separam sistemas automatizados usando o sistema de usuário do GitHub. +Machine user accounts are OAuth-based user accounts that segregate automated systems using GitHub's user system. -As contas do bot são específicas para os aplicativos GitHub e são construídas em todos os aplicativos GitHub. +Bot accounts are specific to GitHub Apps and are built into every GitHub App. -| Aplicativos do GitHub | Aplicativos OAuth | -| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| Os bots do aplicativo GitHub não consomem uma estação {% data variables.product.prodname_enterprise %}. | Uma conta de usuário de máquina consome uma estação {% data variables.product.prodname_enterprise %}. | -| Como um bot do aplicativo GitHub nunca recebe uma senha, um cliente não pode entrar diretamente nele. | Um nome de usuário e senha são concedidos a uma conta de usuário de máquina para ser gerenciada e protegida pelo cliente. | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub App bots do not consume a {% data variables.product.prodname_enterprise %} seat. | A machine user account consumes a {% data variables.product.prodname_enterprise %} seat. | +| Because a GitHub App bot is never granted a password, a customer can't sign into it directly. | A machine user account is granted a username and password to be managed and secured by the customer. | diff --git a/translations/pt-BR/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md b/translations/pt-BR/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md index 8c817daca6..c50c580dbb 100644 --- a/translations/pt-BR/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md +++ b/translations/pt-BR/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md @@ -1,6 +1,6 @@ --- -title: Migrar aplicativos OAuth para aplicativos GitHub -intro: 'Saiba mais sobre as vantagens de migrar seu {% data variables.product.prodname_oauth_app %} para um {% data variables.product.prodname_github_app %} e como migrar um {% data variables.product.prodname_oauth_app %} que não está listado no {% data variables.product.prodname_marketplace %}.' +title: Migrating OAuth Apps to GitHub Apps +intro: 'Learn about the advantages of migrating your {% data variables.product.prodname_oauth_app %} to a {% data variables.product.prodname_github_app %} and how to migrate an {% data variables.product.prodname_oauth_app %} that isn''t listed on {% data variables.product.prodname_marketplace %}. ' redirect_from: - /apps/migrating-oauth-apps-to-github-apps - /developers/apps/migrating-oauth-apps-to-github-apps @@ -11,100 +11,99 @@ versions: ghec: '*' topics: - GitHub Apps -shortTitle: Fazer a migração dos aplicativos OAuth +shortTitle: Migrate from OAuth Apps --- +This article provides guidelines for existing integrators who are considering migrating from an OAuth App to a GitHub App. -Este artigo fornece orientações para integradores existentes que estão considerando a migração de um aplicativo OAuth para um aplicativo GitHub. +## Reasons for switching to GitHub Apps -## Razões para alternar para aplicativos GitHub +[GitHub Apps](/apps/) are the officially recommended way to integrate with GitHub because they offer many advantages over a pure OAuth-based integration: -[Os aplicativos GitHub](/apps/) são a forma oficialmente recomendada de integrar-se ao GitHub, pois oferecem muitas vantagens em relação a uma integração pura baseada no OAuth: +- [Fine-grained permissions](/apps/differences-between-apps/#requesting-permission-levels-for-resources) target the specific information a GitHub App can access, allowing the app to be more widely used by people and organizations with security policies than OAuth Apps, which cannot be limited by permissions. +- [Short-lived tokens](/apps/differences-between-apps/#token-based-identification) provide a more secure authentication method over OAuth tokens. An OAuth token does not expire until the person who authorized the OAuth App revokes the token. GitHub Apps use tokens that expire quickly, creating a much smaller window of time for compromised tokens to be in use. +- [Built-in, centralized webhooks](/apps/differences-between-apps/#webhooks) receive events for all repositories and organizations the app can access. Conversely, OAuth Apps require configuring a webhook for each repository and organization accessible to the user. +- [Bot accounts](/apps/differences-between-apps/#machine-vs-bot-accounts) don't consume a {% data variables.product.product_name %} seat and remain installed even when the person who initially installed the app leaves the organization. +- Built-in support for OAuth is still available to GitHub Apps using [user-to-server endpoints](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/). +- Dedicated [API rate limits](/apps/building-github-apps/understanding-rate-limits-for-github-apps/) for bot accounts scale with your integration. +- Repository owners can [install GitHub Apps](/apps/differences-between-apps/#who-can-install-github-apps-and-authorize-oauth-apps) on organization repositories. If a GitHub App's configuration has permissions that request an organization's resources, the org owner must approve the installation. +- Open Source community support is available through [Octokit libraries](/rest/overview/libraries) and other frameworks such as [Probot](https://probot.github.io/). +- Integrators building GitHub Apps have opportunities to adopt earlier access to APIs. -- [Permissões refinadas](/apps/differences-between-apps/#requesting-permission-levels-for-resources) direcionadas às informações específicas que um aplicativo GitHub pode acessar, o que permite que o aplicativo seja mais amplamente utilizado por pessoas e organizações com políticas de segurança do que os aplicativos OAuth, que não podem ser limitados pelas permissões. -- [Os tokens de vida útil curta](/apps/differences-between-apps/#token-based-identification) fornecem um método de autenticação mais seguro em relação aos tokens do OAuth. Um token do OAuth não expira até que a pessoa que autorizou o aplicativo OAuth revogue o token. Os aplicativos GitHub usam tokens que expiram rapidamente, o que cria uma janela de tempo muito menor para que tokens comprometidos sejam usados. -- [Os webhooks integrados e centralizados](/apps/differences-between-apps/#webhooks) recebem eventos para todos os repositórios e organizações que o aplicativo pode acessar. Inversamente, os aplicativos OAuth exigem a configuração de um webhook para cada repositório e organização acessível ao usuário. -- [As contas do bot](/apps/differences-between-apps/#machine-vs-bot-accounts) não consomem um assento do {% data variables.product.product_name %} e permanecem instaladas mesmo quando a pessoa que inicialmente instalou o aplicativo sair da organização. -- O suporte integrado para o OAuth ainda está disponível para aplicativos GitHub usando [pontos finais de usuário para servidor](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/). -- [Os limites de taxa de API](/apps/building-github-apps/understanding-rate-limits-for-github-apps/) dedicados para as contas do bot são escalados com a sua integração. -- Os proprietários de repositórios podem [instalar aplicativos GitHub](/apps/differences-between-apps/#who-can-install-github-apps-and-authorize-oauth-apps) em repositórios de organizações. Se a configuração de um aplicativo GitHub tiver permissões que solicitam os recursos de uma organização, o proprietário d organização deverá aprovar a instalação. -- O suporte da comunidade do código aberto está disponível nas [bibliotecas do Octokit](/rest/overview/libraries) e outros estruturas como, por exemplo, o [Probot](https://probot.github.io/). -- Os integradores que constroem os aplicativos GitHub têm a oportunidade de adotar acesso prévio às APIs. +## Converting an OAuth App to a GitHub App -## Converter um aplicativo OAuth em um aplicativo GitHub +These guidelines assume that you have a registered OAuth App{% ifversion fpt or ghec %} that may or may not be listed in GitHub Marketplace{% endif %}. At a high level, you'll need to follow these steps: -Essas diretrizes assumem que você tem um aplicativo OAuth registrado{% ifversion fpt or ghec %} que pode ou não estar listado no GitHub Marketplace{% endif %}. De modo geral, você deverá seguir estas etapas: +1. [Review the available API endpoints for GitHub Apps](#review-the-available-api-endpoints-for-github-apps) +1. [Design to stay within API rate limits](#design-to-stay-within-api-rate-limits) +1. [Register a new GitHub App](#register-a-new-github-app) +1. [Determine the permissions your app requires](#determine-the-permissions-your-app-requires) +1. [Subscribe to webhooks](#subscribe-to-webhooks) +1. [Understand the different methods of authentication](#understand-the-different-methods-of-authentication) +1. [Direct users to install your GitHub App on repositories](#direct-users-to-install-your-github-app-on-repositories) +1. [Remove any unnecessary repository hooks](#remove-any-unnecessary-repository-hooks) +1. [Encourage users to revoke access to your OAuth App](#encourage-users-to-revoke-access-to-your-oauth-app) +1. [Delete the OAuth App](#delete-the-oauth-app) -1. [Revise os pontos finais da API disponíveis para os aplicativos do GitHub](#review-the-available-api-endpoints-for-github-apps) -1. [Projete para permanecer dentro dos limites de taxa da API](#design-to-stay-within-api-rate-limits) -1. [Cadastre um novo aplicativo GitHub](#register-a-new-github-app) -1. [Determine as permissões de que seu aplicativo precisa](#determine-the-permissions-your-app-requires) -1. [Assine os webhooks](#subscribe-to-webhooks) -1. [Entenda os diferentes métodos de autenticação](#understand-the-different-methods-of-authentication) -1. [Oriente os usuários para instalar o seu aplicativo GitHub nos repositórios](#direct-users-to-install-your-github-app-on-repositories) -1. [Remova quaisquer hooks de repositório desnecessários](#remove-any-unnecessary-repository-hooks) -1. [Incentive os usuários a revogar o acesso ao seu aplicativo OAuth](#encourage-users-to-revoke-access-to-your-oauth-app) -1. [Exclua o aplicativo OAuth](#delete-the-oauth-app) +### Review the available API endpoints for GitHub Apps -### Revise os pontos finais da API disponíveis para os aplicativos do GitHub +While the majority of [REST API](/rest) endpoints and [GraphQL]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql) queries are available to GitHub Apps today, we are still in the process of enabling some endpoints. Review the [available REST endpoints](/rest/overview/endpoints-available-for-github-apps) to ensure that the endpoints you need are compatible with GitHub Apps. Note that some of the API endpoints enabled for GitHub Apps allow the app to act on behalf of the user. See "[User-to-server requests](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#user-to-server-requests)" for a list of endpoints that allow a GitHub App to authenticate as a user. -Embora a maioria dos pontos finais da [API REST](/rest) e as consultas do [GraphQL]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql) estejam disponíveis para os aplicativos GitHub atualmente, ainda estamos em vias de habilitar alguns pontos finais. Revise os [pontos finais da REST disponíveis](/rest/overview/endpoints-available-for-github-apps) para garantir que os pontos finais de que você precisa sejam compatíveis com o aplicativo GitHub. Observe que alguns dos pontos finais da API ativados para os aplicativos GitHub permitem que o aplicativo aja em nome do usuário. Consulte "[Solicitações de usuário para servidor](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#user-to-server-requests)" para obter uma lista de pontos finais que permitem que um aplicativo GitHub seja autenticado como usuário. +We recommend reviewing the list of API endpoints you need as early as possible. Please let Support know if there is an endpoint you require that is not yet enabled for {% data variables.product.prodname_github_apps %}. -Recomendamos que você reveja a lista de pontos finais de API de que você precisa assim que possível. Informe ao suporte se há um ponto de extremidade necessário que ainda não esteja habilitado para {% data variables.product.prodname_github_apps %}. +### Design to stay within API rate limits -### Projete para permanecer dentro dos limites de taxa da API +GitHub Apps use [sliding rules for rate limits](/apps/building-github-apps/understanding-rate-limits-for-github-apps/), which can increase based on the number of repositories and users in the organization. A GitHub App can also make use of [conditional requests](/rest/overview/resources-in-the-rest-api#conditional-requests) or consolidate requests by using the [GraphQL API V4]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql). -Os aplicativos GitHub usam [regras móveis para limites de taxa](/apps/building-github-apps/understanding-rate-limits-for-github-apps/), que podem aumentar com base no número de repositórios e usuários da organização. Um aplicativo do GitHub também pode usar [solicitações condicionais](/rest/overview/resources-in-the-rest-api#conditional-requests) ou consolidar solicitações usando [GraphQL API V4]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql). +### Register a new GitHub App -### Cadastre um novo aplicativo GitHub +Once you've decided to make the switch to GitHub Apps, you'll need to [create a new GitHub App](/apps/building-github-apps/). -Uma vez que você decidiu fazer a troca para os aplicativos GitHub, você precisará [criar um novo aplicativo GitHub](/apps/building-github-apps/). +### Determine the permissions your app requires -### Determine as permissões de que seu aplicativo precisa +When registering your GitHub App, you'll need to select the permissions required by each endpoint used in your app's code. See "[GitHub App permissions](/rest/reference/permissions-required-for-github-apps)" for a list of the permissions needed for each endpoint available to GitHub Apps. -Ao registrar seu aplicativo GitHub, você deverá selecionar as permissões necessárias por cada ponto final usado no código do seu aplicativo. Consulte "[Permissões do aplicativo GitHub](/rest/reference/permissions-required-for-github-apps)" para obter uma lista das permissões necessárias para cada ponto final disponível nos aplicativos GitHub. +In your GitHub App's settings, you can specify whether your app needs `No Access`, `Read-only`, or `Read & Write` access for each permission type. The fine-grained permissions allow your app to gain targeted access to the subset of data you need. We recommend specifying the smallest set of permissions possible that provides the desired functionality. -Nas configurações do seu aplicativo GitHub, você pode especificar se seu aplicativo precisa de acesso `Sem Acesso`, `somente leitura`, ou `Leitura & Gravação` para cada tipo de permissão. As permissões refinadas permitem que seu aplicativo obtenha acesso direcionado ao subconjunto de dados de que você precisa. Recomendamos especificar o menor conjunto de permissões possível que fornece a funcionalidade desejada. +### Subscribe to webhooks -### Assine os webhooks +After you've created a new GitHub App and selected its permissions, you can select the webhook events you wish to subscribe it to. See "[Editing a GitHub App's permissions](/apps/managing-github-apps/editing-a-github-app-s-permissions/)" to learn how to subscribe to webhooks. -Após criar um novo aplicativo GitHub e selecionar suas permissões, você poderá selecionar os eventos do webhook que você deseja que ele assine. Consulte "[Editando as permissões do aplicativo GitHub](/apps/managing-github-apps/editing-a-github-app-s-permissions/)" para aprender como assinar webhooks. +### Understand the different methods of authentication -### Entenda os diferentes métodos de autenticação +GitHub Apps primarily use a token-based authentication that expires after a short amount of time, providing more security than an OAuth token that does not expire. It’s important to understand the different methods of authentication available to you and when you need to use them: -Os aplicativos do GitHub usam principalmente uma autenticação baseada em tokens que expira após um curto período de tempo, o que fornece mais segurança do que um token OAuth que não expira. É importante entender os diferentes métodos de autenticação disponíveis para você e quando você precisa usá-los: +* A **JSON Web Token (JWT)** [authenticates as the GitHub App](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app). For example, you can authenticate with a **JWT** to fetch application installation details or exchange the **JWT** for an **installation access token**. +* An **installation access token** [authenticates as a specific installation of your GitHub App](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) (also called server-to-server requests). For example, you can authenticate with an **installation access token** to open an issue or provide feedback on a pull request. +* An **OAuth access token** can [authenticate as a user of your GitHub App](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-users-on-your-site) (also called user-to-server requests). For example, you can use an OAuth access token to authenticate as a user when a GitHub App needs to verify a user’s identity or act on a user’s behalf. -* Um **JSON Web Token (JWT)** [é autenticado como o aplicativo GitHub](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app). Por exemplo, você pode efetuar a autenticação com um **JWT** para buscar informações de instalação do aplicativo ou trocar o **JWT** por um **token de acesso de instalação**. -* Um **token de acesso de instalação** [é autenticado como uma instalação específica do seu aplicativo GitHub](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) (também denominado solicitações de servidor para servidor). Por exemplo, você pode efetuar a autenticação com um **token de acesso de instalação** para abrir um problema ou fornecer feedback em um pull request. -* Um **token de acesso do OAuth** pode [efetuar a autenticação como usuário do seu aplicativo GitHub](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-users-on-your-site) (também denominado solicitações de usuário para servidor). Por exemplo, você pode usar um token de acesso OAuth para se efetuar a autenticação como usuário quando um aplicativo GitHub precisar verificar a identidade de um usuário ou agir em nome de um usuário. +The most common scenario is to authenticate as a specific installation using an **installation access token**. -O cenário mais comum é efetuar a autenticação como uma instalação específica usando um **token de acesso de instalação**. +### Direct users to install your GitHub App on repositories -### Oriente os usuários para instalar o seu aplicativo GitHub nos repositórios +Once you've made the transition from an OAuth App to a GitHub App, you will need to let users know that the GitHub App is available to install. For example, you can include an installation link for the GitHub App in a call-to-action banner inside your application. To ease the transition, you can use query parameters to identify the user or organization account that is going through the installation flow for your GitHub App and pre-select any repositories your OAuth App had access to. This allows users to easily install your GitHub App on repositories you already have access to. -Uma vez que você fez a transição de um aplicativo OAuth para um aplicativo GitHub, você precisará informar aos usuários que o aplicativo GitHub está disponível para instalação. Por exemplo, você pode incluir um link de instalação para o aplicativo GitHub em um banner de chamada para ação dentro de seu aplicativo. Para facilitar a transição, você pode usar parâmetros de consulta para identificar a conta do usuário ou organização que está passando pelo fluxo de instalação do seu aplicativo GitHub e pré-selecionar quaisquer repositórios aos quais o aplicativo OAuth tem acesso. Isso permite que os usuários instalem facilmente o seu aplicativo GitHub em repositórios aos quais você já tem acesso. +#### Query parameters -#### Parâmetros de consulta +| Name | Description | +|------|-------------| +| `suggested_target_id` | **Required**: ID of the user or organization that is installing your GitHub App. | +| `repository_ids[]` | Array of repository IDs. If omitted, we select all repositories. The maximum number of repositories that can be pre-selected is 100. | -| Nome | Descrição | -| --------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | -| `suggested_target_id` | **Obrigatório**: ID do usuário ou organização que está instalando o seu aplicativo GitHub. | -| `repository_ids[]` | Array de IDs do repositório. Se omitido, selecionaremos todos os repositórios. O número máximo de repositórios que pode ser pré-selecionado é 100. | - -#### Exemplo de URL +#### Example URL ``` https://github.com/apps/YOUR_APP_NAME/installations/new/permissions?suggested_target_id=ID_OF_USER_OR_ORG&repository_ids[]=REPO_A_ID&repository_ids[]=REPO_B_ID ``` -Você deverá substituir `YOUR_APP_NAME` pelo nome do seu aplicativo GitHub, `ID_OF_USER_OR_ORG` pelo ID do seu usuário-alvo ou organização, e incluir até 100 IDs de repositório (`REPO_A_ID` e `REPO_B_ID`). Para obter uma lista de repositórios à qual seu aplicativo OAuth tem acesso, use os pontos finais [Listar repositórios para o usuário autenticado](/rest/reference/repos#list-repositories-for-the-authenticated-user) e [Listar repositórios de organização](/rest/reference/repos#list-organization-repositories). +You'll need to replace `YOUR_APP_NAME` with the name of your GitHub App, `ID_OF_USER_OR_ORG` with the ID of your target user or organization, and include up to 100 repository IDs (`REPO_A_ID` and `REPO_B_ID`). To get a list of repositories your OAuth App has access to, use the [List repositories for the authenticated user](/rest/reference/repos#list-repositories-for-the-authenticated-user) and [List organization repositories](/rest/reference/repos#list-organization-repositories) endpoints. -### Remova quaisquer hooks de repositório desnecessários +### Remove any unnecessary repository hooks -Uma vez que seu aplicativo GitHub foi instalado em um repositório, você deve remover quaisquer webhooks desnecessários criados pelo seu aplicativo de legado OAuth. Se ambos os aplicativos estiverem instalados em um repositório, eles poderão duplicar a funcionalidade do usuário. Para remover os webhooks, Você pode ouvir [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) com a ação `repositórios_added` e [Excluir um webhook do repositório](/rest/reference/repos#delete-a-repository-webhook) naqueles repositórios criados pelo seu aplicativo OAuth. +Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) on those repositories that were created by your OAuth App. -### Incentive os usuários a revogar o acesso ao seu aplicativo OAuth +### Encourage users to revoke access to your OAuth app -À medida que sua base de instalação do aplicativo GitHub aumenta, incentive seus usuários a revogar o acesso à integração do legado do OAuth. Para obter mais informações, consulte "[Autorizar aplicativos OAuth](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)". +As your GitHub App installation base grows, consider encouraging your users to revoke access to the legacy OAuth integration. For more information, see "[Authorizing OAuth Apps](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)." -### Exclua o aplicativo OAuth +### Delete the OAuth App -Para evitar o abuso das credenciais do aplicativo OAuth, considere excluir o aplicativo OAuth. Esta ação também irá revogar todas as autorizações restantes do aplicativo OAuth. Para obter mais informações, consulte "[Excluindo um aplicativo OAuth](/developers/apps/managing-oauth-apps/deleting-an-oauth-app)". +To avoid abuse of the OAuth App's credentials, consider deleting the OAuth App. This action will also revoke all of the OAuth App's remaining authorizations. For more information, see "[Deleting an OAuth App](/developers/apps/managing-oauth-apps/deleting-an-oauth-app)." diff --git a/translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md b/translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md index 3ac78a2efc..37bfe4dd23 100644 --- a/translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md +++ b/translations/pt-BR/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md @@ -1,11 +1,11 @@ --- -title: Receber pagamento por compras de aplicativo -intro: 'Ao final de cada mês, você receberá um pagamento pela sua listagem em {% data variables.product.prodname_marketplace %}.' +title: Receiving payment for app purchases +intro: 'At the end of each month, you''ll receive payment for your {% data variables.product.prodname_marketplace %} listing.' redirect_from: - - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings/ + - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /developers/github-marketplace/receiving-payment-for-app-purchases versions: @@ -13,17 +13,16 @@ versions: ghec: '*' topics: - Marketplace -shortTitle: Receber pagamentos +shortTitle: Receive payment --- +After your {% data variables.product.prodname_marketplace %} listing for an app with a paid plan is created and approved, you'll provide payment details to {% data variables.product.product_name %} as part of the financial onboarding process. -Depois que o seu anúncio de {% data variables.product.prodname_marketplace %} para um aplicativo com um plano pago for criado e aprovado, você fornecerá detalhes de pagamento para {% data variables.product.product_name %} como parte do processo de integração financeira. +Once your revenue reaches a minimum of 500 US dollars for the month, you'll receive an electronic payment from {% data variables.product.company_short %}. This will be the income from marketplace transactions minus the amount charged by {% data variables.product.company_short %} to cover their running costs. -Quando sua receita atingir o mínimo de US$ 500 dólares no mês, você receberá um pagamento eletrônico de {% data variables.product.company_short %}. Este será o rendimento das transações no mercado menos o valor cobrado por {% data variables.product.company_short %} para cobrir seus custos administrativos. - -Para transações feitas antes de 1 de janeiro de 2021, {% data variables.product.company_short %} irá reter 25% da renda da transação. Para transações feitas após essa data, apenas 5% é será retido por {% data variables.product.company_short %}. Esta alteração irá refletir-se nos pagamentos recebidos a partir do final de Janeiro de 2021. +For transactions made before January 1, 2021, {% data variables.product.company_short %} retains 25% of transaction income. For transactions made after that date, only 5% is retained by {% data variables.product.company_short %}. This change will be reflected in payments received from the end of January 2021 onward. {% note %} -**Observação:** Para obter os detalhes dos preços atuais e dos termos de pagamento, consulte o "[ acordo do desenvolvedor de {% data variables.product.prodname_marketplace %}](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)". +**Note:** For details of the current pricing and payment terms, see "[{% data variables.product.prodname_marketplace %} developer agreement](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)." {% endnote %} diff --git a/translations/pt-BR/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/translations/pt-BR/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index d02f24f4a3..83686ec401 100644 --- a/translations/pt-BR/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/translations/pt-BR/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -327,7 +327,7 @@ Webhook events are triggered based on the specificity of the domain you register Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments). +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments). {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -352,11 +352,11 @@ Key | Type | Description Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment_status` |`object` | The [deployment status](/rest/reference/repos#list-deployment-statuses). +`deployment_status` |`object` | The [deployment status](/rest/reference/deployments#list-deployment-statuses). `deployment_status["state"]` |`string` | The new state. Can be `pending`, `success`, `failure`, or `error`. `deployment_status["target_url"]` |`string` | The optional link added to the status. `deployment_status["description"]`|`string` | The optional human-readable description added to the status. -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments) that this status is associated with. +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments) that this status is associated with. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -820,7 +820,7 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus Key | Type | Description ----|------|------------ `id` | `integer` | The unique identifier of the page build. -`build` | `object` | The [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) itself. +`build` | `object` | The [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) itself. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -846,7 +846,7 @@ Key | Type | Description ----|------|------------ `zen` | `string` | Random string of GitHub zen. `hook_id` | `integer` | The ID of the webhook that triggered the ping. -`hook` | `object` | The [webhook configuration](/rest/reference/repos#get-a-repository-webhook). +`hook` | `object` | The [webhook configuration](/rest/reference/webhooks#get-a-repository-webhook). `hook[app_id]` | `integer` | When you register a new {% data variables.product.prodname_github_app %}, {% data variables.product.product_name %} sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps/) an app. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} diff --git a/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md b/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md index 514bf5d42f..3249d81ea8 100644 --- a/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md +++ b/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md @@ -4,7 +4,7 @@ intro: 'Review common reasons that applications for the {% data variables.produc redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - - /articles/why-was-my-application-for-a-student-developer-pack-denied/ + - /articles/why-was-my-application-for-a-student-developer-pack-denied - /articles/why-wasn-t-my-application-for-a-student-developer-pack-approved - /articles/why-wasnt-my-application-for-a-student-developer-pack-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved diff --git a/translations/pt-BR/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/pt-BR/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 c1ed6d9400..e1e2026fb4 100644 --- a/translations/pt-BR/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/pt-BR/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 @@ -1,29 +1,28 @@ --- -title: Solicitar um desconto de educador ou pesquisador -intro: 'Sendo um educador ou pesquisador, você pode se candidatar para receber o {% data variables.product.prodname_team %} gratuitamente para a conta da sua organização.' +title: Apply for an educator or researcher discount +intro: 'If you''re an educator or a researcher, you can apply to receive {% data variables.product.prodname_team %} for your organization account for free.' redirect_from: - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /github/teaching-and-learning-with-github-education/applying-for-an-educator-or-researcher-discount - - /articles/applying-for-a-classroom-discount/ - - /articles/applying-for-a-discount-for-your-school-club/ - - /articles/applying-for-an-academic-research-discount/ - - /articles/applying-for-a-discount-for-your-first-robotics-team/ + - /articles/applying-for-a-classroom-discount + - /articles/applying-for-a-discount-for-your-school-club + - /articles/applying-for-an-academic-research-discount + - /articles/applying-for-a-discount-for-your-first-robotics-team - /articles/applying-for-an-educator-or-researcher-discount - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount versions: fpt: '*' -shortTitle: Solicitar desconto +shortTitle: Apply for a discount --- - -## Sobre descontos para educador e pesquisador +## About educator and researcher discounts {% data reusables.education.about-github-education-link %} {% data reusables.education.educator-requirements %} -Para obter mais informações sobre contas de usuário em {% data variables.product.product_name %}, consulte "[Cadastrar-se para uma nova conta de {% data variables.product.prodname_dotcom %} ](/github/getting-started-with-github/signing-up-for-a-new-github-account)". +For more information about user 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)." -## Candidatar-se a um desconto de educador ou pesquisador +## Applying for an educator or researcher discount {% data reusables.education.benefits-page %} {% data reusables.education.click-get-teacher-benefits %} @@ -33,28 +32,30 @@ Para obter mais informações sobre contas de usuário em {% data variables.prod {% data reusables.education.plan-to-use-github %} {% data reusables.education.submit-application %} -## Atualizar sua organização +## Upgrading your organization -Depois que sua solicitação para desconto de educador ou pesquisador for aprovada, você poderá atualizar as organizações que usa com sua comunidade de aprendizagem para o {% data variables.product.prodname_team %}, o que permite usuários ilimitados e repositórios privados com recursos completos, gratuitamente. Você pode atualizar uma organização existente ou criar uma para atualizar. +After your request for an educator or researcher discount has been approved, you can upgrade the organizations you use with your learning community to {% data variables.product.prodname_team %}, which allows unlimited users and private repositories with full features, for free. You can upgrade an existing organization or create a new organization to upgrade. -### Atualizar uma organização existente +### Upgrading an existing organization {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -### Atualizar uma nova organização +### Upgrading a new organization {% data reusables.education.upgrade-page %} -1. Clique em {% octicon "plus" aria-label="The plus symbol" %} **Create an organization** (Criar uma organização). ![Botão Create an organization (Criar uma organização)](/assets/images/help/education/create-org-button.png) -3. Leia as informações e clique em **Criar organização**. ![Botão Create an organization (Criar uma organização)](/assets/images/help/education/create-organization-button.png) -4. Em "Choose a plan" (Escolher um plano), clique em **Escolher {% data variables.product.prodname_free_team %}**. -5. Siga as instruções para criar sua organização. +1. Click {% octicon "plus" aria-label="The plus symbol" %} **Create an organization**. + ![Create an organization button](/assets/images/help/education/create-org-button.png) +3. Read the information, then click **Create organization**. + ![Create organization button](/assets/images/help/education/create-organization-button.png) +4. Under "Choose your plan", click **Choose {% data variables.product.prodname_free_team %}**. +5. Follow the prompts to create your organization. {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -## Leia mais +## Further reading -- "[Por que minha solicitação para desconto de educador ou pesquisador não foi aprovada?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)" +- "[Why wasn't my application for an educator or researcher discount approved?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)" - [{% data variables.product.prodname_education %}](https://education.github.com) -- [Vídeos do {% data variables.product.prodname_classroom %}](https://classroom.github.com/videos) +- [{% data variables.product.prodname_classroom %} Videos](https://classroom.github.com/videos) - [{% data variables.product.prodname_education_community %}](https://education.github.community/) diff --git a/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md b/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md index f975c23bbd..82cc504911 100644 --- a/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md +++ b/translations/pt-BR/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md @@ -1,48 +1,47 @@ --- -title: Motivos da reprovação da candidatura ao desconto de educador ou pesquisador -intro: Analise os motivos comuns para a reprovação de candidaturas ao desconto de educador ou pesquisador e veja dicas para se candidatar novamente sem problemas. +title: Why wasn't my application for an educator or researcher discount approved? +intro: Review common reasons that applications for an educator or researcher discount are not approved and learn tips for reapplying successfully. redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied/ + - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied - /articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved - /articles/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved versions: fpt: '*' -shortTitle: Solicitação recusada +shortTitle: Application not approved --- - {% tip %} -**Dica:** {% data reusables.education.about-github-education-link %} +**Tip:** {% data reusables.education.about-github-education-link %} {% endtip %} -## Falta de clareza em documentos que comprovam a afiliação +## Unclear proof of affiliation documents -Se a imagem que você enviou por upload não identificar claramente sua ocupação atual em uma instituição de ensino ou universidade, você precisará se candidatar novamente e enviar por upload outra imagem do seu crachá na faculdade ou de uma carta de verificação de referência pessoal com informações claras. +If the image you uploaded doesn't clearly identify your current employment with a school or university, you must reapply and upload another image of your faculty ID or employment verification letter with clear information. {% data reusables.education.pdf-support %} -## Uso de e-mail acadêmico com domínio não verificado +## Using an academic email with an unverified domain -Se o seu endereço de e-mail acadêmico tiver um domínio não verificado, poderemos exigir mais provas do seu status acadêmico. {% data reusables.education.upload-different-image %} +If your academic email address has an unverified domain, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -## Uso de e-mail acadêmico de uma escola com políticas de e-mail pouco rígidas +## Using an academic email from a school with lax email policies -Se ex-alunos e professores aposentados da sua instituição de ensino tiverem acesso vitalício a endereços de e-mail concedidos pela escola, poderemos exigir mais provas do seu status acadêmico. {% data reusables.education.upload-different-image %} +If alumni and retired faculty of your school have lifetime access to school-issued email addresses, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -Se você tiver outras dúvidas sobre o domínio da instituição de ensino, peça à equipe de TI dela para entrar em contato conosco. +If you have other questions or concerns about the school domain, please ask your school IT staff to contact us. -## Candidatura de não alunos ao pacote de desenvolvedor para estudante +## Non-student applying for Student Developer Pack -Educadores e pesquisadores não estão qualificados para as ofertas de parceiros que acompanham o [{% data variables.product.prodname_student_pack %}](https://education.github.com/pack). Quando você se candidatar novamente, lembre-se de escolher **Faculty** (Faculdade) para descrever seu status acadêmico. +Educators and researchers are not eligible for the partner offers that come with the [{% data variables.product.prodname_student_pack %}](https://education.github.com/pack). When you reapply, make sure that you choose **Faculty** to describe your academic status. -## Leia mais +## Further reading -- "[Solicite desconto para educador ou pesquisador](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)" +- "[Apply for an educator or researcher discount](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)" diff --git a/translations/pt-BR/content/get-started/learning-about-github/access-permissions-on-github.md b/translations/pt-BR/content/get-started/learning-about-github/access-permissions-on-github.md index 9d725ebcf0..07127770d3 100644 --- a/translations/pt-BR/content/get-started/learning-about-github/access-permissions-on-github.md +++ b/translations/pt-BR/content/get-started/learning-about-github/access-permissions-on-github.md @@ -7,7 +7,7 @@ redirect_from: - /articles/access-permissions-on-github - /github/getting-started-with-github/access-permissions-on-github - /github/getting-started-with-github/learning-about-github/access-permissions-on-github -intro: 'While you can grant read/write access to collaborators on a personal repository, members of an organization can have more granular access permissions for the organization''s repositories.' +intro: 'With roles, you can control who has access to your accounts and resources on {% data variables.product.product_name %} and the level of access each person has.' versions: fpt: '*' ghes: '*' @@ -18,6 +18,13 @@ topics: - Accounts shortTitle: Access permissions --- + +## About access permissions on {% data variables.product.prodname_dotcom %} + +{% data reusables.organizations.about-roles %} + +Roles work differently for different types of accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + ## Personal user accounts A repository owned by a user account has two permission levels: the *repository owner* and *collaborators*. For more information, see "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)." diff --git a/translations/pt-BR/content/get-started/learning-about-github/githubs-products.md b/translations/pt-BR/content/get-started/learning-about-github/githubs-products.md index d7c0dcf4bf..c5927d487d 100644 --- a/translations/pt-BR/content/get-started/learning-about-github/githubs-products.md +++ b/translations/pt-BR/content/get-started/learning-about-github/githubs-products.md @@ -1,6 +1,6 @@ --- -title: Produtos do GitHub -intro: 'Uma visão geral dos produtos e planos de preços de {% data variables.product.prodname_dotcom %}.' +title: GitHub's products +intro: 'An overview of {% data variables.product.prodname_dotcom %}''s products and pricing plans.' redirect_from: - /articles/github-s-products - /articles/githubs-products @@ -18,94 +18,95 @@ topics: - Desktop - Security --- +## About {% data variables.product.prodname_dotcom %}'s products -## Sobre os produtos de {% data variables.product.prodname_dotcom %} +{% data variables.product.prodname_dotcom %} offers free and paid products for storing and collaborating on code. Some products apply only to user accounts, while other plans apply only to organization and enterprise accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -O {% data variables.product.prodname_dotcom %} oferece produtos grátis e pagos. Você pode ver o preço e uma lista completa dos recursos de cada produto em <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} +You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} -## {% data variables.product.prodname_free_user %} para contas de usuário +## {% data variables.product.prodname_free_user %} for user accounts -Com o {% data variables.product.prodname_free_team %} para contas de usuário, você pode trabalhar com colaboradores ilimitados em repositórios públicos ilimitados com um conjunto completo de recursos e em repositórios privados ilimitados com um conjunto de recursos limitado. +With {% data variables.product.prodname_free_team %} for user accounts, you can work with unlimited collaborators on unlimited public repositories with a full feature set, and on unlimited private repositories with a limited feature set. -Com o {% data variables.product.prodname_free_user %}, sua conta de usuário inclui: +With {% data variables.product.prodname_free_user %}, your user account includes: - {% data variables.product.prodname_gcf %} - {% data variables.product.prodname_dependabot_alerts %} -- Implementação de autenticação de dois fatores -- 2.000 {% data variables.product.prodname_actions %} minutos -- 500MB {% data variables.product.prodname_registry %} de armazenamento +- Two-factor authentication enforcement +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_pro %} -Além dos recursos disponíveis no {% data variables.product.prodname_free_user %} para contas de usuário, o {% data variables.product.prodname_pro %} inclui: -- {% data variables.contact.github_support %} via e-mail -- 3.000 {% data variables.product.prodname_actions %} minutos -- 2GB {% data variables.product.prodname_registry %} de armazenamento -- Ferramentas avançadas e insights em repositórios privados: - - Revisores de pull request necessários - - Múltiplos revisores de pull request - - Referências autovinculadas +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_pro %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers + - Auto-linked references - {% data variables.product.prodname_pages %} - Wikis - - Branches protegidos - - Proprietários de código - - Gráficos de informações de repositório: Pulse, contribuidores, tráfego, commits, frequência de códigos, rede e bifurcações + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks -## {% data variables.product.prodname_free_team %} para organizações +## {% data variables.product.prodname_free_team %} for organizations -Com o {% data variables.product.prodname_free_team %} para organizações, você pode trabalhar com colaboradores ilimitados em repositórios públicos ilimitados com um conjunto completo de recursos ou em repositórios privados ilimitados com um conjunto de recursos limitado. +With {% data variables.product.prodname_free_team %} for organizations, you can work with unlimited collaborators on unlimited public repositories with a full feature set, or unlimited private repositories with a limited feature set. -Além dos recursos disponíveis no {% data variables.product.prodname_free_user %} para contas de usuário, o {% data variables.product.prodname_free_team %} para organizações inclui: +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_free_team %} for organizations includes: - {% data variables.product.prodname_gcf %} -- Discussões de equipe -- Controles de acesso de equipes para gerenciar grupos -- 2.000 {% data variables.product.prodname_actions %} minutos -- 500MB {% data variables.product.prodname_registry %} de armazenamento +- Team discussions +- Team access controls for managing groups +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_team %} -Além dos recursos disponíveis no {% data variables.product.prodname_free_team %} para organizações, o {% data variables.product.prodname_team %} inclui: -- {% data variables.contact.github_support %} via e-mail -- 3.000 {% data variables.product.prodname_actions %} minutos -- 2GB {% data variables.product.prodname_registry %} de armazenamento -- Ferramentas avançadas e insights em repositórios privados: - - Revisores de pull request necessários - - Múltiplos revisores de pull request +In addition to the features available with {% data variables.product.prodname_free_team %} for organizations, {% data variables.product.prodname_team %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers - {% data variables.product.prodname_pages %} - Wikis - - Branches protegidos - - Proprietários de código - - Gráficos de informações de repositório: Pulse, contribuidores, tráfego, commits, frequência de códigos, rede e bifurcações - - Pull requests de rascunho - - Equipe de revisores de pull request - - Lembretes agendados + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks + - Draft pull requests + - Team pull request reviewers + - Scheduled reminders {% ifversion fpt or ghec %} -- A opção para habilitar {% data variables.product.prodname_github_codespaces %} - - Os proprietários da organização podem habilitar {% data variables.product.prodname_github_codespaces %} para a organização definindo um limite de gastos e concedendo permissões de usuário aos integrantes da sua organização. Para obter mais informações, consulte "[Habilitando codespaces para a sua organização](/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization)". +- The option to enable {% data variables.product.prodname_github_codespaces %} + - Organization owners can enable {% data variables.product.prodname_github_codespaces %} for the organization by setting a spending limit and granting user permissions for members of their organization. For more information, see "[Enabling Codespaces for your organization](/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization)." {% endif %} {% data reusables.github-actions.actions-billing %} ## {% data variables.product.prodname_enterprise %} -O {% data variables.product.prodname_enterprise %} inclui duas opções de implementação: hospedagem em nuvem e auto-hospedagem. +{% data variables.product.prodname_enterprise %} includes two deployment options: cloud-hosted and self-hosted. -Além dos recursos disponíveis no {% data variables.product.prodname_team %}, o {% data variables.product.prodname_enterprise %} inclui: +In addition to the features available with {% data variables.product.prodname_team %}, {% data variables.product.prodname_enterprise %} includes: - {% data variables.contact.enterprise_support %} -- Segurança adicional, conformidade e controles de instalação -- Autenticação com SAML de logon único -- Provisionamento de acesso com SAML ou SCIM +- Additional security, compliance, and deployment controls +- Authentication with SAML single sign-on +- Access provisioning with SAML or SCIM - {% data variables.product.prodname_github_connect %} -- A opção de comprar {% data variables.product.prodname_GH_advanced_security %}. Para obter mais informações, consulte "[Sobre {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)". +- The option to purchase {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)." -O {% data variables.product.prodname_ghe_cloud %} também inclui: -- {% data variables.contact.enterprise_support %}. Para obter mais informações, consulte "<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} suporte</a>" e "<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} Adendo</a>" -- 50.000 {% data variables.product.prodname_actions %} minutos -- 50GB {% data variables.product.prodname_registry %} de armazenamento -- Controle de acesso para sites de {% data variables.product.prodname_pages %}. Para obter mais informações, consulte <a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">Alterar a visibilidade do seu site de {% data variables.product.prodname_pages %}</a>" -- Um acordo de nível de serviço para tempo de atividade de 99,9% por mês -- A opção de configurar sua empresa para {% data variables.product.prodname_emus %}, para que você possa fornecer e gerenciar integrantes com o seu provedor de identidade e restringir as contribuições dos integrantes para apenas a sua empresa. Para obter mais informações, consulte "[Sobre {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." -- A opção de gerenciar de forma centralizada a política e cobrança para várias organizações {% data variables.product.prodname_dotcom_the_website %} com uma conta corporativa. Para obter mais informações, consulte "[Sobre contas corporativas](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)". +{% data variables.product.prodname_ghe_cloud %} also includes: +- {% data variables.contact.enterprise_support %}. For more information, see "<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} support</a>" and "<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} Addendum</a>." +- 50,000 {% data variables.product.prodname_actions %} minutes +- 50GB {% data variables.product.prodname_registry %} storage +- Access control for {% data variables.product.prodname_pages %} sites. For more information, see <a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">Changing the visibility of your {% data variables.product.prodname_pages %} site</a>" +- A service level agreement for 99.9% monthly uptime +- The option to configure your enterprise for {% data variables.product.prodname_emus %}, so you can provision and manage members with your identity provider and restrict your member's contributions to just your enterprise. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." +- The option to centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations with an enterprise account. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)." -Você pode configurar uma versão para avaliar o {% data variables.product.prodname_ghe_cloud %}. Para obter mais informações, consulte "<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">Configurar uma versão de avaliação do {% data variables.product.prodname_ghe_cloud %}</a>". +You can set up a trial to evaluate {% data variables.product.prodname_ghe_cloud %}. For more information, see "<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">Setting up a trial of {% data variables.product.prodname_ghe_cloud %}</a>." -Para obter mais informações sobre hospedar sua própria instância do [{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com), entre em contato com {% data variables.contact.contact_enterprise_sales %}. {% data reusables.enterprise_installation.request-a-trial %} +For more information about hosting your own instance of [{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com), contact {% data variables.contact.contact_enterprise_sales %}. {% data reusables.enterprise_installation.request-a-trial %} diff --git a/translations/pt-BR/content/get-started/learning-about-github/types-of-github-accounts.md b/translations/pt-BR/content/get-started/learning-about-github/types-of-github-accounts.md index 4981f1858c..568b1834d8 100644 --- a/translations/pt-BR/content/get-started/learning-about-github/types-of-github-accounts.md +++ b/translations/pt-BR/content/get-started/learning-about-github/types-of-github-accounts.md @@ -1,6 +1,6 @@ --- title: Types of GitHub accounts -intro: 'Your user account is your identity on {% data variables.product.product_location %}. Your user account can be a member of any number of organizations.{% ifversion fpt or ghec %} Organizations can belong to enterprise accounts.{% endif %}' +intro: 'Accounts on {% data variables.product.product_name %} allow you to organize and control access to code.' redirect_from: - /manage-multiple-clients - /managing-clients @@ -21,73 +21,67 @@ topics: - Desktop - Security --- -{% ifversion fpt or ghec %} -For a full list of features for each {% data variables.product.product_name %} product, see "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products)." -{% endif %} -## Personal user accounts +## About accounts on {% data variables.product.product_name %} -Every person who uses {% data variables.product.product_location %} has their own user account, which includes: +With {% data variables.product.product_name %}, you can store and collaborate on code. Accounts allow you to organize and control access to that code. There are three types of accounts on {% data variables.product.product_name %}. +- Personal accounts +- Organization accounts +- Enterprise accounts -{% ifversion fpt or ghec %} +Every person who uses {% data variables.product.product_name %} signs into a personal account. An organization account enhances collaboration between multiple personal accounts, and {% ifversion fpt or ghec %}an enterprise account{% else %}the enterprise account for {% data variables.product.product_location %}{% endif %} allows central management of multiple organizations. -- Unlimited public and private repositories with {% data variables.product.prodname_free_user %} -- Unlimited collaborators with {% data variables.product.prodname_free_user %} -- Additional features for private repositories with {% data variables.product.prodname_pro %} -- Ability to [invite repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +## Personal accounts -{% else %} +Every person who uses {% data variables.product.product_location %} signs into a personal account. Your personal account is your identity on {% data variables.product.product_location %} and has a username and profile. For example, see [@octocat's profile](https://github.com/octocat). -- Unlimited repositories and [collaborators](/articles/permission-levels-for-a-user-account-repository) -- Ability to [add unlimited repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +Your personal account can own resources such as repositories, packages, and projects. Any time you take any action on {% data variables.product.product_location %}, such as creating an issue or reviewing a pull request, the action is attributed to your personal account. -{% endif %} - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %}Each personal account uses either {% data variables.product.prodname_free_user %} or {% data variables.product.prodname_pro %}. All personal accounts can own an unlimited number of public and private repositories, with an unlimited number of collaborators on those repositories. If you use {% data variables.product.prodname_free_user %}, private repositories owned by your personal account have a limited feature set. You can upgrade to {% data variables.product.prodname_pro %} to get a full feature set for private repositories. For more information, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)." {% else %}You can create an unlimited number of repositories owned by your personal account, with an unlimited number of collaborators on those repositories.{% endif %} {% tip %} -**Tips**: - -- You can use one account for multiple purposes, such as for personal use and business use. We do not recommend creating more than one account. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." -- User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. +**Tip**: Personal accounts are intended for humans, but you can create accounts to automate activity on {% data variables.product.product_name %}. This type of account is called a machine user. For example, you can create a machine user account to automate continuous integration (CI) workflows. {% endtip %} -{% else %} - -{% tip %} - -**Tip**: User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. - -{% endtip %} - -{% endif %} - {% ifversion fpt or ghec %} -### {% data variables.product.prodname_emus %} - -With {% data variables.product.prodname_emus %}, instead of using your personal account, members of an {% data variables.product.prodname_emu_enterprise %} are provisioned accounts using the enterprise's identity provider (IdP). {% data variables.product.prodname_managed_users_caps %} authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. - -{% data variables.product.prodname_managed_users_caps %} can only interact with users, repositories, and organizations that are part of their enterprise. {% data variables.product.prodname_managed_users_caps %} have read-only access to the rest of {% data variables.product.prodname_dotcom_the_website %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +Most people will use one personal account for all their work on {% data variables.product.prodname_dotcom_the_website %}, including both open source projects and paid employment. If you're currently using more than one personal account that you created for yourself, we suggest combining the accounts. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." {% endif %} ## Organization accounts -Organizations are shared accounts where groups of people can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. +Organizations are shared accounts where an unlimited number of people can collaborate across many projects at once. -{% data reusables.organizations.organizations_include %} +Like personal accounts, organizations can own resources such as repositories, packages, and projects. However, you cannot sign into an organization. Instead, each person signs into their own personal account, and any actions the person takes on organization resources are attributed to their personal account. Each personal account can be a member of multiple organizations. -{% ifversion fpt or ghec %} +The personal accounts within an organization can be given different roles in the organization, which grant different levels of access to the organization and its data. All members can collaborate with each other in repositories and projects, but only organization owners and security managers can manage the settings for the organization and control access to the organization's data with sophisticated security and administrative features. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" and "[Keeping your organization secure](/organizations/keeping-your-organization-secure)." + +![Diagram showing that users must sign in to their personal user account to access an organization's resources](/assets/images/help/overview/sign-in-pattern.png) + +{% ifversion fpt or ghec %} +Even if you're a member of an organization that uses SAML single sign-on, you will still sign into your own personal account on {% data variables.product.prodname_dotcom_the_website %}, and that personal account will be linked to your identity in your organization's identity provider (IdP). For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation{% else %}."{% endif %} + +However, if you're a member of an enterprise that uses {% data variables.product.prodname_emus %}, instead of using a personal account that you created, a new account will be provisioned for you by the enterprise's IdP. To access any organizations owned by that enterprise, you must authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% endif %} + +You can also create nested sub-groups of organization members called teams, to reflect your group's structure and simplify access management. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." + +{% data reusables.organizations.organization-plans %} + +For more information about all the features of organizations, see "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)." ## Enterprise accounts -With enterprise accounts, you can centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations. {% data reusables.gated-features.enterprise-accounts %} - +{% ifversion fpt %} +{% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} include enterprise accounts, which allow administrators to centrally manage policy and billing for multiple organizations and enable innersourcing between the organizations. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +{% elsif ghec %} +Enterprise accounts allow central policy management and billing for multiple organizations. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." +{% elsif ghes or ghae %} +Your enterprise account is a collection of all the organizations {% ifversion ghae %}owned by{% elsif ghes %}on{% endif %} {% data variables.product.product_location %}. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." {% endif %} ## Further reading -{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)" -- "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)"{% endif %} +{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)"{% endif %} - "[Creating a new organization account](/articles/creating-a-new-organization-account)" diff --git a/translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md b/translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md index cfe1727e12..0a60c0a9d2 100644 --- a/translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md +++ b/translations/pt-BR/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md @@ -19,12 +19,18 @@ shortTitle: Enterprise Cloud trial ## About {% data variables.product.prodname_ghe_cloud %} -{% data reusables.organizations.about-organizations %} +{% data variables.product.prodname_ghe_cloud %} is a plan for large businesses or teams who collaborate on {% data variables.product.prodname_dotcom_the_website %}. + +{% data reusables.organizations.about-organizations %} For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page. {% data reusables.saml.saml-accounts %} For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% data reusables.enterprise-accounts.emu-short-summary %} + +{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact). + {% data reusables.products.which-product-to-use %} ## About trials of {% data variables.product.prodname_ghe_cloud %} diff --git a/translations/pt-BR/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md b/translations/pt-BR/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md index 910393e2ce..d20a58f745 100644 --- a/translations/pt-BR/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md +++ b/translations/pt-BR/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md @@ -1,7 +1,7 @@ --- -title: Fazer o registro em uma conta conta do GitHub -shortTitle: Inscreva-se para uma nova conta no GitHub -intro: 'O {% data variables.product.company_short %} oferece contas de usuário para pessoas e organizações para que equipes de pessoas trabalhem juntas.' +title: Signing up for a new GitHub account +shortTitle: Sign up for a new GitHub account +intro: '{% data variables.product.company_short %} offers user accounts for individuals and organizations for teams of people working together.' redirect_from: - /articles/signing-up-for-a-new-github-account - /github/getting-started-with-github/signing-up-for-a-new-github-account @@ -13,15 +13,19 @@ topics: - Accounts --- -Para obter mais informações sobre tipos de contas e produtos, consulte "[Tipos de contas do {% data variables.product.prodname_dotcom %}](/articles/types-of-github-accounts)" e "[Produtos do {% data variables.product.company_short %}](/articles/github-s-products)". +## About new accounts on {% data variables.product.prodname_dotcom_the_website %} + +You can create a personal account, which serves as your identity on {% data variables.product.prodname_dotcom_the_website %}, or an organization, which allows multiple personal accounts to collaborate across multiple projects. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + +When you create a personal account or organization, you must select a billing plan for the account. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)." + +## Signing up for a new account {% data reusables.accounts.create-account %} -1. Siga as instruções para criar a conta pessoa ou organização. +1. Follow the prompts to create your personal account or organization. -## Próximas etapas +## Next steps -- "[Verificar endereço de e-mail](/articles/verifying-your-email-address)" -- "[Configurar a autenticação de dois fatores](/articles/configuring-two-factor-authentication)" -- "[Adicionar uma bio ao perfil](/articles/adding-a-bio-to-your-profile)" -- "[Criar uma organização](/articles/creating-a-new-organization-from-scratch)" -- [ {% data variables.product.prodname_roadmap %} ]({% data variables.product.prodname_roadmap_link %}) no repositório `github/roadmap` +- "[Verify your email address](/articles/verifying-your-email-address)" +- "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} +- [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository diff --git a/translations/pt-BR/content/github-cli/github-cli/github-cli-reference.md b/translations/pt-BR/content/github-cli/github-cli/github-cli-reference.md index 735b504255..8ebd76264c 100644 --- a/translations/pt-BR/content/github-cli/github-cli/github-cli-reference.md +++ b/translations/pt-BR/content/github-cli/github-cli/github-cli-reference.md @@ -1,6 +1,6 @@ --- -title: Referência da CLI do GitHub -intro: 'Você pode visualizar todos os comandos de {% data variables.product.prodname_cli %} no seu terminal ou no manual de {% data variables.product.prodname_cli %}.' +title: GitHub CLI reference +intro: 'You can view all of the {% data variables.product.prodname_cli %} commands in your terminal or in the {% data variables.product.prodname_cli %} manual.' versions: fpt: '*' ghes: '*' @@ -23,13 +23,13 @@ To list all commands under a specific group, use the top-level command without a gh repo ``` -Para ver as variáveis de ambiente que podem ser usadas com {% data variables.product.prodname_cli %}, consulte o [manual de {% data variables.product.prodname_cli %}](https://cli.github.com/manual/gh_help_environment) ou use o comando `ambiente`. +To view the environment variables that can be used with {% data variables.product.prodname_cli %}, see the [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/gh_help_environment) or use the `environment` command. ```shell gh environment ``` -Para ver as configurações que podem ser usadas com {% data variables.product.prodname_cli %}, consulte o [manual de {% data variables.product.prodname_cli %}](https://cli.github.com/manual/gh_config) ou use o comando `config`. +To view the configuration settings that can be used with {% data variables.product.prodname_cli %}, see the [{% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/gh_config) or use the `config` command. ```shell gh config diff --git a/translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md index ceaaf6c438..621628a074 100644 --- a/translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md +++ b/translations/pt-BR/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md @@ -2,7 +2,7 @@ title: GitHub extensions and integrations intro: 'Use {% data variables.product.product_name %} extensions to work seamlessly in {% data variables.product.product_name %} repositories within third-party applications.' redirect_from: - - /articles/about-github-extensions-for-third-party-applications/ + - /articles/about-github-extensions-for-third-party-applications - /articles/github-extensions-and-integrations - /github/customizing-your-github-workflow/github-extensions-and-integrations versions: diff --git a/translations/pt-BR/content/github/extending-github/about-webhooks.md b/translations/pt-BR/content/github/extending-github/about-webhooks.md index 427f5d57d0..3ebe391ec7 100644 --- a/translations/pt-BR/content/github/extending-github/about-webhooks.md +++ b/translations/pt-BR/content/github/extending-github/about-webhooks.md @@ -1,9 +1,9 @@ --- title: About webhooks redirect_from: - - /post-receive-hooks/ - - /articles/post-receive-hooks/ - - /articles/creating-webhooks/ + - /post-receive-hooks + - /articles/post-receive-hooks + - /articles/creating-webhooks - /articles/about-webhooks intro: Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. versions: diff --git a/translations/pt-BR/content/github/extending-github/getting-started-with-the-api.md b/translations/pt-BR/content/github/extending-github/getting-started-with-the-api.md index f50a1211e7..3f1a0f8ad3 100644 --- a/translations/pt-BR/content/github/extending-github/getting-started-with-the-api.md +++ b/translations/pt-BR/content/github/extending-github/getting-started-with-the-api.md @@ -1,5 +1,5 @@ --- -title: Introdução à API +title: Getting started with the API redirect_from: - /articles/getting-started-with-the-api versions: @@ -7,17 +7,14 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Primeiros passos com a API +shortTitle: Get started API --- To automate common tasks, back up your data, or create integrations that extend {% data variables.product.product_name %}, you can use the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. -Para obter mais informações sobre a API, consulte a [API REST do GitHub](/rest) e [API do GraphQL do GitHub]({% ifversion ghec %}/free-pro-team@latest/{% endif %}/graphql). Também é possível atualizar-se sobre as notícias relacionadas a APIs seguindo o blog do desenvolvedor</a> -{% data variables.product.prodname_dotcom %}.</p> +For more information about the API, see the [GitHub REST API](/rest) and [GitHub GraphQL API]({% ifversion ghec %}/free-pro-team@latest/{% endif %}/graphql). You can also stay current with API-related news by following the [{% data variables.product.prodname_dotcom %} Developer blog](https://developer.github.com/changes/). +## Further reading - -## Leia mais - -- "[Backup de um repositório](/articles/backing-up-a-repository)"{% ifversion fpt or ghec %} -- "[Sobre integrações](/articles/about-integrations)"{% endif %} +- "[Backing up a repository](/articles/backing-up-a-repository)"{% ifversion fpt or ghec %} +- "[About integrations](/articles/about-integrations)"{% endif %} diff --git a/translations/pt-BR/content/github/extending-github/git-automation-with-oauth-tokens.md b/translations/pt-BR/content/github/extending-github/git-automation-with-oauth-tokens.md index cf3ae4f002..e22725a212 100644 --- a/translations/pt-BR/content/github/extending-github/git-automation-with-oauth-tokens.md +++ b/translations/pt-BR/content/github/extending-github/git-automation-with-oauth-tokens.md @@ -1,48 +1,48 @@ --- -title: Automação Git com tokens OAuth +title: Git automation with OAuth tokens redirect_from: - - /articles/git-over-https-using-oauth-token/ - - /articles/git-over-http-using-oauth-token/ + - /articles/git-over-https-using-oauth-token + - /articles/git-over-http-using-oauth-token - /articles/git-automation-with-oauth-tokens -intro: 'Você pode usar tokens OAuth para interagir com {% data variables.product.product_name %} por meio de scripts automatizados.' +intro: 'You can use OAuth tokens to interact with {% data variables.product.product_name %} via automated scripts.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' -shortTitle: Automatizar com tokens OAuth +shortTitle: Automate with OAuth tokens --- -## Etapa 1: Obtenha um token OAuth +## Step 1: Get an OAuth token -Crie um token de acesso pessoal na página de configurações do seu aplicativo. Para mais informação, consulte "[Criando um token de acesso pessoal](/github/authenticating-to-github/creating-a-personal-access-token)." +Create a personal access token on your application settings page. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." {% tip %} {% ifversion fpt or ghec %} -**Dicas:** -- Você deve verificar seu endereço de e-mail antes de criar um token de acesso pessoal. Para obter mais informações, consulte "[Verificar o endereço de e-mail](/articles/verifying-your-email-address)". +**Tips:** +- You must verify your email address before you can create a personal access token. For more information, see "[Verifying your email address](/articles/verifying-your-email-address)." - {% data reusables.user_settings.review_oauth_tokens_tip %} {% else %} -**Dica:** {% data reusables.user_settings.review_oauth_tokens_tip %} +**Tip:** {% data reusables.user_settings.review_oauth_tokens_tip %} {% endif %} {% endtip %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} -## Etapa 2: Clone um repositório +## Step 2: Clone a repository {% data reusables.command_line.providing-token-as-password %} -Para evitar esses alertas, você pode usar o cache de senhas do Git. Para obter informações, consulte "[Armazenar suas credenciais no GitHub no Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)". +To avoid these prompts, you can use Git password caching. For information, see "[Caching your GitHub credentials in Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)." {% warning %} -**Aviso**: os tokens possuem accesso de leitura e gravação e devem ser tratados como senhas. Se você informar seu token na URL clone ao clonar ou adicionar um remote, o Git irá gravá-lo em seu arquivo _.git/config_ como texto simples, o que representa um risco de segurança. +**Warning**: Tokens have read/write access and should be treated like passwords. If you enter your token into the clone URL when cloning or adding a remote, Git writes it to your _.git/config_ file in plain text, which is a security risk. {% endwarning %} -## Leia mais +## Further reading -- "[Autorizando aplicativos OAuth](/developers/apps/authorizing-oauth-apps)" +- "[Authorizing OAuth Apps](/developers/apps/authorizing-oauth-apps)" diff --git a/translations/pt-BR/content/github/extending-github/index.md b/translations/pt-BR/content/github/extending-github/index.md index 89dc1c8b82..79a03ace00 100644 --- a/translations/pt-BR/content/github/extending-github/index.md +++ b/translations/pt-BR/content/github/extending-github/index.md @@ -1,8 +1,8 @@ --- -title: Extensões do GitHub +title: Extending GitHub redirect_from: - - /categories/86/articles/ - - /categories/automation/ + - /categories/86/articles + - /categories/automation - /categories/extending-github versions: fpt: '*' diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 5011d23fb9..575a38144d 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -2,7 +2,7 @@ title: Adding an existing project to GitHub using the command line intro: 'Putting your existing work on {% data variables.product.product_name %} can let you share and collaborate in lots of great ways.' redirect_from: - - /articles/add-an-existing-project-to-github/ + - /articles/add-an-existing-project-to-github - /articles/adding-an-existing-project-to-github-using-the-command-line - /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line versions: diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md index d95cd45fac..f453e9e87e 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line.md @@ -1,6 +1,6 @@ --- -title: Importar um repositório Git usando a linha de comando -intro: '{% ifversion fpt %}Se [Importador do GitHub](/articles/importing-a-repository-with-github-importer) não for adequado para os seus propósitos como se o seu código existente estivesse hospedado em uma rede privada, recomendamos realizar a importação usando a linha de comando.{% else %}Importar projetos do Git usando a linha de comando é adequado quando seu código existente está hospedado em uma rede privada.{% endif %}' +title: Importing a Git repository using the command line +intro: '{% ifversion fpt %}If [GitHub Importer](/articles/importing-a-repository-with-github-importer) is not suitable for your purposes, such as if your existing code is hosted on a private network, then we recommend importing using the command line.{% else %}Importing Git projects using the command line is suitable when your existing code is hosted on a private network.{% endif %}' redirect_from: - /articles/importing-a-git-repository-using-the-command-line - /github/importing-your-projects-to-github/importing-a-git-repository-using-the-command-line @@ -9,38 +9,37 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Importar o repositório localmente +shortTitle: Import repo locally --- +Before you start, make sure you know: -Antes de iniciar, certifique-se de que sabe: - -- Seu nome de usuário {% data variables.product.product_name %} -- A URL clone para o repositório externo, como `https://external-host.com/user/repo.git` ou `git://external-host.com/user/repo.git` (talvez com um `usuário@` na frente do nome do domínio `external-host.com`) +- Your {% data variables.product.product_name %} username +- The clone URL for the external repository, such as `https://external-host.com/user/repo.git` or `git://external-host.com/user/repo.git` (perhaps with a `user@` in front of the `external-host.com` domain name) {% tip %} -Como demonstração, usaremos: +For purposes of demonstration, we'll use: -- Uma conta externa denominada **extuser** -- Um host Git externo denominado `https://external-host.com` -- Uma conta de usuário {% data variables.product.product_name %} pessoal denominada **ghuser** +- An external account named **extuser** +- An external Git host named `https://external-host.com` +- A {% data variables.product.product_name %} personal user account named **ghuser** - A repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} named **repo.git** {% endtip %} -1. [Crie um novo repositório em {% data variables.product.product_name %}](/articles/creating-a-new-repository). Você importará o repositório Git externo para este novo repositório. -2. Na linha de comando, faça um clone "vazio" do repositório usando a URL clone externo. Isso criará uma cópia integral dos dados, mas sem um diretório de trabalho para editar arquivos, e garantirá uma exportação limpa e recente de todos os dados antigos. +1. [Create a new repository on {% data variables.product.product_name %}](/articles/creating-a-new-repository). You'll import your external Git repository to this new repository. +2. On the command line, make a "bare" clone of the repository using the external clone URL. This creates a full copy of the data, but without a working directory for editing files, and ensures a clean, fresh export of all the old data. ```shell $ git clone --bare https://external-host.com/<em>extuser</em>/<em>repo.git</em> # Makes a bare clone of the external repository in a local directory ``` -3. Faça o push do repositório clonado localmente em {% data variables.product.product_name %} usando a opção "mirror" (espelho), que assegura que todas as referências, como branches e tags, são copiadas para o repositório importado. +3. Push the locally cloned repository to {% data variables.product.product_name %} using the "mirror" option, which ensures that all references, such as branches and tags, are copied to the imported repository. ```shell $ cd <em>repo.git</em> $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>ghuser</em>/<em>repo.git</em> # Pushes the mirror to the new repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} ``` -4. Remova o repositório local temporário. +4. Remove the temporary local repository. ```shell $ cd .. $ rm -rf <em>repo.git</em> diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md index 7c56542dfb..a559e7393b 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md @@ -1,37 +1,44 @@ --- -title: Importar um repositório usando o Importador do GitHub -intro: 'Caso tenha um projeto hospedado em outro sistema de controle de versão, é possível importá-lo automaticamente para o GitHub usando a ferramenta Importador do GitHub.' +title: Importing a repository with GitHub Importer +intro: 'If you have a project hosted on another version control system, you can automatically import it to GitHub using the GitHub Importer tool.' redirect_from: - - /articles/importing-from-other-version-control-systems-to-github/ + - /articles/importing-from-other-version-control-systems-to-github - /articles/importing-a-repository-with-github-importer - /github/importing-your-projects-to-github/importing-a-repository-with-github-importer versions: fpt: '*' ghec: '*' -shortTitle: Use Importador do GitHub +shortTitle: Use GitHub Importer --- - {% tip %} -**Dica:** o Importador do GitHub não é indicado para todas as importações. Por exemplo, se o código existente está hospedado em uma rede privada, sua ferramenta não conseguirá acessá-lo. Nesses casos, recomendamos [importar usando a linha de comando](/articles/importing-a-git-repository-using-the-command-line) para repositórios Git ou uma [ferramenta de migração de código-fonte](/articles/source-code-migration-tools) externa para projetos importados por outros sistemas de controle de versões. +**Tip:** GitHub Importer is not suitable for all imports. For example, if your existing code is hosted on a private network, our tool won't be able to access it. In these cases, we recommend [importing using the command line](/articles/importing-a-git-repository-using-the-command-line) for Git repositories or an external [source code migration tool](/articles/source-code-migration-tools) for projects imported from other version control systems. {% endtip %} -Se você quiser combinar os commits de seu repositório com as contas de usuário GitHub do autor durante a importação, garanta que cada contribuidor de seu repositório tem uma conta GitHub antes de você começar a importação. +If you'd like to match the commits in your repository to the authors' GitHub user accounts during the import, make sure every contributor to your repository has a GitHub account before you begin the import. {% data reusables.repositories.repo-size-limit %} -1. No canto superior direito de qualquer página, clique em {% octicon "plus" aria-label="Plus symbol" %} e depois clique em **Import repository** (Importar repositório). ![Opção Import repository (Importar repositório) no menu New repository (Repositório novo)](/assets/images/help/importer/import-repository.png) -2. Embaixo de "Your old repository's clone URL" (URL clone de seu antigo repositório), digite a URL do projeto que quer importar. ![Campo de texto para URL de repositório importado](/assets/images/help/importer/import-url.png) -3. Escolha sua conta de usuário ou uma organização para ser proprietária do repositório e digite um nome para o repositório no GitHub. ![Menu Repository owner (Proprietário do repositório) e campo repository name (nome do repositório)](/assets/images/help/importer/import-repo-owner-name.png) -4. Especifique se o novo repositório deve ser *público* ou *privado*. Para obter mais informações, consulte "[Configurar visibilidade do repositório](/articles/setting-repository-visibility)". ![Botões de rádio Public or private repository (Repositório público ou privado)](/assets/images/help/importer/import-public-or-private.png) -5. Revise a informação que digitou e clique em **Begin import** (Iniciar importação). ![Botão Begin import (Iniciar importação)](/assets/images/help/importer/begin-import-button.png) -6. Caso seu projeto antigo esteja protegido por uma senha, digite sua informação de login para aquele projeto e clique em **Submit** (Enviar). ![Formulário de senha e botão Submit (Enviar) para projetos protegidos por senha](/assets/images/help/importer/submit-old-credentials-importer.png) -7. Se houver vários projetos hospedados na URL clone de seu projeto antigo, selecione o projeto que você quer importar e clique em **Submit** (Enviar). ![Lista de projetos para importar e botão Submit (Enviar)](/assets/images/help/importer/choose-project-importer.png) -8. Se seu projeto contiver arquivos maiores que 100 MB, selecione se quer importar os arquivos maiores usando o [Git Large File Storage](/articles/versioning-large-files) e clique em **Continue** (Continuar). ![Menu do Git Large File Storage e botão Continue (Continuar)](/assets/images/help/importer/select-gitlfs-importer.png) +1. In the upper-right corner of any page, click {% octicon "plus" aria-label="Plus symbol" %}, and then click **Import repository**. +![Import repository option in new repository menu](/assets/images/help/importer/import-repository.png) +2. Under "Your old repository's clone URL", type the URL of the project you want to import. +![Text field for URL of imported repository](/assets/images/help/importer/import-url.png) +3. Choose your user account or an organization to own the repository, then type a name for the repository on GitHub. +![Repository owner menu and repository name field](/assets/images/help/importer/import-repo-owner-name.png) +4. Specify whether the new repository should be *public* or *private*. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)." +![Public or private repository radio buttons](/assets/images/help/importer/import-public-or-private.png) +5. Review the information you entered, then click **Begin import**. +![Begin import button](/assets/images/help/importer/begin-import-button.png) +6. If your old project was protected by a password, type your login information for that project, then click **Submit**. +![Password form and Submit button for password-protected project](/assets/images/help/importer/submit-old-credentials-importer.png) +7. If there are multiple projects hosted at your old project's clone URL, choose the project you'd like to import, then click **Submit**. +![List of projects to import and Submit button](/assets/images/help/importer/choose-project-importer.png) +8. If your project contains files larger than 100 MB, choose whether to import the large files using [Git Large File Storage](/articles/versioning-large-files), then click **Continue**. +![Git Large File Storage menu and Continue button](/assets/images/help/importer/select-gitlfs-importer.png) -Você receberá um e-mail quando o repositório for totalmente importado. +You'll receive an email when the repository has been completely imported. -## Leia mais +## Further reading -- "[Atualizar a atribuição do autor do commit com o Importador do GitHub](/articles/updating-commit-author-attribution-with-github-importer)" +- "[Updating commit author attribution with GitHub Importer](/articles/updating-commit-author-attribution-with-github-importer)" diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md index f6ea7b3005..b4936814c0 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md @@ -1,11 +1,11 @@ --- -title: Importar código-fonte para o GitHub -intro: 'É possível importar repositórios para o GitHub com o {% ifversion fpt %}Importador do GitHub, linha de comando,{% else %}linha de comando{% endif %} ou ferramentas externas de migração.' +title: Importing source code to GitHub +intro: 'You can import repositories to GitHub using {% ifversion fpt %}GitHub Importer, the command line,{% else %}the command line{% endif %} or external migration tools.' redirect_from: - - /articles/importing-an-external-git-repository/ - - /articles/importing-from-bitbucket/ - - /articles/importing-an-external-git-repo/ - - /articles/importing-your-project-to-github/ + - /articles/importing-an-external-git-repository + - /articles/importing-from-bitbucket + - /articles/importing-an-external-git-repo + - /articles/importing-your-project-to-github - /articles/importing-source-code-to-github versions: fpt: '*' @@ -19,6 +19,6 @@ children: - /importing-a-git-repository-using-the-command-line - /adding-an-existing-project-to-github-using-the-command-line - /source-code-migration-tools -shortTitle: Importar código para o GitHub +shortTitle: Import code to GitHub --- diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md index 3ae3fe7d12..eaf2788967 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md @@ -1,8 +1,8 @@ --- -title: Ferramentas de migração de código-fonte -intro: Você pode usar ferramentas externas para mover seus projetos para o GitHub. +title: Source code migration tools +intro: You can use external tools to move your projects to GitHub. redirect_from: - - /articles/importing-from-subversion/ + - /articles/importing-from-subversion - /articles/source-code-migration-tools - /github/importing-your-projects-to-github/source-code-migration-tools versions: @@ -10,49 +10,48 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: Ferramentas de migração de código +shortTitle: Code migration tools --- - {% ifversion fpt or ghec %} -Recomendamos usar o [Importador do GitHub](/articles/about-github-importer) para importar projetos de Subversion, Mercurial, Controle de versão do Team Foundation (TFVC) ou outro repositório Git. Você também pode usar essas ferramentas externas para converter o projeto em Git. +We recommend using [GitHub Importer](/articles/about-github-importer) to import projects from Subversion, Mercurial, Team Foundation Version Control (TFVC), or another Git repository. You can also use these external tools to convert your project to Git. {% endif %} -## Importar do Subversion +## Importing from Subversion -Em um ambiente típico do Subversion, vários projetos são armazenados em um único repositório raiz. No GitHub, cada um desses projetos é associado a um repositório do Git separado para uma conta de usuário ou organização. Sugerimos que você importe cada parte do repositório do Subversion para um repositório separado do GitHub se: +In a typical Subversion environment, multiple projects are stored in a single root repository. On GitHub, each of these projects will usually map to a separate Git repository for a user account or organization. We suggest importing each part of your Subversion repository to a separate GitHub repository if: -* Os colaboradores precisarem fazer checkout ou commit na parte do projeto separada de outras partes -* Desejar que diferentes partes tenham suas próprias permissões de acesso +* Collaborators need to check out or commit to that part of the project separately from the other parts +* You want different parts to have their own access permissions -Recomendamos estas ferramentas para converter repositórios do Subversion em Git: +We recommend these tools for converting Subversion repositories to Git: - [`git-svn`](https://git-scm.com/docs/git-svn) - [svn2git](https://github.com/nirvdrum/svn2git) -## Importar do Mercurial +## Importing from Mercurial -Recomendamos o [hg-fast-export](https://github.com/frej/fast-export) para converter repositórios do Mercurial em Git. +We recommend [hg-fast-export](https://github.com/frej/fast-export) for converting Mercurial repositories to Git. -## Importando do TFVC +## Importing from TFVC -Recomendamos [git-tfs](https://github.com/git-tfs/git-tfs) para transferir alterações entre TFVC e Git. +We recommend [git-tfs](https://github.com/git-tfs/git-tfs) for moving changes between TFVC and Git. -Para obter mais informações sobre como mudar do TFVC (um sistema centralizado de controle de versão) para o Git, consulte "[Planeje sua migração para o Git](https://docs.microsoft.com/devops/develop/git/centralized-to-git)" no site da documentação da Microsoft. +For more information about moving from TFVC (a centralized version control system) to Git, see "[Plan your Migration to Git](https://docs.microsoft.com/devops/develop/git/centralized-to-git)" from the Microsoft docs site. {% tip %} -**Dica:** depois de converter com sucesso o projeto em Git, você poderá [fazer push dele para o {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). +**Tip:** After you've successfully converted your project to Git, you can [push it to {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). {% endtip %} {% ifversion fpt or ghec %} -## Leia mais +## Further reading -- "[Sobre o Importador do GitHub](/articles/about-github-importer)" -- "[Importar um repositório com o Importador do GitHub](/articles/importing-a-repository-with-github-importer)" +- "[About GitHub Importer](/articles/about-github-importer)" +- "[Importing a repository with GitHub Importer](/articles/importing-a-repository-with-github-importer)" - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}) {% endif %} diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/index.md b/translations/pt-BR/content/github/importing-your-projects-to-github/index.md index e14bd1204b..b2db417ddf 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/index.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/index.md @@ -1,10 +1,10 @@ --- -title: Importar projetos para o GitHub -intro: 'Você pode importar seu código-fonte para {% data variables.product.product_name %} usando uma série de métodos diferentes.' -shortTitle: Importar seus projetos +title: Importing your projects to GitHub +intro: 'You can import your source code to {% data variables.product.product_name %} using a variety of different methods.' +shortTitle: Importing your projects redirect_from: - - /categories/67/articles/ - - /categories/importing/ + - /categories/67/articles + - /categories/importing - /categories/importing-your-projects-to-github versions: fpt: '*' diff --git a/translations/pt-BR/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md b/translations/pt-BR/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md index a0baa4af01..21d7ded6ac 100644 --- a/translations/pt-BR/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md +++ b/translations/pt-BR/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md @@ -1,20 +1,19 @@ --- -title: Diferenças entre o Subversion e o Git -intro: 'Os repositórios do Subversion (SVN) são semelhantes aos do Git, mas com várias diferenças em relação à arquitetura dos projetos.' +title: What are the differences between Subversion and Git? +intro: 'Subversion (SVN) repositories are similar to Git repositories, but there are several differences when it comes to the architecture of your projects.' redirect_from: - - /articles/what-are-the-differences-between-svn-and-git/ + - /articles/what-are-the-differences-between-svn-and-git - /articles/what-are-the-differences-between-subversion-and-git - /github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git versions: fpt: '*' ghes: '*' ghec: '*' -shortTitle: Subversão & diferenças do Git +shortTitle: Subversion & Git differences --- +## Directory structure -## Estrutura do diretório - -Cada *referência* ou instantâneo etiquetado de um commit em um projeto é organizado em subdiretórios específicos, como `trunk`, `branches` e `tags`. Por exemplo, um projeto do SVN com dois recursos em desenvolvimento pode ter esta aparência: +Each *reference*, or labeled snapshot of a commit, in a project is organized within specific subdirectories, such as `trunk`, `branches`, and `tags`. For example, an SVN project with two features under development might look like this: sample_project/trunk/README.md sample_project/trunk/lib/widget.rb @@ -23,48 +22,48 @@ Cada *referência* ou instantâneo etiquetado de um commit em um projeto é orga sample_project/branches/another_new_feature/README.md sample_project/branches/another_new_feature/lib/widget.rb -Um fluxo de trabalho do SVN fica assim: +An SVN workflow looks like this: -* O diretório `trunk` representa a versão estável mais recente de um projeto. -* O trabalho de recurso ativo é desenvolvido com subdiretórios em `branches`. -* Quando um recurso é concluído, o diretório dele passa por merge em `trunk` e é removido. +* The `trunk` directory represents the latest stable release of a project. +* Active feature work is developed within subdirectories under `branches`. +* When a feature is finished, the feature directory is merged into `trunk` and removed. -Os projetos do Git também são armazenados em um único diretório. No entanto, o Git obscurece os detalhes das referências armazenando-os em um diretório *.git* especial. Por exemplo, um projeto do Git com dois recursos em desenvolvimento pode ter esta aparência: +Git projects are also stored within a single directory. However, Git obscures the details of its references by storing them in a special *.git* directory. For example, a Git project with two features under development might look like this: sample_project/.git sample_project/README.md sample_project/lib/widget.rb -Um fluxo de trabalho do Git fica assim: +A Git workflow looks like this: -* Um repositório do Git armazena o histórico completo de todos os branches e tags dentro do diretório *.git*. -* A última versão estável está contida no branch-padrão. -* O trabalho de recurso ativo é desenvolvido em branches separados. -* Quando um recurso é concluído, o branch de recurso é mesclado no branch-padrão e excluído. +* A Git repository stores the full history of all of its branches and tags within the *.git* directory. +* The latest stable release is contained within the default branch. +* Active feature work is developed in separate branches. +* When a feature is finished, the feature branch is merged into the default branch and deleted. -Ao contrário do SVN, a estrutura de diretórios no Git permanece a mesma, mas o conteúdo dos arquivos é alterado de acordo com o branch que você possui. +Unlike SVN, with Git the directory structure remains the same, but the contents of the files change based on your branch. -## Incluir subprojetos +## Including subprojects -Um *subprojeto* é um projeto desenvolvido e gerenciado em algum lugar fora do projeto principal. Normalmente, você importa um subprojeto para adicionar alguma funcionalidade ao seu projeto sem precisar manter o código por conta própria. Sempre que o subprojeto é atualizado, você pode sincronizá-lo com o projeto para garantir que tudo esteja atualizado. +A *subproject* is a project that's developed and managed somewhere outside of your main project. You typically import a subproject to add some functionality to your project without needing to maintain the code yourself. Whenever the subproject is updated, you can synchronize it with your project to ensure that everything is up-to-date. -No SVN, um subprojeto é chamado de *SVN externo*. No Git, ele é chamado de *submódulo do Git*. Embora conceitualmente semelhantes, os submódulos do Git não são mantidos atualizados de forma automática. É preciso solicitar explicitamente que uma nova versão seja trazida para o projeto. +In SVN, a subproject is called an *SVN external*. In Git, it's called a *Git submodule*. Although conceptually similar, Git submodules are not kept up-to-date automatically; you must explicitly ask for a new version to be brought into your project. For more information, see "[Git Tools Submodules](https://git-scm.com/book/en/Git-Tools-Submodules)" in the Git documentation. -## Preservar o histórico +## Preserving history -O SVN está configurado para pressupor que o histórico de um projeto nunca é alterado. O Git permite modificar alterações e commits anteriores usando ferramentas como [`git rebase`](/github/getting-started-with-github/about-git-rebase). +SVN is configured to assume that the history of a project never changes. Git allows you to modify previous commits and changes using tools like [`git rebase`](/github/getting-started-with-github/about-git-rebase). {% tip %} -[O GitHub oferece suporte a clientes do Subversion](/articles/support-for-subversion-clients), o que pode produzir alguns resultados inesperados se você está usando o Git e o SVN no mesmo projeto. Se você tiver manipulado o histórico de commits do Git, esses mesmos commits permanecerão para sempre no histórico do SVN. Caso tenha feito commit acidentalmente em alguns dados confidenciais, temos [um artigo para ajudar você a removê-lo do histórico do Git](/articles/removing-sensitive-data-from-a-repository). +[GitHub supports Subversion clients](/articles/support-for-subversion-clients), which may produce some unexpected results if you're using both Git and SVN on the same project. If you've manipulated Git's commit history, those same commits will always remain within SVN's history. If you accidentally committed some sensitive data, we have [an article that will help you remove it from Git's history](/articles/removing-sensitive-data-from-a-repository). {% endtip %} -## Leia mais +## Further reading -- "[Propriedades do Subversion com suporte no GitHub](/articles/subversion-properties-supported-by-github)" -- ["Fazer branch e merge" no livro _Git SCM_ book](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) -- "[Importar código-fonte para o GitHub](/articles/importing-source-code-to-github)" -- "[Ferramentas de migração do código-fonte](/articles/source-code-migration-tools)" +- "[Subversion properties supported by GitHub](/articles/subversion-properties-supported-by-github)" +- ["Branching and Merging" from the _Git SCM_ book](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) +- "[Importing source code to GitHub](/articles/importing-source-code-to-github)" +- "[Source code migration tools](/articles/source-code-migration-tools)" diff --git a/translations/pt-BR/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md b/translations/pt-BR/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md index 35885dec88..3bfef628dd 100644 --- a/translations/pt-BR/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md +++ b/translations/pt-BR/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md @@ -1,8 +1,8 @@ --- title: Coordinated Disclosure of Security Vulnerabilities redirect_from: - - /responsible-disclosure/ - - /coordinated-disclosure/ + - /responsible-disclosure + - /coordinated-disclosure - /articles/responsible-disclosure-of-security-vulnerabilities - /site-policy/responsible-disclosure-of-security-vulnerabilities versions: @@ -11,11 +11,10 @@ topics: - Policy - Legal --- +We want to keep GitHub safe for everyone. If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. -Queremos manter o GitHub seguro para todos. If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. +## Bounty Program -## Programa de Recompensas +Like several other large software companies, GitHub provides a bug bounty to better engage with security researchers. The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. Then, to recognize the significant effort that these researchers often put forth when hunting down bugs, we reward them with some cold hard cash. -Como várias outras grandes empresas de software, o GitHub fornece uma recompensa por erros para estimular os pesquisadores de segurança. The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. Então, para reconhecer o esforço significativo que esses pesquisadores muitas vezes fazem ao caçar erros, nós os recompensamos com dinheiro vivo. - -Confira o site [Recompensa por Erros do GitHub](https://bounty.github.com) para detalhes de recompensa, revise nossa abrangente [Política de Porto Seguro Legal](/articles/github-bug-bounty-program-legal-safe-harbor) e boa caçada! +Check out the [GitHub Bug Bounty](https://bounty.github.com) site for bounty details, review our comprehensive [Legal Safe Harbor Policy](/articles/github-bug-bounty-program-legal-safe-harbor) terms as well, and happy hunting! diff --git a/translations/pt-BR/content/github/site-policy/dmca-takedown-policy.md b/translations/pt-BR/content/github/site-policy/dmca-takedown-policy.md index 6ccff50241..05d313d7f4 100644 --- a/translations/pt-BR/content/github/site-policy/dmca-takedown-policy.md +++ b/translations/pt-BR/content/github/site-policy/dmca-takedown-policy.md @@ -1,10 +1,10 @@ --- -title: Política de retirada DMCA +title: DMCA Takedown Policy redirect_from: - - /dmca/ - - /dmca-takedown/ - - /dmca-takedown-policy/ - - /articles/dmca-takedown/ + - /dmca + - /dmca-takedown + - /dmca-takedown-policy + - /articles/dmca-takedown - /articles/dmca-takedown-policy versions: fpt: '*' @@ -13,111 +13,111 @@ topics: - Legal --- -Bem-vindo ao Guia do GitHub para a Lei dos Direitos Autorais do Milênio Digital, comumente conhecida como "DMCA" - Digital Millenium Copyright Act Policy. Esta página não tem a finalidade de ser uma cartilha abrangente sobre o regimento. No entanto, se você recebeu um aviso de retirada DMCA direcionado ao conteúdo que você postou no GitHub, ou se você é um detentor de direitos que pretende enviar tal aviso, esta página vai ajudá-lo a desmistificar a lei, bem como nossas políticas relacionadas. +Welcome to GitHub's Guide to the Digital Millennium Copyright Act, commonly known as the "DMCA." This page is not meant as a comprehensive primer to the statute. However, if you've received a DMCA takedown notice targeting content you've posted on GitHub or if you're a rights-holder looking to issue such a notice, this page will hopefully help to demystify the law a bit as well as our policies for complying with it. -(Se você quiser apenas enviar uma notificação, você poderá pular para "[G. Enviando avisos](#g-submitting-notices).") +(If you just want to submit a notice, you can skip to "[G. Submitting Notices](#g-submitting-notices).") -Como em todas as questões jurídicas, é sempre melhor consultar um profissional sobre suas dúvidas ou situação específica. Incentivamos a fazê-lo antes de tomar quaisquer medidas que possam impactar seus direitos. Este guia não é um aconselhamento jurídico e não deve ser tomado como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## O que é DMCA? +## What Is the DMCA? -Para compreender a DMCA e algumas das linhas políticas que ela traça, talvez seja útil considerar a vida antes de ela ser promulgada. +In order to understand the DMCA and some of the policy lines it draws, it's perhaps helpful to consider life before it was enacted. -A DMCA fornece um porto seguro para fornecedores de serviços que hospedam conteúdo gerado pelos usuários. Uma vez que, mesmo uma única denúncia de violação de direitos autorais pode acarretar indenização de até 150.000 dólares, a possibilidade de ser responsabilizado por conteúdos gerados por usuários pode ser muito prejudicial para os prestadores de serviços. Com potenciais danos multiplicados por milhões de usuários, a computação em nuvem e os sites de conteúdo gerados pelo usuário, tais como YouTube, Facebook ou o GitHub, provavelmente [nunca teriam existido](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) sem a DMCA (ou, pelo menos, sem passar alguns desses custos aos seus usuários). +The DMCA provides a safe harbor for service providers that host user-generated content. Since even a single claim of copyright infringement can carry statutory damages of up to $150,000, the possibility of being held liable for user-generated content could be very harmful for service providers. With potential damages multiplied across millions of users, cloud-computing and user-generated content sites like YouTube, Facebook, or GitHub probably [never would have existed](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) without the DMCA (or at least not without passing some of that cost downstream to their users). -A DMCA resolve esse problema criando um [porto seguro de responsabilidade por direitos autorais](https://www.copyright.gov/title17/92chap5.html#512) para provedores de serviços de internet que hospedam conteúdo gerado por usuários que, supostamente, estejam infringindo esses direitos. Em resumo, enquanto um provedor de serviços seguir as regras de notificação e retirada DMCA, ele não será responsabilizado por violações de direitos autorais com base no conteúdo gerado pelo usuário. Por isso, é importante que o GitHub mantenha seu status de porto seguro DMCA. +The DMCA addresses this issue by creating a [copyright liability safe harbor](https://www.copyright.gov/title17/92chap5.html#512) for internet service providers hosting allegedly infringing user-generated content. Essentially, so long as a service provider follows the DMCA's notice-and-takedown rules, it won't be liable for copyright infringement based on user-generated content. Because of this, it is important for GitHub to maintain its DMCA safe-harbor status. -A DMCA também proíbe [contornar medidas técnicas](https://www.copyright.gov/title17/92chap12.html) que controlam efetivamente o acesso a obras protegidas por direitos autorais. +The DMCA also prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. -## Avisos DMCA em poucas palavras +## DMCA Notices In a Nutshell -O DMCA fornece dois procedimentos simples que todos os usuários do GitHub devem conhecer: (i) um procedimento de [tomada em conta](/articles/guide-to-submitting-a-dmca-takedown-notice) para que os titulares de direitos autorais solicitem que o conteúdo seja removido; e (ii) um procedimento de contranotificação [](/articles/guide-to-submitting-a-dmca-counter-notice) para os usuários obterem conteúdo reabilitado quando este for retirado por erro ou identificação incorreta. +The DMCA provides two simple, straightforward procedures that all GitHub users should know about: (i) a [takedown-notice](/articles/guide-to-submitting-a-dmca-takedown-notice) procedure for copyright holders to request that content be removed; and (ii) a [counter-notice](/articles/guide-to-submitting-a-dmca-counter-notice) procedure for users to get content re-enabled when content is taken down by mistake or misidentification. -Os [avisos de retirada](/articles/guide-to-submitting-a-dmca-takedown-notice) DMCA são utilizados por proprietários de direitos autorais para solicitar ao GitHub a retirada de conteúdo que eles acreditam estar infringindo esses direitos. Se você é um desenvolvedor ou designer de software, você cria conteúdo protegido por direitos autorais todos os dias. Se outra pessoa estiver utilizando seus conteúdos protegidos por direitos autorais de forma não autorizada no GitHub, você poderá enviar-nos um aviso de retirada DMCA para solicitar que o conteúdo inapropriado seja alterado ou removido. +DMCA [takedown notices](/articles/guide-to-submitting-a-dmca-takedown-notice) are used by copyright owners to ask GitHub to take down content they believe to be infringing. If you are a software designer or developer, you create copyrighted content every day. If someone else is using your copyrighted content in an unauthorized manner on GitHub, you can send us a DMCA takedown notice to request that the infringing content be changed or removed. -Por outro lado, [contra-avisos de retirada](/articles/guide-to-submitting-a-dmca-counter-notice) podem ser usados para corrigir erros. Talvez a pessoa que enviou o aviso de retirada não tenha direitos autorais ou não tenha percebido que você tem uma licença ou tenha cometido algum outro erro na notificação emitida. Considerando que o GitHub geralmente não sabe se houve um erro, o contra-aviso de retirada de conteúdo DMCA permite que você nos avise e peça que coloquemos o conteúdo de volta. +On the other hand, [counter notices](/articles/guide-to-submitting-a-dmca-counter-notice) can be used to correct mistakes. Maybe the person sending the takedown notice does not hold the copyright or did not realize that you have a license or made some other mistake in their takedown notice. Since GitHub usually cannot know if there has been a mistake, the DMCA counter notice allows you to let us know and ask that we put the content back up. -O processo de aviso e retirada DMCA deve ser utilizado apenas para queixas relativas a violações dos direitos autorais. Os avisos enviados através do nosso processo DMCA devem identificar a obra ou o trabalho protegido por direitos autorais que estejam alegadamente sendo violados. O processo não pode ser utilizado para outras queixas, tais como reclamações sobre alegada [violação de marca registrada](/articles/github-trademark-policy/) ou [dados confidenciais](/articles/github-sensitive-data-removal-policy/); oferecemos processos separados para essas situações. +The DMCA notice and takedown process should be used only for complaints about copyright infringement. Notices sent through our DMCA process must identify copyrighted work or works that are allegedly being infringed. The process cannot be used for other complaints, such as complaints about alleged [trademark infringement](/articles/github-trademark-policy/) or [sensitive data](/articles/github-sensitive-data-removal-policy/); we offer separate processes for those situations. -## A. Como realmente funciona? +## A. How Does This Actually Work? -A abordagem DMCA é um pouco como trocar bilhetinhos em sala de aula. O proprietário dos direitos autorais faz uma reclamação ao GitHub sobre um usuário. Se estiver escrito corretamente, passamos a reclamação para o usuário. Se o usuário discordar da reclamação, pode devolver uma notificação dizendo os motivos. O GitHub atua pouco no processo, determinando se as notificações atendem aos requisitos mínimos da DMCA. Cabe às partes (e aos seus advogados) avaliar o mérito das suas reivindicações, tendo em conta que os avisos devem ser feitos corretamente sob pena de perjúrio. +The DMCA framework is a bit like passing notes in class. The copyright owner hands GitHub a complaint about a user. If it's written correctly, we pass the complaint along to the user. If the user disputes the complaint, they can pass a note back saying so. GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -Aqui estão os passos básicos do processo. +Here are the basic steps in the process. -1. **O proprietário dos direitos autorais faz uma investigação.** O proprietário dos direitos autorais deve sempre realizar uma investigação inicial para confirmar que (a) possui os direitos autorais de uma obra original e (b) o conteúdo no GitHub não é autorizado e viola direitos. Isso inclui a confirmação de que o uso não está protegido como [uso justo](https://www.lumendatabase.org/topics/22). Um determinado uso pode ser considerado justo se utilizar apenas uma pequena quantidade de conteúdo com direitos autorais, se utilizar esse conteúdo de forma transformada, se usá-lo para fins educacionais, ou alguma combinação do exposto acima. Como o código se presta naturalmente a tais usos, cada caso de utilização é diferente, e deve ser considerado separadamente. -> **Exemplo:** Um funcionário da Acme Web Company encontra algum código da empresa em um repositório GitHub. A Acme Web licencia seu código-fonte para vários parceiros confiáveis. Antes de enviar um aviso de retirada, a Acme deve revisar essas licenças e seus acordos para confirmar que o código no GitHub não está autorizado sob nenhuma delas. +1. **Copyright Owner Investigates.** A copyright owner should always conduct an initial investigation to confirm both (a) that they own the copyright to an original work and (b) that the content on GitHub is unauthorized and infringing. This includes confirming that the use is not protected as [fair use](https://www.lumendatabase.org/topics/22). A particular use may be fair if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +> **Example:** An employee of Acme Web Company finds some of the company's code in a GitHub repository. Acme Web Company licenses its source code out to several trusted partners. Before sending in a take-down notice, Acme should review those licenses and its agreements to confirm that the code on GitHub is not authorized under any of them. -2. **O proprietário dos direitos autorais envia um aviso.** Depois de realizar uma investigação, o proprietário dos direitos autorais se prepara e envia um [aviso de retirada](/articles/guide-to-submitting-a-dmca-takedown-notice) ao GitHub. Considerando que a notificação recebida seja suficientemente detalhada, de acordo com as exigências estatutárias (conforme explicado no [guia de como fazer](/articles/guide-to-submitting-a-dmca-takedown-notice)), iremos [postar o aviso](#d-transparency) em nosso [repositório público](https://github.com/github/dmca) e passar o link para o usuário afetado. +2. **Copyright Owner Sends A Notice.** After conducting an investigation, a copyright owner prepares and sends a [takedown notice](/articles/guide-to-submitting-a-dmca-takedown-notice) to GitHub. Assuming the takedown notice is sufficiently detailed according to the statutory requirements (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-takedown-notice)), we will [post the notice](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the link along to the affected user. -3. **O GitHub solicita que o Usuário faça Alterações.** Se a notificação alegar que todo o conteúdo de um repositório ou um pacote estão cometendo violações, pularemos para a Etapa 6 e desabilitaremos todo o repositório ou pacote de forma rápida. Caso contrário, como o GitHub não pode desabilitar o acesso a arquivos específicos dentro de um repositório, entraremos em contato com o usuário que criou o repositório e daremos aproximadamente 1 dia útil para que ele exclua ou modifique o conteúdo especificado na notificação. Nós notificaremos o proprietário dos direitos autorais se e quando dermos ao usuário a chance de fazer alterações. Porque os pacotes são imutáveis, se apenas parte de um pacote estiver sendo infringido, o GitHub deverá desabilitar todo o pacote. No entanto, permitimos a reposição uma vez que a parte infração seja removida. +3. **GitHub Asks User to Make Changes.** If the notice alleges that the entire contents of a repository infringe, or a package infringes, we will skip to Step 6 and disable the entire repository or package expeditiously. Otherwise, because GitHub cannot disable access to specific files within a repository, we will contact the user who created the repository and give them approximately 1 business day to delete or modify the content specified in the notice. We'll notify the copyright owner if and when we give the user a chance to make changes. Because packages are immutable, if only part of a package is infringing, GitHub would need to disable the entire package, but we permit reinstatement once the infringing portion is removed. -4. **O usuário notifica o GitHub sobre as alterações.** Se o usuário escolher fazer as alterações especificadas, ele *deve* nos informar dentro de, aproximadamente, 1 dia útil. Caso contrário, desativaremos o repositório (como descrito na Etapa 6). Se o usuário nos notificar que fez as alterações, verificaremos se as alterações foram realmente feitas e, em seguida, notificaremos o detentor dos direitos autorais. +4. **User Notifies GitHub of Changes.** If the user chooses to make the specified changes, they *must* tell us so within the window of approximately 1 business day. If they don't, we will disable the repository (as described in Step 6). If the user notifies us that they made changes, we will verify that the changes have been made and then notify the copyright owner. -5. **O proprietário dos direitos autorais revisa ou retira o aviso.** Se o usuário fizer mudanças, o proprietário dos direitos autorais deve revisá-las e reenviar ou revisar seu aviso de retirada, caso as alterações sejam insuficientes. O GitHub não tomará nenhuma outra ação a não ser que o proprietário dos direitos autorais entre em contato conosco para refazer o aviso original de retirada ou enviar uma versão revisada. Se o proprietário dos direitos autorais estiver satisfeito com as mudanças, ele pode enviar uma retratação formal ou não fazer nada. O GitHub interpretará o silêncio por mais de duas semanas como uma retratação implícita do aviso de retirada. +5. **Copyright Owner Revises or Retracts the Notice.** If the user makes changes, the copyright owner must review them and renew or revise their takedown notice if the changes are insufficient. GitHub will not take any further action unless the copyright owner contacts us to either renew the original takedown notice or submit a revised one. If the copyright owner is satisfied with the changes, they may either submit a formal retraction or else do nothing. GitHub will interpret silence longer than two weeks as an implied retraction of the takedown notice. -6. **O GitHub pode desativar o acesso ao conteúdo.** O GitHub irá desativar o conteúdo de um usuário se: (i) o titular dos direitos autorais tem alegados direitos autorais sobre todo o repositório ou pacote do usuário (conforme mencionado na Etapa 3); (ii) o usuário não fez nenhuma alteração depois de ter sido dada a oportunidade de fazê-la (conforme mencionado na Etapa 4); ou (ii) o proprietário dos direitos autorais renovou o seu aviso de retirada depois que o usuário teve a chance de fazer alterações. Se, em vez disso, o proprietário dos direitos autorais escolher *revisar* o aviso, voltaremos à Etapa 2 e repetiremos o processo como se o aviso revisado fosse uma nova notificação. +6. **GitHub May Disable Access to the Content.** GitHub will disable a user's content if: (i) the copyright owner has alleged copyright over the user's entire repository or package (as noted in Step 3); (ii) the user has not made any changes after being given an opportunity to do so (as noted in Step 4); or (iii) the copyright owner has renewed their takedown notice after the user had a chance to make changes. If the copyright owner chooses instead to *revise* the notice, we will go back to Step 2 and repeat the process as if the revised notice were a new notice. -7. **O usuário pode enviar um contra-aviso de retirada.** Encorajamos usuários com conteúdo desabilitado a consultar um advogado sobre as opções que possui. Se um usuário acredita que seu conteúdo foi desabilitado como resultado de um erro ou identificação incorreta, ele pode nos enviar um [contra-aviso de retirada](/articles/guide-to-submitting-a-dmca-counter-notice). Como na notificação original, garantiremos que o contra-aviso seja suficientemente detalhado (conforme explicado no [guia prático](/articles/guide-to-submitting-a-dmca-counter-notice)). Se estiver, vamos [postá-lo](#d-transparency) em nosso [repositório público](https://github.com/github/dmca) e passar o aviso de volta para o proprietário dos direitos autorais, enviando o link para ele. +7. **User May Send A Counter Notice.** We encourage users who have had content disabled to consult with a lawyer about their options. If a user believes that their content was disabled as a result of a mistake or misidentification, they may send us a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). As with the original notice, we will make sure that the counter notice is sufficiently detailed (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-counter-notice)). If it is, we will [post it](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the notice back to the copyright owner by sending them the link. -8. **O proprietário dos direitos autorais pode entrar com uma ação legal.** Se um proprietário de direitos autorais deseja manter o conteúdo desativado após receber um contra-aviso, ele precisará entrar com uma ação judicial em busca de uma ordem da justiça para evitar que o usuário se envolva em infração à atividade relacionada ao conteúdo no GitHub. Em outras palavras, você pode processar. Se o proprietário dos direitos autorais não der um aviso no GitHub de 10 a 14 dias, enviando uma cópia de uma reclamação legal válida apresentada em tribunal de jurisdição competente, o GitHub reabilitará o conteúdo desabilitado. +8. **Copyright Owner May File a Legal Action.** If a copyright owner wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain the user from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued. If the copyright owner does not give GitHub notice within 10-14 days, by sending a copy of a valid legal complaint filed in a court of competent jurisdiction, GitHub will re-enable the disabled content. -## B. O que significa Bifurcação? (ou O que é uma Bifurcação?) +## B. What About Forks? (or What's a Fork?) -Um dos melhores recursos do GitHub é a possibilidade de os usuários "bifurcarem" repositórios uns dos outros. O que isso significa? Basicamente, isso significa que os usuários podem fazer uma cópia de um projeto no GitHub em seus próprios repositórios. Conforme a licença ou a lei permitirem, os usuários podem fazer alterações nessa bifurcação para ou fazer push de volta para o projeto principal ou simplesmente manter como sua própria variação de um projeto. Cada uma dessas cópias é uma "[bifurcação](/articles/github-glossary#fork)" do repositório original que, por sua vez, também pode ser chamado de "principal" da bifurcação. +One of the best features of GitHub is the ability for users to "fork" one another's repositories. What does that mean? In essence, it means that users can make a copy of a project on GitHub into their own repositories. As the license or the law allows, users can then make changes to that fork to either push back to the main project or just keep as their own variation of a project. Each of these copies is a "[fork](/articles/github-glossary#fork)" of the original repository, which in turn may also be called the "parent" of the fork. -O GitHub *não* irá desabilitar bifurcações automaticamente quando desabilitar um repositório principal. Isto ocorre porque as bifurcações pertencem a diferentes usuários, podem ter sido alteradas de maneira significativa e podem ser licenciadas ou utilizadas de uma forma diferente que seja protegida pela doutrina do uso justo. O GitHub não realiza nenhuma investigação independente sobre as bifurcações. Esperamos que os titulares de direitos autorais façam essa investigação e, se acreditarem que as bifurcações também estão violando direitos, incluam expressamente as bifurcações no seu aviso de retirada. +GitHub *will not* automatically disable forks when disabling a parent repository. This is because forks belong to different users, may have been altered in significant ways, and may be licensed or used in a different way that is protected by the fair-use doctrine. GitHub does not conduct any independent investigation into forks. We expect copyright owners to conduct that investigation and, if they believe that the forks are also infringing, expressly include forks in their takedown notice. -Em casos raros, você pode estar alegando a violação de direitos autorais em um repositório completo que está sendo ativamente bifurcado. Se, no momento em que você enviou a notificação, você identificou todas as bifurcações existentes do repositório como supostamente violadas, nós processaríamos uma reivindicação válida contra todas as bifurcações dessa rede no momento em que processamos a notificação. Nós faríamos isso tendo em conta a probabilidade de todas as novas bifurcações criadas conterem o mesmo conteúdo. Além disso se a rede relatada que contém o conteúdo supostamente violador for superior a 100 (cem) repositórios, seria difícil, portanto, revisá-la na sua totalidade, e podemos considerar a desabilitação de toda a rede se você declarar na sua notificação que, "Com base no número representativo de bifurcações que você analisou, acredito que todos ou a maioria das bifurcações estão cometendo violações na mesma medida que o repositório principal". A sua declaração juramentada será aplicada a esta declaração. +In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks I have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -## C. E quanto às reivindicações da circunvenção? +## C. What about Circumvention Claims? -A DMCA proíbe a [contornar medidas técnicas](https://www.copyright.gov/title17/92chap12.html) que controlam efetivamente o acesso a obras protegidas por direitos autorais. Dado que este tipo de reclamação é, muitas vezes, de natureza altamente técnica, o GitHub exige que os reclamantes forneçam [informações detalhadas sobre essas reclamações](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology), e nós realizamos uma revisão mais abrangente. +The DMCA prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. Given that these types of claims are often highly technical in nature, GitHub requires claimants to provide [detailed information about these claims](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology), and we undertake a more extensive review. -Uma alegação de circunvenção deve incluir os pormenores a seguir sobre as medidas técnicas em vigor e a forma como o projeto acusado as contorna. Principalmente, o aviso ao GitHub deve incluir declarações detalhadas que descrevem: -1. Quais são as medidas técnicas; -2. Como controlam, de forma eficaz, o acesso ao material protegido por direitos autorais; e -3. O modo como o projecto acusado foi concebido para contornar as medidas de proteção tecnológica anteriormente descritas. +A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -O GitHub analisará de perto reclamações da circunvenção, incluindo especialistas técnicos e jurídicos. Na revisão técnica, Procuraremos validar os pormenores sobre a forma como funcionam as medidas de proteção técnica e a forma como o projeto as contorna. Na revisão jurídica, procuraremos assegurar que as alegações não vão para além das fronteiras do DMCA. Nos casos em que não formos capazes de determinar se uma reivindicação é válida, pecaremos no lado do desenvolvedor e deixar o conteúdo disponível. Se o reclamante desejar fazer o acompanhamento com informações adicionais, iniciaremos novamente o processo de revisão para avaliar as reclamações revisadas. +GitHub will review circumvention claims closely, including by both technical and legal experts. In the technical review, we will seek to validate the details about the manner in which the technical protection measures operate and the way the project allegedly circumvents them. In the legal review, we will seek to ensure that the claims do not extend beyond the boundaries of the DMCA. In cases where we are unable to determine whether a claim is valid, we will err on the side of the developer, and leave the content up. If the claimant wishes to follow up with additional detail, we would start the review process again to evaluate the revised claims. -Quando os nossos especialistas determinarem que uma reivindicação é completa, legal e tecnicamente legítima, nós entraremos em contato com o proprietário do repositório e iremos dar-lhe a oportunidade de responder à reivindicação ou fazer alterações no repositório para evitar a desabilitação de um repositório. Se não responderem, tentaremos entrar em contato com o proprietário do repositório novamente antes de tomar qualquer outra medida. Em outras palavras, não desativaremos um repositório com base em uma reivindicação de circunvenção de tecnologia sem tentar entrar em contato com o proprietário do repositório para dar-lhe a oportunidade de responder ou fazer alterações primeiro. Se não formos capazes de resolver o problema entrando em contato com o proprietário do repositório, primeiro teremos o prazer de considerar uma resposta do proprietário do repositório mesmo depois que o conteúdo tenha sido desabilitado se quiser uma oportunidade de contestar a reclamação, apresenta-nos fatos adicionais, ou fazer alterações para que o conteúdo seja restaurado. Quando tivermos de desabilitar o conteúdo, garantiremos que os proprietários do repositório possam exportar os seus problemas, pull requests e outros dados do repositórios que não contenham o suposto código de contorno na medida do juridicamente possível. +Where our experts determine that a claim is complete, legal, and technically legitimate, we will contact the repository owner and give them a chance to respond to the claim or make changes to the repo to avoid a takedown. If they do not respond, we will attempt to contact the repository owner again before taking any further steps. In other words, we will not disable a repository based on a claim of circumvention technology without attempting to contact a repository owner to give them a chance to respond or make changes first. If we are unable to resolve the issue by reaching out to the repository owner first, we will always be happy to consider a response from the repository owner even after the content has been disabled if they would like an opportunity to dispute the claim, present us with additional facts, or make changes to have the content restored. When we need to disable content, we will ensure that repository owners can export their issues and pull requests and other repository data that do not contain the alleged circumvention code to the extent legally possible. -Tenha em mente que o nosso processo de revisão para contornar a tecnologia não se aplica ao conteúdo que, de outra forma, violaria as nossas restrições de uso aceitável da política de compartilhamento de chaves de licenciamento de produtos não autorizadas, software para gerar chaves de licenciamento de produtos não autorizadas ou software para ignorar verificações de chaves de licenciamento de produtos. Embora estes tipos de alegações também possam violar as disposições da DMCA sobre as tecnologias de circunvenção, trata-se de questões tipicamente simples e não justificam uma revisão técnica e jurídica adicional. No entanto, quando a reivindicação não for simples, por exemplo, no caso de infracções, será aplicado o processo de revisão de pedidos de indemnização por tecnologia. +Please note, our review process for circumvention technology does not apply to content that would otherwise violate our Acceptable Use Policy restrictions against sharing unauthorized product licensing keys, software for generating unauthorized product licensing keys, or software for bypassing checks for product licensing keys. Although these types of claims may also violate the DMCA provisions on circumvention technology, these are typically straightforward and do not warrant additional technical and legal review. Nonetheless, where a claim is not straightforward, for example in the case of jailbreaks, the circumvention technology claim review process would apply. -Quando o GitHub processa um banco de dados do DMCA no nosso processo de análise de tecnologia de circunvenção, nós ofereceremos ao proprietário do repositório uma indicação para receber uma consultoria jurídica independente por meio do do [Fundo de Defesa de Desenvolvedor do GitHub](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) sem nenhum custo. +When GitHub processes a DMCA takedown under our circumvention technology claim review process, we will offer the repository owner a referral to receive independent legal consultation through [GitHub’s Developer Defense Fund](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) at no cost to them. -## D. E se eu, inadvertidamente, deixar passar o período para fazer as alterações? +## D. What If I Inadvertently Missed the Window to Make Changes? -Reconhecemos que há muitas razões válidas para que você possa não conseguir fazer alterações dentro da janela aproximada de 1 dia útil que fornecemos antes que seu repositório seja desativado. Talvez a nossa mensagem tenha sido sinalizada como spam, talvez você estivesse de férias, talvez você não verifique essa conta de e-mail regularmente, ou talvez você estivesse apenas ocupado. Nós entendemos isso. Se você responder para nos informar que gostaria de ter feito as alterações, mas de alguma forma perdeu a primeira oportunidade, reativaremos o repositório por um tempo adicional de aproximadamente 1 dia útil para permitir que você faça as alterações. Novamente, você deve nos notificar que fez as alterações para manter o repositório ativo após essa janela de 1 dia útil, conforme mencionado acima na [Etapa A.4](#a-how-does-this-actually-work). Por favor, note que só forneceremos esta chance adicional. +We recognize that there are many valid reasons that you may not be able to make changes within the window of approximately 1 business day we provide before your repository gets disabled. Maybe our message got flagged as spam, maybe you were on vacation, maybe you don't check that email account regularly, or maybe you were just busy. We get it. If you respond to let us know that you would have liked to make the changes, but somehow missed the first opportunity, we will re-enable the repository one additional time for approximately 1 business day to allow you to make the changes. Again, you must notify us that you have made the changes in order to keep the repository enabled after that window of approximately 1 business day, as noted above in [Step A.4](#a-how-does-this-actually-work). Please note that we will only provide this one additional chance. -## E. Transparência +## E. Transparency -Acreditamos que a transparência é uma virtude. O público deve saber qual conteúdo está sendo removido do GitHub e por quê. Um público informado pode notar e supervisionar problemas potenciais que, de outra forma, passariam despercebidos num sistema obscuro. Publicamos cópias com conteúdo pessoal suprimido de quaisquer avisos legais que recebamos (incluindo avisos originais, contra-avisos ou retratações) em <https://github.com/github/dmca>. Não tornaremos públicas suas informações de contato pessoais; removeremos informações pessoais (exceto nomes de usuários nas URLs) antes de publicar avisos. No entanto, não iremos suprimir quaisquer outras informações do seu aviso, a menos que nos solicite especificamente que o façamos. Aqui estão alguns exemplos de um [aviso](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) publicado e um [contra-aviso](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) para você ver como eles são. Quando removermos o conteúdo, publicaremos no seu lugar um link para o aviso relacionado. +We believe that transparency is a virtue. The public should know what content is being removed from GitHub and why. An informed public can notice and surface potential issues that would otherwise go unnoticed in an opaque system. We post redacted copies of any legal notices we receive (including original notices, counter notices or retractions) at <https://github.com/github/dmca>. We will not publicly publish your personal contact information; we will remove personal information (except for usernames in URLs) before publishing notices. We will not, however, redact any other information from your notice unless you specifically ask us to. Here are some examples of a published [notice](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) and [counter notice](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) for you to see what they look like. When we remove content, we will post a link to the related notice in its place. -Note também que, embora não divulguemos publicamente avisos sem a exclusão de dados pessoais, podemos fornecer uma cópia completa sem conteúdo suprimido de qualquer aviso que recebermos diretamente para qualquer uma das partes cujos direitos seriam afetados por ele. +Please also note that, although we will not publicly publish unredacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. -## F. Violação recorrente +## F. Repeated Infringement -É política do GitHub, em circunstâncias apropriadas e a seu exclusivo critério, desativar e encerrar as contas de usuários que possam infringir direitos autorais ou outros direitos de propriedade intelectual do GitHub ou de terceiros. +It is the policy of GitHub, in appropriate circumstances and in its sole discretion, to disable and terminate the accounts of users who may infringe upon the copyrights or other intellectual property rights of GitHub or others. -## G. Enviando avisos +## G. Submitting Notices -Se estiver pronto para enviar um aviso ou contra-aviso: -- [Como enviar um Aviso DMCA](/articles/guide-to-submitting-a-dmca-takedown-notice) -- [Como enviar um Contra-aviso DMCA](/articles/guide-to-submitting-a-dmca-counter-notice) +If you are ready to submit a notice or a counter notice: +- [How to Submit a DMCA Notice](/articles/guide-to-submitting-a-dmca-takedown-notice) +- [How to Submit a DMCA Counter Notice](/articles/guide-to-submitting-a-dmca-counter-notice) -## Saiba Mais e Fale Mais +## Learn More and Speak Up -Se você navegar pela internet, não é muito difícil encontrar comentários e críticas sobre o sistema de direitos autorais em geral e sobre a DMCA em particular. Embora o GitHub reconheça e aprecie o papel importante que a DMCA tem desempenhado na promoção da inovação online, acreditamos que as leis de direitos autorais poderiam passar uma ou outra correção, ou mesmo uma nova versão completa. Em questão de software, estamos constantemente melhorando e atualizando nosso código. Pense no quanto a tecnologia mudou desde 1998, quando a DMCA foi escrita. Não faria sentido atualizar essa lei no que se aplica aos softwares? +If you poke around the Internet, it is not too hard to find commentary and criticism about the copyright system in general and the DMCA in particular. While GitHub acknowledges and appreciates the important role that the DMCA has played in promoting innovation online, we believe that the copyright laws could probably use a patch or two—if not a whole new release. In software, we are constantly improving and updating our code. Think about how much technology has changed since 1998 when the DMCA was written. Doesn't it just make sense to update these laws that apply to software? -Não presumimos ter todas as respostas. Mas se você é curioso, aqui estão alguns links para artigos acadêmicos e posts de blog que encontramos com opiniões e propostas de reforma: +We don't presume to have all the answers. But if you are curious, here are a few links to scholarly articles and blog posts we have found with opinions and proposals for reform: -- [Consequências inesperadas: Doze anos sob a DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Electronic Frontier Foundation) -- [Danos estatutários em Direitos Autorais: um remédio precisando de reforma](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Mary Law Review) -- [O período de proteção de direitos autorais é muito longo?](https://the1709blog.blogspot.com/2012/11/is-term-of-protection-of-copyright-too.html) (The 1709 Blog) -- [Se vamos alterar a "Notificação de & Retirada" da DMCA, vamos focar no quão ela é amplamente abusiva](https://www.techdirt.com/articles/20140314/11350426579/if-were-going-to-change-dmcas-notice-takedown-lets-focus-how-widely-its-abused.shtml) (TechDirt) -- [Oportunidades para a reforma dos Direitos Autorais](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato Unbound) -- [Doutrina do uso justo e a Digital Millennium Copyright Act: o uso justo existe na internet sob a DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Santa Clara Law Review) +- [Unintended Consequences: Twelve Years Under the DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Electronic Frontier Foundation) +- [Statutory Damages in Copyright Law: A Remedy in Need of Reform](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Mary Law Review) +- [Is the Term of Protection of Copyright Too Long?](https://the1709blog.blogspot.com/2012/11/is-term-of-protection-of-copyright-too.html) (The 1709 Blog) +- [If We're Going to Change DMCA's 'Notice & Takedown,' Let's Focus on How Widely It's Abused](https://www.techdirt.com/articles/20140314/11350426579/if-were-going-to-change-dmcas-notice-takedown-lets-focus-how-widely-its-abused.shtml) (TechDirt) +- [Opportunities for Copyright Reform](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato Unbound) +- [Fair Use Doctrine and the Digital Millennium Copyright Act: Does Fair Use Exist on the Internet Under the DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Santa Clara Law Review) -O GitHub não necessariamente apoia nenhum dos pontos de vista desses artigos. Fornecemos os links para incentivar você a aprender mais, formar suas próprias opiniões e, em seguida, entrar em contato com o(s) seu(s) representante(s) (por exemplo, no (p. ex., nos [EUA Congresso](https://www.govtrack.us/congress/members) ou [E.U. Parlamento](https://www.europarl.europa.eu/meps/en/home)) para procurar quaisquer alterações que você entenda que devem ser feitas. +GitHub doesn't necessarily endorse any of the viewpoints in those articles. We provide the links to encourage you to learn more, form your own opinions, and then reach out to your elected representative(s) (e.g, in the [U.S. Congress](https://www.govtrack.us/congress/members) or [E.U. Parliament](https://www.europarl.europa.eu/meps/en/home)) to seek whatever changes you think should be made. diff --git a/translations/pt-BR/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md b/translations/pt-BR/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md index 9ae50c72d4..687fba4885 100644 --- a/translations/pt-BR/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md +++ b/translations/pt-BR/content/github/site-policy/github-bug-bounty-program-legal-safe-harbor.md @@ -1,5 +1,5 @@ --- -title: Programa de recompensa de erros e declaração Safe Harbor do GitHub +title: GitHub Bug Bounty Program Legal Safe Harbor redirect_from: - /articles/github-bug-bounty-program-legal-safe-harbor versions: @@ -9,29 +9,29 @@ topics: - Legal --- -## Sumário -1. We want you to coordinate disclosure through our bug bounty program, and don't want researchers put in fear of legal consequences because of their good faith attempts to comply with our bug bounty policy. Não podemos vincular terceiros, por isso, não interprete que essa proteção se estende a terceiros. Em caso de dúvida, pergunte-nos antes de se envolver em qualquer ação específica que você acha que _pode_ ir além dos limites de nossa política. -2. Como tanto as informações de identificação quanto as de não identificação podem colocar um pesquisador em risco, limitamos o que compartilhamos com terceiros. Podemos fornecer informações substantivas não identificadas do seu relatório a terceiros afetados, mas somente depois de notificá-lo e receber um compromisso de que o terceiro não irá prosseguir com uma ação legal contra você. Só compartilharemos informações de identificação (nome, endereço de e-mail, número de telefone, etc.) com um terceiro se você der sua permissão por escrito. -3. Se sua pesquisa de segurança como parte do programa de recompensa de bugs violar certas restrições em nossas políticas locais, os termos do porto seguro permitem uma isenção limitada. +## Summary +1. We want you to coordinate disclosure through our bug bounty program, and don't want researchers put in fear of legal consequences because of their good faith attempts to comply with our bug bounty policy. We cannot bind any third party, so do not assume this protection extends to any third party. If in doubt, ask us before engaging in any specific action you think _might_ go outside the bounds of our policy. +2. Because both identifying and non-identifying information can put a researcher at risk, we limit what we share with third parties. We may provide non-identifying substantive information from your report to an affected third party, but only after notifying you and receiving a commitment that the third party will not pursue legal action against you. We will only share identifying information (name, email address, phone number, etc.) with a third party if you give your written permission. +3. If your security research as part of the bug bounty program violates certain restrictions in our site policies, the safe harbor terms permit a limited exemption. -## 1. Termos de Porto Seguro +## 1. Safe Harbor Terms -To encourage research and coordinated disclosure of security vulnerabilities, we will not pursue civil or criminal action, or send notice to law enforcement for accidental or good faith violations of this policy. Consideramos que as atividades de pesquisa de segurança e divulgação de vulnerabilidades conduzidas, consistentes com esta política, são condutas "autorizadas" sob a Lei de Fraude e Abuso de Computadores, a DMCA, e outras leis aplicáveis de uso de computador, como a Cal. Código Penal 502(c). Renunciamos a qualquer potencial reclamação da DMCA contra você por contornar as medidas tecnológicas que usamos para proteger os aplicativos no escopo deste programa de recompensa de bugs. +To encourage research and coordinated disclosure of security vulnerabilities, we will not pursue civil or criminal action, or send notice to law enforcement for accidental or good faith violations of this policy. We consider security research and vulnerability disclosure activities conducted consistent with this policy to be “authorized” conduct under the Computer Fraud and Abuse Act, the DMCA, and other applicable computer use laws such as Cal. Penal Code 502(c). We waive any potential DMCA claim against you for circumventing the technological measures we have used to protect the applications in this bug bounty program's scope. -Por favor, entenda que se sua pesquisa de segurança envolve redes, sistemas, informações, aplicativos, produtos ou serviços de terceiros (que não somos nós), não podemos vincular esse terceiro, e eles podem prosseguir com ações legais ou notificação de aplicação da lei. Não podemos e não autorizamos pesquisas de segurança em nome de outras entidades, e não podemos de forma alguma oferecer para defender, indenizar ou proteger de qualquer outra forma de qualquer ação de terceiros com base em suas ações. +Please understand that if your security research involves the networks, systems, information, applications, products, or services of a third party (which is not us), we cannot bind that third party, and they may pursue legal action or law enforcement notice. We cannot and do not authorize security research in the name of other entities, and cannot in any way offer to defend, indemnify, or otherwise protect you from any third party action based on your actions. -Espera-se, como sempre, que você cumpra todas as leis aplicáveis e não interrompa ou comprometa quaisquer dados além do que este programa de recompensa de bugs permite. +You are expected, as always, to comply with all laws applicable to you, and not to disrupt or compromise any data beyond what this bug bounty program permits. -Entre em contato conosco antes de se envolver em condutas que possam ser inconsistentes ou não endereçadas por esta política. Reservamo-nos o direito exclusivo de determinar se uma violação desta política é acidental ou de boa fé, e o contato proativo conosco antes de se envolver em qualquer ação é um fator significativo nessa decisão. Em caso de dúvida, pergunte-nos primeiro! +Please contact us before engaging in conduct that may be inconsistent with or unaddressed by this policy. We reserve the sole right to make the determination of whether a violation of this policy is accidental or in good faith, and proactive contact to us before engaging in any action is a significant factor in that decision. If in doubt, ask us first! -## 2. Porto Seguro de Terceiros +## 2. Third Party Safe Harbor -Se você enviar um relatório através do nosso programa de recompensa de bugs que afeta um serviço de terceiros, limitaremos o que compartilhamos com qualquer terceiro afetado. Podemos compartilhar conteúdo não identificado do seu relatório com um terceiro afetado, mas somente depois de notificá-lo que pretendemos fazê-lo e obter o compromisso escrito de que ele não irá prosseguir com ações legais contra você ou iniciar contato com a aplicação da lei com base em seu relatório. Não compartilharemos suas informações de identificação com terceiros afetados sem antes obter sua permissão por escrito para fazê-lo. +If you submit a report through our bug bounty program which affects a third party service, we will limit what we share with any affected third party. We may share non-identifying content from your report with an affected third party, but only after notifying you that we intend to do so and getting the third party's written commitment that they will not pursue legal action against you or initiate contact with law enforcement based on your report. We will not share your identifying information with any affected third party without first getting your written permission to do so. -Por favor, note que não podemos autorizar testes fora do escopo em nome de terceiros, e tais testes estão além do escopo de nossa política. Consulte a política de recompensa por bugs desse terceiro, se ele tiver uma, ou entre em contato com o terceiro diretamente ou através de um representante legal antes de começar qualquer teste sobre esse terceiro ou seus serviços. Isso não é, e não deve ser entendido como, qualquer acordo de nossa parte para defender, indenizar ou de outra forma protegê-lo de qualquer ação de terceiros com base em suas ações. +Please note that we cannot authorize out-of-scope testing in the name of third parties, and such testing is beyond the scope of our policy. Refer to that third party's bug bounty policy, if they have one, or contact the third party either directly or through a legal representative before initiating any testing on that third party or their services. This is not, and should not be understood as, any agreement on our part to defend, indemnify, or otherwise protect you from any third party action based on your actions. -Dito isto, se uma ação legal for iniciada por terceiros, incluindo a aplicação da lei, contra você por causa de sua participação neste programa de recompensa de bugs, e você tiver cumprido suficientemente com nossa política de recompensa de bugs (ou seja, não ter cometido violações intencionais ou de má fé), tomaremos medidas para que saiba que suas ações foram conduzidas em conformidade com esta política. Embora consideremos os relatórios apresentados, tanto documentos confidenciais quanto potencialmente privilegiados, e protegidos da divulgação compelida na maioria das circunstâncias, por favor, estejam cientes de que um tribunal poderia, apesar de nossas objeções, nos ordenar compartilhar informações com terceiros. +That said, if legal action is initiated by a third party, including law enforcement, against you because of your participation in this bug bounty program, and you have sufficiently complied with our bug bounty policy (i.e. have not made intentional or bad faith violations), we will take steps to make it known that your actions were conducted in compliance with this policy. While we consider submitted reports both confidential and potentially privileged documents, and protected from compelled disclosure in most circumstances, please be aware that a court could, despite our objections, order us to share information with a third party. -## 3. Renúncia limitada a outras políticas do site +## 3. Limited Waiver of Other Site Polices -Na medida em que suas atividades de pesquisa de segurança são inconsistentes com certas restrições em nossas [políticas relevantes do site](/categories/site-policy/) mas são consistentes com os termos do nosso programa de recompensa de erros, renunciamos a essas restrições com o único e limitado propósito de permitir sua pesquisa de segurança sob este programa de recompensa de erros. Assim como acima, em caso de dúvida, pergunte-nos primeiro! +To the extent that your security research activities are inconsistent with certain restrictions in our [relevant site policies](/categories/site-policy/) but consistent with the terms of our bug bounty program, we waive those restrictions for the sole and limited purpose of permitting your security research under this bug bounty program. Just like above, if in doubt, ask us first! diff --git a/translations/pt-BR/content/github/site-policy/github-community-guidelines.md b/translations/pt-BR/content/github/site-policy/github-community-guidelines.md index 0d6c678231..7011d661da 100644 --- a/translations/pt-BR/content/github/site-policy/github-community-guidelines.md +++ b/translations/pt-BR/content/github/site-policy/github-community-guidelines.md @@ -1,7 +1,7 @@ --- -title: Diretrizes da comunidade do GitHub +title: GitHub Community Guidelines redirect_from: - - /community-guidelines/ + - /community-guidelines - /articles/github-community-guidelines versions: fpt: '*' @@ -10,99 +10,110 @@ topics: - Legal --- -Milhões de desenvolvedores hospedam milhões de projetos no GitHub — tanto código aberto quanto fechado — e temos orgulho de viabilizarmos a colaboração de toda a comunidade todos os dias. Juntos, temos uma empolgante oportunidade e a responsabilidade de tornar esta comunidade algo do qual podemos nos orgulhar. +Millions of developers host millions of projects on GitHub — both open and closed source — and we're honored to play a part in enabling collaboration across the community every day. Together, we all have an exciting opportunity and responsibility to make this a community we can be proud of. -Usuários do GitHub em todo o mundo trazem perspectivas, ideias e experiências extremamente diferentes, abrangendo desde pessoas que criaram seu primeiro projeto "Olá Mundo" na semana passada até os mais conhecidos desenvolvedores de software do mundo. Estamos empenhados em fazer do GitHub um ambiente acolhedor para todas as diferentes vozes e perspectivas da nossa comunidade, mantendo um espaço onde as pessoas são livres para se expressarem. +GitHub users worldwide bring wildly different perspectives, ideas, and experiences, and range from people who created their first "Hello World" project last week to the most well-known software developers in the world. We are committed to making GitHub a welcoming environment for all the different voices and perspectives in our community, while maintaining a space where people are free to express themselves. -Contamos com os membros de nossa comunidade para comunicar expectativas, [moderar](#what-if-something-or-someone-offends-you) seus projetos e {% data variables.contact.report_abuse %} ou {% data variables.contact.report_content %}. Ao definir o que esperamos ver em nossa comunidade, esperamos ajudá-lo a entender a melhora forma para colaborar no GitHub e que tipo de ações ou conteúdo podem violar nossos [Termos de Serviço](#legal-notices), que incluem nossas [Políticas de Uso Aceitáveis](/github/site-policy/github-acceptable-use-policies). Investigaremos quaisquer denúncias de abuso e podemos moderar o conteúdo público em nosso site que definirmos como violador de nossos Termos de Serviço. +We rely on our community members to communicate expectations, [moderate](#what-if-something-or-someone-offends-you) their projects, and {% data variables.contact.report_abuse %} or {% data variables.contact.report_content %}. By outlining what we expect to see within our community, we hope to help you understand how best to collaborate on GitHub, and what type of actions or content may violate our [Terms of Service](#legal-notices), which include our [Acceptable Use Policies](/github/site-policy/github-acceptable-use-policies). We will investigate any abuse reports and may moderate public content on our site that we determine to be in violation of our Terms of Service. -## Criar uma comunidade integrada +## Building a strong community -A finalidade principal da comunidade do GitHub é colaborar em projetos de software. Queremos que as pessoas trabalhem melhor em conjunto. Embora mantenhamos o site, essa é uma comunidade que construímos *juntos*, e precisamos da sua ajuda para torná-la a melhor possível. +The primary purpose of the GitHub community is to collaborate on software projects. +We want people to work better together. Although we maintain the site, this is a community we build *together*, and we need your help to make it the best it can be. -* **Seja bem-vindo e venha com a mente aberta!** - Outros colaboradores podem não ter o mesmo nível de experiência ou o mesmo histórico que você, mas isso não significa que eles não tenham boas ideias para contribuir. Nós o encorajamos a receber com boas-vindas os novos colaboradores e aqueles que acabaram de chegar. +* **Be welcoming and open-minded** - Other collaborators may not have the same experience level or background as you, but that doesn't mean they don't have good ideas to contribute. We encourage you to be welcoming to new collaborators and those just getting started. -* **Respeitem-se.** Nada sabota tanto as conversas saudáveis quanto a grosseria. Seja cordial e profissional, e não publique nada que uma pessoa de bom senso considere como discurso ofensivo, abusivo ou de ódio. Não assedie ou constranja ninguém. Trate uns aos outros com dignidade e consideração em todas as interações. +* **Respect each other.** Nothing sabotages healthy conversation like rudeness. Be civil and professional, and don’t post anything that a reasonable person would consider offensive, abusive, or hate speech. Don’t harass or grief anyone. Treat each other with dignity and consideration in all interactions. - Você pode querer responder a algo discordando sobre o assunto. Tudo bem. Mas lembre-se de criticar ideias, não pessoas. Evite xingamentos, ataques diretos ad hominem, respondendo ao tom de um post em vez de seu conteúdo real, e reações impulsivas. Em vez disso, forneça contra-argumentos fundamentados que melhorem a conversa. + You may wish to respond to something by disagreeing with it. That’s fine. But remember to criticize ideas, not people. Avoid name-calling, ad hominem attacks, responding to a post’s tone instead of its actual content, and knee-jerk contradiction. Instead, provide reasoned counter-arguments that improve the conversation. -* **Comunique-se com a empatia** - Discordâncias ou diferenças de opinião são um fato da vida. Fazer parte de uma comunidade significa interagir com pessoas de diversas experiências e perspectivas, muitas das quais podem não ser as mesmas que as nossas. Se você discorda de alguém, tente se colocar no lugar da pessoa antes de se dirigir a ela. Isto promoverá uma atmosfera respeitosa e amigável, onde as pessoas se sentem confortáveis em fazer perguntas, participar de discussões e dar suas contribuições. +* **Communicate with empathy** - Disagreements or differences of opinion are a fact of life. Being part of a community means interacting with people from a variety of backgrounds and perspectives, many of which may not be your own. If you disagree with someone, try to understand and share their feelings before you address them. This will promote a respectful and friendly atmosphere where people feel comfortable asking questions, participating in discussions, and making contributions. -* **Seja claro e não fuja do assunto** - As pessoas usam o GitHub para trabalharem e serem mais produtivas. Comentários fora do assunto são uma distração (às vezes, bem-vinda, mas geralmente não) para o trabalho produtivo. Manter-se dentro do assunto ajuda a fomentar debates positivos e produtivos. +* **Be clear and stay on topic** - People use GitHub to get work done and to be more productive. Off-topic comments are a distraction (sometimes welcome, but usually not) from getting work done and being productive. Staying on topic helps produce positive and productive discussions. - Além disso, comunicar-se com estranhos na internet pode ser desafiador. É difícil comunicar ou ler no tom desejado, e o sarcasmo é frequentemente mal interpretado. Tente usar uma linguagem clara, e pense em como ela será recebida pela outra pessoa. + Additionally, communicating with strangers on the Internet can be awkward. It's hard to convey or read tone, and sarcasm is frequently misunderstood. Try to use clear language, and think about how it will be received by the other person. -## E se algo ou alguém ofender você? +## What if something or someone offends you? -Contamos com a comunidade para nos informar quando um problema precisa ser resolvido. Não monitoramos ativamente o site para conteúdo ofensivo. Se você encontrar alguma coisa ou alguém no site que você considere censurável, aqui estão algumas ferramentas que o GitHub fornece para ajudá-lo a agir imediatamente: +We rely on the community to let us know when an issue needs to be addressed. We do not actively monitor the site for offensive content. If you run into something or someone on the site that you find objectionable, here are some tools GitHub provides to help you take action immediately: -* **Comunicar expectativas** - Se você participa de uma comunidade que não definiu as diretrizes específicas para a comunidade, incentive-os a fazê-lo no arquivo README ou [no arquivo CONTRIBUTING](/articles/setting-guidelines-for-repository-contributors/), ou em [um código de conduta dedicado](/articles/adding-a-code-of-conduct-to-your-project/), enviando um pull request. +* **Communicate expectations** - If you participate in a community that has not set their own, community-specific guidelines, encourage them to do so either in the README or [CONTRIBUTING file](/articles/setting-guidelines-for-repository-contributors/), or in [a dedicated code of conduct](/articles/adding-a-code-of-conduct-to-your-project/), by submitting a pull request. -* **Comentários moderados** - Se você tem [privilégios de acesso de gravação](/articles/repository-permission-levels-for-an-organization/) para um repositório, você pode editar, excluir ou ocultar comentários de qualquer pessoa em commits, pull requests e problemas. Qualquer pessoa com acesso de leitura em um repositório pode visualizar o histórico de edição do comentário. Autores do comentário e pessoas com acesso de gravação a um repositório podem excluir informações confidenciais do histórico de edição de um comentário. Para obter mais informações, consulte "[Rastreando alterações em um comentário](/articles/tracking-changes-in-a-comment)" e "[Gerenciando comentários inconvenientes](/articles/managing-disruptive-comments)". +* **Moderate Comments** - If you have [write-access privileges](/articles/repository-permission-levels-for-an-organization/) for a repository, you can edit, delete, or hide anyone's comments on commits, pull requests, and issues. Anyone with read access to a repository can view a comment's edit history. Comment authors and people with write access to a repository can delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/articles/tracking-changes-in-a-comment)" and "[Managing disruptive comments](/articles/managing-disruptive-comments)." -* **Bloquear conversas** - Se uma discussão em um problema ou pull request fica fora de controle, você pode [bloquear a conversa](/articles/locking-conversations/). +* **Lock Conversations**  - If a discussion in an issue or pull request gets out of control, you can [lock the conversation](/articles/locking-conversations/). -* **Bloquear Usuários** - Se você encontrar um usuário que continua demonstrando um comportamento ruim, você pode [bloquear o usuário de sua conta pessoal](/articles/blocking-a-user-from-your-personal-account/) ou [bloquear o usuário da sua organização](/articles/blocking-a-user-from-your-organization/). +* **Block Users**  - If you encounter a user who continues to demonstrate poor behavior, you can [block the user from your personal account](/articles/blocking-a-user-from-your-personal-account/) or [block the user from your organization](/articles/blocking-a-user-from-your-organization/). -Claro, você sempre pode entrar em contato conosco em {% data variables.contact.report_abuse %} se precisar de mais ajuda para lidar com uma situação. +Of course, you can always contact us to {% data variables.contact.report_abuse %} if you need more help dealing with a situation. -## O que não é permitido? +## What is not allowed? -Estamos comprometidos em manter uma comunidade onde os usuários são livres para se expressarem e desafiarem as ideias uns dos outros, tanto ideias técnicas como outras. No entanto, essas discussões não promovem diálogos frutíferos quando as ideias são silenciadas porque membros da comunidade estão sendo constrangidos ou têm medo de falar. Isso significa que devemos ser sempre respeitosos e cordiais, e evitarmos atacar os outros com base no que eles são. Não toleramos comportamentos que cruzam os seguintes limites: +We are committed to maintaining a community where users are free to express themselves and challenge one another's ideas, both technical and otherwise. Such discussions, however, are unlikely to foster fruitful dialog when ideas are silenced because community members are being shouted down or are afraid to speak up. That means you should be respectful and civil at all times, and refrain from attacking others on the basis of who they are. We do not tolerate behavior that crosses the line into the following: -- #### Ameaças de violência Você não pode ameaçar terceiros ou usar o site para organizar, promover ou incitar atos de violência ou terrorismo no mundo real. Pense cuidadosamente sobre as palavras que você usa, as imagens que você publica, e até mesmo o software que você escreve, e como podem ser interpretados pelos outros. Mesmo que pretenda fazer uma piada, isso poderá ser interpretado de outra forma. Se você acha que outra pessoa *pode* interpretar o conteúdo que você postou como uma ameaça, ou como uma promoção da violência ou como terrorismo, pare. Não publique isso no GitHub. Em casos excepcionais, podemos relatar ameaças de violência às autoridades competentes, se acreditarmos que pode haver um risco genuíno de danos físicos ou uma ameaça à segurança pública. +- #### Threats of violence + You may not threaten violence towards others or use the site to organize, promote, or incite acts of real-world violence or terrorism. Think carefully about the words you use, the images you post, and even the software you write, and how they may be interpreted by others. Even if you mean something as a joke, it might not be received that way. If you think that someone else *might* interpret the content you post as a threat, or as promoting violence or terrorism, stop. Don't post it on GitHub. In extraordinary cases, we may report threats of violence to law enforcement if we think there may be a genuine risk of physical harm or a threat to public safety. -- #### Discurso de ódio e discriminação Embora não seja proibido abordar tópicos como idade, tamanho do corpo, deficiência física, etnia, identidade e expressão de gênero, nível de experiência, nacionalidade, aparência pessoal, raça, religião ou identidade e orientação sexual, não toleramos discursos que ataquem uma pessoa ou um grupo de pessoas com base em quem elas são. Perceba que quando abordados de forma agressiva ou insultante, estes (e outros) tópicos sensíveis podem fazer com que terceiros se sintam indesejados, ou até mesmo vulneráveis. Embora haja sempre o potencial para mal-entendidos, esperamos que os membros da nossa comunidade permaneçam respeitosos e cordiais quando discutirem temas sensíveis. +- #### Hate speech and discrimination + While it is not forbidden to broach topics such as age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation, we do not tolerate speech that attacks a person or group of people on the basis of who they are. Just realize that when approached in an aggressive or insulting manner, these (and other) sensitive topics can make others feel unwelcome, or perhaps even unsafe. While there's always the potential for misunderstandings, we expect our community members to remain respectful and civil when discussing sensitive topics. -- #### Bullying e assédio Não toleramos bullying ou assédio. Isto significa qualquer tipo de insulto ou intimidação habitual dirigida a uma pessoa ou grupo específico de pessoas. Em geral, se suas ações são indesejadas e você continua com o mesmo comportamento, há uma boa chance de você estar praticando bullying ou assédio. +- #### Bullying and harassment + We do not tolerate bullying or harassment. This means any habitual badgering or intimidation targeted at a specific person or group of people. In general, if your actions are unwanted and you continue to engage in them, there's a good chance you are headed into bullying or harassment territory. -- #### Interromper a experiência de outros usuários Ser parte de uma comunidade inclui reconhecer como seu comportamento afeta os outros e envolver-se em interações significativas e produtivas com as pessoas e a plataforma de que dependem. Não são permitidos comportamentos como postar repetidamente comentários que fogem ao tópico, abrir problemas ou pull requests vazios ou sem sentido ou usar qualquer recurso de outra plataforma de uma forma que perturbe continuamente a experiência de outros usuários. Embora incentivemos os mantenedores a moderar os seus próprios projetos individualmente, a equipe do GitHub pode ter uma ação restritiva contra contas que estão se envolvendo com esses tipos de comportamento. +- #### Disrupting the experience of other users + Being part of a community includes recognizing how your behavior affects others and engaging in meaningful and productive interactions with people and the platform they rely on. Behaviors such as repeatedly posting off-topic comments, opening empty or meaningless issues or pull requests, or using any other platform feature in a way that continually disrupts the experience of other users are not allowed. While we encourage maintainers to moderate their own projects on an individual basis, GitHub staff may take further restrictive action against accounts that are engaging in these types of behaviors. -- #### Personificação Você não pode personificar outra pessoa, copiando o seu avatar, postando conteúdo no seu endereço de e-mail e usando um nome de usuário similar ou passar-se por outra pessoa. A falsidade ideológica é uma forma de assédio. +- #### Impersonation + You may not impersonate another person by copying their avatar, posting content under their email address, using a similar username or otherwise posing as someone else. Impersonation is a form of harassment. -- #### Doxxing e invasão de privacidade Não poste informações pessoais de outras pessoas, como endereços de e-mail pessoais e privados, números de telefone, endereços físicos, números de cartão de crédito, números de previdência social/identidade nacional ou senhas. Dependendo do contexto, como no caso de intimidação ou assédio, podemos considerar que outras informações, como fotos ou vídeos que foram tirados ou distribuídos sem o consentimento do indivíduo, constituem invasão da privacidade, especialmente quando esse material representa um risco para a segurança do indivíduo. +- #### Doxxing and invasion of privacy + Don't post other people's personal information, such as personal, private email addresses, phone numbers, physical addresses, credit card numbers, Social Security/National Identity numbers, or passwords. Depending on the context, such as in the case of intimidation or harassment, we may consider other information, such as photos or videos that were taken or distributed without the subject's consent, to be an invasion of privacy, especially when such material presents a safety risk to the subject. -- #### Conteúdo sexualmente obsceno Não publique conteúdo pornográfico. Isto não significa que seja proibida qualquer nudez, ou qualquer código ou conteúdo relacionados com sexualidade. Reconhecemos que a sexualidade faz parte da vida e que o conteúdo sexual não pornográfico pode fazer parte do seu projeto, ou que possa ser apresentado para fins educacionais ou artísticos. Não permitimos conteúdos sexuais obscenos ou conteúdos que possam envolver a exploração ou a sexualização de menores. +- #### Sexually obscene content + Don’t post content that is pornographic. This does not mean that all nudity, or all code and content related to sexuality, is prohibited. We recognize that sexuality is a part of life and non-pornographic sexual content may be a part of your project, or may be presented for educational or artistic purposes. We do not allow obscene sexual content or content that may involve the exploitation or sexualization of minors. -- #### Conteúdo gratuitamente violento Não publique imagens, texto ou outro conteúdo violento sem um contexto razoável ou avisos. Embora muitas vezes não haja problema em incluir conteúdo violento em videogames, boletins e descrições de eventos históricos, não permitimos conteúdos violentos que sejam publicados indiscriminadamente, ou que sejam postados de uma forma que seja difícil evitar ter acesso a eles (como um avatar de perfil ou um comentário de problema). Um aviso claro ou uma declaração em outros contextos ajudam os usuários a tomarem uma decisão sobre se querem ou não se envolver com tal conteúdo. +- #### Gratuitously violent content + Don’t post violent images, text, or other content without reasonable context or warnings. While it's often okay to include violent content in video games, news reports, and descriptions of historical events, we do not allow violent content that is posted indiscriminately, or that is posted in a way that makes it difficult for other users to avoid (such as a profile avatar or an issue comment). A clear warning or disclaimer in other contexts helps users make an educated decision as to whether or not they want to engage with such content. -- #### Informação errada e desinformação Você não pode postar conteúdo que apresente uma visão distorcida da realidade, seja ela imprecisa ou falsa (informação errada) ou intencionalmente enganosa (desinformação) porque esse conteúdo provavelmente resultará em danos ao público ou interferirá em oportunidades justas e iguais para todos participarem da vida pública. Por exemplo, não permitimos conteúdo que possa colocar o bem-estar de grupos de pessoas em risco ou limitar sua capacidade de participar de uma sociedade livre e aberta. Incentivamos a participação ativa na expressão de ideias, perspectivas e experiências e não se pode estar em posição de disputar contas ou observações pessoais. Geralmente, permitimos paródias e sátiras alinhadas com nossas Políticas de Uso Aceitável, e consideramos o contexto importante na forma como as informações são recebidas e compreendidas; portanto, pode ser apropriado esclarecer suas intenções através de isenções de responsabilidade ou outros meios, bem como a fonte(s) de suas informações. +- #### Misinformation and disinformation + You may not post content that presents a distorted view of reality, whether it is inaccurate or false (misinformation) or is intentionally deceptive (disinformation) where such content is likely to result in harm to the public or to interfere with fair and equal opportunities for all to participate in public life. For example, we do not allow content that may put the well-being of groups of people at risk or limit their ability to take part in a free and open society. We encourage active participation in the expression of ideas, perspectives, and experiences and may not be in a position to dispute personal accounts or observations. We generally allow parody and satire that is in line with our Acceptable Use Polices, and we consider context to be important in how information is received and understood; therefore, it may be appropriate to clarify your intentions via disclaimers or other means, as well as the source(s) of your information. -- #### Active malware or exploits Being part of a community includes not taking advantage of other members of the community. Não permitimos que ninguém utilize a nossa plataforma em apoio direto de ataques ilegais que causam danos técnicos, como usar o GitHub como um meio de fornecer executáveis maliciosos ou como infraestrutura de ataque, por exemplo, organizando ataques de negação serviço ou gerenciando servidores de comando e controle. Prejuízos técnicos significam excesso de recursos, danos físicos, tempo de inatividade, negação de serviço ou perda de dados, sem qualquer propósito implícito ou explícito de dupla utilização antes de ocorrer o abuso. +- #### Active malware or exploits + Being part of a community includes not taking advantage of other members of the community. We do not allow anyone to use our platform in direct support of unlawful attacks that cause technical harms, such as using GitHub as a means to deliver malicious executables or as attack infrastructure, for example by organizing denial of service attacks or managing command and control servers. Technical harms means overconsumption of resources, physical damage, downtime, denial of service, or data loss, with no implicit or explicit dual-use purpose prior to the abuse occurring. - Observe que o GitHub permite conteúdo de dupla utilização e é compatível com a postagem de conteúdo usado para pesquisa em vulnerabilidades, malware, ou exploração, uma vez que a publicação e distribuição de tal conteúdo tem valor educacional e proporciona um benefício líquido para a comunidade de segurança. Nós supomos uma intenção positiva e a utilização destes projetos para promover e gerar melhoria do ecossistema. + Note that GitHub allows dual-use content and supports the posting of content that is used for research into vulnerabilities, malware, or exploits, as the publication and distribution of such content has educational value and provides a net benefit to the security community. We assume positive intention and use of these projects to promote and drive improvements across the ecosystem. - Em casos raros de abuso muito generalizado de conteúdo de dupla utilização, podemos restringir o acesso a essa instância específica do conteúdo para interromper um ataque ilegal ou uma campanha de malware que aproveita a plataforma GitHub como um exploit ou malware CDN. Na maioria dessas instâncias, a restrição assume a forma de colocar o conteúdo por trás da autenticação. No entanto, como opção de último recurso, pode envolver a desabilitação do acesso ou a remoção total quando isso não for possível (p. ex., quando postado como um gist). Também entraremos em contato com os proprietários dos projetos sobre restrições implementadas sempre que possível. + In rare cases of very widespread abuse of dual-use content, we may restrict access to that specific instance of the content to disrupt an ongoing unlawful attack or malware campaign that is leveraging the GitHub platform as an exploit or malware CDN. In most of these instances, restriction takes the form of putting the content behind authentication, but may, as an option of last resort, involve disabling access or full removal where this is not possible (e.g. when posted as a gist). We will also contact the project owners about restrictions put in place where possible. - As restrições são temporárias quando possíveis e não servem o propósito de eliminar ou restringir qualquer conteúdo específico de dupla utilização ou cópias desse conteúdo da plataforma. Embora procuremos fazer desses raros casos de restrição um processo de colaboração com os proprietários do projeto, se você sentir que seu conteúdo foi restrito indevidamente, temos um [processo de recursos](#appeal-and-reinstatement) em vigor. + Restrictions are temporary where feasible, and do not serve the purpose of purging or restricting any specific dual-use content, or copies of that content, from the platform in perpetuity. While we aim to make these rare cases of restriction a collaborative process with project owners, if you do feel your content was unduly restricted, we have an [appeals process](#appeal-and-reinstatement) in place. - Para facilitar um caminho para a resolução de abuso com os próprios mantenedores do projeto, antes da escalada aos relatórios de abuso do GitHub, recomendamos, embora não exigimos, que os proprietários do repositório sigam as etapas a seguir ao postar conteúdo de pesquisa de segurança potencialmente prejudicial: + To facilitate a path to abuse resolution with project maintainers themselves, prior to escalation to GitHub abuse reports, we recommend, but do not require, that repository owners take the following steps when posting potentially harmful security research content: - * Identifique e descreva claramente qualquer conteúdo potencialmente nocivo em uma isenção de responsabilidade no arquivo README.md do projeto ou comentários do código-fonte. - * Forneça um método de contato preferido para qualquer consulta referente ao abuso de terceiros por meio de um arquivo SECURITY.md no repositório (por exemplo, "Crie um problema neste repositório para quaisquer dúvidas ou preocupações"). Esse método de contato permite que terceiros entrem em contato com os mantenedores do projeto diretamente e possivelmente resolvam as questões sem a necessidade de abrir relatórios de abuso. + * Clearly identify and describe any potentially harmful content in a disclaimer in the project’s README.md file or source code comments. + * Provide a preferred contact method for any 3rd party abuse inquiries through a SECURITY.md file in the repository (e.g. "Please create an issue on this repository for any questions or concerns"). Such a contact method allows 3rd parties to reach out to project maintainers directly and potentially resolve concerns without the need to file abuse reports. - *O GitHub considera o registro npm como uma plataforma usada principalmente para o uso do código em tempo de execução e não para pesquisas.* + *GitHub considers the npm registry to be a platform used primarily for installation and run-time use of code, and not for research.* -## O que acontece se alguém violar as regras? +## What happens if someone breaks the rules? -Há uma variedade de ações que podemos tomar quando um usuário reportar comportamento ou conteúdo inapropriado. Normalmente, depende das circunstâncias exatas de um caso específico. Reconhecemos que, por vezes, as pessoas podem dizer ou fazer coisas inapropriadas por várias razões. Talvez não tenha percebido a forma como suas palavras seriam entendidas. Ou talvez apenas deixam que suas emoções o conduzam. É claro que, muitas vezes, há pessoas que querem apenas fazer spam ou causar problemas. +There are a variety of actions that we may take when a user reports inappropriate behavior or content. It usually depends on the exact circumstances of a particular case. We recognize that sometimes people may say or do inappropriate things for any number of reasons. Perhaps they did not realize how their words would be perceived. Or maybe they just let their emotions get the best of them. Of course, sometimes, there are folks who just want to spam or cause trouble. -Cada caso requer uma abordagem diferente e tentamos adaptar a nossa resposta às necessidades da situação que foi comunicada. Vamos avaliar denúncias de abuso caso a caso. Para cada situação, teremos uma equipe diversificada investigando o conteúdo e os fatos envolvidos e responderemos de forma apropriada utilizando estas orientações para guiar nossa decisão. +Each case requires a different approach, and we try to tailor our response to meet the needs of the situation that has been reported. We'll review each abuse report on a case-by-case basis. In each case, we will have a diverse team investigate the content and surrounding facts and respond as appropriate, using these guidelines to guide our decision. -Ações que podemos fazer em resposta a uma denúncia de abuso incluem, mas não estão limitados a: +Actions we may take in response to an abuse report include but are not limited to: -* Remoção de Conteúdo -* Bloqueio de Conteúdo -* Suspensão de Conta -* Encerramento da Conta +* Content Removal +* Content Blocking +* Account Suspension +* Account Termination -## Apelação e reinstauração +## Appeal and Reinstatement -Em alguns casos, pode haver uma base para reverter uma ação, por exemplo, com base em informações adicionais fornecidas por um usuário ou quando um usuário tiver resolvido a violação e concordado em seguir nossas Políticas de Uso Aceitáveis desse momento em diante. Se você deseja recorrer de uma ação de execução, entre em contato com o [suporte](https://support.github.com/contact?tags=docs-policy). +In some cases there may be a basis to reverse an action, for example, based on additional information a user provided, or where a user has addressed the violation and agreed to abide by our Acceptable Use Policies moving forward. If you wish to appeal an enforcement action, please contact [support](https://support.github.com/contact?tags=docs-policy). -## Avisos Legais +## Legal Notices -Colocamos essas Diretrizes da Comunidade em domínio público para que qualquer pessoa use, reutilize, adapte, ou seja o que for, nos termos de [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). +We dedicate these Community Guidelines to the public domain for anyone to use, reuse, adapt, or whatever, under the terms of [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). -Estas são apenas diretrizes; elas não modificam nossos [Termos de Serviço](/articles/github-terms-of-service/) e não pretendem ser uma lista completa. O GitHub detém total critério conforme os [Termos de Serviço](/articles/github-terms-of-service/#c-acceptable-use) para remover qualquer conteúdo ou cancelar quaisquer contas por atividade que viole os Termos de Uso Aceitável. Estas diretrizes descrevem quando iremos exercer esse critério. +These are only guidelines; they do not modify our [Terms of Service](/articles/github-terms-of-service/) and are not intended to be a complete list. GitHub retains full discretion under the [Terms of Service](/articles/github-terms-of-service/#c-acceptable-use) to remove any content or terminate any accounts for activity that violates our Terms on Acceptable Use. These guidelines describe when we will exercise that discretion. diff --git a/translations/pt-BR/content/github/site-policy/github-logo-policy.md b/translations/pt-BR/content/github/site-policy/github-logo-policy.md index 08e9b5c72f..ec874245e8 100644 --- a/translations/pt-BR/content/github/site-policy/github-logo-policy.md +++ b/translations/pt-BR/content/github/site-policy/github-logo-policy.md @@ -1,8 +1,8 @@ --- -title: Política de logo do GitHub +title: GitHub Logo Policy redirect_from: - - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know/ - - /articles/using-an-octocat-to-link-to-github-or-your-github-profile/ + - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know + - /articles/using-an-octocat-to-link-to-github-or-your-github-profile - /articles/github-logo-policy versions: fpt: '*' @@ -11,6 +11,6 @@ topics: - Legal --- -Você pode adicionar as logos {% data variables.product.prodname_dotcom %} em seu website ou em aplicativos de terceiros em alguns casos. Para mais informações e diretrizes específicas sobre o uso da logomarca, visite a [{% data variables.product.prodname_dotcom %} página de Logos e Usos](https://github.com/logos). +You can add {% data variables.product.prodname_dotcom %} logos to your website or third-party application in some scenarios. For more information and specific guidelines on logo usage, see the [{% data variables.product.prodname_dotcom %} Logos and Usage page](https://github.com/logos). -Você também pode usar um octocat como seu avatar pessoal ou em seu website para linkar para sua {% data variables.product.prodname_dotcom %} conta, mas não para sua empresa ou para um produto que você esteja criando. {% data variables.product.prodname_dotcom %} possui uma vasta coleção de octocats no [Octodex](https://octodex.github.com/). Para mais informações de como usar os octocats do Octodex, veja as [Perguntas Frequentes Octodex](https://octodex.github.com/faq/). +You can also use an octocat as your personal avatar or on your website to link to your {% data variables.product.prodname_dotcom %} account, but not for your company or a product you're building. {% data variables.product.prodname_dotcom %} has an extensive collection of octocats in the [Octodex](https://octodex.github.com/). For more information on using the octocats from the Octodex, see the [Octodex FAQ](https://octodex.github.com/faq/). diff --git a/translations/pt-BR/content/github/site-policy/github-privacy-statement.md b/translations/pt-BR/content/github/site-policy/github-privacy-statement.md index 857fe728ef..a9ce688a7e 100644 --- a/translations/pt-BR/content/github/site-policy/github-privacy-statement.md +++ b/translations/pt-BR/content/github/site-policy/github-privacy-statement.md @@ -1,12 +1,12 @@ --- -title: Declaração de Privacidade do GitHub +title: GitHub Privacy Statement redirect_from: - - /privacy/ - - /privacy-policy/ - - /privacy-statement/ - - /github-privacy-policy/ - - /articles/github-privacy-policy/ - - /articles/github-privacy-statement/ + - /privacy + - /privacy-policy + - /privacy-statement + - /github-privacy-policy + - /articles/github-privacy-policy + - /articles/github-privacy-statement versions: fpt: '*' topics: @@ -14,329 +14,329 @@ topics: - Legal --- -Data de vigência: 19 de dezembro de 2020 +Effective date: December 19, 2020 -Agradecemos por confiar seu código-fonte, seus projetos e suas informações pessoais à GitHub Inc. (“GitHub” ou “nós”). Manter suas informações pessoais em segurança é uma responsabilidade que levamos a sério, e queremos mostrar como fazemos esse trabalho. +Thanks for entrusting GitHub Inc. (“GitHub”, “we”) with your source code, your projects, and your personal information. Holding on to your private information is a serious responsibility, and we want you to know how we're handling it. -Todos os termos em maiúsculas estão definidos nos [Termos de Serviço do GitHub](/github/site-policy/github-terms-of-service), salvo observações em contrário. +All capitalized terms have their definition in [GitHub’s Terms of Service](/github/site-policy/github-terms-of-service), unless otherwise noted here. -## Resumo +## The short version -Usamos suas informações pessoais conforme descrito nesta Declaração de Privacidade. Não importa onde estiver, onde morar, ou qual for a sua cidadania, fornecemos os mesmos elevados padrões de proteção da privacidade a todos os nossos usuários em todo o mundo, independentemente do seu país de origem ou localização. +We use your personal information as this Privacy Statement describes. No matter where you are, where you live, or what your citizenship is, we provide the same high standard of privacy protection to all our users around the world, regardless of their country of origin or location. -Esta é uma versão resumida das nossas diretrizes. Para obter as informações completas, continue a leitura desta página. +Of course, the short version and the Summary below don't tell you everything, so please read on for more details. -## Sumário +## Summary -| Seção | Conteúdo | -| ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Que tipo de informação o GitHub coleta](#what-information-github-collects) | O GitHub coleta informações diretamente de você para fins de registro, pagamento, transações e perfil de usuário. Também coletamos automaticamente cookies e informações do dispositivo das suas informações de uso, sujeito, quando necessário, ao seu consentimento. O GitHub também pode coletar Informações Pessoais de Usuário de terceiros. Coletamos somente a quantidade mínima de informações pessoais necessárias de você, a menos que você decida compartilhar mais informações. | -| [Que tipo de informação o GitHub _não_ coleta](#what-information-github-does-not-collect) | Não coletamos informações de crianças com menos de 13 anos nem coletamos [Informações Pessoais Confidenciais](https://gdpr-info.eu/art-9-gdpr/). | -| [Como o GitHub usa suas informações](#how-github-uses-your-information) | Nesta seção, descrevemos as formas como usamos suas informações, inclusive para fornecer o Serviço, para nos comunicarmos com você, para fins de segurança e conformidade, e para melhorar nosso Serviço. A seção também descreve a base jurídica na qual processamos suas informações quando tal processamento for exigido por lei. | -| [Como compartilhamos as informações obtidas](#how-we-share-the-information-we-collect) | Podemos compartilhar suas informações com terceiros diante de uma das seguintes circunstâncias: com seu consentimento, com nossos prestadores de serviços para fins de segurança, para cumprir as nossas obrigações legais, ou quando houver mudança de controle ou venda de entidades corporativas ou unidades de negócios. Não vendemos suas informações pessoais e não hospedamos anúncios no GitHub. Consulte uma lista de prestadores de serviços que acessam suas informações. | -| [Outras informações importantes](#other-important-information) | Oferecemos informações adicionais específicas relacionadas a conteúdo de repositórios, informações públicas e Organizações no GitHub. | -| [Serviços adicionais](#additional-services) | Oferecemos informações sobre ofertas de serviço adicionais, inclusive aplicativos de terceiros, GitHub Pages e aplicativos do GitHub. | -| [Como você pode acessar e controlar as informações obtidas](#how-you-can-access-and-control-the-information-we-collect) | Propomos algumas medidas para você acessar, alterar ou excluir suas informações pessoais. | -| [Uso de cookies e rastreamento](#our-use-of-cookies-and-tracking) | Nós só usamos cookies estritamente necessários para fornecer, proteger e melhorar nosso serviço. Temos uma página que torna o processo bastante transparente. Veja mais detalhes nesta seção. | -| [Como o GitHub protege suas informações](#how-github-secures-your-information) | Tomamos todas as medidas razoavelmente necessárias para proteger a confidencialidade, a integridade e a disponibilidade das suas informações pessoais no GitHub e para proteger a resiliência dos nossos servidores. | -| [Práticas globais de privacidade do GitHub](#githubs-global-privacy-practices) | Fornecemos os mesmos altos padrões de proteção de privacidade a todos os nossos usuários em todo o mundo. | -| [Nossa comunicação com você](#how-we-communicate-with-you) | Nossa comunicação com você ocorrerá por e-mail. É possível controlar os nossos meios de contato com você nas configurações da sua conta. | -| [Resolução de conflitos](#resolving-complaints) | Na hipótese improvável de sermos incapazes de resolver um problema de privacidade de dados de forma rápida e detalhada, indicaremos um caminho para a resolução de litígios. | -| [Mudanças nesta Declaração de Privacidade](#changes-to-our-privacy-statement) | Você receberá notificações sobre mudanças concretas nesta Declaração de Privacidade 30 dias antes de tais mudanças entrarem em vigor. Também é possível acompanhar as mudanças no nosso repositório da Política do Site. | -| [Licença](#license) | Esta Declaração de Privacidade é licenciada sob a [licença Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/). | -| [Contato com a GitHub](#contacting-github) | Entre em contato em caso de dúvidas sobre a nossa Declaração de Privacidade. | -| [Traduções](#translations) | Acesse os links para consultar algumas traduções da Declaração de Privacidade. | +| Section | What can you find there? | +|---|---| +| [What information GitHub collects](#what-information-github-collects) | GitHub collects information directly from you for your registration, payment, transactions, and user profile. We also automatically collect from you your usage information, cookies, and device information, subject, where necessary, to your consent. GitHub may also collect User Personal Information from third parties. We only collect the minimum amount of personal information necessary from you, unless you choose to provide more. | +| [What information GitHub does _not_ collect](#what-information-github-does-not-collect) | We don’t knowingly collect information from children under 13, and we don’t collect [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/). | +| [How GitHub uses your information](#how-github-uses-your-information) | In this section, we describe the ways in which we use your information, including to provide you the Service, to communicate with you, for security and compliance purposes, and to improve our Service. We also describe the legal basis upon which we process your information, where legally required. | +| [How we share the information we collect](#how-we-share-the-information-we-collect) | We may share your information with third parties under one of the following circumstances: with your consent, with our service providers, for security purposes, to comply with our legal obligations, or when there is a change of control or sale of corporate entities or business units. We do not sell your personal information and we do not host advertising on GitHub. You can see a list of the service providers that access your information. | +| [Other important information](#other-important-information) | We provide additional information specific to repository contents, public information, and Organizations on GitHub. | +| [Additional services](#additional-services) | We provide information about additional service offerings, including third-party applications, GitHub Pages, and GitHub applications. | +| [How you can access and control the information we collect](#how-you-can-access-and-control-the-information-we-collect) | We provide ways for you to access, alter, or delete your personal information. | +| [Our use of cookies and tracking](#our-use-of-cookies-and-tracking) | We only use strictly necessary cookies to provide, secure and improve our service. We offer a page that makes this very transparent. Please see this section for more information. | +| [How GitHub secures your information](#how-github-secures-your-information) | We take all measures reasonably necessary to protect the confidentiality, integrity, and availability of your personal information on GitHub and to protect the resilience of our servers. | +| [GitHub's global privacy practices](#githubs-global-privacy-practices) | We provide the same high standard of privacy protection to all our users around the world. | +| [How we communicate with you](#how-we-communicate-with-you) | We communicate with you by email. You can control the way we contact you in your account settings, or by contacting us. | +| [Resolving complaints](#resolving-complaints) | In the unlikely event that we are unable to resolve a privacy concern quickly and thoroughly, we provide a path of dispute resolution. | +| [Changes to our Privacy Statement](#changes-to-our-privacy-statement) | We notify you of material changes to this Privacy Statement 30 days before any such changes become effective. You may also track changes in our Site Policy repository. | +| [License](#license) | This Privacy Statement is licensed under the [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). | +| [Contacting GitHub](#contacting-github) | Please feel free to contact us if you have questions about our Privacy Statement. | +| [Translations](#translations) | We provide links to some translations of the Privacy Statement. | -## Declaração de Privacidade do GitHub +## GitHub Privacy Statement -## Que tipo de informação o GitHub coleta +## What information GitHub collects -"**Informações Pessoais de Usuário**" consistem em qualquer informação pessoal sobre um dos nossos Usuários, podendo identificá-los pessoalmente ou estarem vinculadas a eles. Informações como nome de usuário e senha, endereço de e-mail, nome real, protocolo Internet (endereço IP) e foto são exemplos de "Informações Pessoais de Usuário". +"**User Personal Information**" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information such as a username and password, an email address, a real name, an Internet protocol (IP) address, and a photograph are examples of “User Personal Information.” -As Informações Pessoais de Usuário não incluem informações agregadas nem informações não pessoais identificáveis que não identifiquem o Usuário ou que não possam ser razoavelmente vinculadas ou relacionadas ao Usuário. Podemos usar tais informações agregadas e não pessoais identificáveis para fins de pesquisa e para operar, analisar, melhorar e otimizar nossos Site e Serviços. +User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. We may use such aggregated, non-personally identifying information for research purposes and to operate, analyze, improve, and optimize our Website and Service. -### Informações enviadas pelos usuários diretamente ao GitHub +### Information users provide directly to GitHub -#### Informações de registro -Solicitaremos algumas informações básicas no momento de criação da conta. Quando você criar seu próprio nome de usuário e senha, solicitaremos um endereço de e-mail válido. +#### Registration information +We require some basic information at the time of account creation. When you create your own username and password, we ask you for a valid email address. -#### Informações de pagamento -Se você fizer um registro de Conta paga conosco, enviar fundos pelo Programa de Patrocinadores do GitHub ou comprar um aplicativo no GitHub Marketplace, coletaremos seu nome completo, endereço e informações do PayPal ou do cartão de crédito. Observe que o GitHub não processa ou armazena suas informações de cartão de crédito ou do PayPal, mas nosso processador de pagamento de terceiros o fará. +#### Payment information +If you sign on to a paid Account with us, send funds through the GitHub Sponsors Program, or buy an application on GitHub Marketplace, we collect your full name, address, and credit card information or PayPal information. Please note, GitHub does not process or store your credit card information or PayPal information, but our third-party payment processor does. -Se você listar e vender um aplicativo no [GitHub Marketplace](https://github.com/marketplace), precisaremos das suas informações bancárias. Se você angariar fundos pelo [Programa de Patrocinadores do GitHub](https://github.com/sponsors), solicitaremos algumas [informações adicionais](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) no processo de registro para você participar e receber fundos por esses serviços e para fins de conformidade. +If you list and sell an application on [GitHub Marketplace](https://github.com/marketplace), we require your banking information. If you raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we require some [additional information](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) through the registration process for you to participate in and receive funds through those services and for compliance purposes. -#### Informações do perfil -Você pode optar por nos enviar mais informações para o perfil da sua Conta, como nome completo, avatar com foto, biografia, localidade, empresa e URL para um site de terceiros. Essas informações podem incluir Informações Pessoais de Usuário. Observe que as suas informações de perfil podem ficar visíveis para outros Usuários do nosso Serviço. +#### Profile information +You may choose to give us more information for your Account profile, such as your full name, an avatar which may include a photograph, your biography, your location, your company, and a URL to a third-party website. This information may include User Personal Information. Please note that your profile information may be visible to other Users of our Service. -### Informações que o GitHub coleta automaticamente do seu uso do Serviço +### Information GitHub automatically collects from your use of the Service -#### Informações da transação -Se você tiver uma Conta paga conosco, se vender um aplicativo no [GitHub Marketplace](https://github.com/marketplace) ou se angariar fundos pelo [Programa de Patrocinadores do GitHub](https://github.com/sponsors), coletaremos automaticamente determinadas informações sobre suas transações no Serviço, como data, hora e quantia cobrada. +#### Transactional information +If you have a paid Account with us, sell an application listed on [GitHub Marketplace](https://github.com/marketplace), or raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we automatically collect certain information about your transactions on the Service, such as the date, time, and amount charged. -#### Informações de uso -Se você acessar nosso Serviço ou Site, coletaremos automaticamente as mesmas informações básicas coletadas pela maioria dos serviços, sujeitando-nos ao seu consentimento, quando necessário. A coleta inclui informações sobre o seu uso do Serviço, como as páginas que você visualiza, o site referenciado, seu endereço IP, informações da sessão, e a data e hora de cada solicitação. Essas informações são obtidas igualmente de todos os visitantes do Site, independentemente de terem Conta ou não. Esses dados podem incluir Informações Pessoais de Usuário. +#### Usage information +If you're accessing our Service or Website, we automatically collect the same basic information that most services collect, subject, where necessary, to your consent. This includes information about how you use the Service, such as the pages you view, the referring site, your IP address and session information, and the date and time of each request. This is information we collect from every visitor to the Website, whether they have an Account or not. This information may include User Personal information. #### Cookies -Conforme descrito abaixo, coletamos informações automaticamente dos cookies (como ID de cookie e configurações) para manter você conectado, lembrar suas preferências, identificar você e o seu dispositivo e para analisar o seu uso dos nossos serviços. +As further described below, we automatically collect information from cookies (such as cookie ID and settings) to keep you logged in, to remember your preferences, to identify you and your device and to analyze your use of our service. -#### Informações do dispositivo -Podemos coletar determinadas informações sobre o seu dispositivo, como endereço IP, dados de navegador ou aplicativo cliente, preferências de idioma, sistema operacional, versão de aplicativo, tipo e ID de dispositivo, e modelo e fabricante de dispositivo. Esses dados podem incluir Informações Pessoais de Usuário. +#### Device information +We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. -### Informações coletadas de terceiros +### Information we collect from third parties -O GitHub pode coletar Informações Pessoais de Usuário de terceiros. Por exemplo, isso pode acontecer caso você se inscreva em treinamentos ou solicite informações sobre o GitHub via um de nossos fornecedores, parceiros ou afiliados. GitHub não compra Informações Pessoais de Usuário de agenciadores de terceiros. +GitHub may collect User Personal Information from third parties. For example, this may happen if you sign up for training or to receive information about GitHub from one of our vendors, partners, or affiliates. GitHub does not purchase User Personal Information from third-party data brokers. -## Que tipo de informação o GitHub não coleta +## What information GitHub does not collect -Não coletamos "**[Informações Pessoais Confidenciais](https://gdpr-info.eu/art-9-gdpr/)**", como dados pessoais que revelem origem racial ou étnica; opiniões políticas, crenças religiosas ou filosóficas, ou filiação sindical; processamento de dados genéticos ou biométricos para identificar uma pessoa física de forma inequívoca; dados relativos à saúde, à orientação ou à vida sexual de uma pessoa física. Se decidir armazenar quaisquer Informações Pessoais Confidenciais em nossos servidores, você será responsável pela conformidade com quaisquer controles regulamentares sobre tais informações. +We do not intentionally collect “**[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)**”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. If you choose to store any Sensitive Personal Information on our servers, you are responsible for complying with any regulatory controls regarding that data. -Se você é criança e tem menos de 13 anos de idade, talvez você não tenha uma Conta no GitHub. O GitHub não coleta informações nem direciona qualquer conteúdo especificamente a crianças com menos de 13 anos. Se descobrirmos ou tivermos motivos para suspeitar de que você é Usuário e tem menos de 13 anos de idade, teremos que encerrar a sua Conta. Não pretendemos desmotivar o seu aprendizado na área de programação, mas devemos cumprir as regras. Consulte nossos [Termos de Serviço](/github/site-policy/github-terms-of-service) para mais informações sobre o encerramento da Conta. Outros países podem ter limites de idade diferentes. Se estiver abaixo da idade mínima necessária para dar consentimento sobre a coleta de dados no seu país, você não poderá ter uma Conta no GitHub. +If you are a child under the age of 13, you may not have an Account on GitHub. GitHub does not knowingly collect information from or direct any of our content specifically to children under 13. If we learn or have reason to suspect that you are a User who is under the age of 13, we will have to close your Account. We don't want to discourage you from learning to code, but those are the rules. Please see our [Terms of Service](/github/site-policy/github-terms-of-service) for information about Account termination. Different countries may have different minimum age limits, and if you are below the minimum age for providing consent for data collection in your country, you may not have an Account on GitHub. -Não coletamos intencionalmente as Informações Pessoais de Usuário **armazenadas em seus repositórios** ou em outros métodos de entrada de conteúdo de forma livre. Toda e qualquer informação pessoal que conste no repositório do usuário é de responsabilidade do proprietário do repositório. +We do not intentionally collect User Personal Information that is **stored in your repositories** or other free-form content inputs. Any personal information within a user's repository is the responsibility of the repository owner. -## Como o GitHub usa suas informações +## How GitHub uses your information -Podemos usar as suas informações das seguintes maneiras: -- Usamos suas [Informações de Registro](#registration-information) para criar sua conta e prestar o Serviço a você. -- Usamos suas [Informações de Pagamento](#payment-information) para prestar o serviço de Conta Paga, o serviço do Marketplace, o Programa de Patrocinadores ou qualquer outro serviço pago que você solicitar no GitHub. -- Usamos suas Informações Pessoais de Usuário, especificamente seu nome de usuário, para identificar você no GitHub. -- Usamos suas [Informações de Perfil](#profile-information) para preencher o perfil da sua Conta e compartilhar esse perfil com outros usuários, se você nos solicitar. -- Usaremos seu endereço de e-mail para nos comunicar com você, mediante o seu consentimento, e **somente para os fins que você especificar**. Consulte a seção sobre [comunicação por e-mail](#how-we-communicate-with-you) para saber mais. -- Usamos Informações Pessoais de Usuário para responder a solicitações de suporte. -- Usamos Informações Pessoais de Usuário e outros dados para fazer recomendações a você, como sugestões de projetos que talvez você queira acompanhar ou contribuir. Usamos o seu comportamento público no GitHub (como os projetos que você marca como favoritos) para determinar seus interesses de programação e recomendar projetos afins. Essas recomendações são decisões automatizadas, mas não têm qualquer impacto jurídico nos seus direitos. -- Podemos usar Informações Pessoais de Usuário para convidar você a participar de pesquisas, programas beta ou outros projetos de pesquisa, sujeitos ao seu consentimento, quando necessário. -- Usamos as [Informações de Uso](#usage-information) e as [Informações do Dispositivo](#device-information) para entender como nossos usuários aproveitam o GitHub e para melhorar nossos Site e Serviços. -- Se necessário, podemos usar suas Informações Pessoais de Usuário para fins de segurança ou para investigar possíveis fraudes ou tentativas de violar o GitHub ou nossos Usuários. -- Podemos usar suas Informações Pessoais de Usuário para cumprir com nossas obrigações legais, proteger nossa propriedade intelectual e impor nossos [Termos de Serviço](/github/site-policy/github-terms-of-service). -- Limitamos o nosso uso das Informações Pessoais de Usuário aos propósitos listados nesta Declaração de Privacidade. Se precisarmos usar suas Informações Pessoais de Usuário para outros fins, pediremos sua permissão com antecedência. No seu [perfil de usuário](https://github.com/settings/admin), você sempre poderá ver quais informações coletamos, o uso que fazemos delas e as permissões concedidas. +We may use your information for the following purposes: +- We use your [Registration Information](#registration-information) to create your account, and to provide you the Service. +- We use your [Payment Information](#payment-information) to provide you with the Paid Account service, the Marketplace service, the Sponsors Program, or any other GitHub paid service you request. +- We use your User Personal Information, specifically your username, to identify you on GitHub. +- We use your [Profile Information](#profile-information) to fill out your Account profile and to share that profile with other users if you ask us to. +- We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. Please see our section on [email communication](#how-we-communicate-with-you) for more information. +- We use User Personal Information to respond to support requests. +- We use User Personal Information and other data to make recommendations for you, such as to suggest projects you may want to follow or contribute to. We learn from your public behavior on GitHub—such as the projects you star—to determine your coding interests, and we recommend similar projects. These recommendations are automated decisions, but they have no legal impact on your rights. +- We may use User Personal Information to invite you to take part in surveys, beta programs, or other research projects, subject, where necessary, to your consent . +- We use [Usage Information](#usage-information) and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and Service. +- We may use your User Personal Information if it is necessary for security purposes or to investigate possible fraud or attempts to harm GitHub or our Users. +- We may use your User Personal Information to comply with our legal obligations, protect our intellectual property, and enforce our [Terms of Service](/github/site-policy/github-terms-of-service). +- We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. You can always see what information we have, how we're using it, and what permissions you have given us in your [user profile](https://github.com/settings/admin). -### Bases jurídicas para o processamento de informações +### Our legal bases for processing information -Na medida em que nosso processamento das suas Informações Pessoais de Usuário está sujeito a determinadas leis internacionais, inclusive, entre outras, o Regulamento Geral de Proteção de Dados (RGPD/GDPR) da União Europeia, o GitHub é obrigado a informar você sobre a base jurídica em que processamos Informações Pessoais de Usuário. O GitHub processa as Informações Pessoais de Usuário conforme as seguintes bases legais: +To the extent that our processing of your User Personal Information is subject to certain international laws (including, but not limited to, the European Union's General Data Protection Regulation (GDPR)), GitHub is required to notify you about the legal basis on which we process User Personal Information. GitHub processes User Personal Information on the following legal bases: -- Execução contratual: - * Ao criar uma conta no GitHub, você envia suas [Informações de Registro](#registration-information). Solicitamos esses dados para que você celebre o contrato dos Termos de Serviço conosco e processamos tais dados com base na execução desse contrato. Também usamos outras bases para processar seu nome de usuário e endereço de e-mail, conforme descrito a seguir. - * Se você tiver uma conta paga conosco, coletaremos e processaremos [Informações de Pagamento](#payment-information) com base na execução desse contrato. - * Quando você comprar ou vender um aplicativo do nosso Marketplace, ou quando enviar ou receber fundos pelo Programa de Patrocinadores do GitHub, processaremos suas [Informações de Pagamento](#payment-information) e outros elementos adicionais para fins de execução do contrato referente a esses serviços. -- Consentimento: - * Recorreremos ao seu consentimento para usar suas Informações Pessoais de Usuário nas seguintes circunstâncias: quando você preencher as informações do seu [perfil de usuário](https://github.com/settings/admin); quando você decidir participar de um treinamento, projeto de pesquisa, programa beta ou pesquisa do GitHub; para fins de marketing, quando aplicável. Todas essas Informações Pessoais de Usuário são inteiramente opcionais, e você poderá acessar, modificar e excluir tais informações a qualquer momento. Embora não possa excluir totalmente seu endereço de e-mail, você pode torná-lo privado e poderá retirar seu consentimento a qualquer momento. -- Interesses legítimos: - * Em geral, nossos outros tipos de processamento de Informações Pessoais de Usuário são necessários para os nossos interesses legítimos, como para fins de conformidade jurídica, segurança ou manutenção contínua de confidencialidade, integridade, disponibilidade e resiliência dos sistemas, Site e Serviços do GitHub. -- Para solicitar a exclusão dos dados que processamos com base em consentimento ou para se objetar ao nosso processamento de informações pessoais, use o nosso [formulário de contato de Privacidade](https://support.github.com/contact/privacy). +- Contract Performance: + * When you create a GitHub Account, you provide your [Registration Information](#registration-information). We require this information for you to enter into the Terms of Service agreement with us, and we process that information on the basis of performing that contract. We also process your username and email address on other legal bases, as described below. + * If you have a paid Account with us, we collect and process additional [Payment Information](#payment-information) on the basis of performing that contract. + * When you buy or sell an application listed on our Marketplace or, when you send or receive funds through the GitHub Sponsors Program, we process [Payment Information](#payment-information) and additional elements in order to perform the contract that applies to those services. +- Consent: + * We rely on your consent to use your User Personal Information under the following circumstances: when you fill out the information in your [user profile](https://github.com/settings/admin); when you decide to participate in a GitHub training, research project, beta program, or survey; and for marketing purposes, where applicable. All of this User Personal Information is entirely optional, and you have the ability to access, modify, and delete it at any time. While you are not able to delete your email address entirely, you can make it private. You may withdraw your consent at any time. +- Legitimate Interests: + * Generally, the remainder of the processing of User Personal Information we perform is necessary for the purposes of our legitimate interest, for example, for legal compliance purposes, security purposes, or to maintain ongoing confidentiality, integrity, availability, and resilience of GitHub’s systems, Website, and Service. +- If you would like to request deletion of data we process on the basis of consent or if you object to our processing of personal information, please use our [Privacy contact form](https://support.github.com/contact/privacy). -## Como compartilhamos as informações obtidas +## How we share the information we collect -Podemos compartilhar suas Informações Pessoais de Usuário com terceiros em uma das seguintes circunstâncias: +We may share your User Personal Information with third parties under one of the following circumstances: -### Com o seu consentimento -Com o seu consentimento, compartilhamos suas Informações Pessoais de Usuário, após deixarmos você ciente de quais informações serão compartilhadas, com quem e por quê. Por exemplo, se você comprar um aplicativo do nosso Marketplace, compartilharemos seu nome de usuário para permitir que o desenvolvedor do aplicativo preste os serviços. Além disso, por meio de suas ações no GitHub, você poderá indicar a sua disposição em compartilhar suas Informações Pessoais de Usuário. Por exemplo, ao ingressar em uma Organização, você indica que o proprietário da Organização poderá visualizar a sua atividade no log de acesso da Organização. +### With your consent +We share your User Personal Information, if you consent, after letting you know what information will be shared, with whom, and why. For example, if you purchase an application listed on our Marketplace, we share your username to allow the application Developer to provide you with services. Additionally, you may direct us through your actions on GitHub to share your User Personal Information. For example, if you join an Organization, you indicate your willingness to provide the owner of the Organization with the ability to view your activity in the Organization’s access log. -### Com prestadores de serviço -Nós compartilhamos Informações Pessoais de Usuário com um número limitado de prestadores de serviços que processam tais informações em nosso nome para prestar (ou melhorar) nosso serviço. Ao assinarem contratos de proteção de dados, esses prestadores concordam com restrições de privacidade semelhantes às determinadas na presente Declaração de Privacidade. Nossos prestadores de serviços desempenham vários serviços, como processamento de pagamento, geração de tíquetes de atendimento ao cliente, transmissão de dados de rede, segurança e outros serviços afins. Embora o GitHub processe todas as Informações Pessoais de Usuário nos Estados Unidos, nossos prestadores de serviços podem processar dados fora dos Estados Unidos ou da União Europeia. Para saber quem são nossos prestadores de serviços, consulte nossa página em [Subprocessadores](/github/site-policy/github-subprocessors-and-cookies). +### With service providers +We share User Personal Information with a limited number of service providers who process it on our behalf to provide or improve our Service, and who have agreed to privacy restrictions similar to the ones in our Privacy Statement by signing data protection agreements or making similar commitments. Our service providers perform payment processing, customer support ticketing, network data transmission, security, and other similar services. While GitHub processes all User Personal Information in the United States, our service providers may process data outside of the United States or the European Union. If you would like to know who our service providers are, please see our page on [Subprocessors](/github/site-policy/github-subprocessors-and-cookies). -### Por motivos de segurança -Se você é integrante de uma Organização, o GitHub pode compartilhar seu nome de usuário, [Informações de uso](#usage-information) e [Informações do dispositivo](#device-information) associado a essa organização com um proprietário e/ou administrador na medida em que essas informações são fornecidas apenas para investigar ou responder a um incidente de segurança que afeta ou compromete a segurança dessa organização em particular. +### For security purposes +If you are a member of an Organization, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) associated with that Organization with an owner and/or administrator of the Organization, to the extent that such information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -### Para divulgação legal -O GitHub luta pela transparência no cumprimento do processo legal e das obrigações legais. A menos que sejamos impedidos de fazê-lo por lei ou ordem judicial, ou em circunstâncias raras e exigentes, fazemos esforço razoável para notificar os usuários de quaisquer informações legalmente solicitadas ou exigidas. O GitHub pode revelar Informações Pessoais de Usuário ou outras informações coletadas sobre você para fins de cumprimento da lei em resposta a intimação, ordem judicial, garantia ou ordem governamental similar, ou quando acreditarmos de boa-fé que a divulgação se faz necessária para cumprir com nossas obrigações legais, proteger nossa propriedade ou nossos direitos, ou de terceiros ou do público geral. +### For legal disclosure +GitHub strives for transparency in complying with legal process and legal obligations. Unless prevented from doing so by law or court order, or in rare, exigent circumstances, we make a reasonable effort to notify users of any legally compelled or required disclosure of their information. GitHub may disclose User Personal Information or other information we collect about you to law enforcement if required in response to a valid subpoena, court order, search warrant, a similar government order, or when we believe in good faith that disclosure is necessary to comply with our legal obligations, to protect our property or rights, or those of third parties or the public at large. -Para obter mais informações sobre a nossa transparência em resposta a solicitações legais, consulte nossas [Diretrizes para Solicitações Legais de Dados do Usuário](/github/site-policy/guidelines-for-legal-requests-of-user-data). +For more information about our disclosure in response to legal requests, see our [Guidelines for Legal Requests of User Data](/github/site-policy/guidelines-for-legal-requests-of-user-data). -### Mudança de controle ou venda -Podemos compartilhar Informações Pessoais do Usuário se estivermos envolvidos em uma fusão, venda ou aquisição de entidades corporativas ou unidades de negócios. Diante de qualquer mudança de propriedade, garantiremos que a mudança ocorra de maneira a preservar a confidencialidade das Informações Pessoais de Usuário. Ademais, antes de qualquer transferência das suas Informações Pessoais de Usuário, enviaremos uma notificação a você pelo nosso Site ou por e-mail. A organização que receber nossas Informações Pessoais de Usuário terá que honrar toda e qualquer promessa que tenhamos feito em nossa Declaração de Privacidade ou em nossos Termos de Serviço. +### Change in control or sale +We may share User Personal Information if we are involved in a merger, sale, or acquisition of corporate entities or business units. If any such change of ownership happens, we will ensure that it is under terms that preserve the confidentiality of User Personal Information, and we will notify you on our Website or by email before any transfer of your User Personal Information. The organization receiving any User Personal Information will have to honor any promises we made in our Privacy Statement or Terms of Service. -### Informações de identificação não pessoal agregadas -Nós compartilhamos com terceiros determinadas informações não pessoais agregadas sobre como nossos usuários, coletivamente, usam o GitHub, ou como nossos usuários reagem às nossas outras ofertas, tais como conferências ou eventos. +### Aggregate, non-personally identifying information +We share certain aggregated, non-personally identifying information with others about how our users, collectively, use GitHub, or how our users respond to our other offerings, such as our conferences or events. -Nós **não** vendemos suas Informações Pessoais de Usuário para obtenção de lucro ou considerações afins. +We **do not** sell your User Personal Information for monetary or other consideration. -Observação: a Lei de Privacidade do Consumidor da Califórnia de 2018 (“CCPA”) exige que as empresas informem em suas respectivas políticas de privacidade se divulgam ou não informações pessoais para obtenção de lucro ou considerações afins. Enquanto a CCPA cobre apenas residentes da Califórnia, nós voluntariamente estendemos seus principais direitos para as pessoas controlarem seus dados a _todos_ os nossos usuários e não apenas àqueles que residem na Califórnia. Saiba mais sobre a CCPA e sobre como a cumprimos [aqui](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). +Please note: The California Consumer Privacy Act of 2018 (“CCPA”) requires businesses to state in their privacy policy whether or not they disclose personal information in exchange for monetary or other valuable consideration. While CCPA only covers California residents, we voluntarily extend its core rights for people to control their data to _all_ of our users, not just those who live in California. You can learn more about the CCPA and how we comply with it [here](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). -## Conteúdo do repositório +## Repository contents -### Acesso a repositórios privados +### Access to private repositories -Se seu repositório for privado, você controla o acesso ao seu Conteúdo. Se você incluir Informações Pessoais do Usuário ou Informações Pessoais Confidenciais, essas informações só poderão ser acessadas pelo GitHub em conformidade com esta Declaração de Privacidade. Os funcionários do GitHub [não acessam o conteúdo privado do repositório](/github/site-policy/github-terms-of-service#e-private-repositories) exceto -- motivos de segurança -- para auxiliar o proprietário do repositório com uma questão de suporte -- para manter a integridade do Serviço -- para cumprir com nossas obrigações legais -- se tivermos motivos para acreditar que o conteúdo viola a lei, ou -- com o seu consentimento. +If your repository is private, you control the access to your Content. If you include User Personal Information or Sensitive Personal Information, that information may only be accessible to GitHub in accordance with this Privacy Statement. GitHub personnel [do not access private repository content](/github/site-policy/github-terms-of-service#e-private-repositories) except for +- security purposes +- to assist the repository owner with a support matter +- to maintain the integrity of the Service +- to comply with our legal obligations +- if we have reason to believe the contents are in violation of the law, or +- with your consent. -No entanto, embora, de modo geral, não pesquisemos conteúdo nos seus repositórios, podemos escanear nossos servidores e conteúdo para detectar certos tokens ou assinaturas de segurança, malware ativo conhecido, vulnerabilidades conhecidas em dependências ou outro conteúdo conhecido por violar nossos Termos de Serviço, como extremistas violentos ou conteúdo terrorista ou imagem de exploração infantil, baseado em técnicas de impressão digital algorítmica (coletivamente denominados, "escaneamento automatizado"). Nossos Termos de Serviço fornecem mais detalhes em [repositórios privados](/github/site-policy/github-terms-of-service#e-private-repositories). +However, while we do not generally search for content in your repositories, we may scan our servers and content to detect certain tokens or security signatures, known active malware, known vulnerabilities in dependencies, or other content known to violate our Terms of Service, such as violent extremist or terrorist content or child exploitation imagery, based on algorithmic fingerprinting techniques (collectively, "automated scanning"). Our Terms of Service provides more details on [private repositories](/github/site-policy/github-terms-of-service#e-private-repositories). -Tenha em mente que você pode optar por desabilitar determinados acessos aos seus repositórios privados que são ativados por padrão como parte do fornecimento de Serviço (por exemplo, varredura automatizada necessária para habilitar alertas de Dependência de gráfico e do Dependabot). +Please note, you may choose to disable certain access to your private repositories that is enabled by default as part of providing you with the Service (for example, automated scanning needed to enable Dependency Graph and Dependabot alerts). -O GitHub fornecerá avisos sobre nosso acesso ao conteúdo do repositório privado, a menos que [para divulgação legal](/github/site-policy/github-privacy-statement#for-legal-disclosure), para cumprir nossas obrigações legais, ou onde de outra forma estiver vinculado por requisitos legais, para verificação automatizada ou se em resposta a uma ameaça de segurança ou outro risco à segurança. +GitHub will provide notice regarding our access to private repository content, unless [for legal disclosure](/github/site-policy/github-privacy-statement#for-legal-disclosure), to comply with our legal obligations, or where otherwise bound by requirements under law, for automated scanning, or if in response to a security threat or other risk to security. -### Repositórios públicos +### Public repositories -Se o seu repositório for público, qualquer pessoa poderá ver o conteúdo do repositório em questão. Se você incluir informações pessoais do usuário, [Informações Pessoais Confidenciais](https://gdpr-info.eu/art-9-gdpr/)ou informações confidenciais, como endereços de e-mail ou senhas, no seu repositório público, essas informações podem ser indexadas por mecanismos de busca ou usadas por terceiros. +If your repository is public, anyone may view its contents. If you include User Personal Information, [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/), or confidential information, such as email addresses or passwords, in your public repository, that information may be indexed by search engines or used by third parties. -Saiba mais sobre [Informações Pessoais de Usuário em repositórios públicos](/github/site-policy/github-privacy-statement#public-information-on-github). +Please see more about [User Personal Information in public repositories](/github/site-policy/github-privacy-statement#public-information-on-github). -## Outras informações importantes +## Other important information -### Informações públicas no GitHub +### Public information on GitHub -Vários recursos e serviços do GitHub são voltados para o público. Se o seu conteúdo for voltado para o público, ele poderá ser acessado e usado por terceiros em conformidade com nossos Termos de Serviço. Por exemplo, os terceiros podem visualizar seu perfil ou repositórios, ou fazer pull de dados pela nossa API. Não vendemos esse conteúdo; ele é seu. Entretanto, permitimos que terceiros (como organizações de pesquisa ou arquivos) compilem as informações públicas do GitHub. Outros terceiros, como agentes de dados, são conhecidos também por fazer scraping do GitHub e compilar dados. +Many of GitHub services and features are public-facing. If your content is public-facing, third parties may access and use it in compliance with our Terms of Service, such as by viewing your profile or repositories or pulling data via our API. We do not sell that content; it is yours. However, we do allow third parties, such as research organizations or archives, to compile public-facing GitHub information. Other third parties, such as data brokers, have been known to scrape GitHub and compile data as well. -Suas Informações Pessoais de Usuário, associadas ao seu conteúdo, podem ser coletadas por terceiros nessas compilações de dados do GitHub. Se você não quiser que suas Informações Pessoais de Usuário apareçam em compilações de dados do GitHub de terceiros, não disponibilize as Informações Pessoais de Usuário publicamente e certifique-se de [configurar seu endereço de e-mail como privado no seu perfil de usuário](https://github.com/settings/emails) e em suas [configurações de commit do Git](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). Definimos o endereço de e-mail dos Usuários como privado por padrão, mas alguns Usuários do GitHub podem ter que atualizar suas configurações. +Your User Personal Information associated with your content could be gathered by third parties in these compilations of GitHub data. If you do not want your User Personal Information to appear in third parties’ compilations of GitHub data, please do not make your User Personal Information publicly available and be sure to [configure your email address to be private in your user profile](https://github.com/settings/emails) and in your [git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). We currently set Users' email address to private by default, but legacy GitHub Users may need to update their settings. -Se você desejar compilar os dados do GitHub, você deverá cumprir os nossos Termos de Serviço com relação ao [uso da informação](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) e [privacidade](/github/site-policy/github-acceptable-use-policies#7-privacy), e você só poderá usar qualquer Informação Pessoal do Usuário pública que você coletar para o propósito autorizado pelo nosso usuário. Por exemplo, quando um usuário do GitHub criou um endereço de e-mail voltado para o público para fins de identificação e atribuição, não use esse endereço de e-mail para fins de envio de e-mails não solicitados aos usuários ou de venda de informações pessoais do usuário, tais como recrutadores, headhunters e job boards ou para publicidade comercial. Esperamos que você proteja, de forma razoável, qualquer Informação Pessoal de Usuário que coletar do GitHub e que responda prontamente a reclamações, solicitações de remoção e solicitações de "não contatar" de nossa parte e de outros usuários. +If you would like to compile GitHub data, you must comply with our Terms of Service regarding [information usage](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) and [privacy](/github/site-policy/github-acceptable-use-policies#7-privacy), and you may only use any public-facing User Personal Information you gather for the purpose for which our user authorized it. For example, where a GitHub user has made an email address public-facing for the purpose of identification and attribution, do not use that email address for the purposes of sending unsolicited emails to users or selling User Personal Information, such as to recruiters, headhunters, and job boards, or for commercial advertising. We expect you to reasonably secure any User Personal Information you have gathered from GitHub, and to respond promptly to complaints, removal requests, and "do not contact" requests from GitHub or GitHub users. -De modo semelhante, os projetos no GitHub podem incluir Informações Pessoais de Usuário publicamente disponíveis e coletadas como parte do processo colaborativo. Em caso de problemas relacionados a quaisquer Informações Pessoais de Usuário no GitHub, consulte nossa seção sobre [resolução de conflitos](/github/site-policy/github-privacy-statement#resolving-complaints). +Similarly, projects on GitHub may include publicly available User Personal Information collected as part of the collaborative process. If you have a complaint about any User Personal Information on GitHub, please see our section on [resolving complaints](/github/site-policy/github-privacy-statement#resolving-complaints). -### Organizações +### Organizations -Por meio de suas ações no GitHub, você poderá indicar a sua disposição em compartilhar suas Informações Pessoais de Usuário. Se você colaborar com ou se tornar integrante de uma Organização, os proprietários da Conta poderão receber suas Informações Pessoais de Usuário. Ao aceitar um convite para uma Organização, você receberá uma notificação sobre os tipos de informações que os proprietários poderão ver (para mais informações, consulteorganização <[Sobre Associação à Organização](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). Se você aceitar um convite para uma Organização com um [domínio verificado](/organizations/managing-organization-settings/verifying-your-organizations-domain), os proprietários da Organização poderão ver seu(s) endereço(s) de e-mail completo(s) no(s) domínio(s) verificado(s) da Organização. +You may indicate, through your actions on GitHub, that you are willing to share your User Personal Information. If you collaborate on or become a member of an Organization, then its Account owners may receive your User Personal Information. When you accept an invitation to an Organization, you will be notified of the types of information owners may be able to see (for more information, see [About Organization Membership](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). If you accept an invitation to an Organization with a [verified domain](/organizations/managing-organization-settings/verifying-your-organizations-domain), then the owners of that Organization will be able to see your full email address(es) within that Organization's verified domain(s). -Observe que o GitHub poderá compartilhar seu nome de usuário, suas [Informações de Uso](#usage-information) e as [Informações do Dispositivo](#device-information) com a organização da qual você é integrante na medida que as suas informações pessoais sejam fornecidas apenas para investigar ou responder a um incidente de segurança que afeta ou compromete a segurança dessa organização em particular. +Please note, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) with the owner(s) of the Organization you are a member of, to the extent that your User Personal Information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -Se você colaborar com ou se tornar integrante de uma Conta que concordou com os [Termos de Serviço Corporativos](/github/site-policy/github-corporate-terms-of-service) e com um Adendo de Proteção de Dados (DPA) nesta Declaração de Privacidade, o DPA prevalecerá em caso de quaisquer conflitos entre a presente Declaração de Privacidade e o DPA no que tange à sua atividade na Conta. +If you collaborate on or become a member of an Account that has agreed to the [Corporate Terms of Service](/github/site-policy/github-corporate-terms-of-service) and a Data Protection Addendum (DPA) to this Privacy Statement, then that DPA governs in the event of any conflicts between this Privacy Statement and the DPA with respect to your activity in the Account. -Entre em contato com os proprietários da conta para obter mais informações sobre como eles processam suas Informações Pessoais de Usuário na Organização e sobre as suas formas de acesso, atualização, alteração ou exclusão das Informações Pessoais de Usuário armazenadas na Conta. +Please contact the Account owners for more information about how they might process your User Personal Information in their Organization and the ways for you to access, update, alter, or delete the User Personal Information stored in the Account. -## Serviços adicionais +## Additional services -### Aplicativos de terceiros +### Third party applications -Você pode habilitar ou adicionar aplicativos de terceiros, conhecidos como "Produtos de Desenvolvedor", na sua Conta. Esses Produtos de Desenvolvedor não são necessários para o uso do GitHub. Compartilharemos suas Informações Pessoais de Usuário com terceiros quando você nos solicitar, por exemplo, ao comprar um Produto de Desenvolvedor no Marketplace. No entanto, você será responsável pelo uso do Produto de Desenvolvedor de terceiro e pela quantidade de Informações Pessoais de Usuário que decidir compartilhar. Consulte nossa [documentação de API](/rest/reference/users) para saber quais informações são fornecidas quando você se autentica em um Produto de Desenvolvedor usando seu perfil no GitHub. +You have the option of enabling or adding third-party applications, known as "Developer Products," to your Account. These Developer Products are not necessary for your use of GitHub. We will share your User Personal Information with third parties when you ask us to, such as by purchasing a Developer Product from the Marketplace; however, you are responsible for your use of the third-party Developer Product and for the amount of User Personal Information you choose to share with it. You can check our [API documentation](/rest/reference/users) to see what information is provided when you authenticate into a Developer Product using your GitHub profile. ### GitHub Pages -Se você criar um site no GitHub Pages, é de sua responsabilidade publicar uma declaração de privacidade que descreva precisamente a sua forma de coletar, usar e compartilhar informações pessoais e outras informações dos visitantes, bem como de que maneira você cumpre as leis, regras e regulamentos aplicáveis de privacidade de dados. Observe que o GitHub pode coletar Informações Pessoais de Usuário de visitantes do seu site do GitHub Pages, inclusive logs de endereços IP dos visitantes, para fins de obrigações legais e de manutenção de segurança e integridade do Site e do Serviço. +If you create a GitHub Pages website, it is your responsibility to post a privacy statement that accurately describes how you collect, use, and share personal information and other visitor information, and how you comply with applicable data privacy laws, rules, and regulations. Please note that GitHub may collect User Personal Information from visitors to your GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the security and integrity of the Website and the Service. -### Aplicativos do GitHub +### GitHub applications -Você também pode adicionar aplicativos do GitHub, como nosso aplicativo Desktop, nosso aplicativo Atom ou outros aplicativos e recursos de conta à sua conta. Cada um desses aplicativos tem seus próprios termos e pode coletar diferentes tipos de Informações Pessoais de Usuário. No entanto, todos os aplicativos do GitHub estão sujeitos a esta Declaração de Privacidade, e sempre coletaremos a quantidade mínima necessária de Informações Pessoais de Usuário somente para os fins que você nos autorizou. +You can also add applications from GitHub, such as our Desktop app, our Atom application, or other application and account features, to your Account. These applications each have their own terms and may collect different kinds of User Personal Information; however, all GitHub applications are subject to this Privacy Statement, and we collect the amount of User Personal Information necessary, and use it only for the purpose for which you have given it to us. -## Como você pode acessar e controlar as informações obtidas +## How you can access and control the information we collect -Se você já é um usuário do GitHub, você poderá acessar, atualizar, alterar, ou excluir as suas informações básicas de perfil de usuário, [editando seu perfil de usuário](https://github.com/settings/profile) ou entrando em contato com o [Suporte do GitHub](https://support.github.com/contact?tags=docs-policy). Você pode controlar as informações que coletamos sobre você limitando quais informações estão no seu perfil, mantendo sua informação atualizada ou entrando em contato com o [Suporte do GitHub](https://support.github.com/contact?tags=docs-policy). +If you're already a GitHub user, you may access, update, alter, or delete your basic user profile information by [editing your user profile](https://github.com/settings/profile) or contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). You can control the information we collect about you by limiting what information is in your profile, by keeping your information current, or by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -Se o GitHub processar informações sobre você como, por exemplo, informações que o [GitHub recebe de terceiros](#information-we-collect-from-third-parties), e você não tiver uma conta, você poderá, sujeito à lei, acessar, atualizar, alterar, excluir ou contestar o processamento das suas informações pessoais entrando em contato com o [Suporte do GitHub](https://support.github.com/contact?tags=docs-policy). +If GitHub processes information about you, such as information [GitHub receives from third parties](#information-we-collect-from-third-parties), and you do not have an account, then you may, subject to applicable law, access, update, alter, delete, or object to the processing of your personal information by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -### Portabilidade de dados +### Data portability -Como usuário do GitHub, você sempre pode levar seus dados com você. Por exemplo, você pode [clonar seus repositórios para o seu desktop](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop) ou pode usar nossas [ferramentas de Portabilidade de Dados](https://developer.github.com/changes/2018-05-24-user-migration-api/) para baixar os dados que temos sobre você. +As a GitHub User, you can always take your data with you. You can [clone your repositories to your desktop](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop), for example, or you can use our [Data Portability tools](https://developer.github.com/changes/2018-05-24-user-migration-api/) to download information we have about you. -### Retenção e exclusão de dados +### Data retention and deletion of data -Em geral, o GitHub retém as Informações Pessoais de Usuário enquanto a sua conta está ativa ou sempre que for necessário para prestar serviços a você. +Generally, GitHub retains User Personal Information for as long as your account is active or as needed to provide you services. -Para cancelar sua conta ou excluir suas Informações Pessoais de Usuário, acesse o seu [perfil de usuário](https://github.com/settings/admin). Vamos reter e usar suas informações conforme o necessário para cumprir nossas obrigações legais, resolver conflitos e fazer valer nossos acordos; salvo em casos de requisitos legais, apagaremos seu perfil por completo (se razoável) dentro de 90 dias. Você pode entrar em contato com o [Suporte do GitHub](https://support.github.com/contact?tags=docs-policy) para solicitar a eliminação dos dados que processamos com base no consentimento dentro de 30 dias. +If you would like to cancel your account or delete your User Personal Information, you may do so in your [user profile](https://github.com/settings/admin). We retain and use your information as necessary to comply with our legal obligations, resolve disputes, and enforce our agreements, but barring legal requirements, we will delete your full profile (within reason) within 90 days of your request. You may contact [GitHub Support](https://support.github.com/contact?tags=docs-policy) to request the erasure of the data we process on the basis of consent within 30 days. -Alguns dados permanecerão após a exclusão de uma conta, como contribuições em repositórios de outros Usuários e comentários em problemas de outrem. Todavia, vamos excluir ou remover a identificação das suas Informações Pessoais de Usuário (inclusive nome de usuário e endereço de e-mail) do campo de autoria de problemas, pull requests e comentários, que serão associados a um [usuário fantasma](https://github.com/ghost). +After an account has been deleted, certain data, such as contributions to other Users' repositories and comments in others' issues, will remain. However, we will delete or de-identify your User Personal Information, including your username and email address, from the author field of issues, pull requests, and comments by associating them with a [ghost user](https://github.com/ghost). -Com isso, o endereço de e-mail que você informou [nas suas configurações de commit do Git](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) sempre será associado aos seus commits no sistema Git. Se decidir tornar seu endereço de e-mail privado, você também deverá atualizar suas configurações de commit do Git. Não podemos alterar ou excluir dados no histórico de commit do Git; o software Git foi desenvolvido para manter um registro, mas você pode controlar as informações que insere nesse registro. +That said, the email address you have supplied [via your Git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) will always be associated with your commits in the Git system. If you choose to make your email address private, you should also update your Git commit settings. We are unable to change or delete data in the Git commit history — the Git software is designed to maintain a record — but we do enable you to control what information you put in that record. -## Uso de cookies e rastreamento +## Our use of cookies and tracking ### Cookies -O GitHub só usa cookies estritamente necessários. Cookies são pequenos arquivos de texto que os sites costumam armazenar nos discos rígidos de computadores ou dispositivos móveis de visitantes. +GitHub only uses strictly necessary cookies. Cookies are small text files that websites often store on computer hard drives or mobile devices of visitors. -Usamos apenas cookies para fornecer, proteger e melhorar nossos serviços. Por exemplo, nós os usamos para manter você conectado, lembrar as suas preferências, identificar o seu dispositivo para fins de segurança, analisar o uso do nosso serviço, compilar relatórios estatísticos e fornecer informações para o desenvolvimento futuro do GitHub. Usamos os nossos próprios cookies para fins de análise, mas não utilizamos quaisquer provedores de serviços de análise de terceiros. +We use cookies solely to provide, secure, and improve our service. For example, we use them to keep you logged in, remember your preferences, identify your device for security purposes, analyze your use of our service, compile statistical reports, and provide information for future development of GitHub. We use our own cookies for analytics purposes, but do not use any third-party analytics service providers. -Ao usar o nosso serviço, você concorda que podemos colocar esses tipos de cookies no seu computador ou dispositivo. Se você desabilitar o navegador ou a capacidade de o dispositivo de aceitar esses cookies, você não poderá efetuar o login nem usar nosso serviço. +By using our service, you agree that we can place these types of cookies on your computer or device. If you disable your browser or device’s ability to accept these cookies, you will not be able to log in or use our service. -Fornecemos mais informações sobre [cookies no GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) na nossa página [Subprocessadores e Cookies do GitHub](/github/site-policy/github-subprocessors-and-cookies) que descreve os cookies que definimos, a necessidade que temos para esses cookies e a expiração desses cookies. +We provide more information about [cookies on GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) on our [GitHub Subprocessors and Cookies](/github/site-policy/github-subprocessors-and-cookies) page that describes the cookies we set, the needs we have for those cookies, and the expiration of such cookies. ### DNT -"[Não rastrear](https://www.eff.org/issues/do-not-track)" (DNT) é uma preferência de privacidade que você pode definir no seu navegador se não quiser que os serviços on-line coletem e compartilhem certos tipos de informações sobre a sua atividade on-line de serviços de rastreamento de terceiros. O GitHub responde aos sinais de DNT dos navegadores e segue o [padrão do W3C de resposta aos sinais de DNT](https://www.w3.org/TR/tracking-dnt/). Se você deseja configurar seu navegador para sinalizar que não gostaria de ser rastreado, verifique a documentação do seu navegador para saber como ativar essa sinalização. Há também bons aplicativos que bloqueiam o rastreamento online, como [Badger de Privacidade](https://privacybadger.org/). +"[Do Not Track](https://www.eff.org/issues/do-not-track)" (DNT) is a privacy preference you can set in your browser if you do not want online services to collect and share certain kinds of information about your online activity from third party tracking services. GitHub responds to browser DNT signals and follows the [W3C standard for responding to DNT signals](https://www.w3.org/TR/tracking-dnt/). If you would like to set your browser to signal that you would not like to be tracked, please check your browser's documentation for how to enable that signal. There are also good applications that block online tracking, such as [Privacy Badger](https://privacybadger.org/). -## Como o GitHub protege suas informações +## How GitHub secures your information -O GitHub toma todas as medidas razoavelmente necessárias para proteger as Informações Pessoais de Usuário contra acesso não autorizado, alteração ou destruição, para manter a precisão dos dados e ajudar a garantir o uso adequado das Informações Pessoais de Usuário. +GitHub takes all measures reasonably necessary to protect User Personal Information from unauthorized access, alteration, or destruction; maintain data accuracy; and help ensure the appropriate use of User Personal Information. -O GitHub impõe um programa gravado de informações de segurança. O nosso programa: -- é alinhado a estruturas reconhecidas pelo setor; -- inclui proteções de segurança razoavelmente desenvolvidas para proteger a confidencialidade, a integridade, a disponibilidade e a resiliência dos dados dos nossos Usuários; -- é adequado a natureza, tamanho e complexidade das operações de negócios do GitHub; -- inclui processos de resposta a incidentes e notificação de violação de dados; -- cumpre as leis e regulamentos aplicáveis de segurança da informação nas regiões geográficas onde o GitHub atua. +GitHub enforces a written security information program. Our program: +- aligns with industry recognized frameworks; +- includes security safeguards reasonably designed to protect the confidentiality, integrity, availability, and resilience of our Users' data; +- is appropriate to the nature, size, and complexity of GitHub’s business operations; +- includes incident response and data breach notification processes; and +- complies with applicable information security-related laws and regulations in the geographic regions where GitHub does business. -Em caso de uma violação de dados que afete as suas Informações Pessoais de Usuário, agiremos prontamente para mitigar o impacto da violação e notificar quaisquer Usuários afetados em tempo hábil. +In the event of a data breach that affects your User Personal Information, we will act promptly to mitigate the impact of a breach and notify any affected Users without undue delay. -A transmissão de dados no GitHub é criptografada usando SSH e HTTPS (TLS), e o conteúdo do repositório git é criptografado em repouso. Gerenciamos nossos compartimentos e racks em datacenters com alto nível de segurança física e de rede. Quando armazenados em provedores de armazenamento de terceiros, os dados são criptografados. +Transmission of data on GitHub is encrypted using SSH, HTTPS (TLS), and git repository content is encrypted at rest. We manage our own cages and racks at top-tier data centers with high level of physical and network security, and when data is stored with a third-party storage provider, it is encrypted. -Nenhum método de transmissão ou método de armazenamento eletrônico é 100% seguro. Portanto, não podemos garantir segurança absoluta. Para obter mais informações, consulte nossa [divulgação sobre segurança](https://github.com/security). +No method of transmission, or method of electronic storage, is 100% secure. Therefore, we cannot guarantee its absolute security. For more information, see our [security disclosures](https://github.com/security). -## Práticas globais de privacidade do GitHub +## GitHub's global privacy practices -GitHub, Inc. e, para aqueles do Espaço Econômico Europeu, Reino Unido e Suíça, os B.V. do GitHub são os controladores responsáveis pelo processamento das suas informações pessoais com relação ao Serviço, exceto (a) no que diz respeito a informações pessoais adicionadas a um repositório pelos seus contribuidores, em cujo caso, o proprietário desse repositório é o controlador e o GitHub é o processador (ou, se o proprietário atuar como processador, o GitHub será o subprocessador); ou (b) quando você e o GitHub tiverem celebrado um acordo separado que cubra a privacidade de dados (como um Contrato de Processamento de Dados). +GitHub, Inc. and, for those in the European Economic Area, the United Kingdom, and Switzerland, GitHub B.V. are the controllers responsible for the processing of your personal information in connection with the Service, except (a) with respect to personal information that was added to a repository by its contributors, in which case the owner of that repository is the controller and GitHub is the processor (or, if the owner acts as a processor, GitHub will be the subprocessor); or (b) when you and GitHub have entered into a separate agreement that covers data privacy (such as a Data Processing Agreement). -Nossos endereços são: +Our addresses are: - GitHub, Inc., 88 Colin P. Kelly Jr. Street, San Francisco, CA 94107. -- GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdã, Holanda. +- GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdam, The Netherlands. -Armazenamos e processamos nos Estados Unidos as informações que coletamos de acordo com esta Declaração de Privacidade, mas nossos prestadores de serviço podem armazenar e processar dados fora dos Estados Unidos. No entanto, entendemos que temos Usuários de vários países e regiões com diferentes expectativas de privacidade e tentamos atender a essas expectativas, mesmo quando os Estados Unidos não têm a mesma estrutura de privacidade dos outros países. +We store and process the information that we collect in the United States in accordance with this Privacy Statement, though our service providers may store and process data outside the United States. However, we understand that we have Users from different countries and regions with different privacy expectations, and we try to meet those needs even when the United States does not have the same privacy framework as other countries. -Oferecemos o mesmo alto nível de proteção de privacidade (conforme descrito nesta Declaração de Privacidade) para todos os nossos usuários do mundo, independentemente de país de origem ou localidade, e temos orgulho dos níveis de aviso, escolha, responsabilidade, segurança, integridade de dados, acesso e recursos que fornecemos. Não medimos esforços para respeitar as leis aplicáveis de privacidade de dados em todas as regiões onde fazemos negócios, usando nosso Departamento de Proteção de Dados como parte de uma equipe multifuncional que supervisiona nossos esforços de conformidade com a privacidade. Ainda, nossos fornecedores ou afiliados que têm acesso às Informações Pessoais de Usuário devem assinar acordos que exigem o cumprimento das nossas políticas de privacidade e das leis aplicáveis de privacidade de dados. +We provide the same high standard of privacy protection—as described in this Privacy Statement—to all our users around the world, regardless of their country of origin or location, and we are proud of the levels of notice, choice, accountability, security, data integrity, access, and recourse we provide. We work hard to comply with the applicable data privacy laws wherever we do business, working with our Data Protection Officer as part of a cross-functional team that oversees our privacy compliance efforts. Additionally, if our vendors or affiliates have access to User Personal Information, they must sign agreements that require them to comply with our privacy policies and with applicable data privacy laws. -Em particular: +In particular: - - O GitHub fornece métodos claros de consentimento inequívoco, específico e informado no momento da coleta de dados, quando coletamos suas Informações Pessoais de Usuário com base em consentimento. - - Coletamos somente a quantidade mínima de Informações Pessoais de Usuário necessárias para nossos fins, a menos que você decida compartilhar mais informações. Recomendamos que você nos informe somente a quantidade de dados que estiver confortável para compartilhar. - - Oferecemos métodos simples de acesso, correção, alteração ou exclusão das Informações Pessoais de Usuário que coletamos, desde que permitidos por lei. - - Oferecemos meios de notificação, escolha, responsabilidade, segurança e acesso aos nossos Usuários quanto às suas respectivas Informações Pessoais de Usuário, e limitamos os fins de processamento. Também oferecemos um método de recurso e imposição aos nossos Usuários. + - GitHub provides clear methods of unambiguous, informed, specific, and freely given consent at the time of data collection, when we collect your User Personal Information using consent as a basis. + - We collect only the minimum amount of User Personal Information necessary for our purposes, unless you choose to provide more. We encourage you to only give us the amount of data you are comfortable sharing. + - We offer you simple methods of accessing, altering, or deleting the User Personal Information we have collected, where legally permitted. + - We provide our Users notice, choice, accountability, security, and access regarding their User Personal Information, and we limit the purpose for processing it. We also provide our Users a method of recourse and enforcement. -### Transferência internacional de dados +### Cross-border data transfers -O GitHub processa informações pessoais dentro e fora dos Estados Unidos e depende das Cláusulas Contratuais Padrão como um mecanismo legalmente fornecido para transferir, de modo legal, os dados do Espaço Econômico Europeu, Reino Unido e Suíça para os Estados Unidos. Além disso, a GitHub é certificado nos Quadros de Proteção à Privacidade entre UE e EUA e Suíça e EUA. Para saber mais sobre nossas transferências de dados transfronteiriças, consulte nossas [Práticas de Privacidade Globais](/github/site-policy/global-privacy-practices). +GitHub processes personal information both inside and outside of the United States and relies on Standard Contractual Clauses as the legally provided mechanism to lawfully transfer data from the European Economic Area, the United Kingdom, and Switzerland to the United States. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about our cross-border data transfers, see our [Global Privacy Practices](/github/site-policy/global-privacy-practices). -## Nossa comunicação com você +## How we communicate with you -Usaremos seu endereço de e-mail para nos comunicar com você, mediante o seu consentimento, e **somente para os fins que você especificar**. Por exemplo, se você comunicar alguma solicitação à nossa equipe de Suporte, responderemos por e-mail. Você terá alto nível de controle sobre as formas de uso e compartilhamento do seu endereço de e-mail no GitHub. Você poderá gerenciar suas preferências de comunicação no seu [perfil de usuário](https://github.com/settings/emails). +We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. For example, if you contact our Support team with a request, we respond to you via email. You have a lot of control over how your email address is used and shared on and through GitHub. You may manage your communication preferences in your [user profile](https://github.com/settings/emails). -Pela natureza de seu design, o sistema de controle de versões do Git associa várias ações ao endereço de e-mail do Usuário, como mensagens de commit. Não podemos mudar vários aspectos do sistema Git. Se quiser que seu endereço de e-mail continue privado, mesmo quando estiver comentando em repositórios públicos, [você pode criar um endereço de e-mail privado no seu perfil de usuário](https://github.com/settings/emails). Você também deve [atualizar sua configuração local do Git para usar seu endereço de e-mail privado](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). Fazer isso não mudará a nossa forma de entrar em contato com você, mas afetará a forma como outras pessoas visualizam você. Definimos o endereço de e-mail dos Usuários como privado por padrão, mas alguns Usuários do GitHub podem ter que atualizar suas configurações. Saiba mais sobre endereços de e-mail em mensagens de commit [aqui](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). +By design, the Git version control system associates many actions with a User's email address, such as commit messages. We are not able to change many aspects of the Git system. If you would like your email address to remain private, even when you’re commenting on public repositories, [you can create a private email address in your user profile](https://github.com/settings/emails). You should also [update your local Git configuration to use your private email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). This will not change how we contact you, but it will affect how others see you. We set current Users' email address private by default, but legacy GitHub Users may need to update their settings. Please see more about email addresses in commit messages [here](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). -Dependendo das suas [configurações de e-mail](https://github.com/settings/emails), o GitHub pode ocasionalmente enviar e-mails de notificação sobre mudanças no repositório que você está acompanhando, novos recursos, solicitações de feedback, atualizações importantes da política ou atendimento ao cliente. Também enviamos e-mails de marketing com base nas suas escolhas e conforme as leis e regulamentos aplicáveis. Na parte inferior de cada e-mail de marketing que enviamos, há um link de cancelamento do recebimento desse tipo de mensagem. Observe que você não pode deixar de receber nossas comunicações importantes, como mensagens da nossa equipe de suporte ou mensagens do sistema, mas é possível definir suas configurações de notificação no seu perfil para cancelar o recebimento de outras mensagens. +Depending on your [email settings](https://github.com/settings/emails), GitHub may occasionally send notification emails about changes in a repository you’re watching, new features, requests for feedback, important policy changes, or to offer customer support. We also send marketing emails, based on your choices and in accordance with applicable laws and regulations. There's an “unsubscribe” link located at the bottom of each of the marketing emails we send you. Please note that you cannot opt out of receiving important communications from us, such as emails from our Support team or system emails, but you can configure your notifications settings in your profile to opt out of other communications. -Nossos e-mails podem conter uma tag de pixel, isto é, uma imagem pequena que pode nos mostrar se você abriu uma mensagem e nos informar o seu endereço IP. Usamos a tag de pixel para aumentar a eficácia de nossas comunicações por e-mail e garantir que não estamos enviando mensagens indesejadas. +Our emails may contain a pixel tag, which is a small, clear image that can tell us whether or not you have opened an email and what your IP address is. We use this pixel tag to make our email more effective for you and to make sure we’re not sending you unwanted email. -## Resolução de conflitos +## Resolving complaints -Em caso de dúvidas sobre a forma como o GitHub manipula suas Informações Pessoais de Usuário, entre em contato conosco imediatamente. Estamos à sua disposição para ajudar no que for necessário. Entre em contato conosco preenchendo o [formulário de contato de Privacidade](https://support.github.com/contact/privacy). ou escrevendo diretamente para privacy@github.com, especificando a linha de assunto "Privacidade". Responderemos sua solicitação o quanto antes, no máximo em 45 dias. +If you have concerns about the way GitHub is handling your User Personal Information, please let us know immediately. We want to help. You may contact us by filling out the [Privacy contact form](https://support.github.com/contact/privacy). You may also email us directly at privacy@github.com with the subject line "Privacy Concerns." We will respond promptly — within 45 days at the latest. -Você também pode entrar em contato diretamente com o nosso Departamento de Proteção de Dados. +You may also contact our Data Protection Officer directly. -| Sede nos Estados Unidos | Filial na UE | -| ------------------------------------------- | ------------------ | -| Departamento de Proteção de dados do GitHub | GitHub BV | -| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | -| San Francisco, CA 94107 | 1017 HL Amsterdam | -| Estados Unidos | Holanda | -| privacy@github.com | privacy@github.com | +| Our United States HQ | Our EU Office | +|---|---| +| GitHub Data Protection Officer | GitHub BV | +| 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | +| San Francisco, CA 94107 | 1017 HL Amsterdam | +| United States | The Netherlands | +| privacy@github.com | privacy@github.com | -### Processo de resolução de conflitos +### Dispute resolution process -No caso improvável de conflito entre você e o GitHub sobre a manipulação das suas Informações Pessoais de Usuário, não mediremos esforços para resolver a situação. Além disso, se você for residente de um estado-membro da UE, você tem o direito de apresentar uma reclamação junto às suas autoridades locais de supervisão, e poderá ter mais [opções](/github/site-policy/global-privacy-practices#dispute-resolution-process). +In the unlikely event that a dispute arises between you and GitHub regarding our handling of your User Personal Information, we will do our best to resolve it. Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority, and you might have more [options](/github/site-policy/global-privacy-practices#dispute-resolution-process). -## Mudanças nesta Declaração de Privacidade +## Changes to our Privacy Statement -Embora grande parte das alterações sejam secundárias, o GitHub pode alterar esta Declaração de Privacidade ocasionalmente. Publicaremos uma notificação para os usuários no site sobre mudanças concretas feitas nesta Declaração de Privacidade pelo menos 30 dias antes de sua entrada em vigor. A notificação será exibida em nossa página inicial ou enviada por e-mail para o endereço de e-mail principal especificado na sua conta do GitHub. Também atualizaremos nosso [repositório da Política do Site](https://github.com/github/site-policy/), que registra e monitora todas as alterações feitas a esta política. Para outras mudanças nesta Declaração de Privacidade, incentivamos os usuários a [observar](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) ou verificar o nosso repositório de Política de Site com frequência. +Although most changes are likely to be minor, GitHub may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page or sending email to the primary email address specified in your GitHub account. We will also update our [Site Policy repository](https://github.com/github/site-policy/), which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to [watch](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) or to check our Site Policy repository frequently. -## Licença +## License -Esta Declaração de Privacidade é licenciada sob a [licença Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/). Para ver os detalhes, consulte nosso [repositório da Política do Site](https://github.com/github/site-policy#license). +This Privacy Statement is licensed under this [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). For details, see our [site-policy repository](https://github.com/github/site-policy#license). -## Contato com a GitHub -Envie suas perguntas sobre nossas práticas de coleta de informações ou a Declaração de Privacidade do GitHub pelo [formulário de contato de Privacidade](https://support.github.com/contact/privacy). +## Contacting GitHub +Questions regarding GitHub's Privacy Statement or information practices should be directed to our [Privacy contact form](https://support.github.com/contact/privacy). -## Traduções +## Translations -Consulte abaixo este documento traduzido para outros idiomas. Em caso de conflito, incerteza ou aparente incoerência entre quaisquer versões traduzidas e a versão original em inglês, o documento em inglês prevalecerá. +Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. ### French -Clique aqui para consultar a versão em francês: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(12.20.19)(FR).pdf) +Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(07.22.20)(FR).pdf) -### Outras traduções +### Other translations -Para traduções desta declaração para outros idiomas, acesse [https://docs.github.com/](/) e selecione um idioma no menu suspenso abaixo de "Inglês". +For translations of this statement into other languages, please visit [https://docs.github.com/](/) and select a language from the drop-down menu under “English.” diff --git a/translations/pt-BR/content/github/site-policy/github-subprocessors-and-cookies.md b/translations/pt-BR/content/github/site-policy/github-subprocessors-and-cookies.md index 6f2c4f9435..03ca56894a 100644 --- a/translations/pt-BR/content/github/site-policy/github-subprocessors-and-cookies.md +++ b/translations/pt-BR/content/github/site-policy/github-subprocessors-and-cookies.md @@ -1,10 +1,10 @@ --- -title: Subprocessadores e cookies do GitHub +title: GitHub Subprocessors and Cookies redirect_from: - - /subprocessors/ - - /github-subprocessors/ - - /github-tracking/ - - /github-cookies/ + - /subprocessors + - /github-subprocessors + - /github-tracking + - /github-cookies - /articles/github-subprocessors-and-cookies versions: fpt: '*' @@ -13,68 +13,68 @@ topics: - Legal --- -Data de entrada em vigor: **2 de abril de 2021** +Effective date: **April 2, 2021** -O GitHub fornece um grande acordo de transparência em relação à forma como usamos seus dados, como os coletamos e com quem compartilhamos. Para essa finalidade, disponibilizamos esta página, que detalha os [nossos subprocessadores](#github-subprocessors) e como usamos [cookies](#cookies-on-github). +GitHub provides a great deal of transparency regarding how we use your data, how we collect your data, and with whom we share your data. To that end, we provide this page, which details [our subprocessors](#github-subprocessors), and how we use [cookies](#cookies-on-github). -## Subprocessadores GitHub +## GitHub Subprocessors -Quando compartilhamos suas informações com terceiros subprocessadores, tais como nossos fornecedores e provedores de serviços, permanecemos responsáveis por elas. Trabalhamos muito duro para manter sua confiança quando trazemos novos fornecedores, e exigimos que todos os fornecedores se submetam a contratos de proteção de dados conosco que restringem seu processamento de Informações Pessoais dos Usuários (conforme definido na [Declaração de Privacidade](/articles/github-privacy-statement/)). +When we share your information with third party subprocessors, such as our vendors and service providers, we remain responsible for it. We work very hard to maintain your trust when we bring on new vendors, and we require all vendors to enter into data protection agreements with us that restrict their processing of Users' Personal Information (as defined in the [Privacy Statement](/articles/github-privacy-statement/)). -| Nome do subprocessador | Descrição do processamento | Local do Processamento | Localização corporativa | -|:------------------------ |:--------------------------------------------------------------------------- |:---------------------- |:----------------------- | -| Automattic | Serviço de blogs | Estados Unidos | Estados Unidos | -| AWS Amazon | Hospedagem de dados | Estados Unidos | Estados Unidos | -| Braintree (PayPal) | Processador de pagamento de assinatura com cartão de crédito | Estados Unidos | Estados Unidos | -| Clearbit | Serviço de enriquecimento de dados de marketing | Estados Unidos | Estados Unidos | -| Discourse | Provedor de software do fórum comunitário | Estados Unidos | Estados Unidos | -| Eloqua | Automatização da campanha marketing | Estados Unidos | Estados Unidos | -| Google Apps | Infraestrutura interna da empresa | Estados Unidos | Estados Unidos | -| MailChimp | Fornecedor de serviços de correio para emissão de bilhetes a clientes | Estados Unidos | Estados Unidos | -| Mailgun | Provedor de serviços de correio transacional | Estados Unidos | Estados Unidos | -| Microsoft | Microsoft Services | Estados Unidos | Estados Unidos | -| Nexmo | Provedor de notificação de SMS | Estados Unidos | Estados Unidos | -| Salesforce.com | Gerenciamento de relacionamento com clientes | Estados Unidos | Estados Unidos | -| Sentry.io | Provedor de monitoramento de aplicativo | Estados Unidos | Estados Unidos | -| Stripe | Provedor de pagamentos | Estados Unidos | Estados Unidos | -| Twilio & Twilio Sendgrid | Provedor de notificação de SMS & Provedor de serviço de e-mail transacional | Estados Unidos | Estados Unidos | -| Zendesk | Sistema de bilhetagem de suporte ao cliente | Estados Unidos | Estados Unidos | -| Zuora | Sistema de faturamento corporativo | Estados Unidos | Estados Unidos | +| Name of Subprocessor | Description of Processing | Location of Processing | Corporate Location +|:---|:---|:---|:---| +| Automattic | Blogging service | United States | United States | +| AWS Amazon | Data hosting | United States | United States | +| Braintree (PayPal) | Subscription credit card payment processor | United States | United States | +| Clearbit | Marketing data enrichment service | United States | United States | +| Discourse | Community forum software provider | United States | United States | +| Eloqua | Marketing campaign automation | United States | United States | +| Google Apps | Internal company infrastructure | United States | United States | +| MailChimp | Customer ticketing mail services provider | United States | United States | +| Mailgun | Transactional mail services provider | United States | United States | +| Microsoft | Microsoft Services | United States | United States | +| Nexmo | SMS notification provider | United States | United States | +| Salesforce.com | Customer relations management | United States | United States | +| Sentry.io | Application monitoring provider | United States | United States | +| Stripe | Payment provider | United States | United States | +| Twilio & Twilio Sendgrid | SMS notification provider & transactional mail service provider | United States | United States | +| Zendesk | Customer support ticketing system | United States | United States | +| Zuora | Corporate billing system | United States | United States | -Quando trouxermos um novo subprocessador que lida com as Informações Pessoais de nossos Usuários, ou removermos um subprocessador, ou mudarmos a forma como usamos um subprocessador, atualizaremos esta página. Se você tiver dúvidas ou preocupações sobre um novo subprocessador, ficaremos felizes em ajudar. Entre em contato conosco via {% data variables.contact.contact_privacy %}. +When we bring on a new subprocessor who handles our Users' Personal Information, or remove a subprocessor, or we change how we use a subprocessor, we will update this page. If you have questions or concerns about a new subprocessor, we'd be happy to help. Please contact us via {% data variables.contact.contact_privacy %}. -## Cookies no GitHub +## Cookies on GitHub -O GitHub usa cookies para fornecer e proteger nossos sites, bem como analisar o uso dos nossos sites, para oferecer a você uma ótima experiência de usuário. Consulte nossa [Declaração de privacidade](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) se você quiser saber mais informações sobre cookies e sobre como e por que os usamos. +GitHub uses cookies to provide and secure our websites, as well as to analyze the usage of our websites, in order to offer you a great user experience. Please take a look at our [Privacy Statement](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) if you’d like more information about cookies, and on how and why we use them. + +Since the number and names of cookies may change, the table below may be updated from time to time. -Como o número e os nomes dos cookies podem mudar, a tabela abaixo pode ser atualizada de vez em quando. +| Service Provider | Cookie Name | Description | Expiration* | +|:---|:---|:---|:---| +| GitHub | `app_manifest_token` | This cookie is used during the App Manifest flow to maintain the state of the flow during the redirect to fetch a user session. | five minutes | +| GitHub | `color_mode` | This cookie is used to indicate the user selected theme preference. | session | +| GitHub | `_device_id` | This cookie is used to track recognized devices for security purposes. | one year | +| GitHub | `dotcom_user` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `_gh_ent` | This cookie is used for temporary application and framework state between pages like what step the customer is on in a multiple step form. | two weeks | +| GitHub | `_gh_sess` | This cookie is used for temporary application and framework state between pages like what step the user is on in a multiple step form. | session | +| GitHub | `gist_oauth_csrf` | This cookie is set by Gist to ensure the user that started the oauth flow is the same user that completes it. | deleted when oauth state is validated | +| GitHub | `gist_user_session` | This cookie is used by Gist when running on a separate host. | two weeks | +| GitHub | `has_recent_activity` | This cookie is used to prevent showing the security interstitial to users that have visited the app recently. | one hour | +| GitHub | `__Host-gist_user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `__Host-user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `logged_in` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `marketplace_repository_ids` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `marketplace_suggested_target_id` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `_octo` | This cookie is used for session management including caching of dynamic content, conditional feature access, support request metadata, and first party analytics. | one year | +| GitHub | `org_transform_notice` | This cookie is used to provide notice during organization transforms. | one hour | +| GitHub | `private_mode_user_session` | This cookie is used for Enterprise authentication requests. | two weeks | +| GitHub | `saml_csrf_token` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_csrf_token_legacy` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to_legacy` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `tz` | This cookie allows us to customize timestamps to your time zone. | session | +| GitHub | `user_session` | This cookie is used to log you in. | two weeks | -| Provedor de serviço | Nome do cookie | Descrição | Vencimento* | -|:------------------- |:------------------------------------ |:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:---------------------------------------------------------------------------- | -| GitHub | `app_manifest_token` | Este cookie é usado durante o fluxo do manifesto do aplicativo para manter o estado do fluxo durante o redirecionamento para buscar uma sessão do usuário. | cinco minutos | -| GitHub | `color_mode` | Este cookie é usado para indicar a preferência de tema selecionada pelo usuário. | sessão | -| GitHub | `_device_id` | Este cookie é usado para rastrear dispositivos reconhecidos para fins de segurança. | um ano | -| GitHub | `dotcom_user` | Este cookie é usado para sinalizar que o usuário já está conectado. | um ano | -| GitHub | `_gh_ent` | Este cookie é usado para aplicação temporária e para o estado da estrutura entre páginas, como em que etapa o cliente se encontra em um processo de várias etapas. | duas semanas | -| GitHub | `_gh_sess` | Este cookie é usado para aplicação temporária e para o estado do framework entre páginas, como por exemplo, em qual etapa o usuário está em um formulário de várias etapas. | sessão | -| GitHub | `gist_oauth_csrf` | Este cookie é definido pelo Gist para garantir que o usuário que iniciou o fluxo de autenticação seja o mesmo usuário que o completa. | excluído quando o estado do oauth é validado | -| GitHub | `gist_user_session` | Este cookie é usado pelo Gist ao ser executado em um host separado. | duas semanas | -| GitHub | `has_recent_activity` | Este cookie é usado para impedir a exibição de intersticial de segurança para usuários que visitaram o aplicativo recentemente. | uma hora | -| GitHub | `__Host-gist_user_session_same_site` | Este cookie foi definido para garantir que os navegadores que suportam cookies do SameSite possam verificar se uma solicitação é originária do GitHub. | duas semanas | -| GitHub | `__Host-user_session_same_site` | Este cookie foi definido para garantir que os navegadores que suportam cookies do SameSite possam verificar se uma solicitação é originária do GitHub. | duas semanas | -| GitHub | `logged_in` | Este cookie é usado para sinalizar que o usuário já está conectado. | um ano | -| GitHub | `marketplace_repository_ids` | Este cookie é usado para o fluxo de instalação do marketplace. | uma hora | -| GitHub | `marketplace_suggested_target_id` | Este cookie é usado para o fluxo de instalação do marketplace. | uma hora | -| GitHub | `_octo` | Este cookie é usado para o gerenciamento de sessões, incluindo o cache de conteúdo dinâmico, acesso condicional a recursos, suporte a metadados solicitados e análise da primeira parte. | um ano | -| GitHub | `org_transform_notice` | Este cookie é usado para fornecer aviso durante a transformação da organização. | uma hora | -| GitHub | `private_mode_user_session` | Este cookie é usado para solicitações de autenticação da empresa. | duas semanas | -| GitHub | `saml_csrf_token` | Este cookie é definido pelo método de caminho de autenticação SAML para associar um token ao cliente. | até que o usuário feche o navegador ou conclua a solicitação de autenticação | -| GitHub | `saml_csrf_token_legacy` | Este cookie é definido pelo método de caminho de autenticação SAML para associar um token ao cliente. | até que o usuário feche o navegador ou conclua a solicitação de autenticação | -| GitHub | `saml_return_to` | Este cookie é definido pelo método de caminho de autenticação SAML para manter o estado durante o loop de autenticação SAML. | até que o usuário feche o navegador ou conclua a solicitação de autenticação | -| GitHub | `saml_return_to_legacy` | Este cookie é definido pelo método de caminho de autenticação SAML para manter o estado durante o loop de autenticação SAML. | até que o usuário feche o navegador ou conclua a solicitação de autenticação | -| GitHub | `tz` | Este cookie nos permite personalizar os horários para seu fuso horário. | sessão | -| GitHub | `user_session` | Este cookie é usado para fazer seu login. | duas semanas | +_*_ The **expiration** dates for the cookies listed below generally apply on a rolling basis. -_*_ A data de **expiração** para os cookies listados abaixo geralmente se aplicam em uma base contínua. - -(!) Observe que, embora limitemos o uso de cookies de terceiros aos que forem necessários para fornecer funcionalidade externa ao processar conteúdo externo, certas páginas no nosso site podem definir outros cookies de terceiros. Por exemplo, podemos incorporar conteúdo, como vídeos, de outro site que define um cookie. Embora tentemos minimizar esses cookies de terceiros, nem sempre podemos controlar quais cookies esse conteúdo de terceiros define. +(!) Please note while we limit our use of third party cookies to those necessary to provide external functionality when rendering external content, certain pages on our website may set other third party cookies. For example, we may embed content, such as videos, from another site that sets a cookie. While we try to minimize these third party cookies, we can’t always control what cookies this third party content sets. diff --git a/translations/pt-BR/content/github/site-policy/github-terms-of-service.md b/translations/pt-BR/content/github/site-policy/github-terms-of-service.md index a52889b4c1..9ac616977a 100644 --- a/translations/pt-BR/content/github/site-policy/github-terms-of-service.md +++ b/translations/pt-BR/content/github/site-policy/github-terms-of-service.md @@ -1,10 +1,10 @@ --- title: GitHub Terms of Service redirect_from: - - /tos/ - - /terms/ - - /terms-of-service/ - - /github-terms-of-service-draft/ + - /tos + - /terms + - /terms-of-service + - /github-terms-of-service-draft - /articles/github-terms-of-service versions: fpt: '*' diff --git a/translations/pt-BR/content/github/site-policy/github-username-policy.md b/translations/pt-BR/content/github/site-policy/github-username-policy.md index 70b10d35d3..84c19fe327 100644 --- a/translations/pt-BR/content/github/site-policy/github-username-policy.md +++ b/translations/pt-BR/content/github/site-policy/github-username-policy.md @@ -1,7 +1,7 @@ --- -title: Política de nome de usuário do GitHub +title: GitHub Username Policy redirect_from: - - /articles/name-squatting-policy/ + - /articles/name-squatting-policy - /articles/github-username-policy versions: fpt: '*' @@ -10,18 +10,18 @@ topics: - Legal --- -Os nomes das contas do GitHub são fornecidos pela ordem de chegada e são destinados ao uso imediato e ativo. +GitHub account names are available on a first-come, first-served basis, and are intended for immediate and active use. -## E se o nome de usuário que eu quero já estiver sendo usado? +## What if the username I want is already taken? -Tenha em mente que nem todas as atividades no GitHub são publicamente visíveis; contas sem atividade visível podem estar em uso ativo. +Keep in mind that not all activity on GitHub is publicly visible; accounts with no visible activity may be in active use. -Se o nome de usuário que deseja já tiver sido reclamado, considere outros nomes ou variações. Usar um número, hífen ou uma ortografia alternativa pode ajudá-lo a identificar um nome de usuário desejável ainda disponível. +If the username you want has already been claimed, consider other names or unique variations. Using a number, hyphen, or an alternative spelling might help you identify a desirable username still available. -## Política de marca registrada +## Trademark Policy -Se você acredita que a conta de alguém está violando os seus direitos de marca registrada, encontre mais informações sobre reclamações de violação de marca registrada em nossa página de [Política de marca registrada](/articles/github-trademark-policy/). +If you believe someone's account is violating your trademark rights, you can find more information about making a trademark complaint on our [Trademark Policy](/articles/github-trademark-policy/) page. -## Política de uso indevido de nome +## Name Squatting Policy -O GitHub proíbe a ocupação de nomes de contas. Além disso, os nomes das contas não podem ser reservados ou mantidos inativos para uso futuro. As contas que violam essa política de uso indevido de nome podem ser removidas ou renomeadas sem aviso prévio. Tentativas de vender, comprar ou solicitar outras formas de pagamento em troca de nomes de conta são proibidas e podem resultar na suspensão permanente da conta. +GitHub prohibits account name squatting, and account names may not be reserved or inactively held for future use. Accounts violating this name squatting policy may be removed or renamed without notice. Attempts to sell, buy, or solicit other forms of payment in exchange for account names are prohibited and may result in permanent account suspension. diff --git a/translations/pt-BR/content/github/site-policy/global-privacy-practices.md b/translations/pt-BR/content/github/site-policy/global-privacy-practices.md index bee0eaa31c..4d12086d81 100644 --- a/translations/pt-BR/content/github/site-policy/global-privacy-practices.md +++ b/translations/pt-BR/content/github/site-policy/global-privacy-practices.md @@ -1,7 +1,7 @@ --- -title: Práticas de privacidade global +title: Global Privacy Practices redirect_from: - - /eu-safe-harbor/ + - /eu-safe-harbor - /articles/global-privacy-practices versions: fpt: '*' @@ -10,66 +10,66 @@ topics: - Legal --- -Data de entrada em vigor: 22 de Julho de 2020 +Effective date: July 22, 2020 -O GitHub fornece o mesmo padrão alto de proteção de privacidade — conforme descrito na [Declaração de privacidade](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)do GitHub — para todos os nossos usuários e clientes em todo o mundo, independentemente do seu país de origem ou local. Além disso, o GitHub orgulha-se do nível de aviso prévio, escolha, responsabilidade, segurança, integridade de dados, acesso e recursos que fornecemos. +GitHub provides the same high standard of privacy protection—as described in GitHub’s [Privacy Statement](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)—to all our users and customers around the world, regardless of their country of origin or location, and GitHub is proud of the level of notice, choice, accountability, security, data integrity, access, and recourse we provide. -O GitHub também está em conformidade com certos quadros jurídicos relacionados à transferência de dados do Espaço Econômico Europeu, Reino Unido, e Suíça (coletivamente, denominada “UE”) para os Estados Unidos. Quando o GitHub se envolve em tais transferências, ele conta com as Cláusulas Contratuais Padrão como mecanismo legal para ajudar a garantir que seus direitos e proteções acompanhem as suas informações pessoais. Além disso, a GitHub é certificado nos Quadros de Proteção à Privacidade entre UE e EUA e Suíça e EUA. Para saber mais sobre as decisões da Comissão Europeia sobre a transferência internacional de dados, veja este artigo no [site da Comissão Europeia](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). +GitHub also complies with certain legal frameworks relating to the transfer of data from the European Economic Area, the United Kingdom, and Switzerland (collectively, “EU”) to the United States. When GitHub engages in such transfers, GitHub relies on Standard Contractual Clauses as the legal mechanism to help ensure your rights and protections travel with your personal information. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about the European Commission’s decisions on international data transfer, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). -## Cláusulas Contratuais Padrão +## Standard Contractual Clauses -O GitHub conta com as Cláusulas Contratuais Padrão aprovadas pela Comissão Europeia (“SCCs”) como um mecanismo legal para transferências de dados da UE. Os SCCs são compromissos contratuais entre empresas que transferem dados pessoais, vinculando-as a proteger a privacidade e a segurança desses dados. O GitHub adotou as SCCs para que os fluxos de dados necessários possam ser protegidos quando transferidos para fora da UE para países cuja proteção de dados não é considerada adequada pela Comissão Europeia, incluindo a proteção de transferências de dados para os Estados Unidos. +GitHub relies on the European Commission-approved Standard Contractual Clauses (“SCCs”) as a legal mechanism for data transfers from the EU. SCCs are contractual commitments between companies transferring personal data, binding them to protect the privacy and security of such data. GitHub adopted SCCs so that the necessary data flows can be protected when transferred outside the EU to countries which have not been deemed by the European Commission to adequately protect personal data, including protecting data transfers to the United States. -Para saber mais sobre as SCCs, consulte este artigo no [site da Comissão Europeia](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). +To learn more about SCCs, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). -## Escudo de Defesa da Privacidade +## Privacy Shield Framework -O GitHub é certificado nas estruturas do Escudo de Privacidade Privacidade entre a UE e os EUA e entre a Suíça e os EUA e nos compromissos que implicam, embora o GitHub não dependa da Estrutura do Escudo de Privacidade entre a UE e os EUA como base jurídica para transferências de informações pessoais à luz da decisão do Tribunal de Justiça da UE no processo C-311/18. +GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks and the commitments they entail, although GitHub does not rely on the EU-US Privacy Shield Framework as a legal basis for transfers of personal information in light of the judgment of the Court of Justice of the EU in Case C-311/18. -Os Estruturas do Escudo de Privacidade entre a UE e os EU e entre a Suíça e os EUA são estabelecidas pelo Departamento do Comércio dos EUA no que se refere à coleta, uso, e retenção de Informações Pessoais do Usuário transferidas da União Europeia, Reino Unido e Suíça para os Estados Unidos. O GitHub certificou ao Departamento do Comércio que cumpre com os princípios de Defesa da Privacidade. Se nossos fornecedores ou afiliados processarem as Informações Pessoais do Usuário em nosso nome, de forma inconsistente com os princípios do Escudo de Proteção de Privacidade, o GitHub permanecerá responsável, a menos que provemos que não somos responsáveis por este evento causador do dano. +The EU-US and Swiss-US Privacy Shield Frameworks are set forth by the US Department of Commerce regarding the collection, use, and retention of User Personal Information transferred from the European Union, the UK, and Switzerland to the United States. GitHub has certified to the Department of Commerce that it adheres to the Privacy Shield Principles. If our vendors or affiliates process User Personal Information on our behalf in a manner inconsistent with the principles of either Privacy Shield Framework, GitHub remains liable unless we prove we are not responsible for the event giving rise to the damage. -Para fins das nossas certificações nos termos das Estruturas do Escudo de Privacidade, se houver qualquer conflito entre os termos nestas Práticas Globais de Privacidade e os Princípios da Proteção à Privacidade, prevalecerão os Princípios da Proteção à Privacidade. Para saber mais sobre o programa do Escudo de Proteção da Privacidade e consultar nossa certificação, acesse o site do [Escudo de Proteção da Privacidade](https://www.privacyshield.gov/). +For purposes of our certifications under the Privacy Shield Frameworks, if there is any conflict between the terms in these Global Privacy Practices and the Privacy Shield Principles, the Privacy Shield Principles shall govern. To learn more about the Privacy Shield program, and to view our certification, visit the [Privacy Shield website](https://www.privacyshield.gov/). -As Estruturas do Escudo de Privacidade têm por base sete princípios e o GitHub cumpre-os das seguintes maneiras: +The Privacy Shield Frameworks are based on seven principles, and GitHub adheres to them in the following ways: -- **Aviso** - - Nós informamos quando estamos coletando suas informações pessoais. - - Nós deixamos você saber, em nossa [Declaração de Privacidade](/articles/github-privacy-statement/), que objetivos temos ao coletar e usar suas informações, com quem compartilhamos essas informações e sob quais restrições e quais acessos você tem aos seus dados. - - Nós deixamos você saber que estamos participando da Estrutura de Defesa da Privacidade, e o que isso significa para você. - - Nós temos um {% data variables.contact.contact_privacy %} onde você pode entrar em contato conosco com perguntas sobre sua privacidade. - - Nós o deixamos consciente de seu direito de invocar arbitragem vinculante, desde que sem nenhum custo para você, no caso improvável de uma disputa. - - Nós o informamos de que estamos sujeitos à jurisdição da Comissão Federal de Comércio. -- **Escolha** - - Deixamos você escolher o que acontece com seus dados. Antes de usarmos seus dados para um propósito diferente daquele para o qual você os concedeu, nós o avisaremos e obteremos sua permissão. - - Forneceremos a você mecanismos razoáveis para fazer as suas escolhas. -- **Responsabilidade por Transferência Subsequente** - - Quando transferimos suas informações para fornecedores terceirizados que estão processando-as em nosso nome, estamos apenas enviando seus dados para terceiros, sob contrato conosco, que irá protegê-las consistentemente com nossa Declaração de Privacidade. Quando transferimos seus dados para nossos fornecedores sob a Defesa da Privacidade, continuamos responsáveis por eles. - - Compartilhamos apenas a quantidade necessária de dados com nossos fornecedores terceirizados para concluir sua transação. -- **Segurança** - - Protegeremos suas informações pessoais com [todas as medidas de segurança razoáveis e apropriadas](https://github.com/security). -- **Integridade de dados e Limitação de propósito** - - Nós coletamos seus dados apenas para os fins relevantes para fornecermos nossos serviços a você. - - Coletamos o mínimo de informações sobre você que pudermos, a menos que você escolha nos fornecer mais informações. - - Tomamos medidas razoáveis para garantir que os dados que temos sobre você sejam precisos, atuais e confiáveis para o seu uso pretendido. +- **Notice** + - We let you know when we're collecting your personal information. + - We let you know, in our [Privacy Statement](/articles/github-privacy-statement/), what purposes we have for collecting and using your information, who we share that information with and under what restrictions, and what access you have to your data. + - We let you know that we're participating in the Privacy Shield framework, and what that means to you. + - We have a {% data variables.contact.contact_privacy %} where you can contact us with questions about your privacy. + - We let you know about your right to invoke binding arbitration, provided at no cost to you, in the unlikely event of a dispute. + - We let you know that we are subject to the jurisdiction of the Federal Trade Commission. +- **Choice** + - We let you choose what happens to your data. Before we use your data for a purpose other than the one for which you gave it to us, we will let you know and get your permission. + - We will provide you with reasonable mechanisms to make your choices. +- **Accountability for Onward Transfer** + - When we transfer your information to third party vendors that are processing it on our behalf, we are only sending your data to third parties, under contract with us, that will safeguard it consistently with our Privacy Statement. When we transfer your data to our vendors under Privacy Shield, we remain responsible for it. + - We share only the amount of data with our third party vendors as is necessary to complete their transaction. +- **Security** + - We will protect your personal information with [all reasonable and appropriate security measures](https://github.com/security). +- **Data Integrity and Purpose Limitation** + - We only collect your data for the purposes relevant for providing our services to you. + - We collect as little information about you as we can, unless you choose to give us more. + - We take reasonable steps to ensure that the data we have about you is accurate, current, and reliable for its intended use. - **Access** - - Você sempre poderá acessar os dados que temos sobre você em seu [perfil do usuário](https://github.com/settings/profile). Você pode acessar, atualizar, alterar ou excluir suas informações lá. -- **Recurso, Lei aplicável e Responsabilidade** - - Se você tem dúvidas sobre nossas práticas de privacidade, você pode nos contatar com o nosso {% data variables.contact.contact_privacy %} e responderemos dentro de 45 dias, no máximo. - - No caso improvável de uma disputa que não podemos resolver, você tem acesso à arbitragem vinculativa sem nenhum custo para você. Por favor, consulte nossa [Declaração de Privacidade](/articles/github-privacy-statement/) para obter mais informações. - - Realizaremos auditorias regulares de nossas práticas de privacidade relevantes para verificar o cumprimento das promessas que fizemos. - - Exigimos que nossos funcionários respeitem compromissos de privacidade, e a violação de nossas políticas de privacidade está sujeita a ações disciplinares, incluindo até mesmo a rescisão do contrato de emprego. + - You are always able to access the data we have about you in your [user profile](https://github.com/settings/profile). You may access, update, alter, or delete your information there. +- **Recourse, Enforcement and Liability** + - If you have questions about our privacy practices, you can reach us with our {% data variables.contact.contact_privacy %} and we will respond within 45 days at the latest. + - In the unlikely event of a dispute that we cannot resolve, you have access to binding arbitration at no cost to you. Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. + - We will conduct regular audits of our relevant privacy practices to verify compliance with the promises we have made. + - We require our employees to respect our privacy promises, and violation of our privacy policies is subject to disciplinary action up to and including termination of employment. -### Processo de resolução de conflitos +### Dispute resolution process -Conforme explicado na seção [Resolver reclamações](/github/site-policy/github-privacy-statement#resolving-complaints) da nossa [Declaração de privacidade](/github/site-policy/github-privacy-statement), nós o incentivamos a entrar em contato conosco, caso tenha uma reclamação relacionada ao Escudo de Privacidade (ou alguma reclamação relacionada à privacidade em geral). Para quaisquer reclamações que não possam ser resolvidas com o GitHub diretamente, selecionamos cooperar com a Autoridade de Proteção de Dados relevante da UE ou com o conselho criado pelas autoridades europeias de proteção de dados para a resolução de conflitos com indivíduos da UE, e com o Comissário Federal de Proteção e Informação de Dados (FDPIC) para a resolução de conflitos com indivíduos da Suíça. Se você precisar de direcionamento quanto aos contatos da sua autoridade de proteção de dados, entre em contato conosco. +As further explained in the [Resolving Complaints](/github/site-policy/github-privacy-statement#resolving-complaints) section of our [Privacy Statement](/github/site-policy/github-privacy-statement), we encourage you to contact us should you have a Privacy Shield-related (or general privacy-related) complaint. For any complaints that cannot be resolved with GitHub directly, we have selected to cooperate with the relevant EU Data Protection Authority, or a panel established by the European data protection authorities, for resolving disputes with EU individuals, and with the Swiss Federal Data Protection and Information Commissioner (FDPIC) for resolving disputes with Swiss individuals. Please contact us if you’d like us to direct you to your data protection authority contacts. -Se for residente de um estado-membro da UE, você terá o direito de apresentar queixa junto à autoridade de supervisão local. +Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority. -### Arbitragem independente +### Independent arbitration -Em determinadas circunstâncias, indivíduos da UE, da Área Econômica Europeia (AEE), da Suíça e do Reino Unido podem convocar arbitragem vinculativa para o Escudo de Proteção da Privacidade como último recurso, caso nenhuma das outras formas de resolução de conflitos tenha êxito. Para saber mais sobre esse método de resolução e sua disponibilidade para você, leia mais sobre o [Escudo de Proteção da Privacidade](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). A arbitragem não é obrigatória; trata-se de uma ferramenta disponível para seu uso. +Under certain limited circumstances, EU, European Economic Area (EEA), Swiss, and UK individuals may invoke binding Privacy Shield arbitration as a last resort if all other forms of dispute resolution have been unsuccessful. To learn more about this method of resolution and its availability to you, please read more about [Privacy Shield](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). Arbitration is not mandatory; it is a tool you can use if you so choose. -Estamos sujeitos à jurisdição da Comissão Federal do Comércio dos EUA (FTC). - -Por favor, consulte nossa [Declaração de Privacidade](/articles/github-privacy-statement/) para obter mais informações. +We are subject to the jurisdiction of the US Federal Trade Commission (FTC). + +Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. diff --git a/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md b/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md index 714bb8747d..e2dbb93740 100644 --- a/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md +++ b/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md @@ -1,8 +1,8 @@ --- -title: Guia de envio do contra-aviso de retirada DMCA +title: Guide to Submitting a DMCA Counter Notice redirect_from: - - /dmca-counter-notice-how-to/ - - /articles/dmca-counter-notice-how-to/ + - /dmca-counter-notice-how-to + - /articles/dmca-counter-notice-how-to - /articles/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' @@ -11,58 +11,72 @@ topics: - Legal --- -Este guia descreve as informações de que o GitHub precisa para processar um contra-aviso em uma solicitação de retirada DMCA. Se você tiver dúvidas mais gerais sobre o que é a DMCA ou como o GitHub processa solicitações de retirada DMCA, por favor, reveja nossa [Política de Aviso de Retirada DMCA](/articles/dmca-takedown-policy). +This guide describes the information that GitHub needs in order to process a counter notice to a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -Se você acredita que seu conteúdo no GitHub foi erroneamente desabilitado por uma solicitação de retirada DMCA, você tem o direito de contestá-la, enviando um contra-aviso. Se o fizer, esperaremos entre 10 a 14 dias, e então reativaremos seu conteúdo, a menos que o proprietário dos direitos autorais inicie uma ação judicial contra você antes disso. Nossa forma de contra-aviso descrita abaixo é consistente com o formulário sugerido pelo estatuto DMCA, que pode ser encontrado no site oficial do Escritório de Direitos Autorais dos Estados Unidos: <https://www.copyright.gov>. Site oficial do escritório de direitos autorais: <https://www.copyright.gov>. +If you believe your content on GitHub was mistakenly disabled by a DMCA takedown request, you have the right to contest the takedown by submitting a counter notice. If you do, we will wait 10-14 days and then re-enable your content unless the copyright owner initiates a legal action against you before then. Our counter-notice form, set forth below, is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -Como em todas as questões jurídicas, é sempre melhor consultar um profissional sobre suas dúvidas ou situação específica. Incentivamos a fazê-lo antes de tomar quaisquer medidas que possam impactar seus direitos. Este guia não é um aconselhamento jurídico e não deve ser tomado como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## Antes de começar +## Before You Start -***Diga a verdade.*** A DMCA requer que você jure pelos fatos relatados no seu contra-aviso, *sob pena de perjúrio*. Nos Estados Unidos, é crime federal mentir intencionalmente numa declaração juramentada. (*Veja* [Código dos EUA, Título 18, Seção 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm). Código, Título 18, Seção 1621</a>.) (*Veja* [Código dos EUA, Título 18, Seção 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) O envio de informações falsas também pode resultar em responsabilidade civil — ou seja, você poderia ser processado por danos financeiros. +***Tell the Truth.*** +The DMCA requires that you swear to your counter notice *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability—that is, you could get sued for money damages. -***Investigação.*** Enviar um contra-aviso DMCA pode ter consequências legais reais. Se a parte reclamante discordar que o aviso de retirada dela foi um erro, ela pode decidir instaurar uma queixa contra você para manter o conteúdo desativado. Você deve conduzir uma investigação exaustiva sobre as alegações feitas no aviso de retirada e, provavelmente, falar com um advogado antes de enviar um contra-aviso. +***Investigate.*** +Submitting a DMCA counter notice can have real legal consequences. If the complaining party disagrees that their takedown notice was mistaken, they might decide to file a lawsuit against you to keep the content disabled. You should conduct a thorough investigation into the allegations made in the takedown notice and probably talk to a lawyer before submitting a counter notice. -***Você precisa ter uma boa razão para enviar um contra-aviso.*** Para registrar um contra-aviso, você deve ter "o entendimento, de boa-fé, de que o material foi removido ou desabilitado como resultado de erro ou identificação incorreta do material a ser removido ou desabilitado". ([U.S. Código, Título 17, Seção 512(g)](https://www.copyright.gov/title17/92chap5.html#512).) ([Código EUA, Título 17, Seção 512(g)](http://www.copyright.gov/title17/92chap5.html#512)) A decisão de explicar por que você acredita que houve um erro depende de você e de seu advogado, mas você *realmente* precisa identificar um erro antes de enviar um contra-aviso. No passado, recebemos contra-avisos que citavam erros no aviso de retirada, tais como: a parte reclamante não possui os direitos de autor; eu tenho uma licença; o código foi publicado sob uma licença de código aberto que permite meu uso; ou a reclamação não conta o fato de que meu uso está protegido pela doutrina de uso justo. É claro que poderiam existir outros defeitos em relação ao aviso de retirada. +***You Must Have a Good Reason to Submit a Counter Notice.*** +In order to file a counter notice, you must have "a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled." ([U.S. Code, Title 17, Section 512(g)](https://www.copyright.gov/title17/92chap5.html#512).) Whether you decide to explain why you believe there was a mistake is up to you and your lawyer, but you *do* need to identify a mistake before you submit a counter notice. In the past, we have received counter notices citing mistakes in the takedown notice such as: the complaining party doesn't have the copyright; I have a license; the code has been released under an open-source license that permits my use; or the complaint doesn't account for the fact that my use is protected by the fair-use doctrine. Of course, there could be other defects with the takedown notice. -***As leis de direitos autorais são complicadas.*** Às vezes, um aviso de retirada pode alegar violação de uma forma que parece atípica ou indireta. As leis de direitos autorais são complicadas e podem dar origem a alguns resultados inesperados. Em alguns casos, um aviso de retirada pode alegar que o seu código-fonte infringe os direitos por causa do que ele pode fazer após ser compilado e executado. Por exemplo: - - O aviso pode afirmar que seu software é usado para [contornar controles de acesso](https://www.copyright.gov/title17/92chap12.html) de trabalhos protegidos por direitos autorais. - - [Algumas vezes,](https://www.copyright.gov/docs/mgm/) o software de distribuição pode violar direitos autorais, se você induzir os usuários finais a usarem o software para infringir trabalhos protegidos por direitos autorais. - - Uma reclamação de direitos autorais também pode ser baseada na [cópia não literal](https://en.wikipedia.org/wiki/Substantial_similarity) de elementos do design no software, ao invés do próprio código fonte — em outras palavras, alguém enviou um aviso dizendo que eles acham que o seu *design* se parece com o deles. +***Copyright Laws Are Complicated.*** +Sometimes a takedown notice might allege infringement in a way that seems odd or indirect. Copyright laws are complicated and can lead to some unexpected results. In some cases a takedown notice might allege that your source code infringes because of what it can do after it is compiled and run. For example: + - The notice may claim that your software is used to [circumvent access controls](https://www.copyright.gov/title17/92chap12.html) to copyrighted works. + - [Sometimes](https://www.copyright.gov/docs/mgm/) distributing software can be copyright infringement, if you induce end users to use the software to infringe copyrighted works. + - A copyright complaint might also be based on [non-literal copying](https://en.wikipedia.org/wiki/Substantial_similarity) of design elements in the software, rather than the source code itself — in other words, someone has sent a notice saying they think your *design* looks too similar to theirs. -Esses são apenas alguns exemplos da complexidade da legislação em direitos autorais. Considerando que há muitas nuances na lei e algumas questões por resolver nesses tipos de casos, é especialmente importante obter aconselhamento profissional se as alegações por infração não parecerem simples. +These are just a few examples of the complexities of copyright law. Since there are many nuances to the law and some unsettled questions in these types of cases, it is especially important to get professional advice if the infringement allegations do not seem straightforward. -***Um contra-aviso é uma declaração legal.*** Exigimos que você preencha todos os campos de um contra-aviso, porque um contra-aviso é uma declaração legal — não apenas para nós, mas para a parte reclamante. Conforme mencionado acima, se a parte reclamante desejar manter o conteúdo desabilitado após receber um contra-aviso, ela precisará iniciar uma ação na justiça em busca de uma decisão judicial para impedir você de continuar uma atividade infratora relacionada ao conteúdo no GitHub. Em outras palavras, você pode ser processado (e você concorda com isso no contra-aviso). +***A Counter Notice Is A Legal Statement.*** +We require you to fill out all fields of a counter notice completely, because a counter notice is a legal statement — not just to us, but to the complaining party. As we mentioned above, if the complaining party wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain you from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued (and you consent to that in the counter notice). -***Seu contra-aviso será publicado.*** Conforme observado em nossa [Política de Contra-aviso DMCA](/articles/dmca-takedown-policy#d-transparency), **depois de suprimir as informações pessoais,** publicamos todos os contra-avisos completos e válidos em <https://github.com/github/dmca>. Note também que, embora divulguemos publicamente somente avisos com conteúdo pessoal suprimido, podemos fornecer uma cópia completa sem conteúdo suprimido de qualquer aviso que recebermos diretamente para qualquer uma das partes cujos direitos seriam afetados por ele. Se você está preocupado com sua privacidade, consulte um advogado para que ele envie o contra-aviso em seu nome. +***Your Counter Notice Will Be Published.*** +As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), **after redacting personal information,** we publish all complete and actionable counter notices at <https://github.com/github/dmca>. Please also note that, although we will only publicly publish redacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. If you are concerned about your privacy, you may have a lawyer or other legal representative file the counter notice on your behalf. -***O GitHub não é juiz.*** O GitHub se envolve pouco no processo, limitando-se a determinar se os avisos atendem aos requisitos mínimos da DMCA. Cabe às partes (e aos seus advogados) avaliar o mérito das suas reivindicações, tendo em conta que os avisos devem ser feitos corretamente sob pena de perjúrio. +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in this process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -***Recursos Adicionais.*** Se você precisar de ajuda adicional, há muitos recursos de autoajuda online. A Lumen possui um conjunto informativo de guias sobre [direitos autorais](https://www.lumendatabase.org/topics/5) e [porto-seguro DMCA](https://www.lumendatabase.org/topics/14). Se você estiver envolvido com um projeto de código aberto precisando de aconselhamento jurídico, entre em contato com o [Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/). E se você acredita que tem um caso particularmente desafiador, organizações sem fins lucrativos como a [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) também podem estar dispostas a ajudá-lo diretamente ou encaminhá-lo a um advogado. +***Additional Resources.*** +If you need additional help, there are many self-help resources online. Lumen has an informative set of guides on [copyright](https://www.lumendatabase.org/topics/5) and [DMCA safe harbor](https://www.lumendatabase.org/topics/14). If you are involved with an open-source project in need of legal advice, you can contact the [Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/). And if you think you have a particularly challenging case, non-profit organizations such as the [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) may also be willing to help directly or refer you to a lawyer. -## Seu contra-aviso deve... +## Your Counter Notice Must... -1. **Incluir a seguinte instrução: "Eu li e compreendi o Guia do GitHub para o Preenchimento de um Contra-aviso DMCA.** Não nos recusaremos a processar um contra-aviso se você não incluir esta declaração. No entanto, saberemos que você não leu estas orientações e poderemos pedir para que você o faça. +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Counter Notice."** +We won't refuse to process an otherwise complete counter notice if you don't include this statement; however, we will know that you haven't read these guidelines and may ask you to go back and do so. -2. ***Identificar o conteúdo que foi desabilitado e o local onde aparece.*** O conteúdo desabilitado deve ser identificado pela URL no aviso de retirada. Você precisa simplesmente copiar a(s) URL(s) que você deseja alterar. +2. ***Identify the content that was disabled and the location where it appeared.*** +The disabled content should have been identified by URL in the takedown notice. You simply need to copy the URL(s) that you want to challenge. -3. **Fornecer suas informações de contato.** Inclua seu endereço de e-mail, nome, número de telefone e endereço físico. +3. **Provide your contact information.** +Include your email address, name, telephone number, and physical address. -4. ***Incluir a seguinte declaração: "Eu juro, sob pena de perjúrio, que acredito de boa-fé, que o material foi removido ou desabilitado em consequência de um erro ou de uma identificação incorreta do material a ser removido ou desabilitado.*** Você também pode optar por comunicar as razões pelas quais você acredita que houve um erro ou identificação incorreta. Se você pensar que seu contra-aviso representa uma "notificação" para a parte reclamante, essa é uma oportunidade para explicar por que razão ela não deve dar o próximo passo e ingressar com uma ação judicial em resposta. Esse é mais um motivo para contar com um advogado ao enviar um contra-aviso. +4. ***Include the following statement: "I swear, under penalty of perjury, that I have a good-faith belief that the material was removed or disabled as a result of a mistake or misidentification of the material to be removed or disabled."*** +You may also choose to communicate the reasons why you believe there was a mistake or misidentification. If you think of your counter notice as a "note" to the complaining party, this is a chance to explain why they should not take the next step and file a lawsuit in response. This is yet another reason to work with a lawyer when submitting a counter notice. -5. ***Incluir a seguinte declaração: "Aceito a jurisdição do Tribunal Distrital Federal para a comarca em que meu endereço está localizado (caso esteja nos Estados Unidos, caso contrário, o Distrito do Norte da Califórnia, onde o GitHub está localizado), e aceitarei a citação processual da pessoa que forneceu o aviso DMCA ou um representante dessa pessoa".*** +5. ***Include the following statement: "I consent to the jurisdiction of Federal District Court for the judicial district in which my address is located (if in the United States, otherwise the Northern District of California where GitHub is located), and I will accept service of process from the person who provided the DMCA notification or an agent of such person."*** -6. **Incluir sua assinatura física ou eletrônica.** +6. **Include your physical or electronic signature.** -## Como enviar seu contra-aviso +## How to Submit Your Counter Notice -A maneira mais rápida de obter uma resposta é inserir suas informações e responder todas as perguntas em nosso {% data variables.contact.contact_dmca %}. +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -Você também pode enviar notificações de e-mail para <copyright@github.com>. Você pode incluir um anexo, se quiser, mas inclua também uma versão em texto simples da sua carta no corpo da sua mensagem. +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -Se você precisa enviar seu aviso por correio físico, você também pode fazê-lo, mas levaremos um tempo *substancialmente* maior para que possamos receber e responder a ele — e o período de espera de 10 a 14 dias começa a contar a partir do dia em que *recebermos* seu contra-aviso. Avisos que recebemos por e-mail em texto simples têm um tempo de resposta muito mais rápido do que por PDF anexado ou mensagem física. Se você ainda assim deseja nos enviar seu aviso por correio, nosso endereço físico é: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it—and the 10-14 day waiting period starts from when we *receive* your counter notice. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` -GitHub, Inc Attn: DMCA Agent -88 Colin P Kelly Jr St San Francisco, CA. 94107 +GitHub, Inc +Attn: DMCA Agent +88 Colin P Kelly Jr St +San Francisco, CA. 94107 ``` diff --git a/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md b/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md index ad66c824db..deccf23500 100644 --- a/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md +++ b/translations/pt-BR/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md @@ -1,8 +1,8 @@ --- -title: Guia de envio do aviso de retirada DMCA +title: Guide to Submitting a DMCA Takedown Notice redirect_from: - - /dmca-notice-how-to/ - - /articles/dmca-notice-how-to/ + - /dmca-notice-how-to + - /articles/dmca-notice-how-to - /articles/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' @@ -11,81 +11,84 @@ topics: - Legal --- -Este guia descreve as informações de que o GitHub precisa para processar uma solicitação de retirada DMCA. Se você tiver dúvidas mais gerais sobre o que é a DMCA ou como o GitHub processa solicitações de retirada DMCA, por favor, reveja nossa [Política de Aviso de Retirada DMCA](/articles/dmca-takedown-policy). +This guide describes the information that GitHub needs in order to process a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -Devido ao tipo de conteúdo que o GitHub hospeda (principalmente código de software) e a forma como o conteúdo é gerenciado (com o Git), precisamos que as queixas sejam as mais específicas possíveis. Essas diretrizes destinam-se a tornar o processamento dos alegados avisos de infração o mais simples possível. A nossa forma de aviso descrita abaixo é consistente com o formulário sugerido pelo estatuto DMCA, que pode ser encontrado no site oficial do Escritório de Direitos Autorais dos Estados Unidos: <https://www.copyright.gov>. Site oficial do escritório de direitos autorais: <https://www.copyright.gov>. +Due to the type of content GitHub hosts (mostly software code) and the way that content is managed (with Git), we need complaints to be as specific as possible. These guidelines are designed to make the processing of alleged infringement notices as straightforward as possible. Our form of notice set forth below is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -Como em todas as questões jurídicas, é sempre melhor consultar um profissional sobre suas dúvidas ou situação específica. Incentivamos a fazê-lo antes de tomar quaisquer medidas que possam impactar seus direitos. Este guia não é um aconselhamento jurídico e não deve ser tomado como tal. +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## Antes de começar +## Before You Start -***Diga a verdade.*** A DMCA requer que você jure pelos fatos relatados na reclamação dos direitos autorais, *sob pena de perjúrio*. Nos Estados Unidos, é crime federal mentir intencionalmente numa declaração juramentada. (*Veja* [Código dos EUA, Título 18, Seção 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm). Código, Título 18, Seção 1621</a>.) O envio de informações falsas também poderia resultar em responsabilidade civil — ou seja, você poderia ser processado por danos financeiros. A própria DMCA [prevê danos](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) contra qualquer pessoa que, intencionalmente, deturpe materialmente o material ou a atividade que está sendo alvo de denúncia de violação de direitos autorais. +***Tell the Truth.*** The DMCA requires that you swear to the facts in your copyright complaint *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability — that is, you could get sued for money damages. The DMCA itself [provides for damages](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) against any person who knowingly materially misrepresents that material or activity is infringing. -***Investigue.*** Milhões de usuários e organizações dedicam seus corações e mentes aos projetos para os quais eles contribuem e criam no GitHub. Apresentar uma queixa DMCA contra um projeto deste tipo é uma acusação jurídica grave que acarreta consequências reais para pessoas reais. Por causa disso, solicitamos que procedam a uma investigação minuciosa e consultem um advogado antes de apresentar um requerimento para se certificar de que tal uso não seja realmente permitido. +***Investigate.*** Millions of users and organizations pour their hearts and souls into the projects they create and contribute to on GitHub. Filing a DMCA complaint against such a project is a serious legal allegation that carries real consequences for real people. Because of that, we ask that you conduct a thorough investigation and consult with an attorney before submitting a takedown to make sure that the use isn't actually permissible. -***Primeiro, peça gentilmente.*** Um ótimo primeiro passo antes de nos enviar um aviso é tentar entrar em contato diretamente com o usuário. Ele pode ter listado informações de contato na página de perfil público dele ou no README do repositório, ou você pode obter um contato abrindo um problema ou uma pull request no repositório. Isso não é estritamente necessário, mas é educado. +***Ask Nicely First.*** A great first step before sending us a takedown notice is to try contacting the user directly. They may have listed contact information on their public profile page or in the repository's README, or you could get in touch by opening an issue or pull request on the repository. This is not strictly required, but it is classy. -***Envie a solicitação correta.*** Só podemos aceitar avisos de DMCA para trabalhos protegidos por direitos autorais e que identifiquem um trabalho específico com direitos autorais. Se você tem uma reclamação sobre abuso de uso de marcas comerciais, por favor, veja nossa [Política de Marcas Registradas](/articles/github-trademark-policy/). Se você deseja remover dados confidenciais, como as senhas, consulte nossa [Política de Dados Confidenciais](/articles/github-sensitive-data-removal-policy/). Se estiver lidando com difamações ou outros comportamentos abusivos, veja as nossas [Diretrizes da Comunidade](/articles/github-community-guidelines/). +***Send In The Correct Request.*** We can only accept DMCA takedown notices for works that are protected by copyright, and that identify a specific copyrightable work. If you have a complaint about trademark abuse, please see our [trademark policy](/articles/github-trademark-policy/). If you wish to remove sensitive data such as passwords, please see our [policy on sensitive data](/articles/github-sensitive-data-removal-policy/). If you are dealing with defamation or other abusive behavior, please see our [Community Guidelines](/articles/github-community-guidelines/). -***Códigos são diferentes de outros conteúdos criativos.*** O GitHub foi projetado para a colaboração em código de softwares. Isto torna a identificação de uma violação válida dos direitos autorais mais complicada do que poderia ser, por exemplo, para fotos, música ou vídeos. +***Code Is Different From Other Creative Content.*** GitHub is built for collaboration on software code. This makes identifying a valid copyright infringement more complicated than it might otherwise be for, say, photos, music, or videos. -Há uma série de razões pelas quais códigos são diferentes de outros conteúdos criativos. Por exemplo: +There are a number of reasons why code is different from other creative content. For instance: -- Um repositório pode incluir bits e pedaços de código de muitas pessoas diferentes, mas apenas um arquivo ou até mesmo uma subrotina dentro de um arquivo viola seus direitos autorais. -- Códigos misturam funcionalidade com expressão criativa, mas os direitos autorais protegem apenas os elementos expressivos, não as partes funcionais. -- Muitas vezes há licenças a considerar. O fato de uma peça de código ter um aviso de direitos autorais não significa, necessariamente, que esteja violando direitos. É possível que o código esteja sendo utilizado de acordo com uma licença de código aberto. -- Um determinado uso pode ser considerado [justo](https://www.lumendatabase.org/topics/22) se utilizar apenas uma pequena quantidade de conteúdo com direitos autorais, se utilizar esse conteúdo de forma transformada, se usá-lo para fins educacionais, ou alguma combinação do exposto acima. Como o código se presta naturalmente a tais usos, cada caso de utilização é diferente, e deve ser considerado separadamente. -- Códigos podem ser alegadamente violadores de direitos autorais de muitas maneiras diferentes, exigindo explicações pormenorizadas e identificações de trabalho. +- A repository may include bits and pieces of code from many different people, but only one file or even a sub-routine within a file infringes your copyrights. +- Code mixes functionality with creative expression, but copyright only protects the expressive elements, not the parts that are functional. +- There are often licenses to consider. Just because a piece of code has a copyright notice does not necessarily mean that it is infringing. It is possible that the code is being used in accordance with an open-source license. +- A particular use may be [fair-use](https://www.lumendatabase.org/topics/22) if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +- Code may be alleged to infringe in many different ways, requiring detailed explanations and identifications of works. -Esta lista não é exaustiva, e é por isso que falar com um advogado sobre a queixa proposta é duplamente importante quando se trata de código. +This list isn't exhaustive, which is why speaking to a legal professional about your proposed complaint is doubly important when dealing with code. -***Sem bots.*** Você precisa contar com a avaliação de um profissional treinado a respeito dos fatos de cada aviso de retirada que você envia. Se você estiver terceirizando seus esforços para terceiros, certifique-se de saber como eles operam, e certifique-se de que eles não estão usando bots automatizados para enviar reclamações em massa. Essas queixas são, muitas vezes, inválidas e o seu processamento resulta em projetos desnecessariamente retirados! +***No Bots.*** You should have a trained professional evaluate the facts of every takedown notice you send. If you are outsourcing your efforts to a third party, make sure you know how they operate, and make sure they are not using automated bots to submit complaints in bulk. These complaints are often invalid and processing them results in needlessly taking down projects! -***Questões de direitos autorais são difíceis.*** Pode ser muito difícil determinar se um trabalho específico está protegido por direitos de autor. Por exemplo, fatos (incluindo dados), geralmente, não são protegidos por direitos autorais. Palavras e frases curtas, geralmente, não são protegidas por direitos autorais. URLs e nomes de domínio, geralmente, não são protegidos por direitos autorais. Considerando que você só pode usar o processo DMCA direcionado a conteúdos protegidos por direitos autorais, se tiver dúvidas sobre se o seu conteúdo é ou não protegido, consulte um advogado. +***Matters of Copyright Are Hard.*** It can be very difficult to determine whether or not a particular work is protected by copyright. For example, facts (including data) are generally not copyrightable. Words and short phrases are generally not copyrightable. URLs and domain names are generally not copyrightable. Since you can only use the DMCA process to target content that is protected by copyright, you should speak with a lawyer if you have questions about whether or not your content is protectable. -***Você pode receber um contra-aviso de retirada.*** Qualquer usuário afetado por seu aviso de retidada pode decidir enviar um [contra-aviso de retirada](/articles/guide-to-submitting-a-dmca-counter-notice). Se isso acontecer, reativaremos o conteúdo dele dentro de 10-14 dias, a menos que você nos notifique de que iniciou uma ação na justiça procurando impedir que o usuário se envolva em atividades infratoras relacionadas ao conteúdo no GitHub. +***You May Receive a Counter Notice.*** Any user affected by your takedown notice may decide to submit a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). If they do, we will re-enable their content within 10-14 days unless you notify us that you have initiated a legal action seeking to restrain the user from engaging in infringing activity relating to the content on GitHub. -***Sua reclamação será publicada.*** Conforme observado em nossa [Política de retirada DMCA](/articles/dmca-takedown-policy#d-transparency), depois de excluir as informações pessoais, publicaremos em <https://github.com/github/dmca>, na íntegra, todos os avisos de retirada válidos recebidos. +***Your Complaint Will Be Published.*** As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), after redacting personal information, we publish all complete and actionable takedown notices at <https://github.com/github/dmca>. -***O GitHub não é juiz.*** O GitHub se envolve pouco no processo, limitando-se a determinar se os avisos atendem aos requisitos mínimos da DMCA. Cabe às partes (e aos seus advogados) avaliar o mérito das suas reivindicações, tendo em conta que os avisos devem ser feitos corretamente sob pena de perjúrio. +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -## Sua reclamação deve... +## Your Complaint Must ... -1. **Incluir a seguinte declaração: "Eu li e compreendi o Guia do GitHub para o Preenchimento de um Aviso DMCA".** Não nos recusaremos a processar um aviso, caso você não inclua essa declaração. Mas saberemos que você não leu essas diretrizes e poderemos pedir para que o faça. +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Notice."** We won't refuse to process an otherwise complete complaint if you don't include this statement. But we'll know that you haven't read these guidelines and may ask you to go back and do so. -2. **Identificar o trabalho protegido por direitos autorais que você acredita ter sido violado.** Essa informação é importante porque ajuda o usuário afetado a avaliar sua reivindicação e a dar a ele a capacidade de comparar seu trabalho com o dele. A especificidade da sua identificação dependerá da natureza do trabalho que você acredita ter sido violado. Se você publicou seu trabalho, talvez consiga fornecer um link para a página web onde ele está hospedado. Se você for proprietário e não tiver publicado, poderá descrevê-lo e explicar que detém a propriedade. Se você o registrou no Escritório de Direitos Autorais, inclua o número de registro. Se você está alegando que o conteúdo hospedado é uma cópia direta e literal do seu trabalho, também pode explicar esse fato. +2. **Identify the copyrighted work you believe has been infringed.** This information is important because it helps the affected user evaluate your claim and give them the ability to compare your work to theirs. The specificity of your identification will depend on the nature of the work you believe has been infringed. If you have published your work, you might be able to just link back to a web page where it lives. If it is proprietary and not published, you might describe it and explain that it is proprietary. If you have registered it with the Copyright Office, you should include the registration number. If you are alleging that the hosted content is a direct, literal copy of your work, you can also just explain that fact. -3. **Identificar o material que você alega estar violnado o trabalho protegido por direitos autorais listado no item #2 acima.** É importante ser o mais específico possível em sua identificação. Essa identificação precisa ser razoavelmente suficiente para permitir que o GitHub localize o material. No mínimo, isso significa que você deve incluir a URL do material que alegadamente viola seus direitos autorais. Se você alegar que um repositório não infringe os direitos autorais como um todo, identifique o(s) arquivo(s) específico(s) ou números de linhas dentro de um arquivo que você alega infringir. Se você alegar que todo o conteúdo de uma URL infringe os direitos, por favor, seja explícito a respeito disso também. - - Observe que o GitHub *não* desabilitará automaticamente [bifurcações](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) ao desabilitar um repositório principal. Se você investigou e analisou as bifurcações de um repositório e acredita que elas também estão infringindo direitos, por favor, identifique explicitamente cada bifurcação supostamente violadora. Por favor, confirme também que você investigou cada caso individual e que suas declarações juramentadas se aplicam a cada bifurcação identificada. Em casos raros, você pode estar alegando a violação de direitos autorais em um repositório completo que está sendo ativamente bifurcado. Se, no momento em que você enviou a notificação, você identificou todas as bifurcações existentes do repositório como supostamente violadas, nós processaríamos uma reivindicação válida contra todas as bifurcações dessa rede no momento em que processamos a notificação. Nós faríamos isso tendo em conta a probabilidade de todas as novas bifurcações criadas conterem o mesmo conteúdo. Além disso se a rede relatada que contém o conteúdo supostamente violador for superior a 100 (cem) repositórios, seria difícil, portanto, revisá-la na sua totalidade, e podemos considerar a desabilitação de toda a rede se você declarar na sua notificação que, "Com base no número representativo de bifurcações que você analisou, acredito que todos ou a maioria das bifurcações estão cometendo violações na mesma medida que o repositório principal". A sua declaração juramentada será aplicada a esta declaração. +3. **Identify the material that you allege is infringing the copyrighted work listed in item #2, above.** It is important to be as specific as possible in your identification. This identification needs to be reasonably sufficient to permit GitHub to locate the material. At a minimum, this means that you should include the URL to the material allegedly infringing your copyright. If you allege that less than a whole repository infringes, identify the specific file(s) or line numbers within a file that you allege infringe. If you allege that all of the content at a URL infringes, please be explicit about that as well. + - Please note that GitHub will *not* automatically disable [forks](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) when disabling a parent repository. If you have investigated and analyzed the forks of a repository and believe that they are also infringing, please explicitly identify each allegedly infringing fork. Please also confirm that you have investigated each individual case and that your sworn statements apply to each identified fork. In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks you have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -4. **Explicar o que o usuário afetado precisa fazer para corrigir a infração.** Novamente, ser específico é importante. Ao passarmos sua reclamação para o usuário, ela precisa mostrar claramente o que ele precisa fazer para evitar que o resto do conteúdo seja desabilitado. O usuário precisa apenas adicionar uma declaração de atribuição? Ele precisa excluir determinadas linhas dentro do código deles, ou arquivos inteiros? Compreendemos que, em alguns casos, todo o conteúdo de um usuário pode supostamente estar infringido direitos e não há nada que ele possa fazer a não ser deletar tudo. Se esse for o caso, por favor, deixe isso claro. +4. **Explain what the affected user would need to do in order to remedy the infringement.** Again, specificity is important. When we pass your complaint along to the user, this will tell them what they need to do in order to avoid having the rest of their content disabled. Does the user just need to add a statement of attribution? Do they need to delete certain lines within their code, or entire files? Of course, we understand that in some cases, all of a user's content may be alleged to infringe and there's nothing they could do short of deleting it all. If that's the case, please make that clear as well. -5. **Fornecer suas informações de contato.** Inclua seu endereço de e-mail, nome, número de telefone e endereço físico. +5. **Provide your contact information.** Include your email address, name, telephone number and physical address. -6. **Fornecer informações de contato do infrator, caso conheça.** Geralmente, será suficiente fornecer o nome de usuário do GitHub associado ao conteúdo supostamente violador de direitos. Mas pode haver casos em que você tenha conhecimento adicional sobre o suposto infrator. Em caso afirmativo, compartilhe conosco essa informação. +6. **Provide contact information, if you know it, for the alleged infringer.** Usually this will be satisfied by providing the GitHub username associated with the allegedly infringing content. But there may be cases where you have additional knowledge about the alleged infringer. If so, please share that information with us. -7. **Incluir a afirmação a seguir: "Acredito, de boa fé, que o uso dos materiais protegidos por direitos autorais descritos acima, nas páginas infratoras, não foi autorizado pelo proprietário dos direitos autorais ou por seu agente ou pela lei. Levei em consideração o uso justo."** +7. **Include the following statement: "I have a good faith belief that use of the copyrighted materials described above on the infringing web pages is not authorized by the copyright owner, or its agent, or the law. I have taken fair use into consideration."** -8. **Incluir também a seguinte declaração: "Juro, sob pena de perjúrio, que a informação neste aviso é correta, e que sou o proprietário dos direitos autorais, ou estou autorizado a agir em nome do proprietário de um direito exclusivo que alegadamente foi violado."** +8. **Also include the following statement: "I swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright owner, or am authorized to act on behalf of the owner, of an exclusive right that is allegedly infringed."** -9. **Incluir sua assinatura física ou eletrônica.** +9. **Include your physical or electronic signature.** -## Queixas sobre Tecnologia Anticircunvenção +## Complaints about Anti-Circumvention Technology -A Lei de Direitos Autorais proíbe, igualmente, que se burle medidas tecnológicas que controlem efetivamente o acesso às obras protegidas pelos direitos de autor. Se você acredita que o conteúdo hospedado no GitHub viola esta proibição, envie-nos um relatório por meio de nossa {% data variables.contact.contact_dmca %}. Uma alegação de circunvenção deve incluir os pormenores a seguir sobre as medidas técnicas em vigor e a forma como o projeto acusado as contorna. Principalmente, o aviso ao GitHub deve incluir declarações detalhadas que descrevem: -1. Quais são as medidas técnicas; -2. Como controlam, de forma eficaz, o acesso ao material protegido por direitos autorais; e -3. O modo como o projecto acusado foi concebido para contornar as medidas de proteção tecnológica anteriormente descritas. +The Copyright Act also prohibits the circumvention of technological measures that effectively control access to works protected by copyright. If you believe that content hosted on GitHub violates this prohibition, please send us a report through our {% data variables.contact.contact_dmca %}. A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -## Como enviar sua reclamação +## How to Submit Your Complaint -A maneira mais rápida de obter uma resposta é inserir suas informações e responder todas as perguntas em nosso {% data variables.contact.contact_dmca %}. +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -Você também pode enviar notificações de e-mail para <copyright@github.com>. Você pode incluir um anexo, se quiser, mas inclua também uma versão em texto simples da sua carta no corpo da sua mensagem. +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -Se você precisa enviar o aviso por correio físico, você também pode fazer isso, mas vai demorar *substancialmente* para que possamos receber e responder. Avisos que recebemos por e-mail em texto simples têm um tempo de resposta muito mais rápido do que por PDF anexado ou mensagem física. Se você ainda assim deseja nos enviar seu aviso por correio, nosso endereço físico é: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` -GitHub, Inc Attn: DMCA Agent -88 Colin P Kelly Jr St San Francisco, CA. 94107 +GitHub, Inc +Attn: DMCA Agent +88 Colin P Kelly Jr St +San Francisco, CA. 94107 ``` diff --git a/translations/pt-BR/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md b/translations/pt-BR/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md index 42656ddf29..d78d303584 100644 --- a/translations/pt-BR/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md +++ b/translations/pt-BR/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md @@ -1,7 +1,7 @@ --- -title: Diretrizes para solicitações legais de dados do usuário +title: Guidelines for Legal Requests of User Data redirect_from: - - /law-enforcement-guidelines/ + - /law-enforcement-guidelines - /articles/guidelines-for-legal-requests-of-user-data versions: fpt: '*' @@ -10,185 +10,241 @@ topics: - Legal --- -Você é um oficial da lei que está conduzindo uma investigação envolvendo o conteúdo de usuário hospedado no GitHub? Ou talvez você seja uma pessoa consciente de privacidade que gostaria de saber quais informações compartilhamos com um oficial da lei e sob quais circunstâncias. De qualquer forma, você está na página certa. +Are you a law enforcement officer conducting an investigation that may involve user content hosted on GitHub? +Or maybe you're a privacy-conscious person who would like to know what information we share with law enforcement and under what circumstances. +Either way, you're on the right page. -Nessas diretrizes, informamos quem é o GitHub, os tipos de dados que temos, e as condições em que divulgaremos as informações privadas do usuário. Antes de entrarmos nos detalhes, aqui estão alguns dados importantes que você pode querer saber: +In these guidelines, we provide a little background about what GitHub is, the types of data we have, and the conditions under which we will disclose private user information. +Before we get into the details, however, here are a few important details you may want to know: -- Vamos [**notificar os usuários afetados**](#we-will-notify-any-affected-account-owners) sobre quaisquer solicitações sobre suas informações de conta, a menos que seja proibido fazê-lo por lei ou por decisão judicial. -- Não divulgaremos **dados de rastreamento de localização**, tais como registros de endereços IP, sem uma [ordem judicial válida ou mandado de busca](#with-a-court-order-or-a-search-warrant). -- Não divulgaremos nenhum **conteúdo privado do usuário**, incluindo o conteúdo de repositórios privados, sem um [mandado de busca válido](#only-with-a-search-warrant). +- We will [**notify affected users**](#we-will-notify-any-affected-account-owners) about any requests for their account information, unless prohibited from doing so by law or court order. +- We will not disclose **location-tracking data**, such as IP address logs, without a [valid court order or search warrant](#with-a-court-order-or-a-search-warrant). +- We will not disclose any **private user content**, including the contents of private repositories, without a valid [search warrant](#only-with-a-search-warrant). -## Sobre estas diretrizes +## About these guidelines -Nossos usuários nos confiam seus projetos e códigos de software — muitas vezes, alguns dos seus negócios ou ativos pessoais mais valiosos. Manter essa confiança é essencial para nós, o que significa manter os dados do usuário protegidos, seguros e privados. +Our users trust us with their software projects and code—often some of their most valuable business or personal assets. +Maintaining that trust is essential to us, which means keeping user data safe, secure, and private. -Embora a esmagadora maioria de nossos usuários use os serviços do GitHub para criar novos negócios, construir novas tecnologias e melhorar a humanidade em geral, reconhecemos que, com milhões de usuários espalhados por todo o mundo, haverá certamente algumas maçãs podres. Nesses casos, queremos ajudar no cumprimento da lei e proteger nosso público. +While the overwhelming majority of our users use GitHub's services to create new businesses, build new technologies, and for the general betterment of humankind, we recognize that with millions of users spread all over the world, there are bound to be a few bad apples in the bunch. +In those cases, we want to help law enforcement serve their legitimate interest in protecting the public. -Ao estabelecer diretrizes para os responsáveis pela aplicação da lei, esperamos encontrar um equilíbrio entre os interesses frequentemente concorrentes da privacidade do usuário e da justiça. Esperamos que essas diretrizes ajudem a definir expectativas para ambos os lados, e acrescente transparência aos processos internos do GitHub. Nossos usuários devem saber que valorizamos suas informações privadas e que fazemos tudo o que estiver ao nosso alcance para protegê-las. No mínimo, isso significa transmitir dados a terceiros somente quando os requisitos legais adequados tiverem sido cumpridos. Da mesma forma, também esperamos educar os responsáveis pela aplicação da lei sobre os sistemas do GitHub, para que eles possam adaptar de forma mais eficiente suas solicitações de dados e solicitar apenas as informações necessárias para realizar suas investigações. +By providing guidelines for law enforcement personnel, we hope to strike a balance between the often competing interests of user privacy and justice. +We hope these guidelines will help to set expectations on both sides, as well as to add transparency to GitHub's internal processes. +Our users should know that we value their private information and that we do what we can to protect it. +At a minimum, this means only releasing data to third-parties when the appropriate legal requirements have been satisfied. +By the same token, we also hope to educate law enforcement professionals about GitHub's systems so that they can more efficiently tailor their data requests and target just that information needed to conduct their investigation. -## Terminologia GitHub +## GitHub terminology -Antes de nos pedir para divulgar dados, pode ser útil entender como nosso sistema é implementado. O GitHub hospeda milhões de repositórios de dados usando o [sistema de controle de versões do Git](https://git-scm.com/video/what-is-version-control). Os repositórios no GitHub, que podem ser públicos ou privados, são mais comumente usados para projetos de desenvolvimento de software, mas também são frequentemente usados para trabalhar em conteúdos de todos os tipos. +Before asking us to disclose data, it may be useful to understand how our system is implemented. +GitHub hosts millions of data repositories using the [Git version control system](https://git-scm.com/video/what-is-version-control). +Repositories on GitHub—which may be public or private—are most commonly used for software development projects, but are also often used to work on content of all kinds. -- [**Usuários**](/articles/github-glossary#user) — Os usuários estão representados em nosso sistema como contas pessoais do GitHub. Cada usuário tem um perfil pessoal e pode possuir vários repositórios. Os usuários podem criar ou serem convidados a integrar organizações ou a colaborar com repositórios de outro usuário. +- [**Users**](/articles/github-glossary#user) — +Users are represented in our system as personal GitHub accounts. +Each user has a personal profile, and can own multiple repositories. +Users can create or be invited to join organizations or to collaborate on another user's repository. -- [**Colaboradores**](/articles/github-glossary#collaborator) - Um colaborador é um usuário com acesso de leitura e escrita em um repositório, que foi convidado pelo proprietário do repositório a contribuir. +- [**Collaborators**](/articles/github-glossary#collaborator) — +A collaborator is a user with read and write access to a repository who has been invited to contribute by the repository owner. -- [**Organizações**](/articles/github-glossary#organization) — Organizações são um grupo de dois ou mais usuários que, normalmente, espelham organizações do mundo real, como empresas ou projetos. Elas são administradas por usuários e podem conter repositórios e equipes de usuários. +- [**Organizations**](/articles/github-glossary#organization) — +Organizations are a group of two or more users that typically mirror real-world organizations, such as businesses or projects. +They are administered by users and can contain both repositories and teams of users. -- [**Repositórios**](/articles/github-glossary#repository) — Um repositório é um dos elementos mais básicos do GitHub. Imagine-o como a pasta de um projeto. Um repositório contém todos os arquivos de projeto (incluindo a documentação) e armazena o histórico de revisão de cada arquivo. Os repositórios podem ter vários colaboradores e, a critério dos seus administradores, podem estar publicamente visíveis ou não. +- [**Repositories**](/articles/github-glossary#repository) — +A repository is one of the most basic GitHub elements. +They may be easiest to imagine as a project's folder. +A repository contains all of the project files (including documentation), and stores each file's revision history. +Repositories can have multiple collaborators and, at its administrators' discretion, may be publicly viewable or not. -- [**Páginas**](/articles/what-is-github-pages) — GitHub Pages são páginas públicas na web, hospedadas gratuitamente pelo GitHub, que os usuários podem facilmente publicar através de código armazenado em seus repositórios. Se um usuário ou uma organização tem uma GitHub Page, geralmente, ela pode ser encontrada em uma URL como `https://username. ithub.io` ou pode ter a página da web mapeada para seu próprio nome de domínio personalizado. +- [**Pages**](/articles/what-is-github-pages) — +GitHub Pages are public webpages freely hosted by GitHub that users can easily publish through code stored in their repositories. +If a user or organization has a GitHub Page, it can usually be found at a URL such as `https://username.github.io` or they may have the webpage mapped to their own custom domain name. -- [**Gist**](/articles/creating-gists) — Gists são snippets de código-fonte ou outro texto que os usuários podem usar para armazenar ideias ou compartilhar com amigos. Como repositórios regulares do GitHub, os Gists são criados com o Git, por isso são automaticamente versionados, bifurcáveis e podem ser baixados. Os Gists podem ser públicos ou secretos (acessíveis apenas através de uma URL conhecida). Os Gists Públicos não podem ser convertidos em Gists secretos. +- [**Gists**](/articles/creating-gists) — +Gists are snippets of source code or other text that users can use to store ideas or share with friends. +Like regular GitHub repositories, Gists are created with Git, so they are automatically versioned, forkable and downloadable. +Gists can either be public or secret (accessible only through a known URL). Public Gists cannot be converted into secret Gists. -## Dados do usuário no GitHub.com +## User data on GitHub.com -Aqui está uma lista não exaustiva dos tipos de dados que mantemos a respeito dos usuários e projetos no GitHub. +Here is a non-exhaustive list of the kinds of data we maintain about users and projects on GitHub. - <a name="public-account-data"></a> -**Dados públicos da conta** — Há uma variedade de informações publicamente disponíveis no GitHub sobre os usuários e seus repositórios. Perfis de usuário podem ser encontrados em uma URL, tais como `https://github.com/username`. Perfis de usuário exibem informações sobre quando o usuário criou sua conta e suas atividades públicas no GitHub.com, além de interações sociais. Perfis públicos de usuários também podem incluir informações adicionais que um usuário pode ter escolhido compartilhar publicamente. Todos os perfis públicos de usuário mostram: - - Nome de usuário - - Os repositórios que o usuário marcou com estrela - - Os outros usuários do GitHub que o usuário segue - - Os usuários que o seguem +**Public account data** — +There is a variety of information publicly available on GitHub about users and their repositories. +User profiles can be found at a URL such as `https://github.com/username`. +User profiles display information about when the user created their account as well their public activity on GitHub.com and social interactions. +Public user profiles can also include additional information that a user may have chosen to share publicly. +All user public profiles display: + - Username + - The repositories that the user has starred + - The other GitHub users the user follows + - The users that follow them - Opcionalmente, um usuário também pode optar por compartilhar publicamente as seguintes informações: - - Seu nome real - - Um avatar - - Uma empresa afiliada - - Sua localização - - Um endereço de e-mail público - - Sua página da web pessoal - - Organizações das quais o usuário é membro (*dependendo das preferências da organização ou dos usuários*) + Optionally, a user may also choose to share the following information publicly: + - Their real name + - An avatar + - An affiliated company + - Their location + - A public email address + - Their personal web page + - Organizations to which the user is a member (*depending on either the organizations' or the users' preferences*) - <a name="private-account-data"></a> -**Dados privados da conta** — O GitHub também coleta e mantém certas informações privadas sobre os usuários, conforme descrito em nossa [Política de Privacidade](/articles/github-privacy-statement). Isso pode incluir: - - Endereço de e-mail privado - - Dados de pagamento - - Logs de acesso de segurança - - Dados sobre interações com repositórios privados +**Private account data** — +GitHub also collects and maintains certain private information about users as outlined in our [Privacy Policy](/articles/github-privacy-statement). +This may include: + - Private email addresses + - Payment details + - Security access logs + - Data about interactions with private repositories - Para ter uma noção do tipo de informações privadas da conta que o GitHub coleta, você pode visitar seu {% data reusables.user_settings.personal_dashboard %} e navegar pelas seções do menu à esquerda. + To get a sense of the type of private account information that GitHub collects, you can visit your {% data reusables.user_settings.personal_dashboard %} and browse through the sections in the left-hand menubar. - <a name="organization-account-data"></a> -**Dados da conta da organização** — Informações sobre organizações, seus usuários administrativos e repositórios estão publicamente disponíveis no GitHub. Perfis da organização podem ser encontrados em uma URL, tais como `https://github.com/organization`. Os perfis públicos da organização também podem incluir informações adicionais que os proprietários optaram por compartilhar publicamente. Todos os perfis públicos de organizações mostram: - - Nome da organização - - Os repositórios que os proprietários marcaram com estrela - - Todos os usuários GitHub que são proprietários da organização +**Organization account data** — +Information about organizations, their administrative users and repositories is publicly available on GitHub. +Organization profiles can be found at a URL such as `https://github.com/organization`. +Public organization profiles can also include additional information that the owners have chosen to share publicly. +All organization public profiles display: + - The organization name + - The repositories that the owners have starred + - All GitHub users that are owners of the organization - Opcionalmente, um usuário administrador também pode optar por compartilhar publicamente as seguintes informações: - - Um avatar - - Uma empresa afiliada - - Sua localização - - Membros e equipes diretas - - Colaboradores + Optionally, administrative users may also choose to share the following information publicly: + - An avatar + - An affiliated company + - Their location + - Direct Members and Teams + - Collaborators - <a name="public-repository-data"></a> -**Dados de repositórios públicos** — O GitHub abriga milhões de projetos de software públicos e de código aberto. Você pode navegar por quase qualquer repositório público (por exemplo, o [Atom Project](https://github.com/atom/atom)) para saber o tipo de informação que o GitHub coleta e mantém sobre repositórios. Isso pode incluir: +**Public repository data** — +GitHub is home to millions of public, open-source software projects. +You can browse almost any public repository (for example, the [Atom Project](https://github.com/atom/atom)) to get a sense for the information that GitHub collects and maintains about repositories. +This can include: - - O código em si - - Versões anteriores do código - - Versões lançadas e estáveis do projeto - - Informações sobre colaboradores, contribuidores e membros do repositório - - Registros de operações do Git como commits, ramificação, push, pull, bifurcação e clonagem - - Conversas relacionadas a operações do Git, como comentários em pull requests ou commits - - Documentação do projeto, como problemas e páginas Wiki - - Estatísticas e gráficos mostrando contribuições para o projeto e a rede de colaboradores + - The code itself + - Previous versions of the code + - Stable release versions of the project + - Information about collaborators, contributors and repository members + - Logs of Git operations such as commits, branching, pushing, pulling, forking and cloning + - Conversations related to Git operations such as comments on pull requests or commits + - Project documentation such as Issues and Wiki pages + - Statistics and graphs showing contributions to the project and the network of contributors - <a name="private-repository-data"></a> -**Dados de repositórios privados** — O GitHub coleta e mantém o mesmo tipo de dados para repositórios privados e públicos. No entanto, apenas usuários convidados especificamente podem acessar dados privados do repositório. +**Private repository data** — +GitHub collects and maintains the same type of data for private repositories that can be seen for public repositories, except only specifically invited users may access private repository data. - <a name="other-data"></a> -**Outros dados** — Adicionalmente, o GitHub coleta dados analíticos como visitas de página e informações ocasionalmente voluntárias pelos nossos usuários (como comunicações com a nossa equipe de suporte, informações da pesquisa e/ou registros de sites). +**Other data** — +Additionally, GitHub collects analytics data such as page visits and information occasionally volunteered by our users (such as communications with our support team, survey information and/or site registrations). -## Notificaremos qualquer proprietário de conta afetado +## We will notify any affected account owners -É nossa política notificar os usuários sobre quaisquer pedidos pendentes relativos a suas contas ou seus repositórios, a não ser que sejamos proibidos por lei ou por decisão judicial. Antes de divulgar informações do usuário, faremos um esforço razoável para notificar qualquer proprietário da conta afetada enviando uma mensagem para seu endereço de e-mail verificado, fornecendo a ele uma cópia da intimação, da ordem judicial, ou do mandado, para que possa ter a oportunidade de contestar o processo judicial, se assim o desejar. Em (raras) circunstâncias exigentes, podemos atrasar a notificação, se determinarmos que os atrasos são necessários para evitar a morte ou danos graves ou devido a uma investigação em curso. +It is our policy to notify users about any pending requests regarding their accounts or repositories, unless we are prohibited by law or court order from doing so. Before disclosing user information, we will make a reasonable effort to notify any affected account owner(s) by sending a message to their verified email address providing them with a copy of the subpoena, court order, or warrant so that they can have an opportunity to challenge the legal process if they wish. In (rare) exigent circumstances, we may delay notification if we determine delay is necessary to prevent death or serious harm or due to an ongoing investigation. -## Compartilhamento de informações não públicas +## Disclosure of non-public information -É nossa política divulgar informações de usuário não públicas que estejam relacionadas com uma investigação civil ou criminal, somente mediante consentimento do usuário ou após o recebimento de uma intimação válida, de uma demanda de investigação civil, ordem judicial, mandado de busca ou outro processo legal válido similar. Em certas circunstâncias (veja abaixo), também podemos compartilhar informações limitadas, mas apenas correspondentes à natureza das circunstâncias, e será necessário processo judicial para qualquer coisa além disso. O GitHub reserva-se o direito de se opor a quaisquer solicitações de informações não públicas. Quando o GitHub concordar em produzir informações não públicas em resposta a uma solicitação legal, realizaremos uma pesquisa razoável a respeito das informações solicitadas. Aqui estão os tipos de informações que concordamos em produzir, dependendo do tipo de processo judicial com o qual estivermos lidando: +It is our policy to disclose non-public user information in connection with a civil or criminal investigation only with user consent or upon receipt of a valid subpoena, civil investigative demand, court order, search warrant, or other similar valid legal process. In certain exigent circumstances (see below), we also may share limited information but only corresponding to the nature of the circumstances, and would require legal process for anything beyond that. +GitHub reserves the right to object to any requests for non-public information. +Where GitHub agrees to produce non-public information in response to a lawful request, we will conduct a reasonable search for the requested information. +Here are the kinds of information we will agree to produce, depending on the kind of legal process we are served with: - <a name="with-user-consent"></a> -**Com o consentimento do usuário** — O GitHub fornecerá informações privadas da conta, caso solicitado, diretamente ao usuário (ou a um proprietário, no caso de uma conta de organização), ou para uma terceira pessoa designada com o consentimento por escrito do usuário, desde que estejamos confiantes de que o usuário teve sua identidade verificada. +**With user consent** — +GitHub will provide private account information, if requested, directly to the user (or an owner, in the case of an organization account), or to a designated third party with the user's written consent once GitHub is satisfied that the user has verified his or her identity. - <a name="with-a-subpoena"></a> -**Com uma intimação** — De posse de uma intimação válida, uma demanda de investigação civil, ou um ato jurídico semelhante emitido em relação a uma investigação civil ou criminal oficial, podemos fornecer certas informações não públicas sobre a conta, que podem incluir: +**With a subpoena** — +If served with a valid subpoena, civil investigative demand, or similar legal process issued in connection with an official criminal or civil investigation, we can provide certain non-public account information, which may include: - - Nome(s) associado(s) com a conta - - Endereço(s) de e-mail associado(s) com a conta - - Informações de cobrança - - Data de cadastro e término - - Endereço IP, data e hora no momento do registro da conta - - Endereço(s) IP(s) usado(s) para acessar a conta em um momento ou evento especificado relevante à investigação + - Name(s) associated with the account + - Email address(es) associated with the account + - Billing information + - Registration date and termination date + - IP address, date, and time at the time of account registration + - IP address(es) used to access the account at a specified time or event relevant to the investigation -No caso das contas da organização, podemos fornecer o(s) nome(s) e endereço(s) de e-mail do(s) proprietário(s) da conta, bem como a data e o endereço IP no momento da criação da conta da organização. Não vamos produzir informações sobre outros membros ou colaboradores, se houver, da conta da organização ou qualquer informação adicional sobre o(s) proprietário(s) identificado(s) da conta sem uma solicitação de acompanhamento para esses usuários específicos. +In the case of organization accounts, we can provide the name(s) and email address(es) of the account owner(s) as well as the date and IP address at the time of creation of the organization account. We will not produce information about other members or contributors, if any, to the organization account or any additional information regarding the identified account owner(s) without a follow-up request for those specific users. -Por favor, note que a informação disponível varia de caso a caso. Algumas das informações são opcionais para os usuários fornecerem. Noutros casos, podemos não ter recolhido ou mantido a informação. +Please note that the information available will vary from case to case. Some of the information is optional for users to provide. In other cases, we may not have collected or retained the information. - <a name="with-a-court-order-or-a-search-warrant"></a> -**Com uma ordem judicial *ou* um mandado de busca** — Não divulgaremos os logs de acesso à conta, a menos que sejamos obrigados a fazê-lo por (i) uma ordem judicial emitida conforme 18 U.S.C. Seção 2703(d), sobre a demonstração de fatos específicos e articuláveis que mostrem que há razões razoáveis para acreditar que a informação solicitada é relevante e material para uma investigação criminal em curso; ou (ii) um mandado de busca emitido nos termos dos procedimentos descritos nas Regras Federais de Processo Penal ou procedimentos de autorização estatal equivalentes, mediante demonstração de uma causa provável. Seção 2703(d), após a demonstração de fatos específicos e articuláveis que mostrem que há razões razoáveis para acreditar que a informação solicitada é relevante e material para uma investigação criminal em curso; ou (ii) um mandado de busca emitido de acordo com os procedimentos descritos no Regimento Federal de Assuntos Penal ou procedimentos de mandado de Estado equivalente, após a demonstração de uma causa provável. Além das informações da conta de usuário não públicas listadas acima podemos fornecer logs de acesso à conta em resposta a uma ordem judicial ou mandado de busca, que podem incluir: +**With a court order *or* a search warrant** — We will not disclose account access logs unless compelled to do so by either +(i) a court order issued under 18 U.S.C. Section 2703(d), upon a showing of specific and articulable facts showing that there are reasonable grounds to believe that the information sought is relevant and material to an ongoing criminal investigation; or +(ii) a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures, upon a showing of probable cause. +In addition to the non-public user account information listed above, we can provide account access logs in response to a court order or search warrant, which may include: - - Quaisquer logs que revelaria os movimentos de um usuário ao longo de um período de tempo - - Configurações de conta ou repositório privado (por exemplo, quais usuários têm certas permissões, etc.) - - Dados analíticos específicos do usuário ou IP, como histórico de navegação - - Logs de segurança de acesso além da criação de conta ou para um horário e data específicos + - Any logs which would reveal a user's movements over a period of time + - Account or private repository settings (for example, which users have certain permissions, etc.) + - User- or IP-specific analytic data such as browsing history + - Security access logs other than account creation or for a specific time and date - <a name="only-with-a-search-warrant"></a> -**Somente com um mandado de busca** — Não divulgaremos o conteúdo privado de qualquer conta de usuário, a menos que seja obrigado a fazê-lo sob um mandado de busca, emitido de acordo com os procedimentos descritos nas Regras Federais de Processo Penal ou procedimentos de autorização estatal equivalentes, após a demonstração de causas prováveis. Além das informações da conta de usuário não públicas e os logs de acesso à conta mencionados acima, forneceremos também conteúdo privado da conta de usuário em resposta a um mandado de busca, que pode incluir: +**Only with a search warrant** — +We will not disclose the private contents of any user account unless compelled to do so under a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures upon a showing of probable cause. +In addition to the non-public user account information and account access logs mentioned above, we will also provide private user account contents in response to a search warrant, which may include: - - Conteúdos de Gists secretos - - Código fonte ou outro conteúdo em repositórios privados - - Registros de colaboração e contribuição para repositórios privados - - Comunicações ou documentação (como problemas ou Wikis) em repositórios privados - - Qualquer chave de segurança usada para autenticação ou criptografia + - Contents of secret Gists + - Source code or other content in private repositories + - Contribution and collaboration records for private repositories + - Communications or documentation (such as Issues or Wikis) in private repositories + - Any security keys used for authentication or encryption - <a name="in-exigent-circumstances"></a> -**Sob circunstâncias críticas** — Se recebermos uma solicitação de informações sob certas circunstâncias críticas (onde acreditamos que a divulgação é necessária para evitar uma situação emergencial que envolva risco de morte ou graves lesões físicas para uma pessoa), podemos divulgar informações limitadas que determinarmos necessárias para permitir que a aplicação da lei responda à emergência da situação. Para qualquer informação além disso, precisaríamos de uma intimação, um mandado de busca ou ordem judicial, conforme descrito acima. Por exemplo, não divulgaremos o conteúdo de repositórios privados sem um mandado de busca. Antes de divulgar informações, confirmamos que o pedido veio de um agente de aplicação da lei, que uma autoridade enviou uma notificação oficial resumindo a situação emergencial, e a forma como as informações solicitadas ajudarão a responder à emergência. +**Under exigent circumstances** — +If we receive a request for information under certain exigent circumstances (where we believe the disclosure is necessary to prevent an emergency involving danger of death or serious physical injury to a person), we may disclose limited information that we determine necessary to enable law enforcement to address the emergency. For any information beyond that, we would require a subpoena, search warrant, or court order, as described above. For example, we will not disclose contents of private repositories without a search warrant. Before disclosing information, we confirm that the request came from a law enforcement agency, an authority sent an official notice summarizing the emergency, and how the information requested will assist in addressing the emergency. -## Reembolso de custos +## Cost reimbursement -Nos termos das leis estadual e federal, o GitHub pode pedir reembolso por custos associados à conformidade com uma demanda legal válida, como uma intimação, ordem de tribunal ou mandado de busca. Só cobramos a recuperação de alguns custos, e estes reembolsos cobrem apenas uma parte dos custos que efetivamente incorremos para cumprir as disposições legais. +Under state and federal law, GitHub can seek reimbursement for costs associated with compliance with a valid legal demand, such as a subpoena, court order or search warrant. We only charge to recover some costs, and these reimbursements cover only a portion of the costs we actually incur to comply with legal orders. -Embora não cobremos em situações de emergência ou em outras circunstâncias exigentes, buscamos o reembolso para todas as outras solicitações legais, de acordo com o cronograma a seguir, a menos que exigido de outra forma por lei: +While we do not charge in emergency situations or in other exigent circumstances, we seek reimbursement for all other legal requests in accordance with the following schedule, unless otherwise required by law: -- Pesquisa inicial de até 25 identificadores: livre -- Produção de informação/dados de assinantes para até 5 contas: grátis -- Produção de informação/dados de assinante para mais de 5 contas: US$ 20 por conta -- Pesquisas secundárias: US$ 10 por pesquisa +- Initial search of up to 25 identifiers: Free +- Production of subscriber information/data for up to 5 accounts: Free +- Production of subscriber information/data for more than 5 accounts: $20 per account +- Secondary searches: $10 per search -## Conservação de dados +## Data preservation -Vamos tomar medidas para preservar os registros das conta por até 90 dias mediante solicitação formal dos EUA. aplicação da lei relacionada a investigações criminais oficiais e aguardando a emissão de uma decisão judicial ou outro processo. +We will take steps to preserve account records for up to 90 days upon formal request from U.S. law enforcement in connection with official criminal investigations, and pending the issuance of a court order or other process. -## Envio de solicitação +## Submitting requests -Por favor, envie solicitações para: +Please serve requests to: ``` GitHub, Inc. c/o Corporation Service Company -2710 Gateway Oaks Drive, Suite 150N Sacramento, CA 95833-3505 +2710 Gateway Oaks Drive, Suite 150N +Sacramento, CA 95833-3505 ``` -Cópias de cortesia podem ser enviadas para legal@support.github.com. +Courtesy copies may be emailed to legal@support.github.com. -Por favor, faça suas solicitações da forma mais específica e breve quanto for possível, incluindo as seguintes informações: +Please make your requests as specific and narrow as possible, including the following information: -- Informações completas sobre a autoridade emissora do pedido de informações -- O nome e o registro/ID do agente responsável -- Um endereço de e-mail oficial e número de telefone de contato -- Nome do usuário, da organização, do repositório de interesse -- As URLs de qualquer página, gists ou arquivos de interesse -- A descrição dos tipos de registros de que você precisa +- Full information about authority issuing the request for information +- The name and badge/ID of the responsible agent +- An official email address and contact phone number +- The user, organization, repository name(s) of interest +- The URLs of any pages, gists or files of interest +- The description of the types of records you need -Por favor, conceda-nos pelo menos duas semanas para que possamos analisar o seu pedido. +Please allow at least two weeks for us to be able to look into your request. -## Pedidos de aplicação de lei estrangeira +## Requests from foreign law enforcement -Como empresa dos Estados Unidos sediada na Califórnia, o GitHub não é obrigado a fornecer dados a governos estrangeiros em resposta a processo judicial emitido por autoridades estrangeiras. As autoridades responsáveis pela aplicação da lei estrangeira que desejem solicitar informações ao GitHub deverão entrar em contato com o Gabinete de Assuntos Internacionais da Divisão Penal do Departamento de Justiça dos Estados Unidos. O GitHub responderá prontamente às solicitações que forem emitidas via tribunal dos EUA, por meio de um contrato de assistência jurídica mútua (“MLAT”) ou carta rogatória. tribunal por meio de um tratado de assistência jurídica mútua (“MLAT”) ou de uma rogatória. +As a United States company based in California, GitHub is not required to provide data to foreign governments in response to legal process issued by foreign authorities. +Foreign law enforcement officials wishing to request information from GitHub should contact the United States Department of Justice Criminal Division's Office of International Affairs. +GitHub will promptly respond to requests that are issued via U.S. court by way of a mutual legal assistance treaty (“MLAT”) or letter rogatory. -## Perguntas +## Questions -Você tem alguma pergunta, comentário ou sugestão? Entre em contato com o {% data variables.contact.contact_support %}. +Do you have other questions, comments or suggestions? Please contact {% data variables.contact.contact_support %}. diff --git a/translations/pt-BR/content/github/site-policy/index.md b/translations/pt-BR/content/github/site-policy/index.md index 87504f251f..1496ee8035 100644 --- a/translations/pt-BR/content/github/site-policy/index.md +++ b/translations/pt-BR/content/github/site-policy/index.md @@ -1,7 +1,7 @@ --- -title: Política do site +title: Site policy redirect_from: - - /categories/61/articles/ + - /categories/61/articles - /categories/site-policy versions: fpt: '*' diff --git a/translations/pt-BR/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md b/translations/pt-BR/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md index 1ac477efac..d31732d6b3 100644 --- a/translations/pt-BR/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md +++ b/translations/pt-BR/content/github/working-with-github-support/about-github-premium-support-for-github-enterprise-cloud.md @@ -1,6 +1,6 @@ --- -title: Sobre o suporte Premium do GitHub para o GitHub Enterprise Cloud -intro: 'O {% data variables.contact.premium_support %} é uma oferta de suporte complementar paga para clientes do {% data variables.product.prodname_ghe_cloud %}.' +title: About GitHub Premium Support for GitHub Enterprise Cloud +intro: '{% data variables.contact.premium_support %} is a paid, supplemental support offering for {% data variables.product.prodname_ghe_cloud %} customers.' redirect_from: - /articles/about-github-premium-support - /articles/about-github-premium-support-for-github-enterprise-cloud @@ -9,30 +9,30 @@ versions: ghec: '*' topics: - Jobs -shortTitle: Suporte do GitHub Premium +shortTitle: GitHub Premium Support --- {% note %} -**Notas:** +**Notes:** -- Os termos do {% data variables.contact.premium_support %} estão sujeitos a alteração sem aviso prévio e entram em vigor a partir de setembro de 2018. +- The terms of {% data variables.contact.premium_support %} are subject to change without notice and are effective as of September 2018. - {% data reusables.support.data-protection-and-privacy %} -- Este artigo contém os termos do {% data variables.contact.premium_support %} para os clientes do {% data variables.product.prodname_ghe_cloud %}. Os termos podem ser diferentes para clientes do {% data variables.product.prodname_ghe_server %} ou do {% data variables.product.prodname_enterprise %} que compram o {% data variables.product.prodname_ghe_server %} e o {% data variables.product.prodname_ghe_cloud %} juntos. For more information, see "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %}](/enterprise-server@latest/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)" and "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_enterprise %}](/enterprise-server@latest/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise)." +- This article contains the terms of {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_cloud %} customers. The terms may be different for customers of {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_enterprise %} customers who purchase {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %} together. For more information, see "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_server %}](/enterprise-server@latest/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise-server)" and "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_enterprise %}](/enterprise-server@latest/admin/guides/enterprise-support/about-github-premium-support-for-github-enterprise)." {% endnote %} -## Sobre o {% data variables.contact.premium_support %} +## About {% data variables.contact.premium_support %} -O {% data variables.contact.premium_support %} oferece: - - Suporte gravado, em inglês, por meio do nosso portal de suporte 24 horas por dia, 7 dais por semana - - Suporte por telefone, em inglês, 24 horas por dias, 7 dias por semana - - Um Contrato de nível de serviço (SLA, Service Level Agreement) com tempos de resposta inicial garantidos - - Acesso a conteúdo premium - - Verificação de integridade agendadas - - Serviços gerenciados +{% data variables.contact.premium_support %} offers: + - Written support, in English, through our support portal 24 hours per day, 7 days per week + - Phone support, in English, 24 hours per day, 7 days per week + - A Service Level Agreement (SLA) with guaranteed initial response times + - Access to premium content + - Scheduled health checks + - Managed services {% data reusables.support.about-premium-plans %} @@ -42,32 +42,32 @@ O {% data variables.contact.premium_support %} oferece: {% data reusables.support.contacting-premium-support %} -## Horas de operação +## Hours of operation -O {% data variables.contact.premium_support %} está disponível 24 horas por dia, 7 dias por semana. +{% data variables.contact.premium_support %} is available 24 hours a day, 7 days per week. {% data reusables.support.service-level-agreement-response-times %} -## Atribuindo uma prioridade a um tíquete de suporte +## Assigning a priority to a support ticket -Ao entrar em contato com {% data variables.contact.premium_support %}, você pode escolher uma das quatro prioridades para o tíquete: {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %} ou {% data variables.product.support_ticket_priority_low %}. +When you contact {% data variables.contact.premium_support %}, you can choose one of four priorities for the ticket: {% data variables.product.support_ticket_priority_urgent %}, {% data variables.product.support_ticket_priority_high %}, {% data variables.product.support_ticket_priority_normal %}, or {% data variables.product.support_ticket_priority_low %}. {% data reusables.support.github-can-modify-ticket-priority %} {% data reusables.support.ghec-premium-priorities %} -## Resolução e fechamento de tíquete de suporte +## Resolving and closing support tickets -O {% data variables.contact.premium_support %} pode considerar um tíquete resolvido após fornecer uma explicação, recomendação, instruções de uso ou instruções de solução alternativa. +{% data variables.contact.premium_support %} may consider a ticket solved after providing an explanation, recommendation, usage instructions, or workaround instructions, -Se você usar um plugin, módulo ou código personalizado incompatível, o {% data variables.contact.premium_support %} solicitará a remoção desse item incompatível durante a tentativa de resolução do problema. Se o problema for corrigido quando o plugin, módulo ou código personalizado incompatível for removido, o {% data variables.contact.premium_support %} poderá considerar o tíquete resolvido. +If you use a custom or unsupported plug-in, module, or custom code, {% data variables.contact.premium_support %} may ask you to remove the unsupported plug-in, module, or code while attempting to resolve the issue. If the problem is fixed when the unsupported plug-in, module, or custom code is removed, {% data variables.contact.premium_support %} may consider the ticket solved. -O {% data variables.contact.premium_support %} poderá encerrar tíquetes se estiverem fora do escopo de suporte ou se várias tentativas de entrar em contato com você não tiverem sido bem-sucedidas. Se {% data variables.contact.premium_support %} encerrar um tíquete por falta de resposta, você poderá solicitar que {% data variables.contact.premium_support %} reabra o tíquete. +{% data variables.contact.premium_support %} may close tickets if they're outside the scope of support or if multiple attempts to contact you have gone unanswered. If {% data variables.contact.premium_support %} closes a ticket due to lack of response, you can request that {% data variables.contact.premium_support %} reopen the ticket. {% data reusables.support.receiving-credits %} {% data reusables.support.accessing-premium-content %} -## Leia mais +## Further reading -- "[Enviar um tíquete](/articles/submitting-a-ticket)" +- "[Submitting a ticket](/articles/submitting-a-ticket)" diff --git a/translations/pt-BR/content/github/working-with-github-support/github-enterprise-cloud-support.md b/translations/pt-BR/content/github/working-with-github-support/github-enterprise-cloud-support.md index 632723423d..972f708b78 100644 --- a/translations/pt-BR/content/github/working-with-github-support/github-enterprise-cloud-support.md +++ b/translations/pt-BR/content/github/working-with-github-support/github-enterprise-cloud-support.md @@ -1,10 +1,10 @@ --- -title: Suporte do GitHub Enterprise Cloud +title: GitHub Enterprise Cloud support redirect_from: - - /articles/business-plan-support/ - - /articles/github-business-cloud-support/ + - /articles/business-plan-support + - /articles/github-business-cloud-support - /articles/github-enterprise-cloud-support -intro: 'O {% data variables.product.prodname_ghe_cloud %} inclui um tempo de resposta alvo de oito horas para solicitações de suporte prioritárias, de segunda a sexta-feira, em seu fuso horário local.' +intro: '{% data variables.product.prodname_ghe_cloud %} includes a target eight-hour response time for priority support requests, Monday to Friday in your local time zone.' versions: fpt: '*' ghec: '*' @@ -15,40 +15,40 @@ shortTitle: GitHub Enterprise Cloud {% note %} -**Observação: ** clientes {% data variables.product.prodname_ghe_cloud %} podem assinar o {% data variables.contact.premium_support %}. Para obter mais informações, consulte "[Sobre o {% data variables.contact.premium_support %} para o {% data variables.product.prodname_ghe_cloud %}](/articles/about-github-premium-support-for-github-enterprise-cloud)". +**Note:** {% data variables.product.prodname_ghe_cloud %} customers can sign up for {% data variables.contact.premium_support %}. For more information, see "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_cloud %}](/articles/about-github-premium-support-for-github-enterprise-cloud)." {% endnote %} {% data reusables.support.zendesk-old-tickets %} -É possível enviar perguntas prioritárias se você tiver comprado o {% data variables.product.prodname_ghe_cloud %} ou se for integrante, colaborador externo ou gerente de cobrança de uma organização {% data variables.product.prodname_dotcom %} atualmente assinante do {% data variables.product.prodname_ghe_cloud %}. +You can submit priority questions if you have purchased {% data variables.product.prodname_ghe_cloud %} or if you're a member, outside collaborator, or billing manager of a {% data variables.product.prodname_dotcom %} organization currently subscribed to {% data variables.product.prodname_ghe_cloud %}. -Perguntas qualificadas para respostas prioritárias: -- Incluem perguntas relacionadas à sua incapacidade de usar ou acessar a funcionalidade de controle da versão principal do {% data variables.product.prodname_dotcom %} -- Incluem situações relacionadas com a segurança de sua conta -- Não incluem serviços e recursos periféricos, como perguntas sobre Gists, {% data variables.product.prodname_pages %} ou notificações de e-mail -- Incluem perguntas somente sobre organizações que utilizam o {% data variables.product.prodname_ghe_cloud %} atualmente +Questions that qualify for priority responses: +- Include questions related to your inability to access or use {% data variables.product.prodname_dotcom %}'s core version control functionality +- Include situations related to your account security +- Do not include peripheral services and features, such as questions about Gists, {% data variables.product.prodname_pages %}, or email notifications +- Include questions only about organizations currently using {% data variables.product.prodname_ghe_cloud %} -Para se qualificar para uma resposta prioritária, você deve: -- Enviar sua pergunta para [{% data variables.contact.enterprise_support %}](https://support.github.com/contact?tags=docs-generic) a partir de um endereço de e-mail verificado associado a uma organização que atualmente usa o {% data variables.product.prodname_ghe_cloud %} -- Enviar um novo tíquete de suporte para cada situação prioritária individual -- Enviar a pergunta de segunda a sexta-feira, em seu fuso horário local -- Entender que a resposta a uma pergunta prioritária será recebida por e-mail -- Cooperar com o {% data variables.contact.github_support %} e fornecer todas as informações solicitadas pelo {% data variables.contact.github_support %} +To qualify for a priority response, you must: +- Submit your question to [{% data variables.contact.enterprise_support %}](https://support.github.com/contact?tags=docs-generic) from a verified email address that's associated with an organization currently using {% data variables.product.prodname_ghe_cloud %} +- Submit a new support ticket for each individual priority situation +- Submit your question from Monday-Friday in your local time zone +- Understand that the response to a priority question will be received via email +- Cooperate with {% data variables.contact.github_support %} and provide all of the information that {% data variables.contact.github_support %} asks for {% tip %} -**Dica:** as perguntas não serão qualificadas para uma resposta prioritária se forem enviadas em um feriado local em sua jurisdição. +**Tip:** Questions do not qualify for a priority response if they are submitted on a local holiday in your jurisdiction. {% endtip %} -O tempo alvo de oito horas para respostas: -- Começa quando o {% data variables.contact.github_support %} recebe sua pergunta qualificada -- Não inicia até que você tenha fornecido informações suficientes para a pergunta ser respondida, a menos que você indique especificamente que não tem informações suficientes -- Não é válido para os finais de semana em seu fuso horário local ou feriados locais em sua jurisdição +The target eight-hour response time: +- Begins when {% data variables.contact.github_support %} receives your qualifying question +- Does not begin until you have provided sufficient information to answer the question, unless you specifically indicate that you do not have sufficient information +- Does not apply on weekends in your local timezone or local holidays in your jurisdiction {% note %} -**Observação:** o {% data variables.contact.github_support %} não garante a resolução de sua pergunta prioritária. O {% data variables.contact.github_support %} pode escalar ou tirar os problemas do status de perguntas prioritárias com base em uma avaliação sensata sobre as informações que você forneceu. +**Note:** {% data variables.contact.github_support %} does not guarantee a resolution to your priority question. {% data variables.contact.github_support %} may escalate or deescalate issues to or from priority question status, based on our reasonable evaluation of the information you give to us. {% endnote %} diff --git a/translations/pt-BR/content/github/working-with-github-support/submitting-a-ticket.md b/translations/pt-BR/content/github/working-with-github-support/submitting-a-ticket.md index aa49a58d2f..ee1785cc2a 100644 --- a/translations/pt-BR/content/github/working-with-github-support/submitting-a-ticket.md +++ b/translations/pt-BR/content/github/working-with-github-support/submitting-a-ticket.md @@ -1,6 +1,6 @@ --- -title: Enviar um tíquete -intro: 'Você pode enviar um tíquete para o {% data variables.contact.github_support %} usando o portal de suporte.' +title: Submitting a ticket +intro: 'You can submit a ticket to {% data variables.contact.github_support %} using the support portal.' redirect_from: - /articles/submitting-a-ticket versions: @@ -9,30 +9,34 @@ versions: topics: - Jobs --- - -## Sobre o envio do ticket -Se a sua conta usa um produto {% data variables.product.prodname_dotcom %} pago, você pode entrar em contato diretamente com {% data variables.contact.github_support %}. Se a sua conta usar {% data variables.product.prodname_free_user %} para contas de usuário e organizações, você pode usar o contato {% data variables.contact.github_support %} para relatar contas, segurança e problemas de abuso. Para obter mais informações, consulte "[Sobre GitHub Support](/github/working-with-github-support/about-github-support)". +## About ticket submission +If your account uses a paid {% data variables.product.prodname_dotcom %} product, you can directly contact {% data variables.contact.github_support %}. If your account uses {% data variables.product.prodname_free_user %} for user accounts and organizations, you can use contact {% data variables.contact.github_support %} to report account, security, and abuse issues. For more information, see "[About GitHub Support](/github/working-with-github-support/about-github-support)." {% data reusables.enterprise-accounts.support-entitlements %} -Se você não tem uma conta corporativa, use {% data variables.contact.enterprise_portal %} para enviar tíquetes. Para obter mais informações sobre contas corporativas, consulte "[Sobre contas corporativas](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)". +If you do not have an enterprise account, please use the {% data variables.contact.enterprise_portal %} to submit tickets. For more information about enterprise accounts, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)." -## Enviar um tíquete usando o {% data variables.contact.support_portal %} +## Submitting a ticket using the {% data variables.contact.support_portal %} {% data reusables.support.zendesk-old-tickets %} -1. Navegue até o {% data variables.contact.contact_support_portal %}. -2. Select the **Account or organization** drop-down menu and click the name of the account, organization, or enterprise your ticket is regarding. ![Account field](/assets/images/help/support/account-field.png) -2. Select the **From** drop-down menu and click the email address you'd like {% data variables.contact.github_support %} to contact. ![Campo Email (E-mail)](/assets/images/help/support/from-field.png) -4. Em "Subject" (Assunto), insira um título descritivo para o problema que está ocorrendo. ![Campo Subject (Assunto)](/assets/images/help/support/subject-field.png) -5. Em "How can we help" (Como podemos ajudar), insira as informações adicionais que ajudarão a equipe de suporte a resolver o problema. As informações úteis podem incluir: ![Campo How can we help (Como podemos ajudar)](/assets/images/help/support/how-can-we-help-field.png) - - Etapas para reproduzir o problema - - Quaisquer circunstâncias especiais relacionadas à descoberta do problema (como a primeira ocorrência ou ocorrência após um evento específico, frequência de ocorrência, impacto comercial do problema e urgência sugerida) - - Redação exata das mensagens de erro -6. Opcionalmente, anexe arquivos arrastando e soltando, fazendo upload ou colando da área de transferência. -7. Clique em **Send request** (Enviar solicitação). ![Botão Send request (Enviar solicitação)](/assets/images/help/support/send-request-button.png) +1. Navigate to the {% data variables.contact.contact_support_portal %}. +2. Select the **Account or organization** drop-down menu and click the name of the account, organization, or enterprise your ticket is regarding. +![Account field](/assets/images/help/support/account-field.png) +2. Select the **From** drop-down menu and click the email address you'd like {% data variables.contact.github_support %} to contact. +![Email field](/assets/images/help/support/from-field.png) +4. Under "Subject", type a descriptive title for the issue you're having. +![Subject field](/assets/images/help/support/subject-field.png) +5. Under "How can we help", provide any additional information that will help the Support team troubleshoot the problem. Helpful information may include: + ![How can we help field](/assets/images/help/support/how-can-we-help-field.png) + - Steps to reproduce the issue + - Any special circumstances surrounding the discovery of the issue (for example, the first occurrence or occurrence after a specific event, frequency of occurrence, business impact of the problem, and suggested urgency) + - Exact wording of error messages +6. Optionally, attach files by dragging and dropping, uploading, or pasting from the clipboard. +7. Click **Send request**. +![Send request button](/assets/images/help/support/send-request-button.png) -## Leia mais -- "[Produtos do {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/githubs-products)" -- "[Sobre o {% data variables.contact.github_support %}](/articles/about-github-support)" -- "[Sobre o {% data variables.contact.premium_support %} para {% data variables.product.prodname_ghe_cloud %}](/articles/about-github-premium-support-for-github-enterprise-cloud)." +## Further reading +- "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products)" +- "[About {% data variables.contact.github_support %}](/articles/about-github-support)" +- "[About {% data variables.contact.premium_support %} for {% data variables.product.prodname_ghe_cloud %}](/articles/about-github-premium-support-for-github-enterprise-cloud)." diff --git a/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md b/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md index dd107c823d..d52fb36e48 100644 --- a/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md +++ b/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md @@ -1,11 +1,11 @@ --- -title: Criar gists -intro: 'Você pode criar dois tipos de gists: {% ifversion ghae %}internos{% else %}públicos{% endif %} e secretos. Crie um gist {% ifversion ghae %}interno{% else %}um público{% endif %} se você estiver pronto para compartilhar suas ideias com {% ifversion ghae %}os integrantes corporativos{% else %}o mundo{% endif %} ou um gist secreto se você não estiver pronto.' +title: Creating gists +intro: 'You can create two kinds of gists: {% ifversion ghae %}internal{% else %}public{% endif %} and secret. Create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist if you''re ready to share your ideas with {% ifversion ghae %}enterprise members{% else %}the world{% endif %} or a secret gist if you''re not.' permissions: '{% data reusables.enterprise-accounts.emu-permission-gist %}' redirect_from: - - /articles/about-gists/ - - /articles/cannot-delete-an-anonymous-gist/ - - /articles/deleting-an-anonymous-gist/ + - /articles/about-gists + - /articles/cannot-delete-an-anonymous-gist + - /articles/deleting-an-anonymous-gist - /articles/creating-gists - /github/writing-on-github/creating-gists versions: @@ -14,68 +14,71 @@ versions: ghae: '*' ghec: '*' --- +## About gists -## Sobre gists +Every gist is a Git repository, which means that it can be forked and cloned. {% ifversion not ghae %}If you are signed in to {% data variables.product.product_name %} when{% else %}When{% endif %} you create a gist, the gist will be associated with your account and you will see it in your list of gists when you navigate to your {% data variables.gists.gist_homepage %}. -Cada gist é um repositório Git, o que significa que ele pode ser bifurcado e clonado. {% ifversion not ghae %}Se você estiver conectado em {% data variables.product.product_name %} quando{% else %}Quando{% endif %} você criar um gist, este será associado à sua conta e você irá vê-lo na sua lista de gists ao acessar o seu {% data variables.gists.gist_homepage %}. +Gists can be {% ifversion ghae %}internal{% else %}public{% endif %} or secret. {% ifversion ghae %}Internal{% else %}Public{% endif %} gists show up in {% data variables.gists.discover_url %}, where {% ifversion ghae %}enterprise members{% else %}people{% endif %} can browse new gists as they're created. They're also searchable, so you can use them if you'd like other people to find and see your work. -Os gists podem ser {% ifversion ghae %}internos{% else %}públicos{% endif %} ou segredo. Gists{% ifversion ghae %}Internos{% else %}Públicos{% endif %} aparecem em {% data variables.gists.discover_url %}, em que os {% ifversion ghae %}integrantes da empresa{% else %}pessoas{% endif %} podem pesquisar novos gists criados. Eles também são pesquisáveis, de modo que é possível usá-los se desejar que outras pessoas encontrem e vejam seu trabalho. - -Os gists secretos não aparecem em {% data variables.gists.discover_url %} e não são pesquisáveis. Os grupos de segredos não são privados. Se você enviar a URL de um gist do segredo para {% ifversion ghae %}outro integrante da empresa{% else %}um amigo{% endif %}, eles poderão vê-la. No entanto, se {% ifversion ghae %}qualquer outro integrante corporativo{% else %}alguém que você não conhece{% endif %} descobrir a URL, essa pessoa também poderá ver o seu gist. Se precisar manter seu código longe de olhares curiosos, pode ser mais conveniente [criar um repositório privado](/articles/creating-a-new-repository). +Secret gists don't show up in {% data variables.gists.discover_url %} and are not searchable. Secret gists aren't private. If you send the URL of a secret gist to {% ifversion ghae %}another enterprise member{% else %}a friend{% endif %}, they'll be able to see it. However, if {% ifversion ghae %}any other enterprise member{% else %}someone you don't know{% endif %} discovers the URL, they'll also be able to see your gist. If you need to keep your code away from prying eyes, you may want to [create a private repository](/articles/creating-a-new-repository) instead. {% data reusables.gist.cannot-convert-public-gists-to-secret %} {% ifversion ghes %} -Se o administrador do site tiver desabilitado o modo privado, você também poderá usar gists anônimos, que podem ser públicos ou secretos. +If your site administrator has disabled private mode, you can also use anonymous gists, which can be public or secret. {% data reusables.gist.anonymous-gists-cannot-be-deleted %} {% endif %} -Você receberá uma notificação quando: -- Você for o autor de um gist. -- Alguém mencionar você em um gist. -- Você assinar um gist, clicando em **Assinar** na parte superior de qualquer gist. +You'll receive a notification when: +- You are the author of a gist. +- Someone mentions you in a gist. +- You subscribe to a gist, by clicking **Subscribe** at the top of any gist. {% ifversion fpt or ghes or ghec %} -Você pode fixar os gists no seu perfil para que outras pessoas possam vê-los facilmente. Para obter mais informações, consulte "[Fixar itens ao seu perfil](/articles/pinning-items-to-your-profile)". +You can pin gists to your profile so other people can see them easily. For more information, see "[Pinning items to your profile](/articles/pinning-items-to-your-profile)." {% endif %} -Você pode descobrir gists {% ifversion ghae %}internos{% else %}públicos{% endif %} que outros criaram, acessando {% data variables.gists.gist_homepage %} e clicando em **Todos os Gists**. Isso levará você a uma página com todos os gists classificados e exibidos por data de criação ou atualização. Também é possível pesquisar gists por linguagem com {% data variables.gists.gist_search_url %}. A pesquisa de gist usa a mesma sintaxe de pesquisa que a [pesquisa de código](/search-github/searching-on-github/searching-code). +You can discover {% ifversion ghae %}internal{% else %}public{% endif %} gists others have created by going to the {% data variables.gists.gist_homepage %} and clicking **All Gists**. This will take you to a page of all gists sorted and displayed by time of creation or update. You can also search gists by language with {% data variables.gists.gist_search_url %}. Gist search uses the same search syntax as [code search](/search-github/searching-on-github/searching-code). -Uma vez que os gists são repositórios Git, você pode exibir o histórico completo de commits deles, com diffs. Também é possível bifurcar ou clonar gists. Para obter mais informações, consulte ["Bifurcar e clonar gists"](/articles/forking-and-cloning-gists). +Since gists are Git repositories, you can view their full commit history, complete with diffs. You can also fork or clone gists. For more information, see ["Forking and cloning gists"](/articles/forking-and-cloning-gists). -Você pode baixar um arquivo ZIP de um gist clicando no botão **Download ZIP** (Baixar ZIP) no topo do gist. É possível inserir um gist em qualquer campo de texto que aceite Javascript, como uma postagem de blog. Para inserir código, clique no ícone de área de transferência ao lado de **Embed** URL de um gist. Para inserir um arquivo de gist específico, acrescente **Embed** URL com `?file=FILENAME`. +You can download a ZIP file of a gist by clicking the **Download ZIP** button at the top of the gist. You can embed a gist in any text field that supports Javascript, such as a blog post. To get the embed code, click the clipboard icon next to the **Embed** URL of a gist. To embed a specific gist file, append the **Embed** URL with `?file=FILENAME`. {% ifversion fpt or ghec %} -O gist permite mapeamento de arquivos geoJSON. Esses mapas são exibidos em gists inseridos, de modo que você pode compartilhar e inserir mapas facilmente. Para obter mais informações, consulte "[Trabalhando com arquivos sem código](/repositories/working-with-files/using-files/working-with-non-code-files#mapping-geojson-files-on-github)". +Gist supports mapping GeoJSON files. These maps are displayed in embedded gists, so you can easily share and embed maps. For more information, see "[Working with non-code files](/repositories/working-with-files/using-files/working-with-non-code-files#mapping-geojson-files-on-github)." {% endif %} -## Criar um gist +## Creating a gist -Siga os passos abaixo para criar um gist. +Follow the steps below to create a gist. {% ifversion fpt or ghes or ghae or ghec %} {% note %} -Você também pode criar um gist usando o {% data variables.product.prodname_cli %}. Para obter mais informações, consulte "[`gh gist cria`](https://cli.github.com/manual/gh_gist_create)" na documentação do {% data variables.product.prodname_cli %}. +You can also create a gist using the {% data variables.product.prodname_cli %}. For more information, see "[`gh gist create`](https://cli.github.com/manual/gh_gist_create)" in the {% data variables.product.prodname_cli %} documentation. -Como alternativa, você pode arrastar e soltar um arquivo de texto da sua área de trabalho diretamente no editor. +Alternatively, you can drag and drop a text file from your desktop directly into the editor. {% endnote %} {% endif %} -1. Entre no {% data variables.product.product_name %}. -2. Navegue até sua {% data variables.gists.gist_homepage %}. -3. Digite uma descrição opcional e o nome do seu gist. ![Descrição do nome do gist](/assets/images/help/gist/gist_name_description.png) +1. Sign in to {% data variables.product.product_name %}. +2. Navigate to your {% data variables.gists.gist_homepage %}. +3. Type an optional description and name for your gist. +![Gist name description](/assets/images/help/gist/gist_name_description.png) -4. Digite o texto do seu gist na caixa de texto do gist. ![Caixa de texto do gist](/assets/images/help/gist/gist_text_box.png) +4. Type the text of your gist into the gist text box. +![Gist text box](/assets/images/help/gist/gist_text_box.png) -5. Opcionalmente, para criar um gist {% ifversion ghae %}interno{% else %}público{% endif %}, clique em {% octicon "triangle-down" aria-label="The downwards triangle icon" %} e, em seguida, clique em **Criar {% ifversion ghae %}interno{% else %}público{% endif %} gist**. ![Menu suspenso para selecionar a visibilidade do gist]{% ifversion ghae %}(/assets/images/help/gist/gist-visibility-drop-down-ae.png){% else %}(/assets/images/help/gist/gist-visibility-drop-down.png){% endif %} +5. Optionally, to create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist, click {% octicon "triangle-down" aria-label="The downwards triangle icon" %}, then click **Create {% ifversion ghae %}internal{% else %}public{% endif %} gist**. +![Drop-down menu to select gist visibility]{% ifversion ghae %}(/assets/images/help/gist/gist-visibility-drop-down-ae.png){% else %}(/assets/images/help/gist/gist-visibility-drop-down.png){% endif %} -6. Clique em **Criar Gist secreto** ou **Criar gist{% ifversion ghae %}interno{% else %}público{% endif %}**. ![Botão para criar gist](/assets/images/help/gist/create-secret-gist-button.png) +6. Click **Create secret Gist** or **Create {% ifversion ghae %}internal{% else %}public{% endif %} gist**. + ![Button to create gist](/assets/images/help/gist/create-secret-gist-button.png) diff --git a/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md b/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md index 3a92ccf651..cbc1fe7c11 100644 --- a/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md +++ b/translations/pt-BR/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md @@ -1,9 +1,9 @@ --- -title: Editar e compartilhar conteúdo com gists +title: Editing and sharing content with gists intro: '' redirect_from: - - /categories/23/articles/ - - /categories/gists/ + - /categories/23/articles + - /categories/gists - /articles/editing-and-sharing-content-with-gists versions: fpt: '*' @@ -13,6 +13,6 @@ versions: children: - /creating-gists - /forking-and-cloning-gists -shortTitle: Compartilhar conteúdo com gists +shortTitle: Share content with gists --- diff --git a/translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md b/translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md index 9a6581e775..568196ac4e 100644 --- a/translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md +++ b/translations/pt-BR/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md @@ -1,10 +1,10 @@ --- -title: Introdução à escrita e formatação no GitHub +title: Getting started with writing and formatting on GitHub redirect_from: - - /articles/markdown-basics/ - - /articles/things-you-can-do-in-a-text-area-on-github/ + - /articles/markdown-basics + - /articles/things-you-can-do-in-a-text-area-on-github - /articles/getting-started-with-writing-and-formatting-on-github -intro: 'No GitHub, com recursos simples você pode formatar seus comentários e interagir com problemas, pull requests e wikis.' +intro: 'You can use simple features to format your comments and interact with others in issues, pull requests, and wikis on GitHub.' versions: fpt: '*' ghes: '*' @@ -13,6 +13,6 @@ versions: children: - /about-writing-and-formatting-on-github - /basic-writing-and-formatting-syntax -shortTitle: Comece a escrever no GitHub +shortTitle: Start writing on GitHub --- diff --git a/translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md index 2464279e9e..5f8e3d33ce 100644 --- a/translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/translations/pt-BR/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -3,7 +3,7 @@ title: Attaching files intro: You can convey information by attaching a variety of file types to your issues and pull requests. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/file-attachments-on-issues-and-pull-requests - - /articles/issue-attachments/ + - /articles/issue-attachments - /articles/file-attachments-on-issues-and-pull-requests - /github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests versions: diff --git a/translations/pt-BR/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md b/translations/pt-BR/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md index 2013994cd1..45ee882eba 100644 --- a/translations/pt-BR/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md +++ b/translations/pt-BR/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md @@ -1,8 +1,8 @@ --- -title: Editar uma resposta salva -intro: Você pode editar o título e o corpo de uma resposta salva. +title: Editing a saved reply +intro: You can edit the title and body of a saved reply. redirect_from: - - /articles/changing-a-saved-reply/ + - /articles/changing-a-saved-reply - /articles/editing-a-saved-reply - /github/writing-on-github/editing-a-saved-reply versions: @@ -11,16 +11,17 @@ versions: ghae: '*' ghec: '*' --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.saved_replies %} -3. Em "Saved replies" (Respostas salvas), ao lado da resposta salva que deseja editar, clique em {% octicon "pencil" aria-label="The pencil" %}. - ![Editar resposta salva](/assets/images/help/settings/saved-replies-edit-existing.png) -4. Em "Edit saved reply" (Editar resposta salva), é possível editar o título e o conteúdo da resposta salva. ![Editar título e conteúdo](/assets/images/help/settings/saved-replies-edit-existing-content.png) -5. Clique em **Update saved reply** (Atualizar resposta salva). ![Atualizar resposta salva](/assets/images/help/settings/saved-replies-save-edit.png) +3. Under "Saved replies", next to the saved reply you want to edit, click {% octicon "pencil" aria-label="The pencil" %}. +![Edit a saved reply](/assets/images/help/settings/saved-replies-edit-existing.png) +4. Under "Edit saved reply", you can edit the title and the content of the saved reply. +![Edit title and content](/assets/images/help/settings/saved-replies-edit-existing-content.png) +5. Click **Update saved reply**. +![Update saved reply](/assets/images/help/settings/saved-replies-save-edit.png) -## Leia mais +## Further reading -- "[Criar uma resposta salva](/articles/creating-a-saved-reply)" -- "[Excluir uma resposta salva](/articles/deleting-a-saved-reply)" -- "[Usar respostas salvas](/articles/using-saved-replies)" +- "[Creating a saved reply](/articles/creating-a-saved-reply)" +- "[Deleting a saved reply](/articles/deleting-a-saved-reply)" +- "[Using saved replies](/articles/using-saved-replies)" diff --git a/translations/pt-BR/content/graphql/reference/mutations.md b/translations/pt-BR/content/graphql/reference/mutations.md index 2a20b09759..73f190ae96 100644 --- a/translations/pt-BR/content/graphql/reference/mutations.md +++ b/translations/pt-BR/content/graphql/reference/mutations.md @@ -1,5 +1,5 @@ --- -title: Mutações +title: Mutations redirect_from: - /v4/mutation - /v4/reference/mutation @@ -12,12 +12,11 @@ topics: - API --- -## Sobre as mutações +## About mutations -Cada esquema de GraphQL tem um tipo de raiz para consultas e mutações. O [tipo de mutação](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System) define operações do GraphQL que alteram dados no servidor. É análogo a executar verbos HTTP como `POST`, `PATCH` e `DELETE`. +Every GraphQL schema has a root type for both queries and mutations. The [mutation type](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System) defines GraphQL operations that change data on the server. It is analogous to performing HTTP verbs such as `POST`, `PATCH`, and `DELETE`. -Para obter mais informações, consulte "[Sobre mutações](/graphql/guides/forming-calls-with-graphql#about-mutations)". +For more information, see "[About mutations](/graphql/guides/forming-calls-with-graphql#about-mutations)." -{% for item in graphql.schemaForCurrentVersion.mutations %} - {% include graphql-mutation %} -{% endfor %} +<!-- this page is pre-rendered by scripts because it's too big to load dynamically --> +<!-- see lib/graphql/static/prerendered-mutations.json --> diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/about-task-lists.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/about-task-lists.md index 0adb6adea0..117c5eadfc 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/about-task-lists.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/about-task-lists.md @@ -1,6 +1,6 @@ --- -title: Sobre listas de tarefas -intro: 'Você pode usar listas de tarefas para dividir o trabalho de um problema ou pull request em tarefas menores e, em seguida, rastrear o conjunto completo de trabalho a ser concluído.' +title: About task lists +intro: 'You can use task lists to break the work for an issue or pull request into smaller tasks, then track the full set of work to completion.' redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/about-task-lists - /articles/about-task-lists @@ -19,56 +19,56 @@ topics: {% ifversion fpt or ghec %} {% note %} -**Observação:** A lista de tarefas melhorada está atualmente na versão beta e sujeita a alterações. +**Note:** Improved task lists are currently in beta and subject to change. {% endnote %} {% endif %} -## Sobre listas de tarefas +## About task lists -Uma lista de tarefas é um conjunto de tarefas que cada uma interpreta em uma linha separada com uma caixa de seleção clicável. Você pode selecionar ou desmarcar as caixas de seleção para marcar as tarefas como concluídas ou não concluídas. +A task list is a set of tasks that each render on a separate line with a clickable checkbox. You can select or deselect the checkboxes to mark the tasks as complete or incomplete. -Você pode usar Markdown para criar uma lista de tarefas em qualquer comentário em {% data variables.product.product_name %}. {% ifversion fpt or ghec %}Se você fizer referência a um problema, pull request, ou discussão em uma lista de tarefas, a referência irá desenrolar-se para mostrar o título e o estado.{% endif %} +You can use Markdown to create a task list in any comment on {% data variables.product.product_name %}. {% ifversion fpt or ghec %}If you reference an issue, pull request, or discussion in a task list, the reference will unfurl to show the title and state.{% endif %} -{% ifversion not fpt or ghec %} -Você poderá exibir informações de resumo da lista de tarefas nas listas de problemas e pull requests quando a lista de tarefas estiver no comentário inicial. +{% ifversion not fpt or ghec %} +You can view task list summary information in issue and pull request lists, when the task list is in the initial comment. {% else %} -## Sobre listas de tarefas do problema +## About issue task lists -Se você adicionar uma lista de tarefas ao texto de um problema, isso significa que a lista adicionou a funcionalidade. +If you add a task list to the body of an issue, the list has added functionality. -- Para ajudar você a acompanhar o trabalho da sua equipe em um problema, o progresso da lista de tarefas de um problema aparece em vários lugares em {% data variables.product.product_name %} como, por exemplo, em uma lista de problemas de um repositório. -- Se uma tarefa fizer referência a outro problema e alguém fechar esse problema, a caixa de seleção da tarefa será automaticamente marcada como concluída. -- Se uma tarefa exigir mais rastreamento ou discussão, você poderá convertê-la em um problema, passando o mouse sobre a tarefa e clicando em {% octicon "issue-opened" aria-label="The issue opened icon" %} no canto superior direito da tarefa. Para adicionar mais detalhes antes de criar o problema, você pode usar atalhos de teclado para abrir o formulário do novo problema. Para obter mais informações, consulte "[Atalhos de teclado](/github/getting-started-with-github/using-github/keyboard-shortcuts#issues-and-pull-requests)". -- Quaisquer problemas referenciados na lista de tarefas especificarão que são rastreados no problema de referência. +- To help you track your team's work on an issue, the progress of an issue's task list appears in various places on {% data variables.product.product_name %}, such as a repository's list of issues. +- If a task references another issue and someone closes that issue, the task's checkbox will automatically be marked as complete. +- If a task requires further tracking or discussion, you can convert the task to an issue by hovering over the task and clicking {% octicon "issue-opened" aria-label="The issue opened icon" %} in the upper-right corner of the task. To add more details before creating the issue, you can use keyboard shortcuts to open the new issue form. For more information, see "[Keyboard shortcuts](/github/getting-started-with-github/using-github/keyboard-shortcuts#issues-and-pull-requests)." +- Any issues referenced in the task list will specify that they are tracked in the referencing issue. -![Lista de tarefas gerada](/assets/images/help/writing/task-list-rendered.png) +![Rendered task list](/assets/images/help/writing/task-list-rendered.png) {% endif %} -## Criar listas de tarefas +## Creating task lists {% data reusables.repositories.task-list-markdown %} -## Reordenar tarefas +## Reordering tasks -Você pode reordenar os itens de uma lista de tarefas clicando à esquerda da caixa de seleção de uma tarefa arrastando a tarefa para uma nova localidade e soltando a tarefa. Você pode reordenar tarefas em diferentes listas no mesmo comentário, mas você não pode reordenar tarefas em diferentes comentários. +You can reorder the items in a task list by clicking to the left of a task's checkbox, dragging the task to a new location, and dropping the task. You can reorder tasks across different lists in the same comment, but you can not reorder tasks across different comments. -{% ifversion fpt %} ![Lista de tarefas reordenadas](/assets/images/help/writing/task-list-reordered.gif) +{% ifversion fpt %} ![Reordered task list](/assets/images/help/writing/task-list-reordered.gif) {% else %} ![Reordered task list](/assets/images/enterprise/writing/task-lists-reorder.gif) {% endif %} {% ifversion fpt %} -## Navegação de problemas monitorizados +## Navigating tracked issues -Todos os problemas referenciados em uma lista de tarefas especificam que são acompanhados pelo problema que contém a lista de tarefas. Para Acessar o problema de rastreamento a partir do problema rastreado, clique no número de rastreamento do **Rastreado na seção** ao lado do status do problema. +Any issues that are referenced in a task list specify that they are tracked by the issue that contains the task list. To navigate to the tracking issue from the tracked issue, click on the tracking issue number in the **Tracked in** section next to the issue status. -![Rastreado no exemplo](/assets/images/help/writing/task_list_tracked.png) +![Tracked in example](/assets/images/help/writing/task_list_tracked.png) {% endif %} -## Leia mais +## Further reading * "[Basic writing and formatting syntax](/articles/basic-writing-and-formatting-syntax)"{% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %} -* "[Tracking {% data variables.product.prodname_code_scanning %} alerts in issues using task lists](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/tracking-code-scanning-alerts-in-issues-using-task-lists)"{% endif %} +* "[Tracking {% data variables.product.prodname_code_scanning %} alerts in issues using task lists](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/tracking-code-scanning-alerts-in-issues-using-task-lists)"{% endif %} \ No newline at end of file diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/creating-an-issue.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/creating-an-issue.md index e5244978c6..cb346ba181 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/creating-an-issue.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/creating-an-issue.md @@ -1,6 +1,6 @@ --- -title: Criar um problema -intro: 'Os problemas podem ser criados de várias maneiras. Portanto, você pode escolher o método mais conveniente para seu fluxo de trabalho.' +title: Creating an issue +intro: 'Issues can be created in a variety of ways, so you can choose the most convenient method for your workflow.' permissions: 'People with read access can create an issue in a repository where issues are enabled. {% data reusables.enterprise-accounts.emu-permission-repo %}' redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/creating-an-issue @@ -27,121 +27,131 @@ topics: - Pull requests - Issues - Project management -shortTitle: Cria um problema +shortTitle: Create an issue type: how_to --- -Os problemas podem ser usados para acompanhar erros, aprimoramentos ou outras solicitações. Para obter mais informações, consulte "[Sobre problemas](/issues/tracking-your-work-with-issues/about-issues)". +Issues can be used to keep track of bugs, enhancements, or other requests. For more information, see "[About issues](/issues/tracking-your-work-with-issues/about-issues)." {% data reusables.repositories.administrators-can-disable-issues %} -## Criar um problema a partir de um repositório +## Creating an issue from a repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} {% data reusables.repositories.new_issue %} -1. Se o seu repositório usar modelos de problemas, clique em **Começar** ao lado do tipo de problema que você gostaria de abrir. ![Select the type of issue you want to create](/assets/images/help/issues/issue_template_get_started_button.png) Ou, clique **Abrir um problema em branco** se o tipo de problema que você gostaria de abrir não estiver incluído nas opções disponíveis. ![Link para abrir um problema em branco](/assets/images/help/issues/blank_issue_link.png) +1. If your repository uses issue templates, click **Get started** next to the type of issue you'd like to open. + ![Select the type of issue you want to create](/assets/images/help/issues/issue_template_get_started_button.png) + Or, click **Open a blank issue** if the type of issue you'd like to open isn't included in the available options. + ![Link to open a blank issue](/assets/images/help/issues/blank_issue_link.png) {% data reusables.repositories.type-issue-title-and-description %} {% data reusables.repositories.assign-an-issue-as-project-maintainer %} {% data reusables.repositories.submit-new-issue %} -## Criando um problema com {% data variables.product.prodname_cli %} +## Creating an issue with {% data variables.product.prodname_cli %} -{% data reusables.cli.about-cli %} Para saber mais sobre {% data variables.product.prodname_cli %}, consulte "[Sobre {% data variables.product.prodname_cli %}](/github-cli/github-cli/about-github-cli)." +{% data reusables.cli.about-cli %} To learn more about {% data variables.product.prodname_cli %}, see "[About {% data variables.product.prodname_cli %}](/github-cli/github-cli/about-github-cli)." -Para criar um problema, use o subcomando `gh issue create`. Para ignorar as instruções interativas, inclua os sinalizadores `--body` e `--title`. +To create an issue, use the `gh issue create` subcommand. To skip the interactive prompts, include the `--body` and the `--title` flags. ```shell gh issue create --title "My new issue" --body "Here are more details." ``` -Você também pode especificar responsáveis, etiquetas, marcos e projetos. +You can also specify assignees, labels, milestones, and projects. ```shell gh issue create --title "My new issue" --body "Here are more details." --assignee @me,monalisa --label "bug,help wanted" --project onboarding --milestone "learning codebase" ``` -## Criando um problema a partir de um comentário +## Creating an issue from a comment -Você pode abrir um novo problema a partir de um comentário em um problema ou pull request. Quando você abre um problema a partir de um comentário, o problema contém um trecho mostrando onde o comentário foi originalmente publicado. +You can open a new issue from a comment in an issue or pull request. When you open an issue from a comment, the issue contains a snippet showing where the comment was originally posted. -1. Acesse o comentário que você deseja abrir a partir de um problema. -2. No comentário, clique em {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}.![Botão de kebab no comentário de revisão de pull request](/assets/images/help/pull_requests/kebab-in-pull-request-review-comment.png) -3. Clique em **Reference in new issue** (Referência em um novo problema). ![Item de menu Reference in new issue (Referência em um novo problema)](/assets/images/help/pull_requests/reference-in-new-issue.png) -4. Use o menu suspenso "Repository" (Repositório) para selecionar o repositório em que deseja abrir o problema. ![Menu suspenso Repository (Repositório) para o novo problema](/assets/images/help/pull_requests/new-issue-repository.png) -5. Digite um título descritivo e o texto do problema. ![Título e texto do novo problema](/assets/images/help/pull_requests/new-issue-title-and-body.png) -6. Clique em **Create issue** (Criar problema). ![Botão para criar novo problema](/assets/images/help/pull_requests/create-issue.png) +1. Navigate to the comment that you would like to open an issue from. +2. In that comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}. + ![Kebab button in pull request review comment](/assets/images/help/pull_requests/kebab-in-pull-request-review-comment.png) +3. Click **Reference in new issue**. + ![Reference in new issue menu item](/assets/images/help/pull_requests/reference-in-new-issue.png) +4. Use the "Repository" drop-down menu, and select the repository you want to open the issue in. + ![Repository dropdown for new issue](/assets/images/help/pull_requests/new-issue-repository.png) +5. Type a descriptive title and body for the issue. + ![Title and body for new issue](/assets/images/help/pull_requests/new-issue-title-and-body.png) +6. Click **Create issue**. + ![Button to create new issue](/assets/images/help/pull_requests/create-issue.png) {% data reusables.repositories.assign-an-issue-as-project-maintainer %} {% data reusables.repositories.submit-new-issue %} -## Criando um problema a partir do código +## Creating an issue from code -É possível abrir um problema novo a partir de uma linha ou linhas específicas de código em um arquivo ou pull request. Quando você abre um problema de código, o problema contém um trecho mostrando a linha ou intervalo de código que você escolheu. Você pode abrir somente um problema no mesmo repositório onde o código é armazenado. +You can open a new issue from a specific line or lines of code in a file or pull request. When you open an issue from code, the issue contains a snippet showing the line or range of code you chose. You can only open an issue in the same repository where the code is stored. -![Trecho de código fornecido em um problema aberto de código](/assets/images/help/repository/issue-opened-from-code.png) +![Code snippet rendered in an issue opened from code](/assets/images/help/repository/issue-opened-from-code.png) {% data reusables.repositories.navigate-to-repo %} -1. Localize o código que deseja referenciar em um problema: - - Para abrir um problema sobre código em um arquivo, navegue até o arquivo. - - Para abrir um problema sobre código em uma pull request, navegue até a pull request e clique em {% octicon "diff" aria-label="The file diff icon" %} **Files changed** (Arquivos alterados). Depois, vá até o arquivo que contém o código que você quer incluir em seu comentário e clique em **View** (Visualizar). +1. Locate the code you want to reference in an issue: + - To open an issue about code in a file, navigate to the file. + - To open an issue about code in a pull request, navigate to the pull request and click {% octicon "diff" aria-label="The file diff icon" %} **Files changed**. Then, browse to the file that contains the code you want include in your comment, and click **View**. {% data reusables.repositories.choose-line-or-range %} -4. À esquerda do intervalo do código, clique em {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %}. No menu suspenso, clique em **Referência em um novo problema**. ![Menu kebab com opção para abrir um novo problema a partir de uma linha selecionada](/assets/images/help/repository/open-new-issue-specific-line.png) +4. To the left of the code range, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %}. In the drop-down menu, click **Reference in new issue**. + ![Kebab menu with option to open a new issue from a selected line](/assets/images/help/repository/open-new-issue-specific-line.png) {% data reusables.repositories.type-issue-title-and-description %} {% data reusables.repositories.assign-an-issue-as-project-maintainer %} {% data reusables.repositories.submit-new-issue %} {% ifversion fpt or ghec %} -## Criando um problema da discussão +## Creating an issue from discussion -As pessoas com permissão de triagem para um repositório podem criar um problema a partir de uma discussão. +People with triage permission to a repository can create an issue from a discussion. -Ao criar um problema a partir de uma discussão, o conteúdo da postagem na discussão será automaticamente incluído no texto do problema e todas as etiquetas serão mantidas. A criação de um problema a partir de uma discussão não converte a discussão em um problema ou exclui a discussão existente. Para obter mais informações sobre {% data variables.product.prodname_discussions %}, consulte "[Sobre discussões "](/discussions/collaborating-with-your-community-using-discussions/about-discussions)". +When you create an issue from a discussion, the contents of the discussion post will be automatically included in the issue body, and any labels will be retained. Creating an issue from a discussion does not convert the discussion to an issue or delete the existing discussion. For more information about {% data variables.product.prodname_discussions %}, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} -1. Na barra lateral direita, clique em {% octicon "issue-opened" aria-label="The issues icon" %} **Criar problema a partir da discussão**. ![Botão para criar um problema da discussão](/assets/images/help/discussions/create-issue-from-discussion.jpg) +1. In the right sidebar, click {% octicon "issue-opened" aria-label="The issues icon" %} **Create issue from discussion**. + ![Button to create issue from discussion](/assets/images/help/discussions/create-issue-from-discussion.jpg) {% data reusables.repositories.type-issue-title-and-description %} {% data reusables.repositories.assign-an-issue-as-project-maintainer %} {% data reusables.repositories.submit-new-issue %} {% endif %} -## Criando um problema a partir de uma observação do quadro de projeto +## Creating an issue from a project board note -Se estiver usando um quadro de projeto para rastrear e priorizar seu trabalho, você poderá converter observações do quadro de projeto em problemas. Para obter mais informações, consulte "[Sobre quadros de projeto](/github/managing-your-work-on-github/about-project-boards)" e "[Adicionando observações a um quadro de projeto](/github/managing-your-work-on-github/adding-notes-to-a-project-board#converting-a-note-to-an-issue)". +If you're using a project board to track and prioritize your work, you can convert project board notes to issues. For more information, see "[About project boards](/github/managing-your-work-on-github/about-project-boards)" and "[Adding notes to a project board](/github/managing-your-work-on-github/adding-notes-to-a-project-board#converting-a-note-to-an-issue)." {% ifversion fpt or ghec %} -## Criando uma problema a partir de um item da lista de tarefas +## Creating an issue from a task list item -Dentro de um problema, você pode usar as listas de tarefas para dividir o trabalho em tarefas menores e acompanhar o conjunto completo de trabalho a ser concluído. Se uma tarefa exigir mais rastreamento ou discussão, você poderá convertê-la em um problema, passando o mouse sobre a tarefa e clicando em {% octicon "issue-opened" aria-label="The issue opened icon" %} no canto superior direito da tarefa. Para obter mais informações, consulte "[Sobre listas de tarefas](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)". +Within an issue, you can use task lists to break work into smaller tasks and track the full set of work to completion. If a task requires further tracking or discussion, you can convert the task to an issue by hovering over the task and clicking {% octicon "issue-opened" aria-label="The issue opened icon" %} in the upper-right corner of the task. For more information, see "[About task lists](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)." {% endif %} -## Criando um problema a partir de uma consulta de URL +## Creating an issue from a URL query -Você pode usar parâmetros de consulta para abrir problemas. Os parâmetros de consulta são partes opcionais de uma URL que podem ser personalizadas para compartilhar uma exibição de página web específica, como resultados do filtro de pesquisa ou um modelo de problemas no {% data variables.product.prodname_dotcom %}. Para criar seus próprios parâmetros de consulta, você deve corresponder o par de chave e valor. +You can use query parameters to open issues. Query parameters are optional parts of a URL you can customize to share a specific web page view, such as search filter results or an issue template on {% data variables.product.prodname_dotcom %}. To create your own query parameters, you must match the key and value pair. {% tip %} -**Dica:** também é possível criar modelos de problemas que são abertos com etiquetas padrão, responsáveis e um título para o problema. Para obter mais informações, consulte "[Usar modelos para incentivar problemas úteis e pull requests](/communities/using-templates-to-encourage-useful-issues-and-pull-requests)". +**Tip:** You can also create issue templates that open with default labels, assignees, and an issue title. For more information, see "[Using templates to encourage useful issues and pull requests](/communities/using-templates-to-encourage-useful-issues-and-pull-requests)." {% endtip %} -Você deve ter as permissões adequadas para qualquer ação para usar o parâmetro de consulta equivalente. Por exemplo, é preciso ter permissão para adicionar uma etiqueta a um problema para usar o parâmetro de consulta `label`. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." +You must have the proper permissions for any action to use the equivalent query parameter. For example, you must have permission to add a label to an issue to use the `labels` query parameter. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." -Se você criar uma URL inválida usando parâmetros de consulta, ou se você não tiver as permissões adequadas, a URL retornará uma página de erro `404 Not Found`. Se você criar uma URL que excede o limite do servidor, a URL retornará uma página de erro de `414 URI Too Long`. +If you create an invalid URL using query parameters, or if you don’t have the proper permissions, the URL will return a `404 Not Found` error page. If you create a URL that exceeds the server limit, the URL will return a `414 URI Too Long` error page. -| Parâmetro de consulta | Exemplo | -| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `title` | `https://github.com/octo-org/octo-repo/issues/new?labels=bug&title=New+bug+report` cria um problema com a etiqueta "erro" e o título "Novo relatório de erros". | -| `texto` | `https://github.com/octo-org/octo-repo/issues/new?title=New+bug+report&body=Describe+the+problem.` cria um problema com o título "Novo relatório de erro" e o comentário "Descreva o problema" no texto do problema. | -| `etiquetas` | `https://github.com/octo-org/octo-repo/issues/new?labels=help+wanted,bug` cria um problema com as etiquetas "help wanted" e "bug". | -| `marco` | `https://github.com/octo-org/octo-repo/issues/new?milestone=testing+milestones` cria um problema com o marco "marcos de teste". | -| `assignees` | `https://github.com/octo-org/octo-repo/issues/new?assignees=octocat` cria um problema e o atribui a @octocat. | -| `projetos` | `https://github.com/octo-org/octo-repo/issues/new?title=Bug+fix&projects=octo-org/1` cria um problema com o título "Correção de erro" e o adiciona ao quadro de projeto 1 da organização. | -| `modelo` | `https://github.com/octo-org/octo-repo/issues/new?template=issue_template.md` cria um problema com um modelo no texto do problema. O parâmetro de consulta `template` funciona com modelos armazenados em um subdiretório `ISSUE_TEMPLATE` dentro da raiz, `docs/` ou diretório do `.github/` em um repositório. Para obter mais informações, consulte "[Usar modelos para incentivar problemas úteis e pull requests](/communities/using-templates-to-encourage-useful-issues-and-pull-requests)". | +Query parameter | Example +--- | --- +`title` | `https://github.com/octo-org/octo-repo/issues/new?labels=bug&title=New+bug+report` creates an issue with the label "bug" and title "New bug report." +`body` | `https://github.com/octo-org/octo-repo/issues/new?title=New+bug+report&body=Describe+the+problem.` creates an issue with the title "New bug report" and the comment "Describe the problem" in the issue body. +`labels` | `https://github.com/octo-org/octo-repo/issues/new?labels=help+wanted,bug` creates an issue with the labels "help wanted" and "bug". +`milestone` | `https://github.com/octo-org/octo-repo/issues/new?milestone=testing+milestones` creates an issue with the milestone "testing milestones." +`assignees` | `https://github.com/octo-org/octo-repo/issues/new?assignees=octocat` creates an issue and assigns it to @octocat. +`projects` | `https://github.com/octo-org/octo-repo/issues/new?title=Bug+fix&projects=octo-org/1` creates an issue with the title "Bug fix" and adds it to the organization's project board 1. +`template` | `https://github.com/octo-org/octo-repo/issues/new?template=issue_template.md` creates an issue with a template in the issue body. The `template` query parameter works with templates stored in an `ISSUE_TEMPLATE` subdirectory within the root, `docs/` or `.github/` directory in a repository. For more information, see "[Using templates to encourage useful issues and pull requests](/communities/using-templates-to-encourage-useful-issues-and-pull-requests)." {% ifversion fpt or ghes > 3.3 or ghae-issue-5036 %} ## Creating an issue from a {% data variables.product.prodname_code_scanning %} alert @@ -152,6 +162,6 @@ If you're using issues to track and prioritize your work, you can use issues to {% endif %} -## Leia mais +## Further reading -- "[Escrevendo no GitHub](/github/writing-on-github)" +- "[Writing on GitHub](/github/writing-on-github)" diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/deleting-an-issue.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/deleting-an-issue.md index f9d5a45918..a23f051cf7 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/deleting-an-issue.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/deleting-an-issue.md @@ -1,6 +1,6 @@ --- -title: Excluir um problema -intro: Pessoas com permissões de administrador em um repositório podem excluir permanentemente um problema de um repositório. +title: Deleting an issue +intro: People with admin permissions in a repository can permanently delete an issue from a repository. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/deleting-an-issue - /articles/deleting-an-issue @@ -14,17 +14,17 @@ versions: topics: - Pull requests --- +You can only delete issues in a repository owned by your user account. You cannot delete issues in a repository owned by another user account, even if you are a collaborator there. -Você só pode excluir problemas em um repositório que pertença à sua conta de usuário. Não é possível excluir problemas em um repositório pertencente a outra conta de usuário, mesmo que você seja um colaborador nela. +To delete an issue in a repository owned by an organization, an organization owner must enable deleting an issue for the organization's repositories, and you must have admin or owner permissions in the repository. For more information, see "[Allowing people to delete issues in your organization](/articles/allowing-people-to-delete-issues-in-your-organization)" and "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." -Para excluir um problema em um repositório que pertença a uma organização, o proprietário da organização deve permitir a exclusão de um problema dos repositórios da organização e você deve ter permissões de administrador ou de proprietário no repositório. For more information, see "[Allowing people to delete issues in your organization](/articles/allowing-people-to-delete-issues-in-your-organization)" and "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." +Collaborators do not receive a notification when you delete an issue. When visiting the URL of a deleted issue, collaborators will see a message stating that the issue is deleted. People with admin or owner permissions in the repository will additionally see the username of the person who deleted the issue and when it was deleted. -Os colaboradores não recebem uma notificação quando você exclui um problema. Ao acessarem a URL de um problema excluído, os colaboradores verão uma mensagem informando que o problema foi eliminado. As pessoas com permissões de administrador ou proprietário no repositório também verão o nome de usuário da pessoa que excluiu o problema e quando isso ocorreu. +1. Navigate to the issue you want to delete. +2. On the right side bar, under "Notifications", click **Delete issue**. +!["Delete issue" text highlighted on bottom of the issue page's right side bar](/assets/images/help/issues/delete-issue.png) +4. To confirm deletion, click **Delete this issue**. -1. Navegue até o problema que deseja excluir. -2. Na barra lateral direita, em "Notifications" (Notificações), clique em **Delete this issue** (Excluir este problema). !["Excluir problema" texto destacado na barra lateral direita ao final da página de problema](/assets/images/help/issues/delete-issue.png) -4. Para confirmar a exclusão, clique em **Delete this issue** (Excluir problema). +## Further reading -## Leia mais - -- "[Vinculando uma pull request a um problema](/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue)" +- "[Linking a pull request to an issue](/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue)" diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue.md index ab8ca807c6..739677adb9 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue.md @@ -1,6 +1,6 @@ --- -title: Vinculando uma pull request a um problema -intro: Você pode vincular um pull request a um problema para mostrar que uma correção está em andamento e para fechar automaticamente o problema quando o pull request for mesclado. +title: Linking a pull request to an issue +intro: You can link a pull request to an issue to show that a fix is in progress and to automatically close the issue when the pull request is merged. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/linking-a-pull-request-to-an-issue - /articles/closing-issues-via-commit-message/ @@ -16,26 +16,25 @@ versions: ghec: '*' topics: - Pull requests -shortTitle: Vincular PR a um problema +shortTitle: Link PR to issue --- - {% note %} -**Observação:** As palavras-chave especiais na descrição de um pull request são interpretadas quando o pull request aponta para o branch-padrão do *repositório*. No entanto, se a base do PR's for *qualquer outro branch*, essas palavras-chave serão ignoradas, nenhum link será criado e o merge do PR não terá efeito sobre os problemas. **Se você deseja vincular um pull request a um problema usando uma palavra-chave, o PR deverá estar no branch-padrão.** +**Note:** The special keywords in a pull request description are interpreted when the pull request targets the repository's *default* branch. However, if the PR's base is *any other branch*, then these keywords are ignored, no links are created and merging the PR has no effect on the issues. **If you want to link a pull request to an issue using a keyword, the PR must be on the default branch.** {% endnote %} -## Sobre problemas e pull requests vinculados +## About linked issues and pull requests -Você pode vincular um problema a uma pull request {% ifversion fpt or ghes or ghae or ghec %}manualmente ou {% endif %}usando uma palavra-chave suportada na descrição da pull request. +You can link an issue to a pull request {% ifversion fpt or ghes or ghae or ghec %}manually or {% endif %}using a supported keyword in the pull request description. -Quando você vincula uma pull request ao problema que a pull request tem de lidar, os colaboradores poderão ver que alguém está trabalhando no problema. +When you link a pull request to the issue the pull request addresses, collaborators can see that someone is working on the issue. -Quando você mescla uma pull request vinculada no branch padrão de um repositório, o problema vinculado será fechado automaticamente. Para obter mais informações sobre o branch padrão, consulte "[Configurado o branch padrão](/github/administering-a-repository/setting-the-default-branch). " +When you merge a linked pull request into the default branch of a repository, its linked issue is automatically closed. For more information about the default branch, see "[Changing the default branch](/github/administering-a-repository/changing-the-default-branch)." -## Vinculando uma pull request a um problema usando uma palavra-chave +## Linking a pull request to an issue using a keyword -Você pode vincular uma solicitação de pull a um problema usando uma palavra-chave compatível na descrição do pull request ou em uma mensagem de commit (observe que a solicitação do pull deve estar no branch-padrão). +You can link a pull request to an issue by using a supported keyword in the pull request's description or in a commit message (please note that the pull request must be on the default branch). * close * closes @@ -43,39 +42,41 @@ Você pode vincular uma solicitação de pull a um problema usando uma palavra-c * fix * fixes * fixed -* resolver * resolve +* resolves * resolved If you use a keyword to reference a pull request comment in another pull request, the pull requests will be linked. Merging the referencing pull request will also close the referenced pull request. -A sintaxe para fechar palavras-chave depende se o problema está no mesmo repositório que a pull request. +The syntax for closing keywords depends on whether the issue is in the same repository as the pull request. -| Problemas vinculado | Sintaxe | Exemplo | -| ------------------------------------ | --------------------------------------------- | -------------------------------------------------------------- | -| Problema no mesmo repositório | *KEYWORD* #*ISSUE-NUMBER* | `Closes #10` | -| Problema em um repositório diferente | *KEYWORD* *OWNER*/*REPOSITORY*#*ISSUE-NUMBER* | `Fixes octo-org/octo-repo#100` | -| Múltiplos problemas | Usar sintaxe completa para cada problema | `Resolves #10, resolves #123, resolves octo-org/octo-repo#100` | +Linked issue | Syntax | Example +--------------- | ------ | ------ +Issue in the same repository | *KEYWORD* #*ISSUE-NUMBER* | `Closes #10` +Issue in a different repository | *KEYWORD* *OWNER*/*REPOSITORY*#*ISSUE-NUMBER* | `Fixes octo-org/octo-repo#100` +Multiple issues | Use full syntax for each issue | `Resolves #10, resolves #123, resolves octo-org/octo-repo#100` -{% ifversion fpt or ghes or ghae or ghec %}Somente pull requests vinculadas manualmente podem ser desvinculadas. Para desvincular um problema que você vinculou usando uma palavra-chave, você deve editar a descrição da pull request para remover a palavra-chave.{% endif %} +{% ifversion fpt or ghes or ghae or ghec %}Only manually linked pull requests can be manually unlinked. To unlink an issue that you linked using a keyword, you must edit the pull request description to remove the keyword.{% endif %} -Você também pode usar palavras-chave de fechamento em uma mensagem de commit. O problema será encerrado quando você mesclar o commit no branch padrão, mas o pull request que contém o commit não será listado como um pull request vinculado. +You can also use closing keywords in a commit message. The issue will be closed when you merge the commit into the default branch, but the pull request that contains the commit will not be listed as a linked pull request. {% ifversion fpt or ghes or ghae or ghec %} -## Vinculando manualmente uma pull request a um problema +## Manually linking a pull request to an issue -Qualquer pessoa com permissões de gravação em um repositório pode vincular manualmente uma pull request a um problema. +Anyone with write permissions to a repository can manually link a pull request to an issue. -Você pode vincular manualmente até dez problemas para cada pull request. O problema e a pull request devem estar no mesmo repositório. +You can manually link up to ten issues to each pull request. The issue and pull request must be in the same repository. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} -3. Na lista de pull requests, clique na pull request que você gostaria de vincular a um problema. -4. Na barra lateral direita, clique em **Linked issues** (Problemas vinculados) ![Problemas vinculados na barra lateral direita](/assets/images/help/pull_requests/linked-issues.png) -5. Clique no problema que você deseja associar à pull request. ![Menu suspenso para problemas vinculados](/assets/images/help/pull_requests/link-issue-drop-down.png) +3. In the list of pull requests, click the pull request that you'd like to link to an issue. +4. In the right sidebar, click **Linked issues**. + ![Linked issues in the right sidebar](/assets/images/help/pull_requests/linked-issues.png) +5. Click the issue you want to link to the pull request. + ![Drop down to link issue](/assets/images/help/pull_requests/link-issue-drop-down.png) {% endif %} -## Leia mais +## Further reading -- "[Referências autovinculadas e URLs](/articles/autolinked-references-and-urls/#issues-and-pull-requests)" +- "[Autolinked references and URLs](/articles/autolinked-references-and-urls/#issues-and-pull-requests)" diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md index e92928f7ea..a25ffa5e3e 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/planning-and-tracking-work-for-your-team-or-project.md @@ -1,6 +1,6 @@ --- -title: Planejamento e rastreamento de trabalho para a sua equipe ou projeto -intro: 'O básico para usar as ferramentas de planejamento e rastreamento de {% data variables.product.prodname_dotcom %} para gerenciar o trabalho em uma equipe ou projeto.' +title: Planning and tracking work for your team or project +intro: 'The essentials for using {% data variables.product.prodname_dotcom %}''s planning and tracking tools to manage work on a team or project.' versions: fpt: '*' ghes: '*' @@ -11,112 +11,111 @@ topics: - Project management - Projects --- +## Introduction +You can use {% data variables.product.prodname_dotcom %} repositories, issues, project boards, and other tools to plan and track your work, whether working on an individual project or cross-functional team. -## Introdução -Você pode usar {% data variables.product.prodname_dotcom %} repositórios, problemas, quadros de projeto e outras ferramentas para planejar e acompanhar seu trabalho, caso esteja trabalhando em um projeto individual ou em uma equipe multifuncional. +In this guide, you will learn how to create and set up a repository for collaborating with a group of people, create issue templates{% ifversion fpt or ghec %} and forms{% endif %}, open issues and use task lists to break down work, and establish a project board for organizing and tracking issues. -Neste guia, você aprenderá a criar e configurar um repositório para colaborar com um grupo de pessoas, criar modelos de problema{% ifversion fpt or ghec %} e formulários{% endif %}, problemas abertos e usar listas de tarefas para dividir o trabalho e estabelecer um quadro de projetos para organizar e rastrear problemas. +## Creating a repository +When starting a new project, initiative, or feature, the first step is to create a repository. Repositories contain all of your project's files and give you a place to collaborate with others and manage your work. For more information, see "[Creating a new repository](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-a-new-repository)." -## Criar um repositório -Ao iniciar um novo projeto, iniciativa, ou recurso, o primeiro passo é criar um repositório. Os repositórios contêm todos os arquivos do seu projeto e fornece a você um lugar para colaborar com outros e gerenciar seu trabalho. Para obter mais informações, consulte "[Criar um novo repositório](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-a-new-repository)." +You can set up repositories for different purposes based on your needs. The following are some common use cases: -Você pode definir repositórios para diferentes finalidades com base nas suas necessidades. A seguir, estão alguns casos de uso: +- **Product repositories**: Larger organizations that track their work and goals around specific products may have one or more repositories containing the code and other files. These repositories can also be used for documentation, reporting on product health or future plans for the product. +- **Project repositories**: You can create a repository for an individual project you are working on, or for a project you are collaborating on with others. For an organization that tracks work for short-lived initiatives or projects, such as a consulting firm, there is a need to report on the health of a project and move people between different projects based on skills and needs. Code for the project is often contained in a single repository. +- **Team repositories**: For an organization that groups people into teams, and brings projects to them, such as a dev tools team, code may be scattered across many repositories for the different work they need to track. In this case it may be helpful to have a team-specific repository as one place to track all the work the team is involved in. +- **Personal repositories**: You can create a personal repository to track all your work in one place, plan future tasks, or even add notes or information you want to save. You can also add collaborators if you want to share this information with others. -- **Repositórios de produtos**: As organizações maiores que rastreiam seus trabalhos e metas em torno de produtos específicos podem ter um ou mais repositórios que contêm o código e outros arquivos. Esses repositórios também podem ser usados para documentação, relatórios sobre saúde do produto ou planos futuros para o produto. -- **Repositórios de projetos**: Você pode criar um repositório para um projeto em que está trabalhando ou para um projeto em que você está colaborando com os outros. Para uma organização que monitora o trabalho para iniciativas ou projetos de curta duração, como uma empresa de consultoria, é necessário apresentar um relatório sobre a saúde de um projeto e transferir as pessoas para diferentes projetos com base nas competências e nas necessidades. O código para o projeto está frequentemente contido em um único repositório. -- **Repositórios de equipes**: Para uma organização que agrupa pessoas em equipe e traz projetos para eles, como uma equipe de ferramentas de desenvolvimento, o código pode estar espalhado por muitos repositórios para o trabalho diferente que eles precisam rastrear. Neste caso, pode ser útil ter um repositório específico para a equipe, como um só lugar para acompanhar todo o trabalho em que a equipe está envolvida. -- **Repositórios pessoais**: Você pode criar um repositório pessoal para acompanhar todo o seu trabalho em um só lugar, planejar tarefas futuras, ou até adicionar observações ou informações que deseja salvar. Você também pode adicionar colaboradores se quiser compartilhar essas informações com outras pessoas. +You can create multiple, separate repositories if you want different access permissions for the source code and for tracking issues and discussions. For more information, see "[Creating an issues-only repository](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-an-issues-only-repository)." -Você pode criar repositórios múltiplos e separados se quiser diferentes permissões de acesso para o código-fonte e para problemas de rastreamento e discussões. Para obter mais informações, consulte "[Criar um repositório exclusivo de problemas](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-an-issues-only-repository)". +For the following examples in this guide, we will be using an example repository called Project Octocat. +## Communicating repository information +You can create a README.md file for your repository to introduce your team or project and communicate important information about it. A README is often the first item a visitor to your repository will see, so you can also provide information on how users or contributors can get started with the project and how to contact the team. For more information, see "[About READMEs](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-readmes)." -Para os seguintes exemplos neste guia, usaremos um repositório de exemplo denominado Project Octocat. -## Comunicando informações do repositório -Você pode criar um arquivo README.md para o repositório apresentar a sua equipe ou projeto e comunicar informações importantes sobre ele. Muitas vezes, um README é o primeiro item que um visitante ao repositório irá ver. Portanto, você também pode fornecer informações sobre como usuários ou contribuidores podem começar com o projeto e como entrar em contato com a equipe. Para obter mais informações, consulte "[Sobre README](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-readmes)". +You can also create a CONTRIBUTING.md file specifically to contain guidelines on how users or contributors can contribute and interact with the team or project, such as how to open a bug fix issue or request an improvement. For more information, see "[Setting guidelines for repository contributors](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)." +### README example +We can create a README.md to introduce our new project, Project Octocat. -Você também pode criar um arquivo CONTRIBUTING.md específico para conter diretrizes sobre como usuários ou contribuidores podem contribuir e interagir com a equipe ou projeto, como abrir um problema de correção de erros ou solicitar melhoria. Para obter mais informações, consulte "[Configurar diretrizes para contribuidores de repositório](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)". -### Exemplo README -Podemos criar um README.md para introduzir nosso novo projeto, projeto do Octocat. +![Creating README example](/assets/images/help/issues/quickstart-creating-readme.png) +## Creating issue templates -![Criando um exemplo README](/assets/images/help/issues/quickstart-creating-readme.png) -## Criando modelos de problemas +You can use issues to track the different types of work that your cross-functional team or project covers, as well as gather information from those outside of your project. The following are a few common use cases for issues. -Você pode usar problemas para acompanhar os diferentes tipos de trabalho que sua equipe multifuncional ou seu projeto abrange, além de coletar informações daqueles que estão fora do seu projeto. A seguir, estão alguns casos comuns de utilização para os problemas. +- Release tracking: You can use an issue to track the progress for a release or the steps to complete the day of a launch. +- Large initiatives: You can use an issue to track progress on a large initiative or project, which is then linked to the smaller issues. +- Feature requests: Your team or users can create issues to request an improvement to your product or project. +- Bugs: Your team or users can create issues to report a bug. -- Monitoramento da versão: Você pode usar um problema para acompanhar o progresso de uma versão ou as etapas para concluir o dia de um lançamento. -- Grandes iniciativas: Você pode usar um problema para acompanhar o progresso em uma grande iniciativa ou projeto, que está vinculado a problemas menores. -- Solicitações de recursos: Sua equipe ou usuários podem criar problemas para solicitar uma melhoria para o seu produto ou projeto. -- Erros: Sua equipe ou usuários podem criar problemas para relatar um erro. +Depending on the type of repository and project you are working on, you may prioritize certain types of issues over others. Once you have identified the most common issue types for your team, you can create issue templates {% ifversion fpt or ghec %}and forms{% endif %} for your repository. Issue templates {% ifversion fpt or ghec %}and forms{% endif %} allow you to create a standardized list of templates that a contributor can choose from when they open an issue in your repository. For more information, see "[Configuring issue templates for your repository](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository)." -Dependendo do tipo de repositório e projeto em que você está trabalhando, você pode priorizar certos tipos de problemas em detrimento de outros. Após identificar os tipos de problemas mais comuns da sua equipe, você poderá criar modelos de problema {% ifversion fpt or ghec %}e formulários{% endif %} para o seu repositório. Os modelos {% ifversion fpt or ghec %}e formulários{% endif %} permitem que você crie uma lista padronizada de modelos que um contribuidor pode escolher ao abrirem um problema no seu repositório. Para obter mais informações, consulte "[Configurando modelos de problema para seu repositório](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository)." +### Issue template example +Below we are creating an issue template for reporting a bug in Project Octocat. -### Exemplo de modelo de problema -Abaixo, estamos criando um modelo de problema para relatar um erro no projeto Octocat. +![Creating issue template example](/assets/images/help/issues/quickstart-creating-issue-template.png) -![Criar exemplo de modelo de problema](/assets/images/help/issues/quickstart-creating-issue-template.png) +Now that we created the bug report issue template, you are able to select it when creating a new issue in Project Octocat. -Agora que criamos o modelo de problemas de relatório de erro, você pode selecioná-lo ao criar um novo problema no projeto Octocat. +![Choosing issue template example](/assets/images/help/issues/quickstart-issue-creation-menu-with-template.png) -![Escolhendo o exemplo de modelo de problema](/assets/images/help/issues/quickstart-issue-creation-menu-with-template.png) +## Opening issues and using task lists to track work +You can organize and track your work by creating issues. For more information, see "[Creating an issue](/issues/tracking-your-work-with-issues/creating-issues/creating-an-issue)." +### Issue example +Here is an example of an issue created for a large initiative, front-end work, in Project Octocat. -## Abrir problemas e usar listas de tarefas para monitorar o trabalho -Você pode organizar e acompanhar seu trabalho criando problemas. Para obter mais informações, consulte "[Criar um problema](/issues/tracking-your-work-with-issues/creating-issues/creating-an-issue)". -### Exemplo de problema -Aqui está um exemplo de uma questão criada para uma grande iniciativa, um trabalho front-end no projeto Octocat. +![Creating large initiative issue example](/assets/images/help/issues/quickstart-create-large-initiative-issue.png) +### Task list example -![Criando um exemplo problema de grande iniciativa](/assets/images/help/issues/quickstart-create-large-initiative-issue.png) -### Exemplo da lista de tarefas +You can use task lists to break larger issues down into smaller tasks and to track issues as part of a larger goal. {% ifversion fpt or ghec %} Task lists have additional functionality when added to the body of an issue. You can see the number of tasks completed out of the total at the top of the issue, and if someone closes an issue linked in the task list, the checkbox will automatically be marked as complete.{% endif %} For more information, see "[About task lists](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)." -Você pode usar a lista de tarefas para dividir problemas maiores em tarefas menores e acompanhar problemas como parte de um objetivo maior. {% ifversion fpt or ghec %} A lista de tarefas tem funcionalidade adicional quando adicionada ao texto de um problema. Você pode ver o número de tarefas concluídas na parte superior do problema e se alguém fechar um problema vinculado na lista de tarefas, a caixa de seleção será automaticamente marcada como concluída.{% endif %} Para obter mais informações, consulte "[Sobre listas de tarefas](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)". +Below we have added a task list to our Project Octocat issue, breaking it down into smaller issues. -Abaixo nós adicionamos uma lista de tarefas ao problema do projeto Octocat do nosso projeto, dividindo-a em problemas menores. +![Adding task list to issue example](/assets/images/help/issues/quickstart-add-task-list-to-issue.png) -![Adicionar uma lista de tarefas ao exemplo do problema](/assets/images/help/issues/quickstart-add-task-list-to-issue.png) +## Making decisions as a team +You can use issues and discussions to communicate and make decisions as a team on planned improvements or priorities for your project. Issues are useful when you create them for discussion of specific details, such as bug or performance reports, planning for the next quarter, or design for a new initiative. Discussions are useful for open-ended brainstorming or feedback, outside the codebase and across repositories. For more information, see "[Which discussion tool should I use?](/github/getting-started-with-github/quickstart/communicating-on-github#which-discussion-tool-should-i-use)." -## Tomando decisões em equipe -Você pode usar problemas e discussões para comunicar-se e tomar decisões como equipe sobre melhorias planejadas ou prioridades para o seu projeto. Os problemas são úteis quando você os cria para discussão de detalhes específicos, como bug ou relatórios de desempenho, planejamento para o próximo trimestre ou design para uma nova iniciativa. As discussões são úteis para levantamento de hipóteses ou feedbacks abertos, fora da base de código e em todos os repositórios. Para obter mais informações, consulte "[Qual ferramenta de discussão devo usar?](/github/getting-started-with-github/quickstart/communicating-on-github#which-discussion-tool-should-i-use)". +As a team, you can also communicate updates on day-to-day tasks within issues so that everyone knows the status of work. For example, you can create an issue for a large feature that multiple people are working on, and each team member can add updates with their status or open questions in that issue. +### Issue example with project collaborators +Here is an example of project collaborators giving a status update on their work on the Project Octocat issue. -Como uma equipe, você também pode comunicar atualizações sobre tarefas do dia-a-dia dentro dos problemas, para que todos saibam o status do trabalho. Por exemplo, você pode criar um problema para um grande recurso em que várias pessoas estão trabalhando, e cada integrante da equipe pode adicionar atualizações com seu status ou perguntas em aberto nesse problema. -### Exemplo de problema com colaboradores de projetos -Aqui está um exemplo de colaboradores de projeto que fornecem uma atualização sobre o seu trabalho sobre o problema do projeto Octocat. +![Collaborating on issue example](/assets/images/help/issues/quickstart-collaborating-on-issue.png) +## Using labels to highlight project goals and status +You can create labels for a repository to categorize issues, pull requests, and discussions. {% data variables.product.prodname_dotcom %} also provides default labels for every new repository that you can edit or delete. Labels are useful for keeping track of project goals, bugs, types of work, and the status of an issue. -![Colaborando no exemplo do problema](/assets/images/help/issues/quickstart-collaborating-on-issue.png) -## Usando etiquetas para destacar objetivos e status do projeto -Você pode criar etiquetas para um repositório para categorizar problemas, pull requests e discussões. {% data variables.product.prodname_dotcom %} também fornece etiquetas padrão para cada novo repositório que você pode editar ou excluir. As etiquetas são úteis para manter o controle de objetivos, errps, tipos de trabalho e o status de um problema. +For more information, see "[Creating a label](/issues/using-labels-and-milestones-to-track-work/managing-labels#creating-a-label)." -Para obter mais informações, consulte "[Criar uma etiqueta](/issues/using-labels-and-milestones-to-track-work/managing-labels#creating-a-label)". +Once you have created a label in a repository, you can apply it on any issue, pull request or discussion in the repository. You can then filter issues and pull requests by label to find all associated work. For example, find all the front end bugs in your project by filtering for issues with the `front-end` and `bug` labels. For more information, see "[Filtering and searching issues and pull requests](/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests)." +### Label example +Below is an example of a `front-end` label that we created and added to the issue. -Depois de criar uma etiqueta em um repositório, é possível aplicá-lo em qualquer problema, pull request ou discussão no repositório. Em seguida, você pode filtrar problemas e pull requests por etiqueta para encontrar todo o trabalho associado. Por exemplo, encontre todos os erros front-end em seu projeto, filtrando por problemas com as etiquetas de `front-end` e `erro`. Para obter mais informações, consulte "[Filtrando e pesquisando problemas e pull requests](/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests)". -### Exemplo de etiqueta -Abaixo está um exemplo de uma etiqueta `front-end` que criamos e adicionamos ao problema. - -![Adicionando uma etiqueta a um exemplo do problema](/assets/images/help/issues/quickstart-add-label-to-issue.png) -## Adicionando problemas a um quadro de projeto -{% ifversion fpt or ghec %}Você pode usar projetos em {% data variables.product.prodname_dotcom %}, atualmente em beta público limitado, para planejar e acompanhar o trabalho da sua equipe. Um projeto é uma planilha personalizável integradas aos seus problemas e pull requests em {% data variables.product.prodname_dotcom %}, mantendo-se atualizada automaticamente com as informações em {% data variables.product.prodname_dotcom %}. Você pode personalizar o layout filtrando, organizando e agrupando seus problemas e PRs. Para começar com projetos, consulte "[Inicialização rápida para projetos (beta)](/issues/trying-out-the-new-projects-experience/quickstart). ". -### Exemplo de projeto (beta) +![Adding a label to an issue example](/assets/images/help/issues/quickstart-add-label-to-issue.png) +## Adding issues to a project board +{% ifversion fpt or ghec %}You can use projects on {% data variables.product.prodname_dotcom %}, currently in limited public beta, to plan and track the work for your team. A project is a customizable spreadsheet that integrates with your issues and pull requests on {% data variables.product.prodname_dotcom %}, automatically staying up-to-date with the information on {% data variables.product.prodname_dotcom %}. You can customize the layout by filtering, sorting, and grouping your issues and PRs. To get started with projects, see "[Quickstart for projects (beta)](/issues/trying-out-the-new-projects-experience/quickstart)." +### Project (beta) example Here is the table layout of an example project, populated with the Project Octocat issues we have created. ![Projects (beta) table layout example](/assets/images/help/issues/quickstart-projects-table-view.png) -Podemos também visualizar o mesmo projeto como um quadro. +We can also view the same project as a board. ![Projects (beta) board layout example](/assets/images/help/issues/quickstart-projects-board-view.png) {% endif %} -Você também pode {% ifversion fpt or ghec %} usar os quadros de projeto existentes{% else %} usar{% endif %} no {% data variables.product.prodname_dotcom %} para planejar e acompanhar o trabalho da sua equipe. Os quadros de projeto são compostos por problemas, pull requests e observações que são categorizados como cartões em colunas de sua escolha. Você pode criar quadros de projetos para trabalho de funcionalidades, itinerários de alto nível ou até mesmo aprovar checklists. Para obter mais informações, consulte "[Sobre quadros de projeto](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)". -### Exemplo de quadro de projeto -Abaixo, está um painel de projeto para o nosso exemplo de projeto Octocat com o problema que criamos, e os problemas menores nos quais separamos, foram adicionados. +You can {% ifversion fpt or ghec %} also use the existing{% else %} use{% endif %} project boards on {% data variables.product.prodname_dotcom %} to plan and track your or your team's work. Project boards are made up of issues, pull requests, and notes that are categorized as cards in columns of your choosing. You can create project boards for feature work, high-level roadmaps, or even release checklists. For more information, see "[About project boards](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)." +### Project board example +Below is a project board for our example Project Octocat with the issue we created, and the smaller issues we broke it down into, added to it. -![Exemplo de quadro de projeto](/assets/images/help/issues/quickstart-project-board.png) -## Próximas etapas +![Project board example](/assets/images/help/issues/quickstart-project-board.png) +## Next steps -Agora você aprendeu sobre as ferramentas que {% data variables.product.prodname_dotcom %} oferece para planejamento e acompanhamento do seu trabalho e deu o seu primeiro passo para definir a sua equipe multifuncional ou repositório de projetos! Aqui estão alguns recursos úteis para personalizar ainda mais seu repositório e organizar seu trabalho. +You have now learned about the tools {% data variables.product.prodname_dotcom %} offers for planning and tracking your work, and made a start in setting up your cross-functional team or project repository! Here are some helpful resources for further customizing your repository and organizing your work. -- "[Sobre repositórios](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-repositories)" para aprender mais sobre a criação de repositórios -- "[Monitorar o seu trabalho com problemas](/issues/tracking-your-work-with-issues)para aprender mais sobre diferentes formas de criar e gerenciar problemas -- "[Sobre problemas e modelos de pull request](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/about-issue-and-pull-request-templates)para aprender mais sobre modelos de problemas -- "[Gerenciando etiquetas](/issues/using-labels-and-milestones-to-track-work/managing-labels)" para aprender a criar, editar e excluir etiquetas -- "[Sobre listas de tarefas](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)" para aprender mais sobre listas de tarefas -{% ifversion fpt or ghec %} - "[Sobre projetos (beta)](/issues/trying-out-the-new-projects-experience/about-projects)" para aprender mais sobre a experiência dos novos projetos, atualmente em beta público limitado -- "[Personalizando as visualizações do seu projeto (beta)](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)" para aprender como personalizar visualizações para projetos, atualmente em beta público limitado{% endif %} -- "[Sobre os quadros de projetos](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)" para aprender como gerenciar os quadros de projetos +- "[About repositories](/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-repositories)" for learning more about creating repositories +- "[Tracking your work with issues](/issues/tracking-your-work-with-issues)" for learning more about different ways to create and manage issues +- "[About issues and pull request templates](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/about-issue-and-pull-request-templates)" for learning more about issue templates +- "[Managing labels](/issues/using-labels-and-milestones-to-track-work/managing-labels)" for learning how to create, edit and delete labels +- "[About task lists](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)" for learning more about task lists +{% ifversion fpt or ghec %} - "[About projects (beta)](/issues/trying-out-the-new-projects-experience/about-projects)" for learning more about the new projects experience, currently in limited public beta +- "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)" for learning how to customize views for projects, currently in limited public beta{% endif %} +- "[About project boards](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)" for learning how to manage project boards diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository.md index 94f5bd806c..ad7784c38b 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository.md @@ -1,6 +1,6 @@ --- -title: Transferir um problema para outro repositório -intro: 'Para mover um problema para um repositório mais adequado, você pode transferir problemas abertos para outros repositórios.' +title: Transferring an issue to another repository +intro: 'To move an issue to a better fitting repository, you can transfer open issues to other repositories.' redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/transferring-an-issue-to-another-repository - /articles/transferring-an-issue-to-another-repository @@ -13,18 +13,17 @@ versions: ghec: '*' topics: - Pull requests -shortTitle: Transferir um problema +shortTitle: Transfer an issue --- - To transfer an open issue to another repository, you must have write access to the repository the issue is in and the repository you're transferring the issue to. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." -Você somente pode transferir problemas entre repositórios pertencentes à mesma conta de usuário ou organização. {% ifversion fpt or ghes or ghec %}Você não pode transferir um problema de um repositório privado para um repositório público.{% endif %} +You can only transfer issues between repositories owned by the same user or organization account. {% ifversion fpt or ghes or ghec %}You can't transfer an issue from a private repository to a public repository.{% endif %} -Quando você transfere um problema, os comentários e responsáveis são mantidos. As etiquetas e os marcos do problema não são retidos. Esse problema permanecerá em qualquer quadro de projeto pertencente ao usuário ou à organização e será removido dos quadros de projeto de todos os repositórios. Para obter mais informações, consulte "[Sobre quadros de projeto](/articles/about-project-boards)". +When you transfer an issue, comments and assignees are retained. The issue's labels and milestones are not retained. This issue will stay on any user-owned or organization-wide project boards and be removed from any repository project boards. For more information, see "[About project boards](/articles/about-project-boards)." -As pessoas ou equipes mencionadas no problema receberão uma notificação informando que o problema foi transferido para um novo repositório. O URL original redirecionará para o novo URL do problema. As pessoas que não tenham permissões de leitura no novo repositório verão um banner informando que o problema foi transferido para um novo repositório ao qual elas não têm acesso. +People or teams who are mentioned in the issue will receive a notification letting them know that the issue has been transferred to a new repository. The original URL redirects to the new issue's URL. People who don't have read permissions in the new repository will see a banner letting them know that the issue has been transferred to a new repository that they can't access. -## Transferir um problema aberto para outro repositório +## Transferring an open issue to another repository {% include tool-switcher %} @@ -32,10 +31,13 @@ As pessoas ou equipes mencionadas no problema receberão uma notificação infor {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} -3. Na lista de problemas, clique no problema que deseja transferir. -4. Na barra lateral direita, clique em **Transfer issue** (Transferir problema). ![Botão para transferir problema](/assets/images/help/repository/transfer-issue.png) -5. Use o menu **Choose a repository** (Escolher um repositório) e selecione o repositório para o qual deseja transferir o problema. ![Seleção em Choose a repository (Escolher um repositório)](/assets/images/help/repository/choose-a-repository.png) -6. Clique em **Transfer issue** (Transferir problema). ![Botão Transfer issue (Transferir problema)](/assets/images/help/repository/transfer-issue-button.png) +3. In the list of issues, click the issue you'd like to transfer. +4. In the right sidebar, click **Transfer issue**. +![Button to transfer issue](/assets/images/help/repository/transfer-issue.png) +5. Use the **Choose a repository** drop-down menu, and select the repository you want to transfer the issue to. +![Choose a repository selection](/assets/images/help/repository/choose-a-repository.png) +6. Click **Transfer issue**. +![Transfer issue button](/assets/images/help/repository/transfer-issue-button.png) {% endwebui %} @@ -43,7 +45,7 @@ As pessoas ou equipes mencionadas no problema receberão uma notificação infor {% data reusables.cli.cli-learn-more %} -Para transferir um problema, use o subcomando `gh issue transfer`. Substitua o parâmetro `problema` pelo número ou URL do problema. Substitua o parâmetro `{% ifversion ghes %}nome do host/{% endif %}proprietário/repositório` pelo {% ifversion ghes %}URL{% else %}nome{% endif %} do repositório para o qual você deseja transferir o problema como, por exemplo, `{% ifversion ghes %}https://ghe. o/{% endif %}octocat/octo-repo`. +To transfer an issue, use the `gh issue transfer` subcommand. Replace the `issue` parameter with the number or URL of the issue. Replace the `{% ifversion ghes %}hostname/{% endif %}owner/repo` parameter with the {% ifversion ghes %}URL{% else %}name{% endif %} of the repository that you want to transfer the issue to, such as `{% ifversion ghes %}https://ghe.io/{% endif %}octocat/octo-repo`. ```shell gh issue transfer <em>issue</em> <em>{% ifversion ghes %}hostname/{% endif %}owner/repo</em> @@ -51,8 +53,8 @@ gh issue transfer <em>issue</em> <em>{% ifversion ghes %}hostname/{% endif %}own {% endcli %} -## Leia mais +## Further reading -- "[Sobre problemas](/articles/about-issues)" -- "[Revisar o log de segurança](/articles/reviewing-your-security-log)" -- "[Revisar o log de auditoria da organização](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization)" +- "[About issues](/articles/about-issues)" +- "[Reviewing your security log](/articles/reviewing-your-security-log)" +- "[Reviewing the audit log for your organization](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization)" diff --git a/translations/pt-BR/content/issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests.md b/translations/pt-BR/content/issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests.md index 8df6904426..45ac72dd0d 100644 --- a/translations/pt-BR/content/issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests.md +++ b/translations/pt-BR/content/issues/tracking-your-work-with-issues/viewing-all-of-your-issues-and-pull-requests.md @@ -1,6 +1,6 @@ --- -title: Exibir todos os problemas e pull requests -intro: 'Os painéis Problemas e Pull Requests listam os problemas e pull requests abertos que foram criados por você. Você pode usá-los para atualizar itens que ficaram obsoletos, fechá-los ou acompanhar onde você foi mencionado em todos os repositórios, inclusive aqueles em que que você não fez assinatura.' +title: Viewing all of your issues and pull requests +intro: 'The Issues and Pull Request dashboards list the open issues and pull requests you''ve created. You can use them to update items that have gone stale, close them, or keep track of where you''ve been mentioned across all repositories—including those you''re not subscribed to.' redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/viewing-all-of-your-issues-and-pull-requests - /articles/viewing-all-of-your-issues-and-pull-requests @@ -14,15 +14,16 @@ versions: topics: - Pull requests - Issues -shortTitle: Visualizar todos os seus problemas & PRs +shortTitle: View all your issues & PRs type: how_to --- +Your issues and pull request dashboards are available at the top of any page. On each dashboard, you can filter the list to find issues or pull requests you created, that are assigned to you, or in which you're mentioned. You can also find pull requests that you've been asked to review. -Os painéis de problemas e pull requests estão disponíveis na parte superior de qualquer página. Em cada painel, é possível filtrar a lista para encontrar problemas ou pull requests que você criou, que foram atribuídos a você ou nos quais você foi mencionado. Também é possível encontrar pull requests que você deverá revisar. +1. At the top of any page, click **Pull requests** or **Issues**. + ![The global pull requests and issues dashboards](/assets/images/help/overview/issues_and_pr_dashboard.png) +2. Optionally, choose a filter or [use the search bar to filter for more specific results](/articles/using-search-to-filter-issues-and-pull-requests). + ![List of pull requests with the "Created" filter selected](/assets/images/help/overview/pr_dashboard_created.png) -1. Na parte superior de qualquer página, clique em **Pull requests** (Pull requests) ou em **Issues** (Problemas). ![Os painéis globais de problemas e pull requests](/assets/images/help/overview/issues_and_pr_dashboard.png) -2. Outra opção é escolher um filtro ou [usar a barra de pesquisa para filtrar resultados mais específicos](/articles/using-search-to-filter-issues-and-pull-requests). ![Lista de pull requests com o filtro "Created" (Criado) selecionado](/assets/images/help/overview/pr_dashboard_created.png) - -## Leia mais +## Further reading - {% ifversion fpt or ghes or ghae or ghec %}"[Viewing your subscriptions](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions#reviewing-repositories-that-youre-watching){% else %}"[Listing the repositories you're watching](/github/receiving-notifications-about-activity-on-github/listing-the-repositories-youre-watching){% endif %}" diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/about-projects.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/about-projects.md index 7a9f68513e..8101704c81 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/about-projects.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/about-projects.md @@ -1,6 +1,6 @@ --- -title: Sobre projetos (beta) -intro: 'Os projetos são uma ferramenta personalizável e flexível para planejamento e acompanhamento de trabalhos em {% data variables.product.company_short %}.' +title: About projects (beta) +intro: 'Projects are a customizable, flexible tool for planning and tracking work on {% data variables.product.company_short %}.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 versions: @@ -13,52 +13,52 @@ topics: {% data reusables.projects.projects-beta %} -## Sobre projetos +## About projects -Um projeto é uma planilha personalizável que se integra aos seus problemas e pull requests em {% data variables.product.company_short %}. Você pode personalizar o layout filtrando, organizando e agrupando seus problemas e PRs. Você também pode adicionar campos personalizados para rastrear metadados. Os projetos são flexíveis para que sua equipe possa trabalhar da maneira que for melhor para eles. +A project is a customizable spreadsheet that integrates with your issues and pull requests on {% data variables.product.company_short %}. You can customize the layout by filtering, sorting, and grouping your issues and PRs. You can also add custom fields to track metadata. Projects are flexible so that your team can work in the way that is best for them. -### Mantendo-se atualizado +### Staying up-to-date -O seu projeto permanece automaticamente atualizado com as informações em {% data variables.product.company_short %}. Quando um pull request ou um problema é alterado, o seu projeto reflete essa alteração. Esta integração também funciona nos dois sentidos, para que, quando você altera as informações sobre um problema ou pull request do seu projeto, o problema ou o pull request irá refletir essa informação. +Your project automatically stays up-to-date with the information on {% data variables.product.company_short %}. When a pull request or issue changes, your project reflects that change. This integration also works both ways, so that when you change information about a pull request or issue from your project, the pull request or issue reflects that information. -### Adicionando metadados às suas tarefas +### Adding metadata to your tasks -Você pode usar campos personalizados para adicionar metadados às suas tarefas. Por exemplo, você pode monitorar os seguintes metadados: +You can use custom fields to add metadata to your tasks. For example, you can track the following metadata: -- um campo de data para acompanhar as datas de envio -- um campo numérico para monitorar a complexidade de uma tarefa -- um único campo de seleção para rastrear se uma tarefa tem prioridade baixa, média ou alta -- um campo de texto para adicionar uma observação rápida +- a date field to track target ship dates +- a number field to track the complexity of a task +- a single select field to track whether a task is Low, Medium, or High priority +- a text field to add a quick note - an iteration field to plan work week-by-week -### Visualizando seu projeto de diferentes perspectivas +### Viewing your project from different perspectives -Você pode ver seu projeto como um layout de tabela de alta densidade: +You can view your project as a high density table layout: -![Tabela de projeto](/assets/images/help/issues/projects_table.png) +![Project table](/assets/images/help/issues/projects_table.png) -Ou como um quadro: +Or as a board: -![Quadro de projeto](/assets/images/help/issues/projects_board.png) +![Project board](/assets/images/help/issues/projects_board.png) -Para ajudar você a concentrar-se em aspectos específicos do seu projeto, você pode agrupar, ordenar ou filtrar itens: +To help you focus on specific aspects of your project, you can group, sort, or filter items: -![Visualização do projeto](/assets/images/help/issues/project_view.png) +![Project view](/assets/images/help/issues/project_view.png) -Para obter mais informações, consulte "[Personalizar as visualizações do seu projeto](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)". +For more information, see "[Customizing your project views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)." ### Working with the project command palette -You can use the project command palette to quickly change views or add fields. A paleta de comandos guia você para que você não precise memorizar atalhos de teclado personalizados. Para obter mais informações, consulte "[Personalizar as visualizações do seu projeto](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)". +You can use the project command palette to quickly change views or add fields. The command palette guides you so that you don't need to memorize custom keyboard shortcuts. For more information, see "[Customizing your project views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)." -### Automatizando tarefas de gerenciamento de projetos +### Automating project management tasks Projects (beta) offers built-in workflows. For example, when an issue is closed, you can automatically set the status to "Done." You can also use the GraphQL API and {% data variables.product.prodname_actions %} to automate routine project management tasks. For more information, see "[Automating projects](/issues/trying-out-the-new-projects-experience/automating-projects)" and "[Using the API to manage projects](/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects)." -## Comparação de projetos (beta) com os projetos que não são beta +## Comparing projects (beta) with the non-beta projects -Projetos (beta) é uma nova versão personalizável dos projetos. Para obter mais informações sobre a versão que não é beta dos projetos, consulte "[Organizar seu trabalho com quadros de projeto](/issues/organizing-your-work-with-project-boards)". +Projects (beta) is a new, customizable version of projects. For more information about the non-beta version of projects, see "[Organizing your work with project boards](/issues/organizing-your-work-with-project-boards)." -## Compartilhando feedback +## Sharing feedback -Você pode compartilhar seu feedback sobre projetos (beta) com {% data variables.product.company_short %}. Para juntar-se à conversa, consulte [a discussão de feedbacks](https://github.com/github/feedback/discussions/categories/issues-feedback). +You can share your feedback about projects (beta) with {% data variables.product.company_short %}. To join the conversation, see [the feedback discussion](https://github.com/github/feedback/discussions/categories/issues-feedback). diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/automating-projects.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/automating-projects.md index df00ba10b5..108e6a93f4 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/automating-projects.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/automating-projects.md @@ -1,5 +1,5 @@ --- -title: Automatizando projetos (beta) +title: Automating projects (beta) intro: 'You can use built-in workflows or the API and {% data variables.product.prodname_actions %} to manage your projects.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 @@ -15,7 +15,7 @@ topics: {% data reusables.projects.projects-beta %} -## Introdução +## Introduction You can add automation to help manage your project. Projects (beta) includes built-in workflows that you can configure through the UI. Additionally, you can write custom workflows with the GraphQL API and {% data variables.product.prodname_actions %}. @@ -33,11 +33,11 @@ This section demonstrates how to use the GraphQL API and {% data variables.produ You can copy one of the workflows below and modify it as described in the table below to meet your needs. -Um projeto pode incluir vários repositórios, mas um fluxo de trabalho é específico para um repositório. Add the workflow to each repository that you want your project to track. Para obter mais informações sobre como criar arquivos de fluxo de trabalho, consulte "[Início rápido para {% data variables.product.prodname_actions %}](/actions/quickstart)". +A project can span multiple repositories, but a workflow is specific to a repository. Add the workflow to each repository that you want your project to track. For more information about creating workflow files, see "[Quickstart for {% data variables.product.prodname_actions %}](/actions/quickstart)." -Este artigo pressupõe que você tem um entendimento básico de {% data variables.product.prodname_actions %}. Para obter mais informações sobre {% data variables.product.prodname_actions %}, consulte "[{% data variables.product.prodname_actions %}](/actions). +This article assumes that you have a basic understanding of {% data variables.product.prodname_actions %}. For more information about {% data variables.product.prodname_actions %}, see "[{% data variables.product.prodname_actions %}](/actions)." -Para obter mais informações sobre outras alterações que você pode fazer no seu projeto por meio da API, consulte "[Usando a API para gerenciar projetos](/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects)". +For more information about other changes you can make to your project through the API, see "[Using the API to manage projects](/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects)." {% note %} @@ -59,7 +59,7 @@ Para obter mais informações sobre outras alterações que você pode fazer no 3. Install the {% data variables.product.prodname_github_app %} in your organization. Install it for all repositories that your project needs to access. For more information, see "[Installing {% data variables.product.prodname_github_apps %}](/developers/apps/managing-github-apps/installing-github-apps#installing-your-private-github-app-on-your-repository)." 4. Store your {% data variables.product.prodname_github_app %}'s ID as a secret in your repository or organization. In the following workflow, replace `APP_ID` with the name of the secret. You can find your app ID on the settings page for your app or through the App API. For more information, see "[Apps](/rest/reference/apps#get-an-app)." 5. Generate a private key for your app. Store the contents of the resulting file as a secret in your repository or organization. (Store the entire contents of the file, including `-----BEGIN RSA PRIVATE KEY-----` and `-----END RSA PRIVATE KEY-----`.) In the following workflow, replace `APP_PEM` with the name of the secret. For more information, see "[Authenticating with {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps/authenticating-with-github-apps#generating-a-private-key)." -6. In the following workflow, replace `YOUR_ORGANIZATION` with the name of your organization. Por exemplo, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. Para encontrar o número do projeto, consulte a URL do projeto. Por exemplo, `https://github.com/orgs/octo-org/projects/5` tem um número de projeto de 5. +6. In the following workflow, replace `YOUR_ORGANIZATION` with the name of your organization. For example, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. To find the project number, look at the project URL. For example, `https://github.com/orgs/octo-org/projects/5` has a project number of 5. ```yaml{:copy} {% data reusables.actions.actions-not-certified-by-github-comment %} @@ -120,7 +120,7 @@ jobs: } } }' -f project=$PROJECT_ID -f pr=$PR_ID --jq '.data.addProjectNextItem.projectNextItem.id')" - + echo 'ITEM_ID='$item_id >> $GITHUB_ENV - name: Get date @@ -164,9 +164,9 @@ jobs: ### Example workflow authenticating with a personal access token -1. Create a personal access token with `org:write` scope. Para obter mais informações, consulte "[Criando um token de acesso pessoal](/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token)." +1. Create a personal access token with `org:write` scope. For more information, see "[Creating a personal access token](/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token)." 2. Save the personal access token as a secret in your repository or organization. -3. No fluxo de trabalho a seguir, substitua `YOUR_TOKEN` pelo nome do segredo. Replace `YOUR_ORGANIZATION` with the name of your organization. Por exemplo, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. Para encontrar o número do projeto, consulte a URL do projeto. Por exemplo, `https://github.com/orgs/octo-org/projects/5` tem um número de projeto de 5. +3. In the following workflow, replace `YOUR_TOKEN` with the name of the secret. Replace `YOUR_ORGANIZATION` with the name of your organization. For example, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. To find the project number, look at the project URL. For example, `https://github.com/orgs/octo-org/projects/5` has a project number of 5. ```yaml{:copy} name: Add PR to project @@ -218,7 +218,7 @@ jobs: } } }' -f project=$PROJECT_ID -f pr=$PR_ID --jq '.data.addProjectNextItem.projectNextItem.id')" - + echo 'ITEM_ID='$item_id >> $GITHUB_ENV - name: Get date @@ -279,7 +279,7 @@ on: </td> <td> -Este fluxo de trabalho é executado sempre que um pull request no repositório for marcado como "pronto para revisão". +This workflow runs whenever a pull request in the repository is marked as "ready for review". </td> </tr> @@ -332,16 +332,16 @@ env: </td> <td> -Define variáveis de ambiente para esta etapa. +Sets environment variables for this step. <br> <br> If you are using a personal access token, replace <code>YOUR_TOKEN</code> with the name of the secret that contains your personal access token. <br> <br> -Substitua <code>YOUR_ORGANIZATION</code> pelo nome da sua organização. Por exemplo, <code>octo-org</code>. +Replace <code>YOUR_ORGANIZATION</code> with the name of your organization. For example, <code>octo-org</code>. <br> <br> -Substitua <code>YOUR_PROJECT_NUMBER</code> pelo número do seu projeto. Para encontrar o número do projeto, consulte a URL do projeto. Por exemplo, <code>https://github.com/orgs/octo-org/projects/5</code> tem um número de projeto de 5. +Replace <code>YOUR_PROJECT_NUMBER</code> with your project number. To find the project number, look at the project URL. For example, <code>https://github.com/orgs/octo-org/projects/5</code> has a project number of 5. </td> </tr> @@ -368,7 +368,7 @@ gh api graphql -f query=' </td> <td> -Usa <a href="https://cli.github.com/manual/">{% data variables.product.prodname_cli %}</a> para consultar a API para o ID do projeto e para o ID, nome e configurações para os primeiros 20 campos do projeto. A resposta é armazenada em um arquivo denominado <code>project_data.json</code>. +Uses <a href="https://cli.github.com/manual/">{% data variables.product.prodname_cli %}</a> to query the API for the ID of the project and for the ID, name, and settings for the first 20 fields in the project. The response is stored in a file called <code>project_data.json</code>. </td> </tr> @@ -384,12 +384,12 @@ echo 'TODO_OPTION_ID='$(jq '.data.organization.projectNext.fields.nodes[] | sele </td> <td> -Analisa a resposta da consulta da API e armazena os IDs relevantes como variáveis de ambiente. Modifique este ID para obter o ID para diferentes campos ou opções. Por exemplo: +Parses the response from the API query and stores the relevant IDs as environment variables. Modify this to get the ID for different fields or options. For example: <ul> -<li>Para obter o ID de um campo denominado <code>Team</code>, adicione <code>echo 'TEAM_FIELD_ID='$(jq '.data.organization.projectNext.fields.nodes[] | select(.name== "Team") | .id' project_data.json) >> $GITHUB_ENV</code>.</li> -<li>Para obter o ID de uma opção denominada <code>Octoteam</code> para o campo <code>Team</code>, adicione <code>echo 'OCTOTEAM_OPTION_ID='$(jq '.data.organization.projectNext.fields.nodes[] | select(.name== "Team") |.settings | fromjson.options[] | select(.name=="Octoteam") |.id' project_data.json) >> $GITHUB_ENV</code></li> +<li>To get the ID of a field called <code>Team</code>, add <code>echo 'TEAM_FIELD_ID='$(jq '.data.organization.projectNext.fields.nodes[] | select(.name== "Team") | .id' project_data.json) >> $GITHUB_ENV</code>.</li> +<li>To get the ID of an option called <code>Octoteam</code> for the <code>Team</code> field, add <code>echo 'OCTOTEAM_OPTION_ID='$(jq '.data.organization.projectNext.fields.nodes[] | select(.name== "Team") |.settings | fromjson.options[] | select(.name=="Octoteam") |.id' project_data.json) >> $GITHUB_ENV</code></li> </ul> -<strong>Observação: </strong>Este fluxo de trabalho pressupõe que você tem um projeto com um único campo selecionado denominado "Status" que inclui uma opção denominada "Todo" e um campo de data denominado "Date posted". Você deve modificar esta seção para corresponder aos campos presentes na sua tabela. +<strong>Note: </strong>This workflow assumes that you have a project with a single select field called "Status" that includes an option called "Todo" and a date field called "Date posted". You must modify this section to match the fields that are present in your table. </td> </tr> @@ -414,7 +414,7 @@ env: </td> <td> -Define variáveis de ambiente para esta etapa. <code>GITHUB_TOKEN</code> está descrito acima. <code>PR_ID</code> é o ID do pull request que acionou este fluxo de trabalho. +Sets environment variables for this step. <code>GITHUB_TOKEN</code> is described above. <code>PR_ID</code> is the ID of the pull request that triggered this workflow. </td> </tr> @@ -435,7 +435,7 @@ item_id="$( gh api graphql -f query=' </td> <td> -Usa <a href="https://cli.github.com/manual/">{% data variables.product.prodname_cli %}</a> e a API para adicionar o pull request que acionou este fluxo de trabalho ao projeto. O <code>jq</code> analisa a resposta para obter o ID do item criado. +Uses <a href="https://cli.github.com/manual/">{% data variables.product.prodname_cli %}</a> and the API to add the pull request that triggered this workflow to the project. The <code>jq</code> flag parses the response to get the ID of the created item. </td> </tr> @@ -448,7 +448,7 @@ echo 'ITEM_ID='$item_id >> $GITHUB_ENV </td> <td> -Armazena o ID do item criado como uma variável de ambiente. +Stores the ID of the created item as an environment variable. </td> </tr> @@ -461,7 +461,7 @@ echo "DATE=$(date +"%Y-%m-%d")" >> $GITHUB_ENV </td> <td> -Salva a data atual como uma variável de ambiente no formato <code>yyyy-mm-dd</code>. +Saves the current date as an environment variable in <code>yyyy-mm-dd</code> format. </td> </tr> @@ -484,7 +484,7 @@ env: </td> <td> -Define variáveis de ambiente para esta etapa. <code>GITHUB_TOKEN</code> está descrito acima. +Sets environment variables for this step. <code>GITHUB_TOKEN</code> is described above. </td> </tr> @@ -527,8 +527,8 @@ gh api graphql -f query=' </td> <td> -Define o valor do campo <code>Status</code> como <code>Todo</code>. Define o valor do campo <code>Date posted</code>. +Sets the value of the <code>Status</code> field to <code>Todo</code>. Sets the value of the <code>Date posted</code> field. </td> </tr> -</table> +</table> \ No newline at end of file diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects.md index ea25acd0f3..ad79f17b59 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/best-practices-for-managing-projects.md @@ -1,6 +1,6 @@ --- -title: Práticas recomendadas para gerenciar projetos (beta) -intro: 'Aprenda dicas para gerenciar seus projetos em {% data variables.product.company_short %}.' +title: Best practices for managing projects (beta) +intro: 'Learn tips for managing your projects on {% data variables.product.company_short %}.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 versions: @@ -15,47 +15,47 @@ topics: {% data reusables.projects.projects-beta %} -Você pode usar os projetos para gerenciar seu trabalho em {% data variables.product.company_short %}, onde os seus problemas e pull requests são gerados. Leia sobre as dicas para gerenciar seus projetos de forma eficiente e eficaz. Para obter mais informações sobre projetos, consulte "[Sobre projetos](/issues/trying-out-the-new-projects-experience/about-projects)". +You can use projects to manage your work on {% data variables.product.company_short %}, where your issues and pull requests live. Read on for tips to manage your projects efficiently and effectively. For more information about projects, see "[About projects](/issues/trying-out-the-new-projects-experience/about-projects)." -## Dividir problemas grandes em problemas menores +## Break down large issues into smaller issues -Dividir um problema grande em problemas menores torna o trabalho mais gerenciável e permite que os integrantes da equipe trabalhem em paralelo. Isso também gera pull requests menores, que são mais fáceis de revisar. +Breaking a large issue into smaller issues makes the work more manageable and enables team members to work in parallel. It also leads to smaller pull requests, which are easier to review. -Para acompanhar como os problemas menores encaixam-se na meta maior, use a lista de tarefas, marcos ou etiquetas. Para obter mais informações, consulte "[Sobre listas de tarefas](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)", "[Sobre marcos](/issues/using-labels-and-milestones-to-track-work/about-milestones)" e "[Gerenciando etiquetas](/issues/using-labels-and-milestones-to-track-work/managing-labels)". +To track how smaller issues fit into the larger goal, use task lists, milestones, or labels. For more information, see "[About task lists](/issues/tracking-your-work-with-issues/creating-issues/about-task-lists)", "[About milestones](/issues/using-labels-and-milestones-to-track-work/about-milestones)", and "[Managing labels](/issues/using-labels-and-milestones-to-track-work/managing-labels)." -## Comunicar +## Communicate -Os problemas e pull requests incluem funcionalidades embutidas para permitir que você se comunique facilmente com os seus colaboradores. Use @menções para alertar uma pessoa ou uma equipe inteira sobre um comentário. Atribua colaboradores a problemas para comunicar responsabilidade. Vincule a problemas relacionados ou pull requests para comunicar como eles estão conectados. +Issues and pull requests include built-in features to let you easily communicate with your collaborators. Use @mentions to alert a person or entire team about a comment. Assign collaborators to issues to communicate responsibility. Link to related issues or pull requests to communicate how they are connected. -## Usar visualizações +## Use views -Use as visualizações do projeto para ver o seu projeto de ângulos diferentes. +Use project views to look at your project from different angles. -Por exemplo: +For example: -- Filtrar por status para visualizar todos os itens não iniciados -- Agrupar por um campo personalizado de prioridade para monitorar o volume de itens de alta prioridade -- Ordenar por um campo de data personalizado para exibir os itens com a data de envio mais recente +- Filter by status to view all un-started items +- Group by a custom priority field to monitor the volume of high priority items +- Sort by a custom date field to view the items with the earliest target ship date -Para obter mais informações, consulte "[Personalizar as visualizações do seu projeto](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)". +For more information, see "[Customizing your project views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)." -## Tenha uma única fonte de verdade +## Have a single source of truth -Para evitar que as informações não fiquem sincronizadas, mantenha uma única fonte de verdade. Por exemplo, monitore uma data de envio em um único local, em vez de se espalhar por vários campos. Posteriormente, se a data de envio for alterada, você deverá apenas atualizar a data em um só lugar. +To prevent information from getting out of sync, maintain a single source of truth. For example, track a target ship date in a single location instead of spread across multiple fields. Then, if the target ship date shifts, you only need to update the date in one location. -Os projetos de {% data variables.product.company_short %} ficam automaticamente atualizados com os dados de {% data variables.product.company_short %}, como os responsáveis, marcos e etiquetas. Quando um desses campos é alterado em um problema ou pull request, a alteração é refletida automaticamente no seu projeto. +{% data variables.product.company_short %} projects automatically stay up to date with {% data variables.product.company_short %} data, such as assignees, milestones, and labels. When one of these fields changes in an issue or pull request, the change is automatically reflected in your project. -## Usar automação +## Use automation -You can automate tasks to spend less time on busy work and more time on the project itself. Quanto menos você precisar se lembrar de fazer manualmente, mais provável será que o seu projeto fique atualizado. +You can automate tasks to spend less time on busy work and more time on the project itself. The less you need to remember to do manually, the more likely your project will stay up to date. Projects (beta) offers built-in workflows. For example, when an issue is closed, you can automatically set the status to "Done." -Additionally, {% data variables.product.prodname_actions %} and the GraphQL API enable you to automate routine project management tasks. Por exemplo, para manter o controle de pull requests que estão aguardando revisão, você pode criar um fluxo de trabalho que adiciona um pull request a um projeto e define o status para "precisa de revisão"; este processo pode ser acionado automaticamente quando um pull request é marcado como "pronto para revisão." +Additionally, {% data variables.product.prodname_actions %} and the GraphQL API enable you to automate routine project management tasks. For example, to keep track of pull requests awaiting review, you can create a workflow that adds a pull request to a project and sets the status to "needs review"; this process can be automatically triggered when a pull request is marked as "ready for review." -- Para obter um exemplo de fluxo de trabalho, consulte "[Automatizando projetos](/issues/trying-out-the-new-projects-experience/automating-projects)". -- Para obter mais informações sobre a API, consulte "[Usando a API para gerenciar projetos](/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects)". -- Para obter mais informações sobre {% data variables.product.prodname_actions %}, consulte ["{% data variables.product.prodname_actions %}](/actions)". +- For an example workflow, see "[Automating projects](/issues/trying-out-the-new-projects-experience/automating-projects)." +- For more information about the API, see "[Using the API to manage projects](/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects)." +- For more information about {% data variables.product.prodname_actions %}, see ["{% data variables.product.prodname_actions %}](/actions)." ## Use different field types diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/creating-a-project.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/creating-a-project.md index cc885ba718..e68a41f2ed 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/creating-a-project.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/creating-a-project.md @@ -1,6 +1,6 @@ --- -title: Criando um projeto (beta) -intro: 'Aprenda a criar um projeto, preencher e adicionar campos personalizados.' +title: Creating a project (beta) +intro: 'Learn how to make a project, populate it, and add custom fields.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 versions: @@ -11,11 +11,11 @@ topics: - Projects --- -Os projetos são uma coleção personalizável de itens que se mantêm atualizados com os dados do {% data variables.product.company_short %}. Seus projetos podem rastrear problemas, pull requests, e ideias que você anotar. Você pode adicionar campos personalizados e criar visualizações para fins específicos. +Projects are a customizable collection of items that stay up-to-date with {% data variables.product.company_short %} data. Your projects can track issues, pull requests, and ideas that you jot down. You can add custom fields and create views for specific purposes. {% data reusables.projects.projects-beta %} -## Criando um projeto +## Creating a project ### Creating an organization project @@ -25,41 +25,41 @@ Os projetos são uma coleção personalizável de itens que se mantêm atualizad {% data reusables.projects.create-user-project %} -## Adicionando itens ao seu projeto +## Adding items to your project -Seu projeto pode acompanhar os rascunhos de problemas, problemas e pull requests. +Your project can track draft issues, issues, and pull requests. -### Criando problemas de rascunho +### Creating draft issues -Os rascunhos são úteis para capturar ideias rapidamente. +Draft issues are useful to quickly capture ideas. -1. Coloque seu cursor na linha inferior do projeto, ao lado do {% octicon "plus" aria-label="plus icon" %}. -2. Digite sua ideia e, em seguida, pressione **Enter**. +1. Place your cursor in the bottom row of the project, next to the {% octicon "plus" aria-label="plus icon" %}. +2. Type your idea, then press **Enter**. You can convert draft issues into issues. For more information, see [Converting draft issues to issues](#converting-draft-issues-to-issues). -### Problemas e pull requests +### Issues and pull requests -#### Cole a URL de um problema ou pull request +#### Paste the URL of an issue or pull request -1. Coloque seu cursor na linha inferior do projeto, ao lado do {% octicon "plus" aria-label="plus icon" %}. -1. Cole a URL do problema ou pull request. +1. Place your cursor in the bottom row of the project, next to the {% octicon "plus" aria-label="plus icon" %}. +1. Paste the URL of the issue or pull request. -#### Pesquisando um problema ou pull request +#### Searching for an issue or pull request -1. Coloque seu cursor na linha inferior do projeto, ao lado do {% octicon "plus" aria-label="plus icon" %}. -2. Digite `#`. -3. Selecione o repositório onde está localizado o pull request ou problema. Você pode digitar parte do nome do repositório para restringir suas opções. -4. Selecione o problema ou pull request. Você pode digitar parte do título para restringir suas opções. +1. Place your cursor in the bottom row of the project, next to the {% octicon "plus" aria-label="plus icon" %}. +2. Enter `#`. +3. Select the repository where the pull request or issue is located. You can type part of the repository name to narrow down your options. +4. Select the issue or pull request. You can type part of the title to narrow down your options. -#### Atribuindo um projeto de dentro de um problema ou pull request +#### Assigning a project from within an issue or pull request -1. Acesse o problema ou pull request que você deseja adicionar a um projeto. -2. Na barra lateral, clique em **Projetos**. -3. Selecione o projeto ao qual você deseja adicionar o problema ou pull request. -4. Opcionalmente, preencha os campos personalizados. +1. Navigate to the issue or pull request that you want to add to a project. +2. In the side bar, click **Projects**. +3. Select the project that you want to add the issue or pull request to. +4. Optionally, populate the custom fields. - ![Barra lateral do projeto](/assets/images/help/issues/project_side_bar.png) + ![Project sidebar](/assets/images/help/issues/project_side_bar.png) ## Converting draft issues to issues @@ -93,26 +93,27 @@ You can restore archived items but not deleted items. For more information, see To restore an archived item, navigate to the issue or pull request. In the project side bar on the issue or pull request, click **Restore** for the project that you want to restore the item to. Draft issues cannot be restored. -## Adicionando campos +## Adding fields -Como os valores do campo mudam, eles são sincronizados automaticamente para que o seu projeto e os itens que ele rastreia fiquem atualizados. +As field values change, they are automatically synced so that your project and the items that it tracks are up-to-date. -### Mostrando campos existentes +### Showing existing fields -O seu projeto rastreia informações atualizadas sobre issues e pull requests, incluindo todas as alterações no título, responsáveis, etiquetas, marcos e repositório. Quando seu projeto é inicializado, são exibidos "título" e "responsáveis". Os outros campos permanecem ocultos. Você pode alterar a visibilidade desses campos no seu projeto. +Your project tracks up-to-date information about issues and pull requests, including any changes to the title, assignees, labels, milestones, and repository. When your project initializes, "title" and "assignees" are displayed; the other fields are hidden. You can change the visibility of these fields in your project. 1. {% data reusables.projects.open-command-palette %} -2. Comece a digitar "mostrar". -3. Selecione o comando desejado (por exemplo: "Mostrar: Repositório"). +2. Start typing "show". +3. Select the desired command (for example: "Show: Repository"). -Como alternativa, você pode fazer isso na interface do usuário: +Alternatively, you can do this in the UI: -1. Clique em {% octicon "plus" aria-label="the plus icon" %} no cabeçalho mais à direita. Será exibido um menu suspenso com os campos do projeto. ![Exibir ou ocultar campos](/assets/images/help/issues/projects_fields_menu.png) -2. Selecione o(s) campo(s) que você deseja exibir ou ocultar. Um {% octicon "check" aria-label="check icon" %} indica quais campos serão exibidos. +1. Click {% octicon "plus" aria-label="the plus icon" %} in the rightmost field header. A drop-down menu with the project fields will appear. + ![Show or hide fields](/assets/images/help/issues/projects_fields_menu.png) +2. Select the field(s) that you want to display or hide. A {% octicon "check" aria-label="check icon" %} indicates which fields are displayed. -### Adicionando campos personalizados +### Adding custom fields -Você pode adicionar campos personalizados ao seu projeto. Campos personalizados serão exibidos na barra lateral de problemas e pull requests no projeto. +You can add custom fields to your project. Custom fields will display on the side bar of issues and pull requests in the project. Custom fields can be text, number, date, single select, or iteration: @@ -122,11 +123,12 @@ Custom fields can be text, number, date, single select, or iteration: - Single select: The value must be selected from a set of specified values. - Iteration: The value must be selected from a set of date ranges (iterations). Iterations in the past are automatically marked as "completed", and the iteration covering the current date range is marked as "current". -1. {% data reusables.projects.open-command-palette %} Comece a digitar qualquer parte de "Criar novo campo". Quando "Criar novo campo" for exibido na paleta de comandos, selecione-o. -2. Como alternativa, clique em {% octicon "plus" aria-label="the plus icon" %} no cabeçalho do campo mais à direita. Será exibido um menu suspenso com os campos do projeto. Clique em **Novo campo**. -3. Uma janela pop-up irá aparecer para inserir informações sobre o novo campo. ![Novo campo](/assets/images/help/issues/projects_new_field.png) -4. Na caixa de texto, digite um nome para o novo campo. -5. Selecione o menu suspenso e clique no tipo desejado. +1. {% data reusables.projects.open-command-palette %} Start typing any part of "Create new field". When "Create new field" displays in the command palette, select it. +2. Alternatively, click {% octicon "plus" aria-label="the plus icon" %} in the rightmost field header. A drop-down menu with the project fields will appear. Click **New field**. +3. A popup will appear for you to enter information about the new field. + ![New field](/assets/images/help/issues/projects_new_field.png) +4. In the text box, enter a name for the new field. +5. Select the dropdown menu and click the desired type. 6. If you specified **Single select** as the type, enter the options. 7. If you specified **Iteration** as the type, enter the start date of the first iteration and the duration of the iteration. Three iterations are automatically created, and you can add additional iterations on the project's settings page. @@ -139,7 +141,7 @@ You can later edit the drop down options for single select and iteration fields. ## Customizing your views -Você pode ver seu projeto como uma tabela ou quadro, agrupar itens por campo, filtrar itens e muito mais. Para obter mais informações, consulte "[Personalizar as visualizações do seu projeto (beta)](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)". +You can view your project as a table or board, group items by field, filter item, and more. For more information, see "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)." ## Configuring built-in automation diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-the-visibility-of-your-projects.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-the-visibility-of-your-projects.md index ddbcd93a41..a158b5d3ad 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-the-visibility-of-your-projects.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/managing-the-visibility-of-your-projects.md @@ -1,6 +1,6 @@ --- title: Managing the visibility of your projects (beta) -intro: You can control who can view your projects. +intro: 'You can control who can view your projects.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 versions: diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/quickstart.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/quickstart.md index 89dbf941c6..4b64c42f6a 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/quickstart.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/quickstart.md @@ -1,6 +1,6 @@ --- -title: Início rápido para projetos (beta) -intro: 'Experimente a velocidade, flexibilidade e personalização de projetos (beta) criando um projeto neste guia interativo.' +title: Quickstart for projects (beta) +intro: 'Experience the speed, flexibility, and customization of projects (beta) by creating a project in this interactive guide.' allowTitleToDifferFromFilename: true miniTocMaxHeadingLevel: 3 versions: @@ -13,17 +13,17 @@ topics: {% data reusables.projects.projects-beta %} -## Introdução +## Introduction -Este guia demonstra como usar projetos (beta) para planejar e acompanhar o trabalho. Neste guia, você irá criar um novo projeto e adicionar um campo personalizado para acompanhar as prioridades das suas tarefas. Você também aprenderá como criar visualizações salvas que ajudem a comunicar as prioridades e o progresso com seus colaboradores. +This guide demonstrates how to use projects (beta) to plan and track work. In this guide, you will create a new project and add a custom field to track priorities for your tasks. You'll also learn how to create saved views that help you communicate priorities and progress with your collaborators. -## Pré-requisitos +## Prerequisites -You can either create an organization project or a user project. To create an organization project, you need a {% data variables.product.prodname_dotcom %} organization. Para obter mais informações sobre a criação de uma organização, consulte "[Criar uma nova organização a partir do zero](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)". +You can either create an organization project or a user project. To create an organization project, you need a {% data variables.product.prodname_dotcom %} organization. For more information about creating an organization, see "[Creating a new organization from scratch](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)." -In this guide, you will add existing issues from repositories owned by your organization (for organization projects) or by you (for user projects) to your new project. Para obter mais informações sobre a criação de problemas, consulte "[Criar um problema](/issues/tracking-your-work-with-issues/creating-an-issue)". +In this guide, you will add existing issues from repositories owned by your organization (for organization projects) or by you (for user projects) to your new project. For more information about creating issues, see "[Creating an issue](/issues/tracking-your-work-with-issues/creating-an-issue)." -## Criando um projeto +## Creating a project First, create an organization project or a user project. @@ -35,96 +35,98 @@ First, create an organization project or a user project. {% data reusables.projects.create-user-project %} -## Adicionando problemas ao seu projeto +## Adding issues to your project -Em seguida, adicione alguns problemas ao seu projeto. +Next, add a few issues to your project. -Quando seu novo projeto for iniciado, ele irá solicitar que você adicione itens ao seu projeto. Se você perder esta visualização ou desejar adicionar mais problemas posteriormente, coloque seu cursor na linha inferior do projeto, ao lado de {% octicon "plus" aria-label="plus icon" %}. +When your new project initializes, it prompts you to add items to your project. If you lose this view or want to add more issues later, place your cursor in the bottom row of the project, next to the {% octicon "plus" aria-label="plus icon" %}. -1. Digite `#`. -2. Selecione o repositório onde o problema está localizado. Para restringir as opções, você pode começar a digitar parte do nome do repositório. -3. Selecione o seu problema. Para restringir as opções, você pode começar a digitar uma parte do título do problema. +1. Type `#`. +2. Select the repository where your issue is located. To narrow down the options, you can start typing a part of the repository name. +3. Select your issue. To narrow down the options, you can start typing a part of the issue title. -Repita os passos acima algumas vezes para adicionar vários problemas ao seu projeto. +Repeat the above steps a few times to add multiple issues to your project. -Para obter mais informações sobre outras formas de adicionar problemas ao seu projeto, ou sobre outros itens que você pode adicionar ao seu projeto, consulte "[Criando um projeto](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-items-to-your-project)." +For more information about other ways to add issues to your project, or about other items you can add to your project, see "[Creating a project](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-items-to-your-project)." -## Criando um campo para monitorar a prioridade +## Creating a field to track priority -Agora, crie um campo personalizado denominado `Prioridade` para conter os valores: `Alto`, `Médio` ou `Baixo`. +Now, create a custom field called `Priority` to contain the values: `High`, `Medium`, or `Low`. 1. {% data reusables.projects.open-command-palette %} -2. Comece a digitar qualquer parte de "Criar novo campo". -3. Selecione **Criar novo campo**. -4. Na janela de pop-up resultante, digite `Prioridade` na caixa de texto. -5. Na lista de seleção, selecione **Seleção única**. -6. Adicionar opções para `Alto`, `Médio` e `Baixo`. Você também pode incluir emojis nas suas opções. ![Novo exemplo de campo de seleção única](/assets/images/help/projects/new-single-select-field.png) -7. Clique em **Salvar**. +2. Start typing any part of "Create new field". +3. Select **Create new field**. +4. In the resulting pop-up, enter `Priority` in the text box. +5. In the drop-down, select **Single select**. +6. Add options for `High`, `Medium`, and `Low`. You can also include emojis in your options. + ![New single select field example](/assets/images/help/projects/new-single-select-field.png) +7. Click **Save**. -Especifique uma prioridade para todos os problemas no seu projeto. +Specify a priority for all issues in your project. -![Prioridades de exemplo](/assets/images/help/projects/priority_example.png) +![Example priorities](/assets/images/help/projects/priority_example.png) -## Agrupar problemas por prioridade +## Grouping issues by priority -Em seguida, agrupe todos os itens do seu projeto por prioridade para facilitar o foco nos itens de alta prioridade. +Next, group all of the items in your project by priority to make it easier to focus on the high priority items. 1. {% data reusables.projects.open-command-palette %} -2. Comece a digitar qualquer parte de "Agrupar por". -3. Selecione **Agrupar por: Prioridade**. +2. Start typing any part of "Group by". +3. Select **Group by: Priority**. -Agora, transfira os problemas entre grupos para mudar a sua prioridade. +Now, move issues between groups to change their priority. -1. Escolha um problema. -2. Arraste e solte o problema em um grupo de prioridade diferente. Ao fazer isso, a prioridade do problema passará a ser a prioridade do seu novo grupo. +1. Choose an issue. +2. Drag and drop the issue into a different priority group. When you do this, the priority of the issue will change to be the priority of its new group. -![Transferir problemas entre grupos](/assets/images/help/projects/move_between_group.gif) +![Move issue between groups](/assets/images/help/projects/move_between_group.gif) -## Salvando a visualização da prioridade +## Saving the priority view -Quando você agrupou os seus problemas por prioridade na etapa anterior, seu projeto exibiu um indicador para mostrar que a visualização foi modificada. Salve essas alterações para que os seus colaboradores vejam as tarefas agrupadas por prioridade. +When you grouped your issues by priority in the previous step, your project displayed an indicator to show that the view was modified. Save these changes so that your collaborators will also see the tasks grouped by priority. -1. Selecione o menu suspenso ao lado do nome da visualização. -2. Clique em **Save changes** (Salvar alterações). +1. Select the drop-down menu next to the view name. +2. Click **Save changes**. -Para indicar o propósito da visão, dê um nome descritivo. +To indicate the purpose of the view, give it a descriptive name. -1. Coloque o cursor no nome atual da visualização, **Visualização 1**. -2. Substitua o texto existente pelo novo nome, `Prioridades`. +1. Place your cursor in the current view name, **View 1**. +2. Replace the existing text with the new name, `Priorities`. -Você pode compartilhar a URL com seu time para manter todos alinhados com as prioridades do projeto. +You can share the URL with your team to keep everyone aligned on the project priorities. -Quando a visualização é salva, qualquer pessoa que abrir o projeto verá a visualização salva. Aqui, você agrupou por prioridade, mas você também pode adicionar outros modificadores como ordenação, filtro ou layout. Em seguida, você criará uma nova exibição com o layout modificado. +When a view is saved, anyone who opens the project will see the saved view. Here, you grouped by priority, but you can also add other modifiers such as sort, filter, or layout. Next, you will create a new view with the layout modified. ## Adding a board layout -Para ver o progresso dos problemas do seu projeto, você pode alternar para o layout do quadro. +To view the progress of your project's issues, you can switch to board layout. The board layout is based on the status field, so specify a status for each issue in your project. -![Status do exemplo](/assets/images/help/projects/status_example.png) +![Example status](/assets/images/help/projects/status_example.png) -Em seguida, crie uma nova visualização. +Then, create a new view. -1. Clique em {% octicon "plus" aria-label="the plus icon" %} **Nova Visualização** ao lado da visualização mais à direita. +1. Click {% octicon "plus" aria-label="the plus icon" %} **New view** next to the rightmost view. -Em seguida, mude para o layout do quadro. +Next, switch to board layout. 1. {% data reusables.projects.open-command-palette %} -2. Comece a digitar qualquer parte de "Layout Switch: Board". -3. Selecione **Mudar layout: Board**. ![Prioridades de exemplo](/assets/images/help/projects/example_board.png) +2. Start typing any part of "Switch layout: Board". +3. Select **Switch layout: Board**. + ![Example priorities](/assets/images/help/projects/example_board.png) -Quando você alterou o layout, o projeto exibiu um indicador para mostrar que a visualização foi modificada. Salve esta visualização para que você e seus colaboradores possam acessá-la facilmente no futuro. +When you changed the layout, your project displayed an indicator to show that the view was modified. Save this view so that you and your collaborators can easily access it in the future. -1. Selecione o menu suspenso ao lado do nome da visualização. -2. Clique em **Save changes** (Salvar alterações). +1. Select the drop-down menu next to the view name. +2. Click **Save changes**. -Para indicar o propósito da visão, dê um nome descritivo. +To indicate the purpose of the view, give it a descriptive name. -1. Coloque o cursor no nome atual da visualização, **Visualização2**. -2. Substitua o texto existente pelo novo nome, `Progresso`. +1. Place your cursor in the current view name, **View 2**. +2. Replace the existing text with the new name, `Progress`. -![Prioridades de exemplo](/assets/images/help/projects/project-view-switch.gif) +![Example priorities](/assets/images/help/projects/project-view-switch.gif) ## Configure built-in automation @@ -136,17 +138,17 @@ Finally, add a built in workflow to set the status to **Todo** when an item is a 4. Next to **Set**, select **Status:Todo**. 5. Click the **Disabled** toggle to enable the workflow. -## Próximas etapas +## Next steps -Você pode usar projetos para uma ampla gama de finalidades. Por exemplo: +You can use projects for a wide range of purposes. For example: -- Acompanhar o trabalho para uma versão +- Track work for a release - Plan a sprint -- Priorizar um backlog +- Prioritize a backlog -Aqui estão alguns recursos úteis para dar seus próximos passos com {% data variables.product.prodname_github_issues %}: +Here are some helpful resources for taking your next steps with {% data variables.product.prodname_github_issues %}: -- Para fornecer feedback sobre os projetos (beta) experiência, acesse o [Repositório de comentários GitHub](https://github.com/github/feedback/discussions/categories/issues-feedback). -- Para saber mais sobre como os projetos podem ajudar você com o planejamento e monitoramento, consulte "[Sobre projetos](/issues/trying-out-the-new-projects-experience/about-projects)". -- Para saber mais sobre os campos e itens que você pode adicionar ao seu projeto, consulte "[Criar um projeto](/issues/trying-out-the-new-projects-experience/creating-a-project)". -- Para aprender mais sobre maneiras de exibir as informações que você precisa, consulte "[Personalizar visualizações de projeto](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)". +- To provide feedback about the projects (beta) experience, go to the [GitHub feedback repository](https://github.com/github/feedback/discussions/categories/issues-feedback). +- To learn more about how projects can help you with planning and tracking, see "[About projects](/issues/trying-out-the-new-projects-experience/about-projects)." +- To learn more about the fields and items you can add to your project, see "[Creating a project](/issues/trying-out-the-new-projects-experience/creating-a-project)." +- To learn about more ways to display the information you need, see "[Customizing your project views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views)." diff --git a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects.md b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects.md index 7cff7b8e9b..07843a55d9 100644 --- a/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects.md +++ b/translations/pt-BR/content/issues/trying-out-the-new-projects-experience/using-the-api-to-manage-projects.md @@ -1,6 +1,6 @@ --- -title: Usando a API para gerenciar projetos (beta) -intro: Você pode usar a API do GraphQL para encontrar informações sobre projetos e atualizar projetos. +title: Using the API to manage projects (beta) +intro: You can use the GraphQL API to find information about projects and to update projects. versions: fpt: '*' ghec: '*' @@ -11,17 +11,17 @@ topics: - Projects --- -Este artigo demonstra como usar a API do GraphQL para gerenciar um projeto. For more information about how to use the API in a {% data variables.product.prodname_actions %} workflow, see "[Automating projects (beta)](/issues/trying-out-the-new-projects-experience/automating-projects)." For a full list of the available data types, see "[Reference](/graphql/reference)." +This article demonstrates how to use the GraphQL API to manage a project. For more information about how to use the API in a {% data variables.product.prodname_actions %} workflow, see "[Automating projects (beta)](/issues/trying-out-the-new-projects-experience/automating-projects)." For a full list of the available data types, see "[Reference](/graphql/reference)." {% data reusables.projects.projects-beta %} -## Autenticação +## Authentication {% include tool-switcher %} {% curl %} -Em todos os exemplos cURL a seguir, substitua `TOKEN` por um token que tem o escopo `read:org` (para consultas) ou `write:org` (para consultas e mutações). The token can be a personal access token for a user or an installation access token for a {% data variables.product.prodname_github_app %}. For more information about creating a personal access token, see "[Creating a personal access token](/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token)." For more information about creating an installation access token for a {% data variables.product.prodname_github_app %}, see "[Authenticating with {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app)." +In all of the following cURL examples, replace `TOKEN` with a token that has the `read:org` scope (for queries) or `write:org` scope (for queries and mutations). The token can be a personal access token for a user or an installation access token for a {% data variables.product.prodname_github_app %}. For more information about creating a personal access token, see "[Creating a personal access token](/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token)." For more information about creating an installation access token for a {% data variables.product.prodname_github_app %}, see "[Authenticating with {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app)." {% endcurl %} @@ -29,15 +29,15 @@ Em todos os exemplos cURL a seguir, substitua `TOKEN` por um token que tem o esc {% data reusables.cli.cli-learn-more %} -Before running {% data variables.product.prodname_cli %} commands, you must authenticate by running `gh auth login --scopes "write:org"`. If you only need to read, but not edit, projects, you can omit the `--scopes` argument. Para obter mais informações sobre a autenticação de linha de comando, consulte "[gh auth login](https://cli.github.com/manual/gh_auth_login)". +Before running {% data variables.product.prodname_cli %} commands, you must authenticate by running `gh auth login --scopes "write:org"`. If you only need to read, but not edit, projects, you can omit the `--scopes` argument. For more information on command line authentication, see "[gh auth login](https://cli.github.com/manual/gh_auth_login)." {% endcli %} {% cli %} -## Usando variáveis +## Using variables -Em todos os exemplos a seguir, você pode usar variáveis para simplificar seus scripts. Use `-F` para passar uma variável que é um número, booleano ou nulo. Use `-f` para outras variáveis. Por exemplo, +In all of the following examples, you can use variables to simplify your scripts. Use `-F` to pass a variable that is a number, Boolean, or null. Use `-f` for other variables. For example, ```shell my_org="octo-org" @@ -52,19 +52,19 @@ gh api graphql -f query=' }' -f organization=$my_org -F number=$my_num ``` -Para obter mais informações, consulte "[Formando chamadas com o GraphQL]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#working-with-variables)". +For more information, see "[Forming calls with GraphQL]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#working-with-variables)." {% endcli %} -## Encontrando informações sobre os projetos +## Finding information about projects -Use consultas para obter dados sobre projetos. Para obter mais informações, consulte "[Sobre consultas]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#about-queries)". +Use queries to get data about projects. For more information, see "[About queries]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#about-queries)." ### Finding the node ID of an organization project -Para atualizar seu projeto por meio da API, você precisará conhecer o nó de ID do projeto. +To update your project through the API, you will need to know the node ID of the project. -You can find the node ID of an organization project if you know the organization name and project number. Substitua `ORGANIZATION` pelo nome da sua organização. Por exemplo, `octo-org`. Replace `NUMBER` with the project number. Para encontrar o número do projeto, consulte a URL do projeto. Por exemplo, `https://github.com/orgs/octo-org/projects/5` tem um número de projeto de 5. +You can find the node ID of an organization project if you know the organization name and project number. Replace `ORGANIZATION` with the name of your organization. For example, `octo-org`. Replace `NUMBER` with the project number. To find the project number, look at the project URL. For example, `https://github.com/orgs/octo-org/projects/5` has a project number of 5. {% include tool-switcher %} @@ -90,7 +90,7 @@ gh api graphql -f query=' ``` {% endcli %} -Você também pode encontrar o ID do nó de todos os projetos na sua organização. O exemplo a seguir retornará o ID do nó e o título dos primeiros 20 projetos em uma organização. Substitua `ORGANIZATION` pelo nome da sua organização. Por exemplo, `octo-org`. +You can also find the node ID of all projects in your organization. The following example will return the node ID and title of the first 20 projects in an organization. Replace `ORGANIZATION` with the name of your organization. For example, `octo-org`. {% include tool-switcher %} @@ -121,9 +121,9 @@ gh api graphql -f query=' ### Finding the node ID of a user project -Para atualizar seu projeto por meio da API, você precisará conhecer o nó de ID do projeto. +To update your project through the API, you will need to know the node ID of the project. -You can find the node ID of a user project if you know the project number. Replace `USER` with your user name. Por exemplo, `octocat`. Substitua `NUMBER` pelo número do seu projeto. Para encontrar o número do projeto, consulte a URL do projeto. Por exemplo, `https://github.com/users/octocat/projects/5` tem um número de projeto de 5. +You can find the node ID of a user project if you know the project number. Replace `USER` with your user name. For example, `octocat`. Replace `NUMBER` with your project number. To find the project number, look at the project URL. For example, `https://github.com/users/octocat/projects/5` has a project number of 5. {% include tool-switcher %} @@ -149,7 +149,7 @@ gh api graphql -f query=' ``` {% endcli %} -You can also find the node ID for all of your projects. The following example will return the node ID and title of your first 20 projects. Replace `USER` with your username. Por exemplo, `octocat`. +You can also find the node ID for all of your projects. The following example will return the node ID and title of your first 20 projects. Replace `USER` with your username. For example, `octocat`. {% include tool-switcher %} @@ -178,11 +178,11 @@ gh api graphql -f query=' ``` {% endcli %} -### Encontrando o ID do nó de um campo +### Finding the node ID of a field -Para atualizar o valor de um campo, você precisará saber o ID do nó do campo. Additionally, you will need to know the ID of the options for single select fields and the ID of the iterations for iteration fields. +To update the value of a field, you will need to know the node ID of the field. Additionally, you will need to know the ID of the options for single select fields and the ID of the iterations for iteration fields. -O exemplo a seguir retornará o ID, o nome e as configurações para os primeiros 20 campos de um projeto. Substitua `PROJECT_ID` pelo ID do nó do seu projeto. +The following example will return the ID, name, and settings for the first 20 fields in a project. Replace `PROJECT_ID` with the node ID of your project. {% include tool-switcher %} @@ -214,7 +214,7 @@ gh api graphql -f query=' ``` {% endcli %} -A resposta ficará semelhante ao seguinte exemplo: +The response will look similar to the following example: ```json { @@ -249,13 +249,13 @@ A resposta ficará semelhante ao seguinte exemplo: } ``` -Cada campo tem um ID. Additionally, single select fields and iteration fields have a `settings` value. In the single select settings, you can find the ID of each option for the single select. In the iteration settings, you can find the duration of the iteration, the start day of the iteration (from 1 for Monday to 7 for Sunday), the list of incomplete iterations, and the list of completed iterations. For each iteration in the lists of iterations, you can find the ID, title, duration, and start date of the iteration. +Each field has an ID. Additionally, single select fields and iteration fields have a `settings` value. In the single select settings, you can find the ID of each option for the single select. In the iteration settings, you can find the duration of the iteration, the start day of the iteration (from 1 for Monday to 7 for Sunday), the list of incomplete iterations, and the list of completed iterations. For each iteration in the lists of iterations, you can find the ID, title, duration, and start date of the iteration. -### Encontrando informações sobre os itens de um projeto +### Finding information about items in a project -Você pode consultar a API para encontrar informações sobre itens no seu projeto. +You can query the API to find information about items in your project. -O exemplo a seguir retornará o título e ID dos primeiros 20 itens em um projeto. Para cada item, ela também retornará o valor e nome para os primeiros 8 campos do projeto. Se o item for um problema ou um pull request, ele retornará o login dos primeiros 10 responsáveis. Substitua `PROJECT_ID` pelo ID do nó do seu projeto. +The following example will return the title and ID for the first 20 items in a project. For each item, it will also return the value and name for the first 8 fields in the project. If the item is an issue or pull request, it will return the login of the first 10 assignees. Replace `PROJECT_ID` with the node ID of your project. {% include tool-switcher %} @@ -310,7 +310,7 @@ gh api graphql -f query=' ``` {% endcli %} -Um projeto pode conter itens que um usuário não tem permissão para visualizar. Neste caso, a resposta incluirá o item redatado. +A project may contain items that a user does not have permission to view. In this case, the response will include redacted item. ```shell { @@ -321,19 +321,19 @@ Um projeto pode conter itens que um usuário não tem permissão para visualizar } ``` -## Atualizando projetos +## Updating projects -Use mutações para atualizar projetos. For more information, see "[About mutations]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#about-mutations)." +Use mutations to update projects. For more information, see "[About mutations]({% ifversion ghec %}/free-pro-team@latest{% endif %}/graphql/guides/forming-calls-with-graphql#about-mutations)." {% note %} -**Observação:** Você não pode adicionar e atualizar um item na mesma chamada. Você deve usar `addProjectNextItem` para adicionar o item e, em seguida, usar `updateProjectNextItemField` para atualizar o item. +**Note:** You cannot add and update an item in the same call. You must use `addProjectNextItem` to add the item and then use `updateProjectNextItemField` to update the item. {% endnote %} -### Adicionando um item a um projeto +### Adding an item to a project -O exemplo a seguir adicionará um problema ou pull request ao seu projeto. Substitua `PROJECT_ID` pelo ID do nó do seu projeto. Substitua `CONTENT_ID` pelo ID do n[o do problema ou pull request que você deseja adicionar. +The following example will add an issue or pull request to your project. Replace `PROJECT_ID` with the node ID of your project. Replace `CONTENT_ID` with the node ID of the issue or pull request that you want to add. {% include tool-switcher %} @@ -359,7 +359,7 @@ gh api graphql -f query=' ``` {% endcli %} -A resposta conterá o ID do nó do item recém-criado. +The response will contain the node ID of the newly created item. ```json { @@ -373,11 +373,11 @@ A resposta conterá o ID do nó do item recém-criado. } ``` -Se você tentar adicionar um item que já existe, o ID do item existente será retornado. +If you try add an item that already exists, the existing item ID is returned instead. ### Updating a custom text, number, or date field -The following example will update the value of a date field for an item. Substitua `PROJECT_ID` pelo ID do nó do seu projeto. Substitua `ITEM_ID` pelo ID do nó do item que você deseja atualizar. Substitua `FIELD_ID` pelo ID do campo que você deseja atualizar. +The following example will update the value of a date field for an item. Replace `PROJECT_ID` with the node ID of your project. Replace `ITEM_ID` with the node ID of the item you want to update. Replace `FIELD_ID` with the ID of the field that you want to update. {% include tool-switcher %} @@ -412,7 +412,7 @@ gh api graphql -f query=' {% note %} -**Observação:** Você não pode usar `updateProjectNextItemField` para alterar `Assignees`, `Labels`, `Milestone` ou `Repository` porque esses campos são propriedades de pull requests e problemas, não de itens do projeto. Instead, you must use the [addAssigneesToAssignable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#addassigneestoassignable), [removeAssigneesFromAssignable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#removeassigneesfromassignable), [addLabelsToLabelable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#addlabelstolabelable), [removeLabelsFromLabelable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#removelabelsfromlabelable), [updateIssue]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#updateissue), [updatePullRequest]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#updatepullrequest), or [transferIssue]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#transferissue) mutations. +**Note:** You cannot use `updateProjectNextItemField` to change `Assignees`, `Labels`, `Milestone`, or `Repository` because these fields are properties of pull requests and issues, not of project items. Instead, you must use the [addAssigneesToAssignable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#addassigneestoassignable), [removeAssigneesFromAssignable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#removeassigneesfromassignable), [addLabelsToLabelable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#addlabelstolabelable), [removeLabelsFromLabelable]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#removelabelsfromlabelable), [updateIssue]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#updateissue), [updatePullRequest]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#updatepullrequest), or [transferIssue]({% ifversion ghec%}/free-pro-team@latest{% endif %}/graphql/reference/mutations#transferissue) mutations. {% endnote %} @@ -420,8 +420,8 @@ gh api graphql -f query=' The following example will update the value of a single select field for an item. -- `PROJET_ID` - Substituir isso pelo ID do nó do seu projeto. -- `ITEM_ID` - Substituir isso pelo ID do nó do item que você deseja atualizar. +- `PROJECT_ID` - Replace this with the node ID of your project. +- `ITEM_ID` - Replace this with the node ID of the item you want to update. - `FIELD_ID` - Replace this with the ID of the single select field that you want to update. - `OPTION_ID` - Replace this with the ID of the desired single select option. @@ -460,8 +460,8 @@ gh api graphql -f query=' The following example will update the value of an iteration field for an item. -- `PROJET_ID` - Substituir isso pelo ID do nó do seu projeto. -- `ITEM_ID` - Substituir isso pelo ID do nó do item que você deseja atualizar. +- `PROJECT_ID` - Replace this with the node ID of your project. +- `ITEM_ID` - Replace this with the node ID of the item you want to update. - `FIELD_ID` - Replace this with the ID of the iteration field that you want to update. - `ITERATION_ID` - Replace this with the ID of the desired iteration. This can be either an active iteration (from the `iterations` array) or a completed iteration (from the `completed_iterations` array). @@ -496,9 +496,9 @@ gh api graphql -f query=' ``` {% endcli %} -### Excluir um item de um projeto +### Deleting an item from a project -O exemplo a seguir excluirá um item de um projeto. Substitua `PROJECT_ID` pelo ID do nó do seu projeto. Substitua `ITEM_ID` pelo Id do nó do item que você deseja excluir. +The following example will delete an item from a project. Replace `PROJECT_ID` with the node ID of your project. Replace `ITEM_ID` with the node ID of the item you want to delete. {% include tool-switcher %} diff --git a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md index c580078544..d5073f08ca 100644 --- a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md +++ b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md @@ -1,6 +1,6 @@ --- -title: Sobre organizações -intro: As organizações são contas compartilhadas onde empresas e projetos de código aberto podem colaborar em muitos projetos de uma vez. Os proprietários e administradores podem gerenciar o acesso de integrantes aos dados e projetos da organização com recursos avançados administrativos e de segurança. +title: About organizations +intro: Organizations are shared accounts where businesses and open-source projects can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. redirect_from: - /articles/about-organizations - /github/setting-up-and-managing-organizations-and-teams/about-organizations @@ -14,25 +14,25 @@ topics: - Teams --- -{% data reusables.organizations.about-organizations %} +{% data reusables.organizations.about-organizations %} For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -{% data reusables.organizations.organizations_include %} +{% data reusables.organizations.organizations_include %} -{% data reusables.organizations.org-ownership-recommendation %} Para obter mais informações, consulte "[Manter a continuidade da propriedade para sua organização](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)". +{% data reusables.organizations.org-ownership-recommendation %} For more information, see "[Maintaining ownership continuity for your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)." {% ifversion fpt or ghec %} -## Organizações e contas corporativas +## Organizations and enterprise accounts Enterprise accounts are a feature of {% data variables.product.prodname_ghe_cloud %} that allow owners to centrally manage policy and billing for multiple organizations. -Para organizações que pertencem a uma conta corporativa, a cobrança é gerenciada no nível da conta corporativa e as configurações de cobrança não estão disponíveis no nível da organização. Os proprietários de empresa podem definir a política para todas as organizações na conta corporativa ou permitir que os proprietários da organização definam a política no nível da organização. Os proprietários da organização não podem alterar as configurações aplicadas à sua organização no nível da conta corporativa. Se você tiver dúvidas sobre uma política ou configuração da sua organização, entre em contato com o proprietário da conta corporativa. +For organizations that belong to an enterprise account, billing is managed at the enterprise account level, and billing settings are not available at the organization level. Enterprise owners can set policy for all organizations in the enterprise account or allow organization owners to set the policy at the organization level. Organization owners cannot change settings enforced for your organization at the enterprise account level. If you have questions about a policy or setting for your organization, contact the owner of your enterprise account. {% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/admin/overview/creating-an-enterprise-account){% ifversion ghec %}."{% else %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% endif %} {% data reusables.enterprise-accounts.invite-organization %} -## Termos de serviços e proteção de dados para organizações +## Terms of service and data protection for organizations -Uma entidade, como uma empresa, não lucrativa, ou um grupo, pode concordar com os Termos de serviço padrão ou os Termos de serviço corporativos para a respectiva organização. Para obter mais informações, consulte "[Atualizar para os Termos de serviço corporativos](/articles/upgrading-to-the-corporate-terms-of-service)". +An entity, such as a company, non-profit, or group, can agree to the Standard Terms of Service or the Corporate Terms of Service for their organization. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)." {% endif %} diff --git a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md index 8fbe5ee34d..1301ef95bc 100644 --- a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md +++ b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md @@ -1,8 +1,8 @@ --- -title: Sobre o feed de notícias da sua organização -intro: Você pode usar o feed de notícias da sua organização para se manter atualizado com atividades recentes nos repositórios de propriedade da organização. +title: About your organization’s news feed +intro: You can use your organization's news feed to keep up with recent activity on repositories owned by that organization. redirect_from: - - /articles/news-feed/ + - /articles/news-feed - /articles/about-your-organization-s-news-feed - /articles/about-your-organizations-news-feed - /github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed @@ -14,15 +14,17 @@ versions: topics: - Organizations - Teams -shortTitle: Feed de notícias da organização +shortTitle: Organization news feed --- -O feed de notícias de uma organização mostra a atividade de outras pessoas nos repositórios que pertencem a essa organização. Você pode usar o feed de notícias da sua organização para ver quando alguém abre, fecha ou faz merge de um problema ou uma pull request, cria ou exclui um branch, cria uma tag ou versão, comenta sobre um problema, uma pull request, ou faz commit, ou faz push de novos commits no {% data variables.product.product_name %}. +An organization's news feed shows other people's activity on repositories owned by that organization. You can use your organization's news feed to see when someone opens, closes, or merges an issue or pull request, creates or deletes a branch, creates a tag or release, comments on an issue, pull request, or commit, or pushes new commits to {% data variables.product.product_name %}. -## Acessar o feed de notícias da sua organização +## Accessing your organization's news feed 1. {% data variables.product.signin_link %} to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}. -2. Abra o seu {% data reusables.user_settings.personal_dashboard %}. -3. Clique no alternador de contexto da conta no canto superior esquerdo da página. ![Botão do alternador de contexto no Enterprise](/assets/images/help/organizations/account_context_switcher.png) -4. Select an organization from the drop-down menu.{% ifversion fpt or ghec %} ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} -![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} +2. Open your {% data reusables.user_settings.personal_dashboard %}. +3. Click the account context switcher in the upper-left corner of the page. + ![Context switcher button in Enterprise](/assets/images/help/organizations/account_context_switcher.png) +4. Select an organization from the drop-down menu.{% ifversion fpt or ghec %} + ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} + ![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} diff --git a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md index 464360c8d7..373c0c390d 100644 --- a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md +++ b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md @@ -1,15 +1,15 @@ --- -title: Acessar as configurações da organização +title: Accessing your organization's settings redirect_from: - - /articles/who-can-access-organization-billing-information-and-account-settings/ - - /articles/managing-the-organization-s-settings/ - - /articles/who-can-see-billing-information-account-settings/ - - /articles/who-can-see-billing-information-and-access-account-settings/ - - /articles/managing-an-organization-s-settings/ + - /articles/who-can-access-organization-billing-information-and-account-settings + - /articles/managing-the-organization-s-settings + - /articles/who-can-see-billing-information-account-settings + - /articles/who-can-see-billing-information-and-access-account-settings + - /articles/managing-an-organization-s-settings - /articles/accessing-your-organization-s-settings - /articles/accessing-your-organizations-settings - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings -intro: 'A página de configurações da conta da organização fornece várias maneiras de gerenciar a conta, como cobrança, associação a equipes e configurações do repositório.' +intro: 'The organization account settings page provides several ways to manage the account, such as billing, team membership, and repository settings.' versions: fpt: '*' ghes: '*' @@ -18,14 +18,13 @@ versions: topics: - Organizations - Teams -shortTitle: Acessar configurações da organização +shortTitle: Access organization settings --- - {% ifversion fpt or ghec %} {% tip %} -**Dica:** somente proprietários da organização e gerentes de cobrança podem ver e alterar as informações de cobrança e configurações da conta para uma organização. {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Only organization owners and billing managers can see and change the billing information and account settings for an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} diff --git a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/index.md b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/index.md index 5cdc0bc9be..bd2e17c6b1 100644 --- a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/index.md +++ b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/index.md @@ -1,8 +1,8 @@ --- -title: Colaborar com grupos e organizações -intro: Os grupos de pessoas podem colaborar em muitos projetos ao mesmo tempo nas contas da organização. +title: Collaborating with groups in organizations +intro: Groups of people can collaborate across many projects at the same time in organization accounts. redirect_from: - - /articles/creating-a-new-organization-account/ + - /articles/creating-a-new-organization-account - /articles/collaborating-with-groups-in-organizations - /github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations versions: @@ -21,6 +21,6 @@ children: - /customizing-your-organizations-profile - /about-your-organizations-news-feed - /viewing-insights-for-your-organization -shortTitle: Colaborar com grupos +shortTitle: Collaborate with groups --- diff --git a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md index 3abf525f19..5e868d4583 100644 --- a/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md +++ b/translations/pt-BR/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md @@ -1,6 +1,6 @@ --- -title: Exibir informações da organização -intro: 'As informações da organização fornecem dados sobre a atividade, as contribuições e as dependências dela.' +title: Viewing insights for your organization +intro: 'Organization insights provide data about your organization''s activity, contributions, and dependencies.' product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/viewing-insights-for-your-organization @@ -11,49 +11,57 @@ versions: topics: - Organizations - Teams -shortTitle: Visualizar ideias da organização +shortTitle: View organization insights --- -Todos os integrantes de uma organização podem exibir informações da organização. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +All members of an organization can view organization insights. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -Você pode usar informações de atividade da organização para entender melhor como os integrantes da sua organização estão usando o {% data variables.product.product_name %} para colaborar e trabalhar no código. As informações de dependência podem ajudar você a monitorar, reportar e agir de acordo com o uso de código aberto da organização. +You can use organization activity insights to help you better understand how members of your organization are using {% data variables.product.product_name %} to collaborate and work on code. Dependency insights can help you track, report, and act on your organization's open source usage. -## Exibir informações de atividade da organização +## Viewing organization activity insights {% note %} -**Observação:** As ideias da atividade da organização estão atualmente na versão beta pública e são sujeitas a alterações. +**Note:** Organization activity insights are currently in public beta and subject to change. {% endnote %} -Com as informações de atividade da organização, é possível exibir visualizações de dados semanais, mensais e anuais de toda a organização ou de repositórios específicos, como atividade de pull requests e problemas, principais linguagens usadas e dados cumulativos sobre onde os integrantes da organização passam o tempo. +With organization activity insights you can view weekly, monthly, and yearly data visualizations of your entire organization or specific repositories, including issue and pull request activity, top languages used, and cumulative information about where your organization members spend their time. {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} -3. No nome da organização, clique em {% octicon "graph" aria-label="The bar graph icon" %} **Insights** (Informações). ![Clique na guia Insights (Informações) da organização](/assets/images/help/organizations/org-nav-insights-tab.png) -4. Como alternativa, no canto superior direito da página, opte por exibir dados do período de **1 semana**, **1 mês** ou **1 ano** mais recente. ![Escolha o período para visualizar informações da organização](/assets/images/help/organizations/org-insights-time-period.png) -5. Ou, no canto superior direito da página, opte por exibir dados de até três repositórios e clique em **Apply** (Aplicar). ![Escolha os repositórios para visualizar informações da organização](/assets/images/help/organizations/org-insights-repos.png) +3. Under your organization name, click {% octicon "graph" aria-label="The bar graph icon" %} **Insights**. + ![Click the organization insights tab](/assets/images/help/organizations/org-nav-insights-tab.png) +4. Optionally, in the upper-right corner of the page, choose to view data for the last **1 week**, **1 month**, or **1 year**. + ![Choose time period to view org insights](/assets/images/help/organizations/org-insights-time-period.png) +5. Optionally, in the upper-right corner of the page, choose to view data for up to three repositories and click **Apply**. + ![Choose repositories to view org insights](/assets/images/help/organizations/org-insights-repos.png) -## Exibir informações de dependência da organização +## Viewing organization dependency insights {% note %} -**Observação:** Certifique-se que você habilitou o [Gráfico de dependências](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph). +**Note:** Please make sure you have enabled the [Dependency Graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph#enabling-the-dependency-graph). {% endnote %} -Com as informações de dependência, é possível visualizar vulnerabilidades, licenças e outras informações importantes dos projetos de código aberto dos quais a sua organização depende. +With dependency insights you can view vulnerabilities, licenses, and other important information for the open source projects your organization depends on. {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} -3. No nome da organização, clique em {% octicon "graph" aria-label="The bar graph icon" %} **Insights** (Informações). ![Guia Insights (Informações) na principal barra de navegação da organização](/assets/images/help/organizations/org-nav-insights-tab.png) -4. Clique em **Dependencies** (Dependências) para exibir as que pertencem a esta organização. ![Guia Dependencies (Dependências) na principal barra de navegação da organização](/assets/images/help/organizations/org-insights-dependencies-tab.png) -5. Para exibir informações de dependência para todas as suas organizações do {% data variables.product.prodname_ghe_cloud %}, clique em **My organizations** (Minhas organizações). ![Botão My organizations (Minhas organizações) na guia Dependencies (Dependências)](/assets/images/help/organizations/org-insights-dependencies-my-orgs-button.png) -6. Você pode clicar nos resultados dos gráficos **Consultorias de segurança abertas** e **Licenças** para filtrar por um status de vulnerabilidade, uma licença ou uma combinação dos dois. ![Gráficos de "vulnerabilidades das minhas organizações"](/assets/images/help/organizations/org-insights-dependencies-graphs.png) -7. Também pode clicar em {% octicon "package" aria-label="The package icon" %} **Dependents** (Dependentes) ao lado de cada vulnerabilidade para ver quais dependentes na organização estão usando cada biblioteca. ![Dependentes vulneráveis em My organizations (Minhas organizações)](/assets/images/help/organizations/org-insights-dependencies-vulnerable-item.png) +3. Under your organization name, click {% octicon "graph" aria-label="The bar graph icon" %} **Insights**. + ![Insights tab in the main organization navigation bar](/assets/images/help/organizations/org-nav-insights-tab.png) +4. To view dependencies for this organization, click **Dependencies**. + ![Dependencies tab under the main organization navigation bar](/assets/images/help/organizations/org-insights-dependencies-tab.png) +5. To view dependency insights for all your {% data variables.product.prodname_ghe_cloud %} organizations, click **My organizations**. + ![My organizations button under dependencies tab](/assets/images/help/organizations/org-insights-dependencies-my-orgs-button.png) +6. You can click the results in the **Open security advisories** and **Licenses** graphs to filter by a vulnerability status, a license, or a combination of the two. + ![My organizations vulnerabilities and licenses graphs](/assets/images/help/organizations/org-insights-dependencies-graphs.png) +7. You can click on {% octicon "package" aria-label="The package icon" %} **dependents** next to each vulnerability to see which dependents in your organization are using each library. + ![My organizations vulnerable dependents](/assets/images/help/organizations/org-insights-dependencies-vulnerable-item.png) -## Leia mais - - "[Sobre organizações](/organizations/collaborating-with-groups-in-organizations/about-organizations)" - - "[Explorar as dependências de um repositório](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" +## Further reading + - "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)" + - "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" - "[Changing the visibility of your organization's dependency insights](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)"{% ifversion ghec %} - "[Enforcing policies for dependency insights in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)"{% endif %} diff --git a/translations/pt-BR/content/organizations/index.md b/translations/pt-BR/content/organizations/index.md index 84aa357549..aebcbe659d 100644 --- a/translations/pt-BR/content/organizations/index.md +++ b/translations/pt-BR/content/organizations/index.md @@ -1,9 +1,9 @@ --- -title: Organizações e equipes -shortTitle: Organizações -intro: Colabore em muitos projetos gerenciando o acesso a projetos e dados e personalizando as configurações de sua organização. +title: Organizations and teams +shortTitle: Organizations +intro: Collaborate across many projects while managing access to projects and data and customizing settings for your organization. redirect_from: - - /articles/about-improved-organization-permissions/ + - /articles/about-improved-organization-permissions - /categories/setting-up-and-managing-organizations-and-teams - /github/setting-up-and-managing-organizations-and-teams versions: diff --git a/translations/pt-BR/content/organizations/keeping-your-organization-secure/index.md b/translations/pt-BR/content/organizations/keeping-your-organization-secure/index.md index c6de561f4f..01d2dd4043 100644 --- a/translations/pt-BR/content/organizations/keeping-your-organization-secure/index.md +++ b/translations/pt-BR/content/organizations/keeping-your-organization-secure/index.md @@ -1,8 +1,8 @@ --- -title: Proteger sua organização -intro: 'Os proprietários de organizações têm vários recursos disponíveis para ajudá-los a proteger seus projetos e dados. Se você for o proprietário de uma organização, você deverá revisar regularmente o log de auditoria da sua organização{% ifversion not ghae %}, status de 2FA do integrante{% endif %} e as configurações do aplicativo para garantir que não ocorra nenhuma atividade não autorizada ou maliciosa.' +title: Keeping your organization secure +intro: 'Organization owners have several features to help them keep their projects and data secure. If you''re the owner of an organization, you should regularly review your organization''s audit log{% ifversion not ghae %}, member 2FA status,{% endif %} and application settings to ensure that no unauthorized or malicious activity has occurred.' redirect_from: - - /articles/preventing-unauthorized-access-to-organization-information/ + - /articles/preventing-unauthorized-access-to-organization-information - /articles/keeping-your-organization-secure - /github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure versions: @@ -22,6 +22,6 @@ children: - /restricting-email-notifications-for-your-organization - /reviewing-the-audit-log-for-your-organization - /reviewing-your-organizations-installed-integrations -shortTitle: Segurança da organização +shortTitle: Organization security --- diff --git a/translations/pt-BR/content/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization.md b/translations/pt-BR/content/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization.md index f321b24d01..24691a59e2 100644 --- a/translations/pt-BR/content/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization.md +++ b/translations/pt-BR/content/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization.md @@ -1,6 +1,6 @@ --- -title: Exigir autenticação de dois fatores em sua organização -intro: 'Os proprietários da organização podem exigir que os {% ifversion fpt or ghec %}integrantes, colaboradores externos e gerentes de cobrança da organização{% else %}integrantes e colaboradores externos da organização{% endif %} habilitem a autenticação de dois fatores em suas contas pessoais para dificultar o acesso aos repositórios e às configurações da organização.' +title: Requiring two-factor authentication in your organization +intro: 'Organization owners can require {% ifversion fpt or ghec %}organization members, outside collaborators, and billing managers{% else %}organization members and outside collaborators{% endif %} to enable two-factor authentication for their personal accounts, making it harder for malicious actors to access an organization''s repositories and settings.' redirect_from: - /articles/requiring-two-factor-authentication-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization @@ -11,38 +11,38 @@ versions: topics: - Organizations - Teams -shortTitle: Exigir a 2FA na organização +shortTitle: Require 2FA in organization --- -## Sobre a autenticação de dois fatores para organizações +## About two-factor authentication for organizations -{% data reusables.two_fa.about-2fa %} Você pode exigir que todos os {% ifversion fpt or ghec %}integrantes, colaboradores externos e gerentes de cobrança {% else %}integrantes e colaboradores externos na sua organização{% endif %} habilitem a autenticação de dois fatores em {% data variables.product.product_name %}. Para obter mais informações sobre a autenticação de dois fatores, consulte "[Proteger a sua conta com autenticação de dois fatores (2FA)](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)". +{% data reusables.two_fa.about-2fa %} You can require all {% ifversion fpt or ghec %}members, outside collaborators, and billing managers{% else %}members and outside collaborators{% endif %} in your organization to enable two-factor authentication on {% data variables.product.product_name %}. For more information about two-factor authentication, see "[Securing your account with two-factor authentication (2FA)](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)." {% ifversion fpt or ghec %} -Você também pode exigir autenticação de dois fatores para as organizações de uma empresa. For more information, see "[Enforcing policies for security settings in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise)." +You can also require two-factor authentication for organizations in an enterprise. For more information, see "[Enforcing policies for security settings in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise)." {% endif %} {% warning %} -**Avisos:** +**Warnings:** -- Se você exigir o uso da autenticação de dois fatores na organização, os {% ifversion fpt or ghec %}integrantes, colaboradores externos e gerentes de cobrança{% else %}integrantes e colaboradores externos{% endif %} da sua organização (incluindo contas bot) que não usam a 2FA serão removidos da organização e perderão acesso aos repositórios dela. Eles também perderão acesso às bifurcações dos repositórios privados da organização. Se eles habilitarem a autenticação de dois fatores for habilitada na conta pessoal em até três meses após a remoção da organização, você poderá [restabelecer as configurações e os privilégios de acesso deles](/articles/reinstating-a-former-member-of-your-organization). -- Se um proprietário, integrante,{% ifversion fpt or ghec %} gerente de cobrança{% endif %} ou colaborador externo da organização desabilitar a 2FA em sua conta pessoal depois que você tiver habilitado a autenticação de dois fatores obrigatória, ele será automaticamente removido da organização. -- Se você for o único proprietário de uma organização que exige autenticação de dois fatores, não poderá desabilitar a 2FA na sua conta pessoal sem desabilitar a autenticação de dois fatores obrigatória na organização. +- When you require use of two-factor authentication for your organization, {% ifversion fpt or ghec %}members, outside collaborators, and billing managers{% else %}members and outside collaborators{% endif %} (including bot accounts) who do not use 2FA will be removed from the organization and lose access to its repositories. They will also lose access to their forks of the organization's private repositories. You can [reinstate their access privileges and settings](/articles/reinstating-a-former-member-of-your-organization) if they enable two-factor authentication for their personal account within three months of their removal from your organization. +- If an organization owner, member,{% ifversion fpt or ghec %} billing manager,{% endif %} or outside collaborator disables 2FA for their personal account after you've enabled required two-factor authentication, they will automatically be removed from the organization. +- If you're the sole owner of an organization that requires two-factor authentication, you won't be able to disable 2FA for your personal account without disabling required two-factor authentication for the organization. {% endwarning %} {% data reusables.two_fa.auth_methods_2fa %} -## Pré-requisitos +## Prerequisites -Antes de poder exigir que {% ifversion fpt or ghec %}os integrantes da organização, colaboradores externos e gerentes de cobrança{% else %}integrantes da organização e colaboradores externos{% endif %} usem a autenticação de dois fatores, você deve habilitá-la para a sua conta em {% data variables.product.product_name %}. Para obter mais informações, consulte "[Proteger sua conta com autenticação de dois fatores (2FA)](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)". +Before you can require {% ifversion fpt or ghec %}organization members, outside collaborators, and billing managers{% else %}organization members and outside collaborators{% endif %} to use two-factor authentication, you must enable two-factor authentication for your account on {% data variables.product.product_name %}. For more information, see "[Securing your account with two-factor authentication (2FA)](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)." -Antes de exigir o uso da autenticação de dois fatores, recomendamos que você notifique os {% ifversion fpt or ghec %}integrantes, colaboradores externos e gerentes de cobrança da organização{% else %}integrantes e colaboradores externos da organização{% endif %} e peça para eles configurarem a 2FA nas contas deles. Você pode ver se os integrantes e colaboradores externos já estão usando a 2FA. Para obter mais informações, consulte "[Ver se os usuários na organização têm a 2FA habilitada](/organizations/keeping-your-organization-secure/viewing-whether-users-in-your-organization-have-2fa-enabled)". +Before you require use of two-factor authentication, we recommend notifying {% ifversion fpt or ghec %}organization members, outside collaborators, and billing managers{% else %}organization members and outside collaborators{% endif %} and asking them to set up 2FA for their accounts. You can see if members and outside collaborators already use 2FA. For more information, see "[Viewing whether users in your organization have 2FA enabled](/organizations/keeping-your-organization-secure/viewing-whether-users-in-your-organization-have-2fa-enabled)." -## Exigir autenticação de dois fatores em sua organização +## Requiring two-factor authentication in your organization {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} @@ -50,32 +50,32 @@ Antes de exigir o uso da autenticação de dois fatores, recomendamos que você {% data reusables.organizations.require_two_factor_authentication %} {% data reusables.organizations.removed_outside_collaborators %} {% ifversion fpt or ghec %} -8. Se algum integrante ou colaborador externo for removido da organização, recomendamos o envio de um convite para restabelecer os privilégios e o acesso à organização que ele tinha anteriormente. O usuário precisa habilitar a autenticação de dois fatores para poder aceitar o convite. +8. If any members or outside collaborators are removed from the organization, we recommend sending them an invitation that can reinstate their former privileges and access to your organization. They must enable two-factor authentication before they can accept your invitation. {% endif %} -## Exibir pessoas removidas da organização +## Viewing people who were removed from your organization -Para exibir as pessoas que foram removidas automaticamente da organização por motivo de não conformidade quando você passou a exibir a autenticação de dois fatores, você pode [pesquisar o log de auditoria da organização](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization#accessing-the-audit-log) para consultar as pessoas removidas da organização. O evento do log de auditoria mostrará se uma pessoa foi removida por motivo de não conformidade com a 2FA. +To view people who were automatically removed from your organization for non-compliance when you required two-factor authentication, you can [search your organization's audit log](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization#accessing-the-audit-log) for people removed from your organization. The audit log event will show if a person was removed for 2FA non-compliance. -![Evento do log de auditoria mostrando um usuário removido por motivo de não conformidade com a 2FA](/assets/images/help/2fa/2fa_noncompliance_audit_log_search.png) +![Audit log event showing a user removed for 2FA non-compliance](/assets/images/help/2fa/2fa_noncompliance_audit_log_search.png) {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.audit_log.audit_log_sidebar_for_org_admins %} -4. Faça a pesquisa. Para pesquisar: - - Integrantes da organização removidos, use `action:org.remove_member` na pesquisa - - Colaboradores externos removidos, use `action:org.remove_outside_collaborator` na pesquisa{% ifversion fpt or ghec %} - - Gerentes de cobrança removidos, use `action:org.remove_billing_manager`na pesquisa{% endif %} +4. Enter your search query. To search for: + - Organization members removed, use `action:org.remove_member` in your search query + - Outside collaborators removed, use `action:org.remove_outside_collaborator` in your search query{% ifversion fpt or ghec %} + - Billing managers removed, use `action:org.remove_billing_manager`in your search query{% endif %} - Você também pode exibir as pessoas que foram removidas da organização usando um [intervalo de tempo](/articles/reviewing-the-audit-log-for-your-organization/#search-based-on-time-of-action) na pesquisa. + You can also view people who were removed from your organization by using a [time frame](/articles/reviewing-the-audit-log-for-your-organization/#search-based-on-time-of-action) in your search. -## Ajudar integrantes e colaboradores externos removidos a voltarem à organização +## Helping removed members and outside collaborators rejoin your organization -Se algum integrante ou colaborador externo for removido da organização quando você habilitar o uso obrigatório da autenticação de dois fatores, o integrante/colaborador receberá um e-mail informando que foi removido. Para solicitar acesso à sua organização, o integrante/colaborador deverá ativar a 2FA na conta pessoal e entrar em contato com o proprietário da organização. +If any members or outside collaborators are removed from the organization when you enable required use of two-factor authentication, they'll receive an email notifying them that they've been removed. They should then enable 2FA for their personal account, and contact an organization owner to request access to your organization. -## Leia mais +## Further reading -- "[Ver se os usuários na organização têm a 2FA habilitada](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)" -- "[Proteger sua conta com autenticação de dois fatores (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa)" -- "[Restabelecer ex-integrantes da organização](/articles/reinstating-a-former-member-of-your-organization)" -- "[Restabelecer o acesso de um ex-colaborador externo à organização](/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization)" +- "[Viewing whether users in your organization have 2FA enabled](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)" +- "[Securing your account with two-factor authentication (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa)" +- "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)" +- "[Reinstating a former outside collaborator's access to your organization](/articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization)" diff --git a/translations/pt-BR/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md b/translations/pt-BR/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md index 35bd5021fd..609f0b67d1 100644 --- a/translations/pt-BR/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md +++ b/translations/pt-BR/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md @@ -1,10 +1,10 @@ --- -title: Restringir notificações de e-mail para sua organização -intro: 'Para evitar que as informações da organização sejam divulgadas para contas pessoais de e-mail, você pode restringir domínios em que os integrantes podem receber notificações de e-mail sobre a atividade da organização.' +title: Restricting email notifications for your organization +intro: 'To prevent organization information from leaking into personal email accounts, you can restrict the domains where members can receive email notifications about organization activity.' product: '{% data reusables.gated-features.restrict-email-domain %}' permissions: Organization owners can restrict email notifications for an organization. redirect_from: - - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain/ + - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain - /articles/restricting-email-notifications-to-an-approved-domain - /github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain - /organizations/keeping-your-organization-secure/restricting-email-notifications-to-an-approved-domain @@ -18,29 +18,29 @@ topics: - Notifications - Organizations - Policy -shortTitle: Restringir notificações de e-mail +shortTitle: Restrict email notifications --- -## Sobre restrições de e-mail +## About email restrictions -Quando as notificações de e-mail restritas são habilitadas em uma organização, os integrantes só podem usar um endereço de e-mail associado a um domínio verificado ou aprovado para receber as notificações de e-mail sobre a atividade da organização. Para obter mais informações, consulte "[Verificar ou aprovar um domínio para a sua organização](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)". +When restricted email notifications are enabled in an organization, members can only use an email address associated with a verified or approved domain to receive email notifications about organization activity. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.enterprise-accounts.approved-domains-beta-note %} {% data reusables.notifications.email-restrictions-verification %} -Os colaboradores externos não estão sujeitos às restrições de notificações por e-mail para domínios verificados ou aprovados. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +Outside collaborators are not subject to restrictions on email notifications for verified or approved domains. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." -Se sua organização pertence a uma conta corporativa os integrantes da organização poderão receber notificações de qualquer domínio verificado ou aprovado para a conta corporativa, Além de quaisquer domínios verificados ou aprovados para a organização. For more information, see "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)." +If your organization is owned by an enterprise account, organization members will be able to receive notifications from any domains verified or approved for the enterprise account, in addition to any domains verified or approved for the organization. For more information, see "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)." -## Restringir notificações de e-mail +## Restricting email notifications -Antes de restringir as notificações de e-mail para a sua organização, você deve verificar ou aprovar pelo menos um domínio para a organização ou o proprietário da empresa deve ter verificado ou aprovado pelo menos um domínio para a conta corporativa. +Before you can restrict email notifications for your organization, you must verify or approve at least one domain for the organization, or an enterprise owner must have verified or approved at least one domain for the enterprise account. -Para obter mais informações sobre verificações e aprovações de domínios para uma organização, consulte "[Verificar ou aprovar um domínio para a sua organização](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)". +For more information about verifying and approving domains for an organization, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.verified-domains %} {% data reusables.organizations.restrict-email-notifications %} -6. Clique em **Salvar**. +6. Click **Save**. diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/adding-github-app-managers-in-your-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/adding-github-app-managers-in-your-organization.md index 12bb6485ea..e12220689a 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/adding-github-app-managers-in-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/adding-github-app-managers-in-your-organization.md @@ -1,6 +1,6 @@ --- -title: Adicionar gerentes do aplicativo GitHub em sua organização -intro: 'Os proprietários da organização podem conceder aos usuários a capacidade de gerenciar alguns ou todos os {% data variables.product.prodname_github_apps %} pertencentes à organização.' +title: Adding GitHub App managers in your organization +intro: 'Organization owners can grant users the ability to manage some or all {% data variables.product.prodname_github_apps %} owned by the organization.' redirect_from: - /articles/adding-github-app-managers-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/adding-github-app-managers-in-your-organization @@ -12,29 +12,32 @@ versions: topics: - Organizations - Teams -shortTitle: Adicionar gerentes do aplicativo GitHub +shortTitle: Add GitHub App managers --- For more information about {% data variables.product.prodname_github_app %} manager permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#github-app-managers)." -## Dar a alguém a capacidade de gerenciar todos os {% data variables.product.prodname_github_apps %} pertencentes à organização +## Giving someone the ability to manage all {% data variables.product.prodname_github_apps %} owned by the organization {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.github-apps-settings-sidebar %} -1. Em "Management" (Gerenciamento), digite o nome de usuário da pessoa que deseja designar como um gerente do {% data variables.product.prodname_github_app %} na organização e clique em **Grant** (Conceder). ![Adicionar um gerente do {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/add-github-app-manager.png) +1. Under "Management", type the username of the person you want to designate as a {% data variables.product.prodname_github_app %} manager in the organization, and click **Grant**. +![Add a {% data variables.product.prodname_github_app %} manager](/assets/images/help/organizations/add-github-app-manager.png) -## Dar a um indivíduo a capacidade de gerenciar um {% data variables.product.prodname_github_app %} individual +## Giving someone the ability to manage an individual {% data variables.product.prodname_github_app %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.github-apps-settings-sidebar %} -1. Em "{% data variables.product.prodname_github_apps %}", clique no avatar do aplicativo ao qual você deseja adicionar um gerente de {% data variables.product.prodname_github_app %}. ![Selecione {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/select-github-app.png) +1. Under "{% data variables.product.prodname_github_apps %}", click on the avatar of the app you'd like to add a {% data variables.product.prodname_github_app %} manager for. +![Select {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/select-github-app.png) {% data reusables.organizations.app-managers-settings-sidebar %} -1. Em "App managers" (Gerentes de app), digite o nome de usuário da pessoa que deseja designar como gerente do aplicativo GitHub e clique em **Grant** (Conceder). ![Adicionar um gerente do {% data variables.product.prodname_github_app %} para um app específico](/assets/images/help/organizations/add-github-app-manager-for-app.png) +1. Under "App managers", type the username of the person you want to designate as a GitHub App manager for the app, and click **Grant**. +![Add a {% data variables.product.prodname_github_app %} manager for a specific app](/assets/images/help/organizations/add-github-app-manager-for-app.png) {% ifversion fpt or ghec %} -## Leia mais +## Further reading -- "[Sobre o {% data variables.product.prodname_dotcom %} Marketplace](/articles/about-github-marketplace/)" +- "[About {% data variables.product.prodname_dotcom %} Marketplace](/articles/about-github-marketplace/)" {% endif %} diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/removing-github-app-managers-from-your-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/removing-github-app-managers-from-your-organization.md index f86e686a3c..58f09cc972 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/removing-github-app-managers-from-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-apps/removing-github-app-managers-from-your-organization.md @@ -1,6 +1,6 @@ --- -title: Remover gerentes do aplicativo GitHub da organização -intro: 'Os proprietários da organização podem revogar as permissões de gerente do {% data variables.product.prodname_github_app %} concedidas a um integrante da organização.' +title: Removing GitHub App managers from your organization +intro: 'Organization owners can revoke {% data variables.product.prodname_github_app %} manager permissions that were granted to a member of the organization.' redirect_from: - /articles/removing-github-app-managers-from-your-organization - /github/setting-up-and-managing-organizations-and-teams/removing-github-app-managers-from-your-organization @@ -12,29 +12,32 @@ versions: topics: - Organizations - Teams -shortTitle: Remover gerentes do aplicativo GitHub +shortTitle: Remove GitHub App managers --- For more information about {% data variables.product.prodname_github_app %} manager permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#github-app-managers)." -## Remover as permissões de gerente do {% data variables.product.prodname_github_app %} em toda a organização +## Removing a {% data variables.product.prodname_github_app %} manager's permissions for the entire organization {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.github-apps-settings-sidebar %} -1. Em "Management" (Gerenciamento), encontre o nome de usuário da pessoa da qual deseja remover as permissões de gerente do {% data variables.product.prodname_github_app %} e clique em **Revoke** (Revogar). ![Revogue as permissões de gerente do {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/github-app-manager-revoke-permissions.png) +1. Under "Management", find the username of the person you want to remove {% data variables.product.prodname_github_app %} manager permissions from, and click **Revoke**. +![Revoke {% data variables.product.prodname_github_app %} manager permissions](/assets/images/help/organizations/github-app-manager-revoke-permissions.png) -## Remover as permissões de gerente do {% data variables.product.prodname_github_app %} de um {% data variables.product.prodname_github_app %} individual +## Removing a {% data variables.product.prodname_github_app %} manager's permissions for an individual {% data variables.product.prodname_github_app %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.github-apps-settings-sidebar %} -1. Em "{% data variables.product.prodname_github_apps %}", clique no avatar do aplicativo do qual você deseja remover um gerente de {% data variables.product.prodname_github_app %}. ![Selecione {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/select-github-app.png) +1. Under "{% data variables.product.prodname_github_apps %}", click on the avatar of the app you'd like to remove a {% data variables.product.prodname_github_app %} manager from. +![Select {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/select-github-app.png) {% data reusables.organizations.app-managers-settings-sidebar %} -1. Em "App managers" (Gerentes do app), encontre o nome de usuário da pessoa da qual deseja remover as permissões de gerente do {% data variables.product.prodname_github_app %} e clique em **Revoke** (Revogar). ![Revogue as permissões de gerente do {% data variables.product.prodname_github_app %}](/assets/images/help/organizations/github-app-manager-revoke-permissions-individual-app.png) +1. Under "App managers", find the username of the person you want to remove {% data variables.product.prodname_github_app %} manager permissions from, and click **Revoke**. +![Revoke {% data variables.product.prodname_github_app %} manager permissions](/assets/images/help/organizations/github-app-manager-revoke-permissions-individual-app.png) {% ifversion fpt or ghec %} -## Leia mais +## Further reading -- "[Sobre o {% data variables.product.prodname_dotcom %} Marketplace](/articles/about-github-marketplace/)" +- "[About {% data variables.product.prodname_dotcom %} Marketplace](/articles/about-github-marketplace/)" {% endif %} diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md index e76704537c..3ea8d68c5d 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md @@ -1,6 +1,6 @@ --- -title: Adicionar colaboradores externos a repositórios em sua organização -intro: 'Um *colaborador externo* é uma pessoa que não é explicitamente um integrante da sua organização, mas que tem permissões de Gravação, Leitura ou de Administrador para um ou vários repositórios da organização.' +title: Adding outside collaborators to repositories in your organization +intro: 'An *outside collaborator* is a person who isn''t explicitly a member of your organization, but who has Read, Write, or Admin permissions to one or more repositories in your organization.' redirect_from: - /articles/adding-outside-collaborators-to-repositories-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/adding-outside-collaborators-to-repositories-in-your-organization @@ -12,41 +12,46 @@ versions: topics: - Organizations - Teams -shortTitle: Adicionar colaborador externo +shortTitle: Add outside collaborator permissions: People with admin access to a repository can add an outside collaborator to the repository. --- -## Sobre colaboradores externos +## About outside collaborators {% data reusables.organizations.outside-collaborators-use-seats %} -An organization owner can restrict the ability to invite collaborators. Para obter mais informações, consulte "[Configurar permissões para adicionar colaboradores externos](/articles/setting-permissions-for-adding-outside-collaborators)". +An organization owner can restrict the ability to invite collaborators. For more information, see "[Setting permissions for adding outside collaborators](/articles/setting-permissions-for-adding-outside-collaborators)." {% ifversion ghes %} -Before you can add someone as an outside collaborator on a repository, the person must have a user account on {% data variables.product.product_location %}. If your enterprise uses an external authentication system such as SAML or LDAP, the person you want to add must sign in through that system to create an account. If the person does not have access to the authentication system and built-in authentication is enabled for your enterprise, a site admin can create a user account for the person. Para obter mais informações, consulte "[Usar autenticação integrada](/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-built-in-authentication#inviting-users)". +Before you can add someone as an outside collaborator on a repository, the person must have a user account on {% data variables.product.product_location %}. If your enterprise uses an external authentication system such as SAML or LDAP, the person you want to add must sign in through that system to create an account. If the person does not have access to the authentication system and built-in authentication is enabled for your enterprise, a site admin can create a user account for the person. For more information, see "[Using built-in authentication](/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-built-in-authentication#inviting-users)." {% endif %} {% ifversion not ghae %} -Se sua organização [exigir que integrantes e colaboradores externos usem a autenticação de dois fatores](/articles/requiring-two-factor-authentication-in-your-organization), eles deverão habilitar a autenticação de dois fatores antes de aceitar seu convite para colaborar no repositório de uma organização. +If your organization [requires members and outside collaborators to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization), they must enable two-factor authentication before they can accept your invitation to collaborate on an organization repository. {% endif %} {% data reusables.organizations.outside_collaborator_forks %} {% ifversion fpt %} -Para apoiar ainda mais as habilidades de colaboração da sua equipe, você pode fazer a atualização para {% data variables.product.prodname_ghe_cloud %}, que inclui funcionalidades como branches protegidos e proprietários de códigos em repositórios privados. {% data reusables.enterprise.link-to-ghec-trial %} +To further support your team's collaboration abilities, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes features like protected branches and code owners on private repositories. {% data reusables.enterprise.link-to-ghec-trial %} {% endif %} -## Adicionando colaboradores externos a um repositório +## Adding outside collaborators to a repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% ifversion fpt or ghec %} {% data reusables.repositories.navigate-to-manage-access %} {% data reusables.organizations.invite-teams-or-people %} -5. No campo de pesquisa, comece a digitar o nome da pessoa que deseja convidar e, em seguida, clique em um nome na lista de correspondências. ![Campo de pesquisa para digitar o nome de uma pessoa para convidar para o repositório](/assets/images/help/repository/manage-access-invite-search-field.png) -6. Em "Escolher uma função", selecione as permissões a serem concedidas à pessoa e, em seguida, clique em **Adicionar NOME ao REPOSITÓRIO**. ![Selecionar permissões para a pessoa](/assets/images/help/repository/manage-access-invite-choose-role-add.png) +5. In the search field, start typing the name of person you want to invite, then click a name in the list of matches. + ![Search field for typing the name of a person to invite to the repository](/assets/images/help/repository/manage-access-invite-search-field.png) +6. Under "Choose a role", select the permissions to grant to the person, then click **Add NAME to REPOSITORY**. + ![Selecting permissions for the person](/assets/images/help/repository/manage-access-invite-choose-role-add.png) {% else %} -5. Na barra lateral esquerda, clique em **Collaborators & teams** (Colaboradores e equipes). ![Barra lateral de configurações do repositório com destaque para Collaborators & teams (Colaboradores e equipes)](/assets/images/help/repository/org-repo-settings-collaborators-and-teams.png) -6. Em "Collaborators" (Colaboradores), digite o nome da pessoa à qual deseja conceder acesso ao repositório e clique em **Add collaborator** (Adicionar colaborador). ![A seção Collaborators (Colaboradores) com o nome de usuário Octocat inserido no campo de pesquisa](/assets/images/help/repository/org-repo-collaborators-find-name.png) -7. Ao lado do nome do novo colaborador, escolha o nível de permissão apropriado: *Gravação*, *Leitura* ou *Administrador*. ![O selecionador de permissões do repositório](/assets/images/help/repository/org-repo-collaborators-choose-permissions.png) +5. In the left sidebar, click **Collaborators & teams**. + ![Repository settings sidebar with Collaborators & teams highlighted](/assets/images/help/repository/org-repo-settings-collaborators-and-teams.png) +6. Under "Collaborators", type the name of the person you'd like to give access to the repository, then click **Add collaborator**. +![The Collaborators section with the Octocat's username entered in the search field](/assets/images/help/repository/org-repo-collaborators-find-name.png) +7. Next to the new collaborator's name, choose the appropriate permission level: *Write*, *Read*, or *Admin*. +![The repository permissions picker](/assets/images/help/repository/org-repo-collaborators-choose-permissions.png) {% endif %} diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator.md index 0cab620b8e..3440ab701d 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-organization-member-to-an-outside-collaborator.md @@ -1,6 +1,6 @@ --- -title: Converter um integrante da organização em colaborador externo -intro: 'Se um integrante atual da organização precisar de acesso apenas a determinados repositórios, como consultores ou funcionários temporários, você poderá convertê-lo em um *colaborador externo*.' +title: Converting an organization member to an outside collaborator +intro: 'If a current member of your organization only needs access to certain repositories, such as consultants or temporary employees, you can convert them to an *outside collaborator*.' redirect_from: - /articles/converting-an-organization-member-to-an-outside-collaborator - /github/setting-up-and-managing-organizations-and-teams/converting-an-organization-member-to-an-outside-collaborator @@ -12,35 +12,38 @@ versions: topics: - Organizations - Teams -shortTitle: Converter integrante em colaborador +shortTitle: Convert member to collaborator --- -{% data reusables.organizations.owners-and-admins-can %} converter integrantes da organização em colaboradores externos. +{% data reusables.organizations.owners-and-admins-can %} convert organization members into outside collaborators. {% data reusables.organizations.outside-collaborators-use-seats %} {% data reusables.organizations.outside_collaborator_forks %} -Após conversão de um integrante da organização em um colaborador externo, ele só terá acesso aos repositórios que sua associação à equipe atual permitir. A pessoa não será mais um integrante explícito da organização e não poderá mais: +After converting an organization member to an outside collaborator, they'll only have access to the repositories that their current team membership allows. The person will no longer be an explicit member of the organization, and will no longer be able to: -- Criar equipes -- Ver todos os integrantes e equipes da organização -- @mencionar qualquer equipe visível -- Seja um mantenedor de equipe +- Create teams +- See all organization members and teams +- @mention any visible team +- Be a team maintainer For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -Recomendamos rever o acesso dos membros da organização aos repositórios para garantir que seu o acesso seja como você espera. Para obter mais informações, consulte "[Gerenciar o acesso de um indivíduo ao repositório de uma organização](/articles/managing-an-individual-s-access-to-an-organization-repository)". +We recommend reviewing the organization member's access to repositories to ensure their access is as you expect. For more information, see "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)." -Na conversão de um integrante da organização em um colaborador externo, os privilégios dele como integrante da organização ficam salvos por três meses para que seja possível restaurar os privilégios de associação se você{% ifversion fpt or ghec %}convidá-lo para reingressar{% else %} adicioná-lo de volta{% endif %} na organização dentro desse período. Para obter mais informações, consulte "[Restabelecer ex-integrantes da organização](/articles/reinstating-a-former-member-of-your-organization)". +When you convert an organization member to an outside collaborator, their privileges as organization members are saved for three months so that you can restore their membership privileges if you{% ifversion fpt or ghec %} invite them to rejoin{% else %} add them back to{% endif %} your organization within that time frame. For more information, see "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)." {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.people %} -4. Selecione a(s) pessoa(s) que deseja converter em colaborador(es) externo(s). ![Lista de integrantes com dois integrantes selecionados](/assets/images/help/teams/list-of-members-selected-bulk.png) -5. Acima da lista de integrantes, use o menu suspenso e clique em **Convert to outside collaborator** (Converter em colaborador externo). ![Menu suspenso com opção para converter integrantes em colaboradores externos](/assets/images/help/teams/user-bulk-management-options.png) -6. Leia as informações sobre como converter integrantes em colaboradores externos e clique em **Convert to outside collaborator** (Converter em colaborador externo). ![Informações sobre permissões de colaboradores externos e botão Convert to outside collaborators (Converter em colaboradores externos)](/assets/images/help/teams/confirm-outside-collaborator-bulk.png) +4. Select the person or people you'd like to convert to outside collaborators. + ![List of members with two members selected](/assets/images/help/teams/list-of-members-selected-bulk.png) +5. Above the list of members, use the drop-down menu and click **Convert to outside collaborator**. + ![Drop-down menu with option to convert members to outside collaborators](/assets/images/help/teams/user-bulk-management-options.png) +6. Read the information about converting members to outside collaborators, then click **Convert to outside collaborator**. + ![Information on outside collaborators permissions and Convert to outside collaborators button](/assets/images/help/teams/confirm-outside-collaborator-bulk.png) -## Leia mais +## Further reading -- "[Adicionar colaboradores externos a repositórios na sua organização](/articles/adding-outside-collaborators-to-repositories-in-your-organization)" -- "[Remover um colaborador externo de um repositório da organização](/articles/removing-an-outside-collaborator-from-an-organization-repository)" -- "[Converter um colaborador externo em um integrante da organização](/articles/converting-an-outside-collaborator-to-an-organization-member)" +- "[Adding outside collaborators to repositories in your organization](/articles/adding-outside-collaborators-to-repositories-in-your-organization)" +- "[Removing an outside collaborator from an organization repository](/articles/removing-an-outside-collaborator-from-an-organization-repository)" +- "[Converting an outside collaborator to an organization member](/articles/converting-an-outside-collaborator-to-an-organization-member)" diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-outside-collaborator-to-an-organization-member.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-outside-collaborator-to-an-organization-member.md index e1b9c3d05a..17c4566565 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-outside-collaborator-to-an-organization-member.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/converting-an-outside-collaborator-to-an-organization-member.md @@ -1,6 +1,6 @@ --- -title: Remover um colaborador externo em integrante da organização -intro: 'Se desejar fornecer a um colaborador externo nos repositórios da sua organização permissões mais amplas dentro da organização, você poderá {% ifversion fpt or ghec %}convidá-lo a se tornar um integrante{% else %}torná-lo um integrante{% endif %} da organização.' +title: Converting an outside collaborator to an organization member +intro: 'If you would like to give an outside collaborator on your organization''s repositories broader permissions within your organization, you can {% ifversion fpt or ghec %}invite them to become a member of{% else %}make them a member of{% endif %} the organization.' redirect_from: - /articles/converting-an-outside-collaborator-to-an-organization-member - /github/setting-up-and-managing-organizations-and-teams/converting-an-outside-collaborator-to-an-organization-member @@ -13,11 +13,10 @@ permissions: 'Organization owners can {% ifversion fpt or ghec %}invite users to topics: - Organizations - Teams -shortTitle: Converter colaborador em integrante +shortTitle: Convert collaborator to member --- - {% ifversion fpt or ghec %} -Se a organização tiver uma assinatura paga por usuário, ela deverá ter uma licença não utilizada disponível para você poder convidar um integrante para participar da organização ou restabelecer um ex-integrante da organização. Para obter mais informações, consulte "[Sobre preços por usuário](/articles/about-per-user-pricing)". {% data reusables.organizations.org-invite-expiration %}{% endif %} +If your organization is on 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-expiration %}{% endif %} {% ifversion not ghae %} If your organization [requires members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization), users {% ifversion fpt or ghec %}you invite must [enable two-factor authentication](/articles/securing-your-account-with-two-factor-authentication-2fa) before they can accept the invitation.{% else %}must [enable two-factor authentication](/articles/securing-your-account-with-two-factor-authentication-2fa) before you can add them to the organization.{% endif %} @@ -28,9 +27,9 @@ If your organization [requires members to use two-factor authentication](/articl {% data reusables.organizations.people %} {% data reusables.organizations.people_tab_outside_collaborators %} {% ifversion fpt or ghec %} -5. À direita do nome do colaborador externo que você deseja que se torne integrante, use o menu suspenso {% octicon "gear" aria-label="The gear icon" %} e clique em **Convidar para a organização**.![Convidar colaboradores externos para a organização](/assets/images/help/organizations/invite_outside_collaborator_to_organization.png) +5. To the right of the name of the outside collaborator you want to become a member, use the {% octicon "gear" aria-label="The gear icon" %} drop-down menu and click **Invite to organization**.![Invite outside collaborators to organization](/assets/images/help/organizations/invite_outside_collaborator_to_organization.png) {% else %} -5. À direita do nome do colaborador externo que você deseja que se torne integrante, clique em **Invite to organization** (Convidar para a organização).![Convidar colaboradores externos para a organização](/assets/images/enterprise/orgs-and-teams/invite_outside_collabs_to_org.png) +5. To the right of the name of the outside collaborator you want to become a member, click **Invite to organization**.![Invite outside collaborators to organization](/assets/images/enterprise/orgs-and-teams/invite_outside_collabs_to_org.png) {% endif %} {% data reusables.organizations.choose-to-restore-privileges %} {% data reusables.organizations.choose-user-role-send-invitation %} @@ -38,6 +37,6 @@ If your organization [requires members to use two-factor authentication](/articl {% data reusables.organizations.user_must_accept_invite_email %} {% data reusables.organizations.cancel_org_invite %} {% endif %} -## Leia mais +## Further reading -- "[Converter um integrante da organização em colaborador externo](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/index.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/index.md index 4e07ea308d..94a30b7368 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/index.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/index.md @@ -1,8 +1,8 @@ --- -title: Gerenciar acessos aos repositórios da organização -intro: Proprietários da organização podem gerenciar acessos individuais e de equipes aos repositórios da organização. Mantenedores de equipes também podem gerenciar o acesso ao repositório da equipe. +title: Managing access to your organization's repositories +intro: Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access. redirect_from: - - /articles/permission-levels-for-an-organization-repository/ + - /articles/permission-levels-for-an-organization-repository - /articles/managing-access-to-your-organization-s-repositories - /articles/managing-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories @@ -26,6 +26,6 @@ children: - /converting-an-organization-member-to-an-outside-collaborator - /converting-an-outside-collaborator-to-an-organization-member - /reinstating-a-former-outside-collaborators-access-to-your-organization -shortTitle: Gerenciar acessos aos repositórios +shortTitle: Manage access to repositories --- diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md index 16e61f2abb..4e2c599dd2 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: Gerenciar o acesso de um indivíduo a um repositório da organização -intro: Você pode gerenciar o acesso de uma pessoa ao repositório de sua organização. +title: Managing an individual's access to an organization repository +intro: You can manage a person's access to a repository owned by your organization. redirect_from: - - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program/ + - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program - /articles/managing-an-individual-s-access-to-an-organization-repository - /articles/managing-an-individuals-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository @@ -14,13 +14,13 @@ versions: topics: - Organizations - Teams -shortTitle: Gerenciar acesso individual +shortTitle: Manage individual access permissions: People with admin access to a repository can manage access to the repository. --- ## About access to organization repositories -Ao remover um colaborador de um repositório de sua organização, o colaborador perde os acessos de leitura e gravação no repositório. Caso o repositório seja privado e o colaborador o tenha bifurcado, a bifurcação também é excluída, mas o colaborador ainda manterá quaisquer clones locais de seu repositório. +When you remove a collaborator from a repository in your organization, the collaborator loses read and write access to the repository. If the repository is private and the collaborator has forked the repository, then their fork is also deleted, but the collaborator will still retain any local clones of your repository. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -30,20 +30,25 @@ Ao remover um colaborador de um repositório de sua organização, o colaborador {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-manage-access %} {% data reusables.organizations.invite-teams-or-people %} -5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. ![Campo de pesquisa para digitar o nome de uma equipe ou pessoa para convidar ao repositório](/assets/images/help/repository/manage-access-invite-search-field.png) -6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. ![Selecionando permissões para a equipe ou pessoa](/assets/images/help/repository/manage-access-invite-choose-role-add.png) +5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. + ![Search field for typing the name of a team or person to invite to the repository](/assets/images/help/repository/manage-access-invite-search-field.png) +6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. + ![Selecting permissions for the team or person](/assets/images/help/repository/manage-access-invite-choose-role-add.png) -## Gerenciar o acesso de um indivíduo a um repositório da organização +## Managing an individual's access to an organization repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.people %} -4. Cloque em **Members** (Integrantes) ou **Outside collaborators** (Colaboradores externos) para gerenciar pessoas com tipos diferentes de acessos. ![Botão para invite (convidar) members (colaboradores) ou outside collaborators (colaboradores externos) para uma organização](/assets/images/help/organizations/select-outside-collaborators.png) -5. À direita do nome do colaborador que deseja remover, use o menu suspenso {% octicon "gear" aria-label="The Settings gear" %} e clique em **Manage** (Gerenciar). ![Link para manage access (gerenciar acesso)](/assets/images/help/organizations/member-manage-access.png) -6. Na página "Manage access" (Gerenciar acesso), ao lado do repositório clique em **Manage access** (Gerenciar acesso). ![Botão Manage access (Gerenciar acesso) em um repositório](/assets/images/help/organizations/repository-manage-access.png) -7. Revise o acesso da pessoa em determinado repositório, por exemplo, se a pessoa é um colaborador ou tem acesso ao repositório como integrante de equipe. ![Matriz de acesso a repositório para o usuário](/assets/images/help/organizations/repository-access-matrix-for-user.png) +4. Click either **Members** or **Outside collaborators** to manage people with different types of access. ![Button to invite members or outside collaborators to an organization](/assets/images/help/organizations/select-outside-collaborators.png) +5. To the right of the name of the person you'd like to manage, use the {% octicon "gear" aria-label="The Settings gear" %} drop-down menu, and click **Manage**. + ![The manage access link](/assets/images/help/organizations/member-manage-access.png) +6. On the "Manage access" page, next to the repository, click **Manage access**. +![Manage access button for a repository](/assets/images/help/organizations/repository-manage-access.png) +7. Review the person's access to a given repository, such as whether they're a collaborator or have access to the repository via team membership. +![Repository access matrix for the user](/assets/images/help/organizations/repository-access-matrix-for-user.png) -## Leia mais +## Further reading -{% ifversion fpt or ghec %}- "[Restringir interações no repositório](/articles/limiting-interactions-with-your-repository)"{% endif %} +{% ifversion fpt or ghec %}- "[Limiting interactions with your repository](/articles/limiting-interactions-with-your-repository)"{% endif %} - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md index e39b860b25..51d2c0a079 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: Gerenciar o acesso da equipe em um repositório da organização -intro: Você pode conceder e remover o acesso da equipe a um repositório ou mudar o nível de permissão dela no repositório. +title: Managing team access to an organization repository +intro: 'You can give a team access to a repository, remove a team''s access to a repository, or change a team''s permission level for a repository.' redirect_from: - - /articles/managing-team-access-to-an-organization-repository-early-access-program/ + - /articles/managing-team-access-to-an-organization-repository-early-access-program - /articles/managing-team-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository versions: @@ -13,32 +13,35 @@ versions: topics: - Organizations - Teams -shortTitle: Gerenciar acesso de equipe +shortTitle: Manage team access --- -Pessoas com acesso de administrador a um repositório podem gerenciar o acesso de equipes ao repositório. Mantenedores de equipes podem remover o acesso de uma equipe a um repositório. +People with admin access to a repository can manage team access to the repository. Team maintainers can remove a team's access to a repository. {% warning %} -**Avisos:** -- Você pode alterar os níveis de permissões de uma equipe se a equipe tiver acesso direto a um repositório. Se o acesso da equipe ao repositório é herança de uma equipe principal, você deve alterar o acesso da equipe principal ao repositório. -- Se você adicionar ou remover acesso de uma equipe principal ao repositório, cada uma das equipes secundárias da equipe principal também receberá ou perderá o acesso ao repositório. Para obter mais informações, consulte "[Sobre equipes](/articles/about-teams)". +**Warnings:** +- You can change a team's permission level if the team has direct access to a repository. If the team's access to the repository is inherited from a parent team, you must change the parent team's access to the repository. +- If you add or remove repository access for a parent team, each of that parent's child teams will also receive or lose access to the repository. For more information, see "[About teams](/articles/about-teams)." {% endwarning %} -## Conceder a uma equipe acesso a um repositório +## Giving a team access to a repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. Acima da lista de repositórios, clique em **Add repository** (Adicionar repositório). ![Botão Add repository (Adicionar repositório)](/assets/images/help/organizations/add-repositories-button.png) -6. Digite o nome de um repositório e clique em **Add repository to team** (Adicionar repositório a uma equipe). ![Campo de pesquisa Repository (Repositório)](/assets/images/help/organizations/team-repositories-add.png) -7. Como opção, use o menu suspenso à direita do nome do repositório e escolha um nível de permissão diferente para a equipe. ![Menu suspenso Repository access level (Nível de acesso ao repositório)](/assets/images/help/organizations/team-repositories-change-permission-level.png) +5. Above the list of repositories, click **Add repository**. + ![The Add repository button](/assets/images/help/organizations/add-repositories-button.png) +6. Type the name of a repository, then click **Add repository to team**. + ![Repository search field](/assets/images/help/organizations/team-repositories-add.png) +7. Optionally, to the right of the repository name, use the drop-down menu and choose a different permission level for the team. + ![Repository access level dropdown](/assets/images/help/organizations/team-repositories-change-permission-level.png) -## Remover acesso de uma equipe a um repositório +## Removing a team's access to a repository -Você pode remover o acesso de uma equipe a um repositório se a equipe tiver acesso direto a ele. Se o acesso da equipe ao repositório é herdado de uma equipe principal, você deve remover o repositório da equipe principal para remover o repositório das equipes secundárias. +You can remove a team's access to a repository if the team has direct access to a repository. If a team's access to the repository is inherited from a parent team, you must remove the repository from the parent team in order to remove the repository from child teams. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -46,10 +49,13 @@ Você pode remover o acesso de uma equipe a um repositório se a equipe tiver ac {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. Selecione o repositório ou repositórios que deseja remover da equipe. ![Lista de repositórios de equipes com as caixas de seleção para alguns repositórios selecionadas](/assets/images/help/teams/select-team-repositories-bulk.png) -6. Acesse o menu suspenso acima da lista de repositórios e clique em **Remove from team** (Remover da equipe). ![Menu suspenso com a opção para Remove a repository from a team (Remover um repositório de uma equipe)](/assets/images/help/teams/remove-team-repo-dropdown.png) -7. Verifique o repositório ou repositórios que serão removidos da equipe e clique em **Remove repositories** (Remover repositórios). ![Caixa modal com uma lista de repositórios que a equipe não terá mais acesso](/assets/images/help/teams/confirm-remove-team-repos.png) +5. Select the repository or repositories you'd like to remove from the team. + ![List of team repositories with the checkboxes for some repositories selected](/assets/images/help/teams/select-team-repositories-bulk.png) +6. Above the list of repositories, use the drop-down menu, and click **Remove from team**. + ![Drop-down menu with the option to remove a repository from a team](/assets/images/help/teams/remove-team-repo-dropdown.png) +7. Review the repository or repositories that will be removed from the team, then click **Remove repositories**. + ![Modal box with a list of repositories that the team will no longer have access to](/assets/images/help/teams/confirm-remove-team-repos.png) -## Leia mais +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md index a68f9d50ce..2e0fb1830b 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md @@ -1,6 +1,6 @@ --- -title: Restabelecer o acesso de um ex-colaborador externo à organização -intro: 'É possível restabelecer as permissões de acesso de um ex-colaborador externo para repositórios, forks e configurações da organização.' +title: Reinstating a former outside collaborator's access to your organization +intro: 'You can reinstate a former outside collaborator''s access permissions for organization repositories, forks, and settings.' redirect_from: - /articles/reinstating-a-former-outside-collaborator-s-access-to-your-organization - /articles/reinstating-a-former-outside-collaborators-access-to-your-organization @@ -13,29 +13,29 @@ versions: topics: - Organizations - Teams -shortTitle: Restabelecer colaborador +shortTitle: Reinstate collaborator --- -Quando o acesso de um colaborador externo aos repositórios privados da sua organização é removido, os privilégios e configurações de acesso do usuário são salvos por três meses. You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame. +When an outside collaborator's access to your organization's private repositories is removed, the user's access privileges and settings are saved for three months. You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame. {% data reusables.two_fa.send-invite-to-reinstate-user-before-2fa-is-enabled %} -Ao restabelecer um ex-colaborador externo, você pode restaurar: - - O acesso anterior do usuário aos repositórios da organização - - As bifurcações privadas de repositórios de propriedade da organização - - A associação nas equipes da organização - - Os acessos e permissões anteriores nos repositórios da organização - - As estrelas dos repositórios da organização - - As atribuições de problemas na organização - - As assinaturas do repositório (configurações de notificação para inspecionar, não inspecionar ou ignorar as atividades de um repositório) +When you reinstate a former outside collaborator, you can restore: + - The user's former access to organization repositories + - Any private forks of repositories owned by the organization + - Membership in the organization's teams + - Previous access and permissions for the organization's repositories + - Stars for organization repositories + - Issue assignments in the organization + - Repository subscriptions (notification settings for watching, not watching, or ignoring a repository's activity) {% tip %} -**Dicas**: +**Tips**: - - Somente proprietários da organização podem restabelecer o acesso de um colaborador externo à organização. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." - - O fluxo de restabelecimento de um integrante no {% data variables.product.product_location %} pode usar o termo "integrante" para descrever o restabelecimento de um colaborador externo, mas se você restabelecer o usuário e mantiver os privilégios anteriores, ele terá apenas as [permissões anteriores de colaborador externo](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators).{% ifversion fpt or ghec %} - - Se a organização tiver uma assinatura paga por usuário, ela deverá ter uma licença não utilizada disponível para você poder convidar um integrante para participar da organização ou restabelecer um ex-integrante da organização. Para obter mais informações, consulte "[Sobre preços por usuário](/articles/about-per-user-pricing)."{% endif %} + - Only organization owners can reinstate outside collaborators' access to an organization. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." + - The reinstating a member flow on {% data variables.product.product_location %} may use the term "member" to describe reinstating an outside collaborator but if you reinstate this person and keep their previous privileges, they will only have their previous [outside collaborator permissions](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators).{% ifversion fpt or ghec %} + - 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)."{% endif %} {% endtip %} @@ -45,35 +45,37 @@ Ao restabelecer um ex-colaborador externo, você pode restaurar: {% data reusables.organizations.invite_member_from_people_tab %} {% data reusables.organizations.reinstate-user-type-username %} {% ifversion fpt or ghec %} -1. Escolha restaurar os privilégios anteriores do colaborador externo na organização clicando em **Invite and reinstate** (Convidar e restabelecer) ou escolha apagar os privilégios anteriores e definir novas permissões de acesso clicando em **Invite and start fresh** (Convidar e começar do zero). +1. Choose to restore the outside collaborator's previous privileges in the organization by clicking **Invite and reinstate** or choose to clear their previous privileges and set new access permissions by clicking **Invite and start fresh**. {% warning %} - **Aviso:** se quiser converter um colaborador externo em um integrante da organização, selecione **Invite and start fresh** (Convidar e começar do zero) e escolha uma nova função para a pessoa. Mas se você optar por começar do zero, as bifurcações privadas de repositórios da organização desse usuário serão perdidas. Para converter o ex-colaborador externo em um integrante da organização *e* manter as bifurcações privadas dele, selecione **Invite and reinstate** (Convidar e restabelecer). Quando a pessoa aceitar o convite, você poderá fazer a conversão [convidando a pessoa para participar da organização como um integrante](/articles/converting-an-outside-collaborator-to-an-organization-member). + **Warning:** If you want to upgrade the outside collaborator to a member of your organization, then choose **Invite and start fresh** and choose a new role for this person. Note, however, that this person's private forks of your organization's repositories will be lost if you choose to start fresh. To make the former outside collaborator a member of your organization *and* keep their private forks, choose **Invite and reinstate** instead. Once this person accepts the invitation, you can convert them to an organization member by [inviting them to join the organization as a member](/articles/converting-an-outside-collaborator-to-an-organization-member). {% endwarning %} - ![Escolher se deseja restaurar as configurações](/assets/images/help/organizations/choose_whether_to_restore_org_member_info.png) + ![Choose to restore settings or not](/assets/images/help/organizations/choose_whether_to_restore_org_member_info.png) {% else %} -6. Escolha restaurar os privilégios anteriores do colaborador externo na organização clicando em **Add and reinstate** (Adicionar e restabelecer) ou escolha apagar os privilégios anteriores e definir novas permissões de acesso clicando em **Add and start fresh** (Adicionar e começar do zero). +6. Choose to restore the outside collaborator's previous privileges in the organization by clicking **Add and reinstate** or choose to clear their previous privileges and set new access permissions by clicking **Add and start fresh**. {% warning %} - **Aviso:** se quiser converter um colaborador externo em um integrante da organização, selecione **Add and start fresh** (Adicionar e começar do zero) e escolha uma nova função para a pessoa. Mas se você optar por começar do zero, as bifurcações privadas de repositórios da organização desse usuário serão perdidas. Para converter o ex-colaborador externo em um integrante da organização *e* manter as bifurcações privadas dele, selecione **Add and reinstate** (Adicionar e restabelecer). Em seguida, converta-o em integrante da organização [adicionando ele à organização como um integrante](/articles/converting-an-outside-collaborator-to-an-organization-member). + **Warning:** If you want to upgrade the outside collaborator to a member of your organization, then choose **Add and start fresh** and choose a new role for this person. Note, however, that this person's private forks of your organization's repositories will be lost if you choose to start fresh. To make the former outside collaborator a member of your organization *and* keep their private forks, choose **Add and reinstate** instead. Then, you can convert them to an organization member by [adding them to the organization as a member](/articles/converting-an-outside-collaborator-to-an-organization-member). {% endwarning %} - ![Escolher se deseja restaurar as configurações](/assets/images/help/organizations/choose_whether_to_restore_org_member_info_ghe.png) + ![Choose to restore settings or not](/assets/images/help/organizations/choose_whether_to_restore_org_member_info_ghe.png) {% endif %} {% ifversion fpt or ghec %} -7. Se você apagou os privilégios anteriores de um ex-colaborador externo, escolha uma função para o usuário e adicione-o em algumas equipes (opcional), depois clique em **Send invitation** (Enviar convite). ![Opções Role and team (Função e equipe) e botão send invitation (enviar convite)](/assets/images/help/organizations/add-role-send-invitation.png) +7. If you cleared the previous privileges for a former outside collaborator, choose a role for the user and optionally add them to some teams, then click **Send invitation**. + ![Role and team options and send invitation button](/assets/images/help/organizations/add-role-send-invitation.png) {% else %} -7. Se você apagou os privilégios anteriores de um ex-colaborador externo, escolha uma função para o usuário e adicione-o em algumas equipes (opcional), depois clique em **Add member** (Adicionar integrante). ![Opções Role and team (Função e equipe) e botão add member (adicionar integrante)](/assets/images/help/organizations/add-role-add-member.png) +7. If you cleared the previous privileges for a former outside collaborator, choose a role for the user and optionally add them to some teams, then click **Add member**. + ![Role and team options and add member button](/assets/images/help/organizations/add-role-add-member.png) {% endif %} {% ifversion fpt or ghec %} -8. A pessoa convidada receberá um e-mail com um convite para participar da organização. Ela precisará aceitar o convite antes de se tornar um colaborador externo na organização. {% data reusables.organizations.cancel_org_invite %} +8. The invited person will receive an email inviting them to the organization. They will need to accept the invitation before becoming an outside collaborator in the organization. {% data reusables.organizations.cancel_org_invite %} {% endif %} -## Leia mais +## Further Reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md index 87dda915f4..7a0e4bbd0d 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md @@ -3,7 +3,7 @@ title: Repository roles for an organization intro: 'You can customize access to each repository in your organization by assigning granular roles, giving people access to the features and tasks they need.' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/repository-permission-levels-for-an-organization-early-access-program/ + - /articles/repository-permission-levels-for-an-organization-early-access-program - /articles/repository-permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization - /organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization diff --git a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization.md b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization.md index 046a6f6858..fc6aca0e28 100644 --- a/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization.md +++ b/translations/pt-BR/content/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization.md @@ -1,6 +1,6 @@ --- -title: Definir permissões básicas para uma organização -intro: Você pode definir permissões básicas para repositórios que uma organização possui. +title: Setting base permissions for an organization +intro: You can set base permissions for the repositories that an organization owns. permissions: Organization owners can set base permissions for an organization. redirect_from: - /github/setting-up-and-managing-organizations-and-teams/setting-base-permissions-for-an-organization @@ -12,14 +12,14 @@ versions: topics: - Organizations - Teams -shortTitle: Definir permissões básicas +shortTitle: Set base permissions --- -## Sobre as permissões básicas para uma organização +## About base permissions for an organization -É possível definir as permissões básicas que se aplicam a todos os integrantes da organização ao acessar qualquer um dos repositórios da organização. As permissões básicas não se aplicam a colaboradores externos. +You can set base permissions that apply to all members of an organization when accessing any of the organization's repositories. Base permissions do not apply to outside collaborators. -{% ifversion fpt or ghec %}Por padrão, os integrantes de uma organização terão permissão de **leitura** nos repositórios da organização.{% endif %} +{% ifversion fpt or ghec %}By default, members of an organization will have **Read** permissions to the organization's repositories.{% endif %} If someone with admin access to an organization's repository grants a member a higher level of access for the repository, the higher level of access overrides the base permission. @@ -27,15 +27,17 @@ If someone with admin access to an organization's repository grants a member a h If you've created a custom repository role with an inherited role that is lower access than your organization's base permissions, any members assigned to that role will default to the organization's base permissions rather than the inherited 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 %} -## Definir permissões básicas +## Setting base permissions {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. Em "Permissões básicas", use o menu suspenso para selecionar novas permissões básicas. ![Selecionar novo nível de permissão a partir do menu suspenso de permissões básicas](/assets/images/help/organizations/base-permissions-drop-down.png) -6. Revise as alterações. Para confirmar, clique em **Alterar permissão-padrão para PERMISSÃO**. ![Revisar e confirmar a alteração das permissões básicas](/assets/images/help/organizations/base-permissions-confirm.png) +5. Under "Base permissions", use the drop-down to select new base permissions. + ![Selecting new permission level from base permissions drop-down](/assets/images/help/organizations/base-permissions-drop-down.png) +6. Review the changes. To confirm, click **Change default permission to PERMISSION**. + ![Reviewing and confirming change of base permissions](/assets/images/help/organizations/base-permissions-confirm.png) -## Leia mais +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" -- "[Adicionar colaboradores externos a repositórios na sua organização](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization)" +- "[Adding outside collaborators to repositories in your organization](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization)" diff --git a/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md b/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md index 4256094445..835e187a8a 100644 --- a/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md +++ b/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md @@ -1,6 +1,6 @@ --- -title: Sobre autoridades certificadas de SSH -intro: 'Com uma autoridade certificada SSH, a organização ou conta corporativa pode oferecer certificados SSH para os integrantes usarem ao acessar seus recursos com o Git.' +title: About SSH certificate authorities +intro: 'With an SSH certificate authority, your organization or enterprise account can provide SSH certificates that members can use to access your resources with Git.' product: '{% data reusables.gated-features.ssh-certificate-authorities %}' redirect_from: - /articles/about-ssh-certificate-authorities @@ -13,28 +13,28 @@ versions: topics: - Organizations - Teams -shortTitle: Autoridades do certificado SSH +shortTitle: SSH certificate authorities --- -## Sobre autoridades certificadas de SSH +## About SSH certificate authorities -Um certificado SSH é um mecanismo utilizado para uma chave SSH assinar outra chave SSH. Se você usa uma autoridade certificada (CA) SSH para fornecer certificados SSH aos integrantes da organização, você pode adicionar a CA em sua conta corporativa ou organização para permitir que integrantes da organização usem os certificados deles para acessar os recursos da organização. +An SSH certificate is a mechanism for one SSH key to sign another SSH key. If you use an SSH certificate authority (CA) to provide your organization members with signed SSH certificates, you can add the CA to your enterprise account or organization to allow organization members to use their certificates to access organization resources. -Depois de adicionar uma CA SSH à sua organização ou conta corporativa, você pode usar a CA para assinar certificados SSH de cliente para integrantes da organização. Integrantes da organização podem usar os certificados assinados para acessar os repositórios da sua organização (e somente os repositórios da sua organização) no Git. Optionally, you can require that members use SSH certificates to access organization resources. For more information, see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" and "[Enforcing policies for security settings in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." +After you add an SSH CA to your organization or enterprise account, you can use the CA to sign client SSH certificates for organization members. Organization members can use the signed certificates to access your organization's repositories (and only your organization's repositories) with Git. Optionally, you can require that members use SSH certificates to access organization resources. For more information, see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" and "[Enforcing policies for security settings in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." -Por exemplo, você pode desenvolver um sistema interno que emite um novo certificado para seus desenvolvedores todas as manhãs. Cada desenvolvedor pode usar o certificado diário para trabalhar nos repositórios da organização no {% data variables.product.product_name %}. No final do dia, o certificado pode expirar automaticamente, protegendo seus repositórios caso o certificado seja adulterado mais tarde. +For example, you can build an internal system that issues a new certificate to your developers every morning. Each developer can use their daily certificate to work on your organization's repositories on {% data variables.product.product_name %}. At the end of the day, the certificate can automatically expire, protecting your repositories if the certificate is later compromised. {% ifversion fpt or ghec %} -Integrantes da organização podem usar os certificados assinados para autenticação mesmo que você tenha aplicado o logon único SAML. A menos que você exija certificados SSH, os integrantes podem continuar a usar outros meios de autenticação para acessar os recursos da organização no Git, como o nome de usuário e senha deles, tokens de acesso pessoais e outras chaves SSH próprias. +Organization members can use their signed certificates for authentication even if you've enforced SAML single sign-on. Unless you make SSH certificates a requirement, organization members can continue to use other means of authentication to access your organization's resources with Git, including their username and password, personal access tokens, and their own SSH keys. {% endif %} -Members will not be able to use their certificates to access forks of your repositories that are owned by their user accounts. +Members will not be able to use their certificates to access forks of your repositories that are owned by their user accounts. -Para evitar erros de autenticação, os integrantes da organização devem usar uma URL especial que inclua o ID da organização para clonar repositórios usando certificados assinados. Qualquer pessoa com acesso de leitura no repositório pode localizar essa URL na página do repositório. Para obter mais informações, consulte "[Clonar um repositório](/articles/cloning-a-repository)". +To prevent authentication errors, organization members should use a special URL that includes the organization ID to clone repositories using signed certificates. Anyone with read access to the repository can find this URL on the repository page. For more information, see "[Cloning a repository](/articles/cloning-a-repository)." ## Issuing certificates -A cada emissão de certificado, você deve incluir uma extensão especificando para qual usuário do {% data variables.product.product_name %} é o certificado. Por exemplo, você pode usar o comando do OpenSSH `ssh-keygen` substituindo _KEY-IDENTITY_ por sua identidade chave e _USERNAME_ por um nome de usuário do {% data variables.product.product_name %}. O certificado que você gerar será autorizado a agir em nome desse usuário para qualquer um dos recursos da sua organização. Certifique-se de validar a identidade do usuário antes de emitir o certificado. +When you issue each certificate, you must include an extension that specifies which {% data variables.product.product_name %} user the certificate is for. For example, you can use OpenSSH's `ssh-keygen` command, replacing _KEY-IDENTITY_ with your key identity and _USERNAME_ with a {% data variables.product.product_name %} username. The certificate you generate will be authorized to act on behalf of that user for any of your organization's resources. Make sure you validate the user's identity before you issue the certificate. ```shell $ ssh-keygen -s ./ca-key -V '+1d' -I <em>KEY-IDENTITY</em> -O extension:login@{% data variables.product.product_url %}=<em>USERNAME</em> ./user-key.pub @@ -46,13 +46,13 @@ $ ssh-keygen -s ./ca-key -V '+1d' -I <em>KEY-IDENTITY</em> -O extension:login@{% {% endwarning %} -Para emitir um certificado para alguém que utiliza SSH para acessar vários produtos de {% data variables.product.company_short %}, você pode incluir duas extensões de login para especificar o nome de usuário para cada produto. Por exemplo, o comando a seguir emitiria um certificado para _USERNAME-1_ para a conta do usuário para {% data variables.product.prodname_ghe_cloud %}, e _USERNAME-2_ para a conta do usuário em {% data variables.product.prodname_ghe_managed %} ou {% data variables.product.prodname_ghe_server %} em _HOSTNAME_. +To issue a certificate for someone who uses SSH to access multiple {% data variables.product.company_short %} products, you can include two login extensions to specify the username for each product. For example, the following command would issue a certificate for _USERNAME-1_ for the user's account for {% data variables.product.prodname_ghe_cloud %}, and _USERNAME-2_ for the user's account on {% data variables.product.prodname_ghe_managed %} or {% data variables.product.prodname_ghe_server %} at _HOSTNAME_. ```shell $ ssh-keygen -s ./ca-key -V '+1d' -I <em>KEY-IDENTITY</em> -O extension:login@github.com=<em>USERNAME-1</em> extension:login@<em>HOSTNAME</em>=<em>USERNAME-2</em> ./user-key.pub ``` -É possível restringir os endereços IP dos quais um integrante da organização pode acessar os recursos da sua organização usando uma extensão `source-address`. A extensão aceita um endereço IP específico ou um intervalo de endereços IP usando a notação CIDR. É possível especificar vários endereços ou intervalos separando os valores com vírgulas. Para obter mais informações, consulte "[Roteamento interdomínio sem classes](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)" na Wikipedia. +You can restrict the IP addresses from which an organization member can access your organization's resources by using a `source-address` extension. The extension accepts a specific IP address or a range of IP addresses using CIDR notation. You can specify multiple addresses or ranges by separating the values with commas. For more information, see "[Classless Inter-Domain Routing](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)" on Wikipedia. ```shell $ ssh-keygen -s ./ca-key -V '+1d' -I <em>KEY-IDENTITY</em> -O extension:login@{% data variables.product.product_url %}=<em>USERNAME</em> -O source-address=<em>COMMA-SEPARATED-LIST-OF-IP-ADDRESSES-OR-RANGES</em> ./user-key.pub diff --git a/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/index.md b/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/index.md index b8548e0661..ddff241ba3 100644 --- a/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/index.md +++ b/translations/pt-BR/content/organizations/managing-git-access-to-your-organizations-repositories/index.md @@ -1,9 +1,9 @@ --- -title: Gerenciar acesso do Git aos repositórios da organização -intro: 'Você pode adicionar uma autoridade certificada (CA, certificate authority) SSH em sua organização e permitir que os integrantes acessem os repositórios da organização no Git usando as chaves assinadas pela CA SSH.' +title: Managing Git access to your organization's repositories +intro: You can add an SSH certificate authority (CA) to your organization and allow members to access the organization's repositories over Git using keys signed by the SSH CA. product: '{% data reusables.gated-features.ssh-certificate-authorities %}' redirect_from: - - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities/ + - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities - /articles/managing-git-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories versions: @@ -17,6 +17,6 @@ topics: children: - /about-ssh-certificate-authorities - /managing-your-organizations-ssh-certificate-authorities -shortTitle: Gerenciar acesso do Git +shortTitle: Manage Git access --- diff --git a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md index c08a2a1e4e..fcbc84c3ef 100644 --- a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md +++ b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md @@ -2,7 +2,7 @@ title: Can I create accounts for people in my organization? intro: 'While you can add users to an organization you''ve created, you can''t create personal user accounts on behalf of another person.' redirect_from: - - /articles/can-i-create-accounts-for-those-in-my-organization/ + - /articles/can-i-create-accounts-for-those-in-my-organization - /articles/can-i-create-accounts-for-people-in-my-organization - /github/setting-up-and-managing-organizations-and-teams/can-i-create-accounts-for-people-in-my-organization versions: diff --git a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md index 0dede7c16e..6df920f16c 100644 --- a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md @@ -1,6 +1,6 @@ --- title: Exporting member information for your organization -intro: 'You can export information about members in your organization, directly from the user interface.' +intro: You can export information about members in your organization, directly from the user interface. permissions: Organization owners can export member information for their organization. versions: fpt: '*' @@ -22,4 +22,4 @@ For more information about the APIs, see our [GraphQL API](/graphql/reference/ob {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.people %} -{% data reusables.organizations.people-export %} +{% data reusables.organizations.people-export %} \ No newline at end of file diff --git a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/index.md b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/index.md index 5cbf5e921f..1216f530f7 100644 --- a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/index.md +++ b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/index.md @@ -1,8 +1,8 @@ --- -title: Gerenciar associação na organização -intro: 'Depois de criar a organização, é possível {% ifversion fpt %}convidar pessoas para se tornarem{% else %}adicionar pessoas como{% endif %} integrantes da organização. Você também pode remover integrantes da organização e restabelecer ex-integrantes.' +title: Managing membership in your organization +intro: 'After you create your organization, you can {% ifversion fpt %}invite people to become{% else %}add people as{% endif %} members of the organization. You can also remove members of the organization, and reinstate former members.' redirect_from: - - /articles/removing-a-user-from-your-organization/ + - /articles/removing-a-user-from-your-organization - /articles/managing-membership-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization versions: @@ -21,7 +21,6 @@ children: - /reinstating-a-former-member-of-your-organization - /exporting-member-information-for-your-organization - /can-i-create-accounts-for-people-in-my-organization -shortTitle: Gerenciar associação +shortTitle: Manage membership --- - <!-- else --> diff --git a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index fac88da5ef..31b090c1f3 100644 --- a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -3,7 +3,7 @@ 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/ + - /articles/adding-or-inviting-members-to-a-team-in-an-organization - /articles/inviting-users-to-join-your-organization - /github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization versions: diff --git a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md index ebb3f8c326..c846119a93 100644 --- a/translations/pt-BR/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md +++ b/translations/pt-BR/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md @@ -1,5 +1,5 @@ --- -title: Restabelecer ex-integrantes da organização +title: Reinstating a former member of your organization intro: 'Organization owners can {% ifversion fpt or ghec %}invite former organization members to rejoin{% else %}add former members to{% endif%} your organization, and choose whether to restore the person''s former role, access permissions, forks, and settings.' redirect_from: - /articles/reinstating-a-former-member-of-your-organization @@ -13,33 +13,33 @@ permissions: Organization owners can reinstate a former member of an organizatio topics: - Organizations - Teams -shortTitle: Restabelecer um integrante +shortTitle: Reinstate a member --- -## Sobre a reintegração de integrantes +## About member reinstatement -Se você [remover um usuário da sua organização](/articles/removing-a-member-from-your-organization){% ifversion ghae %} ou{% else %},{% endif %} [converter um integrante da organização em um colaborador externo](/articles/converting-an-organization-member-to-an-outside-collaborator){% ifversion not ghae %}, ou um usuário foi removido da sua organização porque você [pediu aos integrantes e colaboradores externos para habilitar a autenticação de dois fatores (2FA)](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}, os privilégios e configurações do usuário ficarão salvos por três meses. You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame. +If you [remove a user from your organization](/articles/removing-a-member-from-your-organization){% ifversion ghae %} or{% else %},{% endif %} [convert an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator){% ifversion not ghae %}, or a user is removed from your organization because you've [required members and outside collaborators to enable two-factor authentication (2FA)](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}, the user's access privileges and settings are saved for three months. You can restore the user's privileges if you {% ifversion fpt or ghec %}invite{% else %}add{% endif %} them back to the organization within that time frame. {% data reusables.two_fa.send-invite-to-reinstate-user-before-2fa-is-enabled %} -Ao restabelecer um ex-integrante da organização, você pode restaurar: - - A função do usuário na organização - - As bifurcações privadas de repositórios de propriedade da organização - - A associação nas equipes da organização - - Os acessos e permissões anteriores nos repositórios da organização - - As estrelas dos repositórios da organização - - As atribuições de problemas na organização - - As assinaturas do repositório (configurações de notificação para inspecionar, não inspecionar ou ignorar as atividades de um repositório) +When you reinstate a former organization member, you can restore: + - The user's role in the organization + - Any private forks of repositories owned by the organization + - Membership in the organization's teams + - Previous access and permissions for the organization's repositories + - Stars for organization repositories + - Issue assignments in the organization + - Repository subscriptions (notification settings for watching, not watching, or ignoring a repository's activity) {% ifversion ghes %} -Se um integrante foi removido da organização por não usar a autenticação de dois fatores e a organização ainda exigir essa autenticação, o ex-integrante precisará habilitar a autenticação de dois fatores antes de você restabelecer a associação. +If an organization member was removed from the organization because they did not use two-factor authentication and your organization still requires members to use 2FA, the former member must enable two-factor authentication before you can reinstate their membership. {% endif %} {% ifversion fpt or ghec %} -Se a sua organização tem uma assinatura paga por usuário, uma licença não utilizada deve estar disponível antes de você poder restabelecer um antigo integrante da organização. Para obter mais informações, consulte "[Sobre preços por usuário](/articles/about-per-user-pricing)". {% data reusables.organizations.org-invite-scim %} +If your organization has a paid per-user subscription, an unused license must be available before you can reinstate a former organization member. For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." {% data reusables.organizations.org-invite-scim %} {% endif %} -## Restabelecer ex-integrantes da organização +## Reinstating a former member of your organization {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -47,19 +47,23 @@ Se a sua organização tem uma assinatura paga por usuário, uma licença não u {% data reusables.organizations.invite_member_from_people_tab %} {% data reusables.organizations.reinstate-user-type-username %} {% ifversion fpt or ghec %} -6. Escolha se deseja restaurar os privilégios anteriores da pessoa na organização ou apagar os privilégios anteriores e definir novas permissões de acesso, depois clique em **Invite and reinstate** (Convidar e restabelecer) ou em **Invite and start fresh** (Convidar e começar do zero). ![Escolher restaurar as informações ou não](/assets/images/help/organizations/choose_whether_to_restore_org_member_info.png) +6. Choose whether to restore that person's previous privileges in the organization or clear their previous privileges and set new access permissions, then click **Invite and reinstate** or **Invite and start fresh**. + ![Choose to restore info or not](/assets/images/help/organizations/choose_whether_to_restore_org_member_info.png) {% else %} -6. Escolha se deseja restaurar os privilégios anteriores da pessoa na organização ou apagar os privilégios anteriores e definir novas permissões de acesso, depois clique em **Add and reinstate** (Adicionar e restabelecer) ou em **Add and start fresh** (Adicionar e começar do zero). ![Escolher se deseja restaurar os privilégios](/assets/images/help/organizations/choose_whether_to_restore_org_member_info_ghe.png) +6. Choose whether to restore that person's previous privileges in the organization or clear their previous privileges and set new access permissions, then click **Add and reinstate** or **Add and start fresh**. + ![Choose whether to restore privileges](/assets/images/help/organizations/choose_whether_to_restore_org_member_info_ghe.png) {% endif %} {% ifversion fpt or ghec %} -7. Se você apagou os privilégios anteriores de um ex-integrante da organização, escolha uma função para o usuário e adicione-o em algumas equipes (opcional), depois clique em **Send invitation** (Enviar convite). ![Opções Role and team (Função e equipe) e botão send invitation (enviar convite)](/assets/images/help/organizations/add-role-send-invitation.png) +7. If you cleared the previous privileges for a former organization member, choose a role for the user, and optionally add them to some teams, then click **Send invitation**. + ![Role and team options and send invitation button](/assets/images/help/organizations/add-role-send-invitation.png) {% else %} -7. Se você apagou os privilégios anteriores de um ex-integrante da organização, escolha uma função para o usuário e adicione-o em algumas equipes (opcional), depois clique em **Add member** (Adicionar integrante). ![Opções Role and team (Função e equipe) e botão add member (adicionar integrante)](/assets/images/help/organizations/add-role-add-member.png) +7. If you cleared the previous privileges for a former organization member, choose a role for the user, and optionally add them to some teams, then click **Add member**. + ![Role and team options and add member button](/assets/images/help/organizations/add-role-add-member.png) {% endif %} {% ifversion fpt or ghec %} {% data reusables.organizations.user_must_accept_invite_email %} {% data reusables.organizations.cancel_org_invite %} {% endif %} -## Leia mais +## Further reading -- "[Converter um integrante da organização em colaborador externo](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" diff --git a/translations/pt-BR/content/organizations/managing-organization-settings/renaming-an-organization.md b/translations/pt-BR/content/organizations/managing-organization-settings/renaming-an-organization.md index 9fd78a8735..30bd57d2b3 100644 --- a/translations/pt-BR/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/translations/pt-BR/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -2,7 +2,7 @@ title: Renaming an organization intro: 'If your project or company has changed names, you can update the name of your organization to match.' redirect_from: - - /articles/what-happens-when-i-change-my-organization-s-name/ + - /articles/what-happens-when-i-change-my-organization-s-name - /articles/renaming-an-organization - /github/setting-up-and-managing-organizations-and-teams/renaming-an-organization versions: diff --git a/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md b/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md index 601d4d4657..44b80ce85d 100644 --- a/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md +++ b/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md @@ -1,9 +1,9 @@ --- -title: Configurar permissões para adicionar colaboradores externos -intro: 'Para proteger os dados da organização e o o número de licenças pagas usadas, você pode permitir que somente proprietários convidem colaboradores externos para os repositórios da organização.' +title: Setting permissions for adding outside collaborators +intro: 'To protect your organization''s data and the number of paid licenses used in your organization, you can allow only owners to invite outside collaborators to organization repositories.' product: '{% data reusables.gated-features.restrict-add-collaborator %}' redirect_from: - - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories/ + - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories - /articles/setting-permissions-for-adding-outside-collaborators - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators versions: @@ -14,15 +14,16 @@ versions: topics: - Organizations - Teams -shortTitle: Definir política de colaborador +shortTitle: Set collaborator policy --- -Os proprietários da organização e integrantes com privilégios de administrador para um repositório podem convidar colaboradores externos para trabalhar no repositório. Você também pode restringir as permissões de convites de colaboradores externos para apenas proprietários de organizações. +Organization owners, and members with admin privileges for a repository, can invite outside collaborators to work on the repository. You can also restrict outside collaborator invite permissions to only organization owners. {% data reusables.organizations.outside-collaborators-use-seats %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. Em "Repository invitations" (Convites para o repositório), selecione **Allow members to invite outside collaborators to repositories for this organization** (Permitir que os integrantes convidem colaboradores externos aos repositórios desta organização). ![Caixa de seleção para permitir que os integrantes convidem colaboradores externos aos repositórios da organização](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) -6. Clique em **Salvar**. +5. Under "Repository invitations", select **Allow members to invite outside collaborators to repositories for this organization**. + ![Checkbox to allow members to invite outside collaborators to organization repositories](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) +6. Click **Save**. diff --git a/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md b/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md index d33a4b8977..5309271e6e 100644 --- a/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md +++ b/translations/pt-BR/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md @@ -1,8 +1,8 @@ --- -title: Definir permissões para excluir ou transferir repositórios -intro: 'Você pode permitir que integrantes da organização com permissões de administrador no repositório excluam ou transfiram o repositório, ou limitem a capacidade de excluir ou transferir repositórios aos proprietários da organização.' +title: Setting permissions for deleting or transferring repositories +intro: 'You can allow organization members with admin permissions to a repository to delete or transfer the repository, or limit the ability to delete or transfer repositories to organization owners only.' redirect_from: - - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization/ + - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization - /articles/setting-permissions-for-deleting-or-transferring-repositories - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories versions: @@ -13,13 +13,14 @@ versions: topics: - Organizations - Teams -shortTitle: Definir política de gerenciamento de repositórios +shortTitle: Set repo management policy --- -Proprietários podem definir permissões para excluir ou transferir repositórios na organização. +Owners can set permissions for deleting or transferring repositories in an organization. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. Em "Repository deletion and transfer" (Exclusão e transferência de repositório), marque ou desmarque a opção **Allow members to delete or transfer repositories for this organization** (Permitir que os integrantes excluam ou transfiram repositórios na organização). ![Caixa de seleção para permitir que os integrantes excluam repositórios](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) -6. Clique em **Salvar**. +5. Under "Repository deletion and transfer", select or deselect **Allow members to delete or transfer repositories for this organization**. +![Checkbox to allow members to delete repositories](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) +6. Click **Save**. diff --git a/translations/pt-BR/content/organizations/managing-organization-settings/transferring-organization-ownership.md b/translations/pt-BR/content/organizations/managing-organization-settings/transferring-organization-ownership.md index 6a68e899ce..da79cb679b 100644 --- a/translations/pt-BR/content/organizations/managing-organization-settings/transferring-organization-ownership.md +++ b/translations/pt-BR/content/organizations/managing-organization-settings/transferring-organization-ownership.md @@ -1,8 +1,8 @@ --- -title: Transferir a propriedade da organização -intro: 'Para tornar outra pessoa a proprietária de uma conta da organização, é preciso adicionar um novo proprietário{% ifversion fpt or ghec %}, verificar se as informações de cobrança estão atualizadas{% endif %} e remover a si mesmo da conta.' +title: Transferring organization ownership +intro: 'To make someone else the owner of an organization account, you must add a new owner{% ifversion fpt or ghec %}, ensure that the billing information is updated,{% endif %} and then remove yourself from the account.' redirect_from: - - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else/ + - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else - /articles/transferring-organization-ownership - /github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership versions: @@ -13,26 +13,25 @@ versions: topics: - Organizations - Teams -shortTitle: Transferir propriedade +shortTitle: Transfer ownership --- - {% ifversion fpt or ghec %} {% note %} -**Observação:** {% data reusables.enterprise-accounts.invite-organization %} +**Note:** {% data reusables.enterprise-accounts.invite-organization %} {% endnote %}{% endif %} -1. Caso você seja o único integrante com privilégios de *proprietário*, atribua a função de proprietário a outro integrante da organização. Para obter mais informações, consulte "[Designar um proprietário da organização](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)". -2. Entre em contato com o novo proprietário e verifique se ele consegue [acessar as configurações da organização](/articles/accessing-your-organization-s-settings). +1. If you're the only member with *owner* privileges, give another organization member the owner role. For more information, see "[Appointing an organization owner](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)." +2. Contact the new owner and make sure he or she is able to [access the organization's settings](/articles/accessing-your-organization-s-settings). {% ifversion fpt or ghec %} -3. Se você é o atual responsável pelo pagamento do GitHub na organização, também precisará pedir ao novo proprietário ou a um [gerente de cobrança](/articles/adding-a-billing-manager-to-your-organization/) que atualize as informações de pagamento da organização. Para obter mais informações, consulte "[Adicionar ou editar forma de pagamento](/articles/adding-or-editing-a-payment-method)". +3. If you are currently responsible for paying for GitHub in your organization, you'll also need to have the new owner or a [billing manager](/articles/adding-a-billing-manager-to-your-organization/) update the organization's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." {% warning %} - **Aviso**: remover a si mesmo da organização **não** atualiza as informações de cobrança no arquivo referentes à conta da organização. O novo proprietário ou um gerente de cobrança deve atualizar as informações de cobrança no arquivo para apagar suas informações de cartão de crédito ou PayPal. + **Warning**: Removing yourself from the organization **does not** update the billing information on file for the organization account. The new owner or a billing manager must update the billing information on file to remove your credit card or PayPal information. {% endwarning %} {% endif %} -4. [Remova a si mesmo](/articles/removing-yourself-from-an-organization) da organização. +4. [Remove yourself](/articles/removing-yourself-from-an-organization) from the organization. diff --git a/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 03a6516b82..f7caf78b8b 100644 --- a/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -90,6 +90,8 @@ You can only choose an additional permission if it's not already included in the - **View {% data variables.product.prodname_code_scanning %} results**: Ability to view {% data variables.product.prodname_code_scanning %} alerts. - **Dismiss or reopen {% data variables.product.prodname_code_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_code_scanning %} alerts. - **Delete {% data variables.product.prodname_code_scanning %} results**: Ability to delete {% data variables.product.prodname_code_scanning %} alerts. +- **View {% data variables.product.prodname_secret_scanning %} results**: Ability to view {% data variables.product.prodname_secret_scanning %} alerts. +- **Dismiss or reopen {% data variables.product.prodname_secret_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_secret_scanning %} alerts. ## Precedence for different levels of access diff --git a/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 58b849aac4..a62d2b892d 100644 --- a/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/translations/pt-BR/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -2,7 +2,7 @@ title: Roles in an organization intro: Organization owners can assign roles to individuals and teams giving them different sets of permissions in the organization. redirect_from: - - /articles/permission-levels-for-an-organization-early-access-program/ + - /articles/permission-levels-for-an-organization-early-access-program - /articles/permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization - /organizations/managing-peoples-access-to-your-organization-with-roles/permission-levels-for-an-organization diff --git a/translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md b/translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md index 4a825c5770..668ba3b7bc 100644 --- a/translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md +++ b/translations/pt-BR/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md @@ -2,7 +2,7 @@ title: Managing SAML single sign-on for your organization intro: Organization owners can manage organization members' identities and access to the organization with SAML single sign-on (SSO). redirect_from: - - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on/ + - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on - /articles/managing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: diff --git a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md index 327743b43a..02f92675b7 100644 --- a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md +++ b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: Migrar uma equipe de administradores para permissões de organização aprimoradas -intro: 'Se sua organização foi criada depois de setembro de 2015, tem permissões de organização aprimoradas por padrão. Organizações criadas antes de setembro de 2015 podem precisar migrar proprietários e equipes de administradores antigos para o modelo de permissões aprimoradas. Integrantes de equipes de administradores legadas mantêm automaticamente a capacidade de criar repositórios até que as equipes sejam migradas para o modelo de permissões de organização aprimoradas.' +title: Converting an admin team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions - /articles/converting-an-admin-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions versions: @@ -12,23 +12,23 @@ versions: topics: - Organizations - Teams -shortTitle: Converter equipe de administração +shortTitle: Convert admin team --- -Você pode impedir os integrantes das equipes de administradores legadas de criar repositórios criando uma equipe para esses integrantes, garantindo que a equipe tenha acesso necessário aos repositórios da organização e, em seguida, excluindo a equipe de administradores legada. +You can remove the ability for members of legacy admin teams to create repositories by creating a new team for these members, ensuring that the team has necessary access to the organization's repositories, then deleting the legacy admin team. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**Avisos:** -- Se houver integrantes da equipe de administradores legada que não sejam integrantes de outras equipes, excluir a equipe removerá esses integrantes da organização. Antes de excluir a equipe, certifique-se de que os integrantes já sejam integrantes diretos da organização ou que tenham acesso de colaborador aos repositórios necessários. -- Para evitar a perda de bifurcações privadas feitas pelos integrantes da equipe de administradores legada, você deve seguir as etapas de 1 a 3 abaixo antes de excluir a equipe de administradores legada. -- Como "administrador" é um termo para integrantes da organização com [acesso específico a determinados repositórios](/articles/repository-permission-levels-for-an-organization) na organização, é recomendável evitar esse termo em nomes de equipe sobre os quais você decide. +**Warnings:** +- If there are members of your legacy Admin team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. +- To prevent the loss of private forks made by members of the legacy Admin team, you must follow steps 1-3 below before deleting the legacy Admin team. +- Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endwarning %} -1. [Crie uma equipe](/articles/creating-a-team). -2. [Adicione cada um dos integrantes](/articles/adding-organization-members-to-a-team) da sua equipe de administradores legada à nova equipe. -3. [Dê à nova equipe acesso equivalente](/articles/managing-team-access-to-an-organization-repository) a cada um dos repositórios que a equipe legada podia acessar. -4. [Exclua a equipe de administradores legada](/articles/deleting-a-team). +1. [Create a new team](/articles/creating-a-team). +2. [Add each of the members](/articles/adding-organization-members-to-a-team) of your legacy admin team to the new team. +3. [Give the new team equivalent access](/articles/managing-team-access-to-an-organization-repository) to each of the repositories the legacy team could access. +4. [Delete the legacy admin team](/articles/deleting-a-team). diff --git a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md index b7f2e4f316..2d483eed91 100644 --- a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md +++ b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md @@ -1,9 +1,9 @@ --- -title: Migrar uma equipe de proprietários para permissões de organização aprimoradas -intro: 'Se sua organização foi criada depois de setembro de 2015, tem permissões de organização aprimoradas por padrão. Organizações criadas antes de setembro de 2015 podem precisar migrar proprietários e equipes de administradores antigos para o modelo de permissões aprimoradas. O "proprietário" é agora uma função administrativa fornecida a integrantes individuais da sua organização. Os integrantes da equipe de proprietários legada recebem automaticamente privilégios de proprietário.' +title: Converting an Owners team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. The "Owner" is now an administrative role given to individual members of your organization. Members of your legacy Owners team are automatically given owner privileges.' redirect_from: - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program/ - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions - /articles/converting-an-owners-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions versions: @@ -13,19 +13,19 @@ versions: topics: - Organizations - Teams -shortTitle: Converter equipe de proprietários +shortTitle: Convert Owners team --- -Você tem algumas opções para converter sua equipe de proprietários legada: +You have a few options to convert your legacy Owners team: -- Dê à organização um novo nome que denote que os integrantes têm um status especial na organização. -- Exclua a equipe após garantir que todos os integrantes foram adicionados às equipes que concedem acesso necessário aos repositórios da organização. +- Give the team a new name that denotes the members have a special status in the organization. +- Delete the team after ensuring all members have been added to teams that grant necessary access to the organization's repositories. -## Dar à equipe de proprietários um novo nome +## Give the Owners team a new name {% tip %} - **Observação:** como "administrador" é um termo para integrantes da organização com [acesso específico a determinados repositórios](/articles/repository-permission-levels-for-an-organization) na organização, é recomendável evitar esse termo em nomes de equipe sobre os quais você decide. + **Note:** Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endtip %} @@ -33,17 +33,19 @@ Você tem algumas opções para converter sua equipe de proprietários legada: {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. No campo de nome da equipe, escolha um novo nome para a equipe de proprietários. Por exemplo: - - Se apenas alguns integrantes da organização forem integrantes da equipe de proprietários, você poderá dar à equipe o nome de "Principal". - - Se todos os integrantes da organização forem integrantes da equipe de proprietários, de modo que eles podem [@mencionar equipes](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams), você pode dar à equipe o nome de "Funcionários". ![O campo de nome da equipe, com a equipe de proprietários renomeada para Principal](/assets/images/help/teams/owners-team-new-name.png) -6. Abaixo da descrição da equipe, clique em **Save and continue** (Salvar e continuar). ![O botão Save and continue (Salvar e continuar)](/assets/images/help/teams/owners-team-save-and-continue.png) -7. Como opção, [torne a equipe *pública*](/articles/changing-team-visibility). +5. In the team name field, choose a new name for the Owners team. For example: + - If very few members of your organization were members of the Owners team, you might name the team "Core". + - If all members of your organization were members of the Owners team so that they could [@mention teams](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams), you might name the team "Employees". + ![The team name field, with the Owners team renamed to Core](/assets/images/help/teams/owners-team-new-name.png) +6. Under the team description, click **Save and continue**. +![The Save and continue button](/assets/images/help/teams/owners-team-save-and-continue.png) +7. Optionally, [make the team *public*](/articles/changing-team-visibility). -## Excluir a equipe de proprietários legada +## Delete the legacy Owners team {% warning %} -**Aviso:** se houver integrantes da equipe de proprietários que não sejam integrantes de outras equipes, excluir a equipe removerá esses integrantes da organização. Antes de excluir a equipe, certifique-se de que os integrantes já sejam integrantes diretos da organização ou que tenham acesso de colaborador aos repositórios necessários. +**Warning:** If there are members of your Owners team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. {% endwarning %} @@ -51,4 +53,5 @@ Você tem algumas opções para converter sua equipe de proprietários legada: {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. Na parte inferior da página, revise o aviso e clique em **Delete the Owners team** (Excluir a equipe de proprietários). ![Link para excluir a equipe de proprietários](/assets/images/help/teams/owners-team-delete.png) +5. At the bottom of the page, review the warning and click **Delete the Owners team**. + ![Link for deleting the Owners team](/assets/images/help/teams/owners-team-delete.png) diff --git a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/index.md b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/index.md index 32f6fc57c8..510cc6c4d7 100644 --- a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/index.md +++ b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/index.md @@ -1,10 +1,10 @@ --- -title: Migrar para permissões de organização aprimoradas -intro: 'Se sua organização foi criada depois de setembro de 2015, tem permissões de organização aprimoradas por padrão. Organizações criadas antes de setembro de 2015 podem precisar migrar proprietários e equipes de administradores antigos para o modelo de permissões de organização aprimoradas.' +title: Migrating to improved organization permissions +intro: 'If your organization was created after September 2015, your organization includes improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved organization permissions model.' redirect_from: - - /articles/improved-organization-permissions/ - - /articles/github-direct-organization-membership-pre-release-guide/ - - /articles/migrating-your-organization-to-improved-organization-permissions/ + - /articles/improved-organization-permissions + - /articles/github-direct-organization-membership-pre-release-guide + - /articles/migrating-your-organization-to-improved-organization-permissions - /articles/migrating-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions versions: @@ -18,6 +18,6 @@ children: - /converting-an-owners-team-to-improved-organization-permissions - /converting-an-admin-team-to-improved-organization-permissions - /migrating-admin-teams-to-improved-organization-permissions -shortTitle: Migrar para permissões melhoradas +shortTitle: Migrate to improved permissions --- diff --git a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md index 562a86f04b..e5965cfefd 100644 --- a/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md +++ b/translations/pt-BR/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: Migrar uma equipe de administradores para permissões de organização aprimoradas -intro: 'Se sua organização foi criada depois de setembro de 2015, tem permissões de organização aprimoradas por padrão. Organizações criadas antes de setembro de 2015 podem precisar migrar proprietários e equipes de administradores antigos para o modelo de permissões aprimoradas. Integrantes de equipes de administradores legadas mantêm automaticamente a capacidade de criar repositórios até que as equipes sejam migradas para o modelo de permissões de organização aprimoradas.' +title: Migrating admin teams to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions/ + - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions - /articles/migrating-admin-teams-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions versions: @@ -12,34 +12,37 @@ versions: topics: - Organizations - Teams -shortTitle: Migrar equipe de administração +shortTitle: Migrate admin team --- -Por padrão, todos os integrantes da organização podem criar repositórios. Se você restringir [as permissões de criação de repositórios](/articles/restricting-repository-creation-in-your-organization) para proprietários de organizações e sua organização foi criada sob a estrutura de permissões de organização legadas, os integrantes das equipes de administradores legadas ainda conseguirão criar repositórios. +By default, all organization members can create repositories. If you restrict [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) to organization owners, and your organization was created under the legacy organization permissions structure, members of legacy admin teams will still be able to create repositories. -Equipes de administradores legadas são equipes que foram criadas com o nível de permissão de administrador na estrutura de permissões de organização legadas. Integrantes dessas equipes conseguiam criar repositórios para a organização, e essa capacidade foi preservada na estrutura de permissões de organização aprimoradas. +Legacy admin teams are teams that were created with the admin permission level under the legacy organization permissions structure. Members of these teams were able to create repositories for the organization, and we've preserved this ability in the improved organization permissions structure. -Você pode remover essa capacidade migrando suas equipes de administradores legadas para as permissões de organização aprimoradas. +You can remove this ability by migrating your legacy admin teams to the improved organization permissions. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**Aviso:** se sua organização desabilitou [as permissões de criação de repositórios](/articles/restricting-repository-creation-in-your-organization) para todos os integrantes, alguns integrantes de equipes de administradores legadas podem perder as permissões de criação de repositórios. Se a organização habilitou a criação de repositórios pelos integrantes, migrar as equipes de administradores legadas para permissões de organização aprimoradas não afetará a capacidade de criação de repositórios pelos integrantes de equipes. +**Warning:** If your organization has disabled [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) for all members, some members of legacy admin teams may lose repository creation permissions. If your organization has enabled member repository creation, migrating legacy admin teams to improved organization permissions will not affect team members' ability to create repositories. {% endwarning %} -## Migrar todas as equipes de administradores legadas da organização +## Migrating all of your organization's legacy admin teams {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.teams_sidebar %} -1. Revise as equipes de administradores legadas da organização e clique em **Migrate all teams** (Migrar todas as equipes). ![Botão Migrate all teams (Migrar todas as equipes)](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) -1. Leia as informações sobre possíveis alterações de permissões para integrantes dessas equipes e clique em **Migrate all teams** (Migrar todas as equipes). ![Botão Confirm migration (Confirmar migração)](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) +1. Review your organization's legacy admin teams, then click **Migrate all teams**. + ![Migrate all teams button](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) +1. Read the information about possible permissions changes for members of these teams, then click **Migrate all teams.** + ![Confirm migration button](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) -## Migrar uma única equipe de administradores +## Migrating a single admin team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -1. Na caixa de descrição de equipe, clique em **Migrate team** (Migrar equipe). ![Botão Migrate team (Migrar equipe)](/assets/images/help/teams/migrate-a-legacy-admin-team.png) +1. In the team description box, click **Migrate team**. + ![Migrate team button](/assets/images/help/teams/migrate-a-legacy-admin-team.png) diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md index 26c26bde61..a6dac889cb 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md @@ -1,8 +1,8 @@ --- -title: Adicionar integrantes da organização a uma equipe -intro: 'As pessoas com permissões de proprietário ou mantenedor de equipe podem adicionar integrantes da organização às equipes. As pessoas com permissões de proprietário também podem {% ifversion fpt or ghec %}convidar não integrantes para ingressar em{% else %}adicionar não integrantes a{% endif %} uma equipe e na organização.' +title: Adding organization members to a team +intro: 'People with owner or team maintainer permissions can add organization members to teams. People with owner permissions can also {% ifversion fpt or ghec %}invite non-members to join{% else %}add non-members to{% endif %} a team and the organization.' redirect_from: - - /articles/adding-organization-members-to-a-team-early-access-program/ + - /articles/adding-organization-members-to-a-team-early-access-program - /articles/adding-organization-members-to-a-team - /github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team versions: @@ -13,7 +13,7 @@ versions: topics: - Organizations - Teams -shortTitle: Adicionar integrantes a uma equipe +shortTitle: Add members to a team --- {% data reusables.organizations.team-synchronization %} @@ -22,13 +22,14 @@ shortTitle: Adicionar integrantes a uma equipe {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -6. Acima da lista de integrantes da equipe, clique em **Adicionar um integrante**. ![Botão Add member (Adicionar integrante)](/assets/images/help/teams/add-member-button.png) +6. Above the list of team members, click **Add a member**. +![Add member button](/assets/images/help/teams/add-member-button.png) {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} {% ifversion fpt or ghec %}{% data reusables.organizations.cancel_org_invite %}{% endif %} -## Leia mais +## Further reading -- "[Sobre equipes](/articles/about-teams)" -- "[Gerenciar o acesso da equipe a um repositório da organização](/articles/managing-team-access-to-an-organization-repository)" +- "[About teams](/articles/about-teams)" +- "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)" diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md index 600e6d777b..457c1d5b7f 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md @@ -1,8 +1,8 @@ --- title: Assigning the team maintainer role to a team member -intro: You can give a team member the ability to manage team membership and settings by assigning the team maintainer role. +intro: 'You can give a team member the ability to manage team membership and settings by assigning the team maintainer role.' redirect_from: - - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program/ + - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program - /articles/giving-team-maintainer-permissions-to-an-organization-member - /github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member - /organizations/managing-peoples-access-to-your-organization-with-roles/giving-team-maintainer-permissions-to-an-organization-member @@ -22,21 +22,21 @@ permissions: Organization owners can promote team members to team maintainers. People with the team maintainer role can manage team membership and settings. -- [Alterar o nome e a descrição da equipe](/articles/renaming-a-team) -- [Alterar a visibilidade da equipe](/articles/changing-team-visibility) -- [Pedir para adicionar uma equipe secundária](/articles/requesting-to-add-a-child-team) -- [Solicitar a adição ou alteração de uma equipe principal](/articles/requesting-to-add-or-change-a-parent-team) -- [Definir a imagem de perfil da equipe](/articles/setting-your-team-s-profile-picture) -- [Editar discussões de equipe](/articles/managing-disruptive-comments/#editing-a-comment) -- [Excluir discussões de equipe](/articles/managing-disruptive-comments/#deleting-a-comment) -- [Adicionar integrantes da organização à equipe](/articles/adding-organization-members-to-a-team) -- [Remover membros da organização da equipe](/articles/removing-organization-members-from-a-team) -- Remover acesso da equipe aos repositórios{% ifversion fpt or ghes or ghae or ghec %} -- [Gerenciar atribuição de código para a equipe](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} -- [Gerenciar lembretes agendados para pull requests](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} +- [Change the team's name and description](/articles/renaming-a-team) +- [Change the team's visibility](/articles/changing-team-visibility) +- [Request to add a child team](/articles/requesting-to-add-a-child-team) +- [Request to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team) +- [Set the team profile picture](/articles/setting-your-team-s-profile-picture) +- [Edit team discussions](/articles/managing-disruptive-comments/#editing-a-comment) +- [Delete team discussions](/articles/managing-disruptive-comments/#deleting-a-comment) +- [Add organization members to the team](/articles/adding-organization-members-to-a-team) +- [Remove organization members from the team](/articles/removing-organization-members-from-a-team) +- Remove the team's access to repositories{% ifversion fpt or ghes or ghae or ghec %} +- [Manage code review assignment for the team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} +- [Manage scheduled reminders for pull requests](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} -## Promover um integrante de organização a mantenedor de equipe +## Promoting an organization member to team maintainer Before you can promote an organization member to team maintainer, the person must already be a member of the team. @@ -44,6 +44,9 @@ Before you can promote an organization member to team maintainer, the person mus {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -4. Selecione a pessoa que você gostaria de promover a mantenedor de equipe. ![Caixa de seleção ao lado de integrante de organização](/assets/images/help/teams/team-member-check-box.png) -5. Acesse o menu suspenso que está acima da lista de integrantes da equipe e clique em **Change role...** (Alterar função). ![Menu suspenso com opção change role (alterar função)](/assets/images/help/teams/bulk-edit-drop-down.png) -6. Selecione uma nova função e clique em **Change role** (Alterar função). ![Botão de rádio para funções de Mantendor ou Integrante](/assets/images/help/teams/team-role-modal.png) +4. Select the person or people you'd like to promote to team maintainer. +![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Change role...**. +![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) +6. Select a new role and click **Change role**. +![Radio buttons for Maintainer or Member roles](/assets/images/help/teams/team-role-modal.png) diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/creating-a-team.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/creating-a-team.md index 9224f9ceec..7422a82371 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -2,7 +2,7 @@ title: Creating a team intro: You can create independent or nested teams to manage repository permissions and mentions for groups of people. redirect_from: - - /articles/creating-a-team-early-access-program/ + - /articles/creating-a-team-early-access-program - /articles/creating-a-team - /github/setting-up-and-managing-organizations-and-teams/creating-a-team versions: diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/index.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/index.md index d5d9a77d4b..ebe04edd68 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/index.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/index.md @@ -1,15 +1,15 @@ --- -title: Organizar integrantes em equipes -intro: 'Você pode agrupar os integrantes da organização em equipes que reflitam sua empresa ou a estrutura do grupo, com permissões de acesso em cascata e menções.' +title: Organizing members into teams +intro: You can group organization members into teams that reflect your company or group's structure with cascading access permissions and mentions. redirect_from: - - /articles/setting-up-teams-improved-organization-permissions/ - - /articles/setting-up-teams-for-accessing-organization-repositories/ - - /articles/creating-teams/ - - /articles/adding-people-to-teams-in-an-organization/ - - /articles/removing-a-member-from-a-team-in-your-organization/ - - /articles/setting-up-teams/ - - /articles/maintaining-teams-improved-organization-permissions/ - - /articles/maintaining-teams/ + - /articles/setting-up-teams-improved-organization-permissions + - /articles/setting-up-teams-for-accessing-organization-repositories + - /articles/creating-teams + - /articles/adding-people-to-teams-in-an-organization + - /articles/removing-a-member-from-a-team-in-your-organization + - /articles/setting-up-teams + - /articles/maintaining-teams-improved-organization-permissions + - /articles/maintaining-teams - /articles/organizing-members-into-teams - /github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams versions: @@ -37,6 +37,6 @@ children: - /disabling-team-discussions-for-your-organization - /managing-scheduled-reminders-for-your-team - /deleting-a-team -shortTitle: Organizar integrantes em equipes +shortTitle: Organize members into teams --- diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md index 8ff72abc79..6386e39cc6 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md @@ -1,8 +1,8 @@ --- -title: Movendo uma equipe na hierarquia da organização -intro: 'Mantenedores de equipes e proprietários de organizações podem encaixar uma equipe abaixo de uma equipe principal, ou ainda, alterar ou remover uma principal da equipe aninhada.' +title: Moving a team in your organization’s hierarchy +intro: 'Team maintainers and organization owners can nest a team under a parent team, or change or remove a nested team''s parent.' redirect_from: - - /articles/changing-a-team-s-parent/ + - /articles/changing-a-team-s-parent - /articles/moving-a-team-in-your-organization-s-hierarchy - /articles/moving-a-team-in-your-organizations-hierarchy - /github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy @@ -14,31 +14,34 @@ versions: topics: - Organizations - Teams -shortTitle: Mover uma equipe +shortTitle: Move a team --- -Proprietários de organizações podem mudar a principal de qualquer equipe. Mantenedores de equipes podem alterar a principal de uma equipe se forem mantenedores da equipe secundária e da equipe principal. Mantenedores de equipe sem permissões de mantenedor na equipe secundária podem solicitar para adicionar uma equipe principal ou secundária. Para obter mais informações, consulte "[Solicitar adição ou alteraração de uma equipe principal](/articles/requesting-to-add-or-change-a-parent-team)" e "[Solicitar adição de uma equipe secundária](/articles/requesting-to-add-a-child-team)". +Organization owners can change the parent of any team. Team maintainers can change a team's parent if they are maintainers in both the child team and the parent team. Team maintainers without maintainer permissions in the child team can request to add a parent or child team. For more information, see "[Requesting to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team)" and "[Requesting to add a child team](/articles/requesting-to-add-a-child-team)." {% data reusables.organizations.child-team-inherits-permissions %} {% tip %} -**Dicas:** -- Você não pode alterar uma equipe principal para equipe secreta. Para obter mais informações, consulte "[Sobre equipes](/articles/about-teams)". -- Você não pode encaixar uma equipe principal sob uma de suas equipes secundárias. +**Tips:** +- You cannot change a team's parent to a secret team. For more information, see "[About teams](/articles/about-teams)." +- You cannot nest a parent team beneath one of its child teams. {% endtip %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.teams %} -4. Na lista de equipes, clique no nome da equipe cuja principal você deseja alterar. ![Lista das equipes da organização](/assets/images/help/teams/click-team-name.png) +4. In the list of teams, click the name of the team whose parent you'd like to change. + ![List of the organization's teams](/assets/images/help/teams/click-team-name.png) {% data reusables.organizations.team_settings %} -6. Use o menu suspenso para escolher uma equipe principal ou para remover uma principal existente e selecione **Clear selected value** (Limpar valor selecionado). ![Menu suspenso listando as equipes da organização](/assets/images/help/teams/choose-parent-team.png) -7. Clique em **Atualizar**. +6. Use the drop-down menu to choose a parent team, or to remove an existing parent, select **Clear selected value**. + ![Drop-down menu listing the organization's teams](/assets/images/help/teams/choose-parent-team.png) +7. Click **Update**. {% data reusables.repositories.changed-repository-access-permissions %} -9. Clique em **Confirm new parent team** (Confirmar nova equipe principal). ![Caixa de diálogo modal com informações sobre as alterações nas permissões de acesso ao repositório](/assets/images/help/teams/confirm-new-parent-team.png) +9. Click **Confirm new parent team**. + ![Modal box with information about the changes in repository access permissions](/assets/images/help/teams/confirm-new-parent-team.png) -## Leia mais +## Further reading -- "[Sobre equipes](/articles/about-teams)" +- "[About teams](/articles/about-teams)" diff --git a/translations/pt-BR/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md b/translations/pt-BR/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md index 00d75ed3c3..aba9635cbe 100644 --- a/translations/pt-BR/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md +++ b/translations/pt-BR/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md @@ -1,8 +1,8 @@ --- -title: Remover integrantes da organização de uma equipe -intro: Os usuários com permissões de *proprietário* ou *mantenedor de equipe* podem remover integrantes de uma equipe. Isso pode ser necessário se um usuário não precisar mais acessar um repositório ao qual a equipe tem acesso ou se um usuário deixar de participar dos projetos de uma equipe. +title: Removing organization members from a team +intro: 'People with *owner* or *team maintainer* permissions can remove team members from a team. This may be necessary if a person no longer needs access to a repository the team grants, or if a person is no longer focused on a team''s projects.' redirect_from: - - /articles/removing-organization-members-from-a-team-early-access-program/ + - /articles/removing-organization-members-from-a-team-early-access-program - /articles/removing-organization-members-from-a-team - /github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team versions: @@ -13,13 +13,15 @@ versions: topics: - Organizations - Teams -shortTitle: Remover integrantes +shortTitle: Remove members --- -{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} +{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -4. Selecione um ou mais integrantes que deseja remover. ![Caixa de seleção ao lado de integrante de organização](/assets/images/help/teams/team-member-check-box.png) -5. Use o menu suspenso acima da lista de integrantes da equipe e clique em **Remove from team** (Remover da equipe). ![Menu suspenso com opção change role (alterar função)](/assets/images/help/teams/bulk-edit-drop-down.png) +4. Select the person or people you'd like to remove. + ![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Remove from team**. + ![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) diff --git a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md index 4af23df76d..9e952acc4d 100644 --- a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md +++ b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md @@ -1,8 +1,8 @@ --- -title: Sobre restrições de acesso do aplicativo OAuth -intro: 'As organizações podem escolher quais {% data variables.product.prodname_oauth_apps %} têm acesso aos seus repositórios e outros recursos, habilitando as restrições de acesso de {% data variables.product.prodname_oauth_app %}.' +title: About OAuth App access restrictions +intro: 'Organizations can choose which {% data variables.product.prodname_oauth_apps %} have access to their repositories and other resources by enabling {% data variables.product.prodname_oauth_app %} access restrictions.' redirect_from: - - /articles/about-third-party-application-restrictions/ + - /articles/about-third-party-application-restrictions - /articles/about-oauth-app-access-restrictions - /github/setting-up-and-managing-organizations-and-teams/about-oauth-app-access-restrictions versions: @@ -11,58 +11,58 @@ versions: topics: - Organizations - Teams -shortTitle: Acesso ao aplicativo OAuth +shortTitle: OAuth App access --- -## Sobre restrições de acesso do aplicativo OAuth +## About OAuth App access restrictions -Quando as restrições de acesso do {% data variables.product.prodname_oauth_app %} são habilitadas, os integrantes da organização não podem autorizar o acesso do {% data variables.product.prodname_oauth_app %} aos recursos da organização. Os integrantes da organização podem solicitar a aprovação do proprietário para {% data variables.product.prodname_oauth_apps %} que gostariam de usar, e os proprietários da organização receberão uma notificação de solicitações pendentes. +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members cannot authorize {% data variables.product.prodname_oauth_app %} access to organization resources. Organization members can request owner approval for {% data variables.product.prodname_oauth_apps %} they'd like to use, and organization owners receive a notification of pending requests. {% data reusables.organizations.oauth_app_restrictions_default %} {% tip %} -**Dica**: quando uma organização não configura as restrições de acesso do {% data variables.product.prodname_oauth_app %}, qualquer {% data variables.product.prodname_oauth_app %} autorizado por um integrante da organização também pode acessar os recursos privados da organização. +**Tip**: When an organization has not set up {% data variables.product.prodname_oauth_app %} access restrictions, any {% data variables.product.prodname_oauth_app %} authorized by an organization member can also access the organization's private resources. {% endtip %} {% ifversion fpt %} -Para proteger ainda mais os recursos da sua organização, você pode fazer a atualização para {% data variables.product.prodname_ghe_cloud %}, que inclui funcionalidades de segurança como logon único SAML. {% data reusables.enterprise.link-to-ghec-trial %} +To further protect your organization's resources, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes security features like SAML single sign-on. {% data reusables.enterprise.link-to-ghec-trial %} {% endif %} -## Configurar as restrições de acesso do {% data variables.product.prodname_oauth_app %} +## Setting up {% data variables.product.prodname_oauth_app %} access restrictions -Quando um proprietário da organização configura as restrições de acesso do {% data variables.product.prodname_oauth_app %} pela primeira vez: +When an organization owner sets up {% data variables.product.prodname_oauth_app %} access restrictions for the first time: -- Os **aplicativos que a organização possui** recebem acesso automaticamente aos recursos da organização. -- **{% data variables.product.prodname_oauth_apps %}** perde acesso imediato aos recursos da organização. -- As **chaves SSH criadas antes de fevereiro de 2014** perdem imediatamente o acesso aos recursos da organização (isso inclui chaves de implantação e usuário). -- As **chaves SSH criadas pelos {% data variables.product.prodname_oauth_apps %} durante ou após fevereiro de 2014** perdem acesso imediatamente aos recursos da organização. -- As **Entregas de Hook de repositórios privados** não serão mais enviadas para {% data variables.product.prodname_oauth_apps %} não aprovado. -- O **Acesso da API** a recursos da organização privada não está disponível para {% data variables.product.prodname_oauth_apps %} não aprovado. Além disso, não há ações de criação, atualização ou exclusão com privilégios em recursos de organização pública. -- Os **hooks criados pelos usuários e antes de maio de 2014** não serão afetados. -- As **bifurcações privadas dos repositórios de propriedade da organização** estão sujeitas às restrições de acesso da organização. +- **Applications that are owned by the organization** are automatically given access to the organization's resources. +- **{% data variables.product.prodname_oauth_apps %}** immediately lose access to the organization's resources. +- **SSH keys created before February 2014** immediately lose access to the organization's resources (this includes user and deploy keys). +- **SSH keys created by {% data variables.product.prodname_oauth_apps %} during or after February 2014** immediately lose access to the organization's resources. +- **Hook deliveries from private organization repositories** will no longer be sent to unapproved {% data variables.product.prodname_oauth_apps %}. +- **API access** to private organization resources is not available for unapproved {% data variables.product.prodname_oauth_apps %}. In addition, there are no privileged create, update, or delete actions on public organization resources. +- **Hooks created by users and hooks created before May 2014** will not be affected. +- **Private forks of organization-owned repositories** are subject to the organization's access restrictions. -## Resolver falhas de acesso de SSH +## Resolving SSH access failures -Quando uma chave SSH criada antes de fevereiro de 2014 perde acesso a uma organização com restrições de acesso do {% data variables.product.prodname_oauth_app %} habilitadas, as tentativas de acesso subsequentes do SSH falharão. Os usuários encontrarão uma mensagem de erro direcionando-as a uma URL onde podem aprovar a chave ou fazer upload de uma chave confiável. +When an SSH key created before February 2014 loses access to an organization with {% data variables.product.prodname_oauth_app %} access restrictions enabled, subsequent SSH access attempts will fail. Users will encounter an error message directing them to a URL where they can approve the key or upload a trusted key in its place. ## Webhooks -Quando um {% data variables.product.prodname_oauth_app %} receber acesso à organização depois que as restrições forem habilitadas, os webhooks preexistentes criados por esse {% data variables.product.prodname_oauth_app %} retomarão o envio. +When an {% data variables.product.prodname_oauth_app %} is granted access to the organization after restrictions are enabled, any pre-existing webhooks created by that {% data variables.product.prodname_oauth_app %} will resume dispatching. -Quando uma organização remover o acesso de um {% data variables.product.prodname_oauth_app %} anteriormente aprovado, todos os webhooks preexistentes criados por esse aplicativo não serão mais enviados (esses hooks serão desabilitados, mas não excluídos). +When an organization removes access from a previously-approved {% data variables.product.prodname_oauth_app %}, any pre-existing webhooks created by that application will no longer be dispatched (these hooks will be disabled, but not deleted). -## Reabilitando restrições de acesso +## Re-enabling access restrictions -Se uma organização desabilitar as restrições de acesso do {% data variables.product.prodname_oauth_app %} e, posteriormente, reabilitá-las, os {% data variables.product.prodname_oauth_app %}s anteriormente aprovados receberão acesso automaticamente aos recursos da organização. +If an organization disables {% data variables.product.prodname_oauth_app %} access application restrictions, and later re-enables them, previously approved {% data variables.product.prodname_oauth_app %} are automatically granted access to the organization's resources. -## Leia mais +## Further reading -- "[Habilitar restrições de acesso do {% data variables.product.prodname_oauth_app %} para sua organização](/articles/enabling-oauth-app-access-restrictions-for-your-organization)" -- "[Aprovando {% data variables.product.prodname_oauth_apps %} para sua organização](/articles/approving-oauth-apps-for-your-organization)" -- "[Revisar integrações instaladas da sua organização](/articles/reviewing-your-organization-s-installed-integrations)" -- "[Negar acesso ao {% data variables.product.prodname_oauth_app %} anteriormente aprovado para sua organização](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization)" -- "[Desabilitar restrições de acesso do {% data variables.product.prodname_oauth_app %} para sua organização](/articles/disabling-oauth-app-access-restrictions-for-your-organization)" -- "[Solicitando aprovação da organização para {% data variables.product.prodname_oauth_apps %}](/articles/requesting-organization-approval-for-oauth-apps)" -- "[Autorizar {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" +- "[Enabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/enabling-oauth-app-access-restrictions-for-your-organization)" +- "[Approving {% data variables.product.prodname_oauth_apps %} for your organization](/articles/approving-oauth-apps-for-your-organization)" +- "[Reviewing your organization's installed integrations](/articles/reviewing-your-organization-s-installed-integrations)" +- "[Denying access to a previously approved {% data variables.product.prodname_oauth_app %} for your organization](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization)" +- "[Disabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/disabling-oauth-app-access-restrictions-for-your-organization)" +- "[Requesting organization approval for {% data variables.product.prodname_oauth_apps %}](/articles/requesting-organization-approval-for-oauth-apps)" +- "[Authorizing {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" diff --git a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md index eb5b85dce0..c945c1acab 100644 --- a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md +++ b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Aprovar aplicativos OAuth na organização -intro: 'Quando uma integrante da organização solicita acesso do {% data variables.product.prodname_oauth_app %} aos recursos da organização, os proprietários da organização podem aprová-la ou negá-la.' +title: Approving OAuth Apps for your organization +intro: 'When an organization member requests {% data variables.product.prodname_oauth_app %} access to organization resources, organization owners can approve or deny the request.' redirect_from: - - /articles/approving-third-party-applications-for-your-organization/ + - /articles/approving-third-party-applications-for-your-organization - /articles/approving-oauth-apps-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/approving-oauth-apps-for-your-organization versions: @@ -11,17 +11,18 @@ versions: topics: - Organizations - Teams -shortTitle: Aprovar aplicativos OAuth +shortTitle: Approve OAuth Apps --- - -Quando as restrições de acesso do {% data variables.product.prodname_oauth_app %} são habilitadas, os integrantes da organização devem [solicitar aprovação](/articles/requesting-organization-approval-for-oauth-apps) de um proprietário da organização para que eles possam autorizar um {% data variables.product.prodname_oauth_app %} que tenha acesso aos recursos da organização. +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members must [request approval](/articles/requesting-organization-approval-for-oauth-apps) from an organization owner before they can authorize an {% data variables.product.prodname_oauth_app %} that has access to the organization's resources. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. Ao lado do aplicativo que deseja aprovar, clique em **Review** (Revisar). ![Link de solicitação de revisão](/assets/images/help/settings/settings-third-party-approve-review.png) -6. Depois que revisar as informações sobre o aplicativo solicitado, clique em **Grant access** (Conceder acesso). ![Botão Grant access (Conceder acesso)](/assets/images/help/settings/settings-third-party-approve-grant.png) +5. Next to the application you'd like to approve, click **Review**. +![Review request link](/assets/images/help/settings/settings-third-party-approve-review.png) +6. After you review the information about the requested application, click **Grant access**. +![Grant access button](/assets/images/help/settings/settings-third-party-approve-grant.png) -## Leia mais +## Further reading -- "[Sobre restrições de acesso do {% data variables.product.prodname_oauth_app %}](/articles/about-oauth-app-access-restrictions)" +- "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)" diff --git a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md index 40fe5dc611..da3f557b72 100644 --- a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md +++ b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Negar acesso a um aplicativo OAuth previamente aprovado para a organização -intro: 'Se uma organização não requer mais um {% data variables.product.prodname_oauth_app %} previamente autorizado, os proprietários podem remover o acesso do aplicativo aos recursos da organização.' +title: Denying access to a previously approved OAuth App for your organization +intro: 'If an organization no longer requires a previously authorized {% data variables.product.prodname_oauth_app %}, owners can remove the application''s access to the organization''s resources.' redirect_from: - - /articles/denying-access-to-a-previously-approved-application-for-your-organization/ + - /articles/denying-access-to-a-previously-approved-application-for-your-organization - /articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/denying-access-to-a-previously-approved-oauth-app-for-your-organization versions: @@ -11,11 +11,13 @@ versions: topics: - Organizations - Teams -shortTitle: Negar aplicativo OAuth +shortTitle: Deny OAuth App --- {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. Ao lado do aplicativo que deseja desabilitar, clique em {% octicon "pencil" aria-label="The edit icon" %}. ![Ícone Edit (Editar)](/assets/images/help/settings/settings-third-party-deny-edit.png) -6. Clique em **Deny access** (Negar). ![Botão Deny confirmation (Negar confirmação)](/assets/images/help/settings/settings-third-party-deny-confirm.png) +5. Next to the application you'd like to disable, click {% octicon "pencil" aria-label="The edit icon" %}. + ![Edit icon](/assets/images/help/settings/settings-third-party-deny-edit.png) +6. Click **Deny access**. + ![Deny confirmation button](/assets/images/help/settings/settings-third-party-deny-confirm.png) diff --git a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md index 87b213b155..4931bc44cc 100644 --- a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Desabilitar restrições de acesso do aplicativo OAuth da sua organização -intro: 'Os proprietários da organização podem desabilitar as restrições em {% data variables.product.prodname_oauth_apps %} que têm acesso aos recursos da organização.' +title: Disabling OAuth App access restrictions for your organization +intro: 'Organization owners can disable restrictions on the {% data variables.product.prodname_oauth_apps %} that have access to the organization''s resources.' redirect_from: - - /articles/disabling-third-party-application-restrictions-for-your-organization/ + - /articles/disabling-third-party-application-restrictions-for-your-organization - /articles/disabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/disabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,17 +11,19 @@ versions: topics: - Organizations - Teams -shortTitle: Desabilitar o aplicativo OAuth +shortTitle: Disable OAuth App --- {% danger %} -**Aviso**: com a desabilitação das restrições de acesso do {% data variables.product.prodname_oauth_app %} da sua organização, qualquer integrante da organização autorizará automaticamente o acesso do {% data variables.product.prodname_oauth_app %} aos recursos privados da organização ao aprovar um aplicativo para ser usado nas configurações de conta pessoal dele. +**Warning**: When you disable {% data variables.product.prodname_oauth_app %} access restrictions for your organization, any organization member will automatically authorize {% data variables.product.prodname_oauth_app %} access to the organization's private resources when they approve an application for use in their personal account settings. {% enddanger %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. Clique em **Remove restrictions** (Remover restrições). ![Botão Remove restrictions (Remover restrições)](/assets/images/help/settings/settings-third-party-remove-restrictions.png) -6. Depois de revisar as informações sobre desabilitação de restrições de aplicativos de terceiros, clique em **Yes, remove application restrictions** (Sim, remover restrições de aplicativos). ![Botão de remover confirmação](/assets/images/help/settings/settings-third-party-confirm-disable.png) +5. Click **Remove restrictions**. + ![Remove restrictions button](/assets/images/help/settings/settings-third-party-remove-restrictions.png) +6. After you review the information about disabling third-party application restrictions, click **Yes, remove application restrictions**. + ![Remove confirmation button](/assets/images/help/settings/settings-third-party-confirm-disable.png) diff --git a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md index cf6da9811a..5ad4a078f8 100644 --- a/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/pt-BR/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: Habilitar restrições de acesso do aplicativo OAuth da sua organização -intro: 'Os proprietários da organização podem habilitar restrições de acesso do {% data variables.product.prodname_oauth_app %} para impedir que aplicativos não confiáveis acessem recursos da organização ao permitir que integrantes da organização usem {% data variables.product.prodname_oauth_apps %} para suas contas pessoais.' +title: Enabling OAuth App access restrictions for your organization +intro: 'Organization owners can enable {% data variables.product.prodname_oauth_app %} access restrictions to prevent untrusted apps from accessing the organization''s resources while allowing organization members to use {% data variables.product.prodname_oauth_apps %} for their personal accounts.' redirect_from: - - /articles/enabling-third-party-application-restrictions-for-your-organization/ + - /articles/enabling-third-party-application-restrictions-for-your-organization - /articles/enabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,22 +11,24 @@ versions: topics: - Organizations - Teams -shortTitle: Ativar aplicativo OAuth +shortTitle: Enable OAuth App --- {% data reusables.organizations.oauth_app_restrictions_default %} {% warning %} -**Avisos**: -- A habilitação de restrições de acesso do {% data variables.product.prodname_oauth_app %} revogará o acesso da organização para todos os {% data variables.product.prodname_oauth_apps %} e chaves SSH previamente autorizados. Para obter mais informações, consulte "[Sobre restrições de acesso do {% data variables.product.prodname_oauth_app %}](/articles/about-oauth-app-access-restrictions)". -- Depois de configurar as restrições de acesso do {% data variables.product.prodname_oauth_app %}, lembre-se de tornar a autorizar qualquer {% data variables.product.prodname_oauth_app %} que requeira acesso aos dados privados da organização continuamente. Todos os integrantes da organização precisarão criar chaves SSH, e a organização precisará criar chaves de implantação conforme necessário. -- Quando as restrições de acesso do {% data variables.product.prodname_oauth_app %} estiverem habilitadas, os aplicativos poderão usar um token OAuth para acessar informações sobre transações do {% data variables.product.prodname_marketplace %}. +**Warnings**: +- Enabling {% data variables.product.prodname_oauth_app %} access restrictions will revoke organization access for all previously authorized {% data variables.product.prodname_oauth_apps %} and SSH keys. For more information, see "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)." +- Once you've set up {% data variables.product.prodname_oauth_app %} access restrictions, make sure to re-authorize any {% data variables.product.prodname_oauth_app %} that require access to the organization's private data on an ongoing basis. All organization members will need to create new SSH keys, and the organization will need to create new deploy keys as needed. +- When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, applications can use an OAuth token to access information about {% data variables.product.prodname_marketplace %} transactions. {% endwarning %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. Em "Third-party application access policy" (Política de acesso a aplicativos de terceiros), clique em **Setup application access restrictions** (Configurar restrições de acesso a aplicativos). ![Botão Set up restrictions (Configurar restrições)](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) -6. Depois de revisar as informações sobre restrições de acesso a terceiros, clique em **Restrict third-party application access** (Restringir acesso a aplicativos de terceiros). ![Botão Restriction confirmation (Confirmação de restrição)](/assets/images/help/settings/settings-third-party-restrict-confirm.png) +5. Under "Third-party application access policy," click **Setup application access restrictions**. + ![Set up restrictions button](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) +6. After you review the information about third-party access restrictions, click **Restrict third-party application access**. + ![Restriction confirmation button](/assets/images/help/settings/settings-third-party-restrict-confirm.png) diff --git a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md index 278c150948..8b423a877c 100644 --- a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md +++ b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: Sobre domínios personalizados e GitHub Pages -intro: 'O {% data variables.product.prodname_pages %} permite o uso de domínios personalizados, ou a alteração da raiz do URL do seu site do padrão, como ''octocat.github.io'', para qualquer domínio que você possua.' +title: About custom domains and GitHub Pages +intro: '{% data variables.product.prodname_pages %} supports using custom domains, or changing the root of your site''s URL from the default, like `octocat.github.io`, to any domain you own.' redirect_from: - - /articles/about-custom-domains-for-github-pages-sites/ - - /articles/about-supported-custom-domains/ - - /articles/custom-domain-redirects-for-your-github-pages-site/ + - /articles/about-custom-domains-for-github-pages-sites + - /articles/about-supported-custom-domains + - /articles/custom-domain-redirects-for-your-github-pages-site - /articles/about-custom-domains-and-github-pages - /github/working-with-github-pages/about-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: Domínios personalizados no GitHub Pages +shortTitle: Custom domains in GitHub Pages --- -## Domínios personalizados compatíveis +## Supported custom domains -O {% data variables.product.prodname_pages %} trabalha com dois tipos de domínio: subdomínios e domínios apex. Para obter uma lista de domínios personalizados não compatíveis, consulte "[Solução de problemas de domínios personalizados e {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)". +{% data variables.product.prodname_pages %} works with two types of domains: subdomains and apex domains. For a list of unsupported custom domains, see "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)." -| Tipo de domínio personalizado compatível | Exemplo | -| ---------------------------------------- | ------------------ | -| Subdomínio `www` | `www.example.com` | -| Subdomínio personalizado | `blog.example.com` | -| Domínio apex | `example.com` | +| Supported custom domain type | Example | +|---|---| +| `www` subdomain | `www.example.com` | +| Custom subdomain | `blog.example.com` | +| Apex domain | `example.com` | -Você pode definir as duas configurações apex e subdomínio de `www` para o seu site. Para obter mais informações sobre domínios apex, consulte "[Usar um domínio apex para o seu site {% data variables.product.prodname_pages %}](#using-an-apex-domain-for-your-github-pages-site)". +You can set up either or both of apex and `www` subdomain configurations for your site. For more information on apex domains, see "[Using an apex domain for your {% data variables.product.prodname_pages %} site](#using-an-apex-domain-for-your-github-pages-site)." -É recomendável sempre usar um subdomínio `www`, mesmo se você também usar um domínio apex. Ao criar um novo site com um domínio apex, tentamos proteger automaticamente o subdomínio `www` para uso ao servir o conteúdo do seu site. Se você configurar um subdomínio `www`, nós tentaremos proteger automaticamente o domínio apex associado. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". +We recommend always using a `www` subdomain, even if you also use an apex domain. When you create a new site with an apex domain, we automatically attempt to secure the `www` subdomain for use when serving your site's content. If you configure a `www` subdomain, we automatically attempt to secure the associated apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -Depois que você configurar um domínio personalizado para um site de usuário ou organização, o domínio personalizado substituirá a parte `<user>.github.io` ou `<organization>.github.io` da URL para qualquer site de projeto de propriedade da conta que não tenha um domínio personalizado configurado. Por exemplo, se o domínio personalizado para o site de usuário for `www.octocat.com` e você tiver um site de projeto sem domínio personalizado configurado que seja publicado de um repositório chamado `octo-project`, o site do {% data variables.product.prodname_pages %} para esse repositório estará disponível em `www.octocat.com/octo-project`. +After you configure a custom domain for a user or organization site, the custom domain will replace the `<user>.github.io` or `<organization>.github.io` portion of the URL for any project sites owned by the account that do not have a custom domain configured. For example, if the custom domain for your user site is `www.octocat.com`, and you have a project site with no custom domain configured that is published from a repository called `octo-project`, the {% data variables.product.prodname_pages %} site for that repository will be available at `www.octocat.com/octo-project`. -## Usar um subdomínio para seu site do {% data variables.product.prodname_pages %} +## Using a subdomain for your {% data variables.product.prodname_pages %} site -Um subdomínio é a parte de um URL antes do domínio raiz. Você pode configurar seu subdomínio como `www` ou como uma seção distinta do seu site, como `blog.example.com.`. +A subdomain is the part of a URL before the root domain. You can configure your subdomain as `www` or as a distinct section of your site, like `blog.example.com`. -Os subdomínios são configurados com um registro `CNAME` por meio do provedor DNS. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)". +Subdomains are configured with a `CNAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)." -### Subdomínios `www` +### `www` subdomains -Um subdomínio `www` é o tipo de subdomínio usado com mais frequência. Por exemplo, `www.example.com` inclui um subdomínio `www`. +A `www` subdomain is the most commonly used type of subdomain. For example, `www.example.com` includes a `www` subdomain. -Os subdomínios `www` são o tipo mais estável de domínio personalizado, pois os subdomínios `www` não são afetados pelas alterações nos endereços IP dos servidores do {% data variables.product.product_name %}. +`www` subdomains are the most stable type of custom domain because `www` subdomains are not affected by changes to the IP addresses of {% data variables.product.product_name %}'s servers. -### Subdomínios personalizados +### Custom subdomains -Um subdomínio personalizado é um tipo de subdomínio que não usa a variante padrão `www`. Os subdomínios personalizados são usados mais frequentemente quando você deseja duas seções distintas do site. Por exemplo, você pode criar um site chamado `blog.example.com.` e personalizar essa seção independentemente de `www.example.com`. +A custom subdomain is a type of subdomain that doesn't use the standard `www` variant. Custom subdomains are mostly used when you want two distinct sections of your site. For example, you can create a site called `blog.example.com` and customize that section independently from `www.example.com`. -## Usar um domínio apex para seu site do {% data variables.product.prodname_pages %} +## Using an apex domain for your {% data variables.product.prodname_pages %} site -Um domínio apex é um domínio personalizado que não contém um subdomínio, como `example.com`. Os domínios apex também são conhecidos como domínios base, bare, naked, apex raiz ou apex de zona. +An apex domain is a custom domain that does not contain a subdomain, such as `example.com`. Apex domains are also known as base, bare, naked, root apex, or zone apex domains. -Um domínio apex é configurado com um registro `A`, `ALIAS` ou `ANAME` por meio do provedor DNS. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)". +An apex domain is configured with an `A`, `ALIAS`, or `ANAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." -{% data reusables.pages.www-and-apex-domain-recommendation %} Para obter mais informações, consulte "[Gerenciar um domínio personalizado para o seu site de {% data variables.product.prodname_pages %}](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)". +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)." ## Securing the custom domain for your {% data variables.product.prodname_pages %} site {% data reusables.pages.secure-your-domain %} 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)" and "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -Há alguns motivos para que seu site possa ser desabilitado automaticamente. +There are a couple of reasons your site might be automatically disabled. -- Se você fizer downgrade do {% data variables.product.prodname_pro %} para o {% data variables.product.prodname_free_user %}, qualquer site do {% data variables.product.prodname_pages %} que esteja publicado no momento usando repositórios privados em sua conta terão a publicação cancelada. Para obter mais informações, consulte "[Fazer downgrade do plano de cobrança do {% data variables.product.prodname_dotcom %}](/articles/downgrading-your-github-billing-plan)". -- Se você transferir um repositório privado para uma conta pessoal que esteja usando o {% data variables.product.prodname_free_user %}, o repositório perderá o acesso ao recurso {% data variables.product.prodname_pages %} e o site do {% data variables.product.prodname_pages %} atualmente publicado terá a publicação cancelada. Para obter mais informações, consulte "[Transferir um repositório](/articles/transferring-a-repository)". +- If you downgrade from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, any {% data variables.product.prodname_pages %} sites that are currently published from private repositories in your account will be unpublished. For more information, see "[Downgrading your {% data variables.product.prodname_dotcom %} billing plan](/articles/downgrading-your-github-billing-plan)." +- If you transfer a private repository to a personal account that is using {% data variables.product.prodname_free_user %}, the repository will lose access to the {% data variables.product.prodname_pages %} feature, and the currently published {% data variables.product.prodname_pages %} site will be unpublished. For more information, see "[Transferring a repository](/articles/transferring-a-repository)." -## Leia mais +## Further reading -- "[Solucionar problemas de domínios personalizados e do {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md index 1a2be04124..df8f8b376f 100644 --- a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md +++ b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md @@ -1,14 +1,14 @@ --- -title: Configurar um domínio personalizado para o site do GitHub Pages -intro: 'É possível personalizar o nome de domínio do site do {% data variables.product.prodname_pages %}.' +title: Configuring a custom domain for your GitHub Pages site +intro: 'You can customize the domain name of your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/tips-for-configuring-an-a-record-with-your-dns-provider/ - - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/ - - /articles/configuring-an-a-record-with-your-dns-provider/ - - /articles/using-a-custom-domain-with-github-pages/ - - /articles/tips-for-configuring-a-cname-record/ - - /articles/setting-up-a-custom-domain-with-pages/ - - /articles/setting-up-a-custom-domain-with-github-pages/ + - /articles/tips-for-configuring-an-a-record-with-your-dns-provider + - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site + - /articles/configuring-an-a-record-with-your-dns-provider + - /articles/using-a-custom-domain-with-github-pages + - /articles/tips-for-configuring-a-cname-record + - /articles/setting-up-a-custom-domain-with-pages + - /articles/setting-up-a-custom-domain-with-github-pages - /articles/configuring-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/configuring-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -22,6 +22,5 @@ children: - /managing-a-custom-domain-for-your-github-pages-site - /verifying-your-custom-domain-for-github-pages - /troubleshooting-custom-domains-and-github-pages -shortTitle: Configurar um domínio personalizado +shortTitle: Configure a custom domain --- - diff --git a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md index 894b0e5a95..025d260cef 100644 --- a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md +++ b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md @@ -1,14 +1,14 @@ --- -title: Gerenciar um domínio personalizado do seu site do GitHub Pages -intro: 'É possível definir ou atualizar determinados registros DNS e as configurações de repositório para apontar o domínio padrão do seu site do {% data variables.product.prodname_pages %} para um domínio personalizado.' +title: Managing a custom domain for your GitHub Pages site +intro: 'You can set up or update certain DNS records and your repository settings to point the default domain for your {% data variables.product.prodname_pages %} site to a custom domain.' redirect_from: - - /articles/quick-start-setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain/ - - /articles/setting-up-a-www-subdomain/ - - /articles/setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain-and-www-subdomain/ - - /articles/adding-a-cname-file-to-your-repository/ - - /articles/setting-up-your-pages-site-repository/ + - /articles/quick-start-setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain + - /articles/setting-up-a-www-subdomain + - /articles/setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain-and-www-subdomain + - /articles/adding-a-cname-file-to-your-repository + - /articles/setting-up-your-pages-site-repository - /articles/managing-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -17,40 +17,41 @@ versions: ghec: '*' topics: - Pages -shortTitle: Gerenciar um domínio personalizado +shortTitle: Manage a custom domain --- -Pessoas com permissões de administrador para um repositório podem configurar um domínio personalizado de um site do {% data variables.product.prodname_pages %}. +People with admin permissions for a repository can configure a custom domain for a {% data variables.product.prodname_pages %} site. -## Sobre a configuração de domínio personalizado +## About custom domain configuration -Lembre-se de adicionar o domínio personalizado ao seu site do {% data variables.product.prodname_pages %} antes de configurar o domínio personalizado com o provedor DNS. Se você configurar o domínio personalizado com o provedor DNS sem adicioná-lo ao {% data variables.product.product_name %}, outra pessoa conseguirá hospedar um site em um dos seus subdomínios. +Make sure you add your custom domain to your {% data variables.product.prodname_pages %} site before configuring your custom domain with your DNS provider. Configuring your custom domain with your DNS provider without adding your custom domain to {% data variables.product.product_name %} could result in someone else being able to host a site on one of your subdomains. {% windows %} -O comando `dig`, que pode ser usado para verificar a configuração correta dos registros DNS, não está incluído no Windows. Antes de verificar se os registros DNS estão configurados corretamente, você deve instalar [BIND](https://www.isc.org/bind/). +The `dig` command, which can be used to verify correct configuration of DNS records, is not included in Windows. Before you can verify that your DNS records are configured correctly, you must install [BIND](https://www.isc.org/bind/). {% endwindows %} {% note %} -**Observação:** as alterações no DNS podem levar até 24 horas para serem propagadas. +**Note:** DNS changes can take up to 24 hours to propagate. {% endnote %} -## Configurando um subdomínio +## Configuring a subdomain -Para configurar um `www` ou um subdomínio personalizado como, por exemplo, `www.example.com` ou `blog.example.com`, você deve adicionar seu domínio nas configurações do repositório, o que criará um arquivo CNAME no repositório do seu site. Em seguida, configure um registro CNAME com seu provedor DNS. +To set up a `www` or custom subdomain, such as `www.example.com` or `blog.example.com`, you must add your domain in the repository settings, which will create a CNAME file in your site’s repository. After that, configure a CNAME record with your DNS provider. {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. Em "Domínio personalizado,", digite o seu domínio personalizado e clique em **Salvar**. Isso criará um commit que adiciona um arquivo _CNAME_ à raiz da sua fonte de publicação. ![Botão Salvar domínio personalizado](/assets/images/help/pages/save-custom-subdomain.png) -5. Navegue até o provedor DNS e crie um registro `CNAME` que aponte seu subdomínio para o domínio padrão do seu site. Por exemplo, se você quiser usar o subdomínio `www.example.com` para seu site de usuário, crie um registro `CNAME` que aponte `www.example.com` para `<user>.github.io`. Se você desejar usar o subdomínio `www.anotherexample.com` no seu site da organização, crie um registro `CNAME` que aponte `www. notherexample.com` para `<organization>.github.io`. O registro `CNAME` sempre deve apontar para `<user>.github.io` ou `<organization>.github.io`, excluindo o nome do repositório. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-subdomain.png) +5. Navigate to your DNS provider and create a `CNAME` record that points your subdomain to the default domain for your site. For example, if you want to use the subdomain `www.example.com` for your user site, create a `CNAME` record that points `www.example.com` to `<user>.github.io`. If you want to use the subdomain `www.anotherexample.com` for your organization site, create a `CNAME` record that points `www.anotherexample.com` to `<organization>.github.io`. The `CNAME` record should always point to `<user>.github.io` or `<organization>.github.io`, excluding the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. Para confirmar que o registro DNS foi configurado corretamente, use o comando `dig`, substituindo _WW.EXAMPLE.COM_ pelo seu subdomínio. +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your subdomain. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -61,36 +62,38 @@ Para configurar um `www` ou um subdomínio personalizado como, por exemplo, `www {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## Configurando um domínio apex +## Configuring an apex domain -Para configurar um domínio apex, como `example.com`, você deve configurar um arquivo</em> CNAME_ no seu repositório de {% data variables.product.prodname_pages %} e pelo menos um `ALIAS`, `ANAME` ou um registro `A` com seu provedor DNS.</p> +To set up an apex domain, such as `example.com`, you must configure a _CNAME_ file in your {% data variables.product.prodname_pages %} repository and at least one `ALIAS`, `ANAME`, or `A` record with your DNS provider. -{% data reusables.pages.www-and-apex-domain-recommendation %} Para obter mais informações, consulte "[Configurar um subdomínio](#configuring-a-subdomain)". +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Configuring a subdomain](#configuring-a-subdomain)." {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. Em "Domínio personalizado,", digite o seu domínio personalizado e clique em **Salvar**. Isso criará um commit que adiciona um arquivo _CNAME_ à raiz da sua fonte de publicação. ![Botão Salvar domínio personalizado](/assets/images/help/pages/save-custom-apex-domain.png) -5. Navegue até o provedor DNS e crie um registro `ALIAS`, `ANAME` ou `A`. Você também pode criar registros de `AAAA` para suporte ao IPv6. {% data reusables.pages.contact-dns-provider %} - - Para criar um registro `ALIAS` ou `ANAME`, aponte o domínio apex para o domínio padrão do seu site. {% data reusables.pages.default-domain-information %} - - Para criar registros `A`, aponte seu domínio apex para os endereços IP para {% data variables.product.prodname_pages %}. +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-apex-domain.png) +5. Navigate to your DNS provider and create either an `ALIAS`, `ANAME`, or `A` record. You can also create `AAAA` records for IPv6 support. {% data reusables.pages.contact-dns-provider %} + - To create an `ALIAS` or `ANAME` record, point your apex domain to the default domain for your site. {% data reusables.pages.default-domain-information %} + - To create `A` records, point your apex domain to the IP addresses for {% data variables.product.prodname_pages %}. ```shell 185.199.108.153 185.199.109.153 185.199.110.153 185.199.111.153 ``` - - Para criar os registros de </code>AAAA`, aponte o seu domínio apex para os endereços IP para {% data variables.product.prodname_pages %}. -<pre><code class="shell"> 2606:50c0:8000::153 + - To create `AAAA` records, point your apex domain to the IP addresses for {% data variables.product.prodname_pages %}. + ```shell + 2606:50c0:8000::153 2606:50c0:8001::153 2606:50c0:8002::153 2606:50c0:8003::153 -`</pre> + ``` {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. Para confirmar que o registro DNS foi configurado corretamente, use o comando `dig`, substituindo _WW.EXAMPLE.COM_ pelo domínio apex. Confirme que os resultados correspondem aos endereços IP do {% data variables.product.prodname_pages %} acima. - - Para registros de `A`. +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _EXAMPLE.COM_ with your apex domain. Confirm that the results match the IP addresses for {% data variables.product.prodname_pages %} above. + - For `A` records. ```shell $ dig <em>EXAMPLE.COM</em> +noall +answer -t A > <em>EXAMPLE.COM</em> 3600 IN A 185.199.108.153 @@ -98,7 +101,7 @@ Para configurar um domínio apex, como `example.com`, você deve configurar um a > <em>EXAMPLE.COM</em> 3600 IN A 185.199.110.153 > <em>EXAMPLE.COM</em> 3600 IN A 185.199.111.153 ``` - - Para registros `AAAA`. + - For `AAAA` records. ```shell $ dig <em>EXAMPLE.COM</em> +noall +answer -t AAAA > <em>EXAMPLE.COM</em> 3600 IN AAAA 2606:50c0:8000::153 @@ -109,16 +112,16 @@ Para configurar um domínio apex, como `example.com`, você deve configurar um a {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## Configurar um domínio apex e a variante de subdomínio `www` +## Configuring an apex domain and the `www` subdomain variant -Ao usar um domínio apex, recomendamos que você configure o seu site de {% data variables.product.prodname_pages %} para hospedar o conteúdo tanto no domínio apex quanto na variante de subdomínio `www`. +When using an apex domain, we recommend configuring your {% data variables.product.prodname_pages %} site to host content at both the apex domain and that domain's `www` subdomain variant. -Para configurar um subdomínio de `www` junto com o domínio apex, você deve primeiro configurar um domínio apex, que irá criar um `ALIAS`, `ANAME` ou registro `A` junto ao seu provedor DNS. Para obter mais informações, consulte "[Configurar um domínio apex](#configuring-an-apex-domain)". +To set up a `www` subdomain alongside the apex domain, you must first configure an apex domain, which will create an `ALIAS`, `ANAME`, or `A` record with your DNS provider. For more information, see "[Configuring an apex domain](#configuring-an-apex-domain)." -Depois de configurar o domínio apex, você deverá configurar um registro CNAME com seu provedor DNS. +After you configure the apex domain, you must configure a CNAME record with your DNS provider. -1. Acesse o provedor DNS e crie um registro `CNAME` que aponte `www.example.com` para o domínio padrão do seu site: `<user>.github.io` ou `<organization>.github.io`. Não inclua o nome do repositório. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} -2. Para confirmar que o registro DNS foi configurado corretamente, use o comando `dig` substituindo _WWW.EXAMPLE.COM_ pela sua variante de subdomínio `www`. +1. Navigate to your DNS provider and create a `CNAME` record that points `www.example.com` to the default domain for your site: `<user>.github.io` or `<organization>.github.io`. Do not include the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +2. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your `www` subdomain variant. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -126,17 +129,18 @@ Depois de configurar o domínio apex, você deverá configurar um registro CNAME > <em>YOUR-USERNAME</em>.github.io. 43192 IN CNAME <em> GITHUB-PAGES-SERVER </em>. > <em> GITHUB-PAGES-SERVER </em>. 22 IN A 192.0.2.1 ``` -## Remover um domínio personalizado +## Removing a custom domain {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. Em "Domínio personalizado, clique em **Remover**. ![Botão Salvar domínio personalizado](/assets/images/help/pages/remove-custom-domain.png) +4. Under "Custom domain," click **Remove**. + ![Save custom domain button](/assets/images/help/pages/remove-custom-domain.png) ## Securing your custom domain {% data reusables.pages.secure-your-domain %} 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)." -## Leia mais +## Further reading -- "[Solucionar problemas de domínios personalizados e do {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md index 84c38a891b..892a5af812 100644 --- a/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md +++ b/translations/pt-BR/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: Solucionar problemas de domínios personalizados e do GitHub Pages -intro: 'Você pode verificar os erros comuns para resolver problemas com domínios personalizados ou HTTPS no seu site do {% data variables.product.prodname_pages %}.' +title: Troubleshooting custom domains and GitHub Pages +intro: 'You can check for common errors to resolve issues with custom domains or HTTPS for your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/my-custom-domain-isn-t-working/ - - /articles/custom-domain-isn-t-working/ - - /articles/troubleshooting-custom-domains/ + - /articles/my-custom-domain-isn-t-working + - /articles/custom-domain-isn-t-working + - /articles/troubleshooting-custom-domains - /articles/troubleshooting-custom-domains-and-github-pages - /github/working-with-github-pages/troubleshooting-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: Solucione o problema de um domínio personalizado +shortTitle: Troubleshoot a custom domain --- -## Erros _CNAME_ +## _CNAME_ errors -Os domínios personalizados são armazenados em um arquivo _CNAME_ na raiz da fonte de publicação que pode ser adicionado ou atualizado manualmente ou por meio das configurações do repositório. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". +Custom domains are stored in a _CNAME_ file in the root of your publishing source. You can add or update this file through your repository settings or manually. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -Para que o site seja renderizado no domínio correto, verifique se o arquivo _CNAME_ ainda existe no repositório. Por exemplo, muitos geradores de site estáticos fazem push forçado para o repositório, o que pode substituir o arquivo _CNAME_ que foi adicionado ao repositório quando você configurou o domínio personalizado. Se você criar o site localmente e fizer push dos arquivos gerados para o {% data variables.product.product_name %}, primeiro insira o commit que adicionou o arquivo _CNAME_ ao repositório local, para que o arquivo seja incluído na criação. +For your site to render at the correct domain, make sure your _CNAME_ file still exists in the repository. For example, many static site generators force push to your repository, which can overwrite the _CNAME_ file that was added to your repository when you configured your custom domain. If you build your site locally and push generated files to {% data variables.product.product_name %}, make sure to pull the commit that added the _CNAME_ file to your local repository first, so the file will be included in the build. -Em seguida, verifique se o arquivo _CNAME_ está formatado corretamente. +Then, make sure the _CNAME_ file is formatted correctly. -- O nome de arquivo _CNAME_ deve estar todo em letras maiúsculas. -- O arquivo _CNAME_ só pode conter um domínio. Para apontar vários domínios para o site, é preciso configurar um redirecionamento por meio do provedor DNS. -- O arquivo _CNAME_ deve conter apenas o nome do domínio. Por exemplo, `www.example.com`, `blog.example.com` ou `example.com`. -- O nome de domínio precisa ser único em todos os sites de {% data variables.product.prodname_pages %}. Por exemplo, se o arquivo _CNAME_ de outro repositório contiver `example.com`, você não poderá usar `example.com` no arquivo _CNAME_ para o repositório. +- The _CNAME_ filename must be all uppercase. +- The _CNAME_ file can contain only one domain. To point multiple domains to your site, you must set up a redirect through your DNS provider. +- The _CNAME_ file must contain the domain name only. For example, `www.example.com`, `blog.example.com`, or `example.com`. +- The domain name must be unique across all {% data variables.product.prodname_pages %} sites. For example, if another repository's _CNAME_ file contains `example.com`, you cannot use `example.com` in the _CNAME_ file for your repository. -## Configuração incorreta do DNS +## DNS misconfiguration -Se você tiver problemas para apontar o domínio padrão do site para o domínio personalizado, entre em contato com seu provedor DNS. +If you have trouble pointing the default domain for your site to your custom domain, contact your DNS provider. -Você também pode usar um dos seguintes métodos para testar se os registros DNS do seu domínio personalizado estão configurados corretamente: +You can also use one of the following methods to test whether your custom domain's DNS records are configured correctly: -- Uma ferramenta CLI como `dig`. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para o seu site de {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". -- Uma ferramenta de pesquisa de DNS on-line. +- A CLI tool such as `dig`. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)". +- An online DNS lookup tool. -## Nomes de domínios personalizados que não são compatíveis +## Custom domain names that are unsupported -Se o seu domínio personalizado não for compatível, talvez você precise alterá-lo para um que tenha suporte. Você também pode entrar em contato com seu provedor DNS para ver se ele oferece serviços de encaminhamento para nomes de domínio. +If your custom domain is unsupported, you may need to change your domain to a supported domain. You can also contact your DNS provider to see if they offer forwarding services for domain names. -Verifique se o seu site não: -- Usa mais de um domínio apex. Por exemplo, `example.com` e `anotherexample.com`. -- Usa mais de um subdomínio `www`. Por exemplo, `www.example.com` e `www.anotherexample.com`. -- Usa um domínio apex e um subdomínio personalizado. Por exemplo, `example.com` e `docs.example.com`. +Make sure your site does not: +- Use more than one apex domain. For example, both `example.com` and `anotherexample.com`. +- Use more than one `www` subdomain. For example, both `www.example.com` and `www.anotherexample.com`. +- Use both an apex domain and custom subdomain. For example, both `example.com` and `docs.example.com`. - A única exceção é o subdomínio `www`. Se configurado corretamente, o subdomínio `www` é automaticamente redirecionado para o domínio apex. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)". + The one exception is the `www` subdomain. If configured correctly, the `www` subdomain is automatically redirected to the apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." {% data reusables.pages.wildcard-dns-warning %} -Para obter uma lista de domínios personalizados compatíveis, consulte "[Sobre domínios personalizados e o {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)". +For a list of supported custom domains, see "[About custom domains and {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)." -## Erros de HTTPS +## HTTPS errors -É possível acessar por HTTPS os sites do {% data variables.product.prodname_pages %} que usem domínios personalizados e estejam corretamente configurados com registros DNS `CNAME`, `ALIAS`, `ANAME` ou `A`. Para obter mais informações, consulte "[Proteger seu site do {% data variables.product.prodname_pages %} com HTTPS](/articles/securing-your-github-pages-site-with-https)". +{% data variables.product.prodname_pages %} sites using custom domains that are correctly configured with `CNAME`, `ALIAS`, `ANAME`, or `A` DNS records can be accessed over HTTPS. For more information, see "[Securing your {% data variables.product.prodname_pages %} site with HTTPS](/articles/securing-your-github-pages-site-with-https)." -Depois que você configurar seu domínio personalizado, pode levar até uma hora para o seu site ser disponibilizado por HTTPS. Após a atualização das configurações DNS existentes, talvez seja necessário remover o domínio personalizado e tornar a adicioná-lo ao repositório do site para acionar o processo de habilitação do HTTPS. Para obter mais informações, consulte "[Gerenciar um domínio personalizado para seu site do {% data variables.product.prodname_pages %}](/articles/managing-a-custom-domain-for-your-github-pages-site)". +It can take up to an hour for your site to become available over HTTPS after you configure your custom domain. After you update existing DNS settings, you may need to remove and re-add your custom domain to your site's repository to trigger the process of enabling HTTPS. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -Se você estiver usando registros CAA (Certification Authority Authorization, Autorização da autoridade de certificação), pelo menos um deles deverá ter o valor `letsencrypt.org` para que o seu site possa ser acessado por HTTPS. Para obter mais informações, consulte "[Autorização da autoridade de certificação (CAA)](https://letsencrypt.org/docs/caa/)" na documentação de Let's Encrypt. +If you're using Certification Authority Authorization (CAA) records, at least one CAA record must exist with the value `letsencrypt.org` for your site to be accessible over HTTPS. For more information, see "[Certificate Authority Authorization (CAA)](https://letsencrypt.org/docs/caa/)" in the Let's Encrypt documentation. -## Formatação de URL no Linux +## URL formatting on Linux -Se a URL para o seu site incluir um nome de usuário ou de organização que começa ou termina com um traço ou contiver traços consecutivos, as pessoas que navegam com Linux receberão um erro de servidor quando tentarem visitar o site. Para corrigir isso, remova caracteres não alfanuméricos do seu nome de usuário do {% data variables.product.product_name %}. Para obter mais informações, consulte "[Alterar seu nome de usuário do {% data variables.product.prodname_dotcom %}](/articles/changing-your-github-username/)". +If the URL for your site contains a username or organization name that begins or ends with a dash, or contains consecutive dashes, people browsing with Linux will receive a server error when they attempt to visit your site. To fix this, change your {% data variables.product.product_name %} username to remove non-alphanumeric characters. For more information, see "[Changing your {% data variables.product.prodname_dotcom %} username](/articles/changing-your-github-username/)." -## Cache do navegador +## Browser cache -Se você tiver alterado ou removido recentemente seu domínio personalizado e não conseguir acessar a nova URL no navegador, talvez precise limpar o cache do navegador para alcançar a nova URL. Para obter mais informações sobre limpeza do cache, consulte a documentação do navegador. +If you've recently changed or removed your custom domain and can't access the new URL in your browser, you may need to clear your browser's cache to reach the new URL. For more information on clearing your cache, see your browser's documentation. diff --git a/translations/pt-BR/content/pages/index.md b/translations/pt-BR/content/pages/index.md index 57c2a06053..ac99f2500e 100644 --- a/translations/pt-BR/content/pages/index.md +++ b/translations/pt-BR/content/pages/index.md @@ -1,14 +1,13 @@ --- -title: Documentação do GitHub Pages +title: GitHub Pages Documentation shortTitle: GitHub Pages intro: 'You can create a website directly from a repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}.' redirect_from: - - /categories/20/articles/ - - /categories/95/articles/ - - /categories/github-pages-features/ - - /pages/ - - /categories/96/articles/ - - /categories/github-pages-troubleshooting/ + - /categories/20/articles + - /categories/95/articles + - /categories/github-pages-features + - /categories/96/articles + - /categories/github-pages-troubleshooting - /categories/working-with-github-pages - /github/working-with-github-pages product: '{% data reusables.gated-features.pages %}' @@ -25,4 +24,3 @@ children: - /setting-up-a-github-pages-site-with-jekyll - /configuring-a-custom-domain-for-your-github-pages-site --- - diff --git a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md index 0359b2e736..4b37a72160 100644 --- a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md @@ -1,9 +1,9 @@ --- -title: Sobre erros de criação do Jekyll para sites do GitHub Pages -intro: 'Se o Jekyll encontrar um erro ao criar seu site do {% data variables.product.prodname_pages %} localmente ou no {% data variables.product.product_name %}, você receberá uma mensagem de erro com mais informações.' +title: About Jekyll build errors for GitHub Pages sites +intro: 'If Jekyll encounters an error building your {% data variables.product.prodname_pages %} site locally or on {% data variables.product.product_name %}, you''ll receive an error message with more information.' redirect_from: - - /articles/viewing-jekyll-build-error-messages/ - - /articles/generic-jekyll-build-failures/ + - /articles/viewing-jekyll-build-error-messages + - /articles/generic-jekyll-build-failures - /articles/about-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' @@ -14,51 +14,51 @@ versions: ghec: '*' topics: - Pages -shortTitle: Erros de criação do Jekyll para as páginas +shortTitle: Jekyll build errors for Pages --- -## Sobre erros de criação do Jekyll +## About Jekyll build errors -Às vezes, o {% data variables.product.prodname_pages %} não tentará criar seu site depois que você fizer push das alterações na fonte de publicação do site.{% ifversion fpt or ghec %} -- A pessoa que fez push das alterações não verificou o endereço de e-mail dela. Para obter mais informações, consulte "[Verificar o endereço de e-mail](/articles/verifying-your-email-address)".{% endif %} -- Você está fazendo push com uma chave de implantação. Se desejar automatizar pushes para o repositório do seu site, você poderá configurar um usuário de máquina. Para obter mais informações, consulte "[Gerenciar chaves de implantação](/developers/overview/managing-deploy-keys#machine-users)". -- Você está usando um serviço de CI que não está configurado para criar sua fonte de publicação. Por exemplo, Travis CI não criará o branch `gh-pages`, a menos que você adicione o branch a uma lista segura. Para obter mais informações, consulte "[Personalizar a criação](https://docs.travis-ci.com/user/customizing-the-build/#safelisting-or-blocklisting-branches)" em Travis CI ou na documentação do seu serviço de CI. +Sometimes, {% data variables.product.prodname_pages %} will not attempt to build your site after you push changes to your site's publishing source.{% ifversion fpt or ghec %} +- The person who pushed the changes hasn't verified their email address. For more information, see "[Verifying your email address](/articles/verifying-your-email-address)."{% endif %} +- You're pushing with a deploy key. If you want to automate pushes to your site's repository, you can set up a machine user instead. For more information, see "[Managing deploy keys](/developers/overview/managing-deploy-keys#machine-users)." +- You're using a CI service that isn't configured to build your publishing source. For example, Travis CI won't build the `gh-pages` branch unless you add the branch to a safe list. For more information, see "[Customizing the build](https://docs.travis-ci.com/user/customizing-the-build/#safelisting-or-blocklisting-branches)" on Travis CI, or your CI service's documentation. {% note %} -**Observação:** podem ser necessários até 20 minutos para que as alterações no site sejam publicadas após o push delas no {% data variables.product.product_name %}. +**Note:** It can take up to 20 minutes for changes to your site to publish after you push the changes to {% data variables.product.product_name %}. {% endnote %} -Se o Jekyll não tentar criar seu site e encontrar um erro, você receberá uma mensagem de erro de criação. Existem dois tipos principais de mensagens de erro de compilação do Jekyll. -- Uma mensagem "Page build warning" significa que sua criação foi concluída com êxito, mas talvez você precise fazer alterações para evitar problemas futuros. -- Uma mensagem "Page build failed" significa que sua criação falhou ao ser concluída. Se for possível para o Jekyll detectar um motivo para a falha, você verá uma mensagem de erro descritiva. +If Jekyll does attempt to build your site and encounters an error, you will receive a build error message. There are two main types of Jekyll build error messages. +- A "Page build warning" message means your build completed successfully, but you may need to make changes to prevent future problems. +- A "Page build failed" message means your build failed to complete. If Jekyll is able to detect a reason for the failure, you'll see a descriptive error message. -Para obter informações sobre como solucionar problemas de erros de criação, consulte [Solução de problemas de erros de criação do Jekyll para sites do {% data variables.product.prodname_pages %}](/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites)". +For more information about troubleshooting build errors, see "[Troubleshooting Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/troubleshooting-jekyll-build-errors-for-github-pages-sites)." -## Exibir mensagens de erro de compilação do Jekyll +## Viewing Jekyll build error messages -É recomendável testar o site no local, o que permite ver mensagens de erro de criação na linha de comando e solucionar qualquer falha de criação antes de fazer push das alterações no {% data variables.product.product_name %}. Para obter mais informações, consulte "[Testar seu site do {% data variables.product.prodname_pages %} localmente com o Jekyll](/articles/testing-your-github-pages-site-locally-with-jekyll)". +We recommend testing your site locally, which allows you to see build error messages on the command line, and addressing any build failures before pushing changes to {% data variables.product.product_name %}. For more information, see "[Testing your {% data variables.product.prodname_pages %} site locally with Jekyll](/articles/testing-your-github-pages-site-locally-with-jekyll)." -Quando você cria uma pull request para atualizar a fonte de publicação no {% data variables.product.product_name %}, é possível ver mensagens de erro de criação na guia **Checks** (Verificações) da pull request. Para obter mais informações, consulte "[Sobre verificações de status](/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)". +When you create a pull request to update your publishing source on {% data variables.product.product_name %}, you can see build error messages on the **Checks** tab of the pull request. For more information, see "[About status checks](/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)." -Quando você fizer push das alterações na fonte de publicação no {% data variables.product.product_name %}, o {% data variables.product.prodname_pages %} tentará criar seu site. Se a criação falhar, você receberá um e-mail no seu endereço de e-mail principal. Você também receberá e-mails para avisos de criação. {% data reusables.pages.build-failure-email-server %} +When you push changes to your publishing source on {% data variables.product.product_name %}, {% data variables.product.prodname_pages %} will attempt to build your site. If the build fails, you'll receive an email at your primary email address. You'll also receive emails for build warnings. {% data reusables.pages.build-failure-email-server %} -É possível ver falhas de criação (mas não os avisos de criação) para seu site no {% data variables.product.product_name %}, na guia **Settings** (Configurações) do repositório do site. +You can see build failures (but not build warnings) for your site on {% data variables.product.product_name %} in the **Settings** tab of your site's repository. -Você pode configurar um serviço de terceiros, como o [Travis CI](https://travis-ci.org/), para exibir mensagens de erro após cada commit. +You can configure a third-party service, such as [Travis CI](https://travis-ci.org/), to display error messages after each commit. -1. Se você ainda não tiver, adicione um arquivo chamado _Gemfile_ na raiz da sua fonte de publicação, com o seguinte conteúdo: +1. If you haven't already, add a file called _Gemfile_ in the root of your publishing source, with the following content: ```ruby source `https://rubygems.org` gem `github-pages` ``` -2. Configure o repositório do site para o serviço de teste de sua escolha. Por exemplo, para usar [Travis CI](https://travis-ci.org/), adicione um arquivo chamado _.travis.yml_ na raiz da fonte de publicação, com o seguinte conteúdo: +2. Configure your site's repository for the testing service of your choice. For example, to use [Travis CI](https://travis-ci.org/), add a file named _.travis.yml_ in the root of your publishing source, with the following content: ```yaml language: ruby rvm: - 2.3 script: "bundle exec jekyll build" ``` -3. Talvez você precise ativar o repositório com o serviço de teste de terceiros. Para obter mais informações, consulte a documentação do seu serviço de teste. +3. You may need to activate your repository with the third-party testing service. For more information, see your testing service's documentation. diff --git a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md index ec4d444b30..e93f69bfd4 100644 --- a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md +++ b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md @@ -1,9 +1,9 @@ --- -title: Adicionar um tema ao site do GitHub Pages usando Jekyll -intro: É possível personalizar o site do Jekyll adicionando e personalizando um tema. +title: Adding a theme to your GitHub Pages site using Jekyll +intro: You can personalize your Jekyll site by adding and customizing a theme. redirect_from: - - /articles/customizing-css-and-html-in-your-jekyll-theme/ - - /articles/adding-a-jekyll-theme-to-your-github-pages-site/ + - /articles/customizing-css-and-html-in-your-jekyll-theme + - /articles/adding-a-jekyll-theme-to-your-github-pages-site - /articles/adding-a-theme-to-your-github-pages-site-using-jekyll - /github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -14,28 +14,30 @@ versions: ghec: '*' topics: - Pages -shortTitle: Adicionar tema ao site de Páginas +shortTitle: Add theme to Pages site --- -Pessoas com permissões de gravação para um repositório podem adicionar um tema a um site do {% data variables.product.prodname_pages %} usando Jekyll. +People with write permissions for a repository can add a theme to a {% data variables.product.prodname_pages %} site using Jekyll. {% data reusables.pages.test-locally %} -## Adicionar um tema +## Adding a theme {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -2. Navegue até *_config.yml*. +2. Navigate to *_config.yml*. {% data reusables.repositories.edit-file %} -4. Adicione uma nova linha ao arquivo para o nome do tema. - - Para usar um tema compatível, digite `theme: THEME-NAME`, substituindo _THEME-NAME_ pelo nome do tema, conforme mostrado no README do repositório do tema. Para obter uma lista de temas compatíveis, consulte "[Temas compatíveis](https://pages.github.com/themes/)" no site do {% data variables.product.prodname_pages %}. ![Tema compatível no arquivo de configuração](/assets/images/help/pages/add-theme-to-config-file.png) - - Para usar qualquer outro tema do Jekyll hospedado em {% data variables.product.prodname_dotcom %}, digite `remote_theme: THEME-NAME`, substituindo THEME-NAME pelo nome do tema, como mostrado no README do repositório do tema. ![Tema não compatível no arquivo de configuração](/assets/images/help/pages/add-remote-theme-to-config-file.png) +4. Add a new line to the file for the theme name. + - To use a supported theme, type `theme: THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the README of the theme's repository. For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. + ![Supported theme in config file](/assets/images/help/pages/add-theme-to-config-file.png) + - To use any other Jekyll theme hosted on {% data variables.product.prodname_dotcom %}, type `remote_theme: THEME-NAME`, replacing THEME-NAME with the name of the theme as shown in the README of the theme's repository. + ![Unsupported theme in config file](/assets/images/help/pages/add-remote-theme-to-config-file.png) {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## Personalizar o CSS do tema +## Customizing your theme's CSS {% data reusables.pages.best-with-supported-themes %} @@ -43,31 +45,31 @@ Pessoas com permissões de gravação para um repositório podem adicionar um te {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -1. Crie um novo arquivo chamado _/assets/css/style.scss_. -2. Adicione o seguinte conteúdo ao topo do arquivo: +1. Create a new file called _/assets/css/style.scss_. +2. Add the following content to the top of the file: ```scss --- --- @import "{{ site.theme }}"; ``` -3. Adicione o CSS ou Sass personalizado (incluindo importações) que deseja imediatamente após a linha `@import`. +3. Add any custom CSS or Sass (including imports) you'd like immediately after the `@import` line. -## Personalizar o layout HTML do tema +## Customizing your theme's HTML layout {% data reusables.pages.best-with-supported-themes %} {% data reusables.pages.theme-customization-help %} -1. No {% data variables.product.prodname_dotcom %}, navegue até o repositório de origem do tema. Por exemplo, o repositório de origem do Minima é https://github.com/jekyll/minima. -2. Na pasta *_layouts*, navegue até o arquivo _default.html_ do tema. -3. Copie o conteúdo do arquivo. +1. On {% data variables.product.prodname_dotcom %}, navigate to your theme's source repository. For example, the source repository for Minima is https://github.com/jekyll/minima. +2. In the *_layouts* folder, navigate to your theme's _default.html_ file. +3. Copy the contents of the file. {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -6. Crie um arquivo chamado *_layouts/default.html*. -7. Cole o conteúdo do layout padrão que você copiou anteriormente. -8. Personalize o layout como desejado. +6. Create a file called *_layouts/default.html*. +7. Paste the default layout content you copied earlier. +8. Customize the layout as you'd like. -## Leia mais +## Further reading -- "[Criar arquivos](/articles/creating-new-files)" +- "[Creating new files](/articles/creating-new-files)" diff --git a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md index 00592ca75c..baf0068f4c 100644 --- a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md +++ b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md @@ -1,9 +1,9 @@ --- -title: Definir um processador markdown para seu site do GitHub Pages usando o Jekyll -intro: 'Você pode escolher um processador markdown para determinar como o markdown é renderizado no site do {% data variables.product.prodname_pages %}.' +title: Setting a Markdown processor for your GitHub Pages site using Jekyll +intro: 'You can choose a Markdown processor to determine how Markdown is rendered on your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/migrating-your-pages-site-from-maruku/ - - /articles/updating-your-markdown-processor-to-kramdown/ + - /articles/migrating-your-pages-site-from-maruku + - /articles/updating-your-markdown-processor-to-kramdown - /articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll - /github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -14,25 +14,26 @@ versions: ghec: '*' topics: - Pages -shortTitle: Definir processador de Markdown +shortTitle: Set Markdown processor --- -Pessoas com permissões de gravação para um repositório podem definir um processador markdown para um site do {% data variables.product.prodname_pages %}. +People with write permissions for a repository can set the Markdown processor for a {% data variables.product.prodname_pages %} site. -{% data variables.product.prodname_pages %} é compatível com dois processadores de Markdown: [kramdown](http://kramdown.gettalong.org/) e o próprio processador do Markdown de {% data variables.product.prodname_dotcom %}, que é usado para interpretar o [ Markdown enriquecido (GMF) de {% data variables.product.prodname_dotcom %}](https://github.github.com/gfm/) em {% data variables.product.product_name %}. Para obter mais informações, consulte "[Sobre gravação e formatação no {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github)". +{% data variables.product.prodname_pages %} supports two Markdown processors: [kramdown](http://kramdown.gettalong.org/) and {% data variables.product.prodname_dotcom %}'s own Markdown processor, which is used to render [{% data variables.product.prodname_dotcom %} Flavored Markdown (GFM)](https://github.github.com/gfm/) throughout {% data variables.product.product_name %}. For more information, see "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github)." -Você pode usar o Markdown enriquecido de {% data variables.product.prodname_dotcom %} com qualquer um dos processadores, mas apenas o nosso processador de GFM sempre corresponderá aos resultados que você vê em {% data variables.product.product_name %}. +You can use {% data variables.product.prodname_dotcom %} Flavored Markdown with either processor, but only our GFM processor will always match the results you see on {% data variables.product.product_name %}. {% data reusables.pages.navigate-site-repo %} -2. No repositório, navegue até o arquivo *_config.yml*. +2. In your repository, browse to the *_config.yml* file. {% data reusables.repositories.edit-file %} -4. Localize a linha que começa com `markdown:` e altere o valor para `kramdown` ou `GFM`. ![Configuração do markdown em config.yml](/assets/images/help/pages/config-markdown-value.png) +4. Find the line that starts with `markdown:` and change the value to `kramdown` or `GFM`. + ![Markdown setting in config.yml](/assets/images/help/pages/config-markdown-value.png) {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_new_file %} -## Leia mais +## Further reading -- [Documentação do kramdown](https://kramdown.gettalong.org/documentation.html) -- [Especificações de markdown em estilo {% data variables.product.prodname_dotcom %}](https://github.github.com/gfm/) +- [kramdown Documentation](https://kramdown.gettalong.org/documentation.html) +- [{% data variables.product.prodname_dotcom %} Flavored Markdown Spec](https://github.github.com/gfm/) diff --git a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md index 650c9b7f3a..6f54aa966b 100644 --- a/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/pt-BR/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md @@ -1,28 +1,28 @@ --- -title: Solucionar problemas de erros de criação do Jekyll para sites do GitHub Pages -intro: 'Você pode usar mensagens de erro de criação do Jekyll para solucionar problemas com seu site do {% data variables.product.prodname_pages %}.' +title: Troubleshooting Jekyll build errors for GitHub Pages sites +intro: 'You can use Jekyll build error messages to troubleshoot problems with your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/page-build-failed-missing-docs-folder/ - - /articles/page-build-failed-invalid-submodule/ - - /articles/page-build-failed-missing-submodule/ - - /articles/page-build-failed-markdown-errors/ - - /articles/page-build-failed-config-file-error/ - - /articles/page-build-failed-unknown-tag-error/ - - /articles/page-build-failed-tag-not-properly-terminated/ - - /articles/page-build-failed-tag-not-properly-closed/ - - /articles/page-build-failed-file-does-not-exist-in-includes-directory/ - - /articles/page-build-failed-file-is-a-symlink/ - - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository/ - - /articles/page-build-failed-file-is-not-properly-utf-8-encoded/ - - /articles/page-build-failed-invalid-post-date/ - - /articles/page-build-failed-invalid-sass-or-scss/ - - /articles/page-build-failed-invalid-highlighter-language/ - - /articles/page-build-failed-relative-permalinks-configured/ - - /articles/page-build-failed-syntax-error-in-for-loop/ - - /articles/page-build-failed-invalid-yaml-in-data-file/ - - /articles/page-build-failed-date-is-not-a-valid-datetime/ - - /articles/troubleshooting-github-pages-builds/ - - /articles/troubleshooting-jekyll-builds/ + - /articles/page-build-failed-missing-docs-folder + - /articles/page-build-failed-invalid-submodule + - /articles/page-build-failed-missing-submodule + - /articles/page-build-failed-markdown-errors + - /articles/page-build-failed-config-file-error + - /articles/page-build-failed-unknown-tag-error + - /articles/page-build-failed-tag-not-properly-terminated + - /articles/page-build-failed-tag-not-properly-closed + - /articles/page-build-failed-file-does-not-exist-in-includes-directory + - /articles/page-build-failed-file-is-a-symlink + - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository + - /articles/page-build-failed-file-is-not-properly-utf-8-encoded + - /articles/page-build-failed-invalid-post-date + - /articles/page-build-failed-invalid-sass-or-scss + - /articles/page-build-failed-invalid-highlighter-language + - /articles/page-build-failed-relative-permalinks-configured + - /articles/page-build-failed-syntax-error-in-for-loop + - /articles/page-build-failed-invalid-yaml-in-data-file + - /articles/page-build-failed-date-is-not-a-valid-datetime + - /articles/troubleshooting-github-pages-builds + - /articles/troubleshooting-jekyll-builds - /articles/troubleshooting-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' @@ -33,161 +33,161 @@ versions: ghec: '*' topics: - Pages -shortTitle: Solucionar erros do Jekyll +shortTitle: Troubleshoot Jekyll errors --- -## Solucionar problemas de erros de criação +## Troubleshooting build errors -Se o Jekyll encontrar um erro ao criar seu site do {% data variables.product.prodname_pages %} localmente ou no {% data variables.product.product_name %}, você poderá usar mensagens de erro para solucionar problemas. Para obter mais informações sobre mensagens de erro e como visualizá-las, consulte "[Sobre erros de criação do Jekyll para sites do {% data variables.product.prodname_pages %}](/articles/about-jekyll-build-errors-for-github-pages-sites)". +If Jekyll encounters an error building your {% data variables.product.prodname_pages %} site locally or on {% data variables.product.product_name %}, you can use error messages to troubleshoot. For more information about error messages and how to view them, see "[About Jekyll build errors for {% data variables.product.prodname_pages %} sites](/articles/about-jekyll-build-errors-for-github-pages-sites)." -Se você recebeu uma mensagem de erro genérica, verifique os problemas comuns. -- Você está usando plugins incompatíveis. Para obter mais informações, consulte "[Sobre o {% data variables.product.prodname_pages %} e o Jekyll](/articles/about-github-pages-and-jekyll#plugins)".{% ifversion fpt or ghec %} -- Seu repositório excedeu os limites de tamanho. Para obter mais informações, consulte "[Qual é a minha quota de disco?](/articles/what-is-my-disk-quota)"{% endif %} -- Você alterou a configuração `source` no arquivo *_config.yml*. {% data variables.product.prodname_pages %} substitui essa configuração durante o processo de criação. -- Um nome de arquivo na fonte de publicação contém dois pontos (`:`), o que não é permitido. +If you received a generic error message, check for common issues. +- You're using unsupported plugins. For more information, see "[About {% data variables.product.prodname_pages %} and Jekyll](/articles/about-github-pages-and-jekyll#plugins)."{% ifversion fpt or ghec %} +- Your repository has exceeded our repository size limits. For more information, see "[What is my disk quota?](/articles/what-is-my-disk-quota)"{% endif %} +- You changed the `source` setting in your *_config.yml* file. {% data variables.product.prodname_pages %} overrides this setting during the build process. +- A filename in your publishing source contains a colon (`:`) which is not supported. -Se você recebeu uma mensagem de erro específica, revise abaixo as informações de solução de problemas relativas à mensagem de erro. +If you received a specific error message, review the troubleshooting information for the error message below. -Depois que tiver corrigido os possíveis erros, faça push das alterações para a fonte de publicação do seu site para ativar outra criação no {% data variables.product.product_name %}. +After you've fixed any errors, push the changes to your site's publishing source to trigger another build on {% data variables.product.product_name %}. -## Erro no arquivo de configuração +## Config file error -Este erro significa que ocorreu falha na criação do seu site porque o arquivo *_config.yml* contém erros de sintaxe. +This error means that your site failed to build because the *_config.yml* file contains syntax errors. -Para solucionar problemas, verifique se o arquivo *_config.yml* segue estas regras: +To troubleshoot, make sure that your *_config.yml* file follows these rules: {% data reusables.pages.yaml-rules %} {% data reusables.pages.yaml-linter %} -## Esta é uma data/hora inválida +## Date is not a valid datetime -Este erro significa que uma das páginas do seu site inclui uma data/hora inválida. +This error means that one of the pages on your site includes an invalid datetime. -Para solucionar problemas, pesquise o arquivo na mensagem de erro e os layouts do arquivo para as exigências de qualquer filtro de data do Liquid. Verifique se alguma variável passada em filtros de data do Liquid tem valores em todos os casos e nunca passa `nil` ou `""`. Para obter mais informações, consulte "[Filtros do Liquid](https://help.shopify.com/en/themes/liquid/filters)" na documentação do Liquid. +To troubleshoot, search the file in the error message and the file's layouts for calls to any date-related Liquid filters. Make sure that any variables passed into date-related Liquid filters have values in all cases and never pass `nil` or `""`. For more information, see "[Liquid filters](https://help.shopify.com/en/themes/liquid/filters)" in the Liquid documentation. -## O arquivo não existe no diretório includes +## File does not exist in includes directory -Este erro significa que o código faz referência a um arquivo que não existe no diretório *_includes*. +This error means that your code references a file that doesn't exist in your *_includes* directory. -{% data reusables.pages.search-for-includes %} Se algum dos arquivos a que você fez referência não estiver no diretório *_includes*, copie ou mova os arquivos para o diretório *_includes*. +{% data reusables.pages.search-for-includes %} If any of the files you've referenced aren't in the *_includes* directory, copy or move the files into the *_includes* directory. -## O arquivo é um link simbólico +## File is a symlink -Este erro significa que o código faz referência a um arquivo com link simbólico que não existe na fonte de publicação do seu site. +This error means that your code references a symlinked file that does not exist in the publishing source for your site. -{% data reusables.pages.search-for-includes %} Se algum dos arquivos a que você fez referência for com link simbólico, copie ou mova os arquivos para o diretório *_includes*. +{% data reusables.pages.search-for-includes %} If any of the files you've referenced are symlinked, copy or move the files into the *_includes* directory. -## Arquivo codificado por UTF-8 incorretamente +## File is not properly UTF-8 encoded -Este erro significa que você usou caracteres não latinos, como `日本語`, sem avisar ao computador que esperava esses símbolos. +This error means that you used non-Latin characters, like `日本語`, without telling the computer to expect these symbols. -Para solucionar problemas, force a codificação UTF-8 adicionando a seguinte linha ao arquivo *_config.yml*: +To troubleshoot, force UTF-8 encoding by adding the following line to your *_config.yml* file: ```yaml encoding: UTF-8 ``` -## Linguagem inválida do realçador +## Invalid highlighter language -Este erro significa que você especificou algum realçador de sintaxe diferente de [Rouge](https://github.com/jneen/rouge) ou [Pygments](http://pygments.org/) no arquivo de configuração. +This error means that you specified any syntax highlighter other than [Rouge](https://github.com/jneen/rouge) or [Pygments](http://pygments.org/) in your configuration file. -Para solucionar problemas, atualize o arquivo *_config.yml* para especificar [Rouge](https://github.com/jneen/rouge) ou [Pigmentos](http://pygments.org/). Para obter mais informações, consulte "[Sobre o {% data variables.product.product_name %} e o Jekyll](/articles/about-github-pages-and-jekyll#syntax-highlighting)". +To troubleshoot, update your *_config.yml* file to specify [Rouge](https://github.com/jneen/rouge) or [Pygments](http://pygments.org/). For more information, see "[About {% data variables.product.product_name %} and Jekyll](/articles/about-github-pages-and-jekyll#syntax-highlighting)." -## Data de postagem inválida +## Invalid post date -Este erro significa que uma postagem no seu site contém uma data inválida no nome de arquivo ou na página inicial YAML. +This error means that a post on your site contains an invalid date in the filename or YAML front matter. -Para solucionar problemas, verifique se todas as datas estão no formato YYYY-MM-DD HH:MM:SS para UTC e se são datas reais do calendário. Para especificar um fuso horário com um intervalo de tempo UTC, use o formato YYYY-MM-DD HH:MM:SS +/-TTTT (ano-mês-dia horas:minutos:segundos +/-TTTT), como `2014-04-18 11:30:00 +0800`. +To troubleshoot, make sure all dates are formatted as YYYY-MM-DD HH:MM:SS for UTC and are actual calendar dates. To specify a time zone with an offset from UTC, use the format YYYY-MM-DD HH:MM:SS +/-TTTT, like `2014-04-18 11:30:00 +0800`. -Se você especificar um formato de data no arquivo *_config.yml*, verifique se o formato está correto. +If you specify a date format in your *_config.yml* file, make sure the format is correct. -## SCSS ou Sass inválido +## Invalid Sass or SCSS -Este erro significa que seu repositório contém um arquivo Sass ou SCSS com conteúdo inválido. +This error means your repository contains a Sass or SCSS file with invalid content. -Para solucionar problemas, revise o número de linha incluído na mensagem de erro referente a Sass ou SCSS inválido. Para ajudar a prevenir erros no futuro, instale um linter Sass ou SCSS para seu editor de texto favorito. +To troubleshoot, review the line number included in the error message for invalid Sass or SCSS. To help prevent future errors, install a Sass or SCSS linter for your favorite text editor. -## Submódulo inválido +## Invalid submodule -Este erro significa que seu repositório inclui um submódulo que não foi inicializado corretamente. +This error means that your repository includes a submodule that hasn't been properly initialized. {% data reusables.pages.remove-submodule %} -Caso queira utilizar o submódulo, lembre-se de usar `https://` quando fizer referência ao submódulo (a não `http://`) e de que o submódulo está em um repositório público. +If do you want to use the submodule, make sure you use `https://` when referencing the submodule (not `http://`) and that the submodule is in a public repository. -## YAML inválido no arquivo de dados +## Invalid YAML in data file -Este erro significa que um ou mais arquivos na pasta *_data* contém YAML inválido. +This error means that one of more files in the *_data* folder contains invalid YAML. -Para solucionar problemas, verifique se os arquivos YAML na pasta *_data* seguem estas regras: +To troubleshoot, make sure the YAML files in your *_data* folder follow these rules: {% data reusables.pages.yaml-rules %} {% data reusables.pages.yaml-linter %} -Para obter mais informações sobre arquivos de dados do Jekyll, consulte ""[Arquivos de dados](https://jekyllrb.com/docs/datafiles/)" na documentação do Jekyll. +For more information about Jekyll data files, see "[Data Files](https://jekyllrb.com/docs/datafiles/)" in the Jekyll documentation. -## Erros de markdown +## Markdown errors -Este erro significa que seu repositório contém erros de markdown. +This error means that your repository contains Markdown errors. -Para solucionar problemas, verifique se você está usando um processador markdown compatível. Para obter mais informações, consulte "[Definir um processador markdown para seu site do {% data variables.product.prodname_pages %} usando o Jekyll](/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll)". +To troubleshoot, make sure you are using a supported Markdown processor. For more information, see "[Setting a Markdown processor for your {% data variables.product.prodname_pages %} site using Jekyll](/articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll)." -Em seguida, verifique se o arquivo na mensagem de erro usa uma sintaxe markdown válida. Para obter mais informações, consulte "[Markdown: sintaxe](https://daringfireball.net/projects/markdown/syntax)" no Daring Fireball. +Then, make sure the file in the error message uses valid Markdown syntax. For more information, see "[Markdown: Syntax](https://daringfireball.net/projects/markdown/syntax)" on Daring Fireball. -## Pasta docs ausente +## Missing docs folder -Este erro significa que você escolheu a pasta `docs` em um branch como a sua fonte de publicação, mas não há nenhuma pasta de `docs` na raiz do seu repositório naquele branch. +This error means that you have chosen the `docs` folder on a branch as your publishing source, but there is no `docs` folder in the root of your repository on that branch. -Para solucionar esse problema, se a pasta `documentação` foi movida acidentalmente, tente mover a pasta `docs` de volta para a raiz do repositório no branch que você escolheu para a sua fonte de publicação. Se a pasta `docs` tiver sido excluída acidentalmente, siga um destes procedimentos: -- Use o Git para reverter ou desfazer a exclusão. Para obter mais informações, consulte "[git-revert](https://git-scm.com/docs/git-revert.html)" na documentação do Git. -- Crie uma nova pasta de `documentação` na raiz do repositório no branch que você escolheu para a sua fonte de publicação e adicione os arquivos de origem do site à pasta. Para obter mais informações, consulte "[Criar arquivos](/articles/creating-new-files)". -- Altere a fonte de publicação. Para obter mais informações, consulte "[Configurar uma fonte de publicação do {% data variables.product.prodname_pages %}](/articles/configuring-a-publishing-source-for-github-pages)". +To troubleshoot, if your `docs` folder was accidentally moved, try moving the `docs` folder back to the root of your repository on the branch you chose for your publishing source. If the `docs` folder was accidentally deleted, you can either: +- Use Git to revert or undo the deletion. For more information, see "[git-revert](https://git-scm.com/docs/git-revert.html)" in the Git documentation. +- Create a new `docs` folder in the root of your repository on the branch you chose for your publishing source and add your site's source files to the folder. For more information, see "[Creating new files](/articles/creating-new-files)." +- Change your publishing source. For more information, see "[Configuring a publishing source for {% data variables.product.prodname_pages %}](/articles/configuring-a-publishing-source-for-github-pages)." -## Submódulo ausente +## Missing submodule -Este erro significa que seu repositório inclui um submódulo que não existe ou não foi inicializado corretamente. +This error means that your repository includes a submodule that doesn't exist or hasn't been properly initialized. {% data reusables.pages.remove-submodule %} -Se você quiser usar um submódulo, inicialize-o. Para obter mais informações, consulte "[Ferramentas Git - Submódulos](https://git-scm.com/book/en/v2/Git-Tools-Submodules)" no livro _Pro Git_. +If you do want to use a submodule, initialize the submodule. For more information, see "[Git Tools - Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules)" in the _Pro Git_ book. -## Permalinks relativos configurados +## Relative permalinks configured -Este erro significa que você tem permalinks relativos, que não são compatíveis com o {% data variables.product.prodname_pages %} no arquivo *_config.yml*. +This errors means that you have relative permalinks, which are not supported by {% data variables.product.prodname_pages %}, in your *_config.yml* file. -Permalinks são URLs permanentes que fazem referência a uma determinada página no seu site. Os permalinks absolutos iniciam com a raiz do site, enquanto os permalinks relativos iniciam com a pasta que contém a página referenciada. O {% data variables.product.prodname_pages %} e o Jekyll não são mais compatíveis com permalinks relativos. Para obter mais informações sobre permalinks, consulte "[Permalinks](https://jekyllrb.com/docs/permalinks/)" na documentação do Jekyll. +Permalinks are permanent URLs that reference a particular page on your site. Absolute permalinks begin with the root of the site, while relative permalinks begin with the folder containing the referenced page. {% data variables.product.prodname_pages %} and Jekyll no longer support relative permalinks. For more information about permalinks, see "[Permalinks](https://jekyllrb.com/docs/permalinks/)" in the Jekyll documentation. -Para solucionar problemas, remova a linha `relative_permalinks` do arquivo *_config.yml* e reformate os permalinks relativos no site com permalinks absolutos. Para obter mais informações, consulte "[Editando arquivos](/repositories/working-with-files/managing-files/editing-files)". +To troubleshoot, remove the `relative_permalinks` line from your *_config.yml* file and reformat any relative permalinks in your site with absolute permalinks. For more information, see "[Editing files](/repositories/working-with-files/managing-files/editing-files)." -## O link simbólico não existe no repositório do site +## Symlink does not exist within your site's repository -Este erro significa que seu site inclui um link simbólico que não existe na fonte de publicação do site. Para obter mais informações sobre links simbólicos, consulte "[Link simbólico](https://en.wikipedia.org/wiki/Symbolic_link)" na Wikipédia. +This error means that your site includes a symbolic link (symlink) that does not exist in the publishing source for your site. For more information about symlinks, see "[Symbolic link](https://en.wikipedia.org/wiki/Symbolic_link)" on Wikipedia. -Para solucionar problemas, determine se o arquivo na mensagem de erro é usado para criar o site. Se ele não for ou se você não quiser que o arquivo seja um link simbólico, exclua o arquivo. Se o arquivo de link simbólico for necessário para criar seu site, verifique se o arquivo ou o diretório a que ele faz referência está na fonte de publicação do site. Para incluir ativos externos, considere usar {% ifversion fpt or ghec %}`submódulo do Git` ou {% endif %}um gerenciador de pacotes terceirizado como o [Bower](https://bower.io/).{% ifversion fpt or ghec %} Para obter mais informações, consulte "[Usar submódulos com o {% data variables.product.prodname_pages %}](/articles/using-submodules-with-github-pages)".{% endif %} +To troubleshoot, determine if the file in the error message is used to build your site. If not, or if you don't want the file to be a symlink, delete the file. If the symlinked file is necessary to build your site, make sure the file or directory the symlink references is in the publishing source for your site. To include external assets, consider using {% ifversion fpt or ghec %}`git submodule` or {% endif %}a third-party package manager such as [Bower](https://bower.io/).{% ifversion fpt or ghec %} For more information, see "[Using submodules with {% data variables.product.prodname_pages %}](/articles/using-submodules-with-github-pages)."{% endif %} -## Erro de sintaxe no loop 'for' +## Syntax error in 'for' loop -Este erro significa que o código inclui sintaxe inválida em uma declaração de loop `for` do Liquid. +This error means that your code includes invalid syntax in a Liquid `for` loop declaration. -Para solucionar problemas, verifique se todos os loops `for` no arquivo da mensagem de erro têm sintaxe adequada. Para obter mais informações sobre a sintaxe adequada para loops `for`, consulte "[Tags de Iteração](https://help.shopify.com/en/themes/liquid/tags/iteration-tags#for)" na documentação do Liquid. +To troubleshoot, make sure all `for` loops in the file in the error message have proper syntax. For more information about proper syntax for `for` loops, see "[Iteration tags](https://help.shopify.com/en/themes/liquid/tags/iteration-tags#for)" in the Liquid documentation. -## Tag fechada incorretamente +## Tag not properly closed -Esta mensagem de erro significa que o código inclui uma tag lógica que foi fechada incorretamente. Por exemplo, {% raw %}`{% capture example_variable %}` deve ser fechada por `{% endcapture %}`{% endraw %}. +This error message means that your code includes a logic tag that is not properly closed. For example, {% raw %}`{% capture example_variable %}` must be closed by `{% endcapture %}`{% endraw %}. -Para solucionar problemas, verifique se todas as tags lógicas no arquivo da mensagem de erro estão fechadas corretamente. Para obter mais informações, consulte "[Tags do Liquid](https://help.shopify.com/en/themes/liquid/tags)" na documentação do Liquid. +To troubleshoot, make sure all logic tags in the file in the error message are properly closed. For more information, see "[Liquid tags](https://help.shopify.com/en/themes/liquid/tags)" in the Liquid documentation. -## Tag terminada incorretamente +## Tag not properly terminated -Este erro significa que o código inclui uma tag de saída que não foi terminada corretamente. Por exemplo, {% raw %}`{{ page.title }` em vez de `{{ page.title }}`{% endraw %}. +This error means that your code includes an output tag that is not properly terminated. For example, {% raw %}`{{ page.title }` instead of `{{ page.title }}`{% endraw %}. -Para solucionar problemas, verifique se todas as tags de saída no arquivo da mensagem de erro estão terminadas com `}}`. Para obter mais informações, consulte "[Objetos do Liquid](https://help.shopify.com/en/themes/liquid/objects)" na documentação do Liquid. +To troubleshoot, make sure all output tags in the file in the error message are terminated with `}}`. For more information, see "[Liquid objects](https://help.shopify.com/en/themes/liquid/objects)" in the Liquid documentation. -## Erro de tag desconhecida +## Unknown tag error -Este erro significa que o código contém uma tag do Liquid não reconhecida. +This error means that your code contains an unrecognized Liquid tag. -Para solucionar problemas, verifique se todas as tags do Liquid no arquivo da mensagem de erro correspondem a variáveis padrão do Jekyll e se não há erros de digitação nos nomes das tags. Para obter uma lista de variáveis padrão, consulte "[Variáveis](https://jekyllrb.com/docs/variables/)" na documentação do Jekyll. +To troubleshoot, make sure all Liquid tags in the file in the error message match Jekyll's default variables and there are no typos in the tag names. For a list of default variables, see "[Variables](https://jekyllrb.com/docs/variables/)" in the Jekyll documentation. -Plugins incompatíveis são uma fonte comum de tags não reconhecidas. Se você usar um plugin incompatível ao gerar seu site localmente e fazer push dos arquivos estáticos para o {% data variables.product.product_name %}, verifique se o plugin não está inserindo tags que não estão nas variáveis padrão do Jekyll. Para obter uma lista de plugins compatíveis, consulte "[Sobre o {% data variables.product.prodname_pages %} e o Jekyll](/articles/about-github-pages-and-jekyll#plugins)". +Unsupported plugins are a common source of unrecognized tags. If you use an unsupported plugin in your site by generating your site locally and pushing your static files to {% data variables.product.product_name %}, make sure the plugin is not introducing tags that are not in Jekyll's default variables. For a list of supported plugins, see "[About {% data variables.product.prodname_pages %} and Jekyll](/articles/about-github-pages-and-jekyll#plugins)." diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md index a82770f741..04a027d1a8 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md @@ -1,9 +1,9 @@ --- -title: Colaborar nos repositórios com recursos de qualidade de código -intro: 'Os recursos de qualidade do fluxo de trabalho, como status, {% ifversion ghes %}hooks pre-receive, {% endif %}branches protegidos e verificações de status obrigatórias ajudam os colaboradores a fazer contribuições que atendem às condições definidas pela organização e por administradores de repositório.' +title: Collaborating on repositories with code quality features +intro: 'Workflow quality features like statuses, {% ifversion ghes %}pre-receive hooks, {% endif %}protected branches, and required status checks help collaborators make contributions that meet conditions set by organization and repository administrators.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features/ - - /articles/collaborating-on-repositories-with-code-quality-features-enabled/ + - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features + - /articles/collaborating-on-repositories-with-code-quality-features-enabled - /articles/collaborating-on-repositories-with-code-quality-features - /github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features versions: @@ -16,6 +16,5 @@ topics: children: - /about-status-checks - /working-with-pre-receive-hooks -shortTitle: Funcionalidades de qualidade do código +shortTitle: Code quality features --- - diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md index eb45246743..4edfc60e28 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md @@ -1,9 +1,9 @@ --- -title: Sobre modelos de desenvolvimento colaborativo -intro: O modo como você usa pull requests depende do tipo de modelo de desenvolvimento usado no projeto. Você pode usar a bifurcação e o modelo de pull ou o modelo de repositório compartilhado. +title: About collaborative development models +intro: The way you use pull requests depends on the type of development model you use in your project. You can use the fork and pull model or the shared repository model. redirect_from: - /github/collaborating-with-issues-and-pull-requests/getting-started/about-collaborative-development-models - - /articles/types-of-collaborative-development-models/ + - /articles/types-of-collaborative-development-models - /articles/about-collaborative-development-models - /github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models - /github/collaborating-with-pull-requests/getting-started/about-collaborative-development-models @@ -14,25 +14,24 @@ versions: ghec: '*' topics: - Pull requests -shortTitle: Desenvolvimento colaborativo +shortTitle: Collaborative development --- +## Fork and pull model -## Modelo de bifurcação e pull - -No fork e pull model, qualquer um pode bifurcar um repositório existente e fazer push das alterações em sua bifurcação pessoal. Você não precisa de permissão ao repositório de origem para fazer push em uma bifurcação de propriedade do usuário. As alterações podem ser enviadas por pull no repositório de origem pelo mantenedor do projeto. Ao abrir uma pull request propondo alterações a partir de sua bifurcação de propriedade de usuário para um branch no repositório de origem (upstream), você poderá permitir que qualquer pessoa com acesso push ao repositório upstream faça alterações na sua pull request. Esse modelo é popular entre projetos de código aberto, pois ele reduz a resistência de novos contribuidores, além de permitir que as pessoas trabalhem de modo independente sem coordenação inicial. +In the fork and pull model, anyone can fork an existing repository and push changes to their personal fork. You do not need permission to the source repository to push to a user-owned fork. The changes can be pulled into the source repository by the project maintainer. When you open a pull request proposing changes from your user-owned fork to a branch in the source (upstream) repository, you can allow anyone with push access to the upstream repository to make changes to your pull request. This model is popular with open source projects as it reduces the amount of friction for new contributors and allows people to work independently without upfront coordination. {% tip %} -**Dica:** {% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} +**Tip:** {% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} {% endtip %} -## Modelo de repositório compartilhado +## Shared repository model -No modelo de repositório compartilhado, os colaboradores recebem acesso push a um único repositório compartilhado e branches de tópico são criados quando alterações precisam ser feitas. As pull requests são úteis nesse modelo, uma vez que iniciam a revisão de código e a discussão geral sobre um conjunto de alterações antes que elas sofram merge no branch de desenvolvimento principal. Esse modelo é mais predominante em equipes e organizações pequenas que colaboram em projetos privados. +In the shared repository model, collaborators are granted push access to a single shared repository and topic branches are created when changes need to be made. Pull requests are useful in this model as they initiate code review and general discussion about a set of changes before the changes are merged into the main development branch. This model is more prevalent with small teams and organizations collaborating on private projects. -## Leia mais +## Further reading -- "[Sobre pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)" -- "[Criar uma pull request de uma bifurcação](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)" -- "[Permitir alterações em um branch de pull request criada de uma bifurcação](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" +- "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)" +- "[Creating a pull request from a fork](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)" +- "[Allowing changes to a pull request branch created from a fork](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md index b0e47c489b..1fef23a997 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md @@ -1,9 +1,9 @@ --- -title: Introdução -shortTitle: Introdução -intro: 'Saiba mais sobre o fluxo do {% data variables.product.prodname_dotcom %} e diferentes maneiras de colaborar e discutir seus projetos.' +title: Getting started +shortTitle: Getting started +intro: 'Learn about the {% data variables.product.prodname_dotcom %} flow and different ways to collaborate on and discuss your projects.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/getting-started/ + - /github/collaborating-with-issues-and-pull-requests/getting-started - /github/collaborating-with-issues-and-pull-requests/overview - /github/collaborating-with-pull-requests/getting-started versions: @@ -19,4 +19,3 @@ topics: children: - /about-collaborative-development-models --- - diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/index.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/index.md index 41ca65cd48..0b40a80858 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/index.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/index.md @@ -1,13 +1,13 @@ --- -title: Colaborando com pull requests -intro: 'Acompanhe e discuta alterações nos problemas e, em seguida, proponha e revise alterações em pull requests.' +title: Collaborating with pull requests +intro: 'Track and discuss changes in issues, then propose and review changes in pull requests.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/ - - /categories/63/articles/ - - /categories/collaborating/ - - /categories/collaborating-on-projects-using-pull-requests/ - - /categories/collaborating-on-projects-using-issues-and-pull-requests/ - - /categories/collaborating-with-issues-and-pull-requests/ + - /github/collaborating-with-issues-and-pull-requests + - /categories/63/articles + - /categories/collaborating + - /categories/collaborating-on-projects-using-pull-requests + - /categories/collaborating-on-projects-using-issues-and-pull-requests + - /categories/collaborating-with-issues-and-pull-requests - /github/collaborating-with-pull-requests versions: fpt: '*' @@ -24,6 +24,5 @@ children: - /addressing-merge-conflicts - /reviewing-changes-in-pull-requests - /incorporating-changes-from-a-pull-request -shortTitle: Colaborar com pull requests +shortTitle: Collaborate with pull requests --- - diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md index 8babad4362..35a425283f 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md @@ -30,7 +30,7 @@ You can review changes in a pull request one file at a time. While reviewing the {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.choose-pr-review %} {% data reusables.repositories.changed-files %} -{% ifversion fpt or ghec or ghes > 3.2 or ghae %} +{% ifversion fpt or ghec or ghes > 3.3 or ghae %} You can change the format of the diff view in this tab by clicking {% octicon "gear" aria-label="The Settings gear" %} and choosing the unified or split view. The choice you make will apply when you view the diff for other pull requests. diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md index 66c8cc2ceb..19207dd1b4 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md @@ -1,10 +1,10 @@ --- -title: Trabalhar com bifurcações -intro: 'As bifurcações costumam ser usadas no desenvolvimento de código aberto no {% data variables.product.product_name %}.' +title: Working with forks +intro: 'Forks are often used in open source development on {% data variables.product.product_name %}.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/working-with-forks/ + - /github/collaborating-with-issues-and-pull-requests/working-with-forks - /articles/working-with-forks - - /github/collaborating-with-pull-requests/working-with-forks/ + - /github/collaborating-with-pull-requests/working-with-forks versions: fpt: '*' ghes: '*' @@ -20,4 +20,3 @@ children: - /allowing-changes-to-a-pull-request-branch-created-from-a-fork - /what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility --- - diff --git a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md index 9d9b203f5a..2a067051d5 100644 --- a/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md +++ b/translations/pt-BR/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md @@ -3,7 +3,7 @@ title: What happens to forks when a repository is deleted or changes visibility? intro: Deleting your repository or changing its visibility affects that repository's forks. redirect_from: - /github/collaborating-with-issues-and-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - - /articles/changing-the-visibility-of-a-network/ + - /articles/changing-the-visibility-of-a-network - /articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility diff --git a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md index 1852d7b647..5877608cd0 100644 --- a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md +++ b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md @@ -1,74 +1,73 @@ --- -title: Alterar a mensagem do commit +title: Changing a commit message redirect_from: - - /articles/can-i-delete-a-commit-message/ + - /articles/can-i-delete-a-commit-message - /articles/changing-a-commit-message - /github/committing-changes-to-your-project/changing-a-commit-message - /github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message -intro: 'Se uma mensagem do commit contiver informações imprecisas, incorretas ou confidenciais, você poderá corrigi-las localmente e fazer push de um novo commit com uma nova mensagem para o {% data variables.product.product_name %}. Também é possível alterar uma mensagem do commit para adicionar informações ausentes.' +intro: 'If a commit message contains unclear, incorrect, or sensitive information, you can amend it locally and push a new commit with a new message to {% data variables.product.product_name %}. You can also change a commit message to add missing information.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' --- +## Rewriting the most recent commit message -## Reescrever a mensagem do commit mais recente +You can change the most recent commit message using the `git commit --amend` command. -Você pode alterar a mensagem do commit mais recente usando o comando `git commit --amend`. +In Git, the text of the commit message is part of the commit. Changing the commit message will change the commit ID--i.e., the SHA1 checksum that names the commit. Effectively, you are creating a new commit that replaces the old one. -No Git, o texto da mensagem do commit faz parte do commit. Alterar a mensagem do commit mudará o ID do commit, isto é, a soma de verificação SHA1 que nomeia o commit. Efetivamente, você está criando um commit que substitui o antigo. +## Commit has not been pushed online -## Não foi feito push on-line do commit +If the commit only exists in your local repository and has not been pushed to {% data variables.product.product_location %}, you can amend the commit message with the `git commit --amend` command. -Se o commit existir em seu repositório local e não tiver sido publicado no {% data variables.product.product_location %}, você poderá corrigir a mensagem do commit com o comando `git commit --amend`. - -1. Na linha de comando, navegue até o repositório que contém o commit que você deseja corrigir. -2. Digite `git commit --amend` e pressione **Enter**. -3. No editor de texto, edite a mensagem do commit e salve o commit. - - Você pode adicionar um coautor incluindo um trailer no commit. Para obter mais informações, consulte "[Criar um commit com vários autores](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)". +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Type `git commit --amend` and press **Enter**. +3. In your text editor, edit the commit message, and save the commit. + - You can add a co-author by adding a trailer to the commit. For more information, see "[Creating a commit with multiple authors](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)." {% ifversion fpt or ghec %} - - É possível criar commits em nome da sua organização adicionando um trailer ao commit. Para obter mais informações, consulte "[Criar um commit em nome de uma organização](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)" + - You can create commits on behalf of your organization by adding a trailer to the commit. For more information, see "[Creating a commit on behalf of an organization](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)" {% endif %} -O novo commit e a mensagem aparecerão no {% data variables.product.product_location %} na próxima vez que você fizer push. +The new commit and message will appear on {% data variables.product.product_location %} the next time you push. {% tip %} -Você pode alterar o editor de texto padrão do Git mudando a configuração `core.editor`. Para obter mais informações, consulte a seção sobre a "[configuração básica de cliente](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)" no manual do Git. +You can change the default text editor for Git by changing the `core.editor` setting. For more information, see "[Basic Client Configuration](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)" in the Git manual. {% endtip %} -## Corrigir mensagens do commit antigas ou em grandes quantidades +## Amending older or multiple commit messages -Se você já tiver feito push do commit no {% data variables.product.product_location %}, será necessário forçar o push de um commit com uma mensagem corrigida. +If you have already pushed the commit to {% data variables.product.product_location %}, you will have to force push a commit with an amended message. {% warning %} -O recomendável é evitar tanto quanto possível o push forçado, uma vez que isso altera o histórico do repositório. No caso de push forçado, as pessoas que já clonaram o repositório terão que corrigir manualmente o respectivo histórico local. Para obter mais informações, consulte a seção sobre como "[recuperar usando rebase upstream](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)" no manual do Git. +We strongly discourage force pushing, since this changes the history of your repository. If you force push, people who have already cloned your repository will have to manually fix their local history. For more information, see "[Recovering from upstream rebase](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)" in the Git manual. {% endwarning %} -**Alterar a mensagem do commit enviado mais recentemente** +**Changing the message of the most recently pushed commit** -1. Siga as [etapas acima](/articles/changing-a-commit-message#commit-has-not-been-pushed-online) para corrigir a mensagem do commit. -2. Use o comando `push --force-with-lease` para fazer push forçado sobre o commit antigo. +1. Follow the [steps above](/articles/changing-a-commit-message#commit-has-not-been-pushed-online) to amend the commit message. +2. Use the `push --force-with-lease` command to force push over the old commit. ```shell $ git push --force-with-lease <em>example-branch</em> ``` -**Alterar a mensagem das mensagens mais antigas ou múltiplas do commit** +**Changing the message of older or multiple commit messages** -Se precisar corrigir a mensagem de vários commits ou de um commit antigo, você pode usar o rebase interativo e, em seguida, forçar o push para alterar o histórico do commit. +If you need to amend the message for multiple commits or an older commit, you can use interactive rebase, then force push to change the commit history. -1. Na linha de comando, navegue até o repositório que contém o commit que você deseja corrigir. -2. Use o comando `git rebase -i HEAD~n` para exibir uma lista dos `n` últimos commits no seu editor de texto padrão. +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Use the `git rebase -i HEAD~n` command to display a list of the last `n` commits in your default text editor. ```shell # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 ``` - A lista ficará parecida com o seguinte: + The list will look similar to the following: ```shell pick e499d89 Delete CNAME @@ -77,49 +76,49 @@ Se precisar corrigir a mensagem de vários commits ou de um commit antigo, você # Rebase 9fdb3bd..f7fde4a onto 9fdb3bd # - # Comandos: - # p, pick = usar commit - # r, reword = usar commit, mas editar a mensagem do commit - # e, edit = usar commit, mas interromper para correção - # s, squash = usar commit, mas combinar com commit anterior - # f, fixup = como "squash", mas descartar a mensagem de log do commit - # x, exec = executar o comando (o restante da linha) usando shell + # Commands: + # p, pick = use commit + # r, reword = use commit, but edit the commit message + # e, edit = use commit, but stop for amending + # s, squash = use commit, but meld into previous commit + # f, fixup = like "squash", but discard this commit's log message + # x, exec = run command (the rest of the line) using shell # - # Essas linhas podem ser reordenadas; elas são executadas de cima para baixo. + # These lines can be re-ordered; they are executed from top to bottom. # - # Se você remover uma linha aqui ESSE COMMIT SERÁ PERDIDO. + # If you remove a line here THAT COMMIT WILL BE LOST. # - # No entanto, se você remover tudo, o rebase será anulado. + # However, if you remove everything, the rebase will be aborted. # - # Observe que commits vazios são comentados + # Note that empty commits are commented out ``` -3. Substitua `pick` por `reword` antes de cada mensagem do commit que deseja alterar. +3. Replace `pick` with `reword` before each commit message you want to change. ```shell pick e499d89 Delete CNAME reword 0c39034 Better README reword f7fde4a Change the commit message but push the same commit. ``` -4. Salve e feche o arquivo da lista de commits. -5. Em cada arquivo de commit resultante, digite a nova mensagem do commit, salve o arquivo e feche-o. -6. Quando estiver pronto para fazer push das suas alterações para o GitHub, use o comando push --force para fazer push forçado sobre o commit antigo. +4. Save and close the commit list file. +5. In each resulting commit file, type the new commit message, save the file, and close it. +6. When you're ready to push your changes to GitHub, use the push --force command to force push over the old commit. ```shell $ git push --force <em>example-branch</em> ``` -Para obter mais informações sobre rebase interativo, consulte a seção sobre o "[modo interativo](https://git-scm.com/docs/git-rebase#_interactive_mode)" no manual do Git. +For more information on interactive rebase, see "[Interactive mode](https://git-scm.com/docs/git-rebase#_interactive_mode)" in the Git manual. {% tip %} -Tal como antes, corrigir a mensagem do commit resultará em um novo commit com um novo ID. No entanto, nesse caso, cada commit que segue o commit corrigido também obterá um novo ID, pois cada commit também contém o id de seu principal. +As before, amending the commit message will result in a new commit with a new ID. However, in this case, every commit that follows the amended commit will also get a new ID because each commit also contains the id of its parent. {% endtip %} {% warning %} -Se você incluiu informações confidenciais em uma mensagem do commit, forçar o push de um commit com um commit corrigido pode não remover o commit original do {% data variables.product.product_name %}. O commit antigo não fará parte de um clone subsequente. No entanto, ele ainda poderá ser armazenado no cache do {% data variables.product.product_name %} e ser acessado por meio do ID do commit. Você deve contatar o {% data variables.contact.contact_support %} com o ID do commit antigo para que ele seja apagado do repositório remoto. +If you have included sensitive information in a commit message, force pushing a commit with an amended commit may not remove the original commit from {% data variables.product.product_name %}. The old commit will not be a part of a subsequent clone; however, it may still be cached on {% data variables.product.product_name %} and accessible via the commit ID. You must contact {% data variables.contact.contact_support %} with the old commit ID to have it purged from the remote repository. {% endwarning %} -## Leia mais +## Further reading -* "[Assinar commits](/articles/signing-commits)" +* "[Signing commits](/articles/signing-commits)" diff --git a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/index.md b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/index.md index 6b0d37edd7..9206e8d17d 100644 --- a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/index.md +++ b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/index.md @@ -1,9 +1,9 @@ --- -title: Commit de alterações no projeto -intro: 'Você pode gerenciar as alterações de código em um repositório, agrupando os trabalhos em commits.' +title: Committing changes to your project +intro: You can manage code changes in a repository by grouping work into commits. redirect_from: - - /categories/21/articles/ - - /categories/commits/ + - /categories/21/articles + - /categories/commits - /categories/committing-changes-to-your-project - /github/committing-changes-to-your-project versions: @@ -15,6 +15,5 @@ children: - /creating-and-editing-commits - /viewing-and-comparing-commits - /troubleshooting-commits -shortTitle: Fazer commit das alterações no seu projeto +shortTitle: Commit changes to your project --- - diff --git a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md index 5bc13e0a96..e63f9863ff 100644 --- a/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md +++ b/translations/pt-BR/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md @@ -1,7 +1,7 @@ --- title: Why are my commits linked to the wrong user? redirect_from: - - /articles/how-do-i-get-my-commits-to-link-to-my-github-account/ + - /articles/how-do-i-get-my-commits-to-link-to-my-github-account - /articles/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user diff --git a/translations/pt-BR/content/repositories/creating-and-managing-repositories/about-repositories.md b/translations/pt-BR/content/repositories/creating-and-managing-repositories/about-repositories.md index 46012a30d4..57a56440e4 100644 --- a/translations/pt-BR/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/translations/pt-BR/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -61,7 +61,7 @@ When you create a repository owned by your user account, the repository is alway - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghes %} - If {% data variables.product.product_location %} is not in private mode or behind a firewall, public repositories are accessible to everyone on the internet. Otherwise, public repositories are available to everyone using {% data variables.product.product_location %}, including outside collaborators. -- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. Internal repositories are accessible to all enterprise members. +- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghae %} - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- endif %} diff --git a/translations/pt-BR/content/rest/guides/index.md b/translations/pt-BR/content/rest/guides/index.md index 9c78574b62..072e826783 100644 --- a/translations/pt-BR/content/rest/guides/index.md +++ b/translations/pt-BR/content/rest/guides/index.md @@ -1,8 +1,8 @@ --- -title: Guias -intro: 'Saiba mais sobre como começar com a API REST, sobre a autenticação e como usar a API REST para várias tarefas.' +title: Guides +intro: 'Learn about getting started with the REST API, authentication, and how to use the REST API for a variety of tasks.' redirect_from: - - /guides/ + - /guides - /v3/guides versions: fpt: '*' @@ -24,5 +24,10 @@ children: - /getting-started-with-the-git-database-api - /getting-started-with-the-checks-api --- - -This section of the documentation is intended to get you up-and-running with real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. Vamos cobrir tudo o que você precisa saber, desde a autenticação, passando pela a manipulação de resultados, até a combinação de resultados com outros aplicativos. Todos os tutoriais aqui terão um projeto, e cada projeto será armazenado e documentado no nosso repositório público de [platform-samples](https://github.com/github/platform-samples). ![O Electrocat](/assets/images/electrocat.png) +This section of the documentation is intended to get you up-and-running with +real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. We'll cover everything you need to know, from +authentication, to manipulating results, to combining results with other apps. +Every tutorial here will have a project, and every project will be +stored and documented in our public +[platform-samples](https://github.com/github/platform-samples) repository. +![The Electrocat](/assets/images/electrocat.png) diff --git a/translations/pt-BR/content/rest/guides/traversing-with-pagination.md b/translations/pt-BR/content/rest/guides/traversing-with-pagination.md index 91595eb798..36400d1399 100644 --- a/translations/pt-BR/content/rest/guides/traversing-with-pagination.md +++ b/translations/pt-BR/content/rest/guides/traversing-with-pagination.md @@ -263,4 +263,4 @@ puts "The next page link is #{next_page_href}" [octokit.rb]: https://github.com/octokit/octokit.rb [personal token]: /articles/creating-an-access-token-for-command-line-use [hypermedia-relations]: https://github.com/octokit/octokit.rb#pagination -[listing commits]: /rest/reference/repos#list-commits +[listing commits]: /rest/reference/commits#list-commits diff --git a/translations/pt-BR/content/rest/guides/working-with-comments.md b/translations/pt-BR/content/rest/guides/working-with-comments.md index 4df08458d9..371054556f 100644 --- a/translations/pt-BR/content/rest/guides/working-with-comments.md +++ b/translations/pt-BR/content/rest/guides/working-with-comments.md @@ -1,6 +1,6 @@ --- -title: Trabalhar com comentários -intro: 'Ao usar a API REST, você pode acessar e gerenciar comentários nos seus pull requests, problemas ou commits.' +title: Working with comments +intro: 'Using the REST API, you can access and manage comments in your pull requests, issues, or commits.' redirect_from: - /guides/working-with-comments/ - /v3/guides/working-with-comments @@ -15,17 +15,27 @@ topics: -Para qualquer pull request, {% data variables.product.product_name %} fornece três tipos de visualizações de comentários: [comentários no Pull Request][PR comment] como um todo, [comentários em uma linha específica][PR line comment] dentro do Pull Request, e [comentários em um commit específico][commit comment] dentro do Pull Request. +For any Pull Request, {% data variables.product.product_name %} provides three kinds of comment views: +[comments on the Pull Request][PR comment] as a whole, [comments on a specific line][PR line comment] within the Pull Request, +and [comments on a specific commit][commit comment] within the Pull Request. -Each of these types of comments goes through a different portion of the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. Neste guia, vamos explorar como você pode acessar e manipular cada um. Para cada exemplo, usaremos [esta amostra de Pull Request feita][sample PR] no repositório de "octocat". Como sempre, as amostras podem ser encontradas no [nosso repositório platform-samples][platform-samples]. +Each of these types of comments goes through a different portion of the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. +In this guide, we'll explore how you can access and manipulate each one. For every +example, we'll be using [this sample Pull Request made][sample PR] on the "octocat" +repository. As always, samples can be found in [our platform-samples repository][platform-samples]. -## Comentários do Pull Request +## Pull Request Comments -Para acessar comentários em um Pull Request, você passará [pela API de Problemas][issues]. A princípio, isso pode parecer contraintuitivo. Mas depois que você entender que um Pull Request é apenas um problema com o código, faz sentido usar a API de problemas para criar comentários em um Pull Request. +To access comments on a Pull Request, you'll go through [the Issues API][issues]. +This may seem counterintuitive at first. But once you understand that a Pull +Request is just an Issue with code, it makes sense to use the Issues API to +create comments on a Pull Request. -Nós demonstraremos como buscar comentários de Pull Request criando um script do Ruby usando [Octokit.rb][octokit.rb]. Você também deverá criar um [token de acesso pessoal][personal token]. +We'll demonstrate fetching Pull Request comments by creating a Ruby script using +[Octokit.rb][octokit.rb]. You'll also want to create a [personal access token][personal token]. -O código a seguir deve ajudá-lo a começar a acessar comentários de um pedido de Pull Request usando Octokit.rb: +The following code should help you get started accessing comments from a Pull Request +using Octokit.rb: ``` ruby require 'octokit' @@ -43,13 +53,18 @@ client.issue_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -Aqui, estamos especificamente chamando a API de problemas para obter os comentários (`issue_comments`), fornecendo o nome do repositório (`octocat/Spoon-Knife`) e o ID do Pull Request no qual estamos interessados (`1176`). Depois disso, trata-se simplesmente de um assunto de iteração através dos comentários para buscar informações sobre cada um. +Here, we're specifically calling out to the Issues API to get the comments (`issue_comments`), +providing both the repository's name (`octocat/Spoon-Knife`), and the Pull Request ID +we're interested in (`1176`). After that, it's simply a matter of iterating through +the comments to fetch information about each one. -## Comentários em uma linha de Pull Request +## Pull Request Comments on a Line -Na visualização de diferenças, você pode iniciar uma discussão sobre um aspecto específico de uma mudança singular feita dentro do Pull Request. Estes comentários ocorrem nas linhas individuais dentro de um arquivo alterado. A URL do ponto de extremidade para esta discussão vem da [API da revisão de pull request][PR Review API]. +Within the diff view, you can start a discussion on a particular aspect of a singular +change made within the Pull Request. These comments occur on the individual lines +within a changed file. The endpoint URL for this discussion comes from [the Pull Request Review API][PR Review API]. -O código a seguir busca todos os comentários de pull request feitos em arquivos, dado um único número de pull request: +The following code fetches all the Pull Request comments made on files, given a single Pull Request number: ``` ruby require 'octokit' @@ -69,13 +84,19 @@ client.pull_request_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -Você perceberá que ele é incrivelmente semelhante ao exemplo acima. A diferença entre esta visualização e o comentário de Pull Request é o foco da conversa. Um comentário feito em um Pull Request deve ser reservado para discussão ou ideias sobre a direção geral do código. Um comentário feito como parte de uma revisão de Pull Request deve lidar especificamente com a forma como uma determinada alteração foi implementada em um arquivo. +You'll notice that it's incredibly similar to the example above. The difference +between this view and the Pull Request comment is the focus of the conversation. +A comment made on a Pull Request should be reserved for discussion or ideas on +the overall direction of the code. A comment made as part of a Pull Request review should +deal specifically with the way a particular change was implemented within a file. -## Comentários de commit +## Commit Comments -O último tipo de comentários ocorre especificamente nos commits individuais. Por esta razão, eles fazem uso de [a API de comentário de commit][commit comment API]. +The last type of comments occur specifically on individual commits. For this reason, +they make use of [the commit comment API][commit comment API]. -Para recuperar os comentários em um commit, você deverá usar o SHA1 do commit. Em outras palavras, você não usará nenhum identificador relacionado ao Pull Request. Aqui está um exemplo: +To retrieve the comments on a commit, you'll want to use the SHA1 of the commit. +In other words, you won't use any identifier related to the Pull Request. Here's an example: ``` ruby require 'octokit' @@ -93,7 +114,8 @@ client.commit_comments("octocat/Spoon-Knife", "cbc28e7c8caee26febc8c013b0adfb97a end ``` -Observe que esta chamada de API recuperará comentários de linha única, bem como comentários feitos em todo o commit. +Note that this API call will retrieve single line comments, as well as comments made +on the entire commit. [PR comment]: https://github.com/octocat/Spoon-Knife/pull/1176#issuecomment-24114792 [PR line comment]: https://github.com/octocat/Spoon-Knife/pull/1176#discussion_r6252889 @@ -104,4 +126,4 @@ Observe que esta chamada de API recuperará comentários de linha única, bem co [personal token]: /articles/creating-an-access-token-for-command-line-use [octokit.rb]: https://github.com/octokit/octokit.rb [PR Review API]: /rest/reference/pulls#comments -[commit comment API]: /rest/reference/repos#get-a-commit-comment +[commit comment API]: /rest/reference/commits#get-a-commit-comment diff --git a/translations/pt-BR/content/rest/overview/api-previews.md b/translations/pt-BR/content/rest/overview/api-previews.md index 36d03bec29..7cd8e65bb0 100644 --- a/translations/pt-BR/content/rest/overview/api-previews.md +++ b/translations/pt-BR/content/rest/overview/api-previews.md @@ -165,7 +165,7 @@ GitHub App Manifests allow people to create preconfigured GitHub Apps. See "[Cre ## Deployment statuses -You can now update the `environment` of a [deployment status](/rest/reference/repos#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. +You can now update the `environment` of a [deployment status](/rest/reference/deployments#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. **Custom media type:** `flash-preview` **Announced:** [2018-10-16](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) diff --git a/translations/pt-BR/content/rest/reference/branches.md b/translations/pt-BR/content/rest/reference/branches.md new file mode 100644 index 0000000000..60a187a93b --- /dev/null +++ b/translations/pt-BR/content/rest/reference/branches.md @@ -0,0 +1,30 @@ +--- +title: Branches +intro: 'The branches API allows you to modify branches and their protection settings.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Branches +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Merging + +The Repo Merging API supports merging branches in a repository. This accomplishes +essentially the same thing as merging one branch into another in a local repository +and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. + +The authenticated user will be the author of any merges done through this endpoint. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/collaborators.md b/translations/pt-BR/content/rest/reference/collaborators.md new file mode 100644 index 0000000000..c4842b7049 --- /dev/null +++ b/translations/pt-BR/content/rest/reference/collaborators.md @@ -0,0 +1,35 @@ +--- +title: Collaborators +intro: 'The collaborators API allows you to add, invite, and remove collaborators from a repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Collaborators + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Invitations + +The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. + +Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted +access to invitations **without** also granting access to repository code, while the +`repo` scope grants permission to code as well as invitations. + +### Invite a user to a repository + +Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/commits.md b/translations/pt-BR/content/rest/reference/commits.md new file mode 100644 index 0000000000..79591a09a6 --- /dev/null +++ b/translations/pt-BR/content/rest/reference/commits.md @@ -0,0 +1,68 @@ +--- +title: Commits +intro: 'The commits API allows you to retrieve information and commits, create commit comments, and create commit statuses.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Commits + +The Repo Commits API supports listing, viewing, and comparing commits in a repository. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit comments + +### Custom media types for commit comments + +These are the supported media types for commit comments. You can read more +about the use of media types in the API [here](/rest/overview/media-types). + + application/vnd.github-commitcomment.raw+json + application/vnd.github-commitcomment.text+json + application/vnd.github-commitcomment.html+json + application/vnd.github-commitcomment.full+json + +For more information, see "[Custom media types](/rest/overview/media-types)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit statuses + +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. + +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. + +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. + +Statuses can include a `context` to indicate what service is providing that status. +For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `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. + +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. + +If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/deployments.md b/translations/pt-BR/content/rest/reference/deployments.md new file mode 100644 index 0000000000..1170b20485 --- /dev/null +++ b/translations/pt-BR/content/rest/reference/deployments.md @@ -0,0 +1,90 @@ +--- +title: Deployments +intro: 'The deployments API allows you to create and delete deploy keys, deployments, and deployment environments.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Deploy keys + +{% data reusables.repositories.deploy-keys %} + +Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Deployments + +Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). + +Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. + +Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and +the `description` is a high-level summary of what happened with the deployment. + +GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. + +Below is a simple sequence diagram for how these interactions would work. + +``` ++---------+ +--------+ +-----------+ +-------------+ +| Tooling | | GitHub | | 3rd Party | | Your Server | ++---------+ +--------+ +-----------+ +-------------+ + | | | | + | Create Deployment | | | + |--------------------->| | | + | | | | + | Deployment Created | | | + |<---------------------| | | + | | | | + | | Deployment Event | | + | |---------------------->| | + | | | SSH+Deploys | + | | |-------------------->| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | + | | | Deploy Completed | + | | |<--------------------| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | +``` + +Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. + +Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. + + +### Inactive deployments + +When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. + +You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +## Environments + +The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." + +{% data reusables.gated-features.environments %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/index.md b/translations/pt-BR/content/rest/reference/index.md index 7281e42576..eb8dc90939 100644 --- a/translations/pt-BR/content/rest/reference/index.md +++ b/translations/pt-BR/content/rest/reference/index.md @@ -1,7 +1,7 @@ --- -title: Referência -shortTitle: Referência -intro: Veja documentação de referência para aprender os recursos disponíveis na API REST do GitHub. +title: Reference +shortTitle: Reference +intro: View reference documentation to learn about the resources available in the GitHub REST API. versions: fpt: '*' ghes: '*' @@ -14,14 +14,19 @@ children: - /activity - /apps - /billing + - /branches - /checks - /codes-of-conduct - /code-scanning - /codespaces + - /commits + - /collaborators + - /deployments - /emojis - /enterprise-admin - /gists - /git + - /pages - /gitignore - /interactions - /issues @@ -36,12 +41,15 @@ children: - /pulls - /rate-limit - /reactions + - /releases - /repos + - /repository-metrics - /scim - /search - /secret-scanning - /teams - /users + - /webhooks - /permissions-required-for-github-apps --- diff --git a/translations/pt-BR/content/rest/reference/pages.md b/translations/pt-BR/content/rest/reference/pages.md new file mode 100644 index 0000000000..713ca428fc --- /dev/null +++ b/translations/pt-BR/content/rest/reference/pages.md @@ -0,0 +1,32 @@ +--- +title: Pages +intro: 'The GitHub Pages API allows you to interact with GitHub Pages sites and build information.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." + +In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: +* `null`: The site has yet to be built. +* `queued`: The build has been requested but not yet begun. +* `building`:The build is in progress. +* `built`: The site has been built. +* `errored`: Indicates an error occurred during the build. + +In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: +* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. +* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: + - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. + - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/permissions-required-for-github-apps.md b/translations/pt-BR/content/rest/reference/permissions-required-for-github-apps.md index 388c85781c..a067fef447 100644 --- a/translations/pt-BR/content/rest/reference/permissions-required-for-github-apps.md +++ b/translations/pt-BR/content/rest/reference/permissions-required-for-github-apps.md @@ -41,18 +41,18 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /rate_limit`](/rest/reference/rate-limit#get-rate-limit-status-for-the-authenticated-user) - [`GET /repos/:owner/:repo`](/rest/reference/repos#get-a-repository) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repos#get-community-profile-metrics) +- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif -%} - [`GET /repos/:owner/:repo/contributors`](/rest/reference/repos#list-repository-contributors) - [`GET /repos/:owner/:repo/forks`](/rest/reference/repos#list-forks) - [`GET /repos/:owner/:repo/languages`](/rest/reference/repos#list-repository-languages) - [`GET /repos/:owner/:repo/license`](/rest/reference/licenses#get-the-license-for-a-repository) - [`GET /repos/:owner/:repo/stargazers`](/rest/reference/activity#list-stargazers) -- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repos#get-the-weekly-commit-activity) -- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repos#get-the-last-year-of-commit-activity) -- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repos#get-all-contributor-commit-activity) -- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repos#get-the-weekly-commit-count) -- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repository-metrics#get-the-weekly-commit-count) +- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) - [`GET /repos/:owner/:repo/subscribers`](/rest/reference/activity#list-watchers) - [`GET /repos/:owner/:repo/tags`](/rest/reference/repos#list-repository-tags) - [`GET /repos/:owner/:repo/topics`](/rest/reference/repos#get-all-repository-topics) @@ -73,14 +73,14 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /users/:username/subscriptions`](/rest/reference/activity#list-repositories-watched-by-a-user) _Collaborators_ -- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/repos#list-repository-collaborators) -- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) +- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/collaborators#list-repository-collaborators) +- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) _Commit comments_ -- [`GET /repos/:owner/:repo/comments`](/rest/reference/repos#list-commit-comments-for-a-repository) -- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#get-a-commit-comment) +- [`GET /repos/:owner/:repo/comments`](/rest/reference/commits#list-commit-comments-for-a-repository) +- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#get-a-commit-comment) - [`GET /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#list-reactions-for-a-commit-comment) -- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#list-commit-comments) +- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#list-commit-comments) _Events_ - [`GET /events`](/rest/reference/activity#list-public-events) @@ -173,7 +173,7 @@ _Search_ - [`DELETE /repos/:owner/:repo/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-for-a-repository) (:write) {% endif -%} {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif -%} - [`PUT /repos/:owner/:repo/topics`](/rest/reference/repos#replace-all-repository-topics) (:write) - [`POST /repos/:owner/:repo/transfer`](/rest/reference/repos#transfer-a-repository) (:write) @@ -186,57 +186,57 @@ _Search_ {% ifversion fpt -%} - [`DELETE /repos/:owner/:repo/vulnerability-alerts`](/rest/reference/repos#disable-vulnerability-alerts) (:write) {% endif -%} -- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/repos#accept-a-repository-invitation) (:write) -- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/repos#decline-a-repository-invitation) (:write) +- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#accept-a-repository-invitation) (:write) +- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#decline-a-repository-invitation) (:write) _Branches_ -- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#get-branch-protection) (:read) -- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#update-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#delete-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#get-admin-branch-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#set-admin-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#delete-admin-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#get-pull-request-review-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#update-pull-request-review-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#delete-pull-request-review-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#get-commit-signature-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#create-commit-signature-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#delete-commit-signature-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#get-status-checks-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#update-status-check-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#remove-status-check-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#get-all-status-check-contexts) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#add-status-check-contexts) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#set-status-check-contexts) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#remove-status-check-contexts) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#get-access-restrictions) (:read) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#delete-access-restrictions) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#get-branch-protection) (:read) +- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#update-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#delete-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#get-admin-branch-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#set-admin-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#delete-admin-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#get-pull-request-review-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#update-pull-request-review-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#delete-pull-request-review-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#get-commit-signature-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#create-commit-signature-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#delete-commit-signature-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#get-status-checks-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#update-status-check-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#remove-status-check-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#get-all-status-check-contexts) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#add-status-check-contexts) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#set-status-check-contexts) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#remove-status-check-contexts) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#get-access-restrictions) (:read) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#delete-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#add-team-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#set-team-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#remove-team-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#add-team-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#set-team-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#remove-team-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#list-users-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#add-user-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#set-user-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#add-user-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#set-user-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Collaborators_ -- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#add-a-repository-collaborator) (:write) -- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#remove-a-repository-collaborator) (:write) +- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#add-a-repository-collaborator) (:write) +- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#remove-a-repository-collaborator) (:write) _Invitations_ -- [`GET /repos/:owner/:repo/invitations`](/rest/reference/repos#list-repository-invitations) (:read) -- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#update-a-repository-invitation) (:write) -- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#delete-a-repository-invitation) (:write) +- [`GET /repos/:owner/:repo/invitations`](/rest/reference/collaborators#list-repository-invitations) (:read) +- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#update-a-repository-invitation) (:write) +- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#delete-a-repository-invitation) (:write) _Keys_ -- [`GET /repos/:owner/:repo/keys`](/rest/reference/repos#list-deploy-keys) (:read) -- [`POST /repos/:owner/:repo/keys`](/rest/reference/repos#create-a-deploy-key) (:write) -- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#get-a-deploy-key) (:read) -- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#delete-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys`](/rest/reference/deployments#list-deploy-keys) (:read) +- [`POST /repos/:owner/:repo/keys`](/rest/reference/deployments#create-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#get-a-deploy-key) (:read) +- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#delete-a-deploy-key) (:write) _Teams_ - [`GET /repos/:owner/:repo/teams`](/rest/reference/repos#list-repository-teams) (:read) @@ -245,10 +245,10 @@ _Teams_ {% ifversion fpt or ghec %} _Traffic_ -- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repos#get-repository-clones) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repos#get-top-referral-paths) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repos#get-top-referral-sources) (:read) -- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repos#get-page-views) (:read) +- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repository-metrics#get-repository-clones) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repository-metrics#get-top-referral-paths) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repository-metrics#get-top-referral-sources) (:read) +- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repository-metrics#get-page-views) (:read) {% endif %} {% ifversion fpt or ghec %} @@ -345,37 +345,37 @@ _Traffic_ - [`GET /repos/:owner/:repo/check-suites/:check_suite_id`](/rest/reference/checks#get-a-check-suite) (:read) - [`GET /repos/:owner/:repo/check-suites/:check_suite_id/check-runs`](/rest/reference/checks#list-check-runs-in-a-check-suite) (:read) - [`POST /repos/:owner/:repo/check-suites/:check_suite_id/rerequest`](/rest/reference/checks#rerequest-a-check-suite) (:write) -- [`GET /repos/:owner/:repo/commits`](/rest/reference/repos#list-commits) (:read) -- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/repos#get-a-commit) (:read) +- [`GET /repos/:owner/:repo/commits`](/rest/reference/commits#list-commits) (:read) +- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/commits#get-a-commit) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-runs`](/rest/reference/checks#list-check-runs-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-suites`](/rest/reference/checks#list-check-suites-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/community/code_of_conduct`](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) (:read) -- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/repos#compare-two-commits) (:read) +- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/commits#compare-two-commits) (:read) - [`GET /repos/:owner/:repo/contents/:path`](/rest/reference/repos#get-repository-content) (:read) {% ifversion fpt or ghes or ghae -%} - [`POST /repos/:owner/:repo/dispatches`](/rest/reference/repos#create-a-repository-dispatch-event) (:write) {% endif -%} - [`POST /repos/:owner/:repo/forks`](/rest/reference/repos#create-a-fork) (:read) -- [`POST /repos/:owner/:repo/merges`](/rest/reference/repos#merge-a-branch) (:write) +- [`POST /repos/:owner/:repo/merges`](/rest/reference/branches#merge-a-branch) (:write) - [`PUT /repos/:owner/:repo/pulls/:pull_number/merge`](/rest/reference/pulls#merge-a-pull-request) (:write) - [`GET /repos/:owner/:repo/readme(?:/(.*))?`](/rest/reference/repos#get-a-repository-readme) (:read) _Branches_ -- [`GET /repos/:owner/:repo/branches`](/rest/reference/repos#list-branches) (:read) -- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/repos#get-a-branch) (:read) +- [`GET /repos/:owner/:repo/branches`](/rest/reference/branches#list-branches) (:read) +- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/branches#get-a-branch) (:read) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#list-apps-with-access-to-the-protected-branch) (:write) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#add-app-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#set-app-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#add-app-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#set-app-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Commit comments_ -- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#update-a-commit-comment) (:write) -- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#delete-a-commit-comment) (:write) +- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#update-a-commit-comment) (:write) +- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#delete-a-commit-comment) (:write) - [`POST /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#create-reaction-for-a-commit-comment) (:read) -- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#create-a-commit-comment) (:read) +- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#create-a-commit-comment) (:read) _Git_ - [`POST /repos/:owner/:repo/git/blobs`](/rest/reference/git#create-a-blob) (:write) @@ -435,15 +435,15 @@ _Releases_ ### Permission on "deployments" -- [`GET /repos/:owner/:repo/deployments`](/rest/reference/repos#list-deployments) (:read) -- [`POST /repos/:owner/:repo/deployments`](/rest/reference/repos#create-a-deployment) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#get-a-deployment) (:read) +- [`GET /repos/:owner/:repo/deployments`](/rest/reference/deployments#list-deployments) (:read) +- [`POST /repos/:owner/:repo/deployments`](/rest/reference/deployments#create-a-deployment) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#get-a-deployment) (:read) {% ifversion fpt or ghes or ghae -%} -- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#delete-a-deployment) (:write) +- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#delete-a-deployment) (:write) {% endif -%} -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#list-deployment-statuses) (:read) -- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#create-a-deployment-status) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/repos#get-a-deployment-status) (:read) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#list-deployment-statuses) (:read) +- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#create-a-deployment-status) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/deployments#get-a-deployment-status) (:read) {% ifversion fpt or ghes or ghec %} ### Permission on "emails" @@ -703,16 +703,16 @@ _Teams_ ### Permission on "pages" -- [`GET /repos/:owner/:repo/pages`](/rest/reference/repos#get-a-github-pages-site) (:read) -- [`POST /repos/:owner/:repo/pages`](/rest/reference/repos#create-a-github-pages-site) (:write) -- [`PUT /repos/:owner/:repo/pages`](/rest/reference/repos#update-information-about-a-github-pages-site) (:write) -- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/repos#delete-a-github-pages-site) (:write) -- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/repos#list-github-pages-builds) (:read) -- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/repos#request-a-github-pages-build) (:write) -- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/repos#get-github-pages-build) (:read) -- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/repos#get-latest-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages`](/rest/reference/pages#get-a-github-pages-site) (:read) +- [`POST /repos/:owner/:repo/pages`](/rest/reference/pages#create-a-github-pages-site) (:write) +- [`PUT /repos/:owner/:repo/pages`](/rest/reference/pages#update-information-about-a-github-pages-site) (:write) +- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/pages#delete-a-github-pages-site) (:write) +- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/pages#list-github-pages-builds) (:read) +- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/pages#request-a-github-pages-build) (:write) +- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/pages#get-github-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/pages#get-latest-pages-build) (:read) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif %} ### Permission on "pull requests" @@ -812,12 +812,12 @@ _Reviews_ ### Permission on "repository hooks" -- [`GET /repos/:owner/:repo/hooks`](/rest/reference/repos#list-repository-webhooks) (:read) -- [`POST /repos/:owner/:repo/hooks`](/rest/reference/repos#create-a-repository-webhook) (:write) -- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#get-a-repository-webhook) (:read) -- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#update-a-repository-webhook) (:write) -- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#delete-a-repository-webhook) (:write) -- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/repos#ping-a-repository-webhook) (:read) +- [`GET /repos/:owner/:repo/hooks`](/rest/reference/webhooks#list-repository-webhooks) (:read) +- [`POST /repos/:owner/:repo/hooks`](/rest/reference/webhooks#create-a-repository-webhook) (:write) +- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#get-a-repository-webhook) (:read) +- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#update-a-repository-webhook) (:write) +- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#delete-a-repository-webhook) (:write) +- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/webhooks#ping-a-repository-webhook) (:read) - [`POST /repos/:owner/:repo/hooks/:hook_id/tests`](/rest/reference/repos#test-the-push-repository-webhook) (:read) {% ifversion ghes %} @@ -930,9 +930,9 @@ _Teams_ ### Permission on "statuses" -- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) (:read) -- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/repos#list-commit-statuses-for-a-reference) (:read) -- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/repos#create-a-commit-status) (:write) +- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) (:read) +- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/commits#list-commit-statuses-for-a-reference) (:read) +- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/commits#create-a-commit-status) (:write) ### Permission on "team discussions" diff --git a/translations/pt-BR/content/rest/reference/pulls.md b/translations/pt-BR/content/rest/reference/pulls.md index a8dba5b25a..d8b22a8117 100644 --- a/translations/pt-BR/content/rest/reference/pulls.md +++ b/translations/pt-BR/content/rest/reference/pulls.md @@ -1,6 +1,6 @@ --- title: Pulls -intro: 'A API Pulls permite que você liste, veja, edite, crie e até mesmo faça merge de pull requests.' +intro: 'The Pulls API allows you to list, view, edit, create, and even merge pull requests.' redirect_from: - /v3/pulls versions: @@ -13,13 +13,13 @@ topics: miniTocMaxHeadingLevel: 3 --- -A API do Pull Request permite que você liste, visualize, edite, crie e até mesmo faça merge de pull requests. Comentários em pull requests podem ser gerenciados através da [API de Comentários do Problema](/rest/reference/issues#comments). +The Pull Request API allows you to list, view, edit, create, and even merge pull requests. Comments on pull requests can be managed via the [Issue Comments API](/rest/reference/issues#comments). -Cada pull request é um problema, mas nem todos os problemas são um pull request. Por este motivo, as ações "compartilhadas" para ambos os recursos, como a manipulação de responsáveis, etiquetas e marcos são fornecidos dentro de [a API de problemas](/rest/reference/issues). +Every pull request is an issue, but not every issue is a pull request. For this reason, "shared" actions for both features, like manipulating assignees, labels and milestones, are provided within [the Issues API](/rest/reference/issues). -### Tipos de mídia personalizados para pull requests +### Custom media types for pull requests -Estes são os tipos de mídia compatíveis com pull requests. +These are the supported media types for pull requests. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json @@ -28,59 +28,60 @@ Estes são os tipos de mídia compatíveis com pull requests. application/vnd.github.VERSION.diff application/vnd.github.VERSION.patch -Para obter mais informações, consulte "[tipos de mídia personalizados](/rest/overview/media-types)". +For more information, see "[Custom media types](/rest/overview/media-types)." -Se um diff estiver corrompido, entre em contato com {% data variables.contact.contact_support %}. Inclua o nome e o ID do pull request do repositório na sua mensagem. +If a diff is corrupt, contact {% data variables.contact.contact_support %}. Include the repository name and pull request ID in your message. -### Relações do Link +### Link Relations -Pull Requests têm estas relações de link possíveis: +Pull Requests have these possible link relations: -| Nome | Descrição | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `self` | O local da API deste Pull Request. | -| `html` | O locl do HTML deste Pull Request. | -| `problema` | O local da API do [Problema](/rest/reference/issues) deste Pull Request. | -| `comentários` | O local da API dos [comentários do problema](/rest/reference/issues#comments) deste Pull Request. | -| `review_comments` | O local da API dos [comentários da revisão](/rest/reference/pulls#comments) deste Pull Request. | -| `review_comment` | O [modelo de URL](/rest#hypermedia) para construir o local da API para um [comentário de revisão](/rest/reference/pulls#comments) no repositório deste Pull Request. | -| `commits` | O local da API dos [commits](#list-commits-on-a-pull-request) deste Pull Request. | -| `Status` | O local da API dos [status do commit](/rest/reference/repos#statuses) deste pull request, que são os status no seu branch `principal`. | +Name | Description +-----|-----------| +`self`| The API location of this Pull Request. +`html`| The HTML location of this Pull Request. +`issue`| The API location of this Pull Request's [Issue](/rest/reference/issues). +`comments`| The API location of this Pull Request's [Issue comments](/rest/reference/issues#comments). +`review_comments`| The API location of this Pull Request's [Review comments](/rest/reference/pulls#comments). +`review_comment`| The [URL template](/rest#hypermedia) to construct the API location for a [Review comment](/rest/reference/pulls#comments) in this Pull Request's repository. +`commits`|The API location of this Pull Request's [commits](#list-commits-on-a-pull-request). +`statuses`| The API location of this Pull Request's [commit statuses](/rest/reference/repos#statuses), which are the statuses of its `head` branch. {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} {% endfor %} -## Revisões +## Reviews -As revisões de pull request são grupos de comentários de revisão de pull request no Pull Request, agrupados e com um status e comentário de texto opcional. +Pull Request Reviews are groups of Pull Request Review Comments on the Pull +Request, grouped together with a state and optional body comment. {% for operation in currentRestOperations %} {% if operation.subcategory == 'reviews' %}{% include rest_operation %}{% endif %} {% endfor %} -## Comentários de revisão +## Review comments -Os comentários de revisão de pull request são comentários em uma parte do diff unificado feitos durante uma revisão de pull request. Comentários de commit e comentários de problemas são são diferentes dos comentários de revisão de pull request. Você aplica comentários de submissão diretamente para um commit e aplica comentários de problema sem fazer referência a uma parte do diff unificado. Para obter mais informações, consulte "[Criar um comentário de commit](/rest/reference/repos#create-a-commit-comment)" e "[Criar um comentário de problema](/rest/reference/issues#create-an-issue-comment)". +Pull request review comments are comments on a portion of the unified diff made during a pull request review. Commit comments and issue comments are different from pull request review comments. You apply commit comments directly to a commit and you apply issue comments without referencing a portion of the unified diff. For more information, see "[Create a commit comment](/rest/reference/commits#create-a-commit-comment)" and "[Create an issue comment](/rest/reference/issues#create-an-issue-comment)." -### Tipos de mídia personalizados para comentários de revisão de pull request +### Custom media types for pull request review comments -Estes são os tipos de mídia compatíveis com os comentários de revisão de pull request. +These are the supported media types for pull request review comments. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json application/vnd.github.VERSION.html+json application/vnd.github.VERSION.full+json -Para obter mais informações, consulte "[tipos de mídia personalizados](/rest/overview/media-types)". +For more information, see "[Custom media types](/rest/overview/media-types)." {% for operation in currentRestOperations %} {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} {% endfor %} -## Solicitações de revisão +## Review requests -Os autores dos pull request e os proprietários e colaboradores dos repositórios podem solicitar uma revisão de pull request para qualquer pessoa com acesso de gravação ao repositório. Cada revisor solicitado receberá uma notificação pedindo-lhes para revisar o pull request. +Pull request authors and repository owners and collaborators can request a pull request review from anyone with write access to the repository. Each requested reviewer will receive a notification asking them to review the pull request. {% for operation in currentRestOperations %} {% if operation.subcategory == 'review-requests' %}{% include rest_operation %}{% endif %} diff --git a/translations/pt-BR/content/rest/reference/releases.md b/translations/pt-BR/content/rest/reference/releases.md new file mode 100644 index 0000000000..a434451bea --- /dev/null +++ b/translations/pt-BR/content/rest/reference/releases.md @@ -0,0 +1,23 @@ +--- +title: Releases +intro: 'The releases API allows you to create, modify, and delete releases and release assets.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% note %} + +**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. + +{% endnote %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/repos.md b/translations/pt-BR/content/rest/reference/repos.md index b740a1207d..89a55881b8 100644 --- a/translations/pt-BR/content/rest/reference/repos.md +++ b/translations/pt-BR/content/rest/reference/repos.md @@ -30,52 +30,6 @@ To help streamline your workflow, you can use the API to add autolinks to extern {% endfor %} {% endif %} -## Branches - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Collaborators - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Comments - -### Custom media types for commit comments - -These are the supported media types for commit comments. You can read more -about the use of media types in the API [here](/rest/overview/media-types). - - application/vnd.github-commitcomment.raw+json - application/vnd.github-commitcomment.text+json - application/vnd.github-commitcomment.html+json - application/vnd.github-commitcomment.full+json - -For more information, see "[Custom media types](/rest/overview/media-types)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Commits - -The Repo Commits API supports listing, viewing, and comparing commits in a repository. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Community - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% endif %} ## Contents @@ -105,105 +59,12 @@ You can read more about the use of media types in the API [here](/rest/overview/ {% if operation.subcategory == 'contents' %}{% include rest_operation %}{% endif %} {% endfor %} -## Deploy keys - -{% data reusables.repositories.deploy-keys %} - -Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Deployments - -Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). - -Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. - -Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and -the `description` is a high-level summary of what happened with the deployment. - -GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. - -Below is a simple sequence diagram for how these interactions would work. - -``` -+---------+ +--------+ +-----------+ +-------------+ -| Tooling | | GitHub | | 3rd Party | | Your Server | -+---------+ +--------+ +-----------+ +-------------+ - | | | | - | Create Deployment | | | - |--------------------->| | | - | | | | - | Deployment Created | | | - |<---------------------| | | - | | | | - | | Deployment Event | | - | |---------------------->| | - | | | SSH+Deploys | - | | |-------------------->| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | - | | | Deploy Completed | - | | |<--------------------| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | -``` - -Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. - -Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. - - -### Inactive deployments - -When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. - -You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -## Environments - -The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." - -{% data reusables.gated-features.environments %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - ## Forks {% for operation in currentRestOperations %} {% if operation.subcategory == 'forks' %}{% include rest_operation %}{% endif %} {% endfor %} -## Invitations - -The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. - -Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted -access to invitations **without** also granting access to repository code, while the -`repo` scope grants permission to code as well as invitations. - -### Invite a user to a repository - -Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} -{% endfor %} - {% ifversion fpt or ghae or ghes > 3.2 or ghec %} ## Git LFS @@ -214,181 +75,3 @@ Use the API endpoint for adding a collaborator. For more information, see "[Add {% endif %} -## Merging - -The Repo Merging API supports merging branches in a repository. This accomplishes -essentially the same thing as merging one branch into another in a local repository -and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. - -The authenticated user will be the author of any merges done through this endpoint. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Pages - -The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." - -In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: -* `null`: The site has yet to be built. -* `queued`: The build has been requested but not yet begun. -* `building`:The build is in progress. -* `built`: The site has been built. -* `errored`: Indicates an error occurred during the build. - -In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: -* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. -* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: - - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. - - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Releases - -{% note %} - -**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. - -{% endnote %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statistics - -The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different -types of repository activity. - -### A word about caching - -Computing repository statistics is an expensive operation, so we try to return cached -data whenever possible. If the data hasn't been cached when you query a repository's -statistics, you'll receive a `202` response; a background job is also fired to -start compiling these statistics. Give the job a few moments to complete, and -then submit the request again. If the job has completed, that request will receive a -`200` response with the statistics in the response body. - -Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. - -### Statistics exclude some types of commits - -The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). - -To summarize: -- All statistics exclude merge commits. -- Contributor statistics also exclude empty commits. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statuses - -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. - -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. - -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. - -Statuses can include a `context` to indicate what service is providing that status. -For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `security`. You can -then use the [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. - -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. - -If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Traffic - -For repositories that you have push access to, the traffic API provides access -to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - -## Webhooks - -Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} - -If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). - -In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} -{% endfor %} - -### Receiving Webhooks - -In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. - -#### Webhook headers - -{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. - -### PubSubHubbub - -GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. -Topic URLs for a GitHub repository's pushes are in this format: - -`https://github.com/{owner}/{repo}/events/{event}` - -The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." - -#### Response format - -The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. - - Accept: application/json - https://github.com/{owner}/{repo}/events/push.json - -#### Callback URLs - -Callback URLs can use the `http://` protocol. - - # Send updates to postbin.org - http://postbin.org/123 - -#### Subscribing - -The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: - -``` shell -curl -u "user" -i \ - {% data variables.product.api_url_pre %}/hub \ - -F "hub.mode=subscribe" \ - -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ - -F "hub.callback=http://postbin.org/123" -``` - -PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. - -##### Parameters - -Name | Type | Description ------|------|-------------- -``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. -``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. -``hub.callback``|`string` | The URI to receive the updates to the topic. -``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/pt-BR/content/rest/reference/repository-metrics.md b/translations/pt-BR/content/rest/reference/repository-metrics.md new file mode 100644 index 0000000000..aea394d6e0 --- /dev/null +++ b/translations/pt-BR/content/rest/reference/repository-metrics.md @@ -0,0 +1,61 @@ +--- +title: Repository metrics +intro: 'The repository metrics API allows you to retrieve community profile, statistics, and traffic for your repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% ifversion fpt or ghec %} +## Community + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% endif %} + +## Statistics + +The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different +types of repository activity. + +### A word about caching + +Computing repository statistics is an expensive operation, so we try to return cached +data whenever possible. If the data hasn't been cached when you query a repository's +statistics, you'll receive a `202` response; a background job is also fired to +start compiling these statistics. Give the job a few moments to complete, and +then submit the request again. If the job has completed, that request will receive a +`200` response with the statistics in the response body. + +Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. + +### Statistics exclude some types of commits + +The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). + +To summarize: +- All statistics exclude merge commits. +- Contributor statistics also exclude empty commits. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghec %} +## Traffic + +For repositories that you have push access to, the traffic API provides access +to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/pt-BR/content/rest/reference/search.md b/translations/pt-BR/content/rest/reference/search.md index 99d4a14e4f..19f0a12d45 100644 --- a/translations/pt-BR/content/rest/reference/search.md +++ b/translations/pt-BR/content/rest/reference/search.md @@ -58,7 +58,7 @@ GitHub Octocat in:readme user:defunkt const queryString = 'q=' + encodeURIComponent('GitHub Octocat in:readme user:defunkt'); ``` -See "[Searching on GitHub](/articles/searching-on-github/)" +See "[Searching on GitHub](/search-github/searching-on-github)" for a complete list of available qualifiers, their format, and an example of how to use them. For information about how to use operators to match specific quantities, dates, or to exclude results, see "[Understanding the search syntax](/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax/)." diff --git a/translations/pt-BR/content/rest/reference/webhooks.md b/translations/pt-BR/content/rest/reference/webhooks.md new file mode 100644 index 0000000000..c9908012c1 --- /dev/null +++ b/translations/pt-BR/content/rest/reference/webhooks.md @@ -0,0 +1,77 @@ +--- +title: Webhooks +intro: 'The webhooks API allows you to create and manage webhooks for your repositories.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} + +If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). + +In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} +{% endfor %} + +### Receiving Webhooks + +In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. + +#### Webhook headers + +{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. + +### PubSubHubbub + +GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. +Topic URLs for a GitHub repository's pushes are in this format: + +`https://github.com/{owner}/{repo}/events/{event}` + +The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." + +#### Response format + +The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. + + Accept: application/json + https://github.com/{owner}/{repo}/events/push.json + +#### Callback URLs + +Callback URLs can use the `http://` protocol. + + # Send updates to postbin.org + http://postbin.org/123 + +#### Subscribing + +The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: + +``` shell +curl -u "user" -i \ + {% data variables.product.api_url_pre %}/hub \ + -F "hub.mode=subscribe" \ + -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ + -F "hub.callback=http://postbin.org/123" +``` + +PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. + +##### Parameters + +Name | Type | Description +-----|------|-------------- +``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. +``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. +``hub.callback``|`string` | The URI to receive the updates to the topic. +``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-0/20.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-0/20.yml index c74f9a6da8..fd36013448 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-0/20.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-0/20.yml @@ -11,6 +11,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. - As regras de firewall personalizadas são removidas durante o processo de atualização. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-0/22.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-0/22.yml new file mode 100644 index 0000000000..8dd825f030 --- /dev/null +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-0/22.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. + - As regras de firewall personalizadas são removidas durante o processo de atualização. + - Arquivos LFS do Git [enviados através da interface web](https://github.com/blog/2105-upload-files-to-your-repositories) são adicionados diretamente ao repositório e de forma incorreta. + - Os problemas não podem ser fechados se contiverem um permalink para um blob no mesmo repositório, onde o caminho do arquivo blob's é maior que 255 caracteres. + - Quando "Usuários podem pesquisar pelo GitHub.com" está habilitado com o GitHub Connect, os problemas em repositórios privados e internos não estão incluídos nos resultados de pesquisa do GitHub.com. + - Quando um nó de réplica está off-line em uma configuração de alta disponibilidade, {% data variables.product.product_name %} ainda pode encaminhar solicitações de {% data variables.product.prodname_pages %} para o nó off-line, reduzindo a disponibilidade de {% data variables.product.prodname_pages %} para os usuários. + - Os limites de recursos que são específicos para processamento de hooks pre-receive podem causar falha em alguns hooks pre-receive. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-1/12.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-1/12.yml index 67ef64498a..9f04d332b2 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-1/12.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-1/12.yml @@ -13,6 +13,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - O registro npm de {% data variables.product.prodname_registry %} não retorna mais o valor de tempo em respostas de metadados. Isso foi feito para permitir melhorias substanciais de desempenho. Continuamos a ter todos os dados necessários para devolver um valor de tempo como parte da resposta aos metadados e retomaremos o retorno desse valor no futuro, assim que tivermos resolvido os problemas de desempenho existentes. - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-1/14.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-1/14.yml new file mode 100644 index 0000000000..50f3d13fa5 --- /dev/null +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-1/14.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - O registro npm de {% data variables.product.prodname_registry %} não retorna mais o valor de tempo em respostas de metadados. Isso foi feito para permitir melhorias substanciais de desempenho. Continuamos a ter todos os dados necessários para devolver um valor de tempo como parte da resposta aos metadados e retomaremos o retorno desse valor no futuro, assim que tivermos resolvido os problemas de desempenho existentes. + - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. + - As regras de firewall personalizadas são removidas durante o processo de atualização. + - Arquivos LFS do Git [enviados através da interface web](https://github.com/blog/2105-upload-files-to-your-repositories) são adicionados diretamente ao repositório e de forma incorreta. + - Os problemas não podem ser fechados se contiverem um permalink para um blob no mesmo repositório, onde o caminho do arquivo blob's é maior que 255 caracteres. + - Quando "Usuários podem pesquisar pelo GitHub.com" está habilitado com o GitHub Connect, os problemas em repositórios privados e internos não estão incluídos nos resultados de pesquisa do GitHub.com. + - Se o {% data variables.product.prodname_actions %} estiver habilitado para {% data variables.product.prodname_ghe_server %}, a desmontagem de um nó de réplica com `ghe-repl-teardown` será bem-sucedida, mas poderá retornar `ERROR:Running migrations`. + - Os limites de recursos que são específicos para processamento de hooks pre-receive podem causar falha em alguns hooks pre-receive. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-2/0-rc1.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-2/0-rc1.yml index ff9ce241e6..8b71063489 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-2/0-rc1.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-2/0-rc1.yml @@ -165,8 +165,8 @@ sections: - heading: Alterações de API notes: - - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' - - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' + - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' + - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Webhooks](/rest/reference/webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' - | Improvements have been made to the code scanning and {% data variables.product.prodname_GH_advanced_security %} APIs: diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-2/0.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-2/0.yml index eb8c6727ed..a012a185be 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-2/0.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-2/0.yml @@ -166,7 +166,7 @@ sections: - heading: Alterações de API notes: - - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' + - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' - | Improvements have been made to the code scanning and {% data variables.product.prodname_GH_advanced_security %} APIs: diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-2/4.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-2/4.yml index 9929da8b56..afd9fdced1 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-2/4.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-2/4.yml @@ -19,6 +19,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. - As regras de firewall personalizadas são removidas durante o processo de atualização. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-2/6.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-2/6.yml new file mode 100644 index 0000000000..035066bb18 --- /dev/null +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-2/6.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - Em uma nova configuração de {% data variables.product.prodname_ghe_server %} sem qualquer usuário, um invasor pode criar o primeiro usuário administrador. + - As regras de firewall personalizadas são removidas durante o processo de atualização. + - Arquivos LFS do Git [enviados através da interface web](https://github.com/blog/2105-upload-files-to-your-repositories) são adicionados diretamente ao repositório e de forma incorreta. + - Os problemas não podem ser fechados se contiverem um permalink para um blob no mesmo repositório, onde o caminho do arquivo blob's é maior que 255 caracteres. + - Quando "Usuários podem pesquisar pelo GitHub.com" está habilitado com o GitHub Connect, os problemas em repositórios privados e internos não estão incluídos nos resultados de pesquisa do GitHub.com. + - O registro npm de {% data variables.product.prodname_registry %} não retorna mais o valor de tempo em respostas de metadados. Isso foi feito para permitir melhorias substanciais de desempenho. Continuamos a ter todos os dados necessários para devolver um valor de tempo como parte da resposta aos metadados e retomaremos o retorno desse valor no futuro, assim que tivermos resolvido os problemas de desempenho existentes. + - Os limites de recursos que são específicos para processamento de hooks pre-receive podem causar falha em alguns hooks pre-receive. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-3/0-rc1.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-3/0-rc1.yml index 91569282d1..cbbf3f5c1b 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-3/0-rc1.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-3/0-rc1.yml @@ -147,7 +147,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-3/0.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-3/0.yml index 6e900e293b..25155d7e53 100644 --- a/translations/pt-BR/data/release-notes/enterprise-server/3-3/0.yml +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-3/0.yml @@ -44,6 +44,7 @@ sections: - '{% data variables.product.prodname_ghe_server %} 3.3 includes the public beta of a repository cache for geographically-distributed teams and CI infrastructure. The repository cache keeps a read-only copy of your repositories available in additional geographies, which prevents clients from downloading duplicate Git content from your primary instance. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."' - '{% data variables.product.prodname_ghe_server %} 3.3 includes improvements to the user impersonation process. An impersonation session now requires a justification for the impersonation, actions are recorded in the audit log as being performed as an impersonated user, and the user who is impersonated will receive an email notification that they have been impersonated by an enterprise administrator. For more information, see "[Impersonating a user](/enterprise-server@3.3/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user)."' - A new stream processing service has been added to facilitate the growing set of events that are published to the audit log, including events associated with Git and {% data variables.product.prodname_actions %} activity. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] - heading: Token Changes notes: @@ -139,7 +140,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/pt-BR/data/release-notes/enterprise-server/3-3/1.yml b/translations/pt-BR/data/release-notes/enterprise-server/3-3/1.yml new file mode 100644 index 0000000000..79b273b96a --- /dev/null +++ b/translations/pt-BR/data/release-notes/enterprise-server/3-3/1.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - After upgrading to {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_actions %} may fail to start automatically. To resolve this issue, connect to the appliance via SSH and run the `ghe-actions-start` command. + - On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user. + - As regras de firewall personalizadas são removidas durante o processo de atualização. + - Arquivos LFS do Git [enviados através da interface web](https://github.com/blog/2105-upload-files-to-your-repositories) são adicionados diretamente ao repositório e de forma incorreta. + - Os problemas não podem ser fechados se contiverem um permalink para um blob no mesmo repositório, onde o caminho do arquivo blob's é maior que 255 caracteres. + - Quando "Usuários podem pesquisar pelo GitHub.com" está habilitado com o GitHub Connect, os problemas em repositórios privados e internos não estão incluídos nos resultados de pesquisa do GitHub.com. + - O registro npm de {% data variables.product.prodname_registry %} não retorna mais o valor de tempo em respostas de metadados. Isso foi feito para permitir melhorias substanciais de desempenho. Continuamos a ter todos os dados necessários para devolver um valor de tempo como parte da resposta aos metadados e retomaremos o retorno desse valor no futuro, assim que tivermos resolvido os problemas de desempenho existentes. + - Os limites de recursos que são específicos para processamento de hooks pre-receive podem causar falha em alguns hooks pre-receive. diff --git a/translations/pt-BR/data/release-notes/github-ae/2021-06/2021-12-06.yml b/translations/pt-BR/data/release-notes/github-ae/2021-06/2021-12-06.yml index 3d2814f52b..7c19b8eeda 100644 --- a/translations/pt-BR/data/release-notes/github-ae/2021-06/2021-12-06.yml +++ b/translations/pt-BR/data/release-notes/github-ae/2021-06/2021-12-06.yml @@ -88,7 +88,7 @@ sections: - | With the [latest version of Octicons](https://github.com/primer/octicons/releases), the states of issues and pull requests are now more visually distinct so you can scan status more easily. For more information, see [{% data variables.product.prodname_blog %}](https://github.blog/changelog/2021-06-08-new-issue-and-pull-request-state-icons/). - | - You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Repositories](/rest/reference/repos#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. + You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Branches](/rest/reference/branches#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. - | You can now upload video files everywhere you write Markdown on {% data variables.product.product_name %}. Share demos, show reproduction steps, and more in issue and pull request comments, as well as in Markdown files within repositories, such as READMEs. For more information, see "[Attaching files](/github/writing-on-github/working-with-advanced-formatting/attaching-files)." - | @@ -113,7 +113,7 @@ sections: - | You can now sort the repositories on a user or organization profile by star count. - | - The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." - | When you define a submodule in {% data variables.product.product_location %} with a relative path, the submodule is now clickable in the web UI. Clicking the submodule in the web UI will take you to the linked repository. Previously, only submodules with absolute URLs were clickable. Relative paths for repositories with the same owner that follow the pattern <code>../<em>REPOSITORY</em></code> or relative paths for repositories with a different owner that follow the pattern <code>../<em>OWNER</em>/<em>REPOSITORY</em></code> are supported. For more information about working with submodules, see [Working with submodules](https://github.blog/2016-02-01-working-with-submodules/) on {% data variables.product.prodname_blog %}. - | diff --git a/translations/pt-BR/data/reusables/accounts/accounts-billed-separately.md b/translations/pt-BR/data/reusables/accounts/accounts-billed-separately.md new file mode 100644 index 0000000000..79e9ab7d1d --- /dev/null +++ b/translations/pt-BR/data/reusables/accounts/accounts-billed-separately.md @@ -0,0 +1 @@ +Each account on {% data variables.product.product_name %} is billed separately. Upgrading an organization account enables paid features for the organization's repositories only and does not affect the features available in repositories owned by any associated personal accounts. Similarly, upgrading a personal account enables paid features for the personal account's repositories only and does not affect the repositories of any organization accounts. Para obter mais informações sobre os tipos de conta, consulte "[Tipos de contas de {% data variables.product.prodname_dotcom %}](/get-started/learning-about-github/types-of-github-accounts)". diff --git a/translations/pt-BR/data/reusables/getting-started/org-permissions-and-roles.md b/translations/pt-BR/data/reusables/getting-started/org-permissions-and-roles.md index 055cdb0a61..be573b806c 100644 --- a/translations/pt-BR/data/reusables/getting-started/org-permissions-and-roles.md +++ b/translations/pt-BR/data/reusables/getting-started/org-permissions-and-roles.md @@ -1 +1 @@ -Each person in your organization has a role that defines their level of access to the organization. The member role is the default, and you can assign owner and billing manager roles as well as "team maintainer" permissions. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +Each person in your organization has a role that defines their level of access to the organization. The member role is the default, and you can assign owner and billing manager roles as well as "team maintainer" permissions. Para obter mais informações, consulte "[Funções em uma organização](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". diff --git a/translations/pt-BR/data/reusables/getting-started/setting-org-and-repo-permissions.md b/translations/pt-BR/data/reusables/getting-started/setting-org-and-repo-permissions.md index 4ac7ee25f9..7740bc1774 100644 --- a/translations/pt-BR/data/reusables/getting-started/setting-org-and-repo-permissions.md +++ b/translations/pt-BR/data/reusables/getting-started/setting-org-and-repo-permissions.md @@ -1,3 +1,3 @@ -We recommend giving a limited number of members in each organization an organization owner role, which provides complete administrative access for that organization. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +We recommend giving a limited number of members in each organization an organization owner role, which provides complete administrative access for that organization. Para obter mais informações, consulte "[Funções em uma organização](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". For organizations where you have admin permissions, you can also customize access to each repository with granular permission levels. For more information, see "[Repository permissions levels for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization)." diff --git a/translations/pt-BR/data/reusables/organizations/new-org-permissions-more-info.md b/translations/pt-BR/data/reusables/organizations/new-org-permissions-more-info.md index 07f5f6d1a9..75d01ff72d 100644 --- a/translations/pt-BR/data/reusables/organizations/new-org-permissions-more-info.md +++ b/translations/pt-BR/data/reusables/organizations/new-org-permissions-more-info.md @@ -1 +1 @@ -For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +Para obter mais informações, consulte "[Funções em uma organização](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". diff --git a/translations/pt-BR/data/reusables/organizations/organization-plans.md b/translations/pt-BR/data/reusables/organizations/organization-plans.md new file mode 100644 index 0000000000..7a87c02ae6 --- /dev/null +++ b/translations/pt-BR/data/reusables/organizations/organization-plans.md @@ -0,0 +1,8 @@ +{% ifversion fpt or ghec %} +All organizations can own an unlimited number of public and private repositories. You can use organizations for free, with {% data variables.product.prodname_free_team %}, which includes limited features on private repositories. To get the full feature set on private repositories and additional features at the organization level, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} + +If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} + +{% ifversion fpt %} +{% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +{% endif %} \ No newline at end of file diff --git a/translations/pt-BR/data/reusables/organizations/organizations_include.md b/translations/pt-BR/data/reusables/organizations/organizations_include.md index 11db39320e..085d3cef69 100644 --- a/translations/pt-BR/data/reusables/organizations/organizations_include.md +++ b/translations/pt-BR/data/reusables/organizations/organizations_include.md @@ -6,15 +6,4 @@ As organizações incluem: - The option to [require all organization members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} - The ability to [create and administer classrooms with GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} -{% ifversion fpt or ghec %} -You can use organizations for free, with -{% data variables.product.prodname_free_team %}, which includes unlimited collaborators on unlimited public repositories with full features, and unlimited private repositories with limited features. - -For additional features, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} - -If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} - -{% ifversion fpt %} -{% data reusables.enterprise.link-to-ghec-trial %} -{% endif %} -{% endif %} +{% data reusables.organizations.organization-plans %} diff --git a/translations/pt-BR/data/reusables/repositories/you-can-fork.md b/translations/pt-BR/data/reusables/repositories/you-can-fork.md index 3e582b746f..958051f25f 100644 --- a/translations/pt-BR/data/reusables/repositories/you-can-fork.md +++ b/translations/pt-BR/data/reusables/repositories/you-can-fork.md @@ -1,4 +1,4 @@ -{% ifversion ghae %}Se as políticas da empresa permitem a bifurcação de repositórios internos e privados, Você{% else %}Você{% endif %} pode criar um fork de um repositório para a sua conta de usuário ou para qualquer organização onde você tenha permissões de criação de repositório. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." +{% ifversion ghae %}Se as políticas da empresa permitem a bifurcação de repositórios internos e privados, Você{% else %}Você{% endif %} pode criar um fork de um repositório para a sua conta de usuário ou para qualquer organização onde você tenha permissões de criação de repositório. Para obter mais informações, consulte "[Funções em uma organização](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". {% ifversion fpt or ghes or ghec %} diff --git a/translations/pt-BR/data/reusables/support/submit-a-ticket.md b/translations/pt-BR/data/reusables/support/submit-a-ticket.md index d725b2c274..657d3fd551 100644 --- a/translations/pt-BR/data/reusables/support/submit-a-ticket.md +++ b/translations/pt-BR/data/reusables/support/submit-a-ticket.md @@ -1,5 +1,5 @@ -1. Select the **Account or organization** drop-down menu and click the name of your enterprise. ![Account field](/assets/images/help/support/account-field.png) -1. Select the **From** drop-down menu and click the email address you'd like {% data variables.contact.github_support %} to contact. ![Campo Email (E-mail)](/assets/images/help/support/from-field.png) +1. Select the **Account or organization** drop-down menu and click the name of your enterprise. ![Campo de conta](/assets/images/help/support/account-field.png) +1. Selecione o menu suspenso **de** e clique no endereço de e-mail que você deseja que {% data variables.contact.github_support %} entre em contato. ![Campo Email (E-mail)](/assets/images/help/support/from-field.png) 1. Select the **Product** drop-down menu and click **GitHub Enterprise Server (self-hosted)**. ![Product field](/assets/images/help/support/product-field.png) 1. Select the **Release series** drop-down menu and click the release {% data variables.product.product_location_enterprise %} is running. ![Release field](/assets/images/help/support/release-field.png) 1. Select the **Priority** drop-down menu and click the appropriate urgency. Para obter mais informações, consulte "[Atribuindo prioridade a um tíquete de suporte](/admin/enterprise-support/overview/about-github-enterprise-support#assigning-a-priority-to-a-support-ticket)". ![Priority field](/assets/images/help/support/priority-field.png) diff --git a/translations/pt-BR/data/reusables/webhooks/commit_comment_properties.md b/translations/pt-BR/data/reusables/webhooks/commit_comment_properties.md index b2213e6139..6c56c2c930 100644 --- a/translations/pt-BR/data/reusables/webhooks/commit_comment_properties.md +++ b/translations/pt-BR/data/reusables/webhooks/commit_comment_properties.md @@ -1,4 +1,4 @@ -| Tecla | Tipo | Descrição | -| ------------ | -------- | -------------------------------------------------------------------------------- | -| `Ação` | `string` | A ação realizada. Pode ser `criado`. | -| `comentário` | `objeto` | O recurso de [comentário de commit](/rest/reference/repos#get-a-commit-comment). | +| Tecla | Tipo | Descrição | +| ------------ | -------- | ---------------------------------------------------------------------------------- | +| `Ação` | `string` | A ação realizada. Pode ser `criado`. | +| `comentário` | `objeto` | O recurso de [comentário de commit](/rest/reference/commits#get-a-commit-comment). | diff --git a/translations/pt-BR/data/reusables/webhooks/deploy_key_properties.md b/translations/pt-BR/data/reusables/webhooks/deploy_key_properties.md index d4a2dcc17c..eadc0c2de1 100644 --- a/translations/pt-BR/data/reusables/webhooks/deploy_key_properties.md +++ b/translations/pt-BR/data/reusables/webhooks/deploy_key_properties.md @@ -1,4 +1,4 @@ -| Tecla | Tipo | Descrição | -| ------- | -------- | ------------------------------------------------------------------------- | -| `Ação` | `string` | A ação realizada. Pode ser `criado` ou `excluído`. | -| `Chave` | `objeto` | O recurso de [`implantar chave`](/rest/reference/repos#get-a-deploy-key). | +| Tecla | Tipo | Descrição | +| ------- | -------- | ------------------------------------------------------------------------------- | +| `Ação` | `string` | A ação realizada. Pode ser `criado` ou `excluído`. | +| `Chave` | `objeto` | O recurso de [`implantar chave`](/rest/reference/deployments#get-a-deploy-key). | diff --git a/translations/pt-BR/data/reusables/webhooks/deployment_short_desc.md b/translations/pt-BR/data/reusables/webhooks/deployment_short_desc.md index 377ea517f5..a6432c35bb 100644 --- a/translations/pt-BR/data/reusables/webhooks/deployment_short_desc.md +++ b/translations/pt-BR/data/reusables/webhooks/deployment_short_desc.md @@ -1 +1 @@ -Uma implantação foi criada. {% data reusables.webhooks.action_type_desc %} Para obter mais informações, consulte a API REST "[implantação](/rest/reference/repos#list-deployments)". +Uma implantação foi criada. {% data reusables.webhooks.action_type_desc %} Para obter mais informações, consulte a API REST "[implantação](/rest/reference/deployments#list-deployments)". diff --git a/translations/pt-BR/data/reusables/webhooks/deployment_status_short_desc.md b/translations/pt-BR/data/reusables/webhooks/deployment_status_short_desc.md index 39a68b4642..6cb88cf039 100644 --- a/translations/pt-BR/data/reusables/webhooks/deployment_status_short_desc.md +++ b/translations/pt-BR/data/reusables/webhooks/deployment_status_short_desc.md @@ -1 +1 @@ -Uma implantação foi criada. {% data reusables.webhooks.action_type_desc %} Para obter mais informações, consulte a API REST do "[status de implantação](/rest/reference/repos#list-deployment-statuses)". +Uma implantação foi criada. {% data reusables.webhooks.action_type_desc %} Para obter mais informações, consulte a API REST do "[status de implantação](/rest/reference/deployments#list-deployment-statuses)". diff --git a/translations/pt-BR/data/ui.yml b/translations/pt-BR/data/ui.yml index 134f381237..35f8d61642 100644 --- a/translations/pt-BR/data/ui.yml +++ b/translations/pt-BR/data/ui.yml @@ -52,7 +52,7 @@ survey: optional: Opcional required: Obrigatório email_placeholder: email@example.com - email_label: Podemos entrar em contato com você em caso de dúvidas? + email_label: If we can contact you with more questions, please enter your email address send: Enviar feedback: Thank you! We received your feedback. not_support: If you need a reply, please contact support instead. diff --git a/translations/zh-CN/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md b/translations/zh-CN/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md index 57084beb98..baf34206bf 100644 --- a/translations/zh-CN/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md +++ b/translations/zh-CN/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/merging-multiple-user-accounts.md @@ -20,6 +20,12 @@ shortTitle: Merge multiple user accounts {% endtip %} +{% warning %} + +**Warning:** Organization and repository access permissions aren't transferable between accounts. If the account you want to delete has an existing access permission, an organization owner or repository administrator will need to invite the account that you want to keep. + +{% endwarning %} + 1. [Transfer any repositories](/articles/how-to-transfer-a-repository) from the account you want to delete to the account you want to keep. Issues, pull requests, and wikis are transferred as well. Verify the repositories exist on the account you want to keep. 2. [Update the remote URLs](/github/getting-started-with-github/managing-remote-repositories) in any local clones of the repositories that were moved. 3. [Delete the account](/articles/deleting-your-user-account) you no longer want to use. diff --git a/translations/zh-CN/content/actions/creating-actions/metadata-syntax-for-github-actions.md b/translations/zh-CN/content/actions/creating-actions/metadata-syntax-for-github-actions.md index 4b23257b33..4e9757aec3 100644 --- a/translations/zh-CN/content/actions/creating-actions/metadata-syntax-for-github-actions.md +++ b/translations/zh-CN/content/actions/creating-actions/metadata-syntax-for-github-actions.md @@ -260,9 +260,9 @@ For more information, see "[`github context`](/actions/reference/context-and-exp #### `runs.steps[*].shell` {% ifversion fpt or ghes > 3.2 or ghae-issue-4853 or ghec %} -**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Optional** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% else %} -**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell). Required if `run` is set. +**Required** The shell where you want to run the command. You can use any of the shells listed [here](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsshell). Required if `run` is set. {% endif %} #### `runs.steps[*].name` diff --git a/translations/zh-CN/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md b/translations/zh-CN/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md index a940a03bc6..17ecdbe875 100644 --- a/translations/zh-CN/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md +++ b/translations/zh-CN/content/actions/deployment/managing-your-deployments/viewing-deployment-history.md @@ -24,6 +24,6 @@ To view current and past deployments, click **Environments** on the home page of The deployments page displays the last active deployment of each environment for your repository. If the deployment includes an environment URL, a **View deployment** button that links to the URL is shown next to the deployment. -The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/repos#inactive-deployments)." +The activity log shows the deployment history for your environments. By default, only the most recent deployment for an environment has an `Active` status; all previously active deployments have an `Inactive` status. For more information on automatic inactivation of deployments, see "[Inactive deployments](/rest/reference/deployments#inactive-deployments)." You can also use the REST API to get information about deployments. For more information, see "[Repositories](/rest/reference/repos#deployments)." diff --git a/translations/zh-CN/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md b/translations/zh-CN/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md index 1b90750003..0ae07c935f 100644 --- a/translations/zh-CN/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md +++ b/translations/zh-CN/content/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners.md @@ -55,6 +55,13 @@ $ cat ~/actions-runner/.service actions.runner.octo-org-octo-repo.runner01.service ``` +If this fails due to the service being installed elsewhere, you can find the service name in the list of running services. For example, on most Linux systems you can use the `systemctl` command: + +```shell +$ systemctl --type=service | grep actions.runner +actions.runner.octo-org-octo-repo.hostname.service loaded active running GitHub Actions Runner (octo-org-octo-repo.hostname) +``` + You can use `journalctl` to monitor the real-time activity of the self-hosted runner: ```shell diff --git a/translations/zh-CN/content/actions/learn-github-actions/events-that-trigger-workflows.md b/translations/zh-CN/content/actions/learn-github-actions/events-that-trigger-workflows.md index d21e833b8c..56e92056f6 100644 --- a/translations/zh-CN/content/actions/learn-github-actions/events-that-trigger-workflows.md +++ b/translations/zh-CN/content/actions/learn-github-actions/events-that-trigger-workflows.md @@ -307,7 +307,7 @@ on: ### `deployment_status` -Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/repos#create-a-deployment-status)." +Runs your workflow anytime a third party provides a deployment status, which triggers the `deployment_status` event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see "[Create a deployment status](/rest/reference/deployments#create-a-deployment-status)." | Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` | | --------------------- | -------------- | ------------ | -------------| @@ -701,7 +701,7 @@ on: {% note %} -**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/repos#get-a-commit)". +**Note:** The webhook payload available to GitHub Actions does not include the `added`, `removed`, and `modified` attributes in the `commit` object. You can retrieve the full commit object using the REST API. For more information, see "[Get a commit](/rest/reference/commits#get-a-commit)". {% endnote %} diff --git a/translations/zh-CN/content/actions/learn-github-actions/understanding-github-actions.md b/translations/zh-CN/content/actions/learn-github-actions/understanding-github-actions.md index 61b4d91686..6e69efdfbc 100644 --- a/translations/zh-CN/content/actions/learn-github-actions/understanding-github-actions.md +++ b/translations/zh-CN/content/actions/learn-github-actions/understanding-github-actions.md @@ -30,7 +30,7 @@ topics: ## The components of {% data variables.product.prodname_actions %} -You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify in your workflow. +You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify your workflow. ![Workflow overview](/assets/images/help/images/overview-actions-simple.png) diff --git a/translations/zh-CN/content/admin/advanced-security/index.md b/translations/zh-CN/content/admin/advanced-security/index.md index 59d1dd1f47..9bb979a9eb 100644 --- a/translations/zh-CN/content/admin/advanced-security/index.md +++ b/translations/zh-CN/content/admin/advanced-security/index.md @@ -1,7 +1,7 @@ --- -title: 管理企业的 GitHub Advanced Security -shortTitle: 管理 GitHub Advanced Security -intro: '您可以配置 {% data variables.product.prodname_advanced_security %} 并管理企业的使用,以满足组织的需求。' +title: Managing GitHub Advanced Security for your enterprise +shortTitle: Managing GitHub Advanced Security +intro: 'You can configure {% data variables.product.prodname_advanced_security %} and manage use by your enterprise to suit your organization''s needs.' product: '{% data reusables.gated-features.ghas %}' redirect_from: - /enterprise/admin/configuration/configuring-advanced-security-features @@ -15,8 +15,6 @@ children: - /enabling-github-advanced-security-for-your-enterprise - /configuring-code-scanning-for-your-appliance - /configuring-secret-scanning-for-your-appliance - - /viewing-your-github-advanced-security-usage - /overview-of-github-advanced-security-deployment - /deploying-github-advanced-security-in-your-enterprise --- - diff --git a/translations/zh-CN/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md b/translations/zh-CN/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md deleted file mode 100644 index d54cfc4311..0000000000 --- a/translations/zh-CN/content/admin/advanced-security/viewing-your-github-advanced-security-usage.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: 查看您的 GitHub 高级安全使用情况 -intro: '您可以查看 {% data variables.product.prodname_GH_advanced_security %} 许可证的使用情况。' -permissions: 'Enterprise owners can view usage for {% data variables.product.prodname_GH_advanced_security %}.' -product: '{% data reusables.gated-features.ghas %}' -versions: - ghes: '>=3.1' -type: how_to -topics: - - Advanced Security - - Enterprise - - Licensing -shortTitle: 查看高级安全用法 ---- - -## 关于 {% data variables.product.prodname_GH_advanced_security %} 的许可 - -{% data reusables.advanced-security.about-ghas-license-seats %} 更多信息请参阅“[关于 {% data variables.product.prodname_GH_advanced_security %} 的计费](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)”。 - -## 查看 {% data variables.product.prodname_GH_advanced_security %} 的许可证使用情况 - -您可以检查您的许可证包含多少个座位以及当前使用的座位数。 - -{% data reusables.enterprise-accounts.access-enterprise %} -{% data reusables.enterprise-accounts.settings-tab %} -{% data reusables.enterprise-accounts.license-tab %} - “{% data variables.product.prodname_GH_advanced_security %}”部分显示了当前使用详情。 您可以查看已使用的席位总数,以及一份表格,其中包含每个组织的提交者数量和唯一提交者。 ![企业许可证的 {% data variables.product.prodname_GH_advanced_security %} 部分](/assets/images/help/billing/ghas-orgs-list-enterprise-ghes.png) -5. (可选)单击您是所有者的组织的名称,以显示组织的安全和分析设置。 ![在企业帐单设置的 {% data variables.product.prodname_GH_advanced_security %} 部分中拥有的组织](/assets/images/help/billing/ghas-orgs-list-enterprise-click-org.png) -6. 在“Security & analysis(安全性和分析)”设置页面上,滚动到“{% data variables.product.prodname_GH_advanced_security %} 仓库”部分以查看此组织的仓库使用明细。 ![{% data variables.product.prodname_GH_advanced_security %} repositories section](/assets/images/help/enterprises/settings-security-analysis-ghas-repos-list.png) 更多信息请参阅“[管理组织的安全性和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 diff --git a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md index f1160e4396..3711fe5ef6 100644 --- a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md +++ b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/disabling-unauthenticated-sign-ups.md @@ -1,11 +1,11 @@ --- -title: 禁用未经身份验证的注册 +title: Disabling unauthenticated sign-ups redirect_from: - - /enterprise/admin/articles/disabling-sign-ups/ + - /enterprise/admin/articles/disabling-sign-ups - /enterprise/admin/user-management/disabling-unauthenticated-sign-ups - /enterprise/admin/authentication/disabling-unauthenticated-sign-ups - /admin/authentication/disabling-unauthenticated-sign-ups -intro: 如果您使用的是内置身份验证,可以阻止未经身份验证的人创建帐户。 +intro: 'If you''re using built-in authentication, you can block unauthenticated people from being able to create an account.' versions: ghes: '*' type: how_to @@ -13,11 +13,11 @@ topics: - Accounts - Authentication - Enterprise -shortTitle: 阻止帐户创建 +shortTitle: Block account creation --- - {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -3. 取消选中 **Enable sign-up**。 ![启用注册复选框](/assets/images/enterprise/management-console/enable-sign-up.png) +3. Unselect **Enable sign-up**. +![Enable sign-up checkbox](/assets/images/enterprise/management-console/enable-sign-up.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md index 957ea6cd2b..5d51187af0 100644 --- a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md +++ b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: 为您的 GitHub Enterprise Server 实例验证用户身份 -intro: '您可以使用 {% data variables.product.prodname_ghe_server %} 的内置身份验证,或者在 CAS、LDAP 或 SAML 中选择来集成您的现有帐户并集中管理 {% data variables.product.product_location %} 的用户访问权限。' +title: Authenticating users for your GitHub Enterprise Server instance +intro: 'You can use {% data variables.product.prodname_ghe_server %}''s built-in authentication, or choose between CAS, LDAP, or SAML to integrate your existing accounts and centrally manage user access to {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/categories/authentication/ - - /enterprise/admin/guides/installation/user-authentication/ - - /enterprise/admin/articles/inviting-users/ - - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance/ + - /enterprise/admin/categories/authentication + - /enterprise/admin/guides/installation/user-authentication + - /enterprise/admin/articles/inviting-users + - /enterprise/admin/guides/migrations/authenticating-users-for-your-github-enterprise-instance - /enterprise/admin/user-management/authenticating-users-for-your-github-enterprise-server-instance - /enterprise/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance versions: @@ -20,6 +20,6 @@ children: - /using-ldap - /allowing-built-in-authentication-for-users-outside-your-identity-provider - /changing-authentication-methods -shortTitle: 验证用户 +shortTitle: Authenticate users --- diff --git a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md index ebda2bf4e6..b1276f2de7 100644 --- a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md +++ b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-cas.md @@ -1,12 +1,12 @@ --- -title: 使用 CAS +title: Using CAS redirect_from: - - /enterprise/admin/articles/configuring-cas-authentication/ - - /enterprise/admin/articles/about-cas-authentication/ + - /enterprise/admin/articles/configuring-cas-authentication + - /enterprise/admin/articles/about-cas-authentication - /enterprise/admin/user-management/using-cas - /enterprise/admin/authentication/using-cas - /admin/authentication/using-cas -intro: 'CAS 是一种适用于多种网络应用程序的单点登录 (SSO) 协议。 在登录之前,CAS 用户帐户不会占用{% ifversion ghes %}用户许可{% else %}席位{% endif %}。' +intro: 'CAS is a single sign-on (SSO) protocol for multiple web applications. A CAS user account does not take up a {% ifversion ghes %}user license{% else %}seat{% endif %} until the user signs in.' versions: ghes: '*' type: how_to @@ -17,10 +17,9 @@ topics: - Identity - SSO --- - {% data reusables.enterprise_user_management.built-in-authentication %} -## 使用 CAS 时的用户名考量因素 +## Username considerations with CAS {% data reusables.enterprise_management_console.username_normalization %} @@ -29,24 +28,25 @@ topics: {% data reusables.enterprise_user_management.two_factor_auth_header %} {% data reusables.enterprise_user_management.external_auth_disables_2fa %} -## CAS 属性 +## CAS attributes -以下属性可用。 +The following attributes are available. -| 属性名称 | 类型 | 描述 | -| ----- | -- | ------------------------------------------------------- | -| `用户名` | 必选 | {% data variables.product.prodname_ghe_server %} 用户名。 | +| Attribute name | Type | Description | +|--------------------------|----------|-------------| +| `username` | Required | The {% data variables.product.prodname_ghe_server %} username. | -## 配置 CAS +## Configuring CAS {% warning %} -**警告**:请注意,在 {% data variables.product.product_location %} 上配置 CAS 之前,用户将无法使用他们的 CAS 用户名和密码通过 HTTP/HTTPS 对 API 请求或 Git 操作进行身份验证。 相反,他们将需要[创建访问令牌](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use)。 +**Warning:** Before configuring CAS on {% data variables.product.product_location %}, note that users will not be able to use their CAS usernames and passwords to authenticate API requests or Git operations over HTTP/HTTPS. Instead, they will need to [create an access token](/enterprise/{{ currentVersion }}/user/articles/creating-an-access-token-for-command-line-use). {% endwarning %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.authentication %} -3. 选择 **CAS**。 ![选择 CAS](/assets/images/enterprise/management-console/cas-select.png) -4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![选中 CAS 内置身份验证复选框](/assets/images/enterprise/management-console/cas-built-in-authentication.png) -5. 在 **Server URL** 字段中,输入您的 CAS 服务器的完整 URL。 如果您的 CAS 服务器使用无法由 {% data variables.product.prodname_ghe_server %} 验证的证书,您可以使用 `ghe-ssl-ca-certificate-install` 命令将其作为可信证书安装。 +3. Select **CAS**. +![CAS select](/assets/images/enterprise/management-console/cas-select.png) +4. {% data reusables.enterprise_user_management.built-in-authentication-option %} ![Select CAS built-in authentication checkbox](/assets/images/enterprise/management-console/cas-built-in-authentication.png) +5. In the **Server URL** field, type the full URL of your CAS server. If your CAS server uses a certificate that can't be validated by {% data variables.product.prodname_ghe_server %}, you can use the `ghe-ssl-ca-certificate-install` command to install it as a trusted certificate. diff --git a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md index a7d55a8a16..77d922b9e8 100644 --- a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md +++ b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-ldap.md @@ -1,11 +1,11 @@ --- title: Using LDAP redirect_from: - - /enterprise/admin/articles/configuring-ldap-authentication/ - - /enterprise/admin/articles/about-ldap-authentication/ - - /enterprise/admin/articles/viewing-ldap-users/ - - /enterprise/admin/hidden/enabling-ldap-sync/ - - /enterprise/admin/hidden/ldap-sync/ + - /enterprise/admin/articles/configuring-ldap-authentication + - /enterprise/admin/articles/about-ldap-authentication + - /enterprise/admin/articles/viewing-ldap-users + - /enterprise/admin/hidden/enabling-ldap-sync + - /enterprise/admin/hidden/ldap-sync - /enterprise/admin/user-management/using-ldap - /enterprise/admin/authentication/using-ldap - /admin/authentication/using-ldap diff --git a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md index b7f582ffcb..33cd83f62b 100644 --- a/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md +++ b/translations/zh-CN/content/admin/authentication/authenticating-users-for-your-github-enterprise-server-instance/using-saml.md @@ -1,8 +1,8 @@ --- title: Using SAML redirect_from: - - /enterprise/admin/articles/configuring-saml-authentication/ - - /enterprise/admin/articles/about-saml-authentication/ + - /enterprise/admin/articles/configuring-saml-authentication + - /enterprise/admin/articles/about-saml-authentication - /enterprise/admin/user-management/using-saml - /enterprise/admin/authentication/using-saml - /admin/authentication/using-saml diff --git a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md index cce63fb88a..21fc4b65db 100644 --- a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md +++ b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad.md @@ -1,9 +1,8 @@ --- -title: 使用 Azure AD 为企业配置身份验证和预配 -shortTitle: 使用 Azure AD 配置 -intro: '您可以使用 Azure Active Directory (Azure AD) 中的租户作为身份提供程序 (IDP) 来集中管理 {% data variables.product.product_location %} 的身份验证和用户预配。' +title: Configuring authentication and provisioning for your enterprise using Azure AD +shortTitle: Configuring with Azure AD +intro: 'You can use a tenant in Azure Active Directory (Azure AD) as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.product_location %}.' permissions: 'Enterprise owners can configure authentication and provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to @@ -16,42 +15,41 @@ topics: redirect_from: - /admin/authentication/configuring-authentication-and-provisioning-for-your-enterprise-using-azure-ad --- +## About authentication and user provisioning with Azure AD -## 关于使用 Azure AD 进行身份验证和用户预配 +Azure Active Directory (Azure AD) is a service from Microsoft that allows you to centrally manage user accounts and access to web applications. For more information, see [What is Azure Active Directory?](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis) in the Microsoft Docs. -Azure Active Directory (Azure AD) 是一项来自 Microsoft 的服务,它允许您集中管理用户帐户和 web 应用程序访问。 更多信息请参阅 Microsoft 文档中的[什么是 Azure Active Directory?](https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis)。 +To manage identity and access for {% data variables.product.product_name %}, you can use an Azure AD tenant as a SAML IdP for authentication. You can also configure Azure AD to automatically provision accounts and access membership with SCIM, which allows you to create {% data variables.product.prodname_ghe_managed %} users and manage team and organization membership from your Azure AD tenant. -要管理身份以及对 {% data variables.product.product_name %} 的访问,您可以使用 Azure AD 租户作为 SAML IdP 进行身份验证。 您也可以配置 Azure AD 自动预配帐户并获取 SCIM 会员资格,这样您可以创建 {% data variables.product.prodname_ghe_managed %} 用户,并从您的 Azure AD 租户管理团队和组织成员资格。 +After you enable SAML SSO and SCIM for {% data variables.product.prodname_ghe_managed %} using Azure AD, you can accomplish the following from your Azure AD tenant. -使用 Azure AD 对 {% data variables.product.prodname_ghe_managed %} 启用 SAML SSO 和 SCIM 后,您可以从 Azure AD 租户完成以下任务。 +* Assign the {% data variables.product.prodname_ghe_managed %} application on Azure AD to a user account to automatically create and grant access to a corresponding user account on {% data variables.product.product_name %}. +* Unassign the {% data variables.product.prodname_ghe_managed %} application to a user account on Azure AD to deactivate the corresponding user account on {% data variables.product.product_name %}. +* Assign the {% data variables.product.prodname_ghe_managed %} application to an IdP group on Azure AD to automatically create and grant access to user accounts on {% data variables.product.product_name %} for all members of the IdP group. In addition, the IdP group is available on {% data variables.product.prodname_ghe_managed %} for connection to a team and its parent organization. +* Unassign the {% data variables.product.prodname_ghe_managed %} application from an IdP group to deactivate the {% data variables.product.product_name %} user accounts of all IdP users who had access only through that IdP group and remove the users from the parent organization. The IdP group will be disconnected from any teams on {% data variables.product.product_name %}. -* 将 Azure AD 上的 {% data variables.product.prodname_ghe_managed %} 应用程序分配给用户帐户,以便在 {% data variables.product.product_name %} 上自动创建并授予对相应用户帐户的访问权限。 -* 为 Azure AD 上的用户帐户取消分配 {% data variables.product.prodname_ghe_managed %} 应用程序,以在 {% data variables.product.product_name %} 上停用相应的用户帐户 。 -* 为 Azure AD 上的 IdP 组分配 {% data variables.product.prodname_ghe_managed %} 应用程序,以为 IdP 组的所有成员授予对 {% data variables.product.product_name %} 上用户帐户的访问权限 。 此外,IdP 组也可以在 {% data variables.product.prodname_ghe_managed %} 上连接到团队及其父组织。 -* 从 IdP 组取消分配 {% data variables.product.prodname_ghe_managed %} 应用程序来停用仅通过 IdP 组访问的所有 IdP 用户的 {% data variables.product.product_name %} 用户帐户,并从父组织中删除这些用户。 IdP 组将与 {% data variables.product.product_name %} 上的任何团队断开连接。 +For more information about managing identity and access for your enterprise on {% data variables.product.product_location %}, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)." For more information about synchronizing teams with IdP groups, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." -有关在 {% data variables.product.product_location %} 上管理企业的身份和访问权限的详细信息,请参阅“[管理企业的身份和访问权限](/admin/authentication/managing-identity-and-access-for-your-enterprise)”。 有关与 IdP 组同步团队的更多信息,请参阅“[同步团队与身份提供程序组](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)”。 +## Prerequisites -## 基本要求 +To configure authentication and user provisioning for {% data variables.product.product_name %} using Azure AD, you must have an Azure AD account and tenant. For more information, see the [Azure AD website](https://azure.microsoft.com/free/active-directory) and [Quickstart: Create an Azure Active Directory tenant](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant) in the Microsoft Docs. -要使用 Azure AD 配置 {% data variables.product.product_name %} 的身份验证和用户预配,您必须有 Azure AD 帐户和租户。 更多信息请参阅 [Azure AD 网站](https://azure.microsoft.com/free/active-directory)和 Microsoft 文档中的[快速入门:创建 Azure Active Directory 租户](https://docs.microsoft.com/azure/active-directory/develop/quickstart-create-new-tenant)。 - -{% data reusables.saml.assert-the-administrator-attribute %} 有关在来自 Azure AD 的 SAML 声明中包含 `administrator` 属性的详细信息, 请参阅 Microsoft 文档中的[如何:为企业应用程序自定义 SAML 令牌中发行的声明](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization)。 +{% data reusables.saml.assert-the-administrator-attribute %} For more information about including the `administrator` attribute in the SAML claim from Azure AD, see [How to: customize claims issued in the SAML token for enterprise applications](https://docs.microsoft.com/azure/active-directory/develop/active-directory-saml-claims-customization) in the Microsoft Docs. {% data reusables.saml.create-a-machine-user %} -## 使用 Azure AD 配置身份验证和用户预配 +## Configuring authentication and user provisioning with Azure AD {% ifversion ghae %} -1. 在 Azure AD 中,将 {% data variables.product.ae_azure_ad_app_link %} 添加到您的租户并配置单点登录。 更多信息请参阅 Microsoft 文档中的[教程:与 {% data variables.product.prodname_ghe_managed %} 的 Azure Active Directory 单点登录 (SSO) 集成](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial)。 +1. In Azure AD, add {% data variables.product.ae_azure_ad_app_link %} to your tenant and configure single sign-on. For more information, see [Tutorial: Azure Active Directory single sign-on (SSO) integration with {% data variables.product.prodname_ghe_managed %}](https://docs.microsoft.com/azure/active-directory/saas-apps/github-ae-tutorial) in the Microsoft Docs. -1. 在 {% data variables.product.prodname_ghe_managed %} 中,输入 Azure AD 租户的详细信息。 +1. In {% data variables.product.prodname_ghe_managed %}, enter the details for your Azure AD tenant. - {% data reusables.saml.ae-enable-saml-sso-during-bootstrapping %} - - 如果已为使用其他 IdP 的 {% data variables.product.product_location %} 配置 SAML SSO,并且希望改为使用 Azure AD,您可以编辑配置。 更多信息请参阅“[配置企业的 SAML 单点登录](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)”。 + - If you've already configured SAML SSO for {% data variables.product.product_location %} using another IdP and you want to use Azure AD instead, you can edit your configuration. For more information, see "[Configuring SAML single sign-on for your enterprise](/admin/authentication/configuring-saml-single-sign-on-for-your-enterprise#editing-the-saml-sso-configuration)." -1. 在 {% data variables.product.product_name %} 中启用用户预配,并在 Azure AD 中配置用户预配。 更多信息请参阅“[配置企业的用户预配](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)”。 +1. Enable user provisioning in {% data variables.product.product_name %} and configure user provisioning in Azure AD. For more information, see "[Configuring user provisioning for your enterprise](/admin/authentication/configuring-user-provisioning-for-your-enterprise#enabling-user-provisioning-for-your-enterprise)." {% endif %} diff --git a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md index 6d26e290e4..fbe74e7c94 100644 --- a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md +++ b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/configuring-authentication-and-provisioning-for-your-enterprise-using-okta.md @@ -3,9 +3,8 @@ title: Configuring authentication and provisioning for your enterprise using Okt shortTitle: Configuring with Okta intro: 'You can use Okta as an identity provider (IdP) to centrally manage authentication and user provisioning for {% data variables.product.prodname_ghe_managed %}.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md index 8dafb03fa5..bf03a67c91 100644 --- a/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md +++ b/translations/zh-CN/content/admin/authentication/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams.md @@ -2,9 +2,8 @@ title: Mapping Okta groups to teams intro: 'You can map your Okta groups to teams on {% data variables.product.prodname_ghe_managed %} to automatically add and remove team members.' permissions: 'Enterprise owners can configure authentication and provisioning for {% data variables.product.prodname_ghe_managed %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - github-ae: '*' + ghae: '*' type: how_to topics: - Accounts diff --git a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md index 0d5ef218e8..3da45be1af 100644 --- a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise.md @@ -2,7 +2,6 @@ title: About identity and access management for your enterprise shortTitle: About identity and access management intro: 'You can use SAML single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) to centrally manage access {% ifversion ghec %}to organizations owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}{% endif %}{% ifversion ghae %}to {% data variables.product.product_location %}{% endif %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghec: '*' ghae: '*' diff --git a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md index 3a5178de56..e3b193572b 100644 --- a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise.md @@ -2,7 +2,6 @@ title: Configuring SAML single sign-on for your enterprise shortTitle: Configure SAML SSO intro: 'You can control and secure access to {% ifversion ghec %}resources like repositories, issues, and pull requests within your enterprise''s organizations{% elsif ghae %}your enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %} by {% ifversion ghec %}enforcing{% elsif ghae %}configuring{% endif %} SAML single sign-on (SSO) through your identity provider (IdP).' -product: '{% data reusables.gated-features.saml-sso %}' permissions: 'Enterprise owners can configure SAML SSO for an enterprise on {% data variables.product.product_name %}.' versions: ghec: '*' diff --git a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md index a1c6d63a4c..2f2984bc97 100644 --- a/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-user-provisioning-for-your-enterprise.md @@ -3,7 +3,6 @@ title: Configuring user provisioning for your enterprise shortTitle: Configuring user provisioning intro: 'You can configure System for Cross-domain Identity Management (SCIM) for your enterprise, which automatically provisions user accounts on {% data variables.product.product_location %} when you assign the application for {% data variables.product.product_location %} to a user on your identity provider (IdP).' permissions: 'Enterprise owners can configure user provisioning for an enterprise on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.saml-sso %}' versions: ghae: '*' type: how_to diff --git a/translations/zh-CN/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md b/translations/zh-CN/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md index d41f097870..c82069b7a4 100644 --- a/translations/zh-CN/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md +++ b/translations/zh-CN/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/index.md @@ -4,7 +4,7 @@ shortTitle: Manage users with your IdP product: '{% data reusables.gated-features.emus %}' intro: You can manage identity and access with your identity provider and provision accounts that can only contribute to your enterprise. redirect_from: - - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/ + - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider versions: ghec: '*' topics: diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md index 174ba081d6..2727ae6ddc 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-a-hostname.md @@ -1,8 +1,8 @@ --- -title: 配置主机名 -intro: 我们建议为您的设备设置主机名,不建议使用硬编码 IP 地址。 +title: Configuring a hostname +intro: We recommend setting a hostname for your appliance instead of using a hard-coded IP address. redirect_from: - - /enterprise/admin/guides/installation/configuring-hostnames/ + - /enterprise/admin/guides/installation/configuring-hostnames - /enterprise/admin/installation/configuring-a-hostname - /enterprise/admin/configuration/configuring-a-hostname - /admin/configuration/configuring-a-hostname @@ -14,19 +14,20 @@ topics: - Fundamentals - Infrastructure --- +If you configure a hostname instead of a hard-coded IP address, you will be able to change the physical hardware that {% data variables.product.product_location %} runs on without affecting users or client software. -如果配置的是主机名,而不是硬编码 IP 地址,您将能够更改运行 {% data variables.product.product_location %} 的物理硬件,而不会影响用户或客户端软件。 - -{% data variables.enterprise.management_console %} 中的主机名设置应设置为合适的完全限定域名 (FQDN),此域名可在互联网上或您的内部网络内解析。 例如,您的主机名设置可以是 `github.companyname.com`。我们还建议为选定的主机名启用子域隔离,以缓解多种跨站点脚本样式漏洞。 更多关于主机名设置的信息,请参阅 [HTTP RFC 的第 2.1 节](https://tools.ietf.org/html/rfc1123#section-2)。 +The hostname setting in the {% data variables.enterprise.management_console %} should be set to an appropriate fully qualified domain name (FQDN) which is resolvable on the internet or within your internal network. For example, your hostname setting could be `github.companyname.com.` We also recommend enabling subdomain isolation for the chosen hostname to mitigate several cross-site scripting style vulnerabilities. For more information on hostname settings, see [Section 2.1 of the HTTP RFC](https://tools.ietf.org/html/rfc1123#section-2). {% data reusables.enterprise_installation.changing-hostname-not-supported %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. 输入想要为 {% data variables.product.product_location %} 设置的主机名。 ![用于设置主机名的字段](/assets/images/enterprise/management-console/hostname-field.png) -5. 要测试新主机名的 DNS 和 SSL 设置,请单击 **Test domain settings**。 ![测试域设置按钮](/assets/images/enterprise/management-console/test-domain-settings.png) +4. Type the hostname you'd like to set for {% data variables.product.product_location %}. + ![Field for setting a hostname](/assets/images/enterprise/management-console/hostname-field.png) +5. To test the DNS and SSL settings for the new hostname, click **Test domain settings**. + ![Test domain settings button](/assets/images/enterprise/management-console/test-domain-settings.png) {% data reusables.enterprise_management_console.test-domain-settings-failure %} {% data reusables.enterprise_management_console.save-settings %} -配置完主机名后,建议为 {% data variables.product.product_location %} 启用子域隔离。 更多信息请参阅“[启用子域隔离](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)”。 +After you configure a hostname, we recommend that you enable subdomain isolation for {% data variables.product.product_location %}. For more information, see "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation/)." diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md index 8d3b1c125e..efcd3a1f2d 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-an-outbound-web-proxy-server.md @@ -2,7 +2,7 @@ title: Configuring an outbound web proxy server intro: 'A proxy server provides an additional level of security for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-a-proxy-server/ + - /enterprise/admin/guides/installation/configuring-a-proxy-server - /enterprise/admin/installation/configuring-an-outbound-web-proxy-server - /enterprise/admin/configuration/configuring-an-outbound-web-proxy-server - /admin/configuration/configuring-an-outbound-web-proxy-server diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md index 0f5cd474b9..b6f5cbfb9d 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-built-in-firewall-rules.md @@ -1,8 +1,8 @@ --- -title: 配置内置防火墙规则 -intro: '您可以查看默认防火墙规则并自定义 {% data variables.product.product_location %} 的规则。' +title: Configuring built-in firewall rules +intro: 'You can view default firewall rules and customize rules for {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/guides/installation/configuring-firewall-settings/ + - /enterprise/admin/guides/installation/configuring-firewall-settings - /enterprise/admin/installation/configuring-built-in-firewall-rules - /enterprise/admin/configuration/configuring-built-in-firewall-rules - /admin/configuration/configuring-built-in-firewall-rules @@ -14,21 +14,20 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: 配置防火墙规则 +shortTitle: Configure firewall rules --- +## About {% data variables.product.product_location %}'s firewall -## 关于 {% data variables.product.product_location %} 的防火墙 +{% data variables.product.prodname_ghe_server %} uses Ubuntu's Uncomplicated Firewall (UFW) on the virtual appliance. For more information see "[UFW](https://help.ubuntu.com/community/UFW)" in the Ubuntu documentation. {% data variables.product.prodname_ghe_server %} automatically updates the firewall allowlist of allowed services with each release. -{% data variables.product.prodname_ghe_server %} 在虚拟设备上使用 Ubuntu 的简单防火墙 (UFW)。 更多信息请参阅 Ubuntu 文档中的“[UFW](https://help.ubuntu.com/community/UFW)”。 {% data variables.product.prodname_ghe_server %} 在每次发布时都会自动更新允许服务的防火墙允许名单。 +After you install {% data variables.product.prodname_ghe_server %}, all required network ports are automatically opened to accept connections. Every non-required port is automatically configured as `deny`, and the default outgoing policy is configured as `allow`. Stateful tracking is enabled for any new connections; these are typically network packets with the `SYN` bit set. For more information, see "[Network ports](/enterprise/admin/guides/installation/network-ports)." -安装 {% data variables.product.prodname_ghe_server %} 之后,所有必要的网络端口都会自动打开,以接受连接。 每个非必要的端口都会自动配置为 `deny`,默认传出策略会配置为 `allow`。 会为任何新连接启用状态跟踪;这些连接通常是 `SYN` 位置 1 的网络数据包。 更多信息请参阅“[网络端口](/enterprise/admin/guides/installation/network-ports)”。 +The UFW firewall also opens several other ports that are required for {% data variables.product.prodname_ghe_server %} to operate properly. For more information on the UFW rule set, see [the UFW README](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213). -UFW 防火墙还会打开 {% data variables.product.prodname_ghe_server %} 所需的其他多个端口才能正常运行。 更多关于 UFW 规则集的信息,请参阅 [UFW 自述文件](https://bazaar.launchpad.net/~jdstrand/ufw/0.30-oneiric/view/head:/README#L213)。 - -## 查看默认防火墙规则 +## Viewing the default firewall rules {% data reusables.enterprise_installation.ssh-into-instance %} -2. 要查看默认防火墙规则,请使用 `sudo ufw status` 命令。 您看到的输出应类似于: +2. To view the default firewall rules, use the `sudo ufw status` command. You should see output similar to this: ```shell $ sudo ufw status > Status: active @@ -56,46 +55,46 @@ UFW 防火墙还会打开 {% data variables.product.prodname_ghe_server %} 所 > ghe-9418 (v6) ALLOW Anywhere (v6) ``` -## 添加自定义防火墙规则 +## Adding custom firewall rules {% warning %} -**警告:** 在添加自定义防火墙规则之前,请备份当前规则,以便在需要时可以重置为已知的工作状态。 如果您被锁定在服务器之外,请与 {% data variables.contact.contact_ent_support %} 联系,以重新配置原始防火墙规则。 恢复原始防火墙规则会导致服务器停机。 +**Warning:** Before you add custom firewall rules, back up your current rules in case you need to reset to a known working state. If you're locked out of your server, contact {% data variables.contact.contact_ent_support %} to reconfigure the original firewall rules. Restoring the original firewall rules involves downtime for your server. {% endwarning %} -1. 配置自定义防火墙规则。 -2. 使用`状态编号`命令检查每个新规则的状态。 +1. Configure a custom firewall rule. +2. Check the status of each new rule with the `status numbered` command. ```shell $ sudo ufw status numbered ``` -3. 要备份自定义防火墙规则,请使用 `cp` 命令将规则移至新文件。 +3. To back up your custom firewall rules, use the `cp`command to move the rules to a new file. ```shell $ sudo cp -r /etc/ufw ~/ufw.backup ``` -升级 {% data variables.product.product_location %} 后,您必须重新应用自定义防火墙规则。 我们建议您创建脚本来重新应用防火墙自定义规则。 +After you upgrade {% data variables.product.product_location %}, you must reapply your custom firewall rules. We recommend that you create a script to reapply your firewall custom rules. -## 恢复默认防火墙规则 +## Restoring the default firewall rules -如果更改防火墙规则后出现问题,您可以通过原始备份重置规则。 +If something goes wrong after you change the firewall rules, you can reset the rules from your original backup. {% warning %} -**警告**:如果您对防火墙进行更改之前未备份原始规则,请联系 {% data variables.contact.contact_ent_support %} 获取更多帮助。 +**Warning:** If you didn't back up the original rules before making changes to the firewall, contact {% data variables.contact.contact_ent_support %} for further assistance. {% endwarning %} {% data reusables.enterprise_installation.ssh-into-instance %} -2. 要恢复之前的备份规则,请使用 `cp` 命令将规则复制到防火墙。 +2. To restore the previous backup rules, copy them back to the firewall with the `cp` command. ```shell $ sudo cp -f ~/ufw.backup/*rules /etc/ufw ``` -3. 使用 `systemctl` 命令重新启动防火墙。 +3. Restart the firewall with the `systemctl` command. ```shell $ sudo systemctl restart ufw ``` -4. 使用 `ufw status` 命令确认规则已恢复为默认状态。 +4. Confirm that the rules are back to their defaults with the `ufw status` command. ```shell $ sudo ufw status > Status: active diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md index 376dd87832..0080d55693 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-dns-nameservers.md @@ -1,8 +1,8 @@ --- -title: 配置 DNS 域名服务器 -intro: '在 DHCP 租约提供域名服务器时,{% data variables.product.prodname_ghe_server %} 将为 DNS 设置使用动态主机配置协议 (DHCP)。 如果域名服务器不是由动态主机配置协议 (DHCP) 租约提供,或者您需要使用特定的 DNS 设置,可以手动指定域名服务器。' +title: Configuring DNS nameservers +intro: '{% data variables.product.prodname_ghe_server %} uses the dynamic host configuration protocol (DHCP) for DNS settings when DHCP leases provide nameservers. If nameservers are not provided by a dynamic host configuration protocol (DHCP) lease, or if you need to use specific DNS settings, you can specify the nameservers manually.' redirect_from: - - /enterprise/admin/guides/installation/about-dns-nameservers/ + - /enterprise/admin/guides/installation/about-dns-nameservers - /enterprise/admin/installation/configuring-dns-nameservers - /enterprise/admin/configuration/configuring-dns-nameservers - /admin/configuration/configuring-dns-nameservers @@ -14,29 +14,28 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: 配置 DNS 服务器 +shortTitle: Configure DNS servers --- - -指定的域名服务器必须解析 {% data variables.product.product_location %} 的主机名。 +The nameservers you specify must resolve {% data variables.product.product_location %}'s hostname. {% data reusables.enterprise_installation.changing-hostname-not-supported %} -## 使用虚拟机控制台配置域名服务器 +## Configuring nameservers using the virtual machine console {% data reusables.enterprise_installation.open-vm-console-start %} -2. 为实例配置域名服务器。 +2. Configure nameservers for your instance. {% data reusables.enterprise_installation.vm-console-done %} -## 使用管理 shell 配置域名服务器 +## Configuring nameservers using the administrative shell {% data reusables.enterprise_installation.ssh-into-instance %} -2. 要编辑域名服务器,请输入: +2. To edit your nameservers, enter: ```shell $ sudo vim /etc/resolvconf/resolv.conf.d/head ``` -3. 附加任何 `nameserver` 条目,然后保存文件。 -4. 验证变更后,请保存文件。 -5. 要向 {% data variables.product.product_location %} 添加新的域名服务器条目,请运行以下命令: +3. Append any `nameserver` entries, then save the file. +4. After verifying your changes, save the file. +5. To add your new nameserver entries to {% data variables.product.product_location %}, run the following: ```shell $ sudo service resolvconf restart $ sudo service dnsmasq restart diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-tls.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-tls.md index 2018565cbd..e3a251095c 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-tls.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/configuring-tls.md @@ -1,9 +1,9 @@ --- -title: 配置 TLS -intro: '您可以在 {% data variables.product.product_location %} 上配置传输层安全 (TLS),以便使用由可信证书颁发机构签名的证书。' +title: Configuring TLS +intro: 'You can configure Transport Layer Security (TLS) on {% data variables.product.product_location %} so that you can use a certificate that is signed by a trusted certificate authority.' redirect_from: - - /enterprise/admin/articles/ssl-configuration/ - - /enterprise/admin/guides/installation/about-tls/ + - /enterprise/admin/articles/ssl-configuration + - /enterprise/admin/guides/installation/about-tls - /enterprise/admin/installation/configuring-tls - /enterprise/admin/configuration/configuring-tls - /admin/configuration/configuring-tls @@ -17,53 +17,55 @@ topics: - Networking - Security --- +## About Transport Layer Security -## 关于传输层安全 +TLS, which replaced SSL, is enabled and configured with a self-signed certificate when {% data variables.product.prodname_ghe_server %} is started for the first time. As self-signed certificates are not trusted by web browsers and Git clients, these clients will report certificate warnings until you disable TLS or upload a certificate signed by a trusted authority, such as Let's Encrypt. -当 {% data variables.product.prodname_ghe_server %} 首次启动时,会启用 TLS(替代了 SSL)并通过自签名证书进行配置。 由于自签名证书不受 Web 浏览器和 Git 客户端的信任,因此这些客户端将报告证书警告,直至您禁用 TLS 或上传由 Let's Encrypt 等可信颁发机构签名的证书。 - -{% data variables.product.prodname_ghe_server %} 设备将在 SSL 启用时发送 HTTP 严格传输安全标头。 禁用 TLS 会导致用户无法访问设备,因为用户的浏览器将不允许协议降级为 HTTP。 更多信息请参阅 Wikipedia 上的“[HTTP 严格传输安全 (HSTS)](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security)”。 +The {% data variables.product.prodname_ghe_server %} appliance will send HTTP Strict Transport Security headers when SSL is enabled. Disabling TLS will cause users to lose access to the appliance, because their browsers will not allow a protocol downgrade to HTTP. For more information, see "[HTTP Strict Transport Security (HSTS)](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security)" on Wikipedia. {% data reusables.enterprise_installation.terminating-tls %} -要允许用户使用 FIDO U2F 进行双重身份验证,您必须为实例启用 TLS。 更多信息请参阅“[配置双重身份验证](/articles/configuring-two-factor-authentication)”。 +To allow users to use FIDO U2F for two-factor authentication, you must enable TLS for your instance. For more information, see "[Configuring two-factor authentication](/articles/configuring-two-factor-authentication)." -## 基本要求 +## Prerequisites -要在生产中使用 TLS,您必须具有由可信证书颁发机构签名的未加密 PEM 格式的证书。 +To use TLS in production, you must have a certificate in an unencrypted PEM format signed by a trusted certificate authority. -您的证书还需要为“[启用子域隔离](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation#about-subdomain-isolation)”中列出的子域配置使用者可选名称,如果证书已由中间证书颁发机构签名,将需要包含完整的证书链。 更多信息请参阅 Wikipedia 上的“[使用者可选名称](http://en.wikipedia.org/wiki/SubjectAltName)”。 +Your certificate will also need Subject Alternative Names configured for the subdomains listed in "[Enabling subdomain isolation](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-subdomain-isolation#about-subdomain-isolation)" and will need to include the full certificate chain if it has been signed by an intermediate certificate authority. For more information, see "[Subject Alternative Name](http://en.wikipedia.org/wiki/SubjectAltName)" on Wikipedia. -您可以使用 `ghe-ssl-generate-csr` 命令为实例生成证书签名请求 (CSR)。 更多信息请参阅“[命令行实用程序](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities/#ghe-ssl-generate-csr)”。 +You can generate a certificate signing request (CSR) for your instance using the `ghe-ssl-generate-csr` command. For more information, see "[Command-line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities/#ghe-ssl-generate-csr)." -## 上传自定义 TLS 证书 +## Uploading a custom TLS certificate {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} {% data reusables.enterprise_management_console.select-tls-only %} -4. 在“TLS Protocol support”下,选择您想要允许的协议。 ![包含用于选择 TLS 协议的选项的单选按钮](/assets/images/enterprise/management-console/tls-protocol-support.png) -5. 在“Certificate”下,单击 **Choose File**,选择要安装的 TLS 证书或证书链(PEM 格式)。 此文件通常采用 *.pem*、*.crt* 或 *.cer* 扩展名。 ![用于查找 TLS 证书文件的按钮](/assets/images/enterprise/management-console/install-tls-certificate.png) -6. Under "Unencrypted key", click **Choose File** to choose an RSA key (in PEM format) to install. 此文件通常采用 *.key* 扩展名。 ![用于查找 TLS 密钥文件的按钮](/assets/images/enterprise/management-console/install-tls-key.png) +4. Under "TLS Protocol support", select the protocols you want to allow. + ![Radio buttons with options to choose TLS protocols](/assets/images/enterprise/management-console/tls-protocol-support.png) +5. Under "Certificate", click **Choose File** to choose a TLS certificate or certificate chain (in PEM format) to install. This file will usually have a *.pem*, *.crt*, or *.cer* extension. + ![Button to find TLS certificate file](/assets/images/enterprise/management-console/install-tls-certificate.png) +6. Under "Unencrypted key", click **Choose File** to choose an RSA key (in PEM format) to install. This file will usually have a *.key* extension. + ![Button to find TLS key file](/assets/images/enterprise/management-console/install-tls-key.png) {% warning %} - **Warning**: Your key must be an RSA key and must not have a passphrase. 更多信息请参阅“[将密码从密钥文件中移除](/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)”。 + **Warning**: Your key must be an RSA key and must not have a passphrase. For more information, see "[Removing the passphrase from your key file](/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)". {% endwarning %} {% data reusables.enterprise_management_console.save-settings %} -## 关于 Let's Encrypt 支持 +## About Let's Encrypt support -Let's Encrypt 是公共证书颁发机构,他们使用 ACME 协议颁发受浏览器信任的免费、自动化 TLS 证书。 您可以在设备上自动获取并续订 Let's Encrypt 证书,无需手动维护。 +Let's Encrypt is a public certificate authority that issues free, automated TLS certificates that are trusted by browsers using the ACME protocol. You can automatically obtain and renew Let's Encrypt certificates on your appliance without any required manual maintenance. {% data reusables.enterprise_installation.lets-encrypt-prerequisites %} -在您启用通过 Let's Encrypt 自动进行 TLS 证书管理后,{% data variables.product.product_location %} 将与 Let's Encrypt 服务器通信,以获取证书。 要续订证书,Let's Encrypt 服务器必须通过入站 HTTP 请求验证已配置域名的控制。 +When you enable automation of TLS certificate management using Let's Encrypt, {% data variables.product.product_location %} will contact the Let's Encrypt servers to obtain a certificate. To renew a certificate, Let's Encrypt servers must validate control of the configured domain name with inbound HTTP requests. -您还可以在 {% data variables.product.product_location %} 上使用 `ghe-ssl-acme` 命令行实用程序自动生成 Let's Encrypt 证书。 更多信息请参阅“[命令行实用程序](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-ssl-acme)”。 +You can also use the `ghe-ssl-acme` command line utility on {% data variables.product.product_location %} to automatically generate a Let's Encrypt certificate. For more information, see "[Command-line utilities](/enterprise/{{ currentVersion }}/admin/guides/installation/command-line-utilities#ghe-ssl-acme)." -## 使用 Let's Encrypt 配置 TLS +## Configuring TLS using Let's Encrypt {% data reusables.enterprise_installation.lets-encrypt-prerequisites %} @@ -71,9 +73,12 @@ Let's Encrypt 是公共证书颁发机构,他们使用 ACME 协议颁发受浏 {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} {% data reusables.enterprise_management_console.select-tls-only %} -5. 选择 **Enable automation of TLS certificate management using Let's Encrypt**。 ![启用 Let's Encrypt 复选框](/assets/images/enterprise/management-console/lets-encrypt-checkbox.png) +5. Select **Enable automation of TLS certificate management using Let's Encrypt**. + ![Checkbox to enable Let's Encrypt](/assets/images/enterprise/management-console/lets-encrypt-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} {% data reusables.enterprise_management_console.privacy %} -7. 单击 **Request TLS certificate**。 ![Request TLS Certificate 按钮](/assets/images/enterprise/management-console/request-tls-button.png) -8. 等待“状态”从“开始”更改为“完成”。 ![Let's Encrypt 状态](/assets/images/enterprise/management-console/lets-encrypt-status.png) -9. 单击 **Save configuration**。 +7. Click **Request TLS certificate**. + ![Request TLS certificate button](/assets/images/enterprise/management-console/request-tls-button.png) +8. Wait for the "Status" to change from "STARTED" to "DONE". + ![Let's Encrypt status](/assets/images/enterprise/management-console/lets-encrypt-status.png) +9. Click **Save configuration**. diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md index e7d4da5015..24d09e4f83 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/enabling-subdomain-isolation.md @@ -1,8 +1,8 @@ --- -title: 启用子域隔离 -intro: '您可以设置子域隔离,将用户提供的内容与 {% data variables.product.prodname_ghe_server %} 设备的其他部分安全地隔离。' +title: Enabling subdomain isolation +intro: 'You can set up subdomain isolation to securely separate user-supplied content from other portions of your {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - - /enterprise/admin/guides/installation/about-subdomain-isolation/ + - /enterprise/admin/guides/installation/about-subdomain-isolation - /enterprise/admin/installation/enabling-subdomain-isolation - /enterprise/admin/configuration/enabling-subdomain-isolation - /admin/configuration/enabling-subdomain-isolation @@ -15,51 +15,51 @@ topics: - Infrastructure - Networking - Security -shortTitle: 启用子域隔离 +shortTitle: Enable subdomain isolation --- +## About subdomain isolation -## 关于子域隔离 +Subdomain isolation mitigates cross-site scripting and other related vulnerabilities. For more information, see "[Cross-site scripting](http://en.wikipedia.org/wiki/Cross-site_scripting)" on Wikipedia. We highly recommend that you enable subdomain isolation on {% data variables.product.product_location %}. -子域隔离可以减少跨站脚本和其他相关漏洞。 更多信息请参阅 Wikipedia 上的“[跨站脚本](http://en.wikipedia.org/wiki/Cross-site_scripting)”。 我们强烈建议在 {% data variables.product.product_location %} 上启用子域隔离。 +When subdomain isolation is enabled, {% data variables.product.prodname_ghe_server %} replaces several paths with subdomains. After enabling subdomain isolation, attempts to access the previous paths for some user-supplied content, such as `http(s)://HOSTNAME/raw/`, may return `404` errors. -启用子域隔离后,{% data variables.product.prodname_ghe_server %} 会以子域替代多个路径。 启用子域隔离后,尝试访问某些用户提供内容的以前路径(如 `http(s)://HOSTNAME/raw/`)可能会返回 `404` 错误。 +| Path without subdomain isolation | Path with subdomain isolation | +| --- | --- | +| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | +| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | +| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | +| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | +| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | +| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | +| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | +| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | +| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | +| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` | {% ifversion ghes %} +| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} +| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` +| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` +| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` +| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} -| 未使用子域隔离的路径 | 使用子域隔离的路径 | -| -------------------------------------- | ----------------------------------------------------------- | -| `http(s)://HOSTNAME/assets/` | `http(s)://assets.HOSTNAME/` | -| `http(s)://HOSTNAME/avatars/` | `http(s)://avatars.HOSTNAME/` | -| `http(s)://HOSTNAME/codeload/` | `http(s)://codeload.HOSTNAME/` | -| `http(s)://HOSTNAME/gist/` | `http(s)://gist.HOSTNAME/` | -| `http(s)://HOSTNAME/media/` | `http(s)://media.HOSTNAME/` | -| `http(s)://HOSTNAME/pages/` | `http(s)://pages.HOSTNAME/` | -| `http(s)://HOSTNAME/raw/` | `http(s)://raw.HOSTNAME/` | -| `http(s)://HOSTNAME/render/` | `http(s)://render.HOSTNAME/` | -| `http(s)://HOSTNAME/reply/` | `http(s)://reply.HOSTNAME/` | -| `http(s)://HOSTNAME/uploads/` | `http(s)://uploads.HOSTNAME/` |{% ifversion ghes %} -| `https://HOSTNAME/_registry/docker/` | `http(s)://docker.HOSTNAME/`{% endif %}{% ifversion ghes %} -| `https://HOSTNAME/_registry/npm/` | `https://npm.HOSTNAME/` | -| `https://HOSTNAME/_registry/rubygems/` | `https://rubygems.HOSTNAME/` | -| `https://HOSTNAME/_registry/maven/` | `https://maven.HOSTNAME/` | -| `https://HOSTNAME/_registry/nuget/` | `https://nuget.HOSTNAME/`{% endif %} - -## 基本要求 +## Prerequisites {% data reusables.enterprise_installation.disable-github-pages-warning %} -启用子域隔离之前,您必须为新域配置网络设置。 +Before you enable subdomain isolation, you must configure your network settings for your new domain. -- 指定有效域名作为主机名,而不是指定 IP 地址。 更多信息请参阅“[配置主机名](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)。” +- Specify a valid domain name as your hostname, instead of an IP address. For more information, see "[Configuring a hostname](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-a-hostname)." {% data reusables.enterprise_installation.changing-hostname-not-supported %} -- 为上文列出的子域设置通配符域名系统 (DNS) 记录或单独的 DNS 记录。 建议为指向您的服务器 IP 地址的 `*.HOSTNAME` 创建一条 A 记录,从而无需为各个子域创建多条记录。 -- 为 `*.HOSTNAME` 获取一个使用者可选名称 (SAN) 同时适用于 `HOSTNAME` 和通配符域 `*.HOSTNAME` 的通配符传输层安全 (TLS) 证书。 例如,如果您的主机名为 `github.octoinc.com`,则获取一个通用名值设为 `*.github.octoinc.com`、SAN 值同时设为 `github.octoinc.com` 和 `*.github.octoinc.com` 的证书。 -- 在设备上启用 TLS。 更多信息请参阅“[配置 TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)”。 +- Set up a wildcard Domain Name System (DNS) record or individual DNS records for the subdomains listed above. We recommend creating an A record for `*.HOSTNAME` that points to your server's IP address so you don't have to create multiple records for each subdomain. +- Get a wildcard Transport Layer Security (TLS) certificate for `*.HOSTNAME` with a Subject Alternative Name (SAN) for both `HOSTNAME` and the wildcard domain `*.HOSTNAME`. For example, if your hostname is `github.octoinc.com`, get a certificate with the Common Name value set to `*.github.octoinc.com` and a SAN value set to both `github.octoinc.com` and `*.github.octoinc.com`. +- Enable TLS on your appliance. For more information, see "[Configuring TLS](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-tls/)." -## 启用子域隔离 +## Enabling subdomain isolation {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.hostname-menu-item %} -4. 选择 **Subdomain isolation (recommended)**。 ![启用子域隔离的复选框](/assets/images/enterprise/management-console/subdomain-isolation.png) +4. Select **Subdomain isolation (recommended)**. + ![Checkbox to enable subdomain isolation](/assets/images/enterprise/management-console/subdomain-isolation.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/index.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/index.md index af77d332d8..e3a5d06573 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/index.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/index.md @@ -1,13 +1,13 @@ --- -title: 配置网络设置 +title: Configuring network settings redirect_from: - - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl/ - - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings/ - - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings/ + - /enterprise/admin/guides/installation/dns-hostname-subdomain-isolation-and-ssl + - /enterprise/admin/articles/about-dns-ssl-and-subdomain-settings + - /enterprise/admin/articles/configuring-dns-ssl-and-subdomain-settings + - /enterprise/admin/guides/installation/configuring-your-github-enterprise-network-settings - /enterprise/admin/installation/configuring-your-github-enterprise-server-network-settings - /enterprise/admin/configuration/configuring-network-settings -intro: '使用网络所需的 DNS 域名服务器和主机名配置 {% data variables.product.prodname_ghe_server %}。 您还可以配置代理服务器或防火墙规则。 为实现管理和用户目的,您必须允许访问某些端口。' +intro: 'Configure {% data variables.product.prodname_ghe_server %} with the DNS nameservers and hostname required in your network. You can also configure a proxy server or firewall rules. You must allow access to certain ports for administrative and user purposes.' versions: ghes: '*' topics: @@ -23,6 +23,6 @@ children: - /configuring-built-in-firewall-rules - /network-ports - /using-github-enterprise-server-with-a-load-balancer -shortTitle: 配置网络设置 +shortTitle: Configure network settings --- diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/network-ports.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/network-ports.md index 4fcd17c1a7..80cfbb860b 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/network-ports.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/network-ports.md @@ -1,10 +1,10 @@ --- title: Network ports redirect_from: - - /enterprise/admin/articles/configuring-firewalls/ - - /enterprise/admin/articles/firewall/ - - /enterprise/admin/guides/installation/network-configuration/ - - /enterprise/admin/guides/installation/network-ports-to-open/ + - /enterprise/admin/articles/configuring-firewalls + - /enterprise/admin/articles/firewall + - /enterprise/admin/guides/installation/network-configuration + - /enterprise/admin/guides/installation/network-ports-to-open - /enterprise/admin/installation/network-ports - /enterprise/admin/configuration/network-ports - /admin/configuration/network-ports diff --git a/translations/zh-CN/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md b/translations/zh-CN/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md index 8f8fdadc5a..b720b6c9a0 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md +++ b/translations/zh-CN/content/admin/configuration/configuring-network-settings/using-github-enterprise-server-with-a-load-balancer.md @@ -2,7 +2,7 @@ title: Using GitHub Enterprise Server with a load balancer intro: 'Use a load balancer in front of a single {% data variables.product.prodname_ghe_server %} appliance or a pair of appliances in a High Availability configuration.' redirect_from: - - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer/ + - /enterprise/admin/guides/installation/using-github-enterprise-with-a-load-balancer - /enterprise/admin/installation/using-github-enterprise-server-with-a-load-balancer - /enterprise/admin/configuration/using-github-enterprise-server-with-a-load-balancer - /admin/configuration/using-github-enterprise-server-with-a-load-balancer diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md index 0a9d52cb4b..c0e8a764c7 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh.md @@ -1,13 +1,13 @@ --- -title: 访问管理 shell (SSH) +title: Accessing the administrative shell (SSH) redirect_from: - - /enterprise/admin/articles/ssh-access/ - - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access/ - - /enterprise/admin/guides/installation/administrative-shell-ssh-access/ - - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey/ - - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey/ + - /enterprise/admin/articles/ssh-access + - /enterprise/admin/articles/adding-an-ssh-key-for-shell-access + - /enterprise/admin/guides/installation/administrative-shell-ssh-access + - /enterprise/admin/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.13/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.14/articles/troubleshooting-ssh-permission-denied-publickey + - /enterprise/admin/2.15/articles/troubleshooting-ssh-permission-denied-publickey - /enterprise/admin/installation/accessing-the-administrative-shell-ssh - /enterprise/admin/configuration/accessing-the-administrative-shell-ssh - /admin/configuration/accessing-the-administrative-shell-ssh @@ -19,31 +19,31 @@ topics: - Enterprise - Fundamentals - SSH -shortTitle: 访问管理 shell (SSH) +shortTitle: Access the admin shell (SSH) --- +## About administrative shell access -## 关于管理 shell 访问 +If you have SSH access to the administrative shell, you can run {% data variables.product.prodname_ghe_server %}'s command line utilities. SSH access is also useful for troubleshooting, running backups, and configuring replication. Administrative SSH access is managed separately from Git SSH access and is accessible only via port 122. -如果您有权限通过 SSH 访问管理 shell,可运行 {% data variables.product.prodname_ghe_server %} 的命令行实用程序。 SSH 访问也可用于故障排查、运行备份和配置复制。 管理 SSH 访问与 Git SSH 访问分开管理,仅可通过端口 122 访问。 +## Enabling access to the administrative shell via SSH -## 允许通过 SSH 访问管理 shell - -要启用管理 SSH 访问,您必须向授权密钥的实例列表添加 SSH 公钥。 +To enable administrative SSH access, you must add your SSH public key to your instance's list of authorized keys. {% tip %} -**提示**:对授权 SSH 密钥进行的变更会立即生效。 +**Tip:** Changes to authorized SSH keys take effect immediately. {% endtip %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -3. 在“SSH access”下,将密钥粘贴到文本框中,然后单击 **Add key**。 ![添加 SSH 密钥的文本框和按钮](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) +3. Under "SSH access", paste your key into the text box, then click **Add key**. + ![Text box and button for adding an SSH key](/assets/images/enterprise/settings/add-authorized-ssh-key-admin-shell.png) {% data reusables.enterprise_management_console.save-settings %} -## 通过 SSH 连接到管理 shell +## Connecting to the administrative shell over SSH -将 SSH 密钥添加到列表后,以 `admin` 用户的身份在端口 122 上通过 SSH 连接到实例。 +After you've added your SSH key to the list, connect to the instance over SSH as the `admin` user on port 122. ```shell $ ssh -p 122 admin@github.example.com @@ -51,17 +51,17 @@ Last login: Sun Nov 9 07:53:29 2014 from 169.254.1.1 admin@github-example-com:~$ █ ``` -### 排查 SSH 连接问题 +### Troubleshooting SSH connection problems -如果在尝试通过 SSH 连接到 {% data variables.product.product_location %} 时发生 `Permission denied (publickey)` 错误,请确认您是否是通过端口 122 连接的。 您可能需要明确指定要使用的 SSH 私钥。 +If you encounter the `Permission denied (publickey)` error when you try to connect to {% data variables.product.product_location %} via SSH, confirm that you are connecting over port 122. You may need to explicitly specify which private SSH key to use. -要使用命令行指定 SSH 私钥,请运行包含 `-i` 参数的 `ssh`。 +To specify a private SSH key using the command line, run `ssh` with the `-i` argument. ```shell ssh -i /path/to/ghe_private_key -p 122 admin@<em>hostname</em> ``` -您也可以使用 SSH 配置文件 (`~/.ssh/config`) 指定 SSH 私钥。 +You can also specify a private SSH key using the SSH configuration file (`~/.ssh/config`). ```shell Host <em>hostname</em> @@ -70,10 +70,10 @@ Host <em>hostname</em> Port 122 ``` -## 使用本地控制台访问管理 shell +## Accessing the administrative shell using the local console -在 SSH 不可用等紧急情况下,您可以在本地访问管理 shell。 以 `admin` 用户身份登录,并使用在 {% data variables.product.prodname_ghe_server %} 初始设置期间确定的密码。 +In an emergency situation, for example if SSH is unavailable, you can access the administrative shell locally. Sign in as the `admin` user and use the password established during initial setup of {% data variables.product.prodname_ghe_server %}. -## 管理 shell 的访问限制 +## Access limitations for the administrative shell -管理 shell 访问仅可用于故障排查和执行记录的操作程序。 修改系统和应用程序文件、运行程序或安装不受支持的软件包可能导致支持合约失效。 如果您对支持合约允许的活动有任何疑问,请联系 {% data variables.contact.contact_ent_support %}。 +Administrative shell access is permitted for troubleshooting and performing documented operations procedures only. Modifying system and application files, running programs, or installing unsupported software packages may void your support contract. Please contact {% data variables.contact.contact_ent_support %} if you have a question about the activities allowed by your support contract. diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md index ffc53c7878..d78d9ed5dd 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/accessing-the-management-console.md @@ -2,12 +2,12 @@ title: Accessing the management console intro: '{% data reusables.enterprise_site_admin_settings.about-the-management-console %}' redirect_from: - - /enterprise/admin/articles/about-the-management-console/ - - /enterprise/admin/articles/management-console-for-emergency-recovery/ - - /enterprise/admin/articles/web-based-management-console/ - - /enterprise/admin/categories/management-console/ - - /enterprise/admin/articles/accessing-the-management-console/ - - /enterprise/admin/guides/installation/web-based-management-console/ + - /enterprise/admin/articles/about-the-management-console + - /enterprise/admin/articles/management-console-for-emergency-recovery + - /enterprise/admin/articles/web-based-management-console + - /enterprise/admin/categories/management-console + - /enterprise/admin/articles/accessing-the-management-console + - /enterprise/admin/guides/installation/web-based-management-console - /enterprise/admin/installation/accessing-the-management-console - /enterprise/admin/configuration/accessing-the-management-console - /admin/configuration/accessing-the-management-console diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md index 2e8a16c345..2c3a6f3bb8 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/command-line-utilities.md @@ -2,8 +2,8 @@ title: Command-line utilities intro: '{% data variables.product.prodname_ghe_server %} includes a variety of utilities to help resolve particular problems or perform specific tasks.' redirect_from: - - /enterprise/admin/articles/viewing-all-services/ - - /enterprise/admin/articles/command-line-utilities/ + - /enterprise/admin/articles/viewing-all-services + - /enterprise/admin/articles/command-line-utilities - /enterprise/admin/installation/command-line-utilities - /enterprise/admin/configuration/command-line-utilities - /admin/configuration/command-line-utilities diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md index 3b90a9cf47..7a347ea3ce 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-backups-on-your-appliance.md @@ -2,15 +2,15 @@ title: Configuring backups on your appliance shortTitle: Configuring backups redirect_from: - - /enterprise/admin/categories/backups-and-restores/ - - /enterprise/admin/articles/backup-and-recovery/ - - /enterprise/admin/articles/backing-up-github-enterprise/ - - /enterprise/admin/articles/restoring-github-enterprise/ - - /enterprise/admin/articles/backing-up-repository-data/ - - /enterprise/admin/articles/restoring-enterprise-data/ - - /enterprise/admin/articles/restoring-repository-data/ - - /enterprise/admin/articles/backing-up-enterprise-data/ - - /enterprise/admin/guides/installation/backups-and-disaster-recovery/ + - /enterprise/admin/categories/backups-and-restores + - /enterprise/admin/articles/backup-and-recovery + - /enterprise/admin/articles/backing-up-github-enterprise + - /enterprise/admin/articles/restoring-github-enterprise + - /enterprise/admin/articles/backing-up-repository-data + - /enterprise/admin/articles/restoring-enterprise-data + - /enterprise/admin/articles/restoring-repository-data + - /enterprise/admin/articles/backing-up-enterprise-data + - /enterprise/admin/guides/installation/backups-and-disaster-recovery - /enterprise/admin/installation/configuring-backups-on-your-appliance - /enterprise/admin/configuration/configuring-backups-on-your-appliance - /admin/configuration/configuring-backups-on-your-appliance diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md index 908386931e..e0987ad337 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-email-for-notifications.md @@ -2,10 +2,10 @@ title: Configuring email for notifications intro: 'To make it easy for users to respond quickly to activity on {% data variables.product.product_name %}, you can configure {% data variables.product.product_location %} to send email notifications for issue, pull request, and commit comments.' redirect_from: - - /enterprise/admin/guides/installation/email-configuration/ - - /enterprise/admin/articles/configuring-email/ - - /enterprise/admin/articles/troubleshooting-email/ - - /enterprise/admin/articles/email-configuration-and-troubleshooting/ + - /enterprise/admin/guides/installation/email-configuration + - /enterprise/admin/articles/configuring-email + - /enterprise/admin/articles/troubleshooting-email + - /enterprise/admin/articles/email-configuration-and-troubleshooting - /enterprise/admin/user-management/configuring-email-for-notifications - /admin/configuration/configuring-email-for-notifications versions: diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md index d5d41ee13a..d341653ffe 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md @@ -2,12 +2,12 @@ title: Configuring GitHub Pages for your enterprise intro: 'You can enable or disable {% data variables.product.prodname_pages %} for your enterprise{% ifversion ghes %} and choose whether to make sites publicly accessible{% endif %}.' redirect_from: - - /enterprise/admin/guides/installation/disabling-github-enterprise-pages/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-pages/ + - /enterprise/admin/guides/installation/disabling-github-enterprise-pages + - /enterprise/admin/guides/installation/configuring-github-enterprise-pages - /enterprise/admin/installation/configuring-github-pages-on-your-appliance - /enterprise/admin/configuration/configuring-github-pages-on-your-appliance - /admin/configuration/configuring-github-pages-on-your-appliance - - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise/ + - /enterprise/admin/guides/installation/configuring-github-pages-for-your-enterprise - /admin/configuration/configuring-github-pages-for-your-enterprise versions: ghes: '*' diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md index 02b5678b0d..0d0af44dc0 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/configuring-time-synchronization.md @@ -1,11 +1,11 @@ --- -title: 配置时间同步 -intro: '{% data variables.product.prodname_ghe_server %} 通过连接到 NTP 服务器自动同步其时钟。 您可以设置用于同步时钟的 NTP 服务器,也可以使用默认 NTP 服务器。' +title: Configuring time synchronization +intro: '{% data variables.product.prodname_ghe_server %} automatically synchronizes its clock by connecting to NTP servers. You can set the NTP servers that are used to synchronize the clock, or you can use the default NTP servers.' redirect_from: - - /enterprise/admin/articles/adjusting-the-clock/ - - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings/ - - /enterprise/admin/articles/setting-ntp-servers/ - - /enterprise/admin/categories/time/ + - /enterprise/admin/articles/adjusting-the-clock + - /enterprise/admin/articles/configuring-time-zone-and-ntp-settings + - /enterprise/admin/articles/setting-ntp-servers + - /enterprise/admin/categories/time - /enterprise/admin/installation/configuring-time-synchronization - /enterprise/admin/configuration/configuring-time-synchronization - /admin/configuration/configuring-time-synchronization @@ -17,31 +17,33 @@ topics: - Fundamentals - Infrastructure - Networking -shortTitle: 配置时间设置 +shortTitle: Configure time settings --- - -## 更改默认 NTP 服务器 +## Changing the default NTP servers {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. 在左侧边栏中,单击 **Time**。 ![{% data variables.enterprise.management_console %} 边栏中的 Time 按钮](/assets/images/enterprise/management-console/sidebar-time.png) -3. 在“Primary NTP server”下,输入主 NTP 服务器的主机名。 在“Secondary NTP server”下,输入辅助 NTP 服务器的主机名。 ![{% data variables.enterprise.management_console %} 中用于主 NTP 服务器和辅助 NTP 服务器的字段](/assets/images/enterprise/management-console/ntp-servers.png) -4. 在页面底部,单击 **Save settings**。 ![{% data variables.enterprise.management_console %} 中的 Save settings 按钮](/assets/images/enterprise/management-console/save-settings.png) -5. 等待配置运行完毕。 +2. In the left sidebar, click **Time**. + ![The Time button in the {% data variables.enterprise.management_console %} sidebar](/assets/images/enterprise/management-console/sidebar-time.png) +3. Under "Primary NTP server," type the hostname of the primary NTP server. Under "Secondary NTP server," type the hostname of the secondary NTP server. + ![The fields for primary and secondary NTP servers in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/ntp-servers.png) +4. At the bottom of the page, click **Save settings**. + ![The Save settings button in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/save-settings.png) +5. Wait for the configuration run to complete. -## 更正较大的时间偏差 +## Correcting a large time drift -NTP 协议会持续更正较小的时间同步偏差。 您可以使用管理 shell 立即同步时间。 +The NTP protocol continuously corrects small time synchronization discrepancies. You can use the administrative shell to synchronize time immediately. {% note %} -**注意:** - - 您无法修改协调世界时 (UTC) 时区。 - - 您应阻止虚拟机监控程序设置虚拟机时钟。 更多信息请参阅虚拟化提供商提供的文档。 +**Notes:** + - You can't modify the Coordinated Universal Time (UTC) zone. + - You should prevent your hypervisor from trying to set the virtual machine's clock. For more information, see the documentation provided by the virtualization provider. {% endnote %} -- 使用 `chronyc` 命令将服务器与配置的 NTP 服务器同步。 例如: +- Use the `chronyc` command to synchronize the server with the configured NTP server. For example: ```shell $ sudo chronyc -a makestep diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md index 6d7889fdd0..8444f9199d 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md @@ -1,13 +1,13 @@ --- -title: 启用和排定维护模式 -intro: '一些标准维护程序(例如升级 {% data variables.product.product_location %} 或还原备份)要求实例进入脱机状态才能正常使用。' +title: Enabling and scheduling maintenance mode +intro: 'Some standard maintenance procedures, such as upgrading {% data variables.product.product_location %} or restoring backups, require the instance to be taken offline for normal use.' redirect_from: - - /enterprise/admin/maintenance-mode/ - - /enterprise/admin/categories/maintenance-mode/ - - /enterprise/admin/articles/maintenance-mode/ - - /enterprise/admin/articles/enabling-maintenance-mode/ - - /enterprise/admin/articles/disabling-maintenance-mode/ - - /enterprise/admin/guides/installation/maintenance-mode/ + - /enterprise/admin/maintenance-mode + - /enterprise/admin/categories/maintenance-mode + - /enterprise/admin/articles/maintenance-mode + - /enterprise/admin/articles/enabling-maintenance-mode + - /enterprise/admin/articles/disabling-maintenance-mode + - /enterprise/admin/guides/installation/maintenance-mode - /enterprise/admin/installation/enabling-and-scheduling-maintenance-mode - /enterprise/admin/configuration/enabling-and-scheduling-maintenance-mode - /admin/configuration/enabling-and-scheduling-maintenance-mode @@ -19,44 +19,47 @@ topics: - Fundamentals - Maintenance - Upgrades -shortTitle: 配置维护模式 +shortTitle: Configure maintenance mode --- +## About maintenance mode -## 关于维护模式 +Some types of operations require that you take {% data variables.product.product_location %} offline and put it into maintenance mode: +- Upgrading to a new version of {% data variables.product.prodname_ghe_server %} +- Increasing CPU, memory, or storage resources allocated to the virtual machine +- Migrating data from one virtual machine to another +- Restoring data from a {% data variables.product.prodname_enterprise_backup_utilities %} snapshot +- Troubleshooting certain types of critical application issues -某些操作类型要求您让 {% data variables.product.product_location %} 进入脱机状态并将其置于维护模式: -- 升级到新版本的 {% data variables.product.prodname_ghe_server %} -- 增加分配给虚拟机的 CPU、内存或存储资源 -- 将数据从一台虚拟机迁移到另一台虚拟机 -- 通过 {% data variables.product.prodname_enterprise_backup_utilities %} 快照还原数据 -- 排查某些类型的关键应用程序问题 +We recommend that you schedule a maintenance window for at least 30 minutes in the future to give users time to prepare. When a maintenance window is scheduled, all users will see a banner when accessing the site. -我们建议您至少将维护窗口排定在 30 分钟后,以便用户提前作好准备。 排定维护窗口后,所有用户在访问站点时都会看到横幅。 +![End user banner about scheduled maintenance](/assets/images/enterprise/maintenance/maintenance-scheduled.png) -![关于已排定维护的最终用户横幅](/assets/images/enterprise/maintenance/maintenance-scheduled.png) +When the instance is in maintenance mode, all normal HTTP and Git access is refused. Git fetch, clone, and push operations are also rejected with an error message indicating that the site is temporarily unavailable. GitHub Actions jobs will not be executed. Visiting the site in a browser results in a maintenance page. -在实例进入维护模式后,所有正常 HTTP 和 Git 访问都会遭到拒绝。 Git 提取、克隆和推送操作也会被拒绝,并显示一条错误消息,指示站点暂时不可用。 GitHub Actions 作业不会执行。 在浏览器中访问该站点会显示维护页面。 +![The maintenance mode splash screen](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) -![维护模式启动屏幕](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) - -## 立即启用维护模式或排定在未来的某个时间进行维护 +## Enabling maintenance mode immediately or scheduling a maintenance window for a later time {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -2. 在 {% data variables.enterprise.management_console %} 顶部,单击 **Maintenance**。 ![Maintenance 选项卡](/assets/images/enterprise/management-console/maintenance-tab.png) -3. 在“Enable and schedule”下,决定立即启用维护模式还是排定在未来的某个时间进行维护。 - - 要立即启用维护模式,请使用下拉菜单,然后单击 **now**。 ![包含已选择立即启用维护模式的选项的下拉菜单](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) - - 要排定在未来的某个时间进行维护,请使用下拉菜单,然后单击开始时间。 ![包含已选择排定在两小时后进行维护的选项的下拉菜单](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) -4. 选择 **Enable maintenance mode**。 ![启用或排定维护模式的复选框](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) +2. At the top of the {% data variables.enterprise.management_console %}, click **Maintenance**. + ![Maintenance tab](/assets/images/enterprise/management-console/maintenance-tab.png) +3. Under "Enable and schedule", decide whether to enable maintenance mode immediately or to schedule a maintenance window for a future time. + - To enable maintenance mode immediately, use the drop-down menu and click **now**. + ![Drop-down menu with the option to enable maintenance mode now selected](/assets/images/enterprise/maintenance/enable-maintenance-mode-now.png) + - To schedule a maintenance window for a future time, use the drop-down menu and click a start time. + ![Drop-down menu with the option to schedule a maintenance window in two hours selected](/assets/images/enterprise/maintenance/schedule-maintenance-mode-two-hours.png) +4. Select **Enable maintenance mode**. + ![Checkbox for enabling or scheduling maintenance mode](/assets/images/enterprise/maintenance/enable-maintenance-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} -## 通过 {% data variables.product.prodname_enterprise_api %} 排定维护模式 +## Scheduling maintenance mode with {% data variables.product.prodname_enterprise_api %} -您可以通过 {% data variables.product.prodname_enterprise_api %} 排定在其他时间或日期进行维护。 更多信息请参阅“[管理控制台](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)”。 +You can schedule maintenance for different times or dates with {% data variables.product.prodname_enterprise_api %}. For more information, see "[Management Console](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#enable-or-disable-maintenance-mode)." -## 为集群中的所有节点启用或禁用维护模式 +## Enabling or disabling maintenance mode for all nodes in a cluster -您可以通过 `ghe-cluster-maintenance` 实用程序为集群中的每个节点设置或取消设置维护模式。 +With the `ghe-cluster-maintenance` utility, you can set or unset maintenance mode for every node in a cluster. ```shell $ ghe-cluster-maintenance -h 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 4cb2e7e45e..a4343fa9a8 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 @@ -1,10 +1,10 @@ --- -title: 启用私有模式 -intro: '在私有模式下,{% data variables.product.prodname_ghe_server %} 要求每个用户必须登录才能访问安装。' +title: Enabling private mode +intro: 'In private mode, {% data variables.product.prodname_ghe_server %} requires every user to sign in to access the installation.' redirect_from: - - /enterprise/admin/articles/private-mode/ - - /enterprise/admin/guides/installation/security/ - - /enterprise/admin/guides/installation/securing-your-instance/ + - /enterprise/admin/articles/private-mode + - /enterprise/admin/guides/installation/security + - /enterprise/admin/guides/installation/securing-your-instance - /enterprise/admin/installation/enabling-private-mode - /enterprise/admin/configuration/enabling-private-mode - /admin/configuration/enabling-private-mode @@ -21,15 +21,15 @@ topics: - Privacy - Security --- - -如果 {% data variables.product.product_location %} 可通过 Internet 公开访问,您必须启用私有模式。 在私有模式下,用户不能通过 `git://` 匿名克隆仓库。 如果还启用了内置身份验证,管理员必须邀请新用户在实例上创建帐户。 更多信息请参阅“[使用内置身份验证](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)”。 +You must enable private mode if {% data variables.product.product_location %} is publicly accessible over the Internet. In private mode, users cannot anonymously clone repositories over `git://`. If built-in authentication is also enabled, an administrator must invite new users to create an account on the instance. For more information, see "[Using built-in authentication](/enterprise/{{ currentVersion }}/admin/guides/user-management/using-built-in-authentication)." {% data reusables.enterprise_installation.image-urls-viewable-warning %} -启用私有模式后,您可以允许未验证的 Git 操作(以及对 {% data variables.product.product_location %} 具有网络访问权限的任何人)读取已启用匿名 Git 读取权限的实例上的公共仓库代码。 更多信息请参阅“[允许管理员启用对公共仓库的匿名 Git 读取权限](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)”。 +With private mode enabled, you can allow unauthenticated Git operations (and anyone with network access to {% data variables.product.product_location %}) to read a public repository's code on your instance with anonymous Git read access enabled. For more information, see "[Allowing admins to enable anonymous Git read access to public repositories](/enterprise/{{ currentVersion }}/admin/guides/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories)." {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.privacy %} -4. 选择 **Private mode**。 ![启用私有模式的复选框](/assets/images/enterprise/management-console/private-mode-checkbox.png) +4. Select **Private mode**. + ![Checkbox for enabling private mode](/assets/images/enterprise/management-console/private-mode-checkbox.png) {% data reusables.enterprise_management_console.save-settings %} diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/index.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/index.md index aa921c6d45..ff4c39c4da 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/index.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/index.md @@ -2,10 +2,10 @@ title: Configuring your enterprise intro: 'After {% data variables.product.product_name %} is up and running, you can configure your enterprise to suit your organization''s needs.' redirect_from: - - /enterprise/admin/guides/installation/basic-configuration/ - - /enterprise/admin/guides/installation/administrative-tools/ - - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts/ - - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/basic-configuration + - /enterprise/admin/guides/installation/administrative-tools + - /enterprise/admin/articles/restricting-ssh-access-to-specific-hosts + - /enterprise/admin/guides/installation/configuring-the-github-enterprise-appliance - /enterprise/admin/installation/configuring-the-github-enterprise-server-appliance - /enterprise/admin/configuration/configuring-your-enterprise versions: diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md index 610a1878cc..36e474e3e2 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md @@ -2,7 +2,7 @@ title: Site admin dashboard intro: '{% data reusables.enterprise_site_admin_settings.about-the-site-admin-dashboard %}' redirect_from: - - /enterprise/admin/articles/site-admin-dashboard/ + - /enterprise/admin/articles/site-admin-dashboard - /enterprise/admin/installation/site-admin-dashboard - /enterprise/admin/configuration/site-admin-dashboard - /admin/configuration/site-admin-dashboard diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md index e3398f3732..40a22785f7 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/troubleshooting-ssl-errors.md @@ -1,9 +1,9 @@ --- -title: 排查 SSL 错误 -intro: 如果您的设备遇到 SSL 问题,可以采取相应措施加以解决。 +title: Troubleshooting SSL errors +intro: 'If you run into SSL issues with your appliance, you can take actions to resolve them.' redirect_from: - - /enterprise/admin/articles/troubleshooting-ssl-errors/ - - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration/ + - /enterprise/admin/articles/troubleshooting-ssl-errors + - /enterprise/admin/categories/dns-ssl-and-subdomain-configuration - /enterprise/admin/installation/troubleshooting-ssl-errors - /enterprise/admin/configuration/troubleshooting-ssl-errors - /admin/configuration/troubleshooting-ssl-errors @@ -17,66 +17,65 @@ topics: - Networking - Security - Troubleshooting -shortTitle: 排查 SSL 错误 +shortTitle: Troubleshoot SSL errors --- +## Removing the passphrase from your key file -## 将密码从密钥文件中移除 +If you have a Linux machine with OpenSSL installed, you can remove your passphrase. -如果您的 Linux 机器上安装了 OpenSSL,可以移除密码。 - -1. 重命名原始密钥文件。 +1. Rename your original key file. ```shell $ mv yourdomain.key yourdomain.key.orig ``` -2. 生成不含密码的新密钥。 +2. Generate a new key without a passphrase. ```shell $ openssl rsa -in yourdomain.key.orig -out yourdomain.key ``` -运行此命令时系统会提示您输入密钥的密码。 +You'll be prompted for the key's passphrase when you run this command. -关于 OpenSSL 的更多信息,请参阅 [OpenSSL 的文档](https://www.openssl.org/docs/)。 +For more information about OpenSSL, see [OpenSSL's documentation](https://www.openssl.org/docs/). -## 将 SSL 证书或密钥转换为 PEM 格式 +## Converting your SSL certificate or key into PEM format -如果安装了 OpenSSL,您可以使用 `openssl` 命令将密钥转换为 PEM 格式。 例如,您可以将密钥从 DER 格式转换为 PEM 格式。 +If you have OpenSSL installed, you can convert your key into PEM format by using the `openssl` command. For example, you can convert a key from DER format into PEM format. ```shell $ openssl rsa -in yourdomain.der -inform DER -out yourdomain.key -outform PEM ``` -否则,可以使用 SSL Converter 工具将证书转换为 PEM 格式。 更多信息请参阅 [SSL Converter 工具文档](https://www.sslshopper.com/ssl-converter.html)。 +Otherwise, you can use the SSL Converter tool to convert your certificate into the PEM format. For more information, see the [SSL Converter tool's documentation](https://www.sslshopper.com/ssl-converter.html). -## 上传密钥后安装无响应 +## Unresponsive installation after uploading a key -如果上传 SSL 密钥后 {% data variables.product.product_location %} 无响应,请[联系 {% data variables.product.prodname_enterprise %} Support](https://enterprise.github.com/support) 并提供具体的详细信息,并附上您的 SSL 证书的副本。 +If {% data variables.product.product_location %} is unresponsive after uploading an SSL key, please [contact {% data variables.product.prodname_enterprise %} Support](https://enterprise.github.com/support) with specific details, including a copy of your SSL certificate. -## 证书有效性错误 +## Certificate validity errors -如果 Web 浏览器和命令行 Git 等客户端无法验证 SSL 证书的有效性,则会显示错误消息。 这种情况通常发生在自签名证书以及由不被客户端承认的中间根证书颁发的“链式根”证书上。 +Clients such as web browsers and command-line Git will display an error message if they cannot verify the validity of an SSL certificate. This often occurs with self-signed certificates as well as "chained root" certificates issued from an intermediate root certificate that is not recognized by the client. -如果您要使用由证书颁发机构 (CA) 签名的证书,那么您上传到 {% data variables.product.prodname_ghe_server %} 的证书文件必须包含具有该 CA 的根证书的证书链。 要创建此类文件,请将整个证书链(“或证书包”)连接到证书末端,确保包含主机名的主要证书在前。 在大多数系统中,您可以使用与下列命令相似的命令来执行此操作: +If you are using a certificate signed by a certificate authority (CA), the certificate file that you upload to {% data variables.product.prodname_ghe_server %} must include a certificate chain with that CA's root certificate. To create such a file, concatenate your entire certificate chain (or "certificate bundle") onto the end of your certificate, ensuring that the principal certificate with your hostname comes first. On most systems you can do this with a command similar to: ```shell $ cat yourdomain.com.crt bundle-certificates.crt > yourdomain.combined.crt ``` -您可以从证书颁发机构或 SSL 供应商处下载证书包(例如 `bundle-certificates.crt`)。 +You should be able to download a certificate bundle (for example, `bundle-certificates.crt`) from your certificate authority or SSL vendor. -## 安装自签名或不受信任的证书颁发机构 (CA) 根证书 +## Installing self-signed or untrusted certificate authority (CA) root certificates -如果您的 {% data variables.product.prodname_ghe_server %} 设备与网络中使用自签名或不受信证书的其他机器进行交互,您需要将签名 CA 的根证书导入到系统范围的证书库中,以通过 HTTPS 访问这些系统。 +If your {% data variables.product.prodname_ghe_server %} appliance interacts with other machines on your network that use a self-signed or untrusted certificate, you will need to import the signing CA's root certificate into the system-wide certificate store in order to access those systems over HTTPS. -1. 从本地证书颁发机构获取 CA 的根证书并确保其为 PEM 格式。 -2. 以“admin”用户身份在端口 122 上通过 SSH 将文件复制到您的 {% data variables.product.prodname_ghe_server %} 设备。 +1. Obtain the CA's root certificate from your local certificate authority and ensure it is in PEM format. +2. Copy the file to your {% data variables.product.prodname_ghe_server %} appliance over SSH as the "admin" user on port 122. ```shell $ scp -P 122 rootCA.crt admin@HOSTNAME:/home/admin ``` -3. 以“admin”用户身份在端口 122 上通过 SSH 连接到 {% data variables.product.prodname_ghe_server %} 管理 shell。 +3. Connect to the {% data variables.product.prodname_ghe_server %} administrative shell over SSH as the "admin" user on port 122. ```shell $ ssh -p 122 admin@HOSTNAME ``` -4. 将证书导入到系统范围的证书库中。 +4. Import the certificate into the system-wide certificate store. ```shell $ ghe-ssl-ca-certificate-install -c rootCA.crt ``` diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md index 5a1202b892..ac01707283 100644 --- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md +++ b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/connecting-your-enterprise-account-to-github-enterprise-cloud.md @@ -3,9 +3,9 @@ title: Connecting your enterprise account to GitHub Enterprise Cloud shortTitle: Connect enterprise accounts intro: 'After you enable {% data variables.product.prodname_github_connect %}, you can share specific features and workflows between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-to-github-com - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-to-github-com - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom/ + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-to-githubcom - /enterprise/admin/installation/connecting-github-enterprise-server-to-github-enterprise-cloud - /enterprise/admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud - /admin/configuration/connecting-github-enterprise-server-to-github-enterprise-cloud @@ -34,15 +34,19 @@ To configure a connection, your proxy configuration must allow connectivity to ` After enabling {% data variables.product.prodname_github_connect %}, you will be able to enable features such as unified search and unified contributions. For more information about all of the features available, see "[Managing connections between your enterprise accounts](/admin/configuration/managing-connections-between-your-enterprise-accounts)." -When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: +When you connect {% data variables.product.product_location %} to {% data variables.product.prodname_ghe_cloud %}, or enable {% data variables.product.prodname_github_connect %} features, a record on {% data variables.product.prodname_dotcom_the_website %} stores information about the connection: {% ifversion ghes %} - The public key portion of your {% data variables.product.prodname_ghe_server %} license - A hash of your {% data variables.product.prodname_ghe_server %} license - The customer name on your {% data variables.product.prodname_ghe_server %} license - The version of {% data variables.product.product_location_enterprise %}{% endif %} -- The hostname of your {% data variables.product.product_name %} instance +- The hostname of {% data variables.product.product_location %} - The organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %} that's connected to {% data variables.product.product_location %} - The authentication token that's used by {% data variables.product.product_location %} to make requests to {% data variables.product.prodname_dotcom_the_website %} +- If Transport Layer Security (TLS) is enabled and configured on {% data variables.product.product_location %}{% ifversion ghes %} +- The {% data variables.product.prodname_github_connect %} features that are enabled on {% data variables.product.product_location %}, and the date and time of enablement{% endif %} + +{% data variables.product.prodname_github_connect %} syncs the above connection data between {% data variables.product.product_location %} and {% data variables.product.prodname_ghe_cloud %} weekly, from the day and approximate time that {% data variables.product.prodname_github_connect %} was enabled. Enabling {% data variables.product.prodname_github_connect %} also creates a {% data variables.product.prodname_github_app %} owned by your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account. {% data variables.product.product_name %} uses the {% data variables.product.prodname_github_app %}'s credentials to make requests to {% data variables.product.prodname_dotcom_the_website %}. {% ifversion ghes %} diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md index 2691561e8b..cc41266506 100644 --- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md +++ b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-the-dependency-graph-and-dependabot-alerts-on-your-enterprise-account.md @@ -70,19 +70,23 @@ You can enable the dependency graph via the {% data variables.enterprise.managem {% endif %} {% data reusables.enterprise_site_admin_settings.sign-in %} 1. In the administrative shell, enable the dependency graph on {% data variables.product.product_location %}: - ``` shell - $ {% ifversion ghes > 3.1 %}ghe-config app.dependency-graph.enabled true{% else %}ghe-config app.github.dependency-graph-enabled true{% endif %} + {% ifversion ghes > 3.1 %}```shell + ghe-config app.dependency-graph.enabled true ``` + {% else %}```shell + ghe-config app.github.dependency-graph-enabled true + ghe-config app.github.vulnerability-alerting-and-settings-enabled true + ```{% endif %} {% note %} **Note**: For more information about enabling access to the administrative shell via SSH, see "[Accessing the administrative shell (SSH)](/enterprise/{{ currentVersion }}/admin/configuration/accessing-the-administrative-shell-ssh)." {% endnote %} -1. Apply the configuration. +2. Apply the configuration. ```shell $ ghe-config-apply ``` -1. Return to {% data variables.product.prodname_ghe_server %}. +3. Return to {% data variables.product.prodname_ghe_server %}. {% endif %} ### Enabling {% data variables.product.prodname_dependabot_alerts %} diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md index 22ccd67d2e..dd4e7113c3 100644 --- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md +++ b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-contributions-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified contributions between your enterprise account and GitHub shortTitle: Enable unified contributions intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow {% data variables.product.prodname_ghe_cloud %} members to highlight their work on {% data variables.product.product_name %} by sending the contribution counts to their {% data variables.product.prodname_dotcom_the_website %} profiles.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-contributions-between-github-enterprise-server-and-githubcom diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md index e857470482..0235337178 100644 --- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md +++ b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/enabling-unified-search-between-your-enterprise-account-and-githubcom.md @@ -3,9 +3,9 @@ title: Enabling unified search between your enterprise account and GitHub.com shortTitle: Enable unified search intro: 'After enabling {% data variables.product.prodname_github_connect %}, you can allow search of {% data variables.product.prodname_dotcom_the_website %} for members of your enterprise on {% data variables.product.product_name %}.' redirect_from: - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/installation/enabling-unified-search-between-github-enterprise-server-and-githubcom - /enterprise/admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom - /admin/configuration/enabling-unified-search-between-github-enterprise-server-and-githubcom diff --git a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md index c5a822c47a..f46553f059 100644 --- a/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md +++ b/translations/zh-CN/content/admin/configuration/managing-connections-between-your-enterprise-accounts/index.md @@ -3,9 +3,9 @@ title: Managing connections between your enterprise accounts intro: 'With {% data variables.product.prodname_github_connect %}, you can share certain features and data between {% data variables.product.product_location %} and your {% data variables.product.prodname_ghe_cloud %} organization or enterprise account on {% data variables.product.prodname_dotcom_the_website %}.' redirect_from: - /enterprise/admin/developer-workflow/connecting-github-enterprise-to-github-com - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com/ - - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com/ - - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom/ + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-and-github-com + - /enterprise/admin/guides/developer-workflow/connecting-github-enterprise-server-and-github-com + - /enterprise/admin/developer-workflow/connecting-github-enterprise-server-and-githubcom - /enterprise/admin/installation/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /enterprise/admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud - /admin/configuration/managing-connections-between-github-enterprise-server-and-github-enterprise-cloud diff --git a/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/about-clustering.md b/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/about-clustering.md index fcb03b9e1f..77aa3f9b25 100644 --- a/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/about-clustering.md +++ b/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/about-clustering.md @@ -1,10 +1,10 @@ --- -title: 关于集群 -intro: '{% data variables.product.prodname_ghe_server %} 集群允许组成 {% data variables.product.prodname_ghe_server %} 的服务跨多个节点进行扩展。' +title: About clustering +intro: '{% data variables.product.prodname_ghe_server %} clustering allows services that make up {% data variables.product.prodname_ghe_server %} to be scaled out across multiple nodes.' redirect_from: - /enterprise/admin/clustering/overview - /enterprise/admin/clustering/about-clustering - - /enterprise/admin/clustering/clustering-overview/ + - /enterprise/admin/clustering/clustering-overview - /enterprise/admin/enterprise-management/about-clustering - /admin/enterprise-management/about-clustering versions: @@ -14,23 +14,22 @@ topics: - Clustering - Enterprise --- +## Clustering architecture -## 集群架构 +{% data variables.product.prodname_ghe_server %} is comprised of a set of services. In a cluster, these services run across multiple nodes and requests are load balanced between them. Changes are automatically stored with redundant copies on separate nodes. Most of the services are equal peers with other instances of the same service. The exceptions to this are the `mysql-server` and `redis-server` services. These operate with a single _primary_ node with one or more _replica_ nodes. -{% data variables.product.prodname_ghe_server %} 由一组服务组成。 在集群中,这些服务跨多个节点运行,请求在它们之间进行负载均衡。 更改会与冗余副本一起自动存储在到单独的节点上。 大多数服务与相同服务的其他实例是对等的。 这种情况的例外是 `mysql-server` 和 `redis-server` 服务。 它们使用具有一个或多个_副本_节点的单个_主_节点来操作。 +Learn more about [services required for clustering](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering). -详细了解[群集所需的服务](/enterprise/{{ currentVersion }}/admin/enterprise-management/about-cluster-nodes#services-required-for-clustering)。 +## Is clustering right for my organization? -## 集群是否适合我的组织? +{% data reusables.enterprise_clustering.clustering-scalability %} However, setting up a redundant and scalable cluster can be complex and requires careful planning. This additional complexity will need to be planned for during installation, disaster recovery scenarios, and upgrades. -{% data reusables.enterprise_clustering.clustering-scalability %} 但是,设置冗余和可扩展的集群可能很复杂,需要仔细规划。 在安装、灾难恢复场景和升级期间,需要计划这种额外的复杂性。 +{% data variables.product.prodname_ghe_server %} requires low latency between nodes and is not intended for redundancy across geographic locations. -{% data variables.product.prodname_ghe_server %} 要求节点之间保持较低的延迟,不适用于跨地理位置的冗余。 - -集群提供了冗余功能,但不适用于替换高可用性配置。 更多信息请参阅[高可用性配置](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability)。 主设备/辅助设备故障切换配置远比集群简单,可以满足许多组织的需求。 更多信息请参阅[集群与高可用性之间的差异](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/)。 +Clustering provides redundancy, but it is not intended to replace a High Availability configuration. For more information, see [High Availability configuration](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-github-enterprise-server-for-high-availability). A primary/secondary failover configuration is far simpler than clustering and will serve the needs of many organizations. For more information, see [Differences between Clustering and High Availability](/enterprise/{{ currentVersion }}/admin/guides/clustering/differences-between-clustering-and-high-availability-ha/). {% data reusables.package_registry.packages-cluster-support %} -## 如何获得集群? +## How do I get access to clustering? -集群针对特定扩展情况而设计,并不一定适用于每个组织。 如果想要考虑集群,请联系您的专业代表或 {% data variables.contact.contact_enterprise_sales %}。 +Clustering is designed for specific scaling situations and is not intended for every organization. If clustering is something you'd like to consider, please contact your dedicated representative or {% data variables.contact.contact_enterprise_sales %}. diff --git a/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/index.md b/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/index.md index c50eca3859..3738fe80e6 100644 --- a/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/index.md +++ b/translations/zh-CN/content/admin/enterprise-management/configuring-clustering/index.md @@ -1,10 +1,10 @@ --- -title: 配置群集 -intro: 了解具有高可用性的集群和差异。 +title: Configuring clustering +intro: Learn about clustering and differences with high availability. redirect_from: - /enterprise/admin/clustering/setting-up-the-cluster-instances - /enterprise/admin/clustering/managing-a-github-enterprise-server-cluster - - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster/ + - /enterprise/admin/guides/clustering/managing-a-github-enterprise-cluster - /enterprise/admin/enterprise-management/configuring-clustering versions: ghes: '*' diff --git a/translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/index.md b/translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/index.md index ba5069eaee..f2287f14df 100644 --- a/translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/index.md +++ b/translations/zh-CN/content/admin/enterprise-management/configuring-high-availability/index.md @@ -1,12 +1,12 @@ --- -title: 配置高可用性 +title: Configuring high availability redirect_from: - /enterprise/admin/installation/configuring-github-enterprise-server-for-high-availability - - /enterprise/admin/guides/installation/high-availability-cluster-configuration/ - - /enterprise/admin/guides/installation/high-availability-configuration/ - - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability/ + - /enterprise/admin/guides/installation/high-availability-cluster-configuration + - /enterprise/admin/guides/installation/high-availability-configuration + - /enterprise/admin/guides/installation/configuring-github-enterprise-for-high-availability - /enterprise/admin/enterprise-management/configuring-high-availability -intro: '{% data variables.product.prodname_ghe_server %} 支持高可用性操作模式,此模式设计为可在发生影响主设备的硬件故障或重大网络中断的情况下最大限度地减少服务中断。' +intro: '{% data variables.product.prodname_ghe_server %} supports a high availability mode of operation designed to minimize service disruption in the event of hardware failure or major network outage affecting the primary appliance.' versions: ghes: '*' topics: @@ -18,6 +18,6 @@ children: - /recovering-a-high-availability-configuration - /removing-a-high-availability-replica - /about-geo-replication -shortTitle: 配置高可用性 +shortTitle: Configure high availability --- diff --git a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md index dd17130956..8d39fdb11a 100644 --- a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md +++ b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/configuring-collectd.md @@ -1,9 +1,9 @@ --- -title: 配置 collectd -intro: '{% data variables.product.prodname_enterprise %} 可以通过“collectd”收集数据并将数据发送到外部“collectd”服务器。 除了其他指标外,我们还会收集标准数据集,例如 CPU 利用率、内存与磁盘使用量、网络接口流量与错误,以及 VM 的总负荷。' +title: Configuring collectd +intro: '{% data variables.product.prodname_enterprise %} can gather data with `collectd` and send it to an external `collectd` server. Among other metrics, we gather a standard set of data such as CPU utilization, memory and disk consumption, network interface traffic and errors, and the VM''s overall load.' redirect_from: - /enterprise/admin/installation/configuring-collectd - - /enterprise/admin/articles/configuring-collectd/ + - /enterprise/admin/articles/configuring-collectd - /enterprise/admin/enterprise-management/configuring-collectd - /admin/enterprise-management/configuring-collectd versions: @@ -16,15 +16,14 @@ topics: - Monitoring - Performance --- +## Set up an external `collectd` server -## 设置外部 `collectd` 服务器 +If you haven't already set up an external `collectd` server, you will need to do so before enabling `collectd` forwarding on {% data variables.product.product_location %}. Your `collectd` server must be running `collectd` version 5.x or higher. -如果您尚未设置外部 `collectd` 服务器,则需要首先进行设置,然后才能在 {% data variables.product.product_location %} 上启用 `collectd` 转发。 您的 `collectd` 服务器运行的 `collectd` 版本不得低于 5.x。 +1. Log into your `collectd` server. +2. Create or edit the `collectd` configuration file to load the network plugin and populate the server and port directives with the proper values. On most distributions, this is located at `/etc/collectd/collectd.conf` -1. 登录 `collectd` 服务器。 -2. 创建或编辑 `collectd` 配置文件,以加载网络插件并为服务器和端口指令填入适当的值。 在大多数分发中,此文件位于 `/etc/collectd/collectd.conf` 中 - -用于运行 `collectd` 服务器的示例 *collectd.conf*: +An example *collectd.conf* to run a `collectd` server: LoadPlugin network ... @@ -33,34 +32,34 @@ topics: Listen "0.0.0.0" "25826" </Plugin> -## 在 {% data variables.product.prodname_enterprise %} 上启用 collectd 转发 +## Enable collectd forwarding on {% data variables.product.prodname_enterprise %} -默认情况下,`collectd` 转发在 {% data variables.product.prodname_enterprise %} 上处于禁用状态。 请按照以下操作步骤启用并配置 `collectd` 转发: +By default, `collectd` forwarding is disabled on {% data variables.product.prodname_enterprise %}. Follow the steps below to enable and configure `collectd` forwarding: {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} -1. 在日志转发设置下,选择 **Enable collectd forwarding**。 -1. 在 **Server address** 字段中,输入要将 {% data variables.product.prodname_enterprise %} 设备统计信息转发到的 `collectd` 服务器的地址。 -1. 在 **Port** 字段中,输入用于连接到 `collectd` 服务器的端口。 (默认为 25826) -1. 在 **Cryptographic setup** 下拉菜单中,选择与 `collectd` 服务器通信的安全等级。 (无、签名数据包或加密数据包。) +1. Below the log forwarding settings, select **Enable collectd forwarding**. +1. In the **Server address** field, type the address of the `collectd` server to which you'd like to forward {% data variables.product.prodname_enterprise %} appliance statistics. +1. In the **Port** field, type the port used to connect to the `collectd` server. (Defaults to 25826) +1. In the **Cryptographic setup** dropdown menu, select the security level of communications with the `collectd` server. (None, signed packets, or encrypted packets.) {% data reusables.enterprise_management_console.save-settings %} -## 使用 `ghe-export-graphs` 导出 collectd 数据 +## Exporting collectd data with `ghe-export-graphs` -命令行工具 `ghe-export-graphs` 将导出 `collectd` 存储在 RRD 数据库中的数据。 此命令会将数据转换为 XML 格式并导出到一个 tarball (.tgz) 中。 +The command-line tool `ghe-export-graphs` will export the data that `collectd` stores in RRD databases. This command turns the data into XML and exports it into a single tarball (.tgz). -此文件的主要用途是为 {% data variables.contact.contact_ent_support %} 团队提供关于 VM 性能的数据(无需下载整个支持包), 不应包含在常规备份导出范围中,也没有对应的导入文件。 如果您联系 {% data variables.contact.contact_ent_support %},我们可能会要求您提供此数据,以便协助故障排查。 +Its primary use is to provide the {% data variables.contact.contact_ent_support %} team with data about a VM's performance, without the need for downloading a full Support Bundle. It shouldn't be included in your regular backup exports and there is no import counterpart. If you contact {% data variables.contact.contact_ent_support %}, we may ask for this data to assist with troubleshooting. -### 用法 +### Usage ```shell ssh -p 122 admin@[hostname] -- 'ghe-export-graphs' && scp -P 122 admin@[hostname]:~/graphs.tar.gz . ``` -## 疑难解答 +## Troubleshooting -### 中央 collectd 服务器未收到数据 +### Central collectd server receives no data -{% data variables.product.prodname_enterprise %} 随附 `collectd` 版本 5.x。 `collectd` 5.x 不能后向兼容 4.x 发行版系列。 中央 `collectd` 服务器的版本至少需要是 5.x 才能接受从 {% data variables.product.product_location %} 发送的数据。 +{% data variables.product.prodname_enterprise %} ships with `collectd` version 5.x. `collectd` 5.x is not backwards compatible with the 4.x release series. Your central `collectd` server needs to be at least version 5.x to accept data sent from {% data variables.product.product_location %}. -要获取其他问题的帮助,请联系 {% data variables.contact.contact_ent_support %}。 +For help with further questions or issues, contact {% data variables.contact.contact_ent_support %}. diff --git a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/index.md b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/index.md index 0006778052..bb04a0812b 100644 --- a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/index.md +++ b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/index.md @@ -1,9 +1,9 @@ --- -title: 监控设备 -intro: '随着 {% data variables.product.product_location %} 使用量的逐渐增加,系统资源(例如 CPU、内存和存储空间)的利用率也会提高。 您可以配置监视和警报来提示潜在问题,以免这些问题对应用程序性能或可用性造成严重的负面影响。' +title: Monitoring your appliance +intro: 'As use of {% data variables.product.product_location %} increases over time, the utilization of system resources, like CPU, memory, and storage will also increase. You can configure monitoring and alerting so that you''re aware of potential issues before they become critical enough to negatively impact application performance or availability.' redirect_from: - - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting/ - - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance/ + - /enterprise/admin/guides/installation/system-resource-monitoring-and-alerting + - /enterprise/admin/guides/installation/monitoring-your-github-enterprise-appliance - /enterprise/admin/installation/monitoring-your-github-enterprise-server-appliance - /enterprise/admin/enterprise-management/monitoring-your-appliance versions: diff --git a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md index fb69269fb7..83d8dda6b5 100644 --- a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md +++ b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/monitoring-using-snmp.md @@ -1,9 +1,9 @@ --- -title: 使用 SNMP 进行监视 -intro: '{% data variables.product.prodname_enterprise %} 通过 SNMP 提供关于磁盘使用情况、CPU 利用率和内存使用情况等方面的数据。' +title: Monitoring using SNMP +intro: '{% data variables.product.prodname_enterprise %} provides data on disk usage, CPU utilization, memory usage, and more over SNMP.' redirect_from: - /enterprise/admin/installation/monitoring-using-snmp - - /enterprise/admin/articles/monitoring-using-snmp/ + - /enterprise/admin/articles/monitoring-using-snmp - /enterprise/admin/enterprise-management/monitoring-using-snmp - /admin/enterprise-management/monitoring-using-snmp versions: @@ -15,60 +15,66 @@ topics: - Monitoring - Performance --- +SNMP is a common standard for monitoring devices over a network. We strongly recommend enabling SNMP so you can monitor the health of {% data variables.product.product_location %} and know when to add more memory, storage, or processor power to the host machine. -SNMP 是一种用于通过网络监视设备的公共标准。 强烈建议启用 SNMP,以便监视 {% data variables.product.product_location %} 的健康状态并了解何时向主机增加更多内存、存储空间或处理器能力。 +{% data variables.product.prodname_enterprise %} has a standard SNMP installation, so you can take advantage of the [many plugins](http://www.monitoring-plugins.org/doc/man/check_snmp.html) available for Nagios or for any other monitoring system. -{% data variables.product.prodname_enterprise %} 采用标准 SNMP 安装,因此您可以充分利用 Nagios 或其他任何监视系统可用的[多种插件](http://www.monitoring-plugins.org/doc/man/check_snmp.html)。 - -## 配置 SNMP v2c +## Configuring SNMP v2c {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. 在 **Community string** 字段中,输入新的社区字符串。 如果留空,此字段将默认为 `public`。 ![添加社区字符串的字段](/assets/images/enterprise/management-console/community-string.png) +4. In the **Community string** field, enter a new community string. If left blank, this defaults to `public`. +![Field to add the community string](/assets/images/enterprise/management-console/community-string.png) {% data reusables.enterprise_management_console.save-settings %} -5. 要测试 SNMP 配置,请在网络中支持 SNMP 的单独工作站上运行以下命令: +5. Test your SNMP configuration by running the following command on a separate workstation with SNMP support in your network: ```shell # community-string is your community string # hostname is the IP or domain of your Enterprise instance $ snmpget -v 2c -c <em>community-string</em> -O e <em>hostname</em> hrSystemDate.0 ``` -这应该返回 {% data variables.product.product_location %} 主机上的系统时间。 +This should return the system time on {% data variables.product.product_location %} host. -## 基于用户的安全性 +## User-based security -如果您启用 SNMP v3,则可以通过用户安全模型 (USM) 充分利用提升的基于用户的安全性。 对于每个唯一的用户,您可以指定一个安全等级: -- `noAuthNoPriv`: 此安全等级不提供任何身份验证和隐私保护。 -- `authNoPriv`: 此安全等级提供身份验证,但不提供隐私保护。 要查询设备,您需要用户名和密码(长度必须至少为八个字符)。 与 SNMPv2 相似,发送的信息不会进行加密。 身份验证协议可以是 MD5 或 SHA,默认为 SHA。 -- `authPriv`: 这个安全等级提供身份验证和隐私保护。 要求进行身份验证(包含一个长度至少为八个字符的身份验证密码),并且会对响应进行加密。 不需要隐私密码,但如果提供隐私密码,其长度必须至少为八个字符。 如果不提供隐私密码,将使用身份验证密码。 隐私协议可以是 DES 或 AES,默认为 AES。 +If you enable SNMP v3, you can take advantage of increased user based security through the User Security Model (USM). For each unique user, you can specify a security level: +- `noAuthNoPriv`: This security level provides no authentication and no privacy. +- `authNoPriv`: This security level provides authentication but no privacy. To query the appliance you'll need a username and password (that must be at least eight characters long). Information is sent without encryption, similar to SNMPv2. The authentication protocol can be either MD5 or SHA and defaults to SHA. +- `authPriv`: This security level provides authentication with privacy. Authentication, including a minimum eight-character authentication password, is required and responses are encrypted. A privacy password is not required, but if provided it must be at least eight characters long. If a privacy password isn't provided, the authentication password is used. The privacy protocol can be either DES or AES and defaults to AES. -## 配置 SNMP v3 的用户 +## Configuring users for SNMP v3 {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.access-monitoring %} {% data reusables.enterprise_management_console.enable-snmp %} -4. 选择 **SNMP v3**。 ![启用 SNMP v3 的按钮](/assets/images/enterprise/management-console/enable-snmpv3.png) -5. 在“Username(用户名)”中,输入 SNMP v3 用户的唯一用户名。 ![SNMP v3 用户名输入字段](/assets/images/enterprise/management-console/snmpv3-username.png) -6. 在 **Security Level(安全等级)**下拉菜单中,单击 SNMP v3 用户的安全等级。 ![SNMP v3 用户安全等级下拉菜单](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) -7. 对于拥有 `authnopriv` 安全等级的 SNMP v3 用户: ![Authnopriv 安全等级设置](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) +4. Select **SNMP v3**. +![Button to enable SNMP v3](/assets/images/enterprise/management-console/enable-snmpv3.png) +5. In "Username", type the unique username of your SNMP v3 user. +![Field to type the SNMP v3 username](/assets/images/enterprise/management-console/snmpv3-username.png) +6. In the **Security Level** dropdown menu, click the security level for your SNMP v3 user. +![Dropdown menu for the SNMP v3 user's security level](/assets/images/enterprise/management-console/snmpv3-securitylevel.png) +7. For SNMP v3 users with the `authnopriv` security level: + ![Settings for the authnopriv security level](/assets/images/enterprise/management-console/snmpv3-authnopriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} -8. 对于拥有 `authpriv` 安全等级的 SNMP v3 用户: ![Authpriv 安全等级设置](/assets/images/enterprise/management-console/snmpv3-authpriv.png) +8. For SNMP v3 users with the `authpriv` security level: + ![Settings for the authpriv security level](/assets/images/enterprise/management-console/snmpv3-authpriv.png) - {% data reusables.enterprise_management_console.authentication-password %} - {% data reusables.enterprise_management_console.authentication-protocol %} - - (可选)在“Privacy password(隐私密码)”中输入隐私保护密码。 - - 在“Privacy password(隐私密码)”右侧,在 **Protocol(协议)** 下拉菜单中,单击您要使用的隐私协议方法。 -9. 单击 **Add user(添加用户)**。 ![用于添加 SNMP v3 用户的按钮](/assets/images/enterprise/management-console/snmpv3-adduser.png) + - Optionally, in "Privacy password", type the privacy password. + - On the right side of "Privacy password", in the **Protocol** dropdown menu, click the privacy protocol method you want to use. +9. Click **Add user**. +![Button to add SNMP v3 user](/assets/images/enterprise/management-console/snmpv3-adduser.png) {% data reusables.enterprise_management_console.save-settings %} -#### 查询 SNMP 数据 +#### Querying SNMP data -关于您的设备的硬件和软件级信息都适用于 SNMP v3。 由于 `noAuthNoPriv` 和 `authNoPriv` 安全等级缺乏加密和隐私,因此我们的结果 SNMP 报告中不包括 `hrSWRun` 表 (1.3.6.1.2.1.25.4.)。 如果您使用的是 `authPriv` 安全等级,我们将包括此表。 更多信息请参阅“[OID 参考文档](http://oidref.com/1.3.6.1.2.1.25.4)。 +Both hardware and software-level information about your appliance is available with SNMP v3. Due to the lack of encryption and privacy for the `noAuthNoPriv` and `authNoPriv` security levels, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports. We include this table if you're using the `authPriv` security level. For more information, see the "[OID reference documentation](http://oidref.com/1.3.6.1.2.1.25.4)." -如果使用 SNMP v2c,则仅会提供关于您的设备的硬件级信息。 {% data variables.product.prodname_enterprise %} 中的应用程序和服务未配置 OID 来报告指标。 有多个 MIB 可用,在网络中 SNMP 的支持下,在单独的工作站上运行 `smpwaste` 可以看到: +With SNMP v2c, only hardware-level information about your appliance is available. The applications and services within {% data variables.product.prodname_enterprise %} do not have OIDs configured to report metrics. Several MIBs are available, which you can see by running `snmpwalk` on a separate workstation with SNMP support in your network: ```shell # community-string is your community string @@ -76,18 +82,18 @@ SNMP 是一种用于通过网络监视设备的公共标准。 强烈建议启 $ snmpwalk -v 2c -c <em>community-string</em> -O e <em>hostname</em> ``` -在 SNMP 的可用 MIB 中,最有用的是 `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25)。 请参见下表,了解此 MIB 中的一些重要对象: +Of the available MIBs for SNMP, the most useful is `HOST-RESOURCES-MIB` (1.3.6.1.2.1.25). See the table below for some important objects in this MIB: -| 名称 | OID | 描述 | -| -------------------------- | ------------------------ | -------------------------------------------- | -| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | 本地日期和时间的主机标记。 | -| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | 自主机上次初始化以来的时间。 | -| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | 主机上 RAM 的大小。 | -| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | 主机上当前加载或运行的进程上下文数。 | -| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | 主机上已占用的存储空间大小(单位为 hrStorageAllocationUnits)。 | -| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | hrStorageAllocationUnit 的大小(单位为字节) | +| Name | OID | Description | +| ---- | --- | ----------- | +| hrSystemDate.2 | 1.3.6.1.2.1.25.1.2 | The hosts notion of the local date and time of day. | +| hrSystemUptime.0 | 1.3.6.1.2.1.25.1.1.0 | How long it's been since the host was last initialized. | +| hrMemorySize.0 | 1.3.6.1.2.1.25.2.2.0 | The amount of RAM on the host. | +| hrSystemProcesses.0 | 1.3.6.1.2.1.25.1.6.0 | The number of process contexts currently loaded or running on the host. | +| hrStorageUsed.1 | 1.3.6.1.2.1.25.2.3.1.6.1 | The amount of storage space consumed on the host, in hrStorageAllocationUnits. | +| hrStorageAllocationUnits.1 | 1.3.6.1.2.1.25.2.3.1.4.1 | The size, in bytes, of an hrStorageAllocationUnit | -例如,要通过 SNMP v3 查询 `hrMemorySize`,请在您的网络中支持 SNMP 的单独工作站上运行以下命令: +For example, to query for `hrMemorySize` with SNMP v3, run the following command on a separate workstation with SNMP support in your network: ```shell # username is the unique username of your SNMP v3 user # auth password is the authentication password @@ -99,7 +105,7 @@ $ snmpget -v 3 -u <em>username</em> -l authPriv \ -O e <em>hostname</em> HOST-RESOURCES-MIB::hrMemorySize.0 ``` -如果使用 SNMP v2c,要查询 `hrMemorySize`,请在您的网络中支持 SNMP 的单独工作站上运行以下命令: +With SNMP v2c, to query for `hrMemorySize`, run the following command on a separate workstation with SNMP support in your network: ```shell # community-string is your community string # hostname is the IP or domain of your Enterprise instance @@ -108,8 +114,8 @@ snmpget -v 2c -c <em>community-string</em> <em>hostname</em> HOST-RESOURCES-MIB: {% tip %} -**注**:为避免泄漏关于设备上所运行服务的信息,我们会将 `hrSWRun` 表 (1.3.6.1.2.1.25.4) 从生成的 SNMP 报告中排除,除非您对 SNMP v3 使用的是 `authPriv` 安全级别。 如果您使用的安全级别为 `authPriv`,我们将包含 `hrSWRun` 表。 +**Note:** To prevent leaking information about services running on your appliance, we exclude the `hrSWRun` table (1.3.6.1.2.1.25.4) from the resulting SNMP reports unless you're using the `authPriv` security level with SNMP v3. If you're using the `authPriv` security level, we include the `hrSWRun` table. {% endtip %} -更多关于 SNMP 中常用系统属性的 OID 映射的信息,请参阅“[CPU、内存和磁盘统计信息的 Linux SNMP OID](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)”。 +For more information on OID mappings for common system attributes in SNMP, see "[Linux SNMP OID’s for CPU, Memory and Disk Statistics](http://www.linux-admins.net/2012/02/linux-snmp-oids-for-cpumemory-and-disk.html)". diff --git a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md index f511efd82e..fff12c9155 100644 --- a/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md +++ b/translations/zh-CN/content/admin/enterprise-management/monitoring-your-appliance/recommended-alert-thresholds.md @@ -1,8 +1,8 @@ --- -title: 建议的警报阈值 -intro: '您可以配置警报来提前通知系统资源问题,以免它们影响您的 {% data variables.product.prodname_ghe_server %} 设备的性能。' +title: Recommended alert thresholds +intro: 'You can configure an alert to notify you of system resource issues before they affect your {% data variables.product.prodname_ghe_server %} appliance''s performance.' redirect_from: - - /enterprise/admin/guides/installation/about-recommended-alert-thresholds/ + - /enterprise/admin/guides/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/about-recommended-alert-thresholds - /enterprise/admin/installation/recommended-alert-thresholds - /enterprise/admin/enterprise-management/recommended-alert-thresholds @@ -16,38 +16,37 @@ topics: - Monitoring - Performance - Storage -shortTitle: 建议的警报阈值 +shortTitle: Recommended alert thresholds --- +## Monitoring storage -## 监视存储 +We recommend that you monitor both the root and user storage devices and configure an alert with values that allow for ample response time when available disk space is low. -建议您同时对根存储设备和用户存储设备进行监视,并为警报配置合适的值,在可用磁盘空间不足时提供足够长的响应时间。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Disk use exceeds 70% of total available | +| **Critical** | Disk use exceeds 85% of total available | -| 严重程度 | 阈值 | -| ------ | ---------------- | -| **警告** | 已用磁盘空间超出总大小的 70% | -| **关键** | 已用磁盘空间超出总大小的 85% | +You can adjust these values based on the total amount of storage allocated, historical growth patterns, and expected time to respond. We recommend over-allocating storage resources to allow for growth and prevent the downtime required to allocate additional storage. -您可以根据分配的总存储空间、历史增长模式和预期响应时间调整这些值。 我们建议多分配一些存储资源,以便考虑增长情况并避免因分配额外存储空间而需要停机。 +## Monitoring CPU and load average usage -## 监视 CPU 和平均负载使用情况 +Although it is normal for CPU usage to fluctuate based on resource-intense Git operations, we recommend configuring an alert for abnormally high CPU utilization, as prolonged spikes can mean your instance is under-provisioned. We recommend monitoring the fifteen-minute system load average for values nearing or exceeding the number of CPU cores allocated to the virtual machine. -虽然 CPU 利用率随资源密集型 Git 操作上下波动属于正常情况,但我们建议配置警报来监视异常增高的 CPU 利用率,因为 CPU 利用率长时间处于高水平可能说明实例配置不足。 建议监视 15 分钟系统平均负载,以获取接近或超过分配给虚拟机的 CPU 核心数的值。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Fifteen minute load average exceeds 1x CPU cores | +| **Critical** | Fifteen minute load average exceeds 2x CPU cores | -| 严重程度 | 阈值 | -| ------ | ---------------------- | -| **警告** | 十五分钟平均负载超出 1 倍的 CPU 核心 | -| **关键** | 十五分钟平均负载超出 2 倍的 CPU 核心 | +We also recommend that you monitor virtualization "steal" time to ensure that other virtual machines running on the same host system are not using all of the instance's resources. -我们还建议监视虚拟化“盗取”时间,以确保在同一主机系统上运行的虚拟机不会用掉所有实例资源。 +## Monitoring memory usage -## 监视内存使用情况 +The amount of physical memory allocated to {% data variables.product.product_location %} can have a large impact on overall performance and application responsiveness. The system is designed to make heavy use of the kernel disk cache to speed up Git operations. We recommend that the normal RSS working set fit within 50% of total available RAM at peak usage. -分配给 {% data variables.product.product_location %} 的物理内存大小对整体性能和应用程序响应能力有着极大的影响。 系统设计为通过大量使用内核磁盘缓存来加快 Git 操作速度。 建议将正常 RSS 工作使用量设置在最高使用量时总可用 RAM 的 50% 之内。 +| Severity | Threshold | +| -------- | --------- | +| **Warning** | Sustained RSS usage exceeds 50% of total available memory | +| **Critical** | Sustained RSS usage exceeds 70% of total available memory | -| 严重程度 | 阈值 | -| ------ | ------------------------ | -| **警告** | 持续 RSS 使用量超出总可用内存大小的 50% | -| **关键** | 持续 RSS 使用量超出总可用内存大小的 70% | - -如果内存已耗尽,内核 OOM 终止程序将尝试终止占用 RAM 较多的应用程序进程以释放内存资源,这样可能导致服务中断。 建议为虚拟机分配的内存大小应大于正常操作过程所需的内存。 +If memory is exhausted, the kernel OOM killer will attempt to free memory resources by forcibly killing RAM heavy application processes, which could result in a disruption of service. We recommend allocating more memory to the virtual machine than is required in the normal course of operations. diff --git a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md index a1505e365c..126dce06e2 100644 --- a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md +++ b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/index.md @@ -1,9 +1,9 @@ --- -title: 更新虚拟机和物理资源 -intro: 升级虚拟软件和虚拟硬件需要您的实例停机一段时间,因此,请务必提前规划升级。 +title: Updating the virtual machine and physical resources +intro: 'Upgrading the virtual software and virtual hardware requires some downtime for your instance, so be sure to plan your upgrade in advance.' redirect_from: - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm/' - - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources/' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-the-vm' + - '/enterprise/{{ currentVersion }}/admin/guides/installation/upgrading-physical-resources' - /enterprise/admin/installation/updating-the-virtual-machine-and-physical-resources - /enterprise/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources versions: @@ -17,6 +17,6 @@ children: - /increasing-storage-capacity - /increasing-cpu-or-memory-resources - /migrating-from-github-enterprise-1110x-to-2123 -shortTitle: 更新 VM 和资源 +shortTitle: Update VM & resources --- diff --git a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md index fd8eb7c001..912f655881 100644 --- a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md +++ b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/migrating-from-github-enterprise-1110x-to-2123.md @@ -1,16 +1,16 @@ --- -title: 从 GitHub Enterprise 11.10.x 迁移到 2.1.23 +title: Migrating from GitHub Enterprise 11.10.x to 2.1.23 redirect_from: - /enterprise/admin/installation/migrating-from-github-enterprise-1110x-to-2123 - - /enterprise/admin-guide/migrating/ - - /enterprise/admin/articles/migrating-github-enterprise/ - - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x/ - - /enterprise/admin/articles/upgrading-to-a-newer-release/ - - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x/ + - /enterprise/admin-guide/migrating + - /enterprise/admin/articles/migrating-github-enterprise + - /enterprise/admin/guides/installation/migrating-from-github-enterprise-v11-10-34x + - /enterprise/admin/articles/upgrading-to-a-newer-release + - /enterprise/admin/guides/installation/migrating-to-a-different-platform-or-from-github-enterprise-11-10-34x - /enterprise/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23 - /enterprise/admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 - /admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123 -intro: '要从 {% data variables.product.prodname_enterprise %} 11.10.x 迁移到 2.1.23,您需要设置新的设备实例并迁移之前实例中的数据。' +intro: 'To migrate from {% data variables.product.prodname_enterprise %} 11.10.x to 2.1.23, you''ll need to set up a new appliance instance and migrate data from the previous instance.' versions: ghes: '*' type: how_to @@ -18,52 +18,54 @@ topics: - Enterprise - Migration - Upgrades -shortTitle: 从 11.10.x 迁移到 2.1.23 +shortTitle: Migrate from 11.10.x to 2.1.23 --- +Migrations from {% data variables.product.prodname_enterprise %} 11.10.348 and later are supported. Migrating from {% data variables.product.prodname_enterprise %} 11.10.348 and earlier is not supported. You must first upgrade to 11.10.348 in several upgrades. For more information, see the 11.10.348 upgrading procedure, "[Upgrading to the latest release](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)." -支持从 {% data variables.product.prodname_enterprise %} 11.10.348 及更高版本进行迁移。 不支持从 {% data variables.product.prodname_enterprise %} 11.10.348 及更低版本进行迁移。 您必须先通过多次升级过程升级到 11.10.348。 更多信息请参阅 11.10.348 升级程序“[升级到最新版本](/enterprise/11.10.340/admin/articles/upgrading-to-the-latest-release/)”。 +To upgrade to the latest version of {% data variables.product.prodname_enterprise %}, you must first migrate to {% data variables.product.prodname_ghe_server %} 2.1, then you can follow the normal upgrade process. For more information, see "[Upgrading {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)". -要升级到最新版 {% data variables.product.prodname_enterprise %},您必须先迁移到 {% data variables.product.prodname_ghe_server %} 2.1,然后才能执行正常升级过程。 更多信息请参阅“[升级 {% data variables.product.prodname_enterprise %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)”。 +## Prepare for the migration -## 准备迁移 - -1. 查看配置和安装指南,并检查在您的环境中配置 {% data variables.product.prodname_enterprise %} 2.1.23 的所有基本要求是否已得到满足。 更多信息请参阅“[配置和安装](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)”。 -2. 验证当前实例正在运行受支持的升级版本。 -3. 设置最新版本的 {% data variables.product.prodname_enterprise_backup_utilities %}。 更多信息请参阅“[{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils)”。 - - 如果已使用 {% data variables.product.prodname_enterprise_backup_utilities %} 配置排定的备份,请确保您已更新为最新版本。 - - 如果您当前未运行排定的备份,请设置 {% data variables.product.prodname_enterprise_backup_utilities %}。 -4. 使用 `ghe-backup` 命令生成当前实例的初始完整备份快照。 如果您已为当前实例配置排定的备份,则不需要生成实例快照。 +1. Review the Provisioning and Installation guide and check that all prerequisites needed to provision and configure {% data variables.product.prodname_enterprise %} 2.1.23 in your environment are met. For more information, see "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)." +2. Verify that the current instance is running a supported upgrade version. +3. Set up the latest version of the {% data variables.product.prodname_enterprise_backup_utilities %}. For more information, see [{% data variables.product.prodname_enterprise_backup_utilities %}](https://github.com/github/backup-utils). + - If you have already configured scheduled backups using {% data variables.product.prodname_enterprise_backup_utilities %}, make sure you have updated to the latest version. + - If you are not currently running scheduled backups, set up {% data variables.product.prodname_enterprise_backup_utilities %}. +4. Take an initial full backup snapshot of the current instance using the `ghe-backup` command. If you have already configured scheduled backups for your current instance, you don't need to take a snapshot of your instance. {% tip %} - **提示**:在快照生成期间,您可以使实例保持在线激活状态。 您将在迁移的维护过程中生成另一个快照。 由于备份的递增,此初始快照会减少在最终快照中传输的数据量,从而可能缩短维护窗口。 + **Tip:** You can leave the instance online and in active use during the snapshot. You'll take another snapshot during the maintenance portion of the migration. Since backups are incremental, this initial snapshot reduces the amount of data transferred in the final snapshot, which may shorten the maintenance window. {% endtip %} -5. 确定用于将用户网络流量切换到新实例的方法。 迁移完毕后,所有 HTTP 和 Git 网络流量都将定向到新实例。 - - **DNS** - 建议为所有环境使用此方法,因为此方法简单易用,即使在从一个数据中心迁移到另一个数据中心的情况下也能正常使用。 开始迁移之前,请将现有 DNS 记录的 TTL 缩减为 5 分钟或更短时间,并允许更改传播。 迁移完成后,将 DNS 记录更新为指向新实例的 IP 地址。 - - **IP 地址分配** - 此方法仅适用于 VMware 到 VMware 的迁移,除非 DNS 方法不可用,否则不建议使用此方法。 开始迁移之前,您需要关闭旧实例并将其 IP 地址分配给新实例。 -6. 排定维护窗口。 维护窗口的时间应足够长,以便将数据从备份主机传输到新实例,并根据备份快照的大小和可用网络带宽而变化。 在此期间,如果要迁移到新实例,当前实例将不可用,且处于维护模式。 +5. Determine the method for switching user network traffic to the new instance. After you've migrated, all HTTP and Git network traffic directs to the new instance. + - **DNS** - We recommend this method for all environments, as it's simple and works well even when migrating from one datacenter to another. Before starting migration, reduce the existing DNS record's TTL to five minutes or less and allow the change to propagate. Once the migration is complete, update the DNS record(s) to point to the IP address of the new instance. + - **IP address assignment** - This method is only available on VMware to VMware migration and is not recommended unless the DNS method is unavailable. Before starting the migration, you'll need to shut down the old instance and assign its IP address to the new instance. +6. Schedule a maintenance window. The maintenance window should include enough time to transfer data from the backup host to the new instance and will vary based on the size of the backup snapshot and available network bandwidth. During this time your current instance will be unavailable and in maintenance mode while you migrate to the new instance. -## 执行迁移 +## Perform the migration -1. 配置新的 {% data variables.product.prodname_enterprise %} 2.1 实例。 更多信息请参阅您的目标平台的“[配置和安装](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)”指南。 -2. 在浏览器中,导航到新副本设备的 IP 地址并上传您的 {% data variables.product.prodname_enterprise %} 许可。 -3. 设置管理员密码。 -5. 单击 **Migrate**。 ![选择安装类型](/assets/images/enterprise/migration/migration-choose-install-type.png) -6. 将备份主机访问 SSH 密钥粘贴到“Add new SSH key”中。 ![授权备份](/assets/images/enterprise/migration/migration-authorize-backup-host.png) -7. 单击 **Add key(添加密钥)**,然后单击 **Continue(继续)**。 -8. 复制您将在备份主机上运行的 `ghe-restore` 命令,将数据迁移到新实例。 ![开始迁移](/assets/images/enterprise/migration/migration-restore-start.png) -9. 在旧实例上启用维护模式,并等待所有活动进程完成。 更多信息请参阅“[启用和排定维护模式](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)”。 +1. Provision a new {% data variables.product.prodname_enterprise %} 2.1 instance. For more information, see the "[Provisioning and Installation](/enterprise/2.1/admin/guides/installation/provisioning-and-installation/)" guide for your target platform. +2. In a browser, navigate to the new replica appliance's IP address and upload your {% data variables.product.prodname_enterprise %} license. +3. Set an admin password. +5. Click **Migrate**. +![Choosing install type](/assets/images/enterprise/migration/migration-choose-install-type.png) +6. Paste your backup host access SSH key into "Add new SSH key". +![Authorizing backup](/assets/images/enterprise/migration/migration-authorize-backup-host.png) +7. Click **Add key** and then click **Continue**. +8. Copy the `ghe-restore` command that you'll run on the backup host to migrate data to the new instance. +![Starting a migration](/assets/images/enterprise/migration/migration-restore-start.png) +9. Enable maintenance mode on the old instance and wait for all active processes to complete. For more information, see "[Enabling and scheduling maintenance mode](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)." {% note %} - **注**:从现在开始,此实例将无法正常使用。 + **Note:** The instance will be unavailable for normal use from this point forward. {% endnote %} -10. 在备份主机上,运行 `ghe-backup` 命令以生成最终的备份快照。 这样可以确保捕获来自旧实例的所有数据。 -11. 在备份主机上,运行您在新实例的恢复状态屏幕上复制的 `ghe-restore` 命令以恢复最新快照。 +10. On the backup host, run the `ghe-backup` command to take a final backup snapshot. This ensures that all data from the old instance is captured. +11. On the backup host, run the `ghe-restore` command you copied on the new instance's restore status screen to restore the latest snapshot. ```shell $ ghe-restore 169.254.1.1 The authenticity of host '169.254.1.1:122' can't be established. @@ -84,15 +86,17 @@ shortTitle: 从 11.10.x 迁移到 2.1.23 Visit https://169.254.1.1/setup/settings to review appliance configuration. ``` -12. 返回到新实例的恢复状态屏幕,查看恢复是否已完成。 ![恢复整个屏幕](/assets/images/enterprise/migration/migration-status-complete.png) -13. 单击 **Continue to settings**,检查并调整从之前的实例中导入的配置信息和设置。 ![检查导入的设置](/assets/images/enterprise/migration/migration-status-complete.png) -14. 单击 **Save settings(保存设置)**。 +12. Return to the new instance's restore status screen to see that the restore completed. +![Restore complete screen](/assets/images/enterprise/migration/migration-status-complete.png) +13. Click **Continue to settings** to review and adjust the configuration information and settings that were imported from the previous instance. +![Review imported settings](/assets/images/enterprise/migration/migration-status-complete.png) +14. Click **Save settings**. {% note %} - **注**:您可以在应用配置设置并重新启动服务器后使用新实例。 + **Note:** You can use the new instance after you've applied configuration settings and restarted the server. {% endnote %} -15. 使用 DNS 或 IP 地址分配将用户网络流量从旧实例切换到新实例。 -16. 升级到 {{ currentVersion }} 的最新补丁版本。 更多信息请参阅“[升级 {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)。” +15. Switch user network traffic from the old instance to the new instance using either DNS or IP address assignment. +16. Upgrade to the latest patch release of {{ currentVersion }}. For more information, see "[Upgrading {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/upgrading-github-enterprise-server/)." diff --git a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md index 2111abfe4f..67ec886148 100644 --- a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md +++ b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md @@ -3,7 +3,7 @@ title: Upgrade requirements intro: 'Before upgrading {% data variables.product.prodname_ghe_server %}, review these recommendations and requirements to plan your upgrade strategy.' redirect_from: - /enterprise/admin/installation/upgrade-requirements - - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release/ + - /enterprise/admin/guides/installation/finding-the-current-github-enterprise-release - /enterprise/admin/enterprise-management/upgrade-requirements - /admin/enterprise-management/upgrade-requirements versions: diff --git a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md index 4f60cb3784..7d618961ca 100644 --- a/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md +++ b/translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrading-github-enterprise-server.md @@ -3,15 +3,15 @@ title: Upgrading GitHub Enterprise Server intro: 'Upgrade {% data variables.product.prodname_ghe_server %} to get the latest features and security updates.' redirect_from: - /enterprise/admin/installation/upgrading-github-enterprise-server - - /enterprise/admin/articles/upgrading-to-the-latest-release/ - - /enterprise/admin/articles/migrations-and-upgrades/ - - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine/ - - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases/ - - /enterprise/admin/articles/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-older-installations/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program/ - - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch/ - - /enterprise/admin/guides/installation/upgrading-github-enterprise/ + - /enterprise/admin/articles/upgrading-to-the-latest-release + - /enterprise/admin/articles/migrations-and-upgrades + - /enterprise/admin/guides/installation/upgrading-the-github-enterprise-virtual-machine + - /enterprise/admin/guides/installation/upgrade-packages-for-older-releases + - /enterprise/admin/articles/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-older-installations + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch-early-access-program + - /enterprise/admin/hidden/upgrading-github-enterprise-using-a-hotpatch + - /enterprise/admin/guides/installation/upgrading-github-enterprise - /enterprise/admin/enterprise-management/upgrading-github-enterprise-server - /admin/enterprise-management/upgrading-github-enterprise-server versions: diff --git a/translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md b/translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md index c26d306359..19b17f289b 100644 --- a/translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md +++ b/translations/zh-CN/content/admin/enterprise-support/overview/about-github-premium-support-for-github-enterprise-server.md @@ -2,8 +2,8 @@ title: About GitHub Premium Support for GitHub Enterprise Server intro: '{% data variables.contact.premium_support %} is a paid, supplemental support offering for {% data variables.product.prodname_enterprise %} customers.' redirect_from: - - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise/ - - /enterprise/admin/guides/enterprise-support/about-premium-support/ + - /enterprise/admin/guides/enterprise-support/about-premium-support-for-github-enterprise + - /enterprise/admin/guides/enterprise-support/about-premium-support - /enterprise/admin/enterprise-support/about-github-premium-support-for-github-enterprise-server - /admin/enterprise-support/about-github-premium-support-for-github-enterprise-server versions: diff --git a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/index.md b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/index.md index 55fd9b5182..68f0cb423b 100644 --- a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/index.md +++ b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/index.md @@ -1,8 +1,8 @@ --- -title: 从 GitHub Support 获得帮助 -intro: '您可以联系 {% data variables.contact.enterprise_support %} 报告企业的一系列问题。' +title: Receiving help from GitHub Support +intro: 'You can contact {% data variables.contact.enterprise_support %} to report a range of issues for your enterprise.' redirect_from: - - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/receiving-help-from-github-enterprise-support - /enterprise/admin/enterprise-support/receiving-help-from-github-support versions: ghes: '*' @@ -14,6 +14,6 @@ children: - /preparing-to-submit-a-ticket - /submitting-a-ticket - /providing-data-to-github-support -shortTitle: 从支持部门获得帮助 +shortTitle: Receive help from Support --- diff --git a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md index 2e6d49cb05..66c4f8ca9d 100644 --- a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md +++ b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/providing-data-to-github-support.md @@ -2,9 +2,9 @@ title: Providing data to GitHub Support intro: 'Since {% data variables.contact.github_support %} doesn''t have access to your environment, we require some additional information from you.' redirect_from: - - /enterprise/admin/guides/installation/troubleshooting/ - - /enterprise/admin/articles/support-bundles/ - - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support/ + - /enterprise/admin/guides/installation/troubleshooting + - /enterprise/admin/articles/support-bundles + - /enterprise/admin/guides/enterprise-support/providing-data-to-github-enterprise-support - /enterprise/admin/enterprise-support/providing-data-to-github-support - /admin/enterprise-support/providing-data-to-github-support versions: diff --git a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md index 70b1836838..9e60d8c73a 100644 --- a/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md +++ b/translations/zh-CN/content/admin/enterprise-support/receiving-help-from-github-support/reaching-github-support.md @@ -2,7 +2,7 @@ title: Reaching GitHub Support intro: 'Contact {% data variables.contact.enterprise_support %} using the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} {% data variables.enterprise.management_console %} or{% endif %} the support portal.' redirect_from: - - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support/ + - /enterprise/admin/guides/enterprise-support/reaching-github-enterprise-support - /enterprise/admin/enterprise-support/reaching-github-support - /admin/enterprise-support/reaching-github-support versions: diff --git a/translations/zh-CN/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md b/translations/zh-CN/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md index 9af8604417..5f067794ac 100644 --- a/translations/zh-CN/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md +++ b/translations/zh-CN/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server.md @@ -61,38 +61,23 @@ The peak quantity of concurrent jobs running without performance loss depends on {%- ifversion ghes < 3.2 %} -| vCPUs | Memory | Maximum job throughput | -| :--- | :--- | :--- | -| 4 | 32 GB | Demo or light testing | -| 8 | 64 GB | 25 jobs | -| 16 | 160 GB | 35 jobs | -| 32 | 256 GB | 100 jobs | +{% data reusables.actions.hardware-requirements-before %} {%- endif %} {%- ifversion ghes = 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 32 | 128 GB | 1000 jobs | -| 64 | 256 GB | 1300 jobs | -| 96 | 384 GB | 2200 jobs | +{% data reusables.actions.hardware-requirements-3.2 %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} {%- ifversion ghes > 3.2 %} -| vCPUs | Memory | Maximum Concurrency*| -| :--- | :--- | :--- | -| 8 | 64 GB | 300 jobs | -| 16 | 160 GB | 700 jobs | -| 32 | 128 GB | 1300 jobs | -| 64 | 256 GB | 2000 jobs | -| 96 | 384 GB | 4000 jobs | +{% data reusables.actions.hardware-requirements-after %} -*Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. +Maximum concurrency was measured using multiple repositories, job duration of approximately 10 minutes, and 10 MB artifact uploads. You may experience different performance depending on the overall levels of activity on your instance. {%- endif %} diff --git a/translations/zh-CN/content/admin/installation/index.md b/translations/zh-CN/content/admin/installation/index.md index e614449f58..385c4412e7 100644 --- a/translations/zh-CN/content/admin/installation/index.md +++ b/translations/zh-CN/content/admin/installation/index.md @@ -1,13 +1,13 @@ --- -title: '安装 {% data variables.product.prodname_enterprise %}' -shortTitle: 安装 -intro: '系统管理员以及操作和安全专业人员可以安装 {% data variables.product.prodname_ghe_server %}。' +title: 'Installing {% data variables.product.prodname_enterprise %}' +shortTitle: Installing +intro: 'System administrators and operations and security specialists can install {% data variables.product.prodname_ghe_server %}.' redirect_from: - - /enterprise/admin-guide/ - - /enterprise/admin/guides/installation/ - - /enterprise/admin/categories/customization/ - - /enterprise/admin/categories/general/ - - /enterprise/admin/categories/logging-and-monitoring/ + - /enterprise/admin-guide + - /enterprise/admin/guides/installation + - /enterprise/admin/categories/customization + - /enterprise/admin/categories/general + - /enterprise/admin/categories/logging-and-monitoring - /enterprise/admin/installation versions: ghes: '*' @@ -19,9 +19,8 @@ topics: children: - /setting-up-a-github-enterprise-server-instance --- - -如需了解更多信息或购买 {% data variables.product.prodname_enterprise %},请参阅 [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise)。 +For more information, or to purchase {% data variables.product.prodname_enterprise %}, see [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). {% data reusables.enterprise_installation.request-a-trial %} -如果对安装过程存在疑问,请参阅“[使用 {% data variables.product.prodname_enterprise %} Support](/enterprise/admin/guides/enterprise-support/)”。 +If you have questions about the installation process, see "[Working with {% data variables.product.prodname_enterprise %} Support](/enterprise/admin/guides/enterprise-support/)." diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md index da3f25d403..c1df769365 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/index.md @@ -1,11 +1,11 @@ --- -title: 设置 GitHub Enterprise Server 实例 -intro: '您可以在自己选择的受支持虚拟化平台上安装 {% data variables.product.prodname_ghe_server %}。' +title: Setting up a GitHub Enterprise Server instance +intro: 'You can install {% data variables.product.prodname_ghe_server %} on the supported virtualization platform of your choice.' redirect_from: - /enterprise/admin/installation/getting-started-with-github-enterprise-server - - /enterprise/admin/guides/installation/supported-platforms/ - - /enterprise/admin/guides/installation/provisioning-and-installation/ - - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance/ + - /enterprise/admin/guides/installation/supported-platforms + - /enterprise/admin/guides/installation/provisioning-and-installation + - /enterprise/admin/guides/installation/setting-up-a-github-enterprise-instance - /enterprise/admin/installation/setting-up-a-github-enterprise-server-instance versions: ghes: '*' @@ -20,6 +20,6 @@ children: - /installing-github-enterprise-server-on-vmware - /installing-github-enterprise-server-on-xenserver - /setting-up-a-staging-instance -shortTitle: 设置实例 +shortTitle: Set up an instance --- diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md index d857ebcd73..4fbe447d97 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on AWS intro: 'To install {% data variables.product.prodname_ghe_server %} on Amazon Web Services (AWS), you must launch an Amazon Elastic Compute Cloud (EC2) instance and create and attach a separate Amazon Elastic Block Store (EBS) data volume.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-aws - /enterprise/admin/installation/installing-github-enterprise-server-on-aws - /admin/installation/installing-github-enterprise-server-on-aws versions: diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md index ee09f2f006..514b440f73 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-azure.md @@ -2,7 +2,7 @@ title: Installing GitHub Enterprise Server on Azure intro: 'To install {% data variables.product.prodname_ghe_server %} on Azure, you must deploy onto a DS-series instance and use Premium-LRS storage.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-azure - /enterprise/admin/installation/installing-github-enterprise-server-on-azure - /admin/installation/installing-github-enterprise-server-on-azure versions: diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md index 78a677610a..e8d6a0059e 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-google-cloud-platform.md @@ -1,8 +1,8 @@ --- -title: 在 Google Cloud Platform 上安装 GitHub Enterprise Server -intro: '要在 Google Cloud Platform 上安装 {% data variables.product.prodname_ghe_server %},您必须部署到受支持的机器类型上,并使用持久标准磁盘或持久 SSD。' +title: Installing GitHub Enterprise Server on Google Cloud Platform +intro: 'To install {% data variables.product.prodname_ghe_server %} on Google Cloud Platform, you must deploy onto a supported machine type and use a persistent standard disk or a persistent SSD.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-google-cloud-platform - /enterprise/admin/installation/installing-github-enterprise-server-on-google-cloud-platform - /admin/installation/installing-github-enterprise-server-on-google-cloud-platform versions: @@ -13,70 +13,69 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: 在 GCP 上安装 +shortTitle: Install on GCP --- - -## 基本要求 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- 您必须具有能够启动 Google Compute Engine (GCE) 虚拟机 (VM) 实例的 Google Cloud Platform 帐户。 更多信息请参阅 [Google Cloud Platform 网站](https://cloud.google.com/)和 [Google Cloud Platform 文档](https://cloud.google.com/docs/)。 -- 启动实例所需的大部分操作也可以使用 [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console) 执行。 不过,我们建议安装 gcloud compute 命令行工具进行初始设置。 下文介绍了使用 gcloud compute 命令行工具的示例。 更多信息请参阅 Google 文档中的“[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)”安装和设置指南。 +- You must have a Google Cloud Platform account capable of launching Google Compute Engine (GCE) virtual machine (VM) instances. For more information, see the [Google Cloud Platform website](https://cloud.google.com/) and the [Google Cloud Platform Documentation](https://cloud.google.com/docs/). +- Most actions needed to launch your instance may also be performed using the [Google Cloud Platform Console](https://cloud.google.com/compute/docs/console). However, we recommend installing the gcloud compute command-line tool for initial setup. Examples using the gcloud compute command-line tool are included below. For more information, see the "[gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/)" installation and setup guide in the Google documentation. -## 硬件考量因素 +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## 确定机器类型 +## Determining the machine type -在 Google Cloud Platform 上启动 {% data variables.product.product_location %} 之前,您需要确定最符合您的组织需求的机器类型。 要查看 {% data variables.product.product_name %} 的最低要求,请参阅“[最低要求](#minimum-requirements)”。 +Before launching {% data variables.product.product_location %} on Google Cloud Platform, you'll need to determine the machine type that best fits the needs of your organization. To review the minimum requirements for {% data variables.product.product_name %}, see "[Minimum requirements](#minimum-requirements)." {% data reusables.enterprise_installation.warning-on-scaling %} -{% data variables.product.company_short %} 建议对 {% data variables.product.prodname_ghe_server %} 使用通用高内存设备。 更多信息请参阅 Google Compute Engine 文档中的“[设备类型](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)”。 +{% data variables.product.company_short %} recommends a general-purpose, high-memory machine for {% data variables.product.prodname_ghe_server %}. For more information, see "[Machine types](https://cloud.google.com/compute/docs/machine-types#n2_high-memory_machine_types)" in the Google Compute Engine documentation. -## 选择 {% data variables.product.prodname_ghe_server %} 映像 +## Selecting the {% data variables.product.prodname_ghe_server %} image -1. 使用 [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/) 命令行工具列出公共 {% data variables.product.prodname_ghe_server %} 映像: +1. Using the [gcloud compute](https://cloud.google.com/compute/docs/gcloud-compute/) command-line tool, list the public {% data variables.product.prodname_ghe_server %} images: ```shell $ gcloud compute images list --project github-enterprise-public --no-standard-images ``` -2. 记下 {% data variables.product.prodname_ghe_server %} 最新 GCE 映像的映像名称。 +2. Take note of the image name for the latest GCE image of {% data variables.product.prodname_ghe_server %}. -## 配置防火墙 +## Configuring the firewall -GCE 虚拟机作为具有防火墙的网络的成员创建。 对于与 {% data variables.product.prodname_ghe_server %} VM 关联的网络,您需要将防火墙配置为允许下表中列出的必需端口。 更多关于 Google Cloud Platform 上防火墙规则的信息,请参阅 Google 指南“[防火墙规则概述](https://cloud.google.com/vpc/docs/firewalls)”。 +GCE virtual machines are created as a member of a network, which has a firewall. For the network associated with the {% data variables.product.prodname_ghe_server %} VM, you'll need to configure the firewall to allow the required ports listed in the table below. For more information about firewall rules on Google Cloud Platform, see the Google guide "[Firewall Rules Overview](https://cloud.google.com/vpc/docs/firewalls)." -1. 使用 gcloud compute 命令行工具创建网络。 更多信息请参阅 Google 文档中的“[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)”。 +1. Using the gcloud compute command-line tool, create the network. For more information, see "[gcloud compute networks create](https://cloud.google.com/sdk/gcloud/reference/compute/networks/create)" in the Google documentation. ```shell $ gcloud compute networks create <em>NETWORK-NAME</em> --subnet-mode auto ``` -2. 为下表中的各个端口创建防火墙规则。 更多信息请参阅 Google 文档中的“[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)”。 +2. Create a firewall rule for each of the ports in the table below. For more information, see "[gcloud compute firewall-rules](https://cloud.google.com/sdk/gcloud/reference/compute/firewall-rules/)" in the Google documentation. ```shell $ gcloud compute firewall-rules create <em>RULE-NAME</em> \ --network <em>NETWORK-NAME</em> \ --allow tcp:22,tcp:25,tcp:80,tcp:122,udp:161,tcp:443,udp:1194,tcp:8080,tcp:8443,tcp:9418,icmp ``` - 此表列出了必需端口以及各端口的用途。 + This table identifies the required ports and what each port is used for. {% data reusables.enterprise_installation.necessary_ports %} -## 分配静态 IP 并将其分配给 VM +## Allocating a static IP and assigning it to the VM -如果此设备为生产设备,强烈建议保留静态外部 IP 地址并将其分配给 {% data variables.product.prodname_ghe_server %} VM。 否则,重新启动后将不会保留 VM 的公共 IP 地址。 更多信息请参阅 Google 指南“[保留静态外部 IP 地址](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)”。 +If this is a production appliance, we strongly recommend reserving a static external IP address and assigning it to the {% data variables.product.prodname_ghe_server %} VM. Otherwise, the public IP address of the VM will not be retained after restarts. For more information, see the Google guide "[Reserving a Static External IP Address](https://cloud.google.com/compute/docs/configure-instance-ip-addresses)." -在生产高可用性配置中,主设备和副本设备均应获得单独的静态 IP 地址。 +In production High Availability configurations, both primary and replica appliances should be assigned separate static IP addresses. -## 创建 {% data variables.product.prodname_ghe_server %} 实例 +## Creating the {% data variables.product.prodname_ghe_server %} instance -要创建 {% data variables.product.prodname_ghe_server %} 实例,您需要使用 {% data variables.product.prodname_ghe_server %} 映像创建 GCE 实例并连接额外的存储卷来存储实例数据。 更多信息请参阅“[硬件考量因素](#hardware-considerations)”。 +To create the {% data variables.product.prodname_ghe_server %} instance, you'll need to create a GCE instance with your {% data variables.product.prodname_ghe_server %} image and attach an additional storage volume for your instance data. For more information, see "[Hardware considerations](#hardware-considerations)." -1. 使用 gcloud compute 命令行工具,创建数据磁盘,将其用作您的实例数据的附加存储卷,并根据用户许可数配置大小。 更多信息请参阅 Google 文档中的“[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)”。 +1. Using the gcloud compute command-line tool, create a data disk to use as an attached storage volume for your instance data, and configure the size based on your user license count. For more information, see "[gcloud compute disks create](https://cloud.google.com/sdk/gcloud/reference/compute/disks/create)" in the Google documentation. ```shell $ gcloud compute disks create <em>DATA-DISK-NAME</em> --size <em>DATA-DISK-SIZE</em> --type <em>DATA-DISK-TYPE</em> --zone <em>ZONE</em> ``` -2. 然后,使用所选 {% data variables.product.prodname_ghe_server %} 映像的名称创建实例,并连接数据磁盘。 更多信息请参阅 Google 文档中的“[gcloud compute ](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)”。 +2. Then create an instance using the name of the {% data variables.product.prodname_ghe_server %} image you selected, and attach the data disk. For more information, see "[gcloud compute instances create](https://cloud.google.com/sdk/gcloud/reference/compute/instances/create)" in the Google documentation. ```shell $ gcloud compute instances create <em>INSTANCE-NAME</em> \ --machine-type n1-standard-8 \ @@ -88,15 +87,15 @@ GCE 虚拟机作为具有防火墙的网络的成员创建。 对于与 {% data --image-project github-enterprise-public ``` -## 配置实例 +## Configuring the instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} 更多信息请参阅“[配置 {% data variables.product.prodname_ghe_server %} 设备](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)”。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 延伸阅读 +## Further reading -- "[系统概述](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[关于升级到新版本](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md index aecaf90bf7..7901cb3efd 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md @@ -1,8 +1,8 @@ --- -title: 在 Hyper-V 上安装 GitHub Enterprise Server -intro: '要在 Hyper-V 上安装 {% data variables.product.prodname_ghe_server %},您必须部署到运行 Windows Server 2008 至 Windows Server 2019 的机器上。' +title: Installing GitHub Enterprise Server on Hyper-V +intro: 'To install {% data variables.product.prodname_ghe_server %} on Hyper-V, you must deploy onto a machine running Windows Server 2008 through Windows Server 2019.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-hyper-v - /enterprise/admin/installation/installing-github-enterprise-server-on-hyper-v - /admin/installation/installing-github-enterprise-server-on-hyper-v versions: @@ -13,62 +13,61 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: 在 Hyper-V 上安装 +shortTitle: Install on Hyper-V --- - -## 基本要求 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- 您必须具有 Windows Server 2008 至 Windows Server 2019,这些版本支持 Hyper-V。 -- 创建虚拟机 (VM)所需的大部分操作也可以使用 [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts) 执行。 不过,我们建议使用 Windows PowerShell 命令行 shell 进行初始设置。 下文介绍了使用 PowerShell 的示例。 更多信息请参阅 Microsoft 指南“[Windows PowerShell 使用入门](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)”。 +- You must have Windows Server 2008 through Windows Server 2019, which support Hyper-V. +- Most actions needed to create your virtual machine (VM) may also be performed using the [Hyper-V Manager](https://docs.microsoft.com/windows-server/virtualization/hyper-v/manage/remotely-manage-hyper-v-hosts). However, we recommend using the Windows PowerShell command-line shell for initial setup. Examples using PowerShell are included below. For more information, see the Microsoft guide "[Getting Started with Windows PowerShell](https://docs.microsoft.com/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-5.1)." -## 硬件考量因素 +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## 下载 {% data variables.product.prodname_ghe_server %} 映像 +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. 选择 {% data variables.product.prodname_dotcom %} 内部部署,然后单击 **Hyper-V (VHD)**。 -5. 单击 **Download for Hyper-V (VHD)**。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **Hyper-V (VHD)**. +5. Click **Download for Hyper-V (VHD)**. -## 创建 {% data variables.product.prodname_ghe_server %} 实例 +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. 在 PowerShell 中,创建新的第 1 代虚拟机,根据用户许可数配置大小,并附上您下载的 {% data variables.product.prodname_ghe_server %} 图像。 更多信息请参阅 Microsoft 文档中的“[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)”。 +1. In PowerShell, create a new Generation 1 virtual machine, configure the size based on your user license count, and attach the {% data variables.product.prodname_ghe_server %} image you downloaded. For more information, see "[New-VM](https://docs.microsoft.com/powershell/module/hyper-v/new-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VM -Generation 1 -Name <em>VM_NAME</em> -MemoryStartupBytes <em>MEMORY_SIZE</em> -BootDevice VHD -VHDPath <em>PATH_TO_VHD</em> ``` -{% data reusables.enterprise_installation.create-attached-storage-volume %} 将 `PATH_TO_DATA_DISK` 替换为磁盘创建位置的路径。 更多信息请参阅 Microsoft 文档中的“[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)”。 +{% data reusables.enterprise_installation.create-attached-storage-volume %} Replace `PATH_TO_DATA_DISK` with the path to the location where you create the disk. For more information, see "[New-VHD](https://docs.microsoft.com/powershell/module/hyper-v/new-vhd?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> New-VHD -Path <em>PATH_TO_DATA_DISK</em> -SizeBytes <em>DISK_SIZE</em> ``` -3. 将数据磁盘连接到实例。 更多信息请参阅 Microsoft 文档中的“[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)”。 +3. Attach the data disk to your instance. For more information, see "[Add-VMHardDiskDrive](https://docs.microsoft.com/powershell/module/hyper-v/add-vmharddiskdrive?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Add-VMHardDiskDrive -VMName <em>VM_NAME</em> -Path <em>PATH_TO_DATA_DISK</em> ``` -4. 启动 VM。 更多信息请参阅 Microsoft 文档中的“[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)”。 +4. Start the VM. For more information, see "[Start-VM](https://docs.microsoft.com/powershell/module/hyper-v/start-vm?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> Start-VM -Name <em>VM_NAME</em> ``` -5. 获取 VM 的 IP 地址。 更多信息请参阅 Microsoft 文档中的“[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)”。 +5. Get the IP address of your VM. For more information, see "[Get-VMNetworkAdapter](https://docs.microsoft.com/powershell/module/hyper-v/get-vmnetworkadapter?view=win10-ps)" in the Microsoft documentation. ```shell PS C:\> (Get-VMNetworkAdapter -VMName <em>VM_NAME</em>).IpAddresses ``` -6. 复制 VM 的 IP 地址并将其粘贴到 Web 浏览器中。 +6. Copy the VM's IP address and paste it into a web browser. -## 配置 {% data variables.product.prodname_ghe_server %} 实例 +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} 更多信息请参阅“[配置 {% data variables.product.prodname_ghe_server %} 设备](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)”。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 延伸阅读 +## Further reading -- "[系统概述](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[关于升级到新版本](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md index 899a236067..1c1de12f10 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md @@ -1,8 +1,8 @@ --- -title: 在 OpenStack KVM 上安装 GitHub Enterprise Server -intro: '要在 OpenStack KVM 上安装 {% data variables.product.prodname_ghe_server %},您必须具有 OpenStack 访问权限并下载 {% data variables.product.prodname_ghe_server %} QCOW2 映像。' +title: Installing GitHub Enterprise Server on OpenStack KVM +intro: 'To install {% data variables.product.prodname_ghe_server %} on OpenStack KVM, you must have OpenStack access and download the {% data variables.product.prodname_ghe_server %} QCOW2 image.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-openstack-kvm - /enterprise/admin/installation/installing-github-enterprise-server-on-openstack-kvm - /admin/installation/installing-github-enterprise-server-on-openstack-kvm versions: @@ -13,47 +13,46 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: 在 OpenStack 上安装 +shortTitle: Install on OpenStack --- - -## 基本要求 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- 您必须有权访问 OpenStack Horizon,即 OpenStack 服务基于 Web 的用户界面。 更多信息请参阅 [Horizon 文档](https://docs.openstack.org/horizon/latest/)。 +- You must have access to an installation of OpenStack Horizon, the web-based user interface to OpenStack services. For more information, see the [Horizon documentation](https://docs.openstack.org/horizon/latest/). -## 硬件考量因素 +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## 下载 {% data variables.product.prodname_ghe_server %} 映像 +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. 选择 {% data variables.product.prodname_dotcom %} 内部部署,然后单击 **OpenStack KVM (QCOW2)**。 -5. 单击 **Download for OpenStack KVM (QCOW2)**。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **OpenStack KVM (QCOW2)**. +5. Click **Download for OpenStack KVM (QCOW2)**. -## 创建 {% data variables.product.prodname_ghe_server %} 实例 +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. 在 OpenStack Horizon 中,上传您下载的 {% data variables.product.prodname_ghe_server %} 映像。 有关说明,请参阅 OpenStack 指南“[上传和管理图像](https://docs.openstack.org/horizon/latest/user/manage-images.html)”的“上传图像”部分。 -{% data reusables.enterprise_installation.create-attached-storage-volume %}有关说明,请参阅 OpenStack 指南“[创建和管理卷](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)”。 -3. 创建安全组,并为下表中的各个端口添加新的安全组规则。 有关说明,请参阅 OpenStack 指南“[为实例配置访问和安全](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)”。 +1. In OpenStack Horizon, upload the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the "Upload an image" section of the OpenStack guide "[Upload and manage images](https://docs.openstack.org/horizon/latest/user/manage-images.html)." +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the OpenStack guide "[Create and manage volumes](https://docs.openstack.org/horizon/latest/user/manage-volumes.html)." +3. Create a security group, and add a new security group rule for each port in the table below. For instructions, see the OpenStack guide "[Configure access and security for instances](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html)." {% data reusables.enterprise_installation.necessary_ports %} -4. 也可以将浮动 IP 关联到实例。 根据 OpenStack 设置,您可能需要将浮动 IP 分配给项目并将其关联到实例。 请联系您的系统管理员以确定您是否属于这种情况。 更多信息请参阅 OpenStack 文档中的“[为实例分配浮动 IP 地址](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)”。 -5. 使用在前几步创建的映像、数据卷和安全组启动 {% data variables.product.product_location %}。 有关说明,请参阅 OpenStack 指南“[启动和管理实例](https://docs.openstack.org/horizon/latest/user/launch-instances.html)”。 +4. Optionally, associate a floating IP to the instance. Depending on your OpenStack setup, you may need to allocate a floating IP to the project and associate it to the instance. Contact your system administrator to determine if this is the case for you. For more information, see "[Allocate a floating IP address to an instance](https://docs.openstack.org/horizon/latest/user/configure-access-and-security-for-instances.html#allocate-a-floating-ip-address-to-an-instance)" in the OpenStack documentation. +5. Launch {% data variables.product.product_location %} using the image, data volume, and security group created in the previous steps. For instructions, see the OpenStack guide "[Launch and manage instances](https://docs.openstack.org/horizon/latest/user/launch-instances.html)." -## 配置 {% data variables.product.prodname_ghe_server %} 实例 +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} 更多信息请参阅“[配置 {% data variables.product.prodname_ghe_server %} 设备](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)”。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 延伸阅读 +## Further reading -- "[系统概述](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[关于升级到新版本](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md index a0a84f6765..e725f7fd72 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md @@ -1,11 +1,11 @@ --- -title: 在 VMware 上安装 GitHub Enterprise Server -intro: '要在 VMWare 上安装 {% data variables.product.prodname_ghe_server %},您必须下载 VMWare vSphere 客户端,然后下载并部署 {% data variables.product.prodname_ghe_server %} 软件。' +title: Installing GitHub Enterprise Server on VMware +intro: 'To install {% data variables.product.prodname_ghe_server %} on VMware, you must download the VMware vSphere client, and then download and deploy the {% data variables.product.prodname_ghe_server %} software.' redirect_from: - - /enterprise/admin/articles/getting-started-with-vmware/ - - /enterprise/admin/articles/installing-vmware-tools/ - - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums/ - - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware/ + - /enterprise/admin/articles/getting-started-with-vmware + - /enterprise/admin/articles/installing-vmware-tools + - /enterprise/admin/articles/vmware-esxi-virtual-machine-maximums + - /enterprise/admin/guides/installation/installing-github-enterprise-on-vmware - /enterprise/admin/installation/installing-github-enterprise-server-on-vmware - /admin/installation/installing-github-enterprise-server-on-vmware versions: @@ -16,45 +16,44 @@ topics: - Enterprise - Infrastructure - Set up -shortTitle: 在 VMware 上安装 +shortTitle: Install on VMware --- - -## 基本要求 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- 您必须为将要运行 {% data variables.product.product_location %} 的裸金属机应用 VMware vSphere ESXi Hypervisor。 我们支持版本 5.5 到 6.7。 ESXi Hypervisor 免费提供,不包含(可选)vCenter Server。 更多信息请参阅 [VMware ESXi 文档](https://www.vmware.com/products/esxi-and-esx.html)。 -- 您将需要访问 vSphere Client。 如果您有 vCenter Server,可以使用 vSphere Web Client。 更多信息请参阅 VMware 指南“[使用 vSphere Web Client 登录 vCenter Server](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)”。 +- You must have a VMware vSphere ESXi Hypervisor, applied to a bare metal machine that will run {% data variables.product.product_location %}s. We support versions 5.5 through 6.7. The ESXi Hypervisor is free and does not include the (optional) vCenter Server. For more information, see [the VMware ESXi documentation](https://www.vmware.com/products/esxi-and-esx.html). +- You will need access to a vSphere Client. If you have vCenter Server you can use the vSphere Web Client. For more information, see the VMware guide "[Log in to vCenter Server by Using the vSphere Web Client](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.install.doc/GUID-CE128B59-E236-45FF-9976-D134DADC8178.html)." -## 硬件考量因素 +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## 下载 {% data variables.product.prodname_ghe_server %} 映像 +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. 选择 {% data variables.product.prodname_dotcom %} 内部部署,然后单击 **VMware ESXi/vSphere (OVA)**。 -5. 单击 **Download for VMware ESXi/vSphere (OVA)**。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **VMware ESXi/vSphere (OVA)**. +5. Click **Download for VMware ESXi/vSphere (OVA)**. -## 创建 {% data variables.product.prodname_ghe_server %} 实例 +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. 使用 vSphere Windows Client 或 vCenter Web Client 导入您下载的 {% data variables.product.prodname_ghe_server %} 映像。 有关说明,请参阅 VMware 指南“[部署 OVF 或 OVA 模板](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)”。 - - 选择数据存储时,请选择空间足以容纳 VM 磁盘的数据存储。 有关建议为实例使用的最低硬件规格,请参阅“[硬件考量因素](#hardware-considerations)”。 建议采用支持延迟归零的密集预配。 - - 让 **Power on after deployment** 框保持取消选中状态,因为您需要在配置 VM 后为仓库数据添加连接的存储卷。 -{% data reusables.enterprise_installation.create-attached-storage-volume %} 有关说明,请参阅 VMware 指南“[向虚拟机添加新硬盘](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)”。 +1. Using the vSphere Windows Client or the vCenter Web Client, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the VMware guide "[Deploy an OVF or OVA Template](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-17BEDA21-43F6-41F4-8FB2-E01D275FE9B4.html)." + - When selecting a datastore, choose one with sufficient space to host the VM's disks. For the minimum hardware specifications recommended for your instance size, see "[Hardware considerations](#hardware-considerations)." We recommend thick provisioning with lazy zeroing. + - Leave the **Power on after deployment** box unchecked, as you will need to add an attached storage volume for your repository data after provisioning the VM. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the VMware guide "[Add a New Hard Disk to a Virtual Machine](https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vm_admin.doc/GUID-F4917C61-3D24-4DB9-B347-B5722A84368C.html)." -## 配置 {% data variables.product.prodname_ghe_server %} 实例 +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} 更多信息请参阅“[配置 {% data variables.product.prodname_ghe_server %} 设备](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)”。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 延伸阅读 +## Further reading -- "[系统概述](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[关于升级到新版本](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md index c896f510d8..0f2545636d 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-xenserver.md @@ -1,63 +1,63 @@ --- -title: 在 XenServer 上安装 GitHub Enterprise Server -intro: '要在 XenServer 上安装 {% data variables.product.prodname_ghe_server %},您必须先将 {% data variables.product.prodname_ghe_server %} 磁盘映像部署到 XenServer 主机。' +title: Installing GitHub Enterprise Server on XenServer +intro: 'To install {% data variables.product.prodname_ghe_server %} on XenServer, you must deploy the {% data variables.product.prodname_ghe_server %} disk image to a XenServer host.' redirect_from: - - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver/ + - /enterprise/admin/guides/installation/installing-github-enterprise-on-xenserver - /enterprise/admin/installation/installing-github-enterprise-server-on-xenserver - /admin/installation/installing-github-enterprise-server-on-xenserver versions: - ghes: <=3.2 + ghes: '<=3.2' type: tutorial topics: - Administrator - Enterprise - Infrastructure - Set up -shortTitle: 在 XenServer 上安装 +shortTitle: Install on XenServer --- {% note %} - **注意:**XenServer 上对 {% data variables.product.prodname_ghe_server %} 的支持将在 {% data variables.product.prodname_ghe_server %} 3.3 中停止。 更多信息请参阅 [{% data variables.product.prodname_ghe_server %} 3.1 版本说明](/admin/release-notes#3.1.0) + **Note:** Support for {% data variables.product.prodname_ghe_server %} on XenServer will be discontinued in {% data variables.product.prodname_ghe_server %} 3.3. For more information, see the [{% data variables.product.prodname_ghe_server %} 3.1 release notes](/admin/release-notes#3.1.0) {% endnote %} -## 基本要求 +## Prerequisites - {% data reusables.enterprise_installation.software-license %} -- 您必须在将要运行 {% data variables.product.prodname_ghe_server %} 虚拟机 (VM) 的机器上安装 XenServer Hypervisor 。 我们支持版本 6.0 到 7.0。 -- 我们建议使用 XenCenter Windows Management Console 进行初始设置。 下文介绍了使用 XenCenter Windows Management Console 的说明。 更多信息请参阅 Citrix 指南“[如何下载和安装 XenCenter](https://support.citrix.com/article/CTX118531)”。 +- You must install the XenServer Hypervisor on the machine that will run your {% data variables.product.prodname_ghe_server %} virtual machine (VM). We support versions 6.0 through 7.0. +- We recommend using the XenCenter Windows Management Console for initial setup. Instructions using the XenCenter Windows Management Console are included below. For more information, see the Citrix guide "[How to Download and Install a New Version of XenCenter](https://support.citrix.com/article/CTX118531)." -## 硬件考量因素 +## Hardware considerations {% data reusables.enterprise_installation.hardware-considerations-all-platforms %} -## 下载 {% data variables.product.prodname_ghe_server %} 映像 +## Downloading the {% data variables.product.prodname_ghe_server %} image {% data reusables.enterprise_installation.enterprise-download-procedural %} {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. 选择 {% data variables.product.prodname_dotcom %} 内部部署,然后单击 **XenServer (VHD)**。 -5. 要下载许可文件,请单击 **Download license**。 +4. Select {% data variables.product.prodname_dotcom %} On-premises, then click **XenServer (VHD)**. +5. To download your license file, click **Download license**. -## 创建 {% data variables.product.prodname_ghe_server %} 实例 +## Creating the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.create-ghe-instance %} -1. 在 XenCenter 中,导入您下载的 {% data variables.product.prodname_ghe_server %} 映像。 有关说明,请参阅 XenCenter 指南“[导入磁盘映像](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)”。 - - 对于“启用操作系统修复”步骤,请选择 **Don't use Operating System Fixup**。 - - 完成后使 VM 保持关机状态。 -{% data reusables.enterprise_installation.create-attached-storage-volume %} 有关说明,请参阅 XenCenter 指南“[添加虚拟磁盘](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)”。 +1. In XenCenter, import the {% data variables.product.prodname_ghe_server %} image you downloaded. For instructions, see the XenCenter guide "[Import Disk Images](https://docs.citrix.com/en-us/xencenter/current-release/vms-importdiskimage.html)." + - For the "Enable Operating System Fixup" step, select **Don't use Operating System Fixup**. + - Leave the VM powered off when you're finished. +{% data reusables.enterprise_installation.create-attached-storage-volume %} For instructions, see the XenCenter guide "[Add Virtual Disks](https://docs.citrix.com/en-us/xencenter/current-release/vms-storage-addnewdisk.html)." -## 配置 {% data variables.product.prodname_ghe_server %} 实例 +## Configuring the {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.copy-the-vm-public-dns-name %} {% data reusables.enterprise_installation.upload-a-license-file %} -{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} 更多信息请参阅“[配置 {% data variables.product.prodname_ghe_server %} 设备](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)”。 +{% data reusables.enterprise_installation.save-settings-in-web-based-mgmt-console %} For more information, see "[Configuring the {% data variables.product.prodname_ghe_server %} appliance](/enterprise/admin/guides/installation/configuring-the-github-enterprise-server-appliance)." {% data reusables.enterprise_installation.instance-will-restart-automatically %} {% data reusables.enterprise_installation.visit-your-instance %} -## 延伸阅读 +## Further reading -- "[系统概述](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} -- "[关于升级到新版本](/admin/overview/about-upgrades-to-new-releases)"{% endif %} +- "[System overview](/enterprise/admin/guides/installation/system-overview)"{% ifversion ghes %} +- "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)"{% endif %} diff --git a/translations/zh-CN/content/admin/overview/about-enterprise-accounts.md b/translations/zh-CN/content/admin/overview/about-enterprise-accounts.md index fae7b08ba4..8b277fe208 100644 --- a/translations/zh-CN/content/admin/overview/about-enterprise-accounts.md +++ b/translations/zh-CN/content/admin/overview/about-enterprise-accounts.md @@ -2,7 +2,7 @@ title: About enterprise accounts intro: 'With {% data variables.product.product_name %}, you can use an enterprise account to {% ifversion ghec %}enable collaboration between your organizations, while giving{% elsif ghes or ghae %}give{% endif %} administrators a single point of visibility and management.' redirect_from: - - /articles/about-github-business-accounts/ + - /articles/about-github-business-accounts - /articles/about-enterprise-accounts - /enterprise/admin/installation/about-enterprise-accounts - /enterprise/admin/overview/about-enterprise-accounts diff --git a/translations/zh-CN/content/admin/overview/about-the-github-enterprise-api.md b/translations/zh-CN/content/admin/overview/about-the-github-enterprise-api.md index 09acb93703..13c1255fff 100644 --- a/translations/zh-CN/content/admin/overview/about-the-github-enterprise-api.md +++ b/translations/zh-CN/content/admin/overview/about-the-github-enterprise-api.md @@ -1,11 +1,11 @@ --- -title: 关于 GitHub Enterprise API -intro: '{% data variables.product.product_name %} 支持 REST 和 GraphQL API。' +title: About the GitHub Enterprise API +intro: '{% data variables.product.product_name %} supports REST and GraphQL APIs.' redirect_from: - /enterprise/admin/installation/about-the-github-enterprise-server-api - - /enterprise/admin/articles/about-the-enterprise-api/ - - /enterprise/admin/articles/using-the-api/ - - /enterprise/admin/categories/api/ + - /enterprise/admin/articles/about-the-enterprise-api + - /enterprise/admin/articles/using-the-api + - /enterprise/admin/categories/api - /enterprise/admin/overview/about-the-github-enterprise-server-api - /admin/overview/about-the-github-enterprise-server-api versions: @@ -16,12 +16,12 @@ topics: shortTitle: GitHub Enterprise API --- -利用 API,您可以自动处理多种管理任务。 包含以下例子: +With the APIs, you can automate many administrative tasks. Some examples include: {% ifversion ghes %} -- 对 {% data variables.enterprise.management_console %} 进行更改。 更多信息请参阅“[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)”。 -- 配置 LDAP 同步。 更多信息请参阅“[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)”。{% endif %} -- 收集关于企业的统计信息。 更多信息请参阅“[管理统计](/rest/reference/enterprise-admin#admin-stats)”。 -- 管理企业帐户。 更多信息请参阅“[企业帐户](/graphql/guides/managing-enterprise-accounts)”。 +- Perform changes to the {% data variables.enterprise.management_console %}. For more information, see "[{% data variables.enterprise.management_console %}](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#management-console)." +- Configure LDAP sync. For more information, see "[LDAP](/enterprise/{{ currentVersion }}/user/rest/reference/enterprise-admin#ldap)."{% endif %} +- Collect statistics about your enterprise. For more information, see "[Admin stats](/rest/reference/enterprise-admin#admin-stats)." +- Manage your enterprise account. For more information, see "[Enterprise accounts](/graphql/guides/managing-enterprise-accounts)." -有关 {% data variables.product.prodname_enterprise_api %} 的完整文档,请参阅 [{% data variables.product.prodname_dotcom %} REST API](/rest) and [{% data variables.product.prodname_dotcom%} GraphQL API](/graphql)。 +For the complete documentation for {% data variables.product.prodname_enterprise_api %}, see [{% data variables.product.prodname_dotcom %} REST API](/rest) and [{% data variables.product.prodname_dotcom%} GraphQL API](/graphql). diff --git a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md index 77cfd17b98..3756eb9670 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: 'You can enforce policies for dependency insights within your enterprise' permissions: Enterprise owners can enforce policies for dependency insights in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-a-policy-on-dependency-insights/ + - /articles/enforcing-a-policy-on-dependency-insights - /articles/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-a-policy-on-dependency-insights-in-your-enterprise-account @@ -22,14 +22,16 @@ shortTitle: Policies for dependency insights ## About policies for dependency insights in your enterprise -Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. 更多信息请参阅“[查看用于组织的洞见](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)”。 +Dependency insights show all packages that repositories within your enterprise's organizations depend on. Dependency insights include aggregated information about security advisories and licenses. For more information, see "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)." ## Enforcing a policy for visibility of dependency insights -Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. 更多信息请参阅“[更改组织依赖项洞察的可见性](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)”。 +Across all organizations owned by your enterprise, you can control whether organization members can view dependency insights. You can also allow owners to administer the setting on the organization level. For more information, see "[Changing the visibility of your organization's dependency insights](/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. In the left sidebar, click **Organizations**. ![Organizations tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-policies-org-tab.png) -4. 在“Organization policies”(组织政策)下。审查有关更改设置的信息。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. 在“Organization projects”(组织项目)下,使用下拉菜单并选择策略。 ![带有组织策略选项的下拉菜单](/assets/images/help/business-accounts/organization-policy-drop-down.png) +3. In the left sidebar, click **Organizations**. + ![Organizations tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-policies-org-tab.png) +4. Under "Organization policies", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization policies", use the drop-down menu and choose a policy. + ![Drop-down menu with organization policies options](/assets/images/help/business-accounts/organization-policy-drop-down.png) 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 c4ca06301d..580c1dcf78 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 @@ -5,8 +5,8 @@ permissions: Enterprise owners can enforce policies for security settings in an product: '{% data reusables.gated-features.enterprise-accounts %}' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/enforcing-security-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-security-settings-for-organizations-in-your-business-account + - /articles/enforcing-security-settings-for-organizations-in-your-enterprise-account - /articles/enforcing-security-settings-in-your-enterprise-account - /github/articles/managing-allowed-ip-addresses-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-security-settings-in-your-enterprise-account @@ -34,27 +34,29 @@ You can enforce policies to control the security settings for organizations owne 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 personal accounts. -Before you can require 2FA for all organizations owned by your enterprise, you must enable two-factor authentication for your own account. 更多信息请参阅“[使用双重身份验证 (2FA) 保护您的帐户](/articles/securing-your-account-with-two-factor-authentication-2fa/)”。 +Before you can require 2FA for all organizations owned by your enterprise, you must enable two-factor authentication for your own account. For more information, see "[Securing your account with two-factor authentication (2FA)](/articles/securing-your-account-with-two-factor-authentication-2fa/)." {% warning %} -**警告:** +**Warnings:** -- When you require two-factor authentication for your enterprise, members, outside collaborators, and billing managers (including bot accounts) in all organizations owned by your enterprise who do not use 2FA will be removed from the organization and lose access to its repositories. 他们还会失去对组织私有仓库的复刻的访问权限。 如果他们在从您的组织中删除后的三个月内为其个人帐户启用双重身份验证,您可以恢复其访问权限和设置。 更多信息请参阅“[恢复组织的前成员](/articles/reinstating-a-former-member-of-your-organization)”。 +- When you require two-factor authentication for your enterprise, members, outside collaborators, and billing managers (including bot accounts) in all organizations owned by your enterprise who do not use 2FA will be removed from the organization and lose access to its repositories. They will also lose access to their forks of the organization's private repositories. You can reinstate their access privileges and settings if they enable two-factor authentication for their personal account within three months of their removal from your organization. For more information, see "[Reinstating a former member of 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 personal 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 personal account without disabling required two-factor authentication for the enterprise. {% endwarning %} -在您要求使用双重身份验证之前,我们建议通知组织成员、外部协作者和帐单管理员,并要求他们为帐户设置双重身份验证。 组织所有者可以查看成员和外部协作者是否已在每个组织的 People(人员)页面上使用 2FA。 更多信息请参阅“[查看组织中的用户是否已启用 2FA](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)”。 +Before you require use of two-factor authentication, we recommend notifying organization members, outside collaborators, and billing managers and asking them to set up 2FA for their accounts. Organization owners can see if members and outside collaborators already use 2FA on each organization's People page. For more information, see "[Viewing whether users in your organization have 2FA enabled](/articles/viewing-whether-users-in-your-organization-have-2fa-enabled)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -4. 在“Two-factor authentication(双重身份验证)”下,审查有关更改设置的信息。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. 在“Two-factor authentication(双重身份验证)”下,选择 **Require two-factor authentication for all organizations in your business(对您企业中的所有组织要求双重身份验证)**,然后单击 **Save(保存)**。 ![要求双重身份验证的复选框](/assets/images/help/business-accounts/require-2fa-checkbox.png) -6. If prompted, read the information about members and outside collaborators who will be removed from the organizations owned by your enterprise. To confirm the change, type your enterprise's name, then click **Remove members & require two-factor authentication**. ![确认双重实施框](/assets/images/help/business-accounts/confirm-require-2fa.png) -7. Optionally, if any members or outside collaborators are removed from the organizations owned by your enterprise, we recommend sending them an invitation to reinstate their former privileges and access to your organization. 每个人都必须启用双重身份验证,然后才能接受您的邀请。 +4. Under "Two-factor authentication", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Two-factor authentication", select **Require two-factor authentication for all organizations in your business**, then click **Save**. + ![Checkbox to require two-factor authentication](/assets/images/help/business-accounts/require-2fa-checkbox.png) +6. If prompted, read the information about members and outside collaborators who will be removed from the organizations owned by your enterprise. To confirm the change, type your enterprise's name, then click **Remove members & require two-factor authentication**. + ![Confirm two-factor enforcement box](/assets/images/help/business-accounts/confirm-require-2fa.png) +7. Optionally, if any members or outside collaborators are removed from the organizations owned by your enterprise, we recommend sending them an invitation to reinstate their former privileges and access to your organization. Each person must enable two-factor authentication before they can accept your invitation. {% endif %} @@ -64,7 +66,7 @@ Before you can require 2FA for all organizations owned by your enterprise, you m {% ifversion ghae %} -You can restrict network traffic to your enterprise on {% data variables.product.product_name %}. 更多信息请参阅“[限制到企业的网络流量](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)”。 +You can restrict network traffic to your enterprise on {% data variables.product.product_name %}. For more information, see "[Restricting network traffic to your enterprise](/admin/configuration/configuring-your-enterprise/restricting-network-traffic-to-your-enterprise)." {% elsif ghec %} @@ -72,11 +74,11 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-cidr-notation %} -{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} +{% data reusables.identity-and-permissions.ip-allow-lists-enable %} {% data reusables.identity-and-permissions.ip-allow-lists-enterprise %} -您还可以为单个组织配置允许的 IP 地址。 更多信息请参阅“[管理组织允许的 IP 地址](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)”。 +You can also configure allowed IP addresses for an individual organization. For more information, see "[Managing allowed IP addresses for your organization](/organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization)." -### 添加允许的 IP 地址 +### Adding an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -85,19 +87,20 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-add-description %} {% data reusables.identity-and-permissions.ip-allow-lists-add-entry %} -### 允许 {% data variables.product.prodname_github_apps %} 访问 +### Allowing access by {% data variables.product.prodname_github_apps %} {% data reusables.identity-and-permissions.ip-allow-lists-githubapps-enterprise %} -### 启用允许的 IP 地址 +### Enabling allowed IP addresses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.security-tab %} -3. 在“IP allow list(IP 允许列表)”下,选择 **Enable IP allow list(启用 IP 允许列表)**。 ![允许 IP 地址的复选框](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) -4. 单击 **Save(保存)**。 +3. Under "IP allow list", select **Enable IP allow list**. + ![Checkbox to allow IP addresses](/assets/images/help/security/enable-ip-allowlist-enterprise-checkbox.png) +4. Click **Save**. -### 编辑允许的 IP 地址 +### Editing an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -105,9 +108,9 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-edit-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-ip %} {% data reusables.identity-and-permissions.ip-allow-lists-edit-description %} -8. 单击 **Update(更新)**。 +8. Click **Update**. -### 删除允许的 IP 地址 +### Deleting an allowed IP address {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -115,7 +118,7 @@ Enterprise owners can restrict access to assets owned by organizations in an ent {% data reusables.identity-and-permissions.ip-allow-lists-delete-entry %} {% data reusables.identity-and-permissions.ip-allow-lists-confirm-deletion %} -### 对 {% data variables.product.prodname_actions %} 使用 IP 允许列表 +### Using {% data variables.product.prodname_actions %} with an IP allow list {% data reusables.github-actions.ip-allow-list-self-hosted-runners %} @@ -125,9 +128,9 @@ Enterprise owners can restrict access to assets owned by organizations in an ent ## Managing SSH certificate authorities for your enterprise -You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %} 更多信息请参阅“[关于 SSH 认证中心](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)”。 +You can use a SSH certificate authorities (CA) to allow members of any organization owned by your enterprise to access that organization's repositories using SSH certificates you provide. {% data reusables.organizations.can-require-ssh-cert %} For more information, see "[About SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities)." -### 添加 SSH 认证中心 +### Adding an SSH certificate authority {% data reusables.organizations.add-extension-to-cert %} @@ -137,9 +140,9 @@ You can use a SSH certificate authorities (CA) to allow members of any organizat {% data reusables.organizations.new-ssh-ca %} {% data reusables.organizations.require-ssh-cert %} -### 删除 SSH 认证中心 +### Deleting an SSH certificate authority -对 CA 的删除无法撤销。 如果以后要使用同一 CA,您需要重新上传该 CA。 +Deleting a CA cannot be undone. If you want to use the same CA in the future, you'll need to upload the CA again. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} @@ -148,7 +151,7 @@ You can use a SSH certificate authorities (CA) to allow members of any organizat {% ifversion ghec or ghae %} -## 延伸阅读 +## Further reading - "[About identity and access management for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise/about-identity-and-access-management-for-your-enterprise)" diff --git a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md index 68f5757a20..251c60ac98 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for projects within your enterprise''s organiza permissions: Enterprise owners can enforce policies for project boards in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-project-board-settings-for-organizations-in-your-business-account + - /articles/enforcing-project-board-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-project-board-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-project-board-policies-in-your-enterprise-account @@ -24,24 +24,26 @@ shortTitle: Project board policies ## About policies for project boards in your enterprise -You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. 更多信息请参阅“[关于项目板](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)”。 +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage project boards. You can also allow organization owners to manage policies for project boards. For more information, see "[About project boards](/issues/organizing-your-work-with-project-boards/managing-project-boards/about-project-boards)." -## 实施组织范围项目板的策略 +## Enforcing a policy for organization-wide project boards Across all organizations owned by your enterprise, you can enable or disable organization-wide project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. 在“Organization projects”(组织项目)下,审查有关更改设置的信息。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. 在“Organization projects”(组织项目)下,使用下拉菜单并选择策略。 ![带有组织项目板策略选项的下拉菜单](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) +4. Under "Organization projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Organization projects", use the drop-down menu and choose a policy. + ![Drop-down menu with organization project board policy options](/assets/images/help/business-accounts/organization-projects-policy-drop-down.png) -## 实施仓库项目板的策略 +## Enforcing a policy for repository project boards Across all organizations owned by your enterprise, you can enable or disable repository-level project boards, or allow owners to administer the setting on the organization level. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.projects-tab %} -4. 在“Repository projects”(仓库项目)下,审查有关更改设置的信息。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. 在“Repository projects”(仓库项目)下,使用下拉菜单并选择策略。 ![带有仓库项目板策略选项的下拉菜单](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) +4. Under "Repository projects", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Repository projects", use the drop-down menu and choose a policy. + ![Drop-down menu with repository project board policy options](/assets/images/help/business-accounts/repository-projects-policy-drop-down.png) diff --git a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md index 68e7fb8975..be790e0250 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md @@ -10,26 +10,26 @@ redirect_from: - /enterprise/admin/user-management/restricting-repository-creation-in-your-instance - /enterprise/admin/user-management/preventing-users-from-deleting-organization-repositories - /enterprise/admin/installation/setting-git-push-limits - - /enterprise/admin/guides/installation/git-server-settings/ - - /enterprise/admin/articles/setting-git-push-limits/ + - /enterprise/admin/guides/installation/git-server-settings + - /enterprise/admin/articles/setting-git-push-limits - /enterprise/admin/user-management/allowing-admins-to-enable-anonymous-git-read-access-to-public-repositories - /enterprise/admin/installation/disabling-the-merge-conflict-editor-for-pull-requests-between-repositories - /enterprise/admin/developer-workflow/blocking-force-pushes-on-your-appliance - /enterprise/admin/developer-workflow/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes-to-a-repository - - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance/ - - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository/ + - /enterprise/admin/articles/blocking-force-pushes-on-your-appliance + - /enterprise/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access-to-a-repository - /enterprise/admin/user-management/preventing-users-from-changing-anonymous-git-read-access - - /enterprise/admin/articles/blocking-force-pushes-to-a-repository/ - - /enterprise/admin/articles/block-force-pushes/ - - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account/ - - /enterprise/admin/articles/blocking-force-pushes-for-an-organization/ - - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization/ + - /enterprise/admin/articles/blocking-force-pushes-to-a-repository + - /enterprise/admin/articles/block-force-pushes + - /enterprise/admin/articles/blocking-force-pushes-for-a-user-account + - /enterprise/admin/articles/blocking-force-pushes-for-an-organization + - /enterprise/admin/articles/blocking-force-pushes-to-repositories-owned-by-a-user-account-or-organization - /enterprise/admin/developer-workflow/blocking-force-pushes - /enterprise/admin/policies/enforcing-repository-management-policies-in-your-enterprise - /admin/policies/enforcing-repository-management-policies-in-your-enterprise - - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-repository-management-settings-for-organizations-in-your-business-account + - /articles/enforcing-repository-management-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-repository-management-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-repository-management-policies-in-your-enterprise-account diff --git a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md index e11ff6d9e2..14860a36f6 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-team-policies-in-your-enterprise.md @@ -4,8 +4,8 @@ intro: 'You can enforce policies for teams in your enterprise''s organizations, permissions: Enterprise owners can enforce policies for teams in an enterprise. product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - - /articles/enforcing-team-settings-for-organizations-in-your-business-account/ - - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account/ + - /articles/enforcing-team-settings-for-organizations-in-your-business-account + - /articles/enforcing-team-policies-for-organizations-in-your-enterprise-account - /articles/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/enforcing-team-policies-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/enforcing-team-policies-in-your-enterprise-account @@ -24,14 +24,16 @@ shortTitle: Team policies ## About policies for teams in your enterprise -You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. 更多信息请参阅“[关于团队](/organizations/organizing-members-into-teams/about-teams)”。 +You can enforce policies to control how members of your enterprise on {% data variables.product.product_name %} manage teams. You can also allow organization owners to manage policies for teams. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." -## 执行团队讨论策略 +## Enforcing a policy for team discussions -Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. 更多信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions/)”。 +Across all organizations owned by your enterprise, you can enable or disable team discussions, or allow owners to administer the setting on the organization level. For more information, see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions/)." {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} -3. 在左侧边栏中,单击 **Teams(团队)**。 ![Teams tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-teams-tab.png) -4. 在“Team discussions”(团队讨论)下,审查有关更改设置的信息。 {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} -5. 在“Team discussions”(团队讨论)下,使用下拉菜单并选择策略。 ![带有团队讨论策略按钮的下拉菜单](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) +3. In the left sidebar, click **Teams**. + ![Teams tab in the enterprise sidebar](/assets/images/help/business-accounts/settings-teams-tab.png) +4. Under "Team discussions", review the information about changing the setting. {% data reusables.enterprise-accounts.view-current-policy-config-orgs %} +5. Under "Team discussions", use the drop-down menu and choose a policy. + ![Drop-down menu with team discussion policy options](/assets/images/help/business-accounts/team-discussion-policy-drop-down.png) diff --git a/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md b/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md index 9b74d60545..48b09b3704 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-script.md @@ -82,14 +82,14 @@ The `$GITHUB_VIA` variable is available in the pre-receive hook environment when | Value | Action | More information | | :- | :- | :- | -| <pre>auto-merge deployment api</pre> | Automatic merge of the base branch via a deployment created with the API | "[Repositories](/rest/reference/repos#create-a-deployment)" in the REST API documentation | +| <pre>auto-merge deployment api</pre> | Automatic merge of the base branch via a deployment created with the API | "[Create a deployment](/rest/reference/deployments#create-a-deployment)" in the REST API documentation | | <pre>blob#save</pre> | Change to a file's contents in the web interface | "[Editing files](/repositories/working-with-files/managing-files/editing-files)" | -| <pre>branch merge api</pre> | Merge of a branch via the API | "[Repositories](/rest/reference/repos#merge-a-branch)" in the REST API documentation | +| <pre>branch merge api</pre> | Merge of a branch via the API | "[Merge a branch](/rest/reference/branches#merge-a-branch)" in the REST API documentation | | <pre>branches page delete button</pre> | Deletion of a branch in the web interface | "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)" | | <pre>git refs create api</pre> | Creation of a ref via the API | "[Git database](/rest/reference/git#create-a-reference)" in the REST API documentation | | <pre>git refs delete api</pre> | Deletion of a ref via the API | "[Git database](/rest/reference/git#delete-a-reference)" in the REST API documentation | | <pre>git refs update api</pre> | Update of a ref via the API | "[Git database](/rest/reference/git#update-a-reference)" in the REST API documentation | -| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Repositories](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | +| <pre>git repo contents api</pre> | Change to a file's contents via the API | "[Create or update file contents](/rest/reference/repos#create-or-update-file-contents)" in the REST API documentation | | <pre>merge base into head</pre> | Update of the topic branch from the base branch when the base branch requires strict status checks (via **Update branch** in a pull request, for example) | "[About protected branches](/github/administering-a-repository/about-protected-branches#require-status-checks-before-merging)" | | <pre>pull request branch delete button</pre> | Deletion of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#deleting-a-branch-used-for-a-pull-request)" | | <pre>pull request branch undo button</pre> | Restoration of a topic branch from a pull request in the web interface | "[Deleting and restoring branches in a pull request](/github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request#restoring-a-deleted-branch)" | diff --git a/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md b/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md index 08e4ab64be..1a2e868839 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance.md @@ -1,9 +1,9 @@ --- -title: 管理 GitHub Enterprise Server 设备上的预接收挂钩 -intro: '配置如何在 {% data variables.product.prodname_ghe_server %} 设备中使用预接收挂钩。' +title: Managing pre-receive hooks on the GitHub Enterprise Server appliance +intro: 'Configure how people will use pre-receive hooks within their {% data variables.product.prodname_ghe_server %} appliance.' redirect_from: - /enterprise/admin/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance/ + - /enterprise/admin/guides/developer-workflow/managing-pre-receive-hooks-on-the-github-enterprise-appliance - /enterprise/admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance - /admin/policies/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance versions: @@ -13,51 +13,64 @@ topics: - Enterprise - Policies - Pre-receive hooks -shortTitle: 管理预接收挂钩 +shortTitle: Manage pre-receive hooks --- - -## 创建预接收挂钩 +## Creating pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -4. 单击 **Add pre-receive hook**。 ![添加预接收挂钩](/assets/images/enterprise/site-admin-settings/add-pre-receive-hook.png) -5. 在 **Hook name** 字段中,输入要创建的挂钩的名称。 ![为预接收挂钩命名](/assets/images/enterprise/site-admin-settings/hook-name.png) -6. 从 **Environment** 下拉菜单中,选择要在其上运行挂钩的环境。 ![挂钩环境](/assets/images/enterprise/site-admin-settings/environment.png) -7. 在 **Script(脚本)**下,从 **Select hook repository(选择挂钩仓库)**下拉菜单中,选择包含预接收挂钩脚本的仓库。 从 **Select file** 下拉菜单中,选择预接收挂钩脚本的文件名。 ![挂钩脚本](/assets/images/enterprise/site-admin-settings/hook-script.png) -8. 选择 **Use the exit-status to accept or reject pushes** 以强制执行脚本。 取消选中此选项可以在忽略 exit-status 值时测试脚本。 在此模式下,脚本的输出将在命令行中对用户可见,但在 web 界面上不可见。 ![使用 exit-status](/assets/images/enterprise/site-admin-settings/use-exit-status.png) -9. 如果希望预接收挂钩在所有仓库上运行,请选择 **Enable this pre-receive hook on all repositories by default**。 ![为所有仓库启用挂钩](/assets/images/enterprise/site-admin-settings/enable-hook-all-repos.png) -10. 选择 **Administrators can enable and disable this hook(管理员可以启用和禁用此挂钩)**,以允许具有管理员或所有者权限的组织成员选择要启用还是禁用此预接收挂钩。 ![管理员启用或禁用挂钩](/assets/images/enterprise/site-admin-settings/admins-enable-hook.png) +4. Click **Add pre-receive hook**. +![Add pre-receive hook](/assets/images/enterprise/site-admin-settings/add-pre-receive-hook.png) +5. In the **Hook name** field, enter the name of the hook that you want to create. +![Name pre-receive hook](/assets/images/enterprise/site-admin-settings/hook-name.png) +6. From the **Environment** drop-down menu, select the environment on which you want the hook to run. +![Hook environment](/assets/images/enterprise/site-admin-settings/environment.png) +7. Under **Script**, from the **Select hook repository** drop-down menu, select the repository that contains your pre-receive hook script. From the **Select file** drop-down menu, select the filename of the pre-receive hook script. +![Hook script](/assets/images/enterprise/site-admin-settings/hook-script.png) +8. Select **Use the exit-status to accept or reject pushes** to enforce your script. Unselecting this option allows you to test the script while the exit-status value is ignored. In this mode, the output of the script will be visible to the user in the command-line but not on the web interface. +![Use exit-status](/assets/images/enterprise/site-admin-settings/use-exit-status.png) +9. Select **Enable this pre-receive hook on all repositories by default** if you want the pre-receive hook to run on all repositories. +![Enable hook all repositories](/assets/images/enterprise/site-admin-settings/enable-hook-all-repos.png) +10. Select **Administrators can enable and disable this hook** to allow organization members with admin or owner permissions to select whether they wish to enable or disable this pre-receive hook. +![Admins enable or disable hook](/assets/images/enterprise/site-admin-settings/admins-enable-hook.png) -## 编辑预接收挂钩 +## Editing pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -1. 在要编辑的预接收挂钩旁边,单击 {% octicon "pencil" aria-label="The edit icon" %}。 ![编辑预接收挂钩](/assets/images/enterprise/site-admin-settings/edit-pre-receive-hook.png) +1. Next to the pre-receive hook that you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. +![Edit pre-receive](/assets/images/enterprise/site-admin-settings/edit-pre-receive-hook.png) -## 删除预接收挂钩 +## Deleting pre-receive hooks {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -2. 在要删除的预接收挂钩旁边,单击 {% octicon "x" aria-label="X symbol" %}。 ![编辑预接收挂钩](/assets/images/enterprise/site-admin-settings/delete-pre-receive-hook.png) +2. Next to the pre-receive hook that you want to delete, click {% octicon "x" aria-label="X symbol" %}. +![Edit pre-receive](/assets/images/enterprise/site-admin-settings/delete-pre-receive-hook.png) -## 为组织配置预接收挂钩 +## Configure pre-receive hooks for an organization -仅当站点管理员在创建预接收挂钩时选择了 **Administrators can enable or disable this hook** 选项,组织管理员才能为组织配置挂钩权限。 要为仓库配置预接收挂钩,您必须是组织管理员或所有者。 +An organization administrator can only configure hook permissions for an organization if the site administrator selected the **Administrators can enable or disable this hook** option when they created the pre-receive hook. To configure pre-receive hooks for a repository, you must be an organization administrator or owner. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -4. 在左侧侧边栏中,单击 **Hooks**。 ![挂钩侧边栏](/assets/images/enterprise/orgs-and-teams/hooks-sidebar.png) -5. 在要配置的预接收挂钩旁边,单击 **Hook permissions** 下拉菜单。 选择要启用还是禁用预接收挂钩,或者允许仓库管理员对其进行配置。 ![挂钩权限](/assets/images/enterprise/orgs-and-teams/hook-permissions.png) +4. In the left sidebar, click **Hooks**. +![Hooks sidebar](/assets/images/enterprise/orgs-and-teams/hooks-sidebar.png) +5. Next to the pre-receive hook that you want to configure, click the **Hook permissions** drop-down menu. Select whether to enable or disable the pre-receive hook, or allow it to be configured by the repository administrators. +![Hook permissions](/assets/images/enterprise/orgs-and-teams/hook-permissions.png) -## 为仓库配置预接收挂钩 +## Configure pre-receive hooks for a repository -仅当站点管理员在创建预接收挂钩时选择了 **Administrators can enable or disable this hook** 选项,仓库所有者才能配置挂钩。 在组织中,组织所​​有者还必须选择 **Configurable** 挂钩权限。 要为仓库配置预接收挂钩,您必须是仓库所有者。 +A repository owner can only configure a hook if the site administrator selected the **Administrators can enable or disable this hook** option when they created the pre-receive hook. In an organization, the organization owner must also have selected the **Configurable** hook permission. To configure pre-receive hooks for a repository, you must be a repository owner. {% data reusables.profile.enterprise_access_profile %} -2. 单击 **Repositories**,然后选择要为其配置预接收挂钩的仓库。 ![仓库](/assets/images/enterprise/repos/repositories.png) +2. Click **Repositories** and select which repository you want to configure pre-receive hooks for. +![Repositories](/assets/images/enterprise/repos/repositories.png) {% data reusables.repositories.sidebar-settings %} -4. 在左侧边栏中,单击 **Hooks & Services**。 ![挂钩和服务](/assets/images/enterprise/repos/hooks-services.png) -5. 在要配置的预接收挂钩旁边,单击 **Hook permissions** 下拉菜单。 选择要启用还是禁用预接收挂钩。 ![仓库挂钩权限](/assets/images/enterprise/repos/repo-hook-permissions.png) +4. In the left sidebar, click **Hooks & Services**. +![Hooks and services](/assets/images/enterprise/repos/hooks-services.png) +5. Next to the pre-receive hook that you want to configure, click the **Hook permissions** drop-down menu. Select whether to enable or disable the pre-receive hook. +![Repository hook permissions](/assets/images/enterprise/repos/repo-hook-permissions.png) diff --git a/translations/zh-CN/content/admin/user-management/index.md b/translations/zh-CN/content/admin/user-management/index.md index 06a002380b..5e5f8682b2 100644 --- a/translations/zh-CN/content/admin/user-management/index.md +++ b/translations/zh-CN/content/admin/user-management/index.md @@ -1,9 +1,9 @@ --- -title: 管理用户、组织和仓库 -shortTitle: 管理用户、组织和仓库 -intro: 本指南介绍了可让用户登录您的企业的身份验证方法、如何创建组织和团队以进行仓库访问和协作,并针对用户安全提供了最佳实践建议。 +title: 'Managing users, organizations, and repositories' +shortTitle: 'Managing users, organizations, and repositories' +intro: 'This guide describes authentication methods for users signing in to your enterprise, how to create organizations and teams for repository access and collaboration, and suggested best practices for user security.' redirect_from: - - /enterprise/admin/categories/user-management/ + - /enterprise/admin/categories/user-management - /enterprise/admin/developer-workflow/using-webhooks-for-continuous-integration - /enterprise/admin/migrations - /enterprise/admin/clustering diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md index f14fc56686..f02cedf911 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/adding-people-to-teams.md @@ -1,12 +1,12 @@ --- -title: 向团队添加人员 +title: Adding people to teams redirect_from: - - /enterprise/admin/articles/adding-teams/ - - /enterprise/admin/articles/adding-or-inviting-people-to-teams/ - - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams/ + - /enterprise/admin/articles/adding-teams + - /enterprise/admin/articles/adding-or-inviting-people-to-teams + - /enterprise/admin/guides/user-management/adding-or-inviting-people-to-teams - /enterprise/admin/user-management/adding-people-to-teams - /admin/user-management/adding-people-to-teams -intro: '创建团队后,组织管理员可以将用户从 {% data variables.product.product_location %} 添加到团队并决定他们可以访问哪些仓库。' +intro: 'Once a team has been created, organization admins can add users from {% data variables.product.product_location %} to the team and determine which repositories they have access to.' versions: ghes: '*' type: how_to @@ -16,13 +16,12 @@ topics: - Teams - User account --- +Each team has its own individually defined [access permissions for repositories owned by your organization](/articles/permission-levels-for-an-organization). -每个团队都有自己单独定义的[组织所拥有仓库的访问权限](/articles/permission-levels-for-an-organization)。 +- Members with the owner role can add or remove existing organization members from all teams. +- Members of teams that give admin permissions can only modify team membership and repositories for that team. -- 具有所有者角色的成员可以向所有团队添加成员或从中移除现有组织成员。 -- 具有管理员权限的团队成员仅可以修改所属团队的成员资格和仓库。 - -## 设置团队 +## Setting up a team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -30,8 +29,8 @@ topics: {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} -## 将团队映射到 LDAP 组(例如,使用 LDAP 同步进行用户身份验证) +## Mapping teams to LDAP groups (for instances using LDAP Sync for user authentication) {% data reusables.enterprise_management_console.badge_indicator %} -要将新成员添加到已同步至 LDAP 组的团队,请将用户添加为 LDAP 组的成员,或者联系您的 LDAP 管理员。 +To add a new member to a team synced to an LDAP group, add the user as a member of the LDAP group, or contact your LDAP administrator. diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/index.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/index.md index 11ee5f9dd3..9df1581688 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/index.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/index.md @@ -1,8 +1,8 @@ --- title: Managing organizations in your enterprise redirect_from: - - /enterprise/admin/articles/adding-users-and-teams/ - - /enterprise/admin/categories/admin-bootcamp/ + - /enterprise/admin/articles/adding-users-and-teams + - /enterprise/admin/categories/admin-bootcamp - /enterprise/admin/user-management/organizations-and-teams - /enterprise/admin/user-management/managing-organizations-in-your-enterprise - /articles/managing-organizations-in-your-enterprise-account 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 b76a76f85a..10a117009a 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 @@ -1,9 +1,9 @@ --- -title: 使用 Jira 管理项目 -intro: '您可以将 Jira 与 {% data variables.product.prodname_enterprise %} 集成以进行项目管理。' +title: Managing projects using Jira +intro: 'You can integrate Jira with {% data variables.product.prodname_enterprise %} for project management.' redirect_from: - - /enterprise/admin/guides/installation/project-management-using-jira/ - - /enterprise/admin/articles/project-management-using-jira/ + - /enterprise/admin/guides/installation/project-management-using-jira + - /enterprise/admin/articles/project-management-using-jira - /enterprise/admin/developer-workflow/managing-projects-using-jira - /enterprise/admin/developer-workflow/customizing-your-instance-with-integrations - /enterprise/admin/user-management/managing-projects-using-jira @@ -14,57 +14,56 @@ type: how_to topics: - Enterprise - Project management -shortTitle: 使用 Jira 的项目管理 +shortTitle: Project management with Jira --- +## Connecting Jira to a {% data variables.product.prodname_enterprise %} organization -## 将 Jira 连接到 {% data variables.product.prodname_enterprise %} 组织 +1. Sign into your {% data variables.product.prodname_enterprise %} account at http[s]://[hostname]/login. If already signed in, click on the {% data variables.product.prodname_dotcom %} logo in the top left corner. +2. Click on your profile icon under the {% data variables.product.prodname_dotcom %} logo and select the organization you would like to connect with Jira. -1. 在 http[s]://[hostname]/login 上登录您的 {% data variables.product.prodname_enterprise %} 帐户。 如果已登录,请单击左上角的 {% data variables.product.prodname_dotcom %} 徽标。 -2. 单击 {% data variables.product.prodname_dotcom %} 徽标下的个人资料图标,然后选择您希望使用 Jira 连接的组织。 + ![Select an organization](/assets/images/enterprise/orgs-and-teams/profile-select-organization.png) - ![选择组织](/assets/images/enterprise/orgs-and-teams/profile-select-organization.png) +3. Click on the **Edit _organization name_ settings** link. -3. 单击**编辑_组织名称_设置**链接。 + ![Edit organization settings](/assets/images/enterprise/orgs-and-teams/edit-organization-settings.png) - ![编辑组织设置](/assets/images/enterprise/orgs-and-teams/edit-organization-settings.png) +4. In the left sidebar, under **Developer settings**, click **OAuth Apps**. -4. 在左侧边栏的 **Developer settings(开发者设置)**下,单击 **OAuth Apps(OAuth 应用程序)**。 + ![Select OAuth Apps](/assets/images/enterprise/orgs-and-teams/organization-dev-settings-oauth-apps.png) - ![选择 OAuth 应用程序](/assets/images/enterprise/orgs-and-teams/organization-dev-settings-oauth-apps.png) +5. Click on the **Register new application** button. -5. 单击 **Register new application(注册新应用程序)**按钮。 + ![Register new application button](/assets/images/enterprise/orgs-and-teams/register-oauth-application-button.png) - ![注册新应用程序按钮](/assets/images/enterprise/orgs-and-teams/register-oauth-application-button.png) +6. Fill in the application settings: + - In the **Application name** field, type "Jira" or any name you would like to use to identify the Jira instance. + - In the **Homepage URL** field, type the full URL of your Jira instance. + - In the **Authorization callback URL** field, type the full URL of your Jira instance. +7. Click **Register application**. +8. At the top of the page, note the **Client ID** and **Client Secret**. You will need these for configuring your Jira instance. -6. 填写应用程序设置: - - 在 **Application name(应用程序名称)** 字段中,输入 "Jira" 或您想要用来标识 Jira 实例的任何名称。 - - 在 **Homepage URL(主页 URL)**字段中,输入 Jira 实例的完整 URL。 - - 在 **Authorization callback URL(授权回叫 URL)**字段中,输入 Jira 实例的完整 URL。 -7. 单击 **Register application(注册应用程序)**。 -8. 在页面顶部,记下 **Client ID** 和 **Client Secret**。 您将需要这些信息来配置 Jira 实例。 +## Jira instance configuration -## Jira 实例配置 +1. On your Jira instance, log into an account with administrative access. +2. At the top of the page, click the settings (gear) icon and choose **Applications**. -1. 在 Jira 实例上,登录具有管理访问权限的帐户。 -2. 在页面顶部,单击设置(齿轮)图标,然后选择 **Applications(应用程序)**。 + ![Select Applications on Jira settings](/assets/images/enterprise/orgs-and-teams/jira/jira-applications.png) - ![选择 Jira 设置中的应用程序](/assets/images/enterprise/orgs-and-teams/jira/jira-applications.png) +3. In the left sidebar, under **Integrations**, click **DVCS accounts**. -3. 在左侧边栏的 **Integrations(集成)**下,单击 **DVCS accounts(DVCS 帐户)**。 + ![Jira Integrations menu - DVCS accounts](/assets/images/enterprise/orgs-and-teams/jira/jira-integrations-dvcs.png) - ![Jira 集成菜单 - DVCS 帐户](/assets/images/enterprise/orgs-and-teams/jira/jira-integrations-dvcs.png) +4. Click **Link Bitbucket Cloud or {% data variables.product.prodname_dotcom %} account**. -4. 单击**链接 Bitbucket Cloud 或 {% data variables.product.prodname_dotcom %} 帐户**。 + ![Link GitHub account to Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-link-github-account.png) - ![将 GitHub 帐户链接到 Jira](/assets/images/enterprise/orgs-and-teams/jira/jira-link-github-account.png) - -5. 在 **Add New Account** 模态中,填写您的 {% data variables.product.prodname_enterprise %} 设置: - - 从 **Host(主机)**下拉菜单中,选择 **{% data variables.product.prodname_enterprise %}**。 - - 在 **Team or User Account** 字段中,输入 {% data variables.product.prodname_enterprise %} 组织或个人帐户的名称。 - - 在 **OAuth Key** 字段中,输入 {% data variables.product.prodname_enterprise %} 开发者应用程序的客户端 ID。 - - 在 **OAuth Secret** 字段中,输入 {% data variables.product.prodname_enterprise %} 开发者应用程序的客户端密钥。 - - 如果您不想链接 {% data variables.product.prodname_enterprise %} 组织或个人帐户拥有的新仓库,请取消选择 **Auto Link New Repositories(自动链接新仓库)**。 - - 如果您不想启用智能提交,请取消选择 **Enable Smart Commits(启用智能提交)**。 - - 单击 **Add(添加)**。 -6. 查看您要授予 {% data variables.product.prodname_enterprise %} 帐户的权限,然后单击 **Authorize application**。 -7. 如有必要,请输入密码以继续。 +5. In the **Add New Account** modal, fill in your {% data variables.product.prodname_enterprise %} settings: + - From the **Host** dropdown menu, choose **{% data variables.product.prodname_enterprise %}**. + - In the **Team or User Account** field, type the name of your {% data variables.product.prodname_enterprise %} organization or personal account. + - In the **OAuth Key** field, type the Client ID of your {% data variables.product.prodname_enterprise %} developer application. + - In the **OAuth Secret** field, type the Client Secret for your {% data variables.product.prodname_enterprise %} developer application. + - If you don't want to link new repositories owned by your {% data variables.product.prodname_enterprise %} organization or personal account, deselect **Auto Link New Repositories**. + - If you don't want to enable smart commits, deselect **Enable Smart Commits**. + - Click **Add**. +6. Review the permissions you are granting to your {% data variables.product.prodname_enterprise %} account and click **Authorize application**. +7. If necessary, type your password to continue. diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md index bfe78a2b57..41cbf9b46b 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/preventing-users-from-creating-organizations.md @@ -1,11 +1,11 @@ --- -title: 阻止用户创建组织 +title: Preventing users from creating organizations redirect_from: - - /enterprise/admin/articles/preventing-users-from-creating-organizations/ - - /enterprise/admin/hidden/preventing-users-from-creating-organizations/ + - /enterprise/admin/articles/preventing-users-from-creating-organizations + - /enterprise/admin/hidden/preventing-users-from-creating-organizations - /enterprise/admin/user-management/preventing-users-from-creating-organizations - /admin/user-management/preventing-users-from-creating-organizations -intro: 您可以防止用户在您的企业中创建组织。 +intro: You can prevent users from creating organizations in your enterprise. versions: ghes: '*' ghae: '*' @@ -14,9 +14,8 @@ topics: - Enterprise - Organizations - Policies -shortTitle: 阻止创建组织 +shortTitle: Prevent organization creation --- - {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} {% data reusables.enterprise-accounts.policies-tab %} @@ -24,4 +23,5 @@ shortTitle: 阻止创建组织 {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -4. 在“Users can create organizations”下,使用下拉菜单,然后单击 **Enabled** 或 **Disabled**。 ![Users can create organizations 下拉菜单](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) +4. Under "Users can create organizations", use the drop-down menu and click **Enabled** or **Disabled**. +![Users can create organizations drop-down](/assets/images/enterprise/site-admin-settings/users-create-orgs-dropdown.png) diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md index 373f4381fc..8ee2d906ec 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise.md @@ -4,7 +4,7 @@ intro: Enterprise owners can view aggregated actions from all of the organizatio product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account/ + - /articles/viewing-the-audit-logs-for-organizations-in-your-business-account - /articles/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/viewing-the-audit-logs-for-organizations-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise-account diff --git a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md index ff100011d4..96c09af594 100644 --- a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/configuring-git-large-file-storage-for-your-enterprise.md @@ -2,15 +2,15 @@ title: Configuring Git Large File Storage for your enterprise intro: '{% data reusables.enterprise_site_admin_settings.configuring-large-file-storage-short-description %}' redirect_from: - - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise/ + - /enterprise/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise - /enterprise/admin/installation/configuring-git-large-file-storage-on-github-enterprise-server - /enterprise/admin/installation/configuring-git-large-file-storage - /enterprise/admin/installation/configuring-git-large-file-storage-to-use-a-third-party-server - /enterprise/admin/installation/migrating-to-a-different-git-large-file-storage-server - - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization/ - - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance/ - - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server/ + - /enterprise/admin/articles/configuring-git-large-file-storage-for-a-repository + - /enterprise/admin/articles/configuring-git-large-file-storage-for-every-repository-owned-by-a-user-account-or-organization + - /enterprise/admin/articles/configuring-git-large-file-storage-for-your-appliance + - /enterprise/admin/guides/installation/migrating-to-different-large-file-storage-server - /enterprise/admin/user-management/configuring-git-large-file-storage-for-your-enterprise - /admin/user-management/configuring-git-large-file-storage-for-your-enterprise versions: diff --git a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md index ab5ea772ba..e02538d16a 100644 --- a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/disabling-git-ssh-access-on-your-enterprise.md @@ -1,20 +1,20 @@ --- -title: 在企业上禁用 Git SSH 访问 +title: Disabling Git SSH access on your enterprise redirect_from: - - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account/ - - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance/ - - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/articles/disabling-ssh-access-for-an-organization/ - - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/articles/disabling-ssh-access-to-a-repository/ - - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise/ + - /enterprise/admin/hidden/disabling-ssh-access-for-a-user-account + - /enterprise/admin/articles/disabling-ssh-access-for-a-user-account + - /enterprise/admin/hidden/disabling-ssh-access-for-your-appliance + - /enterprise/admin/articles/disabling-ssh-access-for-your-appliance + - /enterprise/admin/hidden/disabling-ssh-access-for-an-organization + - /enterprise/admin/articles/disabling-ssh-access-for-an-organization + - /enterprise/admin/hidden/disabling-ssh-access-to-a-repository + - /enterprise/admin/articles/disabling-ssh-access-to-a-repository + - /enterprise/admin/guides/installation/disabling-git-ssh-access-on-github-enterprise - /enterprise/admin/installation/disabling-git-ssh-access-on-github-enterprise-server - /enterprise/admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-github-enterprise-server - /admin/user-management/disabling-git-ssh-access-on-your-enterprise -intro: 您可以阻止用户为企业上的某些仓库或所有仓库使用 Git over SSH。 +intro: You can prevent people from using Git over SSH for certain or all repositories on your enterprise. versions: ghes: '*' ghae: '*' @@ -24,10 +24,9 @@ topics: - Policies - Security - SSH -shortTitle: 对 Git 禁用 SSH +shortTitle: Disable SSH for Git --- - -## 禁止对特定仓库进行 Git SSH 访问 +## Disabling Git SSH access to a specific repository {% data reusables.enterprise_site_admin_settings.override-policy %} @@ -37,9 +36,10 @@ shortTitle: 对 Git 禁用 SSH {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -1. 在“Git SSH access”下,使用下拉菜单,然后单击 **Disabled**。 ![选择了禁用选项的 Git SSH access 下拉菜单](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) +1. Under "Git SSH access", use the drop-down menu, and click **Disabled**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-repository-setting.png) -## 禁止对用户或组织拥有的所有仓库进行 Git SSH 访问 +## Disabling Git SSH access to all repositories owned by a user or organization {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user-or-org %} @@ -47,9 +47,10 @@ shortTitle: 对 Git 禁用 SSH {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.admin-top-tab %} {% data reusables.enterprise_site_admin_settings.admin-tab %} -7. 在“Git SSH access”下,使用下拉菜单,然后单击 **Disabled**。 然后选择 **Enforce on all repositories**。 ![选择了禁用选项的 Git SSH access 下拉菜单](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-organization-setting.png) -## 禁止对企业中的所有仓库进行 Git SSH 访问 +## Disabling Git SSH access to all repositories in your enterprise {% data reusables.enterprise-accounts.access-enterprise %} {% ifversion ghes or ghae %} @@ -58,4 +59,5 @@ shortTitle: 对 Git 禁用 SSH {% data reusables.enterprise-accounts.settings-tab %} {% endif %} {% data reusables.enterprise-accounts.options-tab %} -7. 在“Git SSH access”下,使用下拉菜单,然后单击 **Disabled**。 然后选择 **Enforce on all repositories**。 ![选择了禁用选项的 Git SSH access 下拉菜单](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) +7. Under "Git SSH access", use the drop-down menu, and click **Disabled**. Then, select **Enforce on all repositories**. + ![Git SSH access drop-down menu with disabled option selected](/assets/images/enterprise/site-admin-settings/git-ssh-access-appliance-setting.png) diff --git a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md index a21efc63d0..90b442a4b8 100644 --- a/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md +++ b/translations/zh-CN/content/admin/user-management/managing-repositories-in-your-enterprise/troubleshooting-service-hooks.md @@ -1,8 +1,8 @@ --- -title: 排查服务挂钩问题 -intro: 如果没有交付有效负载,请检查这些常见问题。 +title: Troubleshooting service hooks +intro: 'If payloads aren''t being delivered, check for these common problems.' redirect_from: - - /enterprise/admin/articles/troubleshooting-service-hooks/ + - /enterprise/admin/articles/troubleshooting-service-hooks - /enterprise/admin/developer-workflow/troubleshooting-service-hooks - /enterprise/admin/user-management/troubleshooting-service-hooks - /admin/user-management/troubleshooting-service-hooks @@ -11,33 +11,38 @@ versions: ghae: '*' topics: - Enterprise -shortTitle: 服务挂钩疑难解答 +shortTitle: Troubleshoot service hooks --- +## Getting information on deliveries -## 获取有关交付的信息 - -您可以在任意仓库中找到有关所有服务挂钩交付的最后响应的信息。 +You can find information for the last response of all service hooks deliveries on any repository. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 浏览到您要调查的仓库。 -3. 单击导航侧栏中的 **Hooks** 链接。 ![挂钩侧边栏](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 单击有问题的服务挂钩下的 **Latest Delivery** 链接。 ![挂钩详情](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) -5. 在 **Remote Calls** 下,您将看到发布到远程服务器时使用的标头以及远程服务器发送回安装的响应。 +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. + ![Hook Details](/assets/images/enterprise/settings/Enterprise-Hooks-Details.png) +5. Under **Remote Calls**, you'll see the headers that were used when POSTing to the remote server along with the response that the remote server sent back to your installation. -## 查看有效负载 +## Viewing the payload {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 浏览到您要调查的仓库。 -3. 单击导航侧栏中的 **Hooks** 链接。 ![挂钩侧边栏](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 单击有问题的服务挂钩下的 **Latest Delivery** 链接。 -5. 单击 **Delivery(交付)**。 ![查看有效负载](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. Click **Delivery**. + ![Viewing the payload](/assets/images/enterprise/settings/Enterprise-Hooks-Payload.png) -## 查看过去的交付 +## Viewing past deliveries -交付存储 15 天。 +Deliveries are stored for 15 days. {% data reusables.enterprise_site_admin_settings.access-settings %} -2. 浏览到您要调查的仓库。 -3. 单击导航侧栏中的 **Hooks** 链接。 ![挂钩侧边栏](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) -4. 单击有问题的服务挂钩下的 **Latest Delivery** 链接。 -5. 要查看针对该特定挂钩的其他交付,请单击 **More for this Hook ID**: ![查看更多交付](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) +2. Browse to the repository you're investigating. +3. Click on the **Hooks** link in the navigation sidebar. + ![Hooks Sidebar](/assets/images/enterprise/settings/Enterprise-Hooks-Sidebar.png) +4. Click on the **Latest Delivery** link under the service hook having problems. +5. To view other deliveries to that specific hook, click **More for this Hook ID**: + ![Viewing more deliveries](/assets/images/enterprise/settings/Enterprise-Hooks-More-Deliveries.png) diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md index 34c436c9f5..b7fb055a49 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-ssh-keys.md @@ -1,8 +1,8 @@ --- -title: 审核 SSH 密钥 -intro: 站点管理员可以发起 SSH 密钥的实例级审核。 +title: Auditing SSH keys +intro: Site administrators can initiate an instance-wide audit of SSH keys. redirect_from: - - /enterprise/admin/articles/auditing-ssh-keys/ + - /enterprise/admin/articles/auditing-ssh-keys - /enterprise/admin/user-management/auditing-ssh-keys - /admin/user-management/auditing-ssh-keys versions: @@ -15,24 +15,23 @@ topics: - Security - SSH --- +Once initiated, the audit disables all existing SSH keys and forces users to approve or reject them before they're able to clone, pull, or push to any repositories. An audit is useful in situations where an employee or contractor leaves the company and you need to ensure that all keys are verified. -发起后,审计会禁用所有现有的 SSH 密钥并强制用户批准或拒绝它们,然后他们才能克隆、拉取任意仓库或推送至仓库。 审核在员工或合同工离开公司时十分有用,您需要确保所有密钥均已验证。 +## Initiating an audit -## 发起审核 +You can initiate an SSH key audit from the "All users" tab of the site admin dashboard: -您可以在站点管理员仪表板的“All users”选项卡中发起 SSH 密钥审核: +![Starting a public key audit](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) -![启动公钥审核](/assets/images/enterprise/security/Enterprise-Start-Key-Audit.png) +After you click the "Start public key audit" button, you'll be taken to a confirmation screen explaining what will happen next: -单击“Start public key audit”按钮后,您将转到确认屏幕,此屏幕会向您解释接下来要发生的情况: +![Confirming the audit](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) -![确认审核](/assets/images/enterprise/security/Enterprise-Begin-Audit.png) +After you click the "Begin audit" button, all SSH keys are invalidated and will require approval. You'll see a notification indicating the audit has begun. -单击“Begin audit”按钮后,所有 SSH 密钥将失效,并需要批准。 您会看到一个指示审核已开始的通知。 +## What users see -## 用户看到的内容 - -如果用户通过 SSH 执行任何 git 操作,它会失败,用户将看到以下消息: +If a user attempts to perform any git operation over SSH, it will fail and provide them with the following message: ```shell ERROR: Hi <em>username</em>. We're doing an SSH key audit. @@ -42,25 +41,25 @@ Fingerprint: ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 fatal: The remote end hung up unexpectedly ``` -在用户单击链接后,他们会被要求在帐户上批准密钥: +When they follow the link, they're asked to approve the keys on their account: -![审核密钥](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) +![Auditing keys](/assets/images/enterprise/security/Enterprise-Audit-SSH-Keys.jpg) -在用户批准或拒绝密钥后,他们将能够像以往一样与仓库进行交互。 +After they approve or reject their keys, they'll be able interact with repositories as usual. -## 添加 SSH 密钥 +## Adding an SSH key -新用户在添加 SSH 密钥时将会收到需要输入密码的提示: +New users will be prompted for their password when adding an SSH key: -![密码确认](/assets/images/help/settings/sudo_mode_popup.png) +![Password confirmation](/assets/images/help/settings/sudo_mode_popup.png) -在用户添加密钥时,他们会收到如下所示的通知电子邮件: +When a user adds a key, they'll receive a notification email that will look something like this: The following SSH key was added to your account: - + [title] ed:21:60:64:c0:dc:2b:16:0f:54:5f:2b:35:2a:94:91 - + If you believe this key was added in error, you can remove the key and disable access at the following location: - + http(s)://HOSTNAME/settings/ssh diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md index 4becf93500..b73c09ee99 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/auditing-users-across-your-enterprise.md @@ -1,8 +1,8 @@ --- -title: 审核整个企业的用户 -intro: The audit log dashboard shows site administrators the actions performed by all users and organizations across your enterprise within the current month and previous six months. 审核日志包含操作执行人、操作内容和执行时间等详细信息。 +title: Auditing users across your enterprise +intro: 'The audit log dashboard shows site administrators the actions performed by all users and organizations across your enterprise within the current month and previous six months. The audit log includes details such as who performed the action, what the action was, and when the action was performed.' redirect_from: - - /enterprise/admin/guides/user-management/auditing-users-across-an-organization/ + - /enterprise/admin/guides/user-management/auditing-users-across-an-organization - /enterprise/admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-instance - /admin/user-management/auditing-users-across-your-enterprise @@ -16,105 +16,104 @@ topics: - Organizations - Security - User account -shortTitle: 审计用户 +shortTitle: Audit users --- +## Accessing the audit log -## 访问审核日志 +The audit log dashboard gives you a visual display of audit data across your enterprise. -审核日志仪表板让您能够直观地看到企业中的审计数据。 - -![实例级审核日志仪表板](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) +![Instance wide audit log dashboard](/assets/images/enterprise/site-admin-settings/audit-log-dashboard-admin-center.png) {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -在地图中,您可以平移和缩放来查看世界范围内的事件。 将鼠标悬停在国家/地区上,可以看到该国家/地区内事件的快速盘点。 +Within the map, you can pan and zoom to see events around the world. Hover over a country to see a quick count of events from that country. -## 在企业中搜索事件 +## Searching for events across your enterprise -审核日志列出了有关企业内所执行操作的以下信息: +The audit log lists the following information about actions made within your enterprise: -* 操作发生的[仓库](#search-based-on-the-repository) -* 执行操作的[用户](#search-based-on-the-user) -* 操作所属的[组织](#search-based-on-the-organization) -* 执行的[操作](#search-based-on-the-action-performed) -* 操作发生的[国家/地区](#search-based-on-the-location) -* 操作发生的[日期和时间](#search-based-on-the-time-of-action) +* [The repository](#search-based-on-the-repository) an action was performed in +* [The user](#search-based-on-the-user) who performed the action +* [Which organization](#search-based-on-the-organization) an action pertained to +* [The action](#search-based-on-the-action-performed) that was performed +* [Which country](#search-based-on-the-location) the action took place in +* [The date and time](#search-based-on-the-time-of-action) the action occurred {% warning %} -**注意:** +**Notes:** -- 您无法使用文本搜索审核条目,但您可以使用多个筛选器构建搜索查询。 {% data variables.product.product_name %} 支持在 {% data variables.product.product_name %} 中使用多种运算符进行搜索。 更多信息请参阅“[关于在 {% data variables.product.prodname_dotcom %} 上搜索](/github/searching-for-information-on-github/about-searching-on-github)”。 +- While you can't use text to search for audit entries, you can construct search queries using a variety of filters. {% data variables.product.product_name %} supports many operators for searching across {% data variables.product.product_name %}. For more information, see "[About searching on {% data variables.product.prodname_dotcom %}](/github/searching-for-information-on-github/about-searching-on-github)." - Audit records are available for the current month and every day of the previous six months. {% endwarning %} -### 基于仓库搜索 +### Search based on the repository -`repo` 限定符可将操作限定为您的组织拥有的特定仓库。 例如: +The `repo` qualifier limits actions to a specific repository owned by your organization. For example: -* `repo:my-org/our-repo` 会找到在 `my-org` 组织的 `our-repo` 仓库中发生的所有事件。 -* `repo:my-org/our-repo repo:my-org/another-repo` 会找到在 `my-org` 组织的 `our-repo` 和 `another-repo` 仓库中发生的所有事件。 -* `-repo:my-org/not-this-repo` 会排除在 `my-org` 组织的 `not-this-repo` 仓库中发生的所有事件。 +* `repo:my-org/our-repo` finds all events that occurred for the `our-repo` repository in the `my-org` organization. +* `repo:my-org/our-repo repo:my-org/another-repo` finds all events that occurred for both the `our-repo` and `another-repo` repositories in the `my-org` organization. +* `-repo:my-org/not-this-repo` excludes all events that occurred for the `not-this-repo` repository in the `my-org` organization. -您必须在 `repo` 限定符中包含组织的名称,仅搜索 `repo:our-repo` 将不起作用。 +You must include your organization's name within the `repo` qualifier; searching for just `repo:our-repo` will not work. -### 基于用户搜索 +### Search based on the user -`actor` 限定符会将事件限定为执行操作的组织成员。 例如: +The `actor` qualifier scopes events based on the member of your organization that performed the action. For example: -* `actor:octocat` 会找到 `octocat` 执行的所有事件。 -* `actor:octocat actor:hubot` 会找到 `octocat` 和 `hubot` 执行的所有事件。 -* `-actor:hubot` 会排除 `hubot` 执行的所有事件。 +* `actor:octocat` finds all events performed by `octocat`. +* `actor:octocat actor:hubot` finds all events performed by both `octocat` and `hubot`. +* `-actor:hubot` excludes all events performed by `hubot`. -您可以仅使用 {% data variables.product.product_name %} 用户名,而不是个人的真实姓名。 +You can only use a {% data variables.product.product_name %} username, not an individual's real name. -### 基于组织搜索 +### Search based on the organization -`org` 限定符可将操作限定为特定组织。 例如: +The `org` qualifier limits actions to a specific organization. For example: -* `org:my-org` 会找到 `my-org` 组织发生的所有事件。 -* `org:my-org action:team` 会找到在 `my-org` 组织中执行的所有团队事件。 -* `-org:my-org` 会排除 `my-org` 组织发生的所有事件。 +* `org:my-org` finds all events that occurred for the `my-org` organization. +* `org:my-org action:team` finds all team events performed within the `my-org` organization. +* `-org:my-org` excludes all events that occurred for the `my-org` organization. -### 基于执行的操作搜索 +### Search based on the action performed -`action` 限定符可搜索特定事件(按类别组织)。 有关与这些类别相关的事件的信息,请参阅“[审核的操作](/admin/user-management/audited-actions)”。 +The `action` qualifier searches for specific events, grouped within categories. For information on the events associated with these categories, see "[Audited actions](/admin/user-management/audited-actions)". -| 类别名称 | 描述 | -| ------ | -------------------- | -| `挂钩` | 包含与 web 挂钩相关的所有活动。 | -| `org` | 包含与组织成员资格相关的所有活动 | -| `repo` | 包含与您的组织拥有的仓库相关的所有活动。 | -| `团队` | 包含与您的组织中的团队相关的所有活动。 | +| Category name | Description +|------------------|------------------- +| `hook` | Contains all activities related to webhooks. +| `org` | Contains all activities related organization membership +| `repo` | Contains all activities related to the repositories owned by your organization. +| `team` | Contains all activities related to teams in your organization. -您可以使用这些词搜索特定的操作集。 例如: +You can search for specific sets of actions using these terms. For example: -* `action:team` 会找到团队类别中的所有事件。 -* `-action:billing` 会排除帐单类别中的所有事件。 +* `action:team` finds all events grouped within the team category. +* `-action:billing` excludes all events in the billing category. -每个类别都有一组可进行过滤的关联事件。 例如: +Each category has a set of associated events that you can filter on. For example: -* `action:team.create` 会找到团队创建处的所有事件。 -* `-action:billing.change_email` 会排除帐单邮箱更改处的所有事件。 +* `action:team.create` finds all events where a team was created. +* `-action:billing.change_email` excludes all events where the billing email was changed. -### 基于位置搜索 +### Search based on the location -`country` 限定符可根据来源国家/地区筛选操作。 -- 您可以使用国家/地区的两字母短代码或完整名称。 -- 名称中包含空格的国家/地区必须用引号引起。 例如: - * `country:de` 会找到在德国发生的所有事件。 - * `country:Mexico` 会找到在墨西哥发生的所有事件。 - * `country:"United States"` 会找到在美国发生的所有事件。 +The `country` qualifier filters actions by the originating country. +- You can use a country's two-letter short code or its full name. +- Countries with spaces in their name must be wrapped in quotation marks. For example: + * `country:de` finds all events that occurred in Germany. + * `country:Mexico` finds all events that occurred in Mexico. + * `country:"United States"` all finds events that occurred in the United States. -### 基于操作时间搜索 +### Search based on the time of action -`created` 限定符可根据事件发生的时间筛选操作。 -- 使用 `YYYY-MM-DD` 格式定义日期,即年后面是月份,之后是具体日期。 -- 日期支持[大于、小于和范围限定符](/enterprise/{{ currentVersion }}/user/articles/search-syntax)。 例如: - * `created:2014-07-08` 会找到在 2014 年 7 月 8 日发生的所有事件。 - * `created:>=2014-07-01` 会找到在 2014 年 7 月 8 日或之后发生的所有事件。 - * `created:<=2014-07-01` 会找到在 2014 年 7 月 8 日或之前发生的所有事件。 - * `created:2014-07-01..2014-07-31` 会找到在 2014 年 7 月发生的所有事件。 +The `created` qualifier filters actions by the time they occurred. +- Define dates using the format of `YYYY-MM-DD`--that's year, followed by month, followed by day. +- Dates support [greater than, less than, and range qualifiers](/enterprise/{{ currentVersion }}/user/articles/search-syntax). For example: + * `created:2014-07-08` finds all events that occurred on July 8th, 2014. + * `created:>=2014-07-01` finds all events that occurred on or after July 8th, 2014. + * `created:<=2014-07-01` finds all events that occurred on or before July 8th, 2014. + * `created:2014-07-01..2014-07-31` finds all events that occurred in the month of July 2014. diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md index 66f0d58d59..f6396f94cc 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: 自定义企业的用户消息 -shortTitle: 自定义用户消息 +title: Customizing user messages for your enterprise +shortTitle: Customizing user messages redirect_from: - - /enterprise/admin/user-management/creating-a-custom-sign-in-message/ + - /enterprise/admin/user-management/creating-a-custom-sign-in-message - /enterprise/admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-on-your-instance - /admin/user-management/customizing-user-messages-for-your-enterprise -intro: '您可以创建用户将在 {% data variables.product.product_location %} 上看到的自定义消息。' +intro: 'You can create custom messages that users will see on {% data variables.product.product_location %}.' versions: ghes: '*' ghae: '*' @@ -15,98 +15,108 @@ topics: - Enterprise - Maintenance --- +## About user messages -## 关于用户消息 - -有几种类型的用户消息。 -- 出现在{% ifversion ghes %}登录或{% endif %}登出页面上的消息{% ifversion ghes or ghae %} -- 必须忽略在弹出窗口中出现一次的强制性消息{% endif %}{% ifversion ghes or ghae %} -- 公告横幅,出现在每个页面的顶部{% endif %} +There are several types of user messages. +- Messages that appear on the {% ifversion ghes %}sign in or {% endif %}sign out page{% ifversion ghes or ghae %} +- Mandatory messages, which appear once in a pop-up window that must be dismissed{% endif %}{% ifversion ghes or ghae %} +- Announcement banners, which appear at the top of every page{% endif %} {% ifversion ghes %} {% note %} -**注**:如果您使用 SAML 进行身份验证,登录页面将由您的身份提供程序呈现,无法通过 {% data variables.product.prodname_ghe_server %} 进行自定义。 +**Note:** If you are using SAML for authentication, the sign in page is presented by your identity provider and is not customizable via {% data variables.product.prodname_ghe_server %}. {% endnote %} -您可以使用 Markdown 格式化消息。 更多信息请参阅“[关于 {% data variables.product.prodname_dotcom %} 上的书写和格式化](/articles/about-writing-and-formatting-on-github/)”。 +You can use Markdown to format your message. For more information, see "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/articles/about-writing-and-formatting-on-github/)." -## 创建自定义登录消息 +## Creating a custom sign in message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes %}在“Sign in page(登录页面)”的右侧{% else %}下面{% endif %},单击 **Add message(添加消息)**或 **Edit message(编辑消息)**。 ![{% ifversion ghes %}添加{% else %}编辑{% endif %}消息按钮](/assets/images/enterprise/site-admin-settings/edit-message.png) -6. 在 **Sign in message** 下,输入您想要用户看到的消息。 ![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} +5. {% ifversion ghes %}To the right of{% else %}Under{% endif %} "Sign in page", click **Add message** or **Edit message**. +![{% ifversion ghes %}Add{% else %}Edit{% endif %} message button](/assets/images/enterprise/site-admin-settings/edit-message.png) +6. Under **Sign in message**, type the message you'd like users to see. +![Sign in message](/assets/images/enterprise/site-admin-settings/sign-in-message.png){% ifversion ghes %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![Preview 按钮](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) -8. 预览呈现的消息。 ![呈现的登录消息](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-in-message-preview-button.png) +8. Review the rendered message. +![Sign in message rendered](/assets/images/enterprise/site-admin-settings/sign-in-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% endif %} -## 创建自定义退出消息 +## Creating a custom sign out message {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -5. {% ifversion ghes or ghae %}在“Sign out page(登出页面)”的右侧{% else %}下面{% endif %},单击 **Add message(添加消息)**或 **Edit message(编辑消息)**。 ![Add message 按钮](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) -6. 在 **Sign out message** 下,输入您想要用户看到的消息。 ![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} +5. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Sign out page", click **Add message** or **Edit message**. +![Add message button](/assets/images/enterprise/site-admin-settings/sign-out-add-message-button.png) +6. Under **Sign out message**, type the message you'd like users to see. +![Sign two_factor_auth_header message](/assets/images/enterprise/site-admin-settings/sign-out-message.png){% ifversion ghes or ghae %} {% data reusables.enterprise_site_admin_settings.message-preview-save %}{% else %} {% data reusables.enterprise_site_admin_settings.click-preview %} - ![Preview 按钮](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) -8. 预览呈现的消息。 ![呈现的注销消息](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) + ![Preview button](/assets/images/enterprise/site-admin-settings/sign-out-message-preview-button.png) +8. Review the rendered message. +![Sign out message rendered](/assets/images/enterprise/site-admin-settings/sign-out-message-rendered.png) {% data reusables.enterprise_site_admin_settings.save-changes %}{% endif %} {% ifversion ghes or ghae %} -## 创建必读消息 +## Creating a mandatory message -您可以创建必读消息,保存后,{% data variables.product.product_name %} 将在所有用户首次登录时显示该消息。 该消息出现在弹出窗口中,用户必须忽略后才能使用 {% data variables.product.product_location %}。 +You can create a mandatory message that {% data variables.product.product_name %} will show to all users the first time they sign in after you save the message. The message appears in a pop-up window that the user must dismiss before the user can use {% data variables.product.product_location %}. -必读消息有多种用途。 +Mandatory messages have a variety of uses. -- 为新员工提供入职信息 -- 告诉用户如何获得 {% data variables.product.product_location %} 帮助 -- 确保所有用户阅读有关使用 {% data variables.product.product_location %} 的服务条款 +- Providing onboarding information for new employees +- Telling users how to get help with {% data variables.product.product_location %} +- Ensuring that all users read your terms of service for using {% data variables.product.product_location %} -如果消息中包含 Markdown 复选框,则用户必须选中所有复选框才能忽略消息。 例如,如果您在必读消息中包含服务条款,您可以要求每个用户选中复选框以确认他们阅读了这些条款。 +If you include Markdown checkboxes in the message, all checkboxes must be selected before the user can dismiss the message. For example, if you include your terms of service in the mandatory message, you can require that each user selects a checkbox to confirm the user has read the terms. -每次用户看到必读消息时,都会创建审核日志事件。 该事件包括用户看到的消息的版本。 更多信息请参阅“[已审核操作](/admin/user-management/audited-actions)”。 +Each time a user sees a mandatory message, an audit log event is created. The event includes the version of the message that the user saw. For more information see "[Audited actions](/admin/user-management/audited-actions)." {% note %} -**注意:**如果您更改了 {% data variables.product.product_location %} 的强制消息,已经确认该消息的用户将不会看到新消息。 +**Note:** If you change the mandatory message for {% data variables.product.product_location %}, users who have already acknowledged the message will not see the new message. {% endnote %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. 在“Mandatory message(必读消息)”的右侧,单击 **Add message(添加消息)**。 ![添加强制性消息按钮](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) -1. 在“Mandatory message(必读消息)”下面的文本框中输入消息。 ![强制性消息文本框](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) +1. To the right of "Mandatory message", click **Add message**. + ![Add mandatory message button](/assets/images/enterprise/site-admin-settings/add-mandatory-message-button.png) +1. Under "Mandatory message", in the text box, type your message. + ![Mandatory message text box](/assets/images/enterprise/site-admin-settings/mandatory-message-text-box.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} {% ifversion ghes or ghae %} -## 创建全局公告横幅 +## Creating a global announcement banner -您可以设置全局公告横幅,以便在每个页面顶部向所有用户显示。 +You can set a global announcement banner to be displayed to all users at the top of every page. {% ifversion ghae or ghes %} -您也可以{% ifversion ghes %} 使用命令行实用工具或{% endif %} 使用 API 在管理 shell 中设置公告横幅。 更多信息请参阅 {% ifversion ghes %}“[命令行实用工具](/enterprise/admin/configuration/command-line-utilities#ghe-announce)”和 {% endif %}“[{% data variables.product.prodname_enterprise %} 管理](/rest/reference/enterprise-admin#announcements)”。 +You can also set an announcement banner{% ifversion ghes %} in the administrative shell using a command line utility or{% endif %} using the API. For more information, see {% ifversion ghes %}"[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)" and {% endif %}"[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#announcements)." {% else %} -您还可以使用命令行工具在管理 shell 中设置公告横幅。 更多信息请参阅“[命令行实用程序](/enterprise/admin/configuration/command-line-utilities#ghe-announce)”。 +You can also set an announcement banner in the administrative shell using a command line utility. For more information, see "[Command-line utilities](/enterprise/admin/configuration/command-line-utilities#ghe-announce)." {% endif %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.messages-tab %} -1. {% ifversion ghes or ghae %}在“Announcement(公告)”的右侧{% else %}下面{% endif %},单击 **Add announcement(添加公告)**。 ![Add message 按钮](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) -1. 在“Announcement(公告)”下的在文本字段中键入要显示在横幅中的公告。 ![用于输入公告的文本字段](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) -1. (可选)在“Expires on(到期日)”下,选择日历下拉菜单并单击一个到期日。 ![用于选择到期日期的日历下拉菜单](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) +1. {% ifversion ghes or ghae %}To the right of{% else %}Under{% endif %} "Announcement", click **Add announcement**. + ![Add announcement button](/assets/images/enterprise/site-admin-settings/add-announcement-button.png) +1. Under "Announcement", in the text field, type the announcement you want displayed in a banner. + ![Text field to enter announcement](/assets/images/enterprise/site-admin-settings/announcement-text-field.png) +1. Optionally, under "Expires on", select the calendar drop-down menu and click an expiration date. + ![Calendar drop-down menu to choose expiration date](/assets/images/enterprise/site-admin-settings/expiration-drop-down.png) {% data reusables.enterprise_site_admin_settings.message-preview-save %} {% endif %} diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/index.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/index.md index 183e9a2bf0..4b8443a834 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/index.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: 管理企业中的用户 -intro: 您可以审核用户活动并管理用户设置。 +title: Managing users in your enterprise +intro: You can audit user activity and manage user settings. redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise - - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons/ + - /enterprise/admin/guides/user-management/enabling-avatars-and-identicons - /enterprise/admin/user-management/basic-account-settings - /enterprise/admin/user-management/user-security - /enterprise/admin/user-management/managing-users-in-your-enterprise @@ -33,6 +33,5 @@ children: - /auditing-ssh-keys - /customizing-user-messages-for-your-enterprise - /rebuilding-contributions-data -shortTitle: 管理用户 +shortTitle: Manage users --- - diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md index 92e65ccc49..bdb7d0b4f9 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: 邀请人员管理企业 -intro: '您可以 {% ifversion ghec %}邀请人们成为企业所有者或帐单管理员,以{% elsif ghes %}添加企业所有者到{% endif %}企业帐户。 也可以删除不再需要访问企业帐户的企业所有者{% ifversion ghec %}或帐单管理员{% endif %}。' +title: Inviting people to manage your enterprise +intro: 'You can {% ifversion ghec %}invite people to become enterprise owners or billing managers for{% elsif ghes %}add enterprise owners to{% endif %} your enterprise account. You can also remove enterprise owners {% ifversion ghec %}or billing managers {% endif %}who no longer need access to the enterprise account.' product: '{% data reusables.gated-features.enterprise-accounts %}' permissions: 'Enterprise owners can {% ifversion ghec %}invite other people to become{% elsif ghes %}add{% endif %} additional enterprise administrators.' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise - /github/setting-up-and-managing-your-enterprise-account/inviting-people-to-manage-your-enterprise-account - - /articles/inviting-people-to-collaborate-in-your-business-account/ + - /articles/inviting-people-to-collaborate-in-your-business-account - /articles/inviting-people-to-manage-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise versions: @@ -17,59 +17,64 @@ topics: - Administrator - Enterprise - User account -shortTitle: 邀请人员进行管理 +shortTitle: Invite people to manage --- -## 关于可以管理企业帐户的用户 +## About users who can manage your enterprise account -{% data reusables.enterprise-accounts.enterprise-administrators %} 更多信息请参阅“[企业中的角色](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise)”。 +{% data reusables.enterprise-accounts.enterprise-administrators %} For more information, see "[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise)." {% ifversion ghes %} -如果您想在 {% data variables.product.prodname_dotcom_the_website %} 上管理企业帐户的所有者和帐单管理员,请参阅 {% data variables.product.prodname_ghe_cloud %} 文档中的“[邀请人们管理您的企业](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)”。 +If you want to manage owners and billing managers for an enterprise account on {% data variables.product.prodname_dotcom_the_website %}, see "[Inviting people to manage your enterprise](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise)" in the {% data variables.product.prodname_ghe_cloud %} documentation. {% endif %} {% ifversion ghec %} -如果您的企业使用 {% data variables.product.prodname_emus %},企业所有者只能通过您的身份提供商添加或删除。 更多信息请参阅“[关于 {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)”。 +If your enterprise uses {% data variables.product.prodname_emus %}, enterprise owners can only be added or removed through your identity provider. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." {% endif %} {% tip %} -**提示:**有关管理企业帐户拥有的组织中用户的更多信息,请参阅“[管理组织中的成员资格](/articles/managing-membership-in-your-organization)”和“[通过角色管理人们对组织的访问](/articles/managing-peoples-access-to-your-organization-with-roles)”。 +**Tip:** For more information on managing users within an organization owned by your enterprise account, see "[Managing membership in your organization](/articles/managing-membership-in-your-organization)" and "[Managing people's access to your organization with roles](/articles/managing-peoples-access-to-your-organization-with-roles)." {% endtip %} -## {% ifversion ghec %}邀请{% elsif ghes %}添加{% endif %} 企业管理员到您的企业帐户 +## {% ifversion ghec %}Inviting{% elsif ghes %}Adding{% endif %} an enterprise administrator to your enterprise account -{% ifversion ghec %}在邀请别人加入企业帐户后,他们必须接受电子邮件邀请,然后才可访问企业帐户。 Pending invitations will expire after 7 days.{% endif %} +{% ifversion ghec %}After you invite someone to join the enterprise account, they must accept the emailed invitation before they can access the enterprise account. Pending invitations will expire after 7 days.{% endif %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} -1. 在左侧边栏中,单击 **Administrators(管理员)**。 ![左侧边栏中的管理员选项卡](/assets/images/help/business-accounts/administrators-tab.png) -1. 在管理员列表上方,单击 {% ifversion ghec %}**邀请管理员**{% elsif ghes %}**添加所有者**{% endif %}。 +1. In the left sidebar, click **Administrators**. + ![Administrators tab in the left sidebar](/assets/images/help/business-accounts/administrators-tab.png) +1. Above the list of administrators, click {% ifversion ghec %}**Invite admin**{% elsif ghes %}**Add owner**{% endif %}. {% ifversion ghec %} - ![企业所有者列表上方的"邀请管理员"按钮](/assets/images/help/business-accounts/invite-admin-button.png) + !["Invite admin" button above the list of enterprise owners](/assets/images/help/business-accounts/invite-admin-button.png) {% elsif ghes %} - ![企业所有者列表上方的"添加所有者"按钮](/assets/images/help/business-accounts/add-owner-button.png) + !["Add owner" button above the list of enterprise owners](/assets/images/help/business-accounts/add-owner-button.png) {% endif %} -1. 输入您要邀请其成为企业管理员的人员的用户名、全名或电子邮件地址,然后从结果中选择适当的人员。 ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} -1. 选择 **Owner(所有者)**或 **Billing Manager(帐单管理员)**。 ![角色选择模态框](/assets/images/help/business-accounts/invite-admins-roles.png) -1. 单击 **Send Invitation(发送邀请)**。 ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} -1. 单击 **Add(添加)**。 !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} +1. Type the username, full name, or email address of the person you want to invite to become an enterprise administrator, then select the appropriate person from the results. + ![Modal box with field to type a person's username, full name, or email address, and Invite button](/assets/images/help/business-accounts/invite-admins-modal-button.png){% ifversion ghec %} +1. Select **Owner** or **Billing Manager**. + ![Modal box with role choices](/assets/images/help/business-accounts/invite-admins-roles.png) +1. Click **Send Invitation**. + ![Send invitation button](/assets/images/help/business-accounts/invite-admins-send-invitation.png){% endif %}{% ifversion ghes %} +1. Click **Add**. + !["Add" button](/assets/images/help/business-accounts/add-administrator-add-button.png){% endif %} -## 从企业帐户删除企业管理员 +## Removing an enterprise administrator from your enterprise account -只有企业所有者才可从企业帐户删除其他企业管理员。 +Only enterprise owners can remove other enterprise administrators from the enterprise account. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.people-tab %} -1. 在您要删除的人员用户名旁边,单击 {% octicon "gear" aria-label="The Settings gear" %},然后单击 **Remove owner(删除所有者)**{% ifversion ghec %} 或**Remove billing manager(删除帐单管理员)**。{% endif %} +1. Next to the username of the person you'd like to remove, click {% octicon "gear" aria-label="The Settings gear" %}, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. {% ifversion ghec %} - ![包含删除企业管理员的菜单选项的设置齿轮](/assets/images/help/business-accounts/remove-admin.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/remove-admin.png) {% elsif ghes %} - ![包含删除企业管理员的菜单选项的设置齿轮](/assets/images/help/business-accounts/ghes-remove-owner.png) + ![Settings gear with menu option to remove an enterprise administrator](/assets/images/help/business-accounts/ghes-remove-owner.png) {% endif %} -1. 阅读确认,然后单击 **Remove owner(删除所有者)**{% ifversion ghec %} 或 **Remove billing manager(删除帐单管理员)**{% endif %}。 +1. Read the confirmation, then click **Remove owner**{% ifversion ghec %} or **Remove billing manager**{% endif %}. diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md index 8ddf0ae345..ce92ba1dc4 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/managing-dormant-users.md @@ -1,9 +1,9 @@ --- -title: 管理休眠用户 +title: Managing dormant users redirect_from: - - /enterprise/admin/articles/dormant-users/ - - /enterprise/admin/articles/viewing-dormant-users/ - - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant/ + - /enterprise/admin/articles/dormant-users + - /enterprise/admin/articles/viewing-dormant-users + - /enterprise/admin/articles/determining-whether-a-user-account-is-dormant - /enterprise/admin/user-management/managing-dormant-users - /admin/user-management/managing-dormant-users intro: '{% data reusables.enterprise-accounts.dormant-user-activity-threshold %}' @@ -17,26 +17,29 @@ topics: - Enterprise - Licensing --- - {% data reusables.enterprise-accounts.dormant-user-activity %} {% ifversion ghes or ghae%} -## 查看休眠用户 +## Viewing dormant users {% data reusables.enterprise-accounts.viewing-dormant-users %} {% data reusables.enterprise_site_admin_settings.access-settings %} -3. 在左侧边栏中,单击 **Dormant users**。 ![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} -4. 要挂起此列表中的所有休眠用户,请在页面顶部单击 **Suspend all**。 ![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} +3. In the left sidebar, click **Dormant users**. +![Dormant users tab](/assets/images/enterprise/site-admin-settings/dormant-users-tab.png){% ifversion ghes %} +4. To suspend all the dormant users in this list, at the top of the page, click **Suspend all**. +![Suspend all button](/assets/images/enterprise/site-admin-settings/suspend-all.png){% endif %} -## 确定用户帐户是否休眠 +## Determining whether a user account is dormant {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.search-user %} {% data reusables.enterprise_site_admin_settings.click-user %} -5. 在 **User info** 部分中,后面为“Dormant”的红点表示该用户帐户为休眠状态,后面为“Active”的绿点表示该用户帐户处于活跃状态。 ![Dormant 用户帐户](/assets/images/enterprise/stafftools/dormant-user.png) ![Active 用户帐户](/assets/images/enterprise/stafftools/active-user.png) +5. In the **User info** section, a red dot with the word "Dormant" indicates the user account is dormant, and a green dot with the word "Active" indicates the user account is active. +![Dormant user account](/assets/images/enterprise/stafftools/dormant-user.png) +![Active user account](/assets/images/enterprise/stafftools/active-user.png) -## 配置休眠阈值 +## Configuring the dormancy threshold {% data reusables.enterprise_site_admin_settings.dormancy-threshold %} @@ -44,7 +47,8 @@ topics: {% data reusables.enterprise-accounts.policies-tab %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.options-tab %} -4. 在“Dormancy threshold”,使用下拉菜单,然后单击所需的休眠阈值。 ![Dormancy threshold 下拉菜单](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) +4. Under "Dormancy threshold", use the drop-down menu, and click the desired dormancy threshold. +![The Dormancy threshold drop-down menu](/assets/images/enterprise/site-admin-settings/dormancy-threshold-menu.png) {% endif %} @@ -62,6 +66,7 @@ topics: {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.enterprise-accounts-compliance-tab %} -1. To download your Dormant Users (beta) report as a CSV file, under "Other", click {% octicon "download" aria-label="The Download icon" %} **Download**. ![Download button under "Other" on the Compliance page](/assets/images/help/business-accounts/dormant-users-download-button.png) +1. To download your Dormant Users (beta) report as a CSV file, under "Other", click {% octicon "download" aria-label="The Download icon" %} **Download**. + ![Download button under "Other" on the Compliance page](/assets/images/help/business-accounts/dormant-users-download-button.png) {% endif %} diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md index 780a4f4191..0227145d68 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/promoting-or-demoting-a-site-administrator.md @@ -1,8 +1,8 @@ --- title: Promoting or demoting a site administrator redirect_from: - - /enterprise/admin/articles/promoting-a-site-administrator/ - - /enterprise/admin/articles/demoting-a-site-administrator/ + - /enterprise/admin/articles/promoting-a-site-administrator + - /enterprise/admin/articles/demoting-a-site-administrator - /enterprise/admin/user-management/promoting-or-demoting-a-site-administrator - /admin/user-management/promoting-or-demoting-a-site-administrator intro: 'Site administrators can promote any normal user account to a site administrator, as well as demote other site administrators to regular users.' diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md index 5665ba56e5..fc57c1bf12 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/rebuilding-contributions-data.md @@ -1,8 +1,8 @@ --- -title: 重构贡献数据 -intro: 您可以重构贡献数据,将现有提交链接到用户帐户。 +title: Rebuilding contributions data +intro: You may need to rebuild contributions data to link existing commits to a user account. redirect_from: - - /enterprise/admin/articles/rebuilding-contributions-data/ + - /enterprise/admin/articles/rebuilding-contributions-data - /enterprise/admin/user-management/rebuilding-contributions-data - /admin/user-management/rebuilding-contributions-data versions: @@ -12,15 +12,16 @@ topics: - Enterprise - Repositories - User account -shortTitle: 重建贡献 +shortTitle: Rebuild contributions --- +Whenever a commit is pushed to {% data variables.product.prodname_enterprise %}, it is linked to a user account if they are both associated with the same email address. However, existing commits are *not* retroactively linked when a user registers a new email address or creates a new account. -将提交推送到 {% data variables.product.prodname_enterprise %} 时,如果新提交和现有提交关联到同一个电子邮件地址,此提交会链接到用户帐户。 不过,在用户注册新电子邮件地址或创建新帐户时,*不会*追溯地链接现有提交。 - -1. 访问用户的个人资料页面。 +1. Visit the user's profile page. {% data reusables.enterprise_site_admin_settings.access-settings %} -3. 在页面的左侧,单击 **Admin**。 ![Admin 选项卡](/assets/images/enterprise/site-admin-settings/admin-tab.png) -4. 在 **Contributions data** 下,单击 **Rebuild**。 ![Rebuild 按钮](/assets/images/enterprise/site-admin-settings/rebuild-button.png) +3. On the left side of the page, click **Admin**. + ![Admin tab](/assets/images/enterprise/site-admin-settings/admin-tab.png) +4. Under **Contributions data**, click **Rebuild**. +![Rebuild button](/assets/images/enterprise/site-admin-settings/rebuild-button.png) -{% data variables.product.prodname_enterprise %} 现在会开始后台作业,将提交与用户帐户重新关联。 - ![已排队的重构作业](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) +{% data variables.product.prodname_enterprise %} will now start background jobs to re-link commits with that user's account. + ![Queued rebuild jobs](/assets/images/enterprise/site-admin-settings/rebuild-jobs.png) diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md index 4341a5a61c..e1586d12d0 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md @@ -1,11 +1,11 @@ --- -title: 企业中的角色 -intro: 企业中的每个人都是企业的成员。 要控制对企业的设置和数据的访问权限,您可以为企业成员分配不同的角色。 +title: Roles in an enterprise +intro: 'Everyone in an enterprise is a member of the enterprise. To control access to your enterprise''s settings and data, you can assign different roles to members of your enterprise.' product: '{% data reusables.gated-features.enterprise-accounts %}' redirect_from: - /github/setting-up-and-managing-your-enterprise/managing-users-in-your-enterprise/roles-in-an-enterprise - /github/setting-up-and-managing-your-enterprise-account/roles-for-an-enterprise-account - - /articles/permission-levels-for-a-business-account/ + - /articles/permission-levels-for-a-business-account - /articles/roles-for-an-enterprise-account - /github/setting-up-and-managing-your-enterprise/roles-in-an-enterprise versions: @@ -16,61 +16,61 @@ topics: - Enterprise --- -## 关于企业中的角色 +## About roles in an enterprise -企业中的每个人都是企业的成员。 您还可以为企业成员分配管理角色。 每个管理员角色都映射到业务职能,并提供在企业中执行特定任务的权限。 +Everyone in an enterprise is a member of the enterprise. You can also assign administrative roles to members of your enterprise. Each administrator role maps to business functions and provides permissions to do specific tasks within the enterprise. {% data reusables.enterprise-accounts.enterprise-administrators %} {% ifversion ghec %} -如果您的企业没有使用 {% data variables.product.prodname_emus %},您可以邀请他人使用他们控制的 {% data variables.product.product_name %} 用户帐户来管理角色。 更多信息请参阅“[邀请人们管理您的企业](/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise)”。 +If your enterprise does not use {% data variables.product.prodname_emus %}, you can invite someone to an administrative role using a user account on {% data variables.product.product_name %} that they control. For more information, see "[Inviting people to manage your enterprise](/github/setting-up-and-managing-your-enterprise/inviting-people-to-manage-your-enterprise)". -在使用 {% data variables.product.prodname_emus %} 的企业中,必须通过身份提供商预配新所有者和成员。 企业所有者和组织所有者不能使用 {% data variables.product.prodname_dotcom %} 向企业添加新成员或所有者。 您可以使用 IdP 选择成员的企业角色,它不能在 {% data variables.product.prodname_dotcom %} 上更改。 您可以在 {% data variables.product.prodname_dotcom %} 上选择成员在组织中的角色。 更多信息请参阅“[关于 {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)”。 +In an enterprise using {% data variables.product.prodname_emus %}, new owners and members must be provisioned through your identity provider. Enterprise owners and organization owners cannot add new members or owners to the enterprise using {% data variables.product.prodname_dotcom %}. You can select a member's enterprise role using your IdP and it cannot be changed on {% data variables.product.prodname_dotcom %}. You can select a member's role in an organization on {% data variables.product.prodname_dotcom %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." {% else %} -有关向企业添加人员的更多信息,请参阅“[身份验证](/admin/authentication)”。 +For more information about adding people to your enterprise, see "[Authentication](/admin/authentication)". {% endif %} -## 企业所有者 +## Enterprise owner -企业所有者可以完全控制企业,并可以采取所有操作,包括: -- 管理管理员 +Enterprise owners have complete control over the enterprise and can take every action, including: +- Managing administrators - {% ifversion ghec %}Adding and removing {% elsif ghae or ghes %}Managing{% endif %} organizations {% ifversion ghec %}to and from {% elsif ghae or ghes %} in{% endif %} the enterprise -- 管理企业设置 -- 在组织范围内强制实施政策 -{% ifversion ghec %}- 管理帐单设置{% endif %} +- Managing enterprise settings +- Enforcing policy across organizations +{% ifversion ghec %}- Managing billing settings{% endif %} -企业所有者无法访问组织设置或内容,除非将其设为组织所有者或授予直接访问组织所拥有仓库的权限。 同样,除非您将其设为企业所有者,否则企业中的组织所有者无权访问企业。 +Enterprise owners cannot access organization settings or content unless they are made an organization owner or given direct access to an organization-owned repository. Similarly, owners of organizations in your enterprise do not have access to the enterprise itself unless you make them enterprise owners. -企业所有者仅在他们是企业中至少一个组织的所有者或成员时才可使用许可证。 {% ifversion ghec %}企业所有者必须在 {% data variables.product.prodname_dotcom %} 上拥有个人帐户。{% endif %} 作为最佳实践,我们建议只将少数人设为公司的企业所有者,以降低业务风险。 +An enterprise owner will only consume a license if they are an owner or member of at least one organization within the enterprise. {% ifversion ghec %}Enterprise owners must have a personal account on {% data variables.product.prodname_dotcom %}.{% endif %} As a best practice, we recommend making only a few people in your company enterprise owners, to reduce the risk to your business. -## 企业成员 +## Enterprise members -您的企业所拥有组织的成员也会自动成为企业的成员。 成员可以在组织中进行协作,也可以是组织所有者,但成员无法访问或配置企业设置{% ifversion ghec %},包括计费设置{% endif %}。 +Members of organizations owned by your enterprise are also automatically members of the enterprise. Members can collaborate in organizations and may be organization owners, but members cannot access or configure enterprise settings{% ifversion ghec %}, including billing settings{% endif %}. -企业中的人员可能对您的企业拥有的各种组织以及这些组织中的仓库具有不同级别的访问权限。 您可以查看每个人具有访问权限的资源。 更多信息请参阅“[查看企业中的人员](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)”。 +People in your enterprise may have different levels of access to the various organizations owned by your enterprise and to repositories within those organizations. You can view the resources that each person has access to. For more information, see "[Viewing people in your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise)." For more information about organization-level permissions, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." -对组织所拥有仓库具有外部协作者访问权限的人员也会在企业的 People(人员)选项卡中列出,但他们不是企业成员,也没有对企业的任何访问权限。 For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +People with outside collaborator access to repositories owned by your organization are also listed in your enterprise's People tab, but are not enterprise members and do not have any access to the enterprise. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." {% ifversion ghec %} -## 帐单管理员 +## Billing manager -帐单管理员只能访问企业的帐单设置。 企业的帐单管理员可以: -- 查看和管理用户许可证、{% data variables.large_files.product_name_short %} 包以及其他计费设置 -- 查看帐单管理员列表 -- 添加或删除其他帐单管理员 +Billing managers only have access to your enterprise's billing settings. Billing managers for your enterprise can: +- View and manage user licenses, {% data variables.large_files.product_name_short %} packs and other billing settings +- View a list of billing managers +- Add or remove other billing managers -帐单管理员仅在他们是企业中至少一个组织的所有者或成员时才可使用许可证。 帐单管理员无权访问企业中的组织或仓库,也无法添加或删除企业所有者。 帐单管理员必须在 {% data variables.product.prodname_dotcom %} 上拥有个人帐户。 +Billing managers will only consume a license if they are an owner or member of at least one organization within the enterprise. Billing managers do not have access to organizations or repositories in your enterprise, and cannot add or remove enterprise owners. Billing managers must have a personal account on {% data variables.product.prodname_dotcom %}. -## 关于支持权利 +## About support entitlements {% data reusables.enterprise-accounts.support-entitlements %} -## 延伸阅读 +## Further reading -- “[关于企业帐户](/admin/overview/about-enterprise-accounts)” +- "[About enterprise accounts](/admin/overview/about-enterprise-accounts)" {% endif %} diff --git a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md index 08148b0c9f..f64cdf6334 100644 --- a/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md +++ b/translations/zh-CN/content/admin/user-management/managing-users-in-your-enterprise/suspending-and-unsuspending-users.md @@ -1,11 +1,11 @@ --- title: Suspending and unsuspending users redirect_from: - - /enterprise/admin/articles/suspending-a-user/ - - /enterprise/admin/articles/unsuspending-a-user/ - - /enterprise/admin/articles/viewing-suspended-users/ - - /enterprise/admin/articles/suspended-users/ - - /enterprise/admin/articles/suspending-and-unsuspending-users/ + - /enterprise/admin/articles/suspending-a-user + - /enterprise/admin/articles/unsuspending-a-user + - /enterprise/admin/articles/viewing-suspended-users + - /enterprise/admin/articles/suspended-users + - /enterprise/admin/articles/suspending-and-unsuspending-users - /enterprise/admin/user-management/suspending-and-unsuspending-users - /admin/user-management/suspending-and-unsuspending-users intro: 'If a user leaves or moves to a different part of the company, you should remove or modify their ability to access {% data variables.product.product_location %}.' diff --git a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md index 16e63c47a3..f3d8b48da6 100644 --- a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/exporting-migration-data-from-your-enterprise.md @@ -2,12 +2,12 @@ title: Exporting migration data from your enterprise intro: 'To change platforms or move from a trial instance to a production instance, you can export migration data from a {% data variables.product.prodname_ghe_server %} instance by preparing the instance, locking the repositories, and generating a migration archive.' redirect_from: - - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise/ + - /enterprise/admin/guides/migrations/exporting-migration-data-from-github-enterprise - /enterprise/admin/migrations/exporting-migration-data-from-github-enterprise-server - /enterprise/admin/migrations/preparing-the-github-enterprise-server-source-instance - /enterprise/admin/migrations/exporting-the-github-enterprise-server-source-repositories - - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance/ - - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories/ + - /enterprise/admin/guides/migrations/preparing-the-github-enterprise-source-instance + - /enterprise/admin/guides/migrations/exporting-the-github-enterprise-source-repositories - /enterprise/admin/user-management/exporting-migration-data-from-your-enterprise - /admin/user-management/exporting-migration-data-from-your-enterprise versions: diff --git a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md index 52366c467f..2b27547b72 100644 --- a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md +++ b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/index.md @@ -1,9 +1,9 @@ --- -title: 将数据迁移到企业或从企业迁移数据 -intro: '您可以从 {% data variables.product.prodname_ghe_server %} 或 {% data variables.product.prodname_dotcom_the_website %} 导出用户、组织和仓库数据,然后将此数据导入至 {% data variables.product.product_location %}。' +title: Migrating data to and from your enterprise +intro: 'You can export user, organization, and repository data from {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_dotcom_the_website %}, then import that data into {% data variables.product.product_location %}.' redirect_from: - - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise/ - - /enterprise/admin/categories/migrations-and-upgrades/ + - /enterprise/admin/articles/moving-a-repository-from-github-com-to-github-enterprise + - /enterprise/admin/categories/migrations-and-upgrades - /enterprise/admin/migrations/overview - /enterprise/admin/user-management/migrating-data-to-and-from-your-enterprise versions: @@ -17,6 +17,6 @@ children: - /preparing-to-migrate-data-to-your-enterprise - /migrating-data-to-your-enterprise - /importing-data-from-third-party-version-control-systems -shortTitle: 为企业迁移 +shortTitle: Migration for an enterprise --- diff --git a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md index 5b6a2f1615..e6eedafa28 100644 --- a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/migrating-data-to-your-enterprise.md @@ -1,15 +1,15 @@ --- -title: 将数据迁移到企业 -intro: '生成迁移存档后,您可以将数据导入目标 {% data variables.product.prodname_ghe_server %} 实例。 在将变更永久应用到目标实例之前,您需要检查变更,查看有无潜在的冲突。' +title: Migrating data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise/ + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise - /enterprise/admin/migrations/applying-the-imported-data-on-github-enterprise-server - /enterprise/admin/migrations/reviewing-migration-data - /enterprise/admin/migrations/completing-the-import-on-github-enterprise-server - - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise/ - - /enterprise/admin/guides/migrations/reviewing-the-imported-data/ - - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise/ - - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server/ + - /enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise + - /enterprise/admin/guides/migrations/reviewing-the-imported-data + - /enterprise/admin/guides/migrations/completing-the-import-on-github-enterprise + - /enterprise/admin/guides/migrations/importing-migration-data-to-github-enterprise-server - /enterprise/admin/user-management/migrating-data-to-your-enterprise - /admin/user-management/migrating-data-to-your-enterprise versions: @@ -18,95 +18,94 @@ type: how_to topics: - Enterprise - Migration -shortTitle: 导入到您的企业 +shortTitle: Import to your enterprise --- +## Applying the imported data on {% data variables.product.prodname_ghe_server %} -## 在 {% data variables.product.prodname_ghe_server %} 上应用导入的数据 +Before you can migrate data to your enterprise, you must prepare the data and resolve any conflicts. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." -在将数据迁移到企业之前,您必须准备数据并解决任何冲突。 更多信息请参阅“[准备迁移数据到企业](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)”。 - -在准备数据并解决冲突后,您可以将导入的数据应用于 {% data variables.product.product_name %}。 +After you prepare the data and resolve conflicts, you can apply the imported data on {% data variables.product.product_name %}. {% data reusables.enterprise_installation.ssh-into-target-instance %} -2. 使用 `ghe-migrator import` 命令启动导入过程。 您需要: - * 迁移 GUID. 更多信息请参阅“[准备迁移数据到企业](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)”。 - * 用于身份验证的个人访问令牌。 您使用的个人访问令牌仅用于站点管理员身份验证,不需要任何特定范围。 更多信息请参阅“[创建个人访问令牌](/github/authenticating-to-github/creating-a-personal-access-token)”。 +2. Using the `ghe-migrator import` command, start the import process. You'll need: + * Your Migration GUID. For more information, see "[Preparing to migrate data to your enterprise](/admin/user-management/preparing-to-migrate-data-to-your-enterprise)." + * Your personal access token for authentication. The personal access token that you use is only for authentication as a site administrator, and does not require any specific scope. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." ```shell $ ghe-migrator import /home/admin/<em>MIGRATION_GUID</em>.tar.gz -g <em>MIGRATION_GUID</em> -u <em>username</em> -p <em>TOKEN</em> - + > Starting GitHub::Migrator > Import 100% complete / ``` * {% data reusables.enterprise_migrations.specify-staging-path %} -## 检查迁移数据 +## Reviewing migration data -默认情况下,`ghe-migrator audit` 将返回每一条记录。 它还可以让您按以下方式筛选记录: +By default, `ghe-migrator audit` returns every record. It also allows you to filter records by: - * 记录的类型。 - * 记录的状态。 + * The types of records. + * The state of the records. -记录类型与[迁移的数据](/enterprise/admin/guides/migrations/about-migrations/#migrated-data)中的类型匹配。 +The record types match those found in the [migrated data](/enterprise/admin/guides/migrations/about-migrations/#migrated-data). -## 记录类型筛选器 +## Record type filters -| 记录类型 | 筛选器名称 | -| -------------- | ----------------------------- | -| 用户 | `用户` | -| 组织 | `组织` | -| 仓库 | `仓库` | -| 团队 | `团队` | -| 里程碑 | `里程碑` | -| 项目板 | `project` | -| 议题 | `议题` | -| 问题评论 | `issue_comment` | -| 拉取请求 | `pull_request` | -| 拉取请求审查 | `pull_request_review` | -| 提交注释 | `commit_comment` | -| 拉取请求审查评论 | `pull_request_review_comment` | -| 版本发布 | `发行版` | -| 在拉取请求或问题上进行的操作 | `issue_event` | -| 受保护分支 | `protected_branch` | +| Record type | Filter name | +|-----------------------|--------| +| Users | `user` +| Organizations | `organization` +| Repositories | `repository` +| Teams | `team` +| Milestones | `milestone` +| Project boards | `project` +| Issues | `issue` +| Issue comments | `issue_comment` +| Pull requests | `pull_request` +| Pull request reviews | `pull_request_review` +| Commit comments | `commit_comment` +| Pull request review comments | `pull_request_review_comment` +| Releases | `release` +| Actions taken on pull requests or issues | `issue_event` +| Protected branches | `protected_branch` -## 记录状态筛选器 +## Record state filters -| 记录状态 | 描述 | -| --------------- | --------- | -| `export` | 将导出记录。 | -| `import` | 将导入记录。 | -| `map` | 将映射记录。 | -| `rename` | 将重命名记录。 | -| `合并` | 将合并记录。 | -| `exported` | 已成功导出记录。 | -| `imported` | 已成功导入记录。 | -| `mapped` | 已成功映射记录。 | -| `renamed` | 已成功重命名记录。 | -| `merged` | 已成功合并记录。 | -| `failed_export` | 记录导出失败。 | -| `failed_import` | 记录导入失败。 | -| `failed_map` | 记录映射失败。 | -| `failed_rename` | 记录重命名失败。 | -| `failed_merge` | 记录合并失败。 | +| Record state | Description | +|-----------------|----------------| +| `export` | The record will be exported. | +| `import` | The record will be imported. | +| `map` | The record will be mapped. | +| `rename` | The record will be renamed. | +| `merge` | The record will be merged. | +| `exported` | The record was successfully exported. | +| `imported` | The record was successfully imported. | +| `mapped` | The record was successfully mapped. | +| `renamed` | The record was successfully renamed. | +| `merged` | The record was successfully merged. | +| `failed_export` | The record failed to export. | +| `failed_import` | The record failed to be imported. | +| `failed_map` | The record failed to be mapped. | +| `failed_rename` | The record failed to be renamed. | +| `failed_merge` | The record failed to be merged. | -## 筛选审核的记录 +## Filtering audited records -借助 `ghe-migrator audit` 命令,您可以使用 `-m` 标志基于记录类型进行筛选。 类似地,您可以使用 `-s` 标志基于导入状态进行筛选。 命令如下所示: +With the `ghe-migrator audit` command, you can filter based on the record type using the `-m` flag. Similarly, you can filter on the import state using the `-s` flag. The command looks like this: ```shell $ ghe-migrator audit -m <em>RECORD_TYPE</em> -s <em>STATE</em> -g <em>MIGRATION_GUID</em> ``` -例如,要查看每个成功导入的组织和团队,您可以输入: +For example, to view every successfully imported organization and team, you would enter: ```shell $ ghe-migrator audit -m organization,team -s mapped,renamed -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state > organization,https://gh.source/octo-org/,https://ghe.target/octo-org/,renamed ``` -**我们强烈建议您检查失败的每个导入。**要进行检查,您可以输入: +**We strongly recommend auditing every import that failed.** To do that, you will enter: ```shell $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g <em>MIGRATION_GUID</em> > model_name,source_url,target_url,state @@ -114,40 +113,40 @@ $ ghe-migrator audit -s failed_import,failed_map,failed_rename,failed_merge -g < > repository,https://gh.source/octo-org/octo-project,https://ghe.target/octo-org/octo-project,failed ``` -如果您对失败的导入有任何疑问,请联系 {% data variables.contact.contact_ent_support %}。 +If you have any concerns about failed imports, contact {% data variables.contact.contact_ent_support %}. -## 在 {% data variables.product.prodname_ghe_server %} 上完成导入 +## Completing the import on {% data variables.product.prodname_ghe_server %} -在迁移应用到目标实例并且您已审查迁移后,您需要解锁仓库并将其从源中删除。 我们建议等待两周再删除您的源数据,以便确保所有数据都能按预期运行。 +After your migration is applied to your target instance and you have reviewed the migration, you''ll unlock the repositories and delete them off the source. Before deleting your source data we recommend waiting around two weeks to ensure that everything is functioning as expected. -## 在目标实例上解锁仓库 +## Unlocking repositories on the target instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} -## 在源上解锁仓库 +## Unlocking repositories on the source -### 从 {% data variables.product.prodname_dotcom_the_website %} 上的组织解锁仓库 +### Unlocking repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -要在 {% data variables.product.prodname_dotcom_the_website %} 组织中解锁仓库,您需要向<a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">迁移解锁端点</a>发送 `DELETE` 请求。 您需要: - * 身份验证的访问令牌 - * 迁移的唯一 `id` - * 要解锁的仓库的名称 +To unlock the repositories on a {% data variables.product.prodname_dotcom_the_website %} organization, you'll send a `DELETE` request to <a href="/rest/reference/migrations#unlock-an-organization-repository" class="dotcom-only">the migration unlock endpoint</a>. You'll need: + * Your access token for authentication + * The unique `id` of the migration + * The name of the repository to unlock ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ -H "Accept: application/vnd.github.wyandotte-preview+json" \ https://api.github.com/orgs/<em>orgname</em>/migrations/<em>id</em>/repos/<em>repo_name</em>/lock ``` -### 从 {% data variables.product.prodname_dotcom_the_website %} 上的组织中删除仓库 +### Deleting repositories from an organization on {% data variables.product.prodname_dotcom_the_website %} -在解锁 {% data variables.product.prodname_dotcom_the_website %} 组织的仓库后,您应当使用[仓库删除端点](/rest/reference/repos/#delete-a-repository)删除之前迁移的每一个仓库。 您需要身份验证的访问令牌: +After unlocking the {% data variables.product.prodname_dotcom_the_website %} organization's repositories, you should delete every repository you previously migrated using [the repository delete endpoint](/rest/reference/repos/#delete-a-repository). You'll need your access token for authentication: ```shell curl -H "Authorization: token <em>GITHUB_ACCESS_TOKEN</em>" -X DELETE \ https://api.github.com/repos/<em>orgname</em>/<em>repo_name</em> ``` -### 从 {% data variables.product.prodname_ghe_server %} 实例解锁仓库 +### Unlocking repositories from a {% data variables.product.prodname_ghe_server %} instance {% data reusables.enterprise_installation.ssh-into-instance %} {% data reusables.enterprise_migrations.unlocking-on-instances %} diff --git a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md index f4282cc959..12b0ae88e1 100644 --- a/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/migrating-data-to-and-from-your-enterprise/preparing-to-migrate-data-to-your-enterprise.md @@ -1,12 +1,12 @@ --- -title: 准备将数据迁移到企业 -intro: '生成迁移存档后,您可以将数据导入目标 {% data variables.product.prodname_ghe_server %} 实例。 在将变更永久应用到目标实例之前,您需要检查变更,查看有无潜在的冲突。' +title: Preparing to migrate data to your enterprise +intro: 'After generating a migration archive, you can import the data to your target {% data variables.product.prodname_ghe_server %} instance. You''ll be able to review changes for potential conflicts before permanently applying the changes to your target instance.' redirect_from: - /enterprise/admin/migrations/preparing-the-migrated-data-for-import-to-github-enterprise-server - /enterprise/admin/migrations/generating-a-list-of-migration-conflicts - /enterprise/admin/migrations/reviewing-migration-conflicts - /enterprise/admin/migrations/resolving-migration-conflicts-or-setting-up-custom-mappings - - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise/ + - /enterprise/admin/guides/migrations/preparing-the-migrated-data-for-import-to-github-enterprise - /enterprise/admin/user-management/preparing-to-migrate-data-to-your-enterprise - /admin/user-management/preparing-to-migrate-data-to-your-enterprise versions: @@ -15,12 +15,11 @@ type: how_to topics: - Enterprise - Migration -shortTitle: 准备迁移数据 +shortTitle: Prepare to migrate data --- +## Preparing the migrated data for import to {% data variables.product.prodname_ghe_server %} -## 准备迁移的数据以导入到 {% data variables.product.prodname_ghe_server %} - -1. 使用 [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) 命令将从源实例或组织生成的迁移存档复制到 {% data variables.product.prodname_ghe_server %} 目标: +1. Using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy the migration archive generated from your source instance or organization to your {% data variables.product.prodname_ghe_server %} target: ```shell $ scp -P 122 <em>/path/to/archive/MIGRATION_GUID.tar.gz</em> admin@<em>hostname</em>:/home/admin/ @@ -28,122 +27,122 @@ shortTitle: 准备迁移数据 {% data reusables.enterprise_installation.ssh-into-target-instance %} -3. 使用 `ghe-migrator prepare` 命令准备要在目标实例上导入的存档,并生成新的迁移 GUID 供您在后续步骤中使用: +3. Use the `ghe-migrator prepare` command to prepare the archive for import on the target instance and generate a new Migration GUID for you to use in subsequent steps: ```shell ghe-migrator prepare /home/admin/<em>MIGRATION_GUID</em>.tar.gz ``` - * 要开始新的导入尝试,请再次运行 `ghe-migrator prepare` 并获取新的迁移 GUID。 + * To start a new import attempt, run `ghe-migrator prepare` again and get a new Migration GUID. * {% data reusables.enterprise_migrations.specify-staging-path %} -## 生成迁移冲突列表 +## Generating a list of migration conflicts -1. 使用包含迁移 GUID 的 `ghe-migrator conflicts` 命令生成一个 *conflicts.csv* 文件: +1. Using the `ghe-migrator conflicts` command with the Migration GUID, generate a *conflicts.csv* file: ```shell $ ghe-migrator conflicts -g <em>MIGRATION_GUID</em> > conflicts.csv ``` - - 如果未报告冲突,您可以按照“[将数据迁移到企业](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)”中的步骤操作,安全地导入数据。 -2. 如果存在冲突,请使用 [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) 命令将 *conflicts.csv* 复制到您的本地计算机: + - If no conflicts are reported, you can safely import the data by following the steps in "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server/)". +2. If there are conflicts, using the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command, copy *conflicts.csv* to your local computer: ```shell $ scp -P 122 admin@<em>hostname</em>:conflicts.csv ~/Desktop ``` -3. 继续“[解决迁移冲突或设置自定义映射](#resolving-migration-conflicts-or-setting-up-custom-mappings)”。 +3. Continue to "[Resolving migration conflicts or setting up custom mappings](#resolving-migration-conflicts-or-setting-up-custom-mappings)". -## 检查迁移冲突 +## Reviewing migration conflicts -1. 使用文本编辑器或[与 CSV 兼容的电子表格软件](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support)打开 *conflicts.csv*。 -2. 按照示例中的指导和下面的参考表检查 *conflicts.csv* 文件,确保导入时将发生正确的操作。 +1. Using a text editor or [CSV-compatible spreadsheet software](https://en.wikipedia.org/wiki/Comma-separated_values#Application_support), open *conflicts.csv*. +2. With guidance from the examples and reference tables below, review the *conflicts.csv* file to ensure that the proper actions will be taken upon import. -*conflicts.csv* 文件包含冲突的*迁移映射*和建议操作。 迁移映射列出了数据的迁移来源和数据应用到目标的方式。 +The *conflicts.csv* file contains a *migration map* of conflicts and recommended actions. A migration map lists out both what data is being migrated from the source, and how the data will be applied to the target. -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | ------------------------------------------------------ | ------------------------------------------------------ | -------------------- | -| `用户` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | -| `组织` | `https://example-gh.source/octo-org` | `https://example-gh.target/octo-org` | `map` | -| `仓库` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/widgets` | `rename` | -| `团队` | `https://example-gh.source/orgs/octo-org/teams/admins` | `https://example-gh.target/orgs/octo-org/teams/admins` | `合并` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | +| `organization` | `https://example-gh.source/octo-org` | `https://example-gh.target/octo-org` | `map` | +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/widgets` | `rename` | +| `team` | `https://example-gh.source/orgs/octo-org/teams/admins` | `https://example-gh.target/orgs/octo-org/teams/admins` | `merge` | -*conflicts.csv* 中的每一行都提供了以下信息: +Each row in *conflicts.csv* provides the following information: -| 名称 | 描述 | -| -------------------- | ----------------------------- | -| `model_name` | 正在更改的数据的类型。 | -| `source_url` | 数据的源 URL。 | -| `target_url` | 数据的预期目标 URL。 | -| `recommended_action` | 导入数据时,将发生首选操作 `ghe-migrator`。 | +| Name | Description | +|--------------|---------------| +| `model_name` | The type of data being changed. | +| `source_url` | The source URL of the data. | +| `target_url` | The expected target URL of the data. | +| `recommended_action` | The preferred action `ghe-migrator` will take when importing the data. | -### 每个记录类型的可能映射 +### Possible mappings for each record type -转移数据时,`ghe-migrator` 可以进行多种不同的映射操作: +There are several different mapping actions that `ghe-migrator` can take when transferring data: -| `action` | 描述 | 适用的模型 | -| --------------- | ----------------------------- | -------- | -| `import` | (默认)源中的数据将导入目标。 | 所有记录类型 | -| `map` | 源中的数据将被目标上的现有数据替换。 | 用户、组织和仓库 | -| `rename` | 源中的数据将重命名,然后复制到目标。 | 用户、组织和仓库 | -| `map_or_rename` | 如果存在目标,请映射到该目标。 否则,请重命名导入的模型。 | 用户 | -| `合并` | 源中的数据将与目标中的现有数据合并。 | 团队 | +| `action` | Description | Applicable models | +|------------------------|-------------|-------------------| +| `import` | (default) Data from the source is imported to the target. | All record types +| `map` | Data from the source is replaced by existing data on the target. | Users, organizations, repositories +| `rename` | Data from the source is renamed, then copied over to the target. | Users, organizations, repositories +| `map_or_rename` | If the target exists, map to that target. Otherwise, rename the imported model. | Users +| `merge` | Data from the source is combined with existing data on the target. | Teams -**我们强烈建议您检查 *conflicts.csv* 文件并使用 [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data),以确保正确的操作。**如果一切正常,您可以继续“[将数据迁移到企业](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)”。 +**We strongly suggest you review the *conflicts.csv* file and use [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) to ensure that the proper actions are being taken.** If everything looks good, you can continue to "[Migrating data to your enterprise](/enterprise/admin/guides/migrations/applying-the-imported-data-on-github-enterprise-server)". -## 解决迁移冲突或设置自定义映射 +## Resolving migration conflicts or setting up custom mappings -如果您认为 `ghe-migrator` 将执行不正确的变更,可以更改 *conflicts.csv* 中的数据,进行修改。 您可以更改 *conflicts.csv* 中的任意行。 +If you believe that `ghe-migrator` will perform an incorrect change, you can make corrections by changing the data in *conflicts.csv*. You can make changes to any of the rows in *conflicts.csv*. -例如,我们假设您注意到源中的 `octocat` 用户正在被映射到目标上的 `octocat`: +For example, let's say you notice that the `octocat` user from the source is being mapped to `octocat` on the target: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | ----------------------------------- | ----------------------------------- | -------------------- | -| `用户` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/octocat` | `map` -您可以选择将用户映射到目标上的其他用户。 假设您知道 `octocat` 在目标上应当是 `monalisa`。 您可以更改 *conflicts.csv* 中的 `target_url` 列以指代 `monalisa`: +You can choose to map the user to a different user on the target. Suppose you know that `octocat` should actually be `monalisa` on the target. You can change the `target_url` column in *conflicts.csv* to refer to `monalisa`: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | ----------------------------------- | ------------------------------------ | -------------------- | -| `用户` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `map` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `map` -另外,如果您想在目标实例上将 `octo-org/widgets` 仓库重命名为 `octo-org/amazing-widgets`,请将 `target_url` 更改为 `octo-org/amazing-widgets`,以及将 `recommend_action` 更改为 `rename`: +As another example, if you want to rename the `octo-org/widgets` repository to `octo-org/amazing-widgets` on the target instance, change the `target_url` to `octo-org/amazing-widgets` and the `recommend_action` to `rename`: -| `model_name` | `source_url` | `target_url` | `recommended_action` | -| ------------ | -------------------------------------------- | ---------------------------------------------------- | -------------------- | -| `仓库` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/amazing-widgets` | `rename` | +| `model_name` | `source_url` | `target_url` | `recommended_action` | +|--------------|--------------|------------|--------------------| +| `repository` | `https://example-gh.source/octo-org/widgets` | `https://example-gh.target/octo-org/amazing-widgets` | `rename` | -### 添加自定义映射 +### Adding custom mappings -迁移过程中一个常见的情况是,迁移用户的用户名在目标上与在源上不同。 +A common scenario during a migration is for migrated users to have different usernames on the target than they have on the source. -如果拥有源中的用户名列表和目标上的用户名列表,您可以通过自定义映射构建一个 CSV 文件,然后应用此文件,确保迁移结束时每个用户的用户名和内容都有正确的映射。 +Given a list of usernames from the source and a list of usernames on the target, you can build a CSV file with custom mappings and then apply it to ensure each user's username and content is correctly attributed to them at the end of a migration. -您可以使用 [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) 命令,快速生成应用自定义映射所需的迁移用户的 CSV 文件: +You can quickly generate a CSV of users being migrated in the CSV format needed to apply custom mappings by using the [`ghe-migrator audit`](/enterprise/admin/guides/migrations/reviewing-migration-data) command: ```shell $ ghe-migrator audit -m user -g <em>MIGRATION_GUID</em> > users.csv ``` -现在,您可以编辑该 CSV,并为您想要映射或重命名的每个用户输入新的 URL,然后根据需要将第四列更新为 `map` 或 `rename`。 +Now, you can edit that CSV and enter the new URL for each user you would like to map or rename, and then update the fourth column to have `map` or `rename` as appropriate. -例如,要在目标 `https://example-gh.target` 上将用户 `octocat` 重命名为 `monalisa`,您需要创建一个包含以下内容的行: +For example, to rename the user `octocat` to `monalisa` on the target `https://example-gh.target` you would create a row with the following content: -| `model_name` | `source_url` | `target_url` | `state` | -| ------------ | ----------------------------------- | ------------------------------------ | -------- | -| `用户` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `rename` | +| `model_name` | `source_url` | `target_url` | `state` | +|--------------|--------------|------------|--------------------| +| `user` | `https://example-gh.source/octocat` | `https://example-gh.target/monalisa` | `rename` -可以使用相同的流程为支持自定义映射的每个记录创建映射。 更多信息请参见[记录的可能映射表](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type)。 +The same process can be used to create mappings for each record that supports custom mappings. For more information, see [our table on the possible mappings for records](/enterprise/admin/guides/migrations/reviewing-migration-conflicts#possible-mappings-for-each-record-type). -### 应用修改的迁移数据 +### Applying modified migration data -1. 进行更改后,请使用 [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) 命令将修改后的 *conflicts.csv*(或格式正确的任何其他映射 *.csv* 文件)应用到目标实例: +1. After making changes, use the [`scp`](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks#scp) command to apply your modified *conflicts.csv* (or any other mapping *.csv* file in the correct format) to the target instance: ```shell $ scp -P 122 ~/Desktop/conflicts.csv admin@<em>hostname</em>:/home/admin/ ``` -2. 使用 `ghe-migrator map` 命令重新映射迁移数据,并传入修改后的 *.csv* 文件的路径和迁移 GUID: +2. Re-map the migration data using the `ghe-migrator map` command, passing in the path to your modified *.csv* file and the Migration GUID: ```shell $ ghe-migrator map -i conflicts.csv -g <em>MIGRATION_GUID</em> ``` -3. 如果 `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` 命令报告冲突仍然存在,请重新运行迁移冲突解决流程。 +3. If the `ghe-migrator map -i conflicts.csv -g MIGRATION_GUID` command reports that conflicts still exist, run through the migration conflict resolution process again. diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md index 3c28457b56..edc50c6daa 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/activity-dashboard.md @@ -1,8 +1,8 @@ --- -title: 活动仪表板 -intro: 活动仪表板提供企业中所有活动的概览。 +title: Activity dashboard +intro: The Activity dashboard gives you an overview of all the activity in your enterprise. redirect_from: - - /enterprise/admin/articles/activity-dashboard/ + - /enterprise/admin/articles/activity-dashboard - /enterprise/admin/installation/activity-dashboard - /enterprise/admin/user-management/activity-dashboard - /admin/user-management/activity-dashboard @@ -12,21 +12,22 @@ versions: topics: - Enterprise --- +The Activity dashboard provides weekly, monthly, and yearly graphs of the number of: +- New pull requests +- Merged pull requests +- New issues +- Closed issues +- New issue comments +- New repositories +- New user accounts +- New organizations +- New teams -活动仪表板提供以下活动数量的周图、月度图和年度图表: -- 新拉取请求 -- 已合并拉取请求 -- 新问题 -- 已关闭问题 -- 新问题评论 -- 新仓库 -- 新用户帐户 -- 新组织 -- 新团队 +![Activity dashboard](/assets/images/enterprise/activity/activity-dashboard-yearly.png) -![活动仪表板](/assets/images/enterprise/activity/activity-dashboard-yearly.png) +## Accessing the Activity dashboard -## 访问活动仪表板 - -1. 在任一页面顶部,单击 **Explore**。 ![Explore 选项卡](/assets/images/enterprise/settings/ent-new-explore.png) -2. 在右上角单击 **Activity**。 ![Activity 按钮](/assets/images/enterprise/activity/activity-button.png) +1. At the top of any page, click **Explore**. +![Explore tab](/assets/images/enterprise/settings/ent-new-explore.png) +2. In the upper-right corner, click **Activity**. +![Activity button](/assets/images/enterprise/activity/activity-button.png) diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md index d33c2046dd..0b39b98872 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audit-logging.md @@ -1,8 +1,8 @@ --- -title: 审核日志 -intro: '{% data variables.product.product_name %} 会保留已审计 {% ifversion ghes %} 系统、{% endif %}用户、组织和仓库事件的日志。 日志可用于调试以及内部和外部合规。' +title: Audit logging +intro: '{% data variables.product.product_name %} keeps logs of audited{% ifversion ghes %} system,{% endif %} user, organization, and repository events. Logs are useful for debugging and internal and external compliance.' redirect_from: - - /enterprise/admin/articles/audit-logging/ + - /enterprise/admin/articles/audit-logging - /enterprise/admin/installation/audit-logging - /enterprise/admin/user-management/audit-logging - /admin/user-management/audit-logging @@ -16,31 +16,30 @@ topics: - Logging - Security --- +For a full list, see "[Audited actions](/admin/user-management/audited-actions)." For more information on finding a particular action, see "[Searching the audit log](/admin/user-management/searching-the-audit-log)." -有关完整列表,请参阅“[审核的操作](/admin/user-management/audited-actions)”。 有关查找特定操作的详细信息,请参阅“[搜索审核日志](/admin/user-management/searching-the-audit-log)”。 +## Push logs -## 推送日志 - -会记录每个 Git 推送操作。 更多信息请参阅“[查看推送日志](/admin/user-management/viewing-push-logs)”。 +Every Git push operation is logged. For more information, see "[Viewing push logs](/admin/user-management/viewing-push-logs)." {% ifversion ghes %} -## 系统事件 +## System events -所有经过审核的系统事件(包括所有推送和拉取)都会记录到 `/var/log/github/audit.log` 中。 日志每 24 小时自动轮换一次,并会保留七天。 +All audited system events, including all pushes and pulls, are logged to `/var/log/github/audit.log`. Logs are automatically rotated every 24 hours and are retained for seven days. -支持包中包含系统日志。 更多信息请参阅“[向 {% data variables.product.prodname_dotcom %} Support 提供数据](/admin/enterprise-support/providing-data-to-github-support)”。 +The support bundle includes system logs. For more information, see "[Providing data to {% data variables.product.prodname_dotcom %} Support](/admin/enterprise-support/providing-data-to-github-support)." -## 支持包 +## Support bundles -所有审核信息均会记录到任何支持包 `github-logs` 目录的 `audit.log` 文件中。 如果已启用日志转发,您可以将此数据传输到外部 syslog 流使用者,例如 [Splunk](http://www.splunk.com/) 或 [Logstash](http://logstash.net/)。 此日志中的所有条目均使用 `github_audit` 关键词,并且可以通过该关键词进行筛选。 更多信息请参阅“[日志转发](/admin/user-management/log-forwarding)。” +All audit information is logged to the `audit.log` file in the `github-logs` directory of any support bundle. If log forwarding is enabled, you can stream this data to an external syslog stream consumer such as [Splunk](http://www.splunk.com/) or [Logstash](http://logstash.net/). All entries from this log use and can be filtered with the `github_audit` keyword. For more information see "[Log forwarding](/admin/user-management/log-forwarding)." -例如,此条目显示已创建的新仓库。 +For example, this entry shows that a new repository was created. ``` Oct 26 01:42:08 github-ent github_audit: {:created_at=>1351215728326, :actor_ip=>"10.0.0.51", :data=>{}, :user=>"some-user", :repo=>"some-user/some-repository", :actor=>"some-user", :actor_id=>2, :user_id=>2, :action=>"repo.create", :repo_id=>1, :from=>"repositories#create"} ``` -此示例显示提交已推送到仓库。 +This example shows that commits were pushed to a repository. ``` Oct 26 02:19:31 github-ent github_audit: { "pid":22860, "ppid":22859, "program":"receive-pack", "git_dir":"/data/repositories/some-user/some-repository.git", "hostname":"github-ent", "pusher":"some-user", "real_ip":"10.0.0.51", "user_agent":"git/1.7.10.4", "repo_id":1, "repo_name":"some-user/some-repository", "transaction_id":"b031b7dc7043c87323a75f7a92092ef1456e5fbaef995c68", "frontend_ppid":1, "repo_public":true, "user_name":"some-user", "user_login":"some-user", "frontend_pid":18238, "frontend":"github-ent", "user_email":"some-user@github.example.com", "user_id":2, "pgroup":"github-ent_22860", "status":"post_receive_hook", "features":" report-status side-band-64k", "received_objects":3, "receive_pack_size":243, "non_fast_forward":false, "current_ref":"refs/heads/main" } diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md index 2c57090629..87a3c98508 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md @@ -3,7 +3,7 @@ title: Audited actions intro: You can search the audit log for a wide variety of actions. miniTocMaxHeadingLevel: 3 redirect_from: - - /enterprise/admin/articles/audited-actions/ + - /enterprise/admin/articles/audited-actions - /enterprise/admin/installation/audited-actions - /enterprise/admin/user-management/audited-actions - /admin/user-management/audited-actions diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md index b60f24a942..7f6e8c800e 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md @@ -1,8 +1,8 @@ --- -title: 日志转发 -intro: '{% data variables.product.product_name %} 使用 `syslog-ng` 将 {% ifversion ghes %}系统{% elsif ghae %}Git{% endif %} 和应用程序日志转发到您指定的服务器。' +title: Log forwarding +intro: '{% data variables.product.product_name %} uses `syslog-ng` to forward {% ifversion ghes %}system{% elsif ghae %}Git{% endif %} and application logs to the server you specify.' redirect_from: - - /enterprise/admin/articles/log-forwarding/ + - /enterprise/admin/articles/log-forwarding - /enterprise/admin/installation/log-forwarding - /enterprise/admin/enterprise-management/log-forwarding - /admin/enterprise-management/log-forwarding @@ -20,33 +20,40 @@ topics: ## About log forwarding -支持使用任何支持 syslog-style 日志流的日志收集系统(例如 [Logstash](http://logstash.net/) 和 [Splunk](http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports))。 +Any log collection system that supports syslog-style log streams is supported (e.g., [Logstash](http://logstash.net/) and [Splunk](http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports)). When you enable log forwarding, you must upload a CA certificate to encrypt communications between syslog endpoints. Your appliance and the remote syslog server will perform two-way SSL, each providing a certificate to the other and validating the certificate which is received. -## 启用日志转发 +## Enabling log forwarding {% ifversion ghes %} -1. 在 {% data variables.enterprise.management_console %} 设置页面的左侧边栏中,单击 **Monitoring**。 -1. 选择 **Enable log forwarding**。 -1. 在 **Server address** 字段中,输入要将日志转发到的服务器的地址。 您可以在以逗号分隔的列表中指定多个地址。 -1. 在 Protocol 下拉菜单中,选择用于与日志服务器通信的协议。 该协议将应用到所有指定的日志目标。 -1. Optionally, select **Enable TLS**. We recommend enabling TLS according to your local security policies, especially if there are untrusted networks between the appliance and any remote log servers. -1. To encrypt communication between syslog endpoints, click **Choose File** and choose a CA certificate for the remote syslog server. You should upload a CA bundle containing a concatenation of the certificates of the CAs involved in signing the certificate of the remote log server. 将对整个证书链进行验证,且证书链必须以根证书结束。 更多信息请参阅 [syslog-ng 文档中的 TLS 选项](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599)。 +1. On the {% data variables.enterprise.management_console %} settings page, in the left sidebar, click **Monitoring**. +1. Select **Enable log forwarding**. +1. In the **Server address** field, type the address of the server to which you want to forward logs. You can specify multiple addresses in a comma-separated list. +1. In the Protocol drop-down menu, select the protocol to use to communicate with the log server. The protocol will apply to all specified log destinations. +1. Optionally, select **Enable TLS**. We recommend enabling TLS according to your local security policies, especially if there are untrusted networks between the appliance and any remote log servers. +1. To encrypt communication between syslog endpoints, click **Choose File** and choose a CA certificate for the remote syslog server. You should upload a CA bundle containing a concatenation of the certificates of the CAs involved in signing the certificate of the remote log server. The entire certificate chain will be validated, and must terminate in a root certificate. For more information, see [TLS options in the syslog-ng documentation](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599). {% elsif ghae %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} -1. 在 {% octicon "gear" aria-label="The Settings gear" %} **Settings(设置)**下,单击 **Log forwarding(日志转发)**。 ![日志转发选项卡](/assets/images/enterprise/business-accounts/log-forwarding-tab.png) -1. 在“Log forwarding(日志转发)”下,选择 **Enable log forwarding(启用日志转发)**。 ![启用日志转发的复选框](/assets/images/enterprise/business-accounts/enable-log-forwarding-checkbox.png) -1. 在“Server address(服务器地址)”下,输入您想要日志转发到的服务器地址。 ![服务器地址字段](/assets/images/enterprise/business-accounts/server-address-field.png) -1. 使用“Protocol(协议)”下拉菜单选择一个协议。 ![协议下拉菜单](/assets/images/enterprise/business-accounts/protocol-drop-down-menu.png) -1. (可选)要在系统日志端点之间的训用 TLS 加密通信,请选择 **Enable TLS(启用 TLS)**。 ![启用 TLS 的复选框](/assets/images/enterprise/business-accounts/enable-tls-checkbox.png) -1. 在“Public certificate(公共证书)”下,粘贴您的 x509 证书。 ![公共证书文本框](/assets/images/enterprise/business-accounts/public-certificate-text-box.png) -1. 单击 **Save(保存)**。 ![用于日志转发的 Save(保存)按钮](/assets/images/enterprise/business-accounts/save-button-log-forwarding.png) +1. Under {% octicon "gear" aria-label="The Settings gear" %} **Settings**, click **Log forwarding**. + ![Log forwarding tab](/assets/images/enterprise/business-accounts/log-forwarding-tab.png) +1. Under "Log forwarding", select **Enable log forwarding**. + ![Checkbox to enable log forwarding](/assets/images/enterprise/business-accounts/enable-log-forwarding-checkbox.png) +1. Under "Server address", enter the address of the server you want to forward logs to. + ![Server address field](/assets/images/enterprise/business-accounts/server-address-field.png) +1. Use the "Protocol" drop-down menu, and select a protocol. + ![Protocol drop-down menu](/assets/images/enterprise/business-accounts/protocol-drop-down-menu.png) +1. Optionally, to enable TLS encrypted communication between syslog endpoints, select **Enable TLS**. + ![Checkbox to enable TLS](/assets/images/enterprise/business-accounts/enable-tls-checkbox.png) +1. Under "Public certificate", paste your x509 certificate. + ![Text box for public certificate](/assets/images/enterprise/business-accounts/public-certificate-text-box.png) +1. Click **Save**. + ![Save button for log forwarding](/assets/images/enterprise/business-accounts/save-button-log-forwarding.png) {% endif %} {% ifversion ghes %} -## 疑难解答 +## Troubleshooting -如果您遇到日志转发方面的问题,请联系 {% data variables.contact.contact_ent_support %} 并在您的电子邮件中附上 `http(s)://[hostname]/setup/diagnostics` 的输出文件。 +If you run into issues with log forwarding, contact {% data variables.contact.contact_ent_support %} and attach the output file from `http(s)://[hostname]/setup/diagnostics` to your email. {% endif %} diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md index 38dae260f4..589354bd37 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks.md @@ -1,5 +1,5 @@ --- -title: 管理全局 web 挂钩 +title: Managing global webhooks shortTitle: Manage global webhooks intro: You can configure global webhooks to notify external web servers when events occur within your enterprise. permissions: Enterprise owners can manage global webhooks for an enterprise account. @@ -9,7 +9,7 @@ redirect_from: - /admin/user-management/managing-global-webhooks - /admin/user-management/managing-users-in-your-enterprise/managing-global-webhooks - /github/setting-up-and-managing-your-enterprise/managing-organizations-in-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - - /articles/configuring-webhooks-for-organization-events-in-your-business-account/ + - /articles/configuring-webhooks-for-organization-events-in-your-business-account - /articles/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise-account/configuring-webhooks-for-organization-events-in-your-enterprise-account - /github/setting-up-and-managing-your-enterprise/configuring-webhooks-for-organization-events-in-your-enterprise-account @@ -23,65 +23,77 @@ topics: - Webhooks --- -## 关于全局 web 挂钩 +## About global webhooks -You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. 更多信息请参阅“[web 挂钩](/developers/webhooks-and-events/webhooks)”。 +You can use global webhooks to notify an external web server when events occur within your enterprise. You can configure the server to receive the webhook's payload, then run an application or code that monitors, responds to, or enforces rules for user and organization management for your enterprise. For more information, see "[Webhooks](/developers/webhooks-and-events/webhooks)." For example, you can configure {% data variables.product.product_location %} to send a webhook when someone creates, deletes, or modifies a repository or organization within your enterprise. You can configure the server to automatically perform a task after receiving the webhook. -![全局 web 挂钩列表](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) +![List of global webhooks](/assets/images/enterprise/site-admin-settings/list-of-global-webhooks.png) {% data reusables.enterprise_user_management.manage-global-webhooks-api %} -## 添加全局 web 挂钩 +## Adding a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 单击 **Add webhook(添加 web 挂钩)**。 ![Webhooks 页面上 Admin center 中的 Add webhook 按钮](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) -6. 输入您想要接收有效负载的 URL。![用于输入有效负载 URL 的字段](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) -7. 或者,使用 **Content type** 下拉菜单,并单击有效负载格式。 ![列出内容类型选项的下拉菜单](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) -8. 或者,在 **Secret** 字段中,输入用作 `secret` 密钥的字符串。 ![用于输入用作密钥的字符串的字段](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) -9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. 阅读 SSL 验证的信息,然后单击 **I understand my webhooks may not be secure**。 ![Checkbox for disabling SSL verification](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) +5. Click **Add webhook**. + ![Add webhook button on Webhooks page in Admin center](/assets/images/enterprise/site-admin-settings/add-global-webhook-button.png) +6. Type the URL where you'd like to receive payloads. + ![Field to type a payload URL](/assets/images/enterprise/site-admin-settings/add-global-webhook-payload-url.png) +7. Optionally, use the **Content type** drop-down menu, and click a payload format. + ![Drop-down menu listing content type options](/assets/images/enterprise/site-admin-settings/add-global-webhook-content-type-dropdown.png) +8. Optionally, in the **Secret** field, type a string to use as a `secret` key. + ![Field to type a string to use as a secret key](/assets/images/enterprise/site-admin-settings/add-global-webhook-secret.png) +9. Optionally, if your payload URL is HTTPS and you would not like {% data variables.product.prodname_ghe_server %} to verify SSL certificates when delivering payloads, select **Disable SSL verification**. Read the information about SSL verification, then click **I understand my webhooks may not be secure**. + ![Checkbox for disabling SSL verification](/assets/images/enterprise/site-admin-settings/add-global-webhook-disable-ssl-button.png) {% warning %} - **警告**:SSL 验证有助于确保安全投递挂钩有效负载。 我们不建议禁用 SSL 验证。 + **Warning:** SSL verification helps ensure that hook payloads are delivered securely. We do not recommend disabling SSL verification. {% endwarning %} -10. Decide if you'd like this webhook to trigger for every event or for selected events. ![包含用于为每个事件或选定事件接收有效负载的选项的单选按钮](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) - - 对于每个事件,请选择 **Send me everything**。 - - 要选择特定事件,请选择 **Let me select individual events**。 +10. Decide if you'd like this webhook to trigger for every event or for selected events. + ![Radio buttons with options to receive payloads for every event or selected events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-events.png) + - For every event, select **Send me everything**. + - To choose specific events, select **Let me select individual events**. 11. If you chose to select individual events, select the events that will trigger the webhook. {% ifversion ghec %} ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events.png) {% elsif ghes or ghae %} ![Checkboxes for individual global webhook events](/assets/images/enterprise/site-admin-settings/add-global-webhook-select-individual-events-ghes-and-ae.png) {% endif %} -12. Confirm that the **Active** checkbox is selected. ![已选择 Active 复选框](/assets/images/help/business-accounts/webhook-active.png) -13. 单击 **Add webhook(添加 web 挂钩)**。 +12. Confirm that the **Active** checkbox is selected. + ![Selected Active checkbox](/assets/images/help/business-accounts/webhook-active.png) +13. Click **Add webhook**. -## 编辑全局 web 挂钩 +## Editing a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 在您想要编辑的 web 挂钩旁,单击 **Edit**。 ![web 挂钩旁的 Edit 按钮](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) -6. 更新 web 挂钩的设置。 -7. 单击 **Update webhook**。 +5. Next to the webhook you'd like to edit, click **Edit**. + ![Edit button next to a webhook](/assets/images/enterprise/site-admin-settings/edit-global-webhook-button.png) +6. Update the webhook's settings. +7. Click **Update webhook**. -## 删除全局 web 挂钩 +## Deleting a global webhook {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 在您想要删除的 web 挂钩旁,请单击 **Delete**。 ![web 挂钩旁的 Delete 按钮](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) -6. 阅读有关删除 web 挂钩的信息,然后单击 **Yes, delete webhook**。 ![包含警告信息的弹出框和用于确认删除 web 挂钩的按钮](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) +5. Next to the webhook you'd like to delete, click **Delete**. + ![Delete button next to a webhook](/assets/images/enterprise/site-admin-settings/delete-global-webhook-button.png) +6. Read the information about deleting a webhook, then click **Yes, delete webhook**. + ![Pop-up box with warning information and button to confirm deleting the webhook](/assets/images/enterprise/site-admin-settings/confirm-delete-global-webhook.png) -## 查看最近的交付和回复 +## Viewing recent deliveries and responses {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.hooks-tab %} -5. 在 web 挂钩列表中,单击您想要查看其投递的 web 挂钩。 ![包含用于查看每个 web 挂钩的链接的 web 挂钩列表](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) -6. 在“Recent deliveries”下,单击投递以查看详细信息。 ![包含用于查看详细信息的链接的 web 挂钩最近投递列表](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) +5. In the list of webhooks, click the webhook for which you'd like to see deliveries. + ![List of webhooks with links to view each webhook](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) +6. Under "Recent deliveries", click a delivery to view details. + ![List of the webhook's recent deliveries with links to view details](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md index 4860081123..9fc020f88a 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/searching-the-audit-log.md @@ -1,8 +1,8 @@ --- -title: 搜索审核日志 -intro: 站点管理员可以在企业上搜索已审核操作的广泛列表。 +title: Searching the audit log +intro: Site administrators can search an extensive list of audited actions on the enterprise. redirect_from: - - /enterprise/admin/articles/searching-the-audit-log/ + - /enterprise/admin/articles/searching-the-audit-log - /enterprise/admin/installation/searching-the-audit-log - /enterprise/admin/user-management/searching-the-audit-log - /admin/user-management/searching-the-audit-log @@ -15,37 +15,37 @@ topics: - Enterprise - Logging --- +## Search query syntax -## 搜索查询语法 +Compose a search query from one or more key:value pairs separated by AND/OR logical operators. -由一个或多个键值对(以 AND/OR 逻辑运算符分隔)构成一个搜索查询。 +Key | Value +--------------:| -------------------------------------------------------- +`actor_id` | ID of the user account that initiated the action +`actor` | Name of the user account that initiated the action +`oauth_app_id` | ID of the OAuth application associated with the action +`action` | Name of the audited action +`user_id` | ID of the user affected by the action +`user` | Name of the user affected by the action +`repo_id` | ID of the repository affected by the action (if applicable) +`repo` | Name of the repository affected by the action (if applicable) +`actor_ip` | IP address from which the action was initiated +`created_at` | Time at which the action occurred +`from` | View from which the action was initiated +`note` | Miscellaneous event-specific information (in either plain text or JSON format) +`org` | Name of the organization affected by the action (if applicable) +`org_id` | ID of the organization affected by the action (if applicable) -| 键 | 值 | -| --------------:| ------------------------- | -| `actor_id` | 发起操作的用户帐户的 ID | -| `actor` | 发起操作的用户帐户的名称 | -| `oauth_app_id` | 与操作相关联的 OAuth 应用程序的 ID | -| `action` | 已审核操作的名称 | -| `user_id` | 受操作影响的用户的 ID | -| `用户` | 受操作影响的用户的名称 | -| `repo_id` | 受操作影响的仓库的 ID(若适用) | -| `repo` | 受操作影响的仓库的名称(若适用) | -| `actor_ip` | 发起操作的 IP 地址 | -| `created_at` | 操作发生的时间 | -| `from` | 发起操作的视图 | -| `note` | 事件特定的其他信息(采用纯文本或 JSON 格式) | -| `org` | 受操作影响的组织的名称(若适用) | -| `org_id` | 受操作影响的组织的 ID(若适用) | - -例如,要查看自 2017 年初开始影响仓库 `octocat/Spoon-Knife` 的所有操作: +For example, to see all actions that have affected the repository `octocat/Spoon-Knife` since the beginning of 2017: `repo:"octocat/Spoon-Knife" AND created_at:[2017-01-01 TO *]` -有关操作的完整列表,请参阅“[审核的操作](/admin/user-management/audited-actions)”。 +For a full list of actions, see "[Audited actions](/admin/user-management/audited-actions)." -## 搜索审核日志 +## Searching the audit log {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} {% data reusables.enterprise-accounts.audit-log-tab %} -4. 输入搜索查询。 ![搜索查询](/assets/images/enterprise/site-admin-settings/search-query.png) +4. Type a search query. +![Search query](/assets/images/enterprise/site-admin-settings/search-query.png) diff --git a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md index 12ba4183f3..5f6e5fb089 100644 --- a/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md +++ b/translations/zh-CN/content/admin/user-management/monitoring-activity-in-your-enterprise/viewing-push-logs.md @@ -1,8 +1,8 @@ --- -title: 查看推送日志 -intro: 站点管理员可以查看企业上任何仓库的 Git 推送操作列表。 +title: Viewing push logs +intro: Site administrators can view a list of Git push operations for any repository on the enterprise. redirect_from: - - /enterprise/admin/articles/viewing-push-logs/ + - /enterprise/admin/articles/viewing-push-logs - /enterprise/admin/installation/viewing-push-logs - /enterprise/admin/user-management/viewing-push-logs - /admin/user-management/viewing-push-logs @@ -16,30 +16,31 @@ topics: - Git - Logging --- +Push log entries show: -推送日志条目会显示: +- Who initiated the push +- Whether it was a force push or not +- The branch someone pushed to +- The protocol used to push +- The originating IP address +- The Git client used to push +- The SHA hashes from before and after the operation -- 推送发起人 -- 是否为强制推送 -- 某人推送到的分支 -- 推送所使用的协议 -- 发起的 IP 地址 -- 推送所使用的 Git 客户端 -- 操作前后的 SHA 哈希 +## Viewing a repository's push logs -## 查看仓库的推送日志 - -1. 以站点管理员的身份登录 {% data variables.product.prodname_ghe_server %} 。 -1. 导航到仓库。 -1. 在仓库页面右上角,单击 {% octicon "rocket" aria-label="The rocket ship" %}。 ![用于访问站点管理员设置的火箭图标](/assets/images/enterprise/site-admin-settings/access-new-settings.png) +1. Sign into {% data variables.product.prodname_ghe_server %} as a site administrator. +1. Navigate to a repository. +1. In the upper-right corner of the repository's page, click {% octicon "rocket" aria-label="The rocket ship" %}. + ![Rocketship icon for accessing site admin settings](/assets/images/enterprise/site-admin-settings/access-new-settings.png) {% data reusables.enterprise_site_admin_settings.security-tab %} -4. 在左侧边栏中,单击 **Push Log**。 ![Push Log 选项卡](/assets/images/enterprise/site-admin-settings/push-log-tab.png) +4. In the left sidebar, click **Push Log**. +![Push log tab](/assets/images/enterprise/site-admin-settings/push-log-tab.png) {% ifversion ghes %} -## 在命令行上查看仓库的推送日志 +## Viewing a repository's push logs on the command-line {% data reusables.enterprise_installation.ssh-into-instance %} -1. 在相应的 Git 仓库中,打开审核日志文件: +1. In the appropriate Git repository, open the audit log file: ```shell ghe-repo <em>owner</em>/<em>repository</em> -c "less audit_log" ``` diff --git a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md index 2cd4588167..94f9079075 100644 --- a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md +++ b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on.md @@ -1,13 +1,11 @@ --- title: About authentication with SAML single sign-on -intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif fpt %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion fpt or ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' -product: '{% data reusables.gated-features.saml-sso %}' +intro: 'You can access {% ifversion ghae %}{% data variables.product.product_location %}{% elsif ghec %}an organization that uses SAML single sign-on (SSO){% endif %} by authenticating {% ifversion ghae %}with SAML single sign-on (SSO) {% endif %}through an identity provider (IdP).{% ifversion ghec %} After you authenticate with the IdP successfully from {% data variables.product.product_name %}, you must authorize any personal access token, SSH key, or {% data variables.product.prodname_oauth_app %} you would like to access the organization''s resources.{% endif %}' redirect_from: - /articles/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/about-authentication-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -57,5 +55,5 @@ After an enterprise or organization owner enables or enforces SAML SSO for an or ## Further reading -{% ifversion fpt or ghec %}- "[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)"{% endif %} +{% ifversion ghec %}- "[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)"{% endif %} {% ifversion ghae %}- "[About identity and access management for your enterprise](/admin/authentication/about-identity-and-access-management-for-your-enterprise)"{% endif %} diff --git a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md index 82c61f0147..cd89fcbb59 100644 --- a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md +++ b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md @@ -1,31 +1,31 @@ --- -title: 授权用于 SAML 单点登录的个人访问令牌 -intro: 要将个人访问令牌用于使用 SAML 单点登录 (SSO) 的组织,必须先授权该令牌。 +title: Authorizing a personal access token for use with SAML single sign-on +intro: 'To use a personal access token with an organization that uses SAML single sign-on (SSO), you must first authorize the token.' redirect_from: - - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-a-personal-access-token-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO -shortTitle: 使用 SAML 的 PAT +shortTitle: PAT with SAML --- - -您可以授权现有的个人访问令牌,或者[创建新的个人访问令牌](/github/authenticating-to-github/creating-a-personal-access-token),然后再授权。 +You can authorize an existing personal access token, or [create a new personal access token](/github/authenticating-to-github/creating-a-personal-access-token) and then authorize it. {% data reusables.saml.authorized-creds-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.developer_settings %} {% data reusables.user_settings.personal_access_tokens %} -3. 在要授权的令牌旁边,单击 **Enable SSO(启用 SSO)**或 **Disable SSO(禁用 SSO)**。 ![SSO 令牌授权按钮](/assets/images/help/settings/sso-allowlist-button.png) -4. 找到要为其授权访问令牌的组织。 -4. 单击 **Authorize(授权)**。 ![令牌授权按钮](/assets/images/help/settings/token-authorize-button.png) +3. Next to the token you'd like to authorize, click **Enable SSO** or **Disable SSO**. + ![SSO token authorize button](/assets/images/help/settings/sso-allowlist-button.png) +4. Find the organization you'd like to authorize the access token for. +4. Click **Authorize**. + ![Token authorize button](/assets/images/help/settings/token-authorize-button.png) -## 延伸阅读 +## Further reading -- “[创建个人访问令牌](/github/authenticating-to-github/creating-a-personal-access-token)”。 -- "[关于使用 SAML 单点登录进行身份验证](/articles/about-authentication-with-saml-single-sign-on)" +- "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)" +- "[About authentication with SAML single sign-on](/articles/about-authentication-with-saml-single-sign-on)" diff --git a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md index 7f03c3a93b..2bd5cef6ba 100644 --- a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md +++ b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md @@ -1,36 +1,36 @@ --- -title: 授权用于 SAML 单点登录的 SSH 密钥 -intro: 要将 SSH 密钥用于使用 SAML 单点登录 (SSO) 的组织,必须先授权该密钥。 +title: Authorizing an SSH key for use with SAML single sign-on +intro: 'To use an SSH key with an organization that uses SAML single sign-on (SSO), you must first authorize the key.' redirect_from: - - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization/ + - /articles/authorizing-an-ssh-key-for-use-with-a-saml-single-sign-on-organization - /articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - SSO -shortTitle: 使用 SAML 的 SSH 密钥 +shortTitle: SSH Key with SAML --- - -您可以授权现有 SSH 密钥,或者创建新 SSH 密钥后再授权。 有关创建新 SSH 密钥的更多信息,请参阅“[生成新的 SSH 密钥并添加到 ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)”。 +You can authorize an existing SSH key, or create a new SSH key and then authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." {% data reusables.saml.authorized-creds-info %} {% note %} -**注:**如果您的 SSH 密钥授权被组织撤销,您便博学多才再授权该密钥。 此时您需要创建新 SSH 密钥并授权。 有关创建新 SSH 密钥的更多信息,请参阅“[生成新的 SSH 密钥并添加到 ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)”。 +**Note:** If your SSH key authorization is revoked by an organization, you will not be able to reauthorize the same key. You will need to create a new SSH key and authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." {% endnote %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.ssh %} -3. 在要授权的 SSH 密钥旁边,单击 **Enable SSO(启用 SSO)**或 **Disable SSO(禁用 SSO)**。 ![SSO 令牌授权按钮](/assets/images/help/settings/ssh-sso-button.png) -4. 找到要为其授权访 SSH 密钥的组织。 -5. 单击 **Authorize(授权)**。 ![令牌授权按钮](/assets/images/help/settings/ssh-sso-authorize.png) +3. Next to the SSH key you'd like to authorize, click **Enable SSO** or **Disable SSO**. +![SSO token authorize button](/assets/images/help/settings/ssh-sso-button.png) +4. Find the organization you'd like to authorize the SSH key for. +5. Click **Authorize**. +![Token authorize button](/assets/images/help/settings/ssh-sso-authorize.png) -## 延伸阅读 +## Further reading -- "[检查现有 SSH 密钥](/articles/checking-for-existing-ssh-keys)" -- "[关于使用 SAML 单点登录进行身份验证](/articles/about-authentication-with-saml-single-sign-on)" +- "[Checking for existing SSH keys](/articles/checking-for-existing-ssh-keys)" +- "[About authentication with SAML single sign-on](/articles/about-authentication-with-saml-single-sign-on)" diff --git a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/index.md b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/index.md index a01f763241..c609a547c9 100644 --- a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/index.md +++ b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/index.md @@ -1,13 +1,11 @@ --- -title: 使用 SAML 单点登录进行身份验证 -intro: '您可以使用 SAML 单点登录 (SSO)向 {% ifversion fpt %} {% data variables.product.product_name %} 组织验证 {% elsif ghae %}{% data variables.product.product_location %} {% endif %}{% ifversion fpt %}并查看您活动的会话{% endif %}。' -product: '{% data reusables.gated-features.saml-sso %}' +title: Authenticating with SAML single sign-on +intro: 'You can authenticate to {% data variables.product.product_name %} with SAML single sign-on (SSO){% ifversion ghec %} and view your active sessions{% endif %}.' redirect_from: - - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on/ + - /articles/authenticating-to-a-github-organization-with-saml-single-sign-on - /articles/authenticating-with-saml-single-sign-on - - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/ + - /github/authenticating-to-github/authenticating-with-saml-single-sign-on versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -17,6 +15,6 @@ children: - /authorizing-an-ssh-key-for-use-with-saml-single-sign-on - /authorizing-a-personal-access-token-for-use-with-saml-single-sign-on - /viewing-and-managing-your-active-saml-sessions -shortTitle: 通过 SAML 验证 +shortTitle: Authenticate with SAML --- diff --git a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md index 2e12afa31b..466649aa42 100644 --- a/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md +++ b/translations/zh-CN/content/authentication/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions.md @@ -1,30 +1,31 @@ --- -title: 查看和管理活动的 SAML 会话 -intro: 您可以在安全设置中查看和撤销活动的 SAML 会话。 +title: Viewing and managing your active SAML sessions +intro: You can view and revoke your active SAML sessions in your security settings. redirect_from: - /articles/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/viewing-and-managing-your-active-saml-sessions - /github/authenticating-to-github/authenticating-with-saml-single-sign-on/viewing-and-managing-your-active-saml-sessions versions: - fpt: '*' ghec: '*' topics: - SSO -shortTitle: 活动的 SAML 会话 +shortTitle: Active SAML sessions --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.security %} -3. 在“Sessions(会话)”下,您可以看到活动的 SAML 会话。 ![活动 SAML 会话列表](/assets/images/help/settings/saml-active-sessions.png) -4. 要查看会话详细信息,请单击 **See more(查看更多)**。 ![用于打开 SAML 会话详细信息的按钮](/assets/images/help/settings/saml-expand-session-details.png) -5. 要撤销会话,请单击 **Revoke SAML(撤销 SAML)**。 ![撤销 SAML 会话的按钮](/assets/images/help/settings/saml-revoke-session.png) +3. Under "Sessions," you can see your active SAML sessions. + ![List of active SAML sessions](/assets/images/help/settings/saml-active-sessions.png) +4. To see the session details, click **See more**. + ![Button to open SAML session details](/assets/images/help/settings/saml-expand-session-details.png) +5. To revoke a session, click **Revoke SAML**. + ![Button to revoke a SAML session](/assets/images/help/settings/saml-revoke-session.png) {% note %} - **注:**撤销会话时,将删除对该组织的 SAML 身份验证。 要再次访问该组织,您需要通过身份提供程序单点登录。 更多信息请参阅“[关于使用 SAML SSO 进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)”。 + **Note:** When you revoke a session, you remove your SAML authentication to that organization. To access the organization again, you will need to single sign-on through your identity provider. For more information, see "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -## 延伸阅读 +## Further reading -- “[关于使用 SAML SSO 进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)” +- "[About authentication with SAML SSO](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" diff --git a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/about-ssh.md b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/about-ssh.md index d9adf96231..a649ffb628 100644 --- a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/about-ssh.md +++ b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/about-ssh.md @@ -1,6 +1,6 @@ --- -title: 关于 SSH -intro: '使用 SSH 协议可以连接远程服务器和服务并向它们验证。 利用 SSH 密钥可以连接 {% data variables.product.product_name %},而无需在每次访问时都提供用户名和个人访问令牌。' +title: About SSH +intro: 'Using the SSH protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to {% data variables.product.product_name %} without supplying your username and personal access token at each visit.' redirect_from: - /articles/about-ssh - /github/authenticating-to-github/about-ssh @@ -13,23 +13,22 @@ versions: topics: - SSH --- +When you set up SSH, you will need to generate a new SSH key and add it to the ssh-agent. You must add the SSH key to your account on {% data variables.product.product_name %} before you use the key to authenticate. For more information, see "[Generating a new SSH key and adding it to the ssh-agent](/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)" and "[Adding a new SSH key to your {% data variables.product.prodname_dotcom %} account](/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account)." -设置 SSH 时,您需要生成新的 SSH 密钥并将其添加到 ssh 代理中。 使用密钥进行身份验证之前,您必须将 SSH 密钥添加到 {% data variables.product.product_name %} 上的帐户中。 更多信息请参阅“[生成新的 SSH 密钥并将其添加到 ssh 代理](/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)”和“[添加新的 SSH 密钥到 {% data variables.product.prodname_dotcom %} 帐户](/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account)”。 +You can further secure your SSH key by using a hardware security key, which requires the physical hardware security key to be attached to your computer when the key pair is used to authenticate with SSH. You can also secure your SSH key by adding your key to the ssh-agent and using a passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -您可以使用硬件安全密钥来进一步保护 SSH 密钥,当密钥对用于通过 SSH 进行身份验证时,需要将物理硬件安全密钥附加到计算机上。 您还可以通过将密钥添加到 ssh 代理并使用密码来保护您的 SSH 密钥。 更多信息请参阅“[使用 SSH 密钥密码](/github/authenticating-to-github/working-with-ssh-key-passphrases)”。 +{% ifversion fpt or ghec %}To use your SSH key with a repository owned by an organization that uses SAML single sign-on, you must authorize the key. For more information, see "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} -{% ifversion fpt or ghec %}要对使用 SAML 单点登录的组织所拥有的仓库使用 SSH 密钥,您必须授权密钥。 更多信息请参阅“[授权 SSH 密钥用于 SAML 单点登录](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)”。{% endif %} - -为了保持帐户安全,您可以定期检查您的 SSH 密钥列表,并撤销任何无效或已泄漏的密钥。 更多信息请参阅“[审查 SSH 密钥](/github/authenticating-to-github/reviewing-your-ssh-keys)”。 +To maintain account security, you can regularly review your SSH keys list and revoke any keys that are invalid or have been compromised. For more information, see "[Reviewing your SSH keys](/github/authenticating-to-github/reviewing-your-ssh-keys)." {% ifversion fpt or ghec %} -如果 SSH 密钥一年未使用,则作为安全预防措施,{% data variables.product.prodname_dotcom %} 会自动删除非活动的 SSH 密钥。 更多信息请参阅“[删除或缺失的 SSH 密钥](/articles/deleted-or-missing-ssh-keys)”。 +If you haven't used your SSH key for a year, then {% data variables.product.prodname_dotcom %} will automatically delete your inactive SSH key as a security precaution. For more information, see "[Deleted or missing SSH keys](/articles/deleted-or-missing-ssh-keys)." {% endif %} -If you're a member of an organization that provides SSH certificates, you can use your certificate to access that organization's repositories without adding the certificate to your account on {% data variables.product.product_name %}. You cannot use your certificate to access forks of the organization's repositories that are owned by your user account. 更多信息请参阅“[关于 SSH 认证中心](/articles/about-ssh-certificate-authorities)”。 +If you're a member of an organization that provides SSH certificates, you can use your certificate to access that organization's repositories without adding the certificate to your account on {% data variables.product.product_name %}. You cannot use your certificate to access forks of the organization's repositories that are owned by your user account. For more information, see "[About SSH certificate authorities](/articles/about-ssh-certificate-authorities)." -## 延伸阅读 +## Further reading -- "[检查现有 SSH 密钥](/articles/checking-for-existing-ssh-keys)" -- "[测试 SSH 连接](/articles/testing-your-ssh-connection)" -- "[SSH 故障排除](/articles/troubleshooting-ssh)" +- "[Checking for existing SSH keys](/articles/checking-for-existing-ssh-keys)" +- "[Testing your SSH connection](/articles/testing-your-ssh-connection)" +- "[Troubleshooting SSH](/articles/troubleshooting-ssh)" diff --git a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md index 17b3890a45..98e191c19b 100644 --- a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md +++ b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md @@ -2,8 +2,8 @@ title: Generating a new SSH key and adding it to the ssh-agent intro: 'After you''ve checked for existing SSH keys, you can generate a new SSH key to use for authentication, then add it to the ssh-agent.' redirect_from: - - /articles/adding-a-new-ssh-key-to-the-ssh-agent/ - - /articles/generating-a-new-ssh-key/ + - /articles/adding-a-new-ssh-key-to-the-ssh-agent + - /articles/generating-a-new-ssh-key - /articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent - /github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent @@ -252,6 +252,6 @@ If you are using macOS or Linux, you may need to update your SSH client or insta - "[About SSH](/articles/about-ssh)" - "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)" -{%- ifversion fpt %} -- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)" +{%- ifversion fpt or ghec %} +- "[Authorizing an SSH key for use with SAML single sign-on](/articles/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} {%- endif %} diff --git a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/index.md b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/index.md index 67d3246e92..f052a1f3f4 100644 --- a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/index.md +++ b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/index.md @@ -1,16 +1,16 @@ --- -title: 使用 SSH 连接到 GitHub -intro: '您可以使用 Secure Shell Protocol (SSH) 连接到 {% data variables.product.product_name %} ,该协议通过不安全的网络提供安全通道。' +title: Connecting to GitHub with SSH +intro: 'You can connect to {% data variables.product.product_name %} using the Secure Shell Protocol (SSH), which provides a secure channel over an unsecured network.' redirect_from: - - /key-setup-redirect/ - - /linux-key-setup/ - - /mac-key-setup/ - - /msysgit-key-setup/ - - /articles/ssh-key-setup/ - - /articles/generating-ssh-keys/ - - /articles/generating-an-ssh-key/ + - /key-setup-redirect + - /linux-key-setup + - /mac-key-setup + - /msysgit-key-setup + - /articles/ssh-key-setup + - /articles/generating-ssh-keys + - /articles/generating-an-ssh-key - /articles/connecting-to-github-with-ssh - - /github/authenticating-to-github/connecting-to-github-with-ssh/ + - /github/authenticating-to-github/connecting-to-github-with-ssh versions: fpt: '*' ghes: '*' @@ -25,6 +25,6 @@ children: - /adding-a-new-ssh-key-to-your-github-account - /testing-your-ssh-connection - /working-with-ssh-key-passphrases -shortTitle: 与 SSH 连接 +shortTitle: Connect with SSH --- diff --git a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md index 70205aa757..f9dfd3f00c 100644 --- a/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md +++ b/translations/zh-CN/content/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases.md @@ -1,9 +1,9 @@ --- -title: 使用 SSH 密钥密码 -intro: 您可以保护 SSH 密钥并配置身份验证代理,这样您就不必在每次使用 SSH 密钥时重新输入密码。 +title: Working with SSH key passphrases +intro: You can secure your SSH keys and configure an authentication agent so that you won't have to reenter your passphrase every time you use your SSH keys. redirect_from: - - /ssh-key-passphrases/ - - /working-with-key-passphrases/ + - /ssh-key-passphrases + - /working-with-key-passphrases - /articles/working-with-ssh-key-passphrases - /github/authenticating-to-github/working-with-ssh-key-passphrases - /github/authenticating-to-github/connecting-to-github-with-ssh/working-with-ssh-key-passphrases @@ -14,14 +14,13 @@ versions: ghec: '*' topics: - SSH -shortTitle: SSH 密钥密码 +shortTitle: SSH key passphrases --- +With SSH keys, if someone gains access to your computer, they also gain access to every system that uses that key. To add an extra layer of security, you can add a passphrase to your SSH key. You can use `ssh-agent` to securely save your passphrase so you don't have to reenter it. -使用 SSH 密钥时,如果有人获得您计算机的访问权限,他们也可以使用该密钥访问每个系统。 要添加额外的安全层,可以向 SSH 密钥添加密码。 您可以使用 `ssh-agent` 安全地保存密码,从而不必重新输入。 +## Adding or changing a passphrase -## 添加或更改密码 - -通过输入以下命令,您可以更改现有私钥的密码而无需重新生成密钥对: +You can change the passphrase for an existing private key without regenerating the keypair by typing the following command: ```shell $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} @@ -32,13 +31,13 @@ $ ssh-keygen -p -f ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %} > Your identification has been saved with the new passphrase. ``` -如果您的密钥已有密码,系统将提示您输入该密码,然后才能更改为新密码。 +If your key already has a passphrase, you will be prompted to enter it before you can change to a new passphrase. {% windows %} -## 在 Git for Windows 上自动启动 `ssh-agent` +## Auto-launching `ssh-agent` on Git for Windows -您可以在打开 bash 或 Git shell 时自动运行 `ssh-agent`。 复制以下行并将其粘贴到 Git shell 中的 `~/.profile` 或 `~/.bashrc` 文件中: +You can run `ssh-agent` automatically when you open bash or Git shell. Copy the following lines and paste them into your `~/.profile` or `~/.bashrc` file in Git shell: ``` bash env=~/.ssh/agent.env @@ -64,15 +63,15 @@ fi unset env ``` -如果您的私钥没有存储在默认位置之一(如 `~/.ssh/id_rsa`),您需要告知 SSH 身份验证代理其所在位置。 要将密钥添加到 ssh-agent,请输入 `ssh-add ~/path/to/my_key`。 更多信息请参阅“[生成新的 SSH 密钥并添加到 ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)” +If your private key is not stored in one of the default locations (like `~/.ssh/id_rsa`), you'll need to tell your SSH authentication agent where to find it. To add your key to ssh-agent, type `ssh-add ~/path/to/my_key`. For more information, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)" {% tip %} -**提示:**如果想要 `ssh-agent` 在一段时间后忘记您的密钥,可通过运行 `ssh-add -t <seconds>` 进行配置。 +**Tip:** If you want `ssh-agent` to forget your key after some time, you can configure it to do so by running `ssh-add -t <seconds>`. {% endtip %} -现在,当您初次运行 Git Bash 时,系统将提示您输入密码: +Now, when you first run Git Bash, you are prompted for your passphrase: ```shell > Initializing new SSH agent... @@ -85,25 +84,25 @@ unset env > Run 'git help <command>' to display help for specific commands. ``` -`ssh-agent` 进程将继续运行,直到您注销、关闭计算机或终止该进程。 +The `ssh-agent` process will continue to run until you log out, shut down your computer, or kill the process. {% endwindows %} {% mac %} -## 在密钥链中保存密码 +## Saving your passphrase in the keychain -在 Mac OS X Leopard 上通过 OS X El Capitan,这些默认私钥文件将自动处理: +On Mac OS X Leopard through OS X El Capitan, these default private key files are handled automatically: - *.ssh/id_rsa* - *.ssh/identity* -初次使用密钥时,系统将提示您输入密码。 如果选择使用密钥链保存密码,则无需再次输入密码。 +The first time you use your key, you will be prompted to enter your passphrase. If you choose to save the passphrase with your keychain, you won't have to enter it again. -否则,您可在将密钥添加到 ssh-agent 时在密钥链中存储密码。 更多信息请参阅“[添加 SSH 密钥到 ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)”。 +Otherwise, you can store your passphrase in the keychain when you add your key to the ssh-agent. For more information, see "[Adding your SSH key to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent#adding-your-ssh-key-to-the-ssh-agent)." {% endmac %} -## 延伸阅读 +## Further reading -- "[关于 SSH](/articles/about-ssh)" +- "[About SSH](/articles/about-ssh)" diff --git a/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md b/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md index 1d89343fd8..91249e7e4e 100644 --- a/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md +++ b/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/about-authentication-to-github.md @@ -76,7 +76,7 @@ If you authenticate without {% data variables.product.prodname_cli %}, you will ### Authorizing for SAML single sign-on -{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}To use a personal access token or SSH key to access resources owned by an organization that uses SAML single sign-on, you must also authorize the personal token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" or "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghes > 3.1 or ghae or ghec %} diff --git a/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md b/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md index ccb0b169ea..da65603203 100644 --- a/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md +++ b/translations/zh-CN/content/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token.md @@ -27,7 +27,7 @@ shortTitle: Create a PAT Personal access tokens (PATs) are an alternative to using passwords for authentication to {% data variables.product.product_name %} when using the [GitHub API](/rest/overview/other-authentication-methods#via-oauth-and-personal-access-tokens) or the [command line](#using-a-token-on-the-command-line). -{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the PAT. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} @@ -65,7 +65,7 @@ A token with no assigned scopes can only access public information. To use your {% endwarning %} -{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML SSO, [authorize the token for use with a SAML single-sign-on organization](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on).{% endif %} +{% ifversion fpt or ghec %}9. To use your token to authenticate to an organization that uses SAML single sign-on, authorize the token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} ## Using a token on the command line diff --git a/translations/zh-CN/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md b/translations/zh-CN/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md index 0a0564460c..e369530726 100644 --- a/translations/zh-CN/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md +++ b/translations/zh-CN/content/authentication/managing-commit-signature-verification/about-commit-signature-verification.md @@ -2,8 +2,8 @@ title: About commit signature verification intro: 'Using GPG or S/MIME, you can sign tags and commits locally. These tags or commits are marked as verified on {% data variables.product.product_name %} so other people can be confident that the changes come from a trusted source.' redirect_from: - - /articles/about-gpg-commit-and-tag-signatures/ - - /articles/about-gpg/ + - /articles/about-gpg-commit-and-tag-signatures + - /articles/about-gpg - /articles/about-commit-signature-verification - /github/authenticating-to-github/about-commit-signature-verification - /github/authenticating-to-github/managing-commit-signature-verification/about-commit-signature-verification diff --git a/translations/zh-CN/content/authentication/managing-commit-signature-verification/index.md b/translations/zh-CN/content/authentication/managing-commit-signature-verification/index.md index 46d25d4f64..8a3ba49810 100644 --- a/translations/zh-CN/content/authentication/managing-commit-signature-verification/index.md +++ b/translations/zh-CN/content/authentication/managing-commit-signature-verification/index.md @@ -1,11 +1,11 @@ --- -title: 管理提交签名验证 -intro: '您可以使用 GPG 或 S/MIME 在本地对工作进行签名。 {% data variables.product.product_name %} 将会验证这些签名,以便其他人知道提交来自可信的来源。{% ifversion fpt %} {% data variables.product.product_name %} 将自动使用 {% data variables.product.product_name %} web 界面{% endif %}对您的提交签名。' +title: Managing commit signature verification +intro: 'You can sign your work locally using GPG or S/MIME. {% data variables.product.product_name %} will verify these signatures so other people will know that your commits come from a trusted source.{% ifversion fpt %} {% data variables.product.product_name %} will automatically sign commits you make using the {% data variables.product.product_name %} web interface.{% endif %}' redirect_from: - - /articles/generating-a-gpg-key/ - - /articles/signing-commits-with-gpg/ + - /articles/generating-a-gpg-key + - /articles/signing-commits-with-gpg - /articles/managing-commit-signature-verification - - /github/authenticating-to-github/managing-commit-signature-verification/ + - /github/authenticating-to-github/managing-commit-signature-verification versions: fpt: '*' ghes: '*' @@ -24,6 +24,6 @@ children: - /associating-an-email-with-your-gpg-key - /signing-commits - /signing-tags -shortTitle: 验证提交签名 +shortTitle: Verify commit signatures --- diff --git a/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-commits.md b/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-commits.md index ad03fae2b2..a158f5199a 100644 --- a/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-commits.md +++ b/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-commits.md @@ -2,8 +2,8 @@ title: Signing commits intro: You can sign commits locally using GPG or S/MIME. redirect_from: - - /articles/signing-commits-and-tags-using-gpg/ - - /articles/signing-commits-using-gpg/ + - /articles/signing-commits-and-tags-using-gpg + - /articles/signing-commits-using-gpg - /articles/signing-commits - /github/authenticating-to-github/signing-commits - /github/authenticating-to-github/managing-commit-signature-verification/signing-commits diff --git a/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-tags.md b/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-tags.md index 2a6f4eebb5..7d9a38a398 100644 --- a/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-tags.md +++ b/translations/zh-CN/content/authentication/managing-commit-signature-verification/signing-tags.md @@ -1,8 +1,8 @@ --- -title: 对标记签名 -intro: 您可以使用 GPG 或 S/MIME 在本地对标记进行签名。 +title: Signing tags +intro: You can sign tags locally using GPG or S/MIME. redirect_from: - - /articles/signing-tags-using-gpg/ + - /articles/signing-tags-using-gpg - /articles/signing-tags - /github/authenticating-to-github/signing-tags - /github/authenticating-to-github/managing-commit-signature-verification/signing-tags @@ -15,26 +15,25 @@ topics: - Identity - Access management --- - {% data reusables.gpg.desktop-support-for-commit-signing %} -1. 要对标记签名,请将 `-s` 添加到您的 `git tag` 命令。 +1. To sign a tag, add `-s` to your `git tag` command. ```shell $ git tag -s <em>mytag</em> # Creates a signed tag ``` -2. 通过运行 `git tag -v [tag-name]` 验证您签名的标记。 +2. Verify your signed tag it by running `git tag -v [tag-name]`. ```shell $ git tag -v <em>mytag</em> # Verifies the signed tag ``` -## 延伸阅读 +## Further reading -- "[查看仓库的标记](/articles/viewing-your-repositorys-tags)" -- "[检查现有 GPG 密钥](/articles/checking-for-existing-gpg-keys)" -- "[生成新 GPG 密钥](/articles/generating-a-new-gpg-key)" -- "[添加新 GPG 密钥到 GitHub 帐户](/articles/adding-a-new-gpg-key-to-your-github-account)" -- "[向 Git 告知您的签名密钥](/articles/telling-git-about-your-signing-key)" -- "[将电子邮件与 GPG 密钥关联](/articles/associating-an-email-with-your-gpg-key)" -- "[对提交签名](/articles/signing-commits)" +- "[Viewing your repository's tags](/articles/viewing-your-repositorys-tags)" +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Telling Git about your signing key](/articles/telling-git-about-your-signing-key)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" diff --git a/translations/zh-CN/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md b/translations/zh-CN/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md index 15d7baa1ff..25275ba5df 100644 --- a/translations/zh-CN/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md +++ b/translations/zh-CN/content/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key.md @@ -1,8 +1,8 @@ --- -title: 将您的签名密钥告知 Git -intro: 要在本地对提交签名,您需要通知 Git 您想要使用的 GPG 或 X.509 密钥。 +title: Telling Git about your signing key +intro: 'To sign commits locally, you need to inform Git that there''s a GPG or X.509 key you''d like to use.' redirect_from: - - /articles/telling-git-about-your-gpg-key/ + - /articles/telling-git-about-your-gpg-key - /articles/telling-git-about-your-signing-key - /github/authenticating-to-github/telling-git-about-your-signing-key - /github/authenticating-to-github/managing-commit-signature-verification/telling-git-about-your-signing-key @@ -14,33 +14,32 @@ versions: topics: - Identity - Access management -shortTitle: 将您的签名密钥告诉 Git +shortTitle: Tell Git your signing key --- - {% mac %} -## 将您的 GPG 密钥告知 Git +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -如果您没有与提交者身份匹配的 GPG 密钥,则需要将电子邮件与现有密钥关联。 更多信息请参阅“[将电子邮件与 GPG 密钥关联](/articles/associating-an-email-with-your-gpg-key)”。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -如果您有多个 GPG 密钥,则需要告知 Git 要使用哪一个。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. 如果您使用的不是 GPG 套件, 在 `zsh` shell 中运行以下命令将GPG 密钥添加到您的 `shrc` 文件或 `.zprofile` 文件(如果存在): +1. If you aren't using the GPG suite, run the following command in the `zsh` shell to add the GPG key to your `.zshrc` file, if it exists, or your `.zprofile` file: ```shell $ if [ -r ~/.zshrc ]; then echo 'export GPG_TTY=$(tty)' >> ~/.zshrc; \ else echo 'export GPG_TTY=$(tty)' >> ~/.zprofile; fi ``` - 或者,如果您使用 `bash` shell,则运行皮命令: + Alternatively, if you use the `bash` shell, run this command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi @@ -52,17 +51,17 @@ If you're using a GPG key that matches your committer identity and your verified {% windows %} -## 将您的 GPG 密钥告知 Git +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -如果您没有与提交者身份匹配的 GPG 密钥,则需要将电子邮件与现有密钥关联。 更多信息请参阅“[将电子邮件与 GPG 密钥关联](/articles/associating-an-email-with-your-gpg-key)”。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -如果您有多个 GPG 密钥,则需要告知 Git 要使用哪一个。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} @@ -75,41 +74,41 @@ If you're using a GPG key that matches your committer identity and your verified {% linux %} -## 将您的 GPG 密钥告知 Git +## Telling Git about your GPG key If you're using a GPG key that matches your committer identity and your verified email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}, then you can begin signing commits and signing tags. {% note %} -如果您没有与提交者身份匹配的 GPG 密钥,则需要将电子邮件与现有密钥关联。 更多信息请参阅“[将电子邮件与 GPG 密钥关联](/articles/associating-an-email-with-your-gpg-key)”。 +If you don't have a GPG key that matches your committer identity, you need to associate an email with an existing key. For more information, see "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)". {% endnote %} -如果您有多个 GPG 密钥,则需要告知 Git 要使用哪一个。 +If you have multiple GPG keys, you need to tell Git which one to use. {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.gpg.list-keys-with-note %} {% data reusables.gpg.copy-gpg-key-id %} {% data reusables.gpg.paste-gpg-key-id %} -1. 要将 GPG 密钥添加到您的 bash 配置文件中,请运行以下命令: +1. To add your GPG key to your bash profile, run the following command: ```shell $ if [ -r ~/.bash_profile ]; then echo 'export GPG_TTY=$(tty)' >> ~/.bash_profile; \ else echo 'export GPG_TTY=$(tty)' >> ~/.profile; fi ``` {% note %} - **注:**如果您没有 `.bash_profile`,此命令会将 GPG 密钥添加到 `.profile`。 + **Note:** If you don't have `.bash_profile`, this command adds your GPG key to `.profile`. {% endnote %} {% endlinux %} -## 延伸阅读 +## Further reading -- "[检查现有 GPG 密钥](/articles/checking-for-existing-gpg-keys)" -- "[生成新 GPG 密钥](/articles/generating-a-new-gpg-key)" -- "[在 GPG 密钥中使用经验证的电子邮件地址](/articles/using-a-verified-email-address-in-your-gpg-key)" -- "[添加新 GPG 密钥到 GitHub 帐户](/articles/adding-a-new-gpg-key-to-your-github-account)" -- "[将电子邮件与 GPG 密钥关联](/articles/associating-an-email-with-your-gpg-key)" -- "[对提交签名](/articles/signing-commits)" -- "[对标记签名](/articles/signing-tags)" +- "[Checking for existing GPG keys](/articles/checking-for-existing-gpg-keys)" +- "[Generating a new GPG key](/articles/generating-a-new-gpg-key)" +- "[Using a verified email address in your GPG key](/articles/using-a-verified-email-address-in-your-gpg-key)" +- "[Adding a new GPG key to your GitHub account](/articles/adding-a-new-gpg-key-to-your-github-account)" +- "[Associating an email with your GPG key](/articles/associating-an-email-with-your-gpg-key)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md b/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md index 674055f03a..38e0b87865 100644 --- a/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md +++ b/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status.md @@ -1,8 +1,8 @@ --- -title: 检查提交和标记签名验证状态 -intro: '您可以在 {% data variables.product.product_name %} 上检查提交和标记签名的验证状态。' +title: Checking your commit and tag signature verification status +intro: 'You can check the verification status of your commit and tag signatures on {% data variables.product.product_name %}.' redirect_from: - - /articles/checking-your-gpg-commit-and-tag-signature-verification-status/ + - /articles/checking-your-gpg-commit-and-tag-signature-verification-status - /articles/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/checking-your-commit-and-tag-signature-verification-status - /github/authenticating-to-github/troubleshooting-commit-signature-verification/checking-your-commit-and-tag-signature-verification-status @@ -14,26 +14,30 @@ versions: topics: - Identity - Access management -shortTitle: 检查验证状态 +shortTitle: Check verification status --- +## Checking your commit signature verification status -## 检查提交签名验证状态 - -1. 在 {% data variables.product.product_name %} 上,导航到您的拉取请求。 +1. On {% data variables.product.product_name %}, navigate to your pull request. {% data reusables.repositories.review-pr-commits %} -3. 在提交的缩写提交哈希旁边,有一个框,显示您的提交签名已验证{% ifversion fpt or ghec %}、部分验证{% endif %}或未验证。 ![已签名提交](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) -4. 要查看有关提交签名的更详细信息,请单击 **Verified(已验证)**{% ifversion fpt or ghec %}、**Partially verified(部分验证)**{% endif %}或 **Unverified(未验证)**。 ![经验证签名提交](/assets/images/help/commits/gpg-signed-commit_verified_details.png) +3. Next to your commit's abbreviated commit hash, there is a box that shows whether your commit signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![Signed commit](/assets/images/help/commits/gpg-signed-commit-verified-without-details.png) +4. To view more detailed information about the commit signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed commit](/assets/images/help/commits/gpg-signed-commit_verified_details.png) -## 检查标记签名验证状态 +## Checking your tag signature verification status {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. 在 Releases(版本)页面的顶部,单击 **Tags(标记)**。 ![标记页面](/assets/images/help/releases/tags-list.png) -3. 在提交的标记说明旁边,有一个框,显示您的标记签名已验证{% ifversion fpt or ghec %}、部分验证{% endif %}或未验证。 ![已验证标记签名](/assets/images/help/commits/gpg-signed-tag-verified.png) -4. 要查看有关标记签名的更详细信息,请单击 **Verified(已验证)**{% ifversion fpt or ghec %}、**Partially verified(部分验证)**{% endif %}或 **Unverified(未验证)**。 ![经验证签名标记](/assets/images/help/commits/gpg-signed-tag-verified-details.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) +3. Next to your tag description, there is a box that shows whether your tag signature is verified{% ifversion fpt or ghec %}, partially verified,{% endif %} or unverified. +![verified tag signature](/assets/images/help/commits/gpg-signed-tag-verified.png) +4. To view more detailed information about the tag signature, click **Verified**{% ifversion fpt or ghec %}, **Partially verified**,{% endif %} or **Unverified**. +![Verified signed tag](/assets/images/help/commits/gpg-signed-tag-verified-details.png) -## 延伸阅读 +## Further reading -- “[关于提交签名验证](/articles/about-commit-signature-verification)” -- "[对提交签名](/articles/signing-commits)" -- "[对标记签名](/articles/signing-tags)" +- "[About commit signature verification](/articles/about-commit-signature-verification)" +- "[Signing commits](/articles/signing-commits)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/index.md b/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/index.md index e7a5096470..46abaa90df 100644 --- a/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/index.md +++ b/translations/zh-CN/content/authentication/troubleshooting-commit-signature-verification/index.md @@ -1,10 +1,10 @@ --- -title: 对提交签名验证进行故障排除 -intro: '您可能需要对在本地签名提交以在 {% data variables.product.product_name %} 上进行验证时引起的意外问题进行故障排除。' +title: Troubleshooting commit signature verification +intro: 'You may need to troubleshoot unexpected issues that arise when signing commits locally for verification on {% data variables.product.product_name %}.' redirect_from: - - /articles/troubleshooting-gpg/ + - /articles/troubleshooting-gpg - /articles/troubleshooting-commit-signature-verification - - /github/authenticating-to-github/troubleshooting-commit-signature-verification/ + - /github/authenticating-to-github/troubleshooting-commit-signature-verification versions: fpt: '*' ghes: '*' @@ -17,6 +17,6 @@ children: - /checking-your-commit-and-tag-signature-verification-status - /updating-an-expired-gpg-key - /using-a-verified-email-address-in-your-gpg-key -shortTitle: 验证疑难解答 +shortTitle: Troubleshoot verification --- diff --git a/translations/zh-CN/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md b/translations/zh-CN/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md index ff8a1e65ea..1f852e1bcf 100644 --- a/translations/zh-CN/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md +++ b/translations/zh-CN/content/authentication/troubleshooting-ssh/error-agent-admitted-failure-to-sign.md @@ -1,8 +1,8 @@ --- -title: 错误:代理承认没有签署 -intro: '在极少数情况下,在 Linux 上通过 SSH 连接 {% data variables.product.product_name %} 会产生错误“Agent admitted failure to sign using the key”(代理承认没有使用密钥签署)。 请遵循以下步骤解决此问题。' +title: 'Error: Agent admitted failure to sign' +intro: 'In rare circumstances, connecting to {% data variables.product.product_name %} via SSH on Linux produces the error `"Agent admitted failure to sign using the key"`. Follow these steps to resolve the problem.' redirect_from: - - /articles/error-agent-admitted-failure-to-sign-using-the-key/ + - /articles/error-agent-admitted-failure-to-sign-using-the-key - /articles/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/error-agent-admitted-failure-to-sign - /github/authenticating-to-github/troubleshooting-ssh/error-agent-admitted-failure-to-sign @@ -13,10 +13,9 @@ versions: ghec: '*' topics: - SSH -shortTitle: 代理签名失败 +shortTitle: Agent failure to sign --- - -在 Linux 上尝试将通过 SSH 连接到 {% data variables.product.product_location %} 时,可能在终端上看到以下信息: +When trying to SSH into {% data variables.product.product_location %} on a Linux computer, you may see the following message in your terminal: ```shell $ ssh -vT git@{% data variables.command_line.codeblock %} @@ -26,11 +25,11 @@ $ ssh -vT git@{% data variables.command_line.codeblock %} > Permission denied (publickey). ``` -更多详细信息请参阅<a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>本问题报告</a>。 +For more details, see <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786" data-proofer-ignore>this issue report</a>. -## 解决方法 +## Resolution -通过使用 `ssh-add` 将密钥加载到 SSH 代理,应该能够修复此错误: +You should be able to fix this error by loading your keys into your SSH agent with `ssh-add`: ```shell # start the ssh-agent in the background @@ -41,7 +40,7 @@ $ ssh-add > Identity added: /home/<em>you</em>/.ssh/id_rsa (/home/<em>you</em>/.ssh/id_rsa) ``` -如果密钥没有默认文件名 (`/.ssh/id_rsa`),必须将该路径传递到 `ssh-add`: +If your key does not have the default filename (`/.ssh/id_rsa`), you'll have to pass that path to `ssh-add`: ```shell # start the ssh-agent in the background diff --git a/translations/zh-CN/content/authentication/troubleshooting-ssh/index.md b/translations/zh-CN/content/authentication/troubleshooting-ssh/index.md index cac3554160..b7b79529d9 100644 --- a/translations/zh-CN/content/authentication/troubleshooting-ssh/index.md +++ b/translations/zh-CN/content/authentication/troubleshooting-ssh/index.md @@ -1,9 +1,9 @@ --- -title: SSH 故障排除 -intro: '使用 SSH 连接到 {% data variables.product.product_name %} 并进行身份验证时,您可能需要对可能引起的意外问题进行故障排除。' +title: Troubleshooting SSH +intro: 'When using SSH to connect and authenticate to {% data variables.product.product_name %}, you may need to troubleshoot unexpected issues that may arise.' redirect_from: - /articles/troubleshooting-ssh - - /github/authenticating-to-github/troubleshooting-ssh/ + - /github/authenticating-to-github/troubleshooting-ssh versions: fpt: '*' ghes: '*' diff --git a/translations/zh-CN/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md b/translations/zh-CN/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md index 62e3c148f6..e8e60da730 100644 --- a/translations/zh-CN/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md +++ b/translations/zh-CN/content/authentication/troubleshooting-ssh/recovering-your-ssh-key-passphrase.md @@ -1,9 +1,9 @@ --- -title: 恢复 SSH 密钥密码 -intro: 如果您丢失 SSH 密钥密码,则根据您使用的操作系统,您可能可以恢复它,也可能需要生成新的 SSH 密钥密码。 +title: Recovering your SSH key passphrase +intro: 'If you''ve lost your SSH key passphrase, depending on the operating system you use, you may either recover it or you may need to generate a new SSH key passphrase.' redirect_from: - - /articles/how-do-i-recover-my-passphrase/ - - /articles/how-do-i-recover-my-ssh-key-passphrase/ + - /articles/how-do-i-recover-my-passphrase + - /articles/how-do-i-recover-my-ssh-key-passphrase - /articles/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/recovering-your-ssh-key-passphrase - /github/authenticating-to-github/troubleshooting-ssh/recovering-your-ssh-key-passphrase @@ -14,30 +14,31 @@ versions: ghec: '*' topics: - SSH -shortTitle: 找回 SSH 密钥密码 +shortTitle: Recover SSH key passphrase --- - {% mac %} -如果您[使用 macOS 密钥链配置 SSH 密码](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain),则能够恢复它。 +If you [configured your SSH passphrase with the macOS keychain](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain), you may be able to recover it. -1. 在 Finder 中,搜索 **Keychain Access** 应用程序。 ![Spotlight 搜索栏](/assets/images/help/setup/keychain-access.png) -2. 在 Keychain Access 中,搜索 **SSH**。 -3. 双击 SSH 密钥的条目以打开一个新对话框。 -4. 在左上角选择 **Show password(显示密码)**。 ![Keychain Access 对话框](/assets/images/help/setup/keychain_show_password_dialog.png) -5. 系统将提示您输入管理密码。 在 "Keychain Access" 对话框中输入该密码。 -6. 此时将显示您的密码。 +1. In Finder, search for the **Keychain Access** app. + ![Spotlight Search bar](/assets/images/help/setup/keychain-access.png) +2. In Keychain Access, search for **SSH**. +3. Double click on the entry for your SSH key to open a new dialog box. +4. In the lower-left corner, select **Show password**. + ![Keychain access dialog](/assets/images/help/setup/keychain_show_password_dialog.png) +5. You'll be prompted for your administrative password. Type it into the "Keychain Access" dialog box. +6. Your password will be revealed. {% endmac %} {% windows %} -如果您丢失 SSH 密钥密码,则无法进行恢复。 您需要[生成全新的 SSH 密钥对](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)或[切换到 HTTPS 克隆](/github/getting-started-with-github/managing-remote-repositories),以便能够使用 GitHub 密码代替。 +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/managing-remote-repositories) so you can use your GitHub password instead. {% endwindows %} {% linux %} -如果您丢失 SSH 密钥密码,则无法进行恢复。 您需要[生成全新的 SSH 密钥对](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)或[切换到 HTTPS 克隆](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls),以便能够使用 GitHub 密码代替。 +If you lose your SSH key passphrase, there's no way to recover it. You'll need to [generate a brand new SSH keypair](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [switch to HTTPS cloning](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls) so you can use your GitHub password instead. {% endlinux %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md index 2cb58672b6..3fd9e67aef 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md +++ b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: 降级 Git Large File Storage -intro: '您可以按照每月 50 GB 的增量,降级 {% data variables.large_files.product_name_short %} 的存储和带宽。' +title: Downgrading Git Large File Storage +intro: 'You can downgrade storage and bandwidth for {% data variables.large_files.product_name_short %} by increments of 50 GB per month.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-git-large-file-storage - - /articles/downgrading-storage-and-bandwidth-for-a-personal-account/ - - /articles/downgrading-storage-and-bandwidth-for-an-organization/ + - /articles/downgrading-storage-and-bandwidth-for-a-personal-account + - /articles/downgrading-storage-and-bandwidth-for-an-organization - /articles/downgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/downgrading-git-large-file-storage versions: @@ -16,19 +16,18 @@ topics: - LFS - Organizations - User account -shortTitle: 降级 Git LFS 存储 +shortTitle: Downgrade Git LFS storage --- +When you downgrade your number of data packs, your change takes effect on your next billing date. For more information, see "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)." -降级数据包数量后,更改将在下一个结算日期生效。 更多信息请参阅“[关于 {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage) 的计费”。 - -## 降级个人帐户的存储和带宽 +## Downgrading storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-remove-data %} {% data reusables.large_files.downgrade_data_packs %} -## 降级组织的存储和带宽 +## Downgrading storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/index.md b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/index.md index e9d54fa970..1705e89890 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/index.md +++ b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/index.md @@ -1,12 +1,12 @@ --- -title: 管理 Git Large File Storage 的计费 +title: Managing billing for Git Large File Storage shortTitle: Git Large File Storage -intro: '您可以查看使用情况、升级和降级 {% data variables.large_files.product_name_long %}。' +intro: 'You can view usage for, upgrade, and downgrade {% data variables.large_files.product_name_long %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage - - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account/ - - /articles/managing-large-file-storage-and-bandwidth-for-your-organization/ - - /articles/managing-storage-and-bandwidth-usage/ + - /articles/managing-large-file-storage-and-bandwidth-for-your-personal-account + - /articles/managing-large-file-storage-and-bandwidth-for-your-organization + - /articles/managing-storage-and-bandwidth-usage - /articles/managing-billing-for-git-large-file-storage versions: fpt: '*' diff --git a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md index 335dfb8b9a..524d077114 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md +++ b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage.md @@ -1,10 +1,10 @@ --- -title: 升级 Git Large File Storage -intro: '您可以购买额外的数据包以增加 {% data variables.large_files.product_name_short %} 的每月带宽配额和总存储容量。' +title: Upgrading Git Large File Storage +intro: 'You can purchase additional data packs to increase your monthly bandwidth quota and total storage capacity for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-git-large-file-storage - - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account/ - - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization/ + - /articles/purchasing-additional-storage-and-bandwidth-for-a-personal-account + - /articles/purchasing-additional-storage-and-bandwidth-for-an-organization - /articles/upgrading-git-large-file-storage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage versions: @@ -16,10 +16,9 @@ topics: - Organizations - Upgrades - User account -shortTitle: 升级 Git LFS 存储 +shortTitle: Upgrade Git LFS storage --- - -## 为个人帐户购买额外的存储空间和带宽 +## Purchasing additional storage and bandwidth for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -27,7 +26,7 @@ shortTitle: 升级 Git LFS 存储 {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## 为组织购买额外的存储空间和带宽 +## Purchasing additional storage and bandwidth for an organization {% data reusables.dotcom_billing.org-billing-perms %} @@ -36,9 +35,9 @@ shortTitle: 升级 Git LFS 存储 {% data reusables.large_files.pack_selection %} {% data reusables.large_files.pack_confirm %} -## 延伸阅读 +## Further reading -- "[关于 {% data variables.large_files.product_name_long %} 的计费](/articles/about-billing-for-git-large-file-storage)" -- "[关于存储空间和带宽的使用](/articles/about-storage-and-bandwidth-usage)" -- "[查看您的 {% data variables.large_files.product_name_long %} 使用情况](/articles/viewing-your-git-large-file-storage-usage)" -- “[大文件版本管理](/articles/versioning-large-files)” +- "[About billing for {% data variables.large_files.product_name_long %}](/articles/about-billing-for-git-large-file-storage)" +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Viewing your {% data variables.large_files.product_name_long %} usage](/articles/viewing-your-git-large-file-storage-usage)" +- "[Versioning large files](/articles/versioning-large-files)" diff --git a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md index 4506e6ab8c..3cdfaa78d0 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md +++ b/translations/zh-CN/content/billing/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage.md @@ -1,10 +1,10 @@ --- -title: 查看您的 Git Large File Storage 使用情况 -intro: '您可以审核帐户的每月带宽配额和 {% data variables.large_files.product_name_short %} 的剩余存储空间。' +title: Viewing your Git Large File Storage usage +intro: 'You can audit your account''s monthly bandwidth quota and remaining storage for {% data variables.large_files.product_name_short %}.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-git-large-file-storage-usage - - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account/ - - /articles/viewing-storage-and-bandwidth-usage-for-an-organization/ + - /articles/viewing-storage-and-bandwidth-usage-for-a-personal-account + - /articles/viewing-storage-and-bandwidth-usage-for-an-organization - /articles/viewing-your-git-large-file-storage-usage - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-git-large-file-storage/viewing-your-git-large-file-storage-usage versions: @@ -15,25 +15,24 @@ topics: - LFS - Organizations - User account -shortTitle: 查看 Git LFS 使用情况 +shortTitle: View Git LFS usage --- - {% data reusables.large_files.owner_quota_only %} {% data reusables.large_files.does_not_carry %} -## 查看个人帐户的存储空间和带宽使用情况 +## Viewing storage and bandwidth usage for a personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.lfs-data %} -## 查看组织的存储空间和带宽使用情况 +## Viewing storage and bandwidth usage for an organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.lfs-data %} -## 延伸阅读 +## Further reading -- "[关于存储空间和带宽的使用](/articles/about-storage-and-bandwidth-usage)" -- “[升级 {% data variables.large_files.product_name_long %}](/articles/upgrading-git-large-file-storage/)” +- "[About storage and bandwidth usage](/articles/about-storage-and-bandwidth-usage)" +- "[Upgrading {% data variables.large_files.product_name_long %}](/articles/upgrading-git-large-file-storage/)" diff --git a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md index aba1748ac4..6d6d6bba9d 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md +++ b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: 取消 GitHub Marketplace 应用程序 -intro: '您可以随时从您的帐户取消和删除 {% data variables.product.prodname_marketplace %} 应用程序。' +title: Canceling a GitHub Marketplace app +intro: 'You can cancel and remove a {% data variables.product.prodname_marketplace %} app from your account at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/canceling-a-github-marketplace-app - - /articles/canceling-an-app-for-your-personal-account/ - - /articles/canceling-an-app-for-your-organization/ + - /articles/canceling-an-app-for-your-personal-account + - /articles/canceling-an-app-for-your-organization - /articles/canceling-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/canceling-a-github-marketplace-app versions: @@ -17,30 +17,29 @@ topics: - Organizations - Trials - User account -shortTitle: 取消 Marketplace app +shortTitle: Cancel a Marketplace app --- +When you cancel an app, your subscription remains active until the end of your current billing cycle. The cancellation takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -取消订阅后,您的订阅在当前结算周期结束之前将保持有效。 取消在下一个结算日期生效。 更多信息请参阅“[关于 {% data variables.product.prodname_marketplace %} 的计费](/articles/about-billing-for-github-marketplace)”。 - -当您取消付费计划中的免费试用时,您的订阅将立即被取消,您将失去对该应用程序的访问权限。 如果您在试用期内未取消免费试用,则您将在试用期结束时,通过您的帐户中备案的付款方式为您选择的计划付费。 更多信息请参阅“[关于 {% data variables.product.prodname_marketplace %} 的计费](/articles/about-billing-for-github-marketplace)”。 +When you cancel a free trial on a paid plan, your subscription is immediately canceled and you will lose access to the app. If you don't cancel your free trial within the trial period, the payment method on file for your account will be charged for the plan you chose at the end of the trial period. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## 取消个人帐户的应用程序 +## Canceling an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## 取消个人帐户的应用程序免费试用 +## Canceling a free trial for an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.marketplace.cancel-free-trial-billing-settings %} {% data reusables.marketplace.cancel-app %} -## 取消组织的应用程序 +## Canceling an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -51,7 +50,7 @@ shortTitle: 取消 Marketplace app {% data reusables.marketplace.cancel-app-billing-settings %} {% data reusables.marketplace.cancel-app %} -## 取消组织的应用程序免费试用 +## Canceling a free trial for an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md index 389217ff52..8a8f94379f 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: 降级 GitHub Marketplace 应用程序的结算方案 -intro: '如果您想要使用不同的结算方案,可以随时降级您的 {% data variables.product.prodname_marketplace %} 应用程序。' +title: Downgrading the billing plan for a GitHub Marketplace app +intro: 'If you''d like to use a different billing plan, you can downgrade your {% data variables.product.prodname_marketplace %} app at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/downgrading-an-app-for-your-personal-account/ - - /articles/downgrading-an-app-for-your-organization/ + - /articles/downgrading-an-app-for-your-personal-account + - /articles/downgrading-an-app-for-your-organization - /articles/downgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/downgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,14 +16,13 @@ topics: - Marketplace - Organizations - User account -shortTitle: 降级结算方案 +shortTitle: Downgrade billing plan --- - -降级应用程序后,您的订阅在当前结算周期结束之前将保持有效。 降级会在下一个结算日期生效。 更多信息请参阅“[关于 {% data variables.product.prodname_marketplace %} 的计费](/articles/about-billing-for-github-marketplace)”。 +When you downgrade an app, your subscription remains active until the end of your current billing cycle. The downgrade takes effect on your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." {% data reusables.marketplace.downgrade-marketplace-only %} -## 降级个人帐户的应用程序 +## Downgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -32,7 +31,7 @@ shortTitle: 降级结算方案 {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## 降级组织的应用程序 +## Downgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} @@ -44,6 +43,6 @@ shortTitle: 降级结算方案 {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## 延伸阅读 +## Further reading -- “[取消 {% data variables.product.prodname_marketplace %} 应用程序](/articles/canceling-a-github-marketplace-app/)” +- "[Canceling a {% data variables.product.prodname_marketplace %} app](/articles/canceling-a-github-marketplace-app/)" diff --git a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/index.md b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/index.md index 2829e5c172..3b0caf19f6 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/index.md +++ b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/index.md @@ -1,11 +1,11 @@ --- -title: 管理 GitHub Marketplace 应用程序的计费 -shortTitle: GitHub Marketplace app -intro: '您可以随时升级、降级或取消 {% data variables.product.prodname_marketplace %} 应用程序。' +title: Managing billing for GitHub Marketplace apps +shortTitle: GitHub Marketplace apps +intro: 'You can upgrade, downgrade, or cancel {% data variables.product.prodname_marketplace %} apps at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps - - /articles/managing-your-personal-account-s-apps/ - - /articles/managing-your-organization-s-apps/ + - /articles/managing-your-personal-account-s-apps + - /articles/managing-your-organization-s-apps - /articles/managing-billing-for-github-marketplace-apps versions: fpt: '*' diff --git a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md index 775e57d506..d381202232 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md +++ b/translations/zh-CN/content/billing/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app.md @@ -1,10 +1,10 @@ --- -title: 升级 GitHub Marketplace 应用程序的结算方案 -intro: '您可以随时将 {% data variables.product.prodname_marketplace %} 应用程序升级为不同的方案。' +title: Upgrading the billing plan for a GitHub Marketplace app +intro: 'You can upgrade your {% data variables.product.prodname_marketplace %} app to a different plan at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-the-billing-plan-for-a-github-marketplace-app - - /articles/upgrading-an-app-for-your-personal-account/ - - /articles/upgrading-an-app-for-your-organization/ + - /articles/upgrading-an-app-for-your-personal-account + - /articles/upgrading-an-app-for-your-organization - /articles/upgrading-the-billing-plan-for-a-github-marketplace-app - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-github-marketplace-apps/upgrading-the-billing-plan-for-a-github-marketplace-app versions: @@ -16,12 +16,11 @@ topics: - Organizations - Upgrades - User account -shortTitle: 升级结算方案 +shortTitle: Upgrade billing plan --- +When you upgrade an app, your payment method is charged a prorated amount based on the time remaining until your next billing date. For more information, see "[About billing for {% data variables.product.prodname_marketplace %}](/articles/about-billing-for-github-marketplace)." -升级应用程序时,您的付款方式会基于到下一结算日期之前剩余的时间按比例收费。 更多信息请参阅“[关于 {% data variables.product.prodname_marketplace %} 的计费](/articles/about-billing-for-github-marketplace)”。 - -## 升级个人帐户的应用程序 +## Upgrading an app for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,7 +29,7 @@ shortTitle: 升级结算方案 {% data reusables.marketplace.choose-new-quantity %} {% data reusables.marketplace.issue-plan-changes %} -## 升级组织的应用程序 +## Upgrading an app for your organization {% data reusables.marketplace.marketplace-org-perms %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md index ce660b7fa2..30be96c9c4 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts.md @@ -1,14 +1,14 @@ --- -title: 关于 GitHub 帐户的计费 -intro: '{% data variables.product.company_short %} 为每个开发者或团队提供免费和付费产品。' +title: About billing for GitHub accounts +intro: '{% data variables.product.company_short %} offers free and paid products for every developer or team.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-billing-for-github-accounts - - /articles/what-is-the-total-cost-of-using-an-organization-account/ - - /articles/what-are-the-costs-of-using-an-organization-account/ - - /articles/what-plan-should-i-choose/ - - /articles/do-you-have-custom-plans/ - - /articles/user-account-billing-plans/ - - /articles/organization-billing-plans/ + - /articles/what-is-the-total-cost-of-using-an-organization-account + - /articles/what-are-the-costs-of-using-an-organization-account + - /articles/what-plan-should-i-choose + - /articles/do-you-have-custom-plans + - /articles/user-account-billing-plans + - /articles/organization-billing-plans - /articles/github-s-billing-plans - /articles/about-billing-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/about-billing-for-github-accounts @@ -21,20 +21,22 @@ topics: - Discounts - Fundamentals - Upgrades -shortTitle: 关于计费 +shortTitle: About billing --- -有关可用于您帐户的产品的更多信息,请参阅“[{% data variables.product.prodname_dotcom %} 的产品](/articles/github-s-products)”。 您可以在 <{% data variables.product.pricing_url %}> 上查看每款产品的价格和完整功能列表。 {% data variables.product.product_name %} 不提供自定义产品或订阅。 +For more information about the products available for your account, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)." You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data variables.product.product_name %} does not offer custom products or subscriptions. -您可以选择月度或年度计费,也可以随时升级或降级订阅。 更多信息请参阅“[管理您的 {% data variables.product.prodname_dotcom %} 帐户的计费](/articles/managing-billing-for-your-github-account)”。 +You can choose monthly or yearly billing, and you can upgrade or downgrade your subscription at any time. For more information, see "[Managing billing for your {% data variables.product.prodname_dotcom %} account](/articles/managing-billing-for-your-github-account)." -您可以使用现有 {% data variables.product.product_name %} 付款信息购买其他功能和产品。 更多信息请参阅“[关于 {% data variables.product.prodname_dotcom %} 的计费](/articles/about-billing-on-github)”。 +You can purchase other features and products with your existing {% data variables.product.product_name %} payment information. For more information, see "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." + +{% data reusables.accounts.accounts-billed-separately %} {% data reusables.user_settings.context_switcher %} {% tip %} -**提示:** {% data variables.product.prodname_dotcom %} 为验证的学生和学院教师提供课程,可享有学术折扣。 更多信息请访问 [{% data variables.product.prodname_education %}](https://education.github.com/)。 +**Tip:** {% data variables.product.prodname_dotcom %} has programs for verified students and academic faculty, which include academic discounts. For more information, visit [{% data variables.product.prodname_education %}](https://education.github.com/). {% endtip %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md index 0dc25db5cf..6209f8ad3b 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts.md @@ -3,9 +3,9 @@ title: Discounted subscriptions for GitHub accounts intro: '{% data variables.product.product_name %} provides discounts to students, educators, educational institutions, nonprofits, and libraries.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts - - /articles/discounted-personal-accounts/ - - /articles/discounted-organization-accounts/ - - /articles/discounted-billing-plans/ + - /articles/discounted-personal-accounts + - /articles/discounted-organization-accounts + - /articles/discounted-billing-plans - /articles/discounted-subscriptions-for-github-accounts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/discounted-subscriptions-for-github-accounts versions: diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md index 5257f0537a..cdaa744340 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md @@ -1,20 +1,20 @@ --- -title: 降级 GitHub 订阅 -intro: '您可以随时降级 {% data variables.product.product_location %} 上任何类型的帐户的订阅。' +title: Downgrading your GitHub subscription +intro: 'You can downgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/downgrading-your-github-subscription - - /articles/downgrading-your-personal-account-s-billing-plan/ - - /articles/how-do-i-cancel-my-account/ - - /articles/downgrading-a-user-account-to-free/ - - /articles/removing-paid-seats-from-your-organization/ - - /articles/downgrading-your-organization-s-paid-seats/ - - /articles/downgrading-your-organization-s-billing-plan/ - - /articles/downgrading-an-organization-with-per-seat-pricing-to-free/ - - /articles/downgrading-an-organization-with-per-repository-pricing-to-free/ - - /articles/downgrading-your-organization-to-free/ - - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan/ - - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan/ - - /articles/downgrading-your-github-billing-plan/ + - /articles/downgrading-your-personal-account-s-billing-plan + - /articles/how-do-i-cancel-my-account + - /articles/downgrading-a-user-account-to-free + - /articles/removing-paid-seats-from-your-organization + - /articles/downgrading-your-organization-s-paid-seats + - /articles/downgrading-your-organization-s-billing-plan + - /articles/downgrading-an-organization-with-per-seat-pricing-to-free + - /articles/downgrading-an-organization-with-per-repository-pricing-to-free + - /articles/downgrading-your-organization-to-free + - /articles/downgrading-your-organization-from-the-business-plan-to-the-team-plan + - /articles/downgrading-your-organization-from-github-business-cloud-to-the-team-plan + - /articles/downgrading-your-github-billing-plan - /articles/downgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/downgrading-your-github-subscription versions: @@ -26,63 +26,71 @@ topics: - Organizations - Repositories - User account -shortTitle: 降级订阅 +shortTitle: Downgrade subscription --- +## Downgrading your {% data variables.product.product_name %} subscription -## 降级您的 {% data variables.product.product_name %} 订阅 +When you downgrade your user account or organization's subscription, pricing and account feature changes take effect on your next billing date. Changes to your paid user account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. For more information, see "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." -降级用户帐户或组织的订阅时,定价和帐户功能更改将在下一个帐单日期生效。 对付费用户帐户或组织订阅的更改不影响其他付费 {% data variables.product.prodname_dotcom %} 功能的订阅或付款。 更多信息请参阅“[升级或降低对结算过程有何影响?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)” +## Downgrading your user account's subscription -## 降级用户帐户的订阅 - -如果您将您的用户帐户从 {% data variables.product.prodname_pro %} 降级为 {% data variables.product.prodname_free_user %},该帐户将失去对私有仓库中高级代码审查工具的访问权限。 {% data reusables.gated-features.more-info %} +If you downgrade your user account from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, the account will lose access to advanced code review tools on private repositories. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. 在“Current plan(当前计划)”下,使用 **Edit(编辑)**下拉菜单并单击 **Downgrade to Free(降级到免费 )**。 ![降级到免费按钮](/assets/images/help/billing/downgrade-to-free.png) -5. 阅读有关信息,了解您的用户帐户在下一个结算日期将不再拥有访问权限的功能,然后单击 **I understand. Continue with downgrade(我明白。继续降级)**。 ![继续降级按钮](/assets/images/help/billing/continue-with-downgrade.png) +1. Under "Current plan", use the **Edit** drop-down and click **Downgrade to Free**. + ![Downgrade to free button](/assets/images/help/billing/downgrade-to-free.png) +5. Read the information about the features your user account will no longer have access to on your next billing date, then click **I understand. Continue with downgrade**. + ![Continue with downgrade button](/assets/images/help/billing/continue-with-downgrade.png) -如果您在私有仓库中发布了 {% data variables.product.prodname_pages %} 站点,并添加了自定义域,在从 {% data variables.product.prodname_pro %} 降级至 {% data variables.product.prodname_free_user %} 前,请删除或更新您的 DNS 记录,以避免域接管的风险。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site)。 +If you published a {% data variables.product.prodname_pages %} site in a private repository and added a custom domain, remove or update your DNS records before downgrading from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, to avoid the risk of a domain takeover. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -## 降级组织的订阅 +## Downgrading your organization's subscription {% data reusables.dotcom_billing.org-billing-perms %} -如果将您的组织从 {% data variables.product.prodname_team %} 降级到 {% data variables.product.prodname_free_team %},该帐户将失去对团队高级协作和管理工具的访问权限。 +If you downgrade your organization from {% data variables.product.prodname_team %} to {% data variables.product.prodname_free_team %} for an organization, the account will lose access to advanced collaboration and management tools for teams. -如果将您的组织从 {% data variables.product.prodname_ghe_cloud %} 降级到 {% data variables.product.prodname_team %} 或 {% data variables.product.prodname_free_team %},该帐户将失去对高级安全性、合规性和部署控件的访问权限。 {% data reusables.gated-features.more-info %} +If you downgrade your organization from {% data variables.product.prodname_ghe_cloud %} to {% data variables.product.prodname_team %} or {% data variables.product.prodname_free_team %}, the account will lose access to advanced security, compliance, and deployment controls. {% data reusables.gated-features.more-info %} {% data reusables.organizations.billing-settings %} -1. 在“Current plan(当前计划)”下,使用 **Edit(编辑)**下拉菜单,单击您想要的降级选项。 ![降级按钮](/assets/images/help/billing/downgrade-option-button.png) +1. Under "Current plan", use the **Edit** drop-down and click the downgrade option you want. + ![Downgrade button](/assets/images/help/billing/downgrade-option-button.png) {% data reusables.dotcom_billing.confirm_cancel_org_plan %} -## 降级采用传统的按仓库定价模式的组织订阅 +## Downgrading an organization's subscription with legacy per-repository pricing {% data reusables.dotcom_billing.org-billing-perms %} -{% data reusables.dotcom_billing.switch-legacy-billing %} 更多信息请参阅“[将组织从按仓库定价切换为按用户定价](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)”。 +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[Switching your organization from per-repository to per-user pricing](/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription#switching-your-organization-from-per-repository-to-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. 在“Subscriptions(订阅)”下,选择“Edit(编辑)”下拉菜单,然后单击 **Edit plan(编辑计划)**。 ![编辑计划下拉菜单](/assets/images/help/billing/edit-plan-dropdown.png) -1. 在“Billing/Plans(计费/计划)”下您要更改的计划旁边,单击 **Downgrade(降级)**。 ![降级按钮](/assets/images/help/billing/downgrade-plan-option-button.png) -1. 输入要降级帐户的原因,然后单击 **Downgrade plan(降级计划)**。 ![降级原因文本框和降级按钮](/assets/images/help/billing/downgrade-plan-button.png) +5. Under "Subscriptions", select the "Edit" drop-down, and click **Edit plan**. + ![Edit Plan dropdown](/assets/images/help/billing/edit-plan-dropdown.png) +1. Under "Billing/Plans", next to the plan you want to change, click **Downgrade**. + ![Downgrade button](/assets/images/help/billing/downgrade-plan-option-button.png) +1. Enter the reason you're downgrading your account, then click **Downgrade plan**. + ![Text box for downgrade reason and downgrade button](/assets/images/help/billing/downgrade-plan-button.png) -## 从组织删除付费席位 +## Removing paid seats from your organization -要减少组织使用的付费席位数,您可以从组织中删除成员,或将成员转换为外部协作者并仅给予他们公共仓库的访问权限。 更多信息请参阅: -- “[从组织中删除成员](/articles/removing-a-member-from-your-organization)” -- "[将组织成员转换为外部协作者](/articles/converting-an-organization-member-to-an-outside-collaborator)" -- "[管理个人对组织仓库的访问](/articles/managing-an-individual-s-access-to-an-organization-repository)" +To reduce the number of paid seats your organization uses, you can remove members from your organization or convert members to outside collaborators and give them access to only public repositories. For more information, see: +- "[Removing a member from your organization](/articles/removing-a-member-from-your-organization)" +- "[Converting an organization member to an outside collaborator](/articles/converting-an-organization-member-to-an-outside-collaborator)" +- "[Managing an individual's access to an organization repository](/articles/managing-an-individual-s-access-to-an-organization-repository)" {% data reusables.organizations.billing-settings %} -1. 在“Current plan(当前计划)”下,使用 **Edit(编辑)**下拉菜单并单击 **Remove seats(删除席位)**。 ![删除席位下拉菜单](/assets/images/help/billing/remove-seats-dropdown.png) -1. 在“Remove seats”(删除席位)下,选择要降级的席位数。 ![删除席位选项](/assets/images/help/billing/remove-seats-amount.png) -1. 审查有关在下一个结算日期执行新付款方式的信息,然后单击 **Remove seats(删除席位)**。 ![删除席位按钮](/assets/images/help/billing/remove-seats-button.png) +1. Under "Current plan", use the **Edit** drop-down and click **Remove seats**. + ![remove seats dropdown](/assets/images/help/billing/remove-seats-dropdown.png) +1. Under "Remove seats", select the number of seats you'd like to downgrade to. + ![remove seats option](/assets/images/help/billing/remove-seats-amount.png) +1. Review the information about your new payment on your next billing date, then click **Remove seats**. + ![remove seats button](/assets/images/help/billing/remove-seats-button.png) -## 延伸阅读 +## Further reading -- “[{% data variables.product.prodname_dotcom %} 的产品](/articles/github-s-products)” -- "[升级或降级对结算过程有何影响?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" -- “[关于 {% data variables.product.prodname_dotcom %} 的计费](/articles/about-billing-on-github)” -- “[删除付款方式](/articles/removing-a-payment-method)” -- “[关于每用户定价](/articles/about-per-user-pricing)” +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." +- "[Removing a payment method](/articles/removing-a-payment-method)" +- "[About per-user pricing](/articles/about-per-user-pricing)" diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/index.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/index.md index a4b209b724..7801363423 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/index.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/index.md @@ -1,17 +1,17 @@ --- -title: 管理 GitHub 帐户的计费 -shortTitle: 您的 GitHub 帐户 +title: Managing billing for your GitHub account +shortTitle: Your GitHub account intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade, downgrade, and view pending changes to your account''s subscription at any time.{% elsif ghec or ghes or ghae %}You can manage billing for {% data variables.product.product_name %}{% ifversion ghae %}.{% elsif ghec or ghes %} from your enterprise account on {% data variables.product.prodname_dotcom_the_website %}.{% endif %}{% endif %}' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account - - /categories/97/articles/ - - /categories/paying-for-user-accounts/ - - /articles/paying-for-your-github-user-account/ - - /articles/managing-billing-on-github/ - - /articles/changing-your-personal-account-s-billing-plan/ - - /categories/billing/ - - /categories/3/articles/ - - /articles/managing-your-organization-s-paid-seats/ + - /categories/97/articles + - /categories/paying-for-user-accounts + - /articles/paying-for-your-github-user-account + - /articles/managing-billing-on-github + - /articles/changing-your-personal-account-s-billing-plan + - /categories/billing + - /categories/3/articles + - /articles/managing-your-organization-s-paid-seats - /articles/managing-billing-for-your-github-account versions: fpt: '*' diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md index 33414d6d4d..fee3631236 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription.md @@ -1,22 +1,23 @@ --- -title: 升级 GitHub 订阅 +title: Upgrading your GitHub subscription intro: 'You can upgrade the subscription for any type of account on {% data variables.product.product_location %} at any time.' +miniTocMaxHeadingLevel: 3 redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/upgrading-your-github-subscription - - /articles/upgrading-your-personal-account-s-billing-plan/ - - /articles/upgrading-your-personal-account/ - - /articles/upgrading-your-personal-account-from-free-to-a-paid-account/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal/ - - /articles/500-error-while-upgrading/ - - /articles/upgrading-your-organization-s-billing-plan/ - - /articles/changing-your-organization-billing-plan/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card/ - - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal/ - - /articles/upgrading-your-organization-account/ - - /articles/switching-from-per-repository-to-per-user-pricing/ - - /articles/adding-seats-to-your-organization/ - - /articles/upgrading-your-github-billing-plan/ + - /articles/upgrading-your-personal-account-s-billing-plan + - /articles/upgrading-your-personal-account + - /articles/upgrading-your-personal-account-from-free-to-a-paid-account + - /articles/upgrading-your-personal-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-personal-account-from-free-to-paid-with-paypal + - /articles/500-error-while-upgrading + - /articles/upgrading-your-organization-s-billing-plan + - /articles/changing-your-organization-billing-plan + - /articles/upgrading-your-organization-account-from-free-to-paid-with-a-credit-card + - /articles/upgrading-your-organization-account-from-free-to-paid-with-paypal + - /articles/upgrading-your-organization-account + - /articles/switching-from-per-repository-to-per-user-pricing + - /articles/adding-seats-to-your-organization + - /articles/upgrading-your-github-billing-plan - /articles/upgrading-your-github-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/upgrading-your-github-subscription versions: @@ -28,26 +29,37 @@ topics: - Troubleshooting - Upgrades - User account -shortTitle: 升级订阅 +shortTitle: Upgrade your subscription --- -## 升级个人帐户的订阅 +## About subscription upgrades -您可以将个人帐户从 {% data variables.product.prodname_free_user %} 升级到 {% data variables.product.prodname_pro %},以获得私有仓库中的高级代码审查工具。 {% data reusables.gated-features.more-info %} +{% data reusables.accounts.accounts-billed-separately %} + +When you upgrade the subscription for an account, the upgrade changes the paid features available for that account only, and not any other accounts you use. + +## Upgrading your personal account's subscription + +You can upgrade your personal account from {% data variables.product.prodname_free_user %} to {% data variables.product.prodname_pro %} to get advanced code review tools on private repositories owned by your user account. Upgrading your personal account does not affect any organizations you may manage or repositories owned by those organizations. {% data reusables.gated-features.more-info %} {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} -1. 在“Current plan(当前计划)”旁边,单击 **Upgrade(升级)**。 ![升级按钮](/assets/images/help/billing/settings_billing_user_upgrade.png) -2. 在“Compare plans(比较计划)”页面的 "Pro" 下,单击 **Upgrade to Pro(升级到 Pro)**。 +1. Next to "Current plan", click **Upgrade**. + ![Upgrade button](/assets/images/help/billing/settings_billing_user_upgrade.png) +2. Under "Pro" on the "Compare plans" page, click **Upgrade to Pro**. {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.show-plan-details %} {% data reusables.dotcom_billing.enter-billing-info %} {% data reusables.dotcom_billing.enter-payment-info %} {% data reusables.dotcom_billing.finish_upgrade %} -## 升级组织的订阅 +## Managing your organization's subscription -您可以将组织从 {% data variables.product.prodname_free_team %} 升级到 {% data variables.product.prodname_team %},以访问团队的高级协作和管理工具,也可以将组织升级到 {% data variables.product.prodname_ghe_cloud %} 以使用更多的安全性、合规性和部署控件。 {% data reusables.gated-features.more-info-org-products %} +You can upgrade your organization's subscription to a different product, add seats to your existing product, or switch from per-repository to per-user pricing. + +### Upgrading your organization's subscription + +You can upgrade your organization from {% data variables.product.prodname_free_team %} for an organization to {% data variables.product.prodname_team %} to access advanced collaboration and management tools for teams, or upgrade your organization to {% data variables.product.prodname_ghe_cloud %} for additional security, compliance, and deployment controls. Upgrading an organization does not affect your personal account or repositories owned by your personal account. {% data reusables.gated-features.more-info-org-products %} {% data reusables.dotcom_billing.org-billing-perms %} @@ -60,39 +72,41 @@ shortTitle: 升级订阅 {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -### 使用 {% data variables.product.prodname_ghe_cloud %} 的组织的后续步骤 +### Next steps for organizations using {% data variables.product.prodname_ghe_cloud %} -如果您已将组织升级到 {% data variables.product.prodname_ghe_cloud %},便可设置组织的身份和访问管理。 更多信息请参阅“[管理组织的 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization)”。 +If you upgraded your organization to {% data variables.product.prodname_ghe_cloud %}, you can set up identity and access management for your organization. For more information, see "[Managing SAML single sign-on for your organization](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -如果想要将企业帐户与 {% data variables.product.prodname_ghe_cloud %} 一起使用,请联系 {% data variables.contact.contact_enterprise_sales %}。 For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +If you'd like to use an enterprise account with {% data variables.product.prodname_ghe_cloud %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## 将席位添加到您的组织 +### Adding seats to your organization -如果希望其他用户能够访问您 {% data variables.product.prodname_team %} 组织的私有仓库,您可以随时购买更多席位。 +If you'd like additional users to have access to your {% data variables.product.prodname_team %} organization's private repositories, you can purchase more seats anytime. {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.add-seats %} {% data reusables.dotcom_billing.number-of-seats %} {% data reusables.dotcom_billing.confirm-add-seats %} -## 将组织从按仓库定价切换为按用户定价 +### Switching your organization from per-repository to per-user pricing -{% data reusables.dotcom_billing.switch-legacy-billing %} 更多信息请参阅“[关于每用户定价](/articles/about-per-user-pricing)”。 +{% data reusables.dotcom_billing.switch-legacy-billing %} For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." {% data reusables.organizations.billing-settings %} -5. 在计划名称的右侧,使用 **Edit(编辑)**下拉菜单,然后选择 **Edit plan(编辑计划)**。 ![编辑下拉菜单](/assets/images/help/billing/per-user-upgrade-button.png) -6. 在“Advanced tools for teams(团队的高级工具)”右侧,单击 **Upgrade now(立即升级)**。 ![立即升级按钮](/assets/images/help/billing/per-user-upgrade-now-button.png) +5. To the right of your plan name, use the **Edit** drop-down menu, and select **Edit plan**. + ![Edit drop-down menu](/assets/images/help/billing/per-user-upgrade-button.png) +6. To the right of "Advanced tools for teams", click **Upgrade now**. + ![Upgrade now button](/assets/images/help/billing/per-user-upgrade-now-button.png) {% data reusables.dotcom_billing.choose_org_plan %} {% data reusables.dotcom_billing.choose-monthly-or-yearly-billing %} {% data reusables.dotcom_billing.owned_by_business %} {% data reusables.dotcom_billing.finish_upgrade %} -## 升级时对 500 错误进行故障排除 +## Troubleshooting a 500 error when upgrading {% data reusables.dotcom_billing.500-error %} -## 延伸阅读 +## Further reading -- “[{% data variables.product.prodname_dotcom %} 的产品](/articles/github-s-products)” -- "[升级或降级对结算过程有何影响?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" -- “[关于 {% data variables.product.prodname_dotcom %} 的计费](/articles/about-billing-on-github)” +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" +- "[How does upgrading or downgrading affect the billing process?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)" +- "[About billing on {% data variables.product.prodname_dotcom %}](/articles/about-billing-on-github)." diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md index 69cefd78ab..6b946551a5 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription.md @@ -1,11 +1,11 @@ --- -title: 查看和管理对订阅的待定更改 -intro: 在下一个结算日期其生效之前,您可以查看和取消对订阅的待定更改。 +title: Viewing and managing pending changes to your subscription +intro: You can view and cancel pending changes to your subscriptions before they take effect on your next billing date. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-and-managing-pending-changes-to-your-subscription - - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan/ - - /articles/viewing-and-managing-pending-changes-to-your-billing-plan/ + - /articles/viewing-and-managing-pending-changes-to-your-personal-account-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-organization-s-billing-plan + - /articles/viewing-and-managing-pending-changes-to-your-billing-plan - /articles/viewing-and-managing-pending-changes-to-your-subscription - /github/setting-up-and-managing-billing-and-payments-on-github/managing-billing-for-your-github-account/viewing-and-managing-pending-changes-to-your-subscription versions: @@ -15,14 +15,13 @@ type: how_to topics: - Organizations - User account -shortTitle: 待定订阅更改 +shortTitle: Pending subscription changes --- +You can cancel pending changes to your account's subscription as well as pending changes to your subscriptions to other paid features and products. -您可以取消对帐户订阅的待定更改,以及对其他付费功能和产品订阅的待定更改。 +When you cancel a pending change, your subscription will not change on your next billing date (unless you make a subsequent change to your subscription before your next billing date). -取消待定更改时,您的订阅不会在下一结算日期更改(除非您在下一结算日期之前对订阅进行后续的更改)。 - -## 查看和管理对个人帐户订阅的待定更改 +## Viewing and managing pending changes to your personal account's subscription {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -30,13 +29,13 @@ shortTitle: 待定订阅更改 {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## 查看和管理对组织订阅的待定更改 +## Viewing and managing pending changes to your organization's subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.review-pending-changes %} {% data reusables.dotcom_billing.cancel-pending-changes %} {% data reusables.dotcom_billing.confirm-cancel-pending-changes %} -## 延伸阅读 +## Further reading -- “[{% data variables.product.prodname_dotcom %} 的产品](/articles/github-s-products)” +- "[{% data variables.product.prodname_dotcom %}'s products](/articles/github-s-products)" diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md index b75aa441df..0454458409 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-information-to-your-receipts.md @@ -1,16 +1,16 @@ --- -title: 添加信息到收据 -intro: '您可以添加 {% data variables.product.product_name %} 额外信息到收据,如公司或国家要求的纳税或会计信息。' +title: Adding information to your receipts +intro: 'You can add extra information to your {% data variables.product.product_name %} receipts, such as tax or accounting information required by your company or country.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-information-to-your-receipts - - /articles/can-i-add-my-credit-card-number-to-my-receipts/ - - /articles/can-i-add-extra-information-to-my-receipts--2/ - - /articles/how-can-i-add-extra-information-to-my-receipts/ - - /articles/could-you-add-my-card-number-to-my-receipts/ - - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts/ - - /articles/adding-information-to-your-personal-account-s-receipts/ - - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts/ - - /articles/adding-information-to-your-organization-s-receipts/ + - /articles/can-i-add-my-credit-card-number-to-my-receipts + - /articles/can-i-add-extra-information-to-my-receipts--2 + - /articles/how-can-i-add-extra-information-to-my-receipts + - /articles/could-you-add-my-card-number-to-my-receipts + - /articles/how-can-i-add-extra-information-to-my-personal-account-s-receipts + - /articles/adding-information-to-your-personal-account-s-receipts + - /articles/how-can-i-add-extra-information-to-my-organization-s-receipts + - /articles/adding-information-to-your-organization-s-receipts - /articles/adding-information-to-your-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-information-to-your-receipts versions: @@ -21,29 +21,28 @@ topics: - Organizations - Receipts - User account -shortTitle: 添加到收据中 +shortTitle: Add to your receipts --- - -收据包括 {% data variables.product.prodname_dotcom %} 订阅以及[其他付费功能和产品](/articles/about-billing-on-github)的订阅。 +Your receipts include your {% data variables.product.prodname_dotcom %} subscription as well as any subscriptions for [other paid features and products](/articles/about-billing-on-github). {% warning %} -**警告**:为安全起见,强烈建议不要在收据中包含任何机密或财务信息(如信用卡号)。 +**Warning**: For security reasons, we strongly recommend against including any confidential or financial information (such as credit card numbers) on your receipts. {% endwarning %} -## 添加信息到个人帐户的收据 +## Adding information to your personal account's receipts {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.user_settings.payment-info-link %} {% data reusables.dotcom_billing.extra_info_receipt %} -## 添加信息到组织的收据 +## Adding information to your organization's receipts {% note %} -**注**:{% data reusables.dotcom_billing.org-billing-perms %} +**Note**: {% data reusables.dotcom_billing.org-billing-perms %} {% endnote %} diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md index 88d3a71c53..bb9fc0e76c 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method.md @@ -1,20 +1,20 @@ --- -title: 添加或编辑付款方式 -intro: 您可以随时添加付款方式到帐户或更新帐户的现有付款方式。 +title: Adding or editing a payment method +intro: You can add a payment method to your account or update your account's existing payment method at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/adding-or-editing-a-payment-method - - /articles/updating-your-personal-account-s-payment-method/ - - /articles/how-do-i-update-my-credit-card/ - - /articles/updating-your-account-s-credit-card/ - - /articles/updating-your-personal-account-s-credit-card/ - - /articles/updating-your-personal-account-s-paypal-information/ - - /articles/does-github-provide-invoicing/ - - /articles/switching-payment-methods-for-your-personal-account/ - - /articles/paying-for-your-github-organization-account/ - - /articles/updating-your-organization-s-credit-card/ - - /articles/updating-your-organization-s-paypal-information/ - - /articles/updating-your-organization-s-payment-method/ - - /articles/switching-payment-methods-for-your-organization/ + - /articles/updating-your-personal-account-s-payment-method + - /articles/how-do-i-update-my-credit-card + - /articles/updating-your-account-s-credit-card + - /articles/updating-your-personal-account-s-credit-card + - /articles/updating-your-personal-account-s-paypal-information + - /articles/does-github-provide-invoicing + - /articles/switching-payment-methods-for-your-personal-account + - /articles/paying-for-your-github-organization-account + - /articles/updating-your-organization-s-credit-card + - /articles/updating-your-organization-s-paypal-information + - /articles/updating-your-organization-s-payment-method + - /articles/switching-payment-methods-for-your-organization - /articles/adding-or-editing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/adding-or-editing-a-payment-method versions: @@ -24,29 +24,31 @@ type: how_to topics: - Organizations - User account -shortTitle: 管理付款方式 +shortTitle: Manage a payment method --- - {% data reusables.dotcom_billing.payment-methods %} {% data reusables.dotcom_billing.same-payment-method %} -我们不为个人帐户提供开发票或支持采购单。 在您的帐户的结算日期,我们将以电子邮件发送每月或每年收据。 如果您的公司、国家或会计要求收据提供更多详细信息,也可为收据[添加额外信息](/articles/adding-information-to-your-personal-account-s-receipts)。 +We don't provide invoicing or support purchase orders for personal accounts. We email receipts monthly or yearly on your account's billing date. If your company, country, or accountant requires your receipts to provide more detail, you can also [add extra information](/articles/adding-information-to-your-personal-account-s-receipts) to your receipts. -## 更新个人帐户的付款方式 +## Updating your personal account's payment method {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.update_payment_method %} -1. If your account has existing billing information that you want to update, click **Edit**. ![计费新卡按钮](/assets/images/help/billing/billing-information-edit-button.png) +1. If your account has existing billing information that you want to update, click **Edit**. +![Billing New Card button](/assets/images/help/billing/billing-information-edit-button.png) {% data reusables.dotcom_billing.enter-billing-info %} -1. If your account has an existing payment method that you want to update, click **Edit**. ![计费新卡按钮](/assets/images/help/billing/billing-payment-method-edit-button.png) +1. If your account has an existing payment method that you want to update, click **Edit**. +![Billing New Card button](/assets/images/help/billing/billing-payment-method-edit-button.png) {% data reusables.dotcom_billing.enter-payment-info %} -## 更新组织的付款方式 +## Updating your organization's payment method {% data reusables.dotcom_billing.org-billing-perms %} -如果组织在美国之外,或者您使用公司支票帐户支付 {% data variables.product.product_name %},PayPal 可能是一种有用的付款方式。 +If your organization is outside of the US or if you're using a corporate checking account to pay for {% data variables.product.product_name %}, PayPal could be a helpful method of payment. {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.update_payment_method %} -1. 如果您的帐户存在要更新的现有信用卡,请单击 **New Card(新卡)**。 ![计费新卡按钮](/assets/images/help/billing/billing-new-card-button.png) +1. If your account has an existing credit card that you want to update, click **New Card**. +![Billing New Card button](/assets/images/help/billing/billing-new-card-button.png) {% data reusables.dotcom_billing.enter-payment-info %} diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md index 4f3f9eb17c..539ae1e931 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle.md @@ -1,11 +1,11 @@ --- -title: 更改结算周期的时长 -intro: 您可以按月度或年度结算周期来支付您帐户的订阅及其他付费功能和产品的费用。 +title: Changing the duration of your billing cycle +intro: You can pay for your account's subscription and other paid features and products on a monthly or yearly billing cycle. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/changing-the-duration-of-your-billing-cycle - - /articles/monthly-and-yearly-billing/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account/ - - /articles/switching-between-monthly-and-yearly-billing-for-your-organization/ + - /articles/monthly-and-yearly-billing + - /articles/switching-between-monthly-and-yearly-billing-for-your-personal-account + - /articles/switching-between-monthly-and-yearly-billing-for-your-organization - /articles/changing-the-duration-of-your-billing-cycle - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle versions: @@ -16,30 +16,31 @@ topics: - Organizations - Repositories - User account -shortTitle: 结算周期 +shortTitle: Billing cycle --- +When you change your billing cycle's duration, your {% data variables.product.prodname_dotcom %} subscription, along with any other paid features and products, will be moved to your new billing cycle on your next billing date. -更改结算周期的时长后,您的 {% data variables.product.prodname_dotcom %} 订阅,以及任何其他付费功能和产品,将在下一个结算日期转用新的结算周期。 - -## 更改个人帐户结算周期的时长 +## Changing the duration of your personal account's billing cycle {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -## 更改组织结算周期的时长 +## Changing the duration of your organization's billing cycle {% data reusables.dotcom_billing.org-billing-perms %} -### 更改按用户订阅的时长 +### Changing the duration of a per-user subscription {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.change_plan_duration %} {% data reusables.dotcom_billing.confirm_duration_change %} -### 更改传统的按仓库计划的时长 +### Changing the duration of a legacy per-repository plan {% data reusables.organizations.billing-settings %} -4. 在“Billing overview(帐单概览)”下,单击 **Change plan(更改计划)**。 ![帐单概览更改计划按钮](/assets/images/help/billing/billing_overview_change_plan.png) -5. 在右上角,单击 **Switch to monthly billing(切换为月度结算)** or **Switch to yearly billing(切换为年度结算)**。 ![帐单信息部分](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) +4. Under "Billing overview", click **Change plan**. + ![Billing overview change plan button](/assets/images/help/billing/billing_overview_change_plan.png) +5. At the top right corner, click **Switch to monthly billing** or **Switch to yearly billing**. + ![Billing information section](/assets/images/help/billing/settings_billing_organization_plans_switch_to_yearly.png) diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/index.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/index.md index 75d23022bd..c8d94f174f 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/index.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/index.md @@ -1,15 +1,15 @@ --- -title: 管理 GitHub 计费设置 -shortTitle: 帐单设置 -intro: 帐户的计费设置应用于您添加到帐户的每项付费功能或产品。 您可以管理支付方式、结算周期和帐音邮箱等设置。 您也可以查看帐单信息,如订阅、帐单日期、付款记录和以前的收据。 +title: Managing your GitHub billing settings +shortTitle: Billing settings +intro: 'Your account''s billing settings apply to every paid feature or product you add to the account. You can manage settings like your payment method, billing cycle, and billing email. You can also view billing information such as your subscription, billing date, payment history, and past receipts.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings - - /articles/viewing-and-managing-your-personal-account-s-billing-information/ - - /articles/paying-for-user-accounts/ - - /articles/viewing-and-managing-your-organization-s-billing-information/ - - /articles/paying-for-organization-accounts/ - - /categories/paying-for-organization-accounts/articles/ - - /categories/99/articles/ + - /articles/viewing-and-managing-your-personal-account-s-billing-information + - /articles/paying-for-user-accounts + - /articles/viewing-and-managing-your-organization-s-billing-information + - /articles/paying-for-organization-accounts + - /categories/paying-for-organization-accounts/articles + - /categories/99/articles - /articles/managing-your-github-billing-settings versions: fpt: '*' diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md index 90df39d4a4..2a416cdc8f 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/redeeming-a-coupon.md @@ -1,11 +1,11 @@ --- -title: 兑换优惠券 -intro: '如果您有优惠券,可以将其兑换为付费的 {% data variables.product.prodname_dotcom %} 订阅。' +title: Redeeming a coupon +intro: 'If you have a coupon, you can redeem it towards a paid {% data variables.product.prodname_dotcom %} subscription.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/redeeming-a-coupon - - /articles/where-do-i-add-a-coupon-code/ - - /articles/redeeming-a-coupon-for-your-personal-account/ - - /articles/redeeming-a-coupon-for-organizations/ + - /articles/where-do-i-add-a-coupon-code + - /articles/redeeming-a-coupon-for-your-personal-account + - /articles/redeeming-a-coupon-for-organizations - /articles/redeeming-a-coupon - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/redeeming-a-coupon versions: @@ -18,23 +18,24 @@ topics: - Organizations - User account --- - -如果您在应用优惠券之前为帐户付款,则 {% data variables.product.product_name %} 无法发起退款。 如果您将优惠券应用到错误的帐户,我们也无法转移已兑换的优惠券或为您提供一张新的优惠券。 在兑换优惠券之前,请确认是否将优惠券应用到正确的帐户。 +{% data variables.product.product_name %} can't issue a refund if you pay for an account before applying a coupon. We also can't transfer a redeemed coupon or give you a new coupon if you apply it to the wrong account. Confirm that you're applying the coupon to the correct account before you redeem a coupon. {% data reusables.dotcom_billing.coupon-expires %} -您无法将优惠券应用到 {% data variables.product.prodname_marketplace %} 应用程序的付费计划。 +You cannot apply coupons to paid plans for {% data variables.product.prodname_marketplace %} apps. -## 兑换个人帐户的优惠券 +## Redeeming a coupon for your personal account {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. 在“Redeem your coupon(兑换您的优惠券)”下,单击*个人*帐户用户名旁边的 **Choose(选择)**。 ![选择按钮](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) +4. Under "Redeem your coupon", click **Choose** next to your *personal* account's username. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button-for-personal-accounts.png) {% data reusables.dotcom_billing.redeem_coupon %} -## 兑换组织的优惠券 +## Redeeming a coupon for your organization {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.dotcom_billing.enter_coupon_code_on_redeem_page %} -4. 在“Redeem your coupon(兑换您的优惠券)”下,单击您要将优惠券应用到的*组织*旁边的 **Choose(选择)**。 如果想要将优惠券应用到尚未存在的新组织,请单击 **Create a new organization(创建新组织)**。 ![选择按钮](/assets/images/help/settings/redeem-coupon-choose-button.png) +4. Under "Redeem your coupon", click **Choose** next to the *organization* you want to apply the coupon to. If you'd like to apply your coupon to a new organization that doesn't exist yet, click **Create a new organization**. + ![Choose button](/assets/images/help/settings/redeem-coupon-choose-button.png) {% data reusables.dotcom_billing.redeem_coupon %} diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md index fcbb3ece8b..8e7fe2ed0b 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/removing-a-payment-method.md @@ -1,12 +1,12 @@ --- -title: 删除付款方式 -intro: '如果您没有将付款方式用于 {% data variables.product.prodname_dotcom %} 上任何付费订阅,则可以删除付款方式,以使其不再存储在您的帐户中。' +title: Removing a payment method +intro: 'If you aren''t using your payment method for any paid subscriptions on {% data variables.product.prodname_dotcom %}, you can remove the payment method so it''s no longer stored in your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/removing-a-payment-method - - /articles/removing-a-credit-card-associated-with-your-user-account/ - - /articles/removing-a-payment-method-associated-with-your-user-account/ - - /articles/removing-a-credit-card-associated-with-your-organization/ - - /articles/removing-a-payment-method-associated-with-your-organization/ + - /articles/removing-a-credit-card-associated-with-your-user-account + - /articles/removing-a-payment-method-associated-with-your-user-account + - /articles/removing-a-credit-card-associated-with-your-organization + - /articles/removing-a-payment-method-associated-with-your-organization - /articles/removing-a-payment-method - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/removing-a-payment-method versions: @@ -17,18 +17,17 @@ topics: - Organizations - User account --- - -如果您使用优惠券为 {% data variables.product.product_name %} 订阅付款,并且不会将付款方式用于 {% data variables.product.product_name %} 上的任何[其他付费功能或产品](/articles/about-billing-on-github),则可以删除信用卡或 PayPal 信息。 +If you're paying for your {% data variables.product.product_name %} subscription with a coupon, and you aren't using your payment method for any [other paid features or products](/articles/about-billing-on-github) on {% data variables.product.product_name %}, you can remove your credit card or PayPal information. {% data reusables.dotcom_billing.coupon-expires %} {% tip %} -**提示:**如果您[将帐户降级为免费产品](/articles/downgrading-your-github-subscription)并且没有任何其他付费功能或产品的订阅,我们将自动删除您的付款信息。 +**Tip:** If you [downgrade your account to a free product](/articles/downgrading-your-github-subscription) and you don't have subscriptions for any other paid features or products, we'll automatically remove your payment information. {% endtip %} -## 删除个人帐户的付款方式 +## Removing your personal account's payment method {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} @@ -36,7 +35,7 @@ topics: {% data reusables.dotcom_billing.remove-payment-method %} {% data reusables.dotcom_billing.remove_payment_info %} -## 删除组织的付款方式 +## Removing your organization's payment method {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md index 355270cf47..66805ec15f 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/setting-your-billing-email.md @@ -1,12 +1,12 @@ --- -title: 设置帐单邮箱 -intro: '您帐户的帐单邮箱是 {% data variables.product.product_name %} 发送收据及其他计费相关通信的地方。' +title: Setting your billing email +intro: 'Your account''s billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-your-billing-email - - /articles/setting-your-personal-account-s-billing-email/ - - /articles/can-i-change-what-email-address-received-my-github-receipt/ - - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email/' - - /articles/setting-your-organization-s-billing-email/ + - /articles/setting-your-personal-account-s-billing-email + - /articles/can-i-change-what-email-address-received-my-github-receipt + - '/articles/how-do-i-change-the-billing-email,setting-your-billing-email' + - /articles/setting-your-organization-s-billing-email - /articles/setting-your-billing-email - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/setting-your-billing-email versions: @@ -16,51 +16,58 @@ type: how_to topics: - Organizations - User account -shortTitle: 帐单邮箱 +shortTitle: Billing email --- +## Setting your personal account's billing email -## 设置个人帐户的帐单邮箱 +Your personal account's primary email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. -您个人帐户的主邮箱是 {% data variables.product.product_name %} 发送收据及其他计费相关通信的地方。 +Your primary email address is the first email listed in your account email settings. +We also use your primary email address as our billing email address. -您的主电子邮件地址是帐户电子邮件设置中列出的第一个邮箱。 我们还使用您的主电子邮件地址作为帐单邮箱地址。 +If you'd like to change your billing email, see "[Changing your primary email address](/articles/changing-your-primary-email-address)." -如果您想要更改帐单邮箱,请参阅“[更改您的主电子邮件地址](/articles/changing-your-primary-email-address)”。 +## Setting your organization's billing email -## 设置组织的帐单邮箱 - -您组织的帐单邮箱是 {% data variables.product.product_name %} 发送收据及其他计费相关通信的地方。 该电子邮件地址不需要是组织帐户唯一的。 +Your organization's billing email is where {% data variables.product.product_name %} sends receipts and other billing-related communication. The email address does not need to be unique to the organization account. {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} -1. 在“Billing management(帐单管理)”下帐单邮箱地址的右侧,单击 **Edit(编辑)**。 ![当前帐单邮箱](/assets/images/help/billing/billing-change-email.png) -2. 输入一个有效的电子邮件地址,然后点击 **Update(更新)**。 ![更改帐单邮箱地址模式](/assets/images/help/billing/billing-change-email-modal.png) +1. Under "Billing management", to the right of the billing email address, click **Edit**. + ![Current billing emails](/assets/images/help/billing/billing-change-email.png) +2. Type a valid email address, then click **Update**. + ![Change billing email address modal](/assets/images/help/billing/billing-change-email-modal.png) -## 管理组织帐单邮箱的其他收件人 +## Managing additional recipients for your organization's billing email -如果您有用户希望接收帐单报告,您可以将他们的电子邮件地址添加为帐单邮箱收件人。 此功能仅适用于非企业管理的组织。 +If you have users that want to receive billing reports, you can add their email addresses as billing email recipients. This feature is only available to organizations that are not managed by an enterprise. {% data reusables.dotcom_billing.org-billing-perms %} -### 添加帐单通知的收件人 +### Adding a recipient for billing notifications {% data reusables.organizations.billing-settings %} -1. 在“Billing management(帐单管理)”下,在“Email recipients(电子邮件收件人)”的右侧,单击 **Add(添加)**。 ![添加收件人](/assets/images/help/billing/billing-add-email-recipient.png) -1. 输入收件人的电子邮件地址,然后单击 **Add(添加)**。 ![添加收件人模式](/assets/images/help/billing/billing-add-email-recipient-modal.png) +1. Under "Billing management", to the right of "Email recipients", click **Add**. + ![Add recipient](/assets/images/help/billing/billing-add-email-recipient.png) +1. Type the email address of the recipient, then click **Add**. + ![Add recipient modal](/assets/images/help/billing/billing-add-email-recipient-modal.png) -### 更改帐单通知的主要收件人 +### Changing the primary recipient for billing notifications -必须始终将一个地址指定为主要收件人。 在选择新的主要收件人之前,无法删除带有此指定地址。 +One address must always be designated as the primary recipient. The address with this designation can't be removed until a new primary recipient is selected. {% data reusables.organizations.billing-settings %} -1. 在“Billing management(帐单管理)”下,找到要设置为主要收件人的电子邮件地址。 -1. 在电子邮件地址的右侧,使用“Edit(编辑)”下拉菜单,然后单击 **Mark as primary(标记为主要收件人)**。 ![标记主要收件人](/assets/images/help/billing/billing-change-primary-email-recipient.png) +1. Under "Billing management", find the email address you want to set as the primary recipient. +1. To the right of the email address, use the "Edit" drop-down menu, and click **Mark as primary**. + ![Mark primary recipient](/assets/images/help/billing/billing-change-primary-email-recipient.png) -### 从帐单通知中删除收件人 +### Removing a recipient from billing notifications {% data reusables.organizations.billing-settings %} -1. 在“Email recipients(电子邮件收件人)”下,找到要删除的电子邮件地址。 -1. 针对列表中的用户条目,单击 **Edit(编辑)**。 ![编辑收件人](/assets/images/help/billing/billing-edit-email-recipient.png) -1. 在电子邮件地址的右侧,使用“Edit(编辑)”下拉菜单,然后单击 **Remove(删除)**。 ![删除收件人](/assets/images/help/billing/billing-remove-email-recipient.png) -1. 查看确认提示,然后单击 **Remove(删除)**。 +1. Under "Email recipients", find the email address you want to remove. +1. For the user's entry in the list, click **Edit**. + ![Edit recipient](/assets/images/help/billing/billing-edit-email-recipient.png) +1. To the right of the email address, use the "Edit" drop-down menu, and click **Remove**. + ![Remove recipient](/assets/images/help/billing/billing-remove-email-recipient.png) +1. Review the confirmation prompt, then click **Remove**. diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md index 24054ca618..efa7701ca9 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge.md @@ -1,9 +1,9 @@ --- -title: 对拒绝的信用卡收费进行故障排除 -intro: '如果用于为 {% data variables.product.product_name %} 付款的信用卡被拒绝,您可以采取几个步骤来确保您的付款通过,并且您不会被锁定在帐户之外。' +title: Troubleshooting a declined credit card charge +intro: 'If the credit card you use to pay for {% data variables.product.product_name %} is declined, you can take several steps to ensure that your payments go through and that you are not locked out of your account.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/troubleshooting-a-declined-credit-card-charge - - /articles/what-do-i-do-if-my-card-is-declined/ + - /articles/what-do-i-do-if-my-card-is-declined - /articles/troubleshooting-a-declined-credit-card-charge - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/troubleshooting-a-declined-credit-card-charge versions: @@ -12,27 +12,26 @@ versions: type: how_to topics: - Troubleshooting -shortTitle: 拒绝的信用卡费用 +shortTitle: Declined credit card charge --- +If your card is declined, we'll send you an email about why the payment was declined. You'll have a few days to resolve the problem before we try charging you again. -如果您的卡被拒绝,我们将向您发送一封电子邮件,说明付款被拒绝的原因。 在我们再次尝试向您收费之前,您将有几天的时间来解决该问题。 +## Check your card's expiration date -## 检查卡片的有效期 +If your card has expired, you'll need to update your account's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -如果您的卡片已过期,您将需要更新帐户的付款信息。 更多信息请参阅“[添加或编辑付款方式](/articles/adding-or-editing-a-payment-method)”。 +## Verify your bank's policy on card restrictions -## 确认银行的卡片限制政策 +Some international banks place restrictions on international, e-commerce, and automatically recurring transactions. If you're having trouble making a payment with your international credit card, call your bank to see if there are any restrictions on your card. -有些国际银行会对国际、电子商务和自动重复的交易加以限制。 如果使用国际信用卡进行付款时遇到问题,请致电银行了解您的卡片是否有任何限制。 +We also support payments through PayPal. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -我们还支持通过 PayPal 付款。 更多信息请参阅“[添加或编辑付款方式](/articles/adding-or-editing-a-payment-method)”。 +## Contact your bank for details about the transaction -## 联系银行以了解有关交易的详细信息 +Your bank can provide additional information about declined payments if you specifically ask about the attempted transaction. If there are restrictions on your card and you need to call your bank, provide this information to your bank: -如果您具体询问尝试的交易,银行可提供关于被拒绝付款的其他信息。 如果您的卡片有限制并需要致电银行,请向银行提供以下信息: - -- **您被收取的金额。**订阅的金额会在帐户的收据上显示。 更多信息请参阅“[查看您的付款历史记录和收据](/articles/viewing-your-payment-history-and-receipts)”。 -- **{% data variables.product.product_name %} 向您收费的日期。**帐户的帐单日期会在收据上显示。 -- **交易 ID 号。**帐户的交易 ID 会在收据上显示。 -- **商户名称。**商户名称为 {% data variables.product.prodname_dotcom %}。 -- **银行随被拒绝的收费一起发送的错误消息。**您可在收费被拒绝时我们发送给您的电子邮件中找到银行的错误消息。 +- **The amount you're being charged.** The amount for your subscription appears on your account's receipts. For more information, see "[Viewing your payment history and receipts](/articles/viewing-your-payment-history-and-receipts)." +- **The date when {% data variables.product.product_name %} bills you.** Your account's billing date appears on your receipts. +- **The transaction ID number.** Your account's transaction ID appears on your receipts. +- **The merchant name.** The merchant name is {% data variables.product.prodname_dotcom %}. +- **The error message your bank sent with the declined charge.** You can find your bank's error message on the email we send you when a charge is declined. diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md index 213ef37d96..b59da1c080 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/unlocking-a-locked-account.md @@ -1,14 +1,14 @@ --- -title: 解锁锁定的帐户 -intro: 如果您的付款因帐单问题而过期,组织的付费功能将被锁定。 +title: Unlocking a locked account +intro: Your organization's paid features are locked if your payment is past due because of billing problems. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/unlocking-a-locked-account - - /articles/what-happens-if-my-account-is-locked/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time/ - - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges/ - - /articles/what-happens-if-my-repository-is-locked/ - - /articles/unlocking-a-locked-personal-account/ - - /articles/unlocking-a-locked-organization-account/ + - /articles/what-happens-if-my-account-is-locked + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-owe-anything-for-previous-time + - /articles/if-my-account-is-locked-and-i-upgrade-it-do-i-pay-backcharges + - /articles/what-happens-if-my-repository-is-locked + - /articles/unlocking-a-locked-personal-account + - /articles/unlocking-a-locked-organization-account - /articles/unlocking-a-locked-account - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/unlocking-a-locked-account versions: @@ -20,15 +20,14 @@ topics: - Downgrades - Organizations - User account -shortTitle: 已锁定的帐户 +shortTitle: Locked account --- +You can unlock and access your account by updating your organization's payment method and resuming paid status. We do not ask you to pay for the time elapsed in locked mode. -通过更新组织的付款方式和恢复付费状态,您可以解锁并访问自己的帐户。 我们不会要求您为锁定模式经过的时间付款。 +You can downgrade your organization to {% data variables.product.prodname_free_team %} to continue with the same advanced features in public repositories. For more information, see "[Downgrading your {% data variables.product.product_name %} subscription](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)." -您可以将组织降级到 {% data variables.product.prodname_free_team %},以继续使用公共仓库中相同的高级功能。 更多信息请参阅“[降级您的 {% data variables.product.product_name %} 订阅](/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription)”。 +## Unlocking an organization's features due to a declined payment -## 解锁组织因拒绝付款而锁定的功能 +If your organization's advanced features are locked due to a declined payment, you'll need to update your billing information to trigger a newly authorized charge. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." -如果您组织的高级功能因拒绝付款而被锁定,您将需要更新帐单信息来触发新授权的扣费。 更多信息请参阅“[添加或编辑付款方式](/articles/adding-or-editing-a-payment-method)”。 - -如果新的帐单信息获得批准,我们将立即向您收取所选付费产品的费用。 成功付款后,组织将自动解锁。 +If the new billing information is approved, we will immediately charge you for the paid product you chose. The organization will automatically unlock when a successful payment has been made. diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md index a500f32b2b..c643ca0c2c 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts.md @@ -1,11 +1,11 @@ --- -title: 查看您的付款历史记录和收据 -intro: 您可以随时查看帐户的付款历史记录和下载过去的收据。 +title: Viewing your payment history and receipts +intro: You can view your account's payment history and download past receipts at any time. redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-payment-history-and-receipts - - /articles/downloading-receipts/ - - /articles/downloading-receipts-for-personal-accounts/ - - /articles/downloading-receipts-for-organizations/ + - /articles/downloading-receipts + - /articles/downloading-receipts-for-personal-accounts + - /articles/downloading-receipts-for-organizations - /articles/viewing-your-payment-history-and-receipts - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-payment-history-and-receipts versions: @@ -17,17 +17,16 @@ topics: - Organizations - Receipts - User account -shortTitle: 查看历史记录和收据 +shortTitle: View history & receipts --- - -## 查看个人帐户的收据 +## Viewing receipts for your personal account {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.view-payment-history %} {% data reusables.dotcom_billing.download_receipt %} -## 查看组织的收据 +## Viewing receipts for your organization {% data reusables.dotcom_billing.org-billing-perms %} diff --git a/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md b/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md index 98abe01a89..b62ebd0208 100644 --- a/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md +++ b/translations/zh-CN/content/billing/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date.md @@ -1,13 +1,13 @@ --- -title: 查看订阅和结算日期 -intro: 您可以在帐户的计费设置中查看帐户的订阅、其他付费功能和产品以及下一个结算日期。 +title: Viewing your subscriptions and billing date +intro: 'You can view your account''s subscription, your other paid features and products, and your next billing date in your account''s billing settings.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/managing-your-github-billing-settings/viewing-your-subscriptions-and-billing-date - /github/setting-up-and-managing-billing-and-payments-on-github/viewing-your-subscriptions-and-billing-date - - /articles/finding-your-next-billing-date/ - - /articles/finding-your-personal-account-s-next-billing-date/ - - /articles/finding-your-organization-s-next-billing-date/ - - /articles/viewing-your-plans-and-billing-date/ + - /articles/finding-your-next-billing-date + - /articles/finding-your-personal-account-s-next-billing-date + - /articles/finding-your-organization-s-next-billing-date + - /articles/viewing-your-plans-and-billing-date - /articles/viewing-your-subscriptions-and-billing-date versions: fpt: '*' @@ -17,22 +17,21 @@ topics: - Accounts - Organizations - User account -shortTitle: 订阅和计费日期 +shortTitle: Subscriptions & billing date --- - -## 查找个人帐户的下一个结算日期 +## Finding your personal account's next billing date {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.billing_plans %} {% data reusables.dotcom_billing.next_billing_date %} -## 查找组织的下一个结算日期 +## Finding your organization's next billing date {% data reusables.dotcom_billing.org-billing-perms %} {% data reusables.organizations.billing-settings %} {% data reusables.dotcom_billing.next_billing_date %} -## 延伸阅读 +## Further reading -- "[关于 {% data variables.product.prodname_dotcom %} 帐户的计费](/articles/about-billing-for-github-accounts)" +- "[About billing for {% data variables.product.prodname_dotcom %} accounts](/articles/about-billing-for-github-accounts)" diff --git a/translations/zh-CN/content/billing/managing-your-license-for-github-enterprise/index.md b/translations/zh-CN/content/billing/managing-your-license-for-github-enterprise/index.md index 617e5c273f..9f270733c2 100644 --- a/translations/zh-CN/content/billing/managing-your-license-for-github-enterprise/index.md +++ b/translations/zh-CN/content/billing/managing-your-license-for-github-enterprise/index.md @@ -5,13 +5,13 @@ intro: '{% data variables.product.prodname_enterprise %} includes both cloud and redirect_from: - /free-pro-team@latest/billing/managing-your-license-for-github-enterprise - /enterprise/admin/installation/managing-your-github-enterprise-license - - /enterprise/admin/categories/licenses/ - - /enterprise/admin/articles/license-files/ - - /enterprise/admin/installation/about-license-files/ - - /enterprise/admin/articles/downloading-your-license/ - - /enterprise/admin/installation/downloading-your-license/ - - /enterprise/admin/articles/upgrading-your-license/ - - /enterprise/admin/installation/updating-your-license/ + - /enterprise/admin/categories/licenses + - /enterprise/admin/articles/license-files + - /enterprise/admin/installation/about-license-files + - /enterprise/admin/articles/downloading-your-license + - /enterprise/admin/installation/downloading-your-license + - /enterprise/admin/articles/upgrading-your-license + - /enterprise/admin/installation/updating-your-license - /enterprise/admin/installation/managing-your-github-enterprise-server-license - /enterprise/admin/overview/managing-your-github-enterprise-license versions: diff --git a/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md b/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md index 354ba55d74..b74ec44276 100644 --- a/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md +++ b/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md @@ -1,9 +1,9 @@ --- -title: 关于采购公司的组织 -intro: 企业使用组织与多个所有者和管理员协作处理共享的项目。 您可以为客户创建组织,代他们付款,然后将组织的所有权转给客户。 +title: About organizations for procurement companies +intro: 'Businesses use organizations to collaborate on shared projects with multiple owners and administrators. You can create an organization for your client, make a payment on their behalf, then pass ownership of the organization to your client.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/about-organizations-for-procurement-companies - - /articles/about-organizations-for-resellers/ + - /articles/about-organizations-for-resellers - /articles/about-organizations-for-procurement-companies - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies versions: @@ -12,28 +12,27 @@ versions: type: overview topics: - Organizations -shortTitle: 关于组织 +shortTitle: About organizations --- +To access an organization, each member must sign into their own personal user account. -要访问组织,每个成员都必须登录到其自己的个人用户帐户。 +Organization members can have different roles, such as *owner* or *billing manager*: -组织成员可有不同的角色,如*所有者*或*帐单管理员*: +- **Owners** have complete administrative access to an organization and its contents. +- **Billing managers** can manage billing settings, and cannot access organization contents. Billing managers are not shown in the list of organization members. -- **所有者**对组织及其内容具有全面的管理权限。 -- **帐单管理员**可以管理帐单设置,但不能访问组织内容。 帐单管理员不会显示在组织成员列表中。 +## Payments and pricing for organizations -## 组织的付款和定价 +We don't provide quotes for organization pricing. You can see our published pricing for [organizations](https://github.com/pricing) and [Git Large File Storage](/articles/about-storage-and-bandwidth-usage/). We do not provide discounts for procurement companies or for renewal orders. -我们不对组织定价提供报价。 您可以查看我们为[组织](https://github.com/pricing)和 [Git Large File Storage](/articles/about-storage-and-bandwidth-usage/) 发布的定价。 我们不对采购公司或续订订单提供折扣。 +We accept payment in US dollars, although end users may be located anywhere in the world. -虽然最终用户可能位于世界各地,但我们接受美元付款。 +We accept payment by credit card and PayPal. We don't accept payment by purchase order or invoice. -我们接受信用卡和 PayPal 付款, 不接受采购单或发票付款。 +For easier and more efficient purchasing, we recommend that procurement companies set up yearly billing for their clients' organizations. -为提高购买的简便性和效率,我们建议采购公司为其客户的组织设置年度帐单。 +## Further reading -## 延伸阅读 - -- "[代客户创建并支付组织](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client)" -- "[升级或降级客户的付费组织](/articles/upgrading-or-downgrading-your-client-s-paid-organization)" -- "[续订客户的付费组织](/articles/renewing-your-client-s-paid-organization)" +- "[Creating and paying for an organization on behalf of a client](/articles/creating-and-paying-for-an-organization-on-behalf-of-a-client)" +- "[Upgrading or downgrading your client's paid organization](/articles/upgrading-or-downgrading-your-client-s-paid-organization)" +- "[Renewing your client's paid organization](/articles/renewing-your-client-s-paid-organization)" diff --git a/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md b/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md index aa1783cf0c..0b9fc6ffef 100644 --- a/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md +++ b/translations/zh-CN/content/billing/setting-up-paid-organizations-for-procurement-companies/index.md @@ -1,11 +1,11 @@ --- -title: 为采购公司设置付费组织 -shortTitle: 采购公司的付费组织 -intro: '如果您代表客户为 {% data variables.product.product_name %} 支付,您可以配置其组织和支付设置,以优化便利性和安全性。' +title: Setting up paid organizations for procurement companies +shortTitle: Paid organizations for procurement companies +intro: 'If you pay for {% data variables.product.product_name %} on behalf of a client, you can configure their organization and payment settings to optimize convenience and security.' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github/setting-up-paid-organizations-for-procurement-companies - - /articles/setting-up-and-paying-for-organizations-for-resellers/ - - /articles/setting-up-and-paying-for-organizations-for-procurement-companies/ + - /articles/setting-up-and-paying-for-organizations-for-resellers + - /articles/setting-up-and-paying-for-organizations-for-procurement-companies - /articles/setting-up-paid-organizations-for-procurement-companies versions: fpt: '*' diff --git a/translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md b/translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md index d629122ab7..067cab1c4a 100644 --- a/translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md +++ b/translations/zh-CN/content/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/index.md @@ -2,9 +2,9 @@ title: Managing vulnerabilities in your project's dependencies intro: 'You can track your repository''s dependencies and receive {% data variables.product.prodname_dependabot_alerts %} when {% data variables.product.product_name %} detects vulnerable dependencies.' redirect_from: - - /articles/updating-your-project-s-dependencies/ - - /articles/updating-your-projects-dependencies/ - - /articles/managing-security-vulnerabilities-in-your-projects-dependencies/ + - /articles/updating-your-project-s-dependencies + - /articles/updating-your-projects-dependencies + - /articles/managing-security-vulnerabilities-in-your-projects-dependencies - /articles/managing-vulnerabilities-in-your-projects-dependencies - /github/managing-security-vulnerabilities/managing-vulnerabilities-in-your-projects-dependencies versions: diff --git a/translations/zh-CN/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md b/translations/zh-CN/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md index 2f7ebe743b..7130649af7 100644 --- a/translations/zh-CN/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md +++ b/translations/zh-CN/content/codespaces/codespaces-reference/allowing-your-codespace-to-access-a-private-image-registry.md @@ -1,16 +1,16 @@ --- -title: 允许代码空间访问私有映像注册表 -intro: '您可以使用密钥允许 {% data variables.product.prodname_codespaces %} 访问私有映像注册表' +title: Allowing your codespace to access a private image registry +intro: 'You can use secrets to allow {% data variables.product.prodname_codespaces %} to access a private image registry' versions: fpt: '*' ghec: '*' topics: - Codespaces product: '{% data reusables.gated-features.codespaces %}' -shortTitle: 私有映像注册表 +shortTitle: Private image registry --- -## 关于私人映像注册表和 {% data variables.product.prodname_codespaces %} +## About private image registries and {% data variables.product.prodname_codespaces %} A registry is a secure space for storing, managing, and fetching private container images. You may use one to store one or more devcontainers. There are many examples of registries, such as {% data variables.product.prodname_dotcom %} Container Registry, Azure Container Registry, or DockerHub. @@ -32,7 +32,7 @@ By default, when you publish a container image to {% data variables.product.prod This behavior is controlled by the **Inherit access from repo** option. **Inherit access from repo** is selected by default when publishing via {% data variables.product.prodname_actions %}, but not when publishing directly to {% data variables.product.prodname_dotcom %} Container Registry using a Personal Access Token (PAT). -If the **Inherit access from repo** option was not selected when the image was published, you can manually add the repository to the published container image's access controls. 更多信息请参阅“[配置包的访问控制和可见性](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)”。 +If the **Inherit access from repo** option was not selected when the image was published, you can manually add the repository to the published container image's access controls. For more information, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility#inheriting-access-for-a-container-image-from-a-repository)." ### Accessing an image published to the organization a codespace will be launched in @@ -52,21 +52,21 @@ We recommend publishing images via {% data variables.product.prodname_actions %} ## Accessing images stored in other container registries -If you are accessing a container image from a registry that isn't {% data variables.product.prodname_dotcom %} Container Registry, {% data variables.product.prodname_codespaces %} checks for the presence of three secrets, which define the server name, username, and personal access token (PAT) for a container registry. 如果找到这些密钥,{% data variables.product.prodname_codespaces %} 将在代码空间中提供注册表。 +If you are accessing a container image from a registry that isn't {% data variables.product.prodname_dotcom %} Container Registry, {% data variables.product.prodname_codespaces %} checks for the presence of three secrets, which define the server name, username, and personal access token (PAT) for a container registry. If these secrets are found, {% data variables.product.prodname_codespaces %} will make the registry available inside your codespace. - `<*>_CONTAINER_REGISTRY_SERVER` - `<*>_CONTAINER_REGISTRY_USER` - `<*>_CONTAINER_REGISTRY_PASSWORD` -您可以在用户、仓库或组织级别存储密钥,从而在不同的代码空间之间安全地共享它们。 当您为私有映像注册表创建一组密钥时,您需要用一致的标识符替换名称中的 “<*>”。 更多信息请参阅“[管理代码空间的加密密码](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)”和“[管理代码空间的仓库和组织加密密码](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)“。 +You can store secrets at the user, repository, or organization-level, allowing you to share them securely between different codespaces. When you create a set of secrets for a private image registry, you need to replace the "<*>" in the name with a consistent identifier. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)" and "[Managing encrypted secrets for your repository and organization for Codespaces](/codespaces/managing-codespaces-for-your-organization/managing-encrypted-secrets-for-your-repository-and-organization-for-codespaces)." -如果您在用户或组织级别设置机密,请确保将这些机密分配到仓库,您将从下拉列表中选择访问策略来创建代码空间。 +If you are setting the secrets at the user or organization level, make sure to assign those secrets to the repository you'll be creating the codespace in by choosing an access policy from the dropdown list. -![映像注册表密钥示例](/assets/images/help/codespaces/secret-repository-access.png) +![Image registry secret example](/assets/images/help/codespaces/secret-repository-access.png) -### 示例机密 +### Example secrets -如果您在 Azure 中拥有私有映像注册表,则可以创建以下机密: +For a private image registry in Azure, you could create the following secrets: ``` ACR_CONTAINER_REGISTRY_SERVER = mycompany.azurecr.io @@ -74,15 +74,41 @@ ACR_CONTAINER_REGISTRY_USER = acr-user-here ACR_CONTAINER_REGISTRY_PASSWORD = <PAT> ``` -有关通用映像注册表的信息,请参阅“[通用映像注册表服务器](#common-image-registry-servers)”。 +For information on common image registries, see "[Common image registry servers](#common-image-registry-servers)." Note that accessing AWS Elastic Container Registry (ECR) is different. -![映像注册表密钥示例](/assets/images/help/settings/codespaces-image-registry-secret-example.png) +![Image registry secret example](/assets/images/help/settings/codespaces-image-registry-secret-example.png) -添加机密后,您可能需要停止并启动您所在的代码空间,以便将新的环境变量传递到容器。 更多信息请参阅“[暂停或停止代码空间](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)”。 +Once you've added the secrets, you may need to stop and then start the codespace you are in for the new environment variables to be passed into the container. For more information, see "[Suspending or stopping a codespace](/codespaces/codespaces-reference/using-the-command-palette-in-codespaces#suspending-or-stopping-a-codespace)." -### 通用映像注册表服务器 +#### Accessing AWS Elastic Container Registry -下面列出了一些通用映像注册表服务器: +To access AWS Elastic Container Registry (ECR), you can provide an AWS access key ID and secret key, and {% data variables.product.prodname_dotcom %} can retrieve an access token for you and log in on your behalf. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = <AWS_ACCESS_KEY_ID> +*_container_REGISTRY_PASSWORD = <AWS_SECRET_KEY> +``` + +You must also ensure you have the appropriate AWS IAM permissions to perform the credential swap (e.g. `sts:GetServiceBearerToken`) as well as the ECR read operation (either `AmazonEC2ContainerRegistryFullAccess` or `ReadOnlyAccess`). + +Alternatively, if you don't want GitHub to perform the credential swap on your behalf, you can provide an authorization token fetched via AWS's APIs or CLI. + +``` +*_CONTAINER_REGISTRY_SERVER = <ECR_URL> +*_CONTAINER_REGISTRY_USER = AWS +*_container_REGISTRY_PASSWORD = <TOKEN> +``` + +Since these tokens are short lived and need to be refreshed periodically, we recommend providing an access key ID and secret. + +While these secrets can have any name, so long as the `*_CONTAINER_REGISTRY_SERVER` is an ECR URL, we recommend using `ECR_CONTAINER_REGISTRY_*` unless you are dealing with multiple ECR registries. + +For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." + +### Common image registry servers + +Some of the common image registry servers are listed below: - [DockerHub](https://docs.docker.com/engine/reference/commandline/info/) - `https://index.docker.io/v1/` - [GitHub Container Registry](/packages/working-with-a-github-packages-registry/working-with-the-container-registry) - `ghcr.io` @@ -90,6 +116,6 @@ ACR_CONTAINER_REGISTRY_PASSWORD = <PAT> - [AWS Elastic Container Registry](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html) - `<aws_account_id>.dkr.ecr.<region>.amazonaws.com` - [Google Cloud Container Registry](https://cloud.google.com/container-registry/docs/overview#registries) - `gcr.io` (US), `eu.gcr.io` (EU), `asia.gcr.io` (Asia) -#### 访问 AWS Elastic Container Registry +## Debugging private image registry access -如果您想要访问 AWS Elastic Container Registry (ECR),必须在 `ECR_CONTAINER_REGISTRY_PASSSWORD` 中提供一个 AWS 授权令牌。 此授权令牌与您的密钥不相同。 您可以使用 AWS 的 API 或 CLI 获得AWS 授权令牌。 这些令牌寿命短,需要定期刷新。 For more information, see AWS ECR's "[Private registry authentication documentation](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry_auth.html)." +If you are having trouble pulling an image from a private image registry, make sure you are able to run `docker login -u <user> -p <password> <server>`, using the values of the secrets defined above. If login fails, ensure that the login credentials are valid and that you have the apprioriate permissions on the server to fetch a container image. If login succeeds, make sure that these values are copied appropriately into the right {% data variables.product.prodname_codespaces %} secrets, either at the user, repository, or organization level and try again. \ No newline at end of file diff --git a/translations/zh-CN/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md b/translations/zh-CN/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md index 4ddd9466a3..6df3c42808 100644 --- a/translations/zh-CN/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md +++ b/translations/zh-CN/content/codespaces/customizing-your-codespace/setting-your-timeout-period-for-codespaces.md @@ -18,12 +18,12 @@ A codespace will stop running after a period of inactivity. You can specify the {% endwarning %} -## Setting your default timeout - {% include tool-switcher %} {% webui %} +## Setting your default timeout + {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.codespaces-tab %} 1. Under "Default idle timeout", enter the time that you want, then click **Save**. The time must be between 5 minutes and 240 minutes (4 hours). @@ -33,14 +33,16 @@ A codespace will stop running after a period of inactivity. You can specify the {% cli %} +## Setting your timeout period + {% data reusables.cli.cli-learn-more %} -To set the timeout period, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (5 hours). +To set the timeout period when you create a codespace, use the `idle-timeout` argument with the `codespace create` subcommand. Specify the time in minutes, followed by `m`. The time must be between 5 minutes and 240 minutes (4 hours). ```shell gh codespace create --idle-timeout 90m ``` -If you do not specify a timeout period when creating a codespace, then your default timeout period will be used. You cannot currently specify a default timeout period for all future codespaces through {% data variables.product.prodname_cli %}. +If you don't specify a timeout period when you create a codespace, then the default timeout period will be used. For information about setting a default timeout period, click the "Web browser" tab on this page. You can't currently specify a default timeout period through {% data variables.product.prodname_cli %}. {% endcli %} diff --git a/translations/zh-CN/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md b/translations/zh-CN/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md index f534a02538..7e68cd8fd1 100644 --- a/translations/zh-CN/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md +++ b/translations/zh-CN/content/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization.md @@ -37,10 +37,19 @@ By default, a codespace can only access the repository from which it was created {% data reusables.organizations.click-codespaces %} 1. Under "User permissions", select one of the following options: - * **Allow for all users** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. * **Selected users** to select specific organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members** to allow all your organization members to use {% data variables.product.prodname_codespaces %}. + * **Allow for all members and outside collaborators** to allow all your organization members as well as outside collaborators to use {% data variables.product.prodname_codespaces %}. - ![Radio buttons for "User permissions"](/assets/images/help/codespaces/organization-user-permission-settings.png) + ![Radio buttons for "User permissions"](/assets/images/help/codespaces/org-user-permission-settings-outside-collaborators.png) + + {% note %} + + **Note:** When you select **Allow for all members and outside collaborators**, all outside collaborators who have been added to specific repositories can create and use {% data variables.product.prodname_codespaces %}. Your organization will be billed for all usage incurred by outside collaborators. For more information on managing outside collaborators, see "[About outside collaborators](/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization#about-outside-collaborators)." + + {% endnote %} + +1. Click **Save**. ## Disabling {% data variables.product.prodname_codespaces %} for your organization diff --git a/translations/zh-CN/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md b/translations/zh-CN/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md index bcda3b26f3..cd8481cdd1 100644 --- a/translations/zh-CN/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md +++ b/translations/zh-CN/content/communities/moderating-comments-and-conversations/managing-disruptive-comments.md @@ -1,9 +1,9 @@ --- -title: 管理破坏性评论 -intro: '您可以{% ifversion fpt or ghec %}隐藏、编辑、{% else %}编辑{% endif %}或删除对议题、拉取请求和提交的评论。' +title: Managing disruptive comments +intro: 'You can {% ifversion fpt or ghec %}hide, edit,{% else %}edit{% endif %} or delete comments on issues, pull requests, and commits.' redirect_from: - - /articles/editing-a-comment/ - - /articles/deleting-a-comment/ + - /articles/editing-a-comment + - /articles/deleting-a-comment - /articles/managing-disruptive-comments - /github/building-a-strong-community/managing-disruptive-comments versions: @@ -13,72 +13,79 @@ versions: ghec: '*' topics: - Community -shortTitle: 管理评论 +shortTitle: Manage comments --- -## 隐藏评论 +## Hiding a comment -对仓库具有写入权限的任何人都可以隐藏议题、拉取请求及提交上的评论。 +Anyone with write access to a repository can hide comments on issues, pull requests, and commits. -如果评论偏离主题、已过期或已解决,您可能想要隐藏评论,以保持讨论重点或使拉取请求更易于导航和审查。 隐藏的评论已最小化,但对仓库具有读取权限的人员可将其展开。 +If a comment is off-topic, outdated, or resolved, you may want to hide a comment to keep a discussion focused or make a pull request easier to navigate and review. Hidden comments are minimized but people with read access to the repository can expand them. -![最小化的评论](/assets/images/help/repository/hidden-comment.png) +![Minimized comment](/assets/images/help/repository/hidden-comment.png) -1. 导航到您要隐藏的评论。 -2. 在评论的右上角,单击 {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %},然后单击 **Hide(隐藏)**。 ![显示编辑、隐藏、删除选项的水平烤肉串图标和评论调解菜单](/assets/images/help/repository/comment-menu.png) -3. 使用 "Choose a reason"(选择原因)下拉菜单,单击隐藏评论的原因。 然后单击 **Hide comment(隐藏评论)**。 +1. Navigate to the comment you'd like to hide. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Hide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete options](/assets/images/help/repository/comment-menu.png) +3. Using the "Choose a reason" drop-down menu, click a reason to hide the comment. Then click, **Hide comment**. {% ifversion fpt or ghec %} - ![选择隐藏评论的原因下拉菜单](/assets/images/help/repository/choose-reason-for-hiding-comment.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment.png) {% else %} - ![选择隐藏评论的原因下拉菜单](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) + ![Choose reason for hiding comment drop-down menu](/assets/images/help/repository/choose-reason-for-hiding-comment-ghe.png) {% endif %} -## 取消隐藏评论 +## Unhiding a comment -对仓库具有写入权限的任何人都可以取消隐藏议题、拉取请求及提交上的评论。 +Anyone with write access to a repository can unhide comments on issues, pull requests, and commits. -1. 导航到您要取消隐藏的评论。 -2. 在评论右上角,单击 **{% octicon "fold" aria-label="The fold icon" %} Show comment(显示评论)**。 ![显示评论文本](/assets/images/help/repository/hidden-comment-show.png) -3. 在展开的评论右上角,单击 {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %},然后单击 **Unhide(取消隐藏)**。 ![显示编辑、取消隐藏、删除选项的水平烤肉串图标和评论调解菜单](/assets/images/help/repository/comment-menu-hidden.png) +1. Navigate to the comment you'd like to unhide. +2. In the upper-right corner of the comment, click **{% octicon "fold" aria-label="The fold icon" %} Show comment**. + ![Show comment text](/assets/images/help/repository/hidden-comment-show.png) +3. On the right side of the expanded comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Unhide**. + ![The horizontal kebab icon and comment moderation menu showing the edit, unhide, delete options](/assets/images/help/repository/comment-menu-hidden.png) -## 编辑评论 +## Editing a comment -对仓库具有写入权限的任何人都可以编辑议题、拉取请求及提交上的评论。 +Anyone with write access to a repository can edit comments on issues, pull requests, and commits. -编辑评论和删除无助于促进对话以及违反社区行为准则{% ifversion fpt or ghec %} 或 GitHub [社区指导方针](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %} 的内容是明智之举。 +It's appropriate to edit a comment and remove content that doesn't contribute to the conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -编辑评论时,请记下删除的内容所在的位置,也可记下删除的原因。 +When you edit a comment, note the location that the content was removed from and optionally, the reason for removing it. -对仓库具有读取权限的任何人都可查看评论的编辑历史记录。 评论顶部的 **edited(已编辑)**下拉菜单包含编辑历史记录,其中会显示每次编辑的用户和时间戳。 +Anyone with read access to a repository can view a comment's edit history. The **edited** dropdown at the top of the comment contains a history of edits showing the user and timestamp for each edit. -![添加了表示内容编辑过的注释的评论](/assets/images/help/repository/content-redacted-comment.png) +![Comment with added note that content was redacted](/assets/images/help/repository/content-redacted-comment.png) -评论作者和具有仓库写入权限的任何人也都可以删除评论编辑历史记录中的敏感信息。 更多信息请参阅“[跟踪评论中的更改](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)”。 +Comment authors and anyone with write access to a repository can also delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment)." -1. 导航到您要编辑的评论。 -2. 在评论的右上角,单击 {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %},然后单击 **Edit(编辑)**。 ![显示编辑、隐藏、删除和报告选项的水平烤肉串图标和评论调解菜单](/assets/images/help/repository/comment-menu.png) -3. 在评论窗口中,删除要删除的评论,然后输入 `[REDACTED]` 进行替换。 ![包含编辑过的内容的评论窗口](/assets/images/help/issues/redacted-content-comment.png) -4. 在评论底部,输入注释,说明您已编辑评论,也可以输入编辑的原因。 ![添加了表示内容编辑过的注释的评论窗口](/assets/images/help/issues/note-content-redacted-comment.png) -5. 单击 **Update comment(更新评论)**。 +1. Navigate to the comment you'd like to edit. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Edit**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. In the comment window, delete the content you'd like to remove, then type `[REDACTED]` to replace it. + ![Comment window with redacted content](/assets/images/help/issues/redacted-content-comment.png) +4. At the bottom of the comment, type a note indicating that you have edited the comment, and optionally, why you edited the comment. + ![Comment window with added note that content was redacted](/assets/images/help/issues/note-content-redacted-comment.png) +5. Click **Update comment**. -## 删除评论 +## Deleting a comment -对仓库具有写入权限的任何人都可以删除议题、拉取请求及提交上的评论。 组织所有者、团队维护员和评论作者也可删除团队页面上的评论。 +Anyone with write access to a repository can delete comments on issues, pull requests, and commits. Organization owners, team maintainers, and the comment author can also delete a comment on a team page. -删除评论是调解员最后的选择。 如果整个评论没有给对话带来建设性的内容,或者违反社区的行为准则{% ifversion fpt or ghec %} 或 GitHub [社区指导方针](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %},删除评论是明智之举。 +Deleting a comment is your last resort as a moderator. It's appropriate to delete a comment if the entire comment adds no constructive content to a conversation and violates your community's code of conduct{% ifversion fpt or ghec %} or GitHub's [Community Guidelines](/free-pro-team@latest/github/site-policy/github-community-guidelines){% endif %}. -删除评论会创建对仓库具有读取权限的所有人可见的时间表事件。 但评论删除者的用户名只有能够写入仓库的人可见。 对于没有写入权限的任何人,时间表事件会匿名化。 +Deleting a comment creates a timeline event that is visible to anyone with read access to the repository. However, the username of the person who deleted the comment is only visible to people with write access to the repository. For anyone without write access, the timeline event is anonymized. -![已删除评论的匿名化时间表事件](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) +![Anonymized timeline event for a deleted comment](/assets/images/help/issues/anonymized-timeline-entry-for-deleted-comment.png) -如果评论包含一些对议题或拉取请求中的对话有建设性的内容,您可以编辑评论。 +If a comment contains some constructive content that adds to the conversation in the issue or pull request, you can edit the comment instead. {% note %} -**注:**议题或拉取请求的初始评论(或正文)不能删除。 但可以编辑议题和拉取请求正文,以删除不需要的内容。 +**Note:** The initial comment (or body) of an issue or pull request can't be deleted. Instead, you can edit issue and pull request bodies to remove unwanted content. {% endnote %} -1. 导航到您要删除的评论。 -2. 在评论的右上角,单击 {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %},然后单击 **Delete(删除)**。 ![显示编辑、隐藏、删除和报告选项的水平烤肉串图标和评论调解菜单](/assets/images/help/repository/comment-menu.png) -3. 也可以说明您删除了哪些评论,为什么要删除。 +1. Navigate to the comment you'd like to delete. +2. In the upper-right corner of the comment, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then click **Delete**. + ![The horizontal kebab icon and comment moderation menu showing the edit, hide, delete, and report options](/assets/images/help/repository/comment-menu.png) +3. Optionally, write a comment noting that you deleted a comment and why. diff --git a/translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md b/translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md index 83e3431b41..cf34ff73d0 100644 --- a/translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md +++ b/translations/zh-CN/content/desktop/installing-and-configuring-github-desktop/overview/keyboard-shortcuts.md @@ -1,121 +1,120 @@ --- -title: 键盘快捷键 -intro: '您可以在 {% data variables.product.prodname_desktop %} 中使用键盘快捷键。' +title: Keyboard shortcuts +intro: 'You can use keyboard shortcuts in {% data variables.product.prodname_desktop %}.' redirect_from: - - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop/ + - /desktop/getting-started-with-github-desktop/keyboard-shortcuts-in-github-desktop - /desktop/getting-started-with-github-desktop/keyboard-shortcuts - /desktop/installing-and-configuring-github-desktop/keyboard-shortcuts versions: fpt: '*' --- - {% mac %} -MacOS 上的 GitHub Desktop 快捷键 +GitHub Desktop keyboard shortcuts on macOS -## 站点快捷键 +## Site wide shortcuts -| 键盘快捷键 | 描述 | -| ------------------------------------ | ----------------------------------------------------- | -| <kbd>⌘</kbd><kbd>,</kbd> | 进入 Preferences(首选项) | -| <kbd>⌘</kbd><kbd>H</kbd> | 隐藏 {% data variables.product.prodname_desktop %} 应用程序 | -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | 隐藏所有其他应用程序 | -| <kbd>⌘</kbd><kbd>Q</kbd> | 退出 {% data variables.product.prodname_desktop %} -| <kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | 切换全屏视图 | -| <kbd>⌘</kbd><kbd>0</kbd> | 将缩放比例重置为默认的文本大小 | -| <kbd>⌘</kbd><kbd>=</kbd> | 放大文本和图形 | -| <kbd>⌘</kbd><kbd>-</kbd> | 缩小文本和图形 | -| <kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | 切换开发者工具 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>,</kbd> | Go to Preferences +|<kbd>⌘</kbd><kbd>H</kbd> | Hide the {% data variables.product.prodname_desktop %} application +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>H</kbd> | Hide all other applications +|<kbd>⌘</kbd><kbd>Q</kbd> | Quit {% data variables.product.prodname_desktop %} +|<kbd>⌃</kbd><kbd>⌘</kbd><kbd>F</kbd> | Toggle full screen view +|<kbd>⌘</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>⌘</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>⌘</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>⌥</kbd><kbd>⌘</kbd><kbd>I</kbd> | Toggle Developer Tools -## 仓库 +## Repositories -| 键盘快捷键 | 描述 | -| ------------------------------------ | ----------------------------------------------------- | -| <kbd>⌘</kbd><kbd>N</kbd> | 新增仓库 | -| <kbd>⌘</kbd><kbd>O</kbd> | 添加本地仓库 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | 从 {% data variables.product.prodname_dotcom %} 克隆仓库 | -| <kbd>⌘</kbd><kbd>T</kbd> | 显示仓库列表 | -| <kbd>⌘</kbd><kbd>P</kbd> | 将最新提交推送到 {% data variables.product.prodname_dotcom %} -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | 从 {% data variables.product.prodname_dotcom %} 拉取最新更改 | -| <kbd>⌘</kbd><kbd>⌫</kbd> | 删除现有仓库 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | 在 {% data variables.product.prodname_dotcom %} 上查看仓库 | -| <kbd>⌃</kbd><kbd>`</kbd> | 在首选的终端工具中打开仓库 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | 在 Finder 中显示仓库 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | 在首选的编辑器工具中打开仓库 | -| <kbd>⌘</kbd><kbd>I</kbd> | 在 {% data variables.product.prodname_dotcom %} 上创建议题 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>N</kbd> | Add a new repository +|<kbd>⌘</kbd><kbd>O</kbd> | Add a local repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>⌘</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>⌫</kbd> | Remove an existing repository +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>⌃</kbd><kbd>`</kbd> | Open repository in your preferred terminal tool +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>F</kbd> | Show the repository in Finder +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>⌘</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} -## 分支 +## Branches -| 键盘快捷键 | 描述 | -| ------------------------------------ | -------------------------------------------------------- | -| <kbd>⌘</kbd><kbd>1</kbd> | 在提交前显示所有更改 | -| <kbd>⌘</kbd><kbd>2</kbd> | 显示提交历史记录 | -| <kbd>⌘</kbd><kbd>B</kbd> | 显示所有分支 | -| <kbd>⌘</kbd><kbd>G</kbd> | 转到提交摘要字段 | -| <kbd>⌘</kbd><kbd>Enter</kbd> | 当摘要或描述字段处于活动状态时提交更改 | -| <kbd>space</kbd> | 选择或取消选择所有突出显示的文件 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | 创建新分支 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | 重命名当前分支 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | 删除当前分支 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | 从默认分支更新 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | 与现有分支比较 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | 合并到当前分支 | -| <kbd>⌃</kbd><kbd>H</kbd> | 显示或隐藏储存的更改 | -| <kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | 比较 {% data variables.product.prodname_dotcom %} 上的分支 | -| <kbd>⌘</kbd><kbd>R</kbd> | 在 {% data variables.product.prodname_dotcom %} 上显示当前拉取请求 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>⌘</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>⌘</kbd><kbd>2</kbd> | Show your commit history +|<kbd>⌘</kbd><kbd>B</kbd> | Show all your branches +|<kbd>⌘</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>⌘</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>N</kbd> | Create a new branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>U</kbd> | Update from default branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>⌃</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>⇧</kbd><kbd>⌘</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>⌘</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endmac %} {% windows %} -Windows 上的 GitHub Desktop 键盘快捷键 +GitHub Desktop keyboard shortcuts on Windows -## 站点快捷键 +## Site wide shortcuts -| 键盘快捷键 | 描述 | -| ------------------------------------------- | --------------- | -| <kbd>Ctrl</kbd><kbd>,</kbd> | 转到 Options(选项) | -| <kbd>F11</kbd> | 切换全屏视图 | -| <kbd>Ctrl</kbd><kbd>0</kbd> | 将缩放比例重置为默认的文本大小 | -| <kbd>Ctrl</kbd><kbd>=</kbd> | 放大文本和图形 | -| <kbd>Ctrl</kbd><kbd>-</kbd> | 缩小文本和图形 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | 切换开发者工具 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>,</kbd> | Go to Options +|<kbd>F11</kbd> | Toggle full screen view +|<kbd>Ctrl</kbd><kbd>0</kbd> | Reset zoom to default text size +|<kbd>Ctrl</kbd><kbd>=</kbd> | Zoom in for larger text and graphics +|<kbd>Ctrl</kbd><kbd>-</kbd> | Zoom out for smaller text and graphics +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>I</kbd> | Toggle Developer Tools -## 仓库 +## Repositories -| 键盘快捷键 | 描述 | -| ------------------------------------------- | ----------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>N</kbd> | 新增仓库 | -| <kbd>Ctrl</kbd><kbd>O</kbd> | 添加本地仓库 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | 从 {% data variables.product.prodname_dotcom %} 克隆仓库 | -| <kbd>Ctrl</kbd><kbd>T</kbd> | 显示仓库列表 | -| <kbd>Ctrl</kbd><kbd>P</kbd> | 将最新提交推送到 {% data variables.product.prodname_dotcom %} -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | 从 {% data variables.product.prodname_dotcom %} 拉取最新更改 | -| <kbd>Ctrl</kbd><kbd>Delete</kbd> | 删除现有仓库 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | 在 {% data variables.product.prodname_dotcom %} 上查看仓库 | -| <kbd>Ctrl</kbd><kbd>`</kbd> | 在首选的命令行工具中打开仓库 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | 在 Explorer 中显示仓库 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | 在首选的编辑器工具中打开仓库 | -| <kbd>Ctrl</kbd><kbd>I</kbd> | 在 {% data variables.product.prodname_dotcom %} 上创建议题 | +| Keyboard Shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>N</kbd> | Add a new repository +|<kbd>Ctrl</kbd><kbd>O</kbd> | Add a local repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>O</kbd> | Clone a repository from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>T</kbd> | Show a list of your repositories +|<kbd>Ctrl</kbd><kbd>P</kbd> | Push the latest commits to {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>P</kbd> | Pull down the latest changes from {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>Delete</kbd> | Remove an existing repository +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>G</kbd> | View the repository on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>`</kbd> | Open repository in your preferred command line tool +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>F</kbd> | Show the repository in Explorer +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>A</kbd> | Open the repository in your preferred editor tool +|<kbd>Ctrl</kbd><kbd>I</kbd> | Create an issue on {% data variables.product.prodname_dotcom %} -## 分支 +## Branches -| 键盘快捷键 | 描述 | -| ------------------------------------------- | -------------------------------------------------------- | -| <kbd>Ctrl</kbd><kbd>1</kbd> | 在提交前显示所有更改 | -| <kbd>Ctrl</kbd><kbd>2</kbd> | 显示提交历史记录 | -| <kbd>Ctrl</kbd><kbd>B</kbd> | 显示所有分支 | -| <kbd>Ctrl</kbd><kbd>G</kbd> | 转到提交摘要字段 | -| <kbd>Ctrl</kbd><kbd>Enter</kbd> | 当摘要或描述字段处于活动状态时提交更改 | -| <kbd>space</kbd> | 选择或取消选择所有突出显示的文件 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | 创建新分支 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | 重命名当前分支 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | 删除当前分支 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | 从默认分支更新 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | 与现有分支比较 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | 合并到当前分支 | -| <kbd>Ctrl</kbd><kbd>H</kbd> | 显示或隐藏储存的更改 | -| <kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | 比较 {% data variables.product.prodname_dotcom %} 上的分支 | -| <kbd>Ctrl</kbd><kbd>R</kbd> | 在 {% data variables.product.prodname_dotcom %} 上显示当前拉取请求 | +| Keyboard shortcut | Description +|-----------|------------ +|<kbd>Ctrl</kbd><kbd>1</kbd> | Show all your changes before committing +|<kbd>Ctrl</kbd><kbd>2</kbd> | Show your commit history +|<kbd>Ctrl</kbd><kbd>B</kbd> | Show all your branches +|<kbd>Ctrl</kbd><kbd>G</kbd> | Go to the commit summary field +|<kbd>Ctrl</kbd><kbd>Enter</kbd> | Commit changes when summary or description field is active +|<kbd>space</kbd>| Select or deselect all highlighted files +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>N</kbd> | Create a new branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>R</kbd> | Rename the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>D</kbd> | Delete the current branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>U</kbd> | Update from default branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>B</kbd> | Compare to an existing branch +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>M</kbd> | Merge into current branch +|<kbd>Ctrl</kbd><kbd>H</kbd> | Show or hide stashed changes +|<kbd>Ctrl</kbd><kbd>Shift</kbd><kbd>C</kbd> | Compare branches on {% data variables.product.prodname_dotcom %} +|<kbd>Ctrl</kbd><kbd>R</kbd> | Show the current pull request on {% data variables.product.prodname_dotcom %} {% endwindows %} diff --git a/translations/zh-CN/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md b/translations/zh-CN/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md index cc15507cf3..1ea8edbf72 100644 --- a/translations/zh-CN/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md +++ b/translations/zh-CN/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md @@ -239,16 +239,16 @@ While most of your API interaction should occur using your server-to-server inst #### Deployment Statuses -* [List deployment statuses](/rest/reference/repos#list-deployment-statuses) -* [Create a deployment status](/rest/reference/repos#create-a-deployment-status) -* [Get a deployment status](/rest/reference/repos#get-a-deployment-status) +* [List deployment statuses](/rest/reference/deployments#list-deployment-statuses) +* [Create a deployment status](/rest/reference/deployments#create-a-deployment-status) +* [Get a deployment status](/rest/reference/deployments#get-a-deployment-status) #### Deployments -* [List deployments](/rest/reference/repos#list-deployments) -* [Create a deployment](/rest/reference/repos#create-a-deployment) -* [Get a deployment](/rest/reference/repos#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} -* [Delete a deployment](/rest/reference/repos#delete-a-deployment){% endif %} +* [List deployments](/rest/reference/deployments#list-deployments) +* [Create a deployment](/rest/reference/deployments#create-a-deployment) +* [Get a deployment](/rest/reference/deployments#get-a-deployment){% ifversion fpt or ghes or ghae or ghec %} +* [Delete a deployment](/rest/reference/deployments#delete-a-deployment){% endif %} #### Events @@ -609,7 +609,7 @@ While most of your API interaction should occur using your server-to-server inst * [Get a repository](/rest/reference/repos#get-a-repository) * [Update a repository](/rest/reference/repos#update-a-repository) * [Delete a repository](/rest/reference/repos#delete-a-repository) -* [Compare two commits](/rest/reference/repos#compare-two-commits) +* [Compare two commits](/rest/reference/commits#compare-two-commits) * [List repository contributors](/rest/reference/repos#list-repository-contributors) * [List forks](/rest/reference/repos#list-forks) * [Create a fork](/rest/reference/repos#create-a-fork) @@ -641,68 +641,68 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Branches -* [List branches](/rest/reference/repos#list-branches) -* [Get a branch](/rest/reference/repos#get-a-branch) -* [Get branch protection](/rest/reference/repos#get-branch-protection) -* [Update branch protection](/rest/reference/repos#update-branch-protection) -* [Delete branch protection](/rest/reference/repos#delete-branch-protection) -* [Get admin branch protection](/rest/reference/repos#get-admin-branch-protection) -* [Set admin branch protection](/rest/reference/repos#set-admin-branch-protection) -* [Delete admin branch protection](/rest/reference/repos#delete-admin-branch-protection) -* [Get pull request review protection](/rest/reference/repos#get-pull-request-review-protection) -* [Update pull request review protection](/rest/reference/repos#update-pull-request-review-protection) -* [Delete pull request review protection](/rest/reference/repos#delete-pull-request-review-protection) -* [Get commit signature protection](/rest/reference/repos#get-commit-signature-protection) -* [Create commit signature protection](/rest/reference/repos#create-commit-signature-protection) -* [Delete commit signature protection](/rest/reference/repos#delete-commit-signature-protection) -* [Get status checks protection](/rest/reference/repos#get-status-checks-protection) -* [Update status check protection](/rest/reference/repos#update-status-check-protection) -* [Remove status check protection](/rest/reference/repos#remove-status-check-protection) -* [Get all status check contexts](/rest/reference/repos#get-all-status-check-contexts) -* [Add status check contexts](/rest/reference/repos#add-status-check-contexts) -* [Set status check contexts](/rest/reference/repos#set-status-check-contexts) -* [Remove status check contexts](/rest/reference/repos#remove-status-check-contexts) -* [Get access restrictions](/rest/reference/repos#get-access-restrictions) -* [Delete access restrictions](/rest/reference/repos#delete-access-restrictions) +* [List branches](/rest/reference/branches#list-branches) +* [Get a branch](/rest/reference/branches#get-a-branch) +* [Get branch protection](/rest/reference/branches#get-branch-protection) +* [Update branch protection](/rest/reference/branches#update-branch-protection) +* [Delete branch protection](/rest/reference/branches#delete-branch-protection) +* [Get admin branch protection](/rest/reference/branches#get-admin-branch-protection) +* [Set admin branch protection](/rest/reference/branches#set-admin-branch-protection) +* [Delete admin branch protection](/rest/reference/branches#delete-admin-branch-protection) +* [Get pull request review protection](/rest/reference/branches#get-pull-request-review-protection) +* [Update pull request review protection](/rest/reference/branches#update-pull-request-review-protection) +* [Delete pull request review protection](/rest/reference/branches#delete-pull-request-review-protection) +* [Get commit signature protection](/rest/reference/branches#get-commit-signature-protection) +* [Create commit signature protection](/rest/reference/branches#create-commit-signature-protection) +* [Delete commit signature protection](/rest/reference/branches#delete-commit-signature-protection) +* [Get status checks protection](/rest/reference/branches#get-status-checks-protection) +* [Update status check protection](/rest/reference/branches#update-status-check-protection) +* [Remove status check protection](/rest/reference/branches#remove-status-check-protection) +* [Get all status check contexts](/rest/reference/branches#get-all-status-check-contexts) +* [Add status check contexts](/rest/reference/branches#add-status-check-contexts) +* [Set status check contexts](/rest/reference/branches#set-status-check-contexts) +* [Remove status check contexts](/rest/reference/branches#remove-status-check-contexts) +* [Get access restrictions](/rest/reference/branches#get-access-restrictions) +* [Delete access restrictions](/rest/reference/branches#delete-access-restrictions) * [List teams with access to the protected branch](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) -* [Add team access restrictions](/rest/reference/repos#add-team-access-restrictions) -* [Set team access restrictions](/rest/reference/repos#set-team-access-restrictions) -* [Remove team access restriction](/rest/reference/repos#remove-team-access-restrictions) +* [Add team access restrictions](/rest/reference/branches#add-team-access-restrictions) +* [Set team access restrictions](/rest/reference/branches#set-team-access-restrictions) +* [Remove team access restriction](/rest/reference/branches#remove-team-access-restrictions) * [List user restrictions of protected branch](/rest/reference/repos#list-users-with-access-to-the-protected-branch) -* [Add user access restrictions](/rest/reference/repos#add-user-access-restrictions) -* [Set user access restrictions](/rest/reference/repos#set-user-access-restrictions) -* [Remove user access restrictions](/rest/reference/repos#remove-user-access-restrictions) -* [Merge a branch](/rest/reference/repos#merge-a-branch) +* [Add user access restrictions](/rest/reference/branches#add-user-access-restrictions) +* [Set user access restrictions](/rest/reference/branches#set-user-access-restrictions) +* [Remove user access restrictions](/rest/reference/branches#remove-user-access-restrictions) +* [Merge a branch](/rest/reference/branches#merge-a-branch) #### Repository Collaborators -* [List repository collaborators](/rest/reference/repos#list-repository-collaborators) -* [Check if a user is a repository collaborator](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) -* [Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator) -* [Remove a repository collaborator](/rest/reference/repos#remove-a-repository-collaborator) -* [Get repository permissions for a user](/rest/reference/repos#get-repository-permissions-for-a-user) +* [List repository collaborators](/rest/reference/collaborators#list-repository-collaborators) +* [Check if a user is a repository collaborator](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) +* [Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator) +* [Remove a repository collaborator](/rest/reference/collaborators#remove-a-repository-collaborator) +* [Get repository permissions for a user](/rest/reference/collaborators#get-repository-permissions-for-a-user) #### Repository Commit Comments -* [List commit comments for a repository](/rest/reference/repos#list-commit-comments-for-a-repository) -* [Get a commit comment](/rest/reference/repos#get-a-commit-comment) -* [Update a commit comment](/rest/reference/repos#update-a-commit-comment) -* [Delete a commit comment](/rest/reference/repos#delete-a-commit-comment) -* [List commit comments](/rest/reference/repos#list-commit-comments) -* [Create a commit comment](/rest/reference/repos#create-a-commit-comment) +* [List commit comments for a repository](/rest/reference/commits#list-commit-comments-for-a-repository) +* [Get a commit comment](/rest/reference/commits#get-a-commit-comment) +* [Update a commit comment](/rest/reference/commits#update-a-commit-comment) +* [Delete a commit comment](/rest/reference/commits#delete-a-commit-comment) +* [List commit comments](/rest/reference/commits#list-commit-comments) +* [Create a commit comment](/rest/reference/commits#create-a-commit-comment) #### Repository Commits -* [List commits](/rest/reference/repos#list-commits) -* [Get a commit](/rest/reference/repos#get-a-commit) -* [List branches for head commit](/rest/reference/repos#list-branches-for-head-commit) +* [List commits](/rest/reference/commits#list-commits) +* [Get a commit](/rest/reference/commits#get-a-commit) +* [List branches for head commit](/rest/reference/commits#list-branches-for-head-commit) * [List pull requests associated with commit](/rest/reference/repos#list-pull-requests-associated-with-commit) #### Repository Community * [Get the code of conduct for a repository](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) {% ifversion fpt or ghec %} -* [Get community profile metrics](/rest/reference/repos#get-community-profile-metrics) +* [Get community profile metrics](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif %} #### Repository Contents @@ -722,40 +722,40 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Hooks -* [List repository webhooks](/rest/reference/repos#list-repository-webhooks) -* [Create a repository webhook](/rest/reference/repos#create-a-repository-webhook) -* [Get a repository webhook](/rest/reference/repos#get-a-repository-webhook) -* [Update a repository webhook](/rest/reference/repos#update-a-repository-webhook) -* [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) -* [Ping a repository webhook](/rest/reference/repos#ping-a-repository-webhook) +* [List repository webhooks](/rest/reference/webhooks#list-repository-webhooks) +* [Create a repository webhook](/rest/reference/webhooks#create-a-repository-webhook) +* [Get a repository webhook](/rest/reference/webhooks#get-a-repository-webhook) +* [Update a repository webhook](/rest/reference/webhooks#update-a-repository-webhook) +* [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) +* [Ping a repository webhook](/rest/reference/webhooks#ping-a-repository-webhook) * [Test the push repository webhook](/rest/reference/repos#test-the-push-repository-webhook) #### Repository Invitations -* [List repository invitations](/rest/reference/repos#list-repository-invitations) -* [Update a repository invitation](/rest/reference/repos#update-a-repository-invitation) -* [Delete a repository invitation](/rest/reference/repos#delete-a-repository-invitation) -* [List repository invitations for the authenticated user](/rest/reference/repos#list-repository-invitations-for-the-authenticated-user) -* [Accept a repository invitation](/rest/reference/repos#accept-a-repository-invitation) -* [Decline a repository invitation](/rest/reference/repos#decline-a-repository-invitation) +* [List repository invitations](/rest/reference/collaborators#list-repository-invitations) +* [Update a repository invitation](/rest/reference/collaborators#update-a-repository-invitation) +* [Delete a repository invitation](/rest/reference/collaborators#delete-a-repository-invitation) +* [List repository invitations for the authenticated user](/rest/reference/collaborators#list-repository-invitations-for-the-authenticated-user) +* [Accept a repository invitation](/rest/reference/collaborators#accept-a-repository-invitation) +* [Decline a repository invitation](/rest/reference/collaborators#decline-a-repository-invitation) #### Repository Keys -* [List deploy keys](/rest/reference/repos#list-deploy-keys) -* [Create a deploy key](/rest/reference/repos#create-a-deploy-key) -* [Get a deploy key](/rest/reference/repos#get-a-deploy-key) -* [Delete a deploy key](/rest/reference/repos#delete-a-deploy-key) +* [List deploy keys](/rest/reference/deployments#list-deploy-keys) +* [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) +* [Get a deploy key](/rest/reference/deployments#get-a-deploy-key) +* [Delete a deploy key](/rest/reference/deployments#delete-a-deploy-key) #### Repository Pages -* [Get a GitHub Pages site](/rest/reference/repos#get-a-github-pages-site) -* [Create a GitHub Pages site](/rest/reference/repos#create-a-github-pages-site) -* [Update information about a GitHub Pages site](/rest/reference/repos#update-information-about-a-github-pages-site) -* [Delete a GitHub Pages site](/rest/reference/repos#delete-a-github-pages-site) -* [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) -* [Request a GitHub Pages build](/rest/reference/repos#request-a-github-pages-build) -* [Get GitHub Pages build](/rest/reference/repos#get-github-pages-build) -* [Get latest pages build](/rest/reference/repos#get-latest-pages-build) +* [Get a GitHub Pages site](/rest/reference/pages#get-a-github-pages-site) +* [Create a GitHub Pages site](/rest/reference/pages#create-a-github-pages-site) +* [Update information about a GitHub Pages site](/rest/reference/pages#update-information-about-a-github-pages-site) +* [Delete a GitHub Pages site](/rest/reference/pages#delete-a-github-pages-site) +* [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) +* [Request a GitHub Pages build](/rest/reference/pages#request-a-github-pages-build) +* [Get GitHub Pages build](/rest/reference/pages#get-github-pages-build) +* [Get latest pages build](/rest/reference/pages#get-latest-pages-build) {% ifversion ghes %} #### Repository Pre Receive Hooks @@ -782,11 +782,11 @@ While most of your API interaction should occur using your server-to-server inst #### Repository Stats -* [Get the weekly commit activity](/rest/reference/repos#get-the-weekly-commit-activity) -* [Get the last year of commit activity](/rest/reference/repos#get-the-last-year-of-commit-activity) -* [Get all contributor commit activity](/rest/reference/repos#get-all-contributor-commit-activity) -* [Get the weekly commit count](/rest/reference/repos#get-the-weekly-commit-count) -* [Get the hourly commit count for each day](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +* [Get the weekly commit activity](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +* [Get the last year of commit activity](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +* [Get all contributor commit activity](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +* [Get the weekly commit count](/rest/reference/repository-metrics#get-the-weekly-commit-count) +* [Get the hourly commit count for each day](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) {% ifversion fpt or ghec %} #### Repository Vulnerability Alerts @@ -812,9 +812,9 @@ While most of your API interaction should occur using your server-to-server inst #### Statuses -* [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) -* [List commit statuses for a reference](/rest/reference/repos#list-commit-statuses-for-a-reference) -* [Create a commit status](/rest/reference/repos#create-a-commit-status) +* [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) +* [List commit statuses for a reference](/rest/reference/commits#list-commit-statuses-for-a-reference) +* [Create a commit status](/rest/reference/commits#create-a-commit-status) #### Team Discussions @@ -837,10 +837,10 @@ While most of your API interaction should occur using your server-to-server inst {% ifversion fpt or ghec %} #### Traffic -* [Get repository clones](/rest/reference/repos#get-repository-clones) -* [Get top referral paths](/rest/reference/repos#get-top-referral-paths) -* [Get top referral sources](/rest/reference/repos#get-top-referral-sources) -* [Get page views](/rest/reference/repos#get-page-views) +* [Get repository clones](/rest/reference/repository-metrics#get-repository-clones) +* [Get top referral paths](/rest/reference/repository-metrics#get-top-referral-paths) +* [Get top referral sources](/rest/reference/repository-metrics#get-top-referral-sources) +* [Get page views](/rest/reference/repository-metrics#get-page-views) {% endif %} {% ifversion fpt or ghec %} diff --git a/translations/zh-CN/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md b/translations/zh-CN/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md index 1230d399aa..3b4da45422 100644 --- a/translations/zh-CN/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md +++ b/translations/zh-CN/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md @@ -1,6 +1,6 @@ --- -title: GitHub 应用程序和 OAuth 应用程序之间的差异 -intro: '了解 {% data variables.product.prodname_github_apps %} 和 {% data variables.product.prodname_oauth_apps %} 之间的差异可帮助您决定要创建哪个应用程序。 在组织或组织内的仓库上安装时,{% data variables.product.prodname_oauth_app %} 代表 GitHub 用户,而 {% data variables.product.prodname_github_app %} 使用它自己的身份。' +title: Differences between GitHub Apps and OAuth Apps +intro: 'Understanding the differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_apps %} will help you decide which app you want to create. An {% data variables.product.prodname_oauth_app %} acts as a GitHub user, whereas a {% data variables.product.prodname_github_app %} uses its own identity when installed on an organization or on repositories within an organization.' redirect_from: - /early-access/integrations/integrations-vs-oauth-applications/ - /apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type/ @@ -14,100 +14,99 @@ versions: topics: - GitHub Apps - OAuth Apps -shortTitle: GitHub 应用程序与 OAuth 应用程序 +shortTitle: GitHub Apps & OAuth Apps --- +## Who can install GitHub Apps and authorize OAuth Apps? -## 谁可以安装 GitHub 应用程序并授权 OAuth 应用程序? - -您可以在您的个人帐户或您拥有的组织中安装 GitHub 应用程序。 如果拥有仓库管理员权限,您可以在组织帐户上安装 GitHub 应用程序。 如果 GitHub 应用程序安装在仓库中,并且需要组织权限,则组织所有者必须批准该应用程序。 +You can install GitHub Apps in your personal account or organizations you own. If you have admin permissions in a repository, you can install GitHub Apps on organization accounts. If a GitHub App is installed in a repository and requires organization permissions, the organization owner must approve the application. {% data reusables.apps.app_manager_role %} -相比之下,一旦用户_授权_ OAuth 应用程序,该应用程序就能代表经身份验证的用户。 例如,您可以授权 OAuth 应用程序查找经身份验证用户的所有通知。 您可以随时撤销 OAuth 应用程序的权限。 +By contrast, users _authorize_ OAuth Apps, which gives the app the ability to act as the authenticated user. For example, you can authorize an OAuth App that finds all notifications for the authenticated user. You can always revoke permissions from an OAuth App. {% data reusables.apps.deletes_ssh_keys %} -| GitHub 应用程序 | OAuth 应用程序 | -| ---------------------------------------------------------------------------------------- | ------------------------------------------------------------ | -| 您必须是组织所有者或者具有仓库管理员权限才能在组织上安装 GitHub 应用程序。 如果 GitHub 应用程序安装在仓库中,并且需要组织权限,则组织所有者必须批准该应用程序。 | 您可以授权 OAuth 应用程序访问资源。 | -| 您可以在个人仓库上安装 GitHub 应用程序。 | 您可以授权 OAuth 应用程序访问资源。 | -| 您必须是组织所有者、个人仓库所有者或者拥有仓库的管理员权限才能卸载 GitHub 应用程序和删除其访问权限。 | 您可以删除 OAuth 访问令牌以删除访问权限。 | -| 您必须是组织所有者或者具有仓库管理员权限才能请求安装 GitHub 应用程序。 | 如果组织应用程序策略已激活,则任何组织成员都可以请求在组织上安装 OAuth 应用程序。 组织所有者必须批准或拒绝请求。 | +| GitHub Apps | OAuth Apps | +| ----- | ------ | +| You must be an organization owner or have admin permissions in a repository to install a GitHub App on an organization. If a GitHub App is installed in a repository and requires organization permissions, the organization owner must approve the application. | You can authorize an OAuth app to have access to resources. | +| You can install a GitHub App on your personal repository. | You can authorize an OAuth app to have access to resources.| +| You must be an organization owner, personal repository owner, or have admin permissions in a repository to uninstall a GitHub App and remove its access. | You can delete an OAuth access token to remove access. | +| You must be an organization owner or have admin permissions in a repository to request a GitHub App installation. | If an organization application policy is active, any organization member can request to install an OAuth App on an organization. An organization owner must approve or deny the request. | -## GitHub 应用程序和 OAuth 应用程序可以访问什么? +## What can GitHub Apps and OAuth Apps access? -帐户所有者可以在一个帐户中使用 {% data variables.product.prodname_github_app %} ,而不授予对其他帐户的访问权限。 例如,您可以在您的雇主组织中安装第三方构建服务,但决定不授权该构建服务访问您个人帐户中的仓库。 即使安装者离开组织,GitHub 应用程序仍然存在。 +Account owners can use a {% data variables.product.prodname_github_app %} in one account without granting access to another. For example, you can install a third-party build service on your employer's organization, but decide not to grant that build service access to repositories in your personal account. A GitHub App remains installed if the person who set it up leaves the organization. -_授权的_ OAuth 应用程序有权访问用户或组织所有者可访问的所有资源。 +An _authorized_ OAuth App has access to all of the user's or organization owner's accessible resources. -| GitHub 应用程序 | OAuth 应用程序 | -| -------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| 安装 GitHub 应用程序将授予该应用程序访问用户或组织帐户所选仓库的权限。 | 授权 OAuth 应用程序将授予该应用程序访问用户可访问资源的权限。 例如,他们可以访问的仓库。 | -| 如果管理员从安装中删除仓库,则 GitHub 应用程序的安装令牌将失去对资源的访问权限。 | 当用户失去对资源的访问权限时,例如失去对仓库的写入权限,OAuth 访问令牌也会失去相应的访问权限。 | -| 安装访问令牌仅限于指定的仓库,其权限由应用程序创建者选择。 | OAuth 访问令牌受作用域限制。 | -| GitHub Apps 可以请求单独访问议题和拉取请求,而不访问仓库的实际内容。 | OAuth 应用程序需要请求 `repo` 作用域才能访问议题、拉取请求或仓库拥有的任何内容。 | -| GitHub 应用程序不受组织应用程序策略的约束。 GitHub 应用程序只能访问组织所有者授权的仓库。 | 如果组织应用程序策略已激活,则只有组织所有者才能授权安装 OAuth 应用程序。 安装后,OAuth 应用程序将有权访问组织所有者在批准组织内的令牌可见的任何内容。 | -| 当安装被更改或删除时,GitHub 应用程序会收到 web 挂钩事件。 当它们对组织资源的访问权限扩大或缩小时,这将告诉应用程序创建者。 | 根据授予用户访问权限的变化,OAuth 应用程序可能会随时失去对组织或仓库的访问权限。 OAuth 应用程序在失去对资源的访问权限时不会通知您。 | +| GitHub Apps | OAuth Apps | +| ----- | ------ | +| Installing a GitHub App grants the app access to a user or organization account's chosen repositories. | Authorizing an OAuth App grants the app access to the user's accessible resources. For example, repositories they can access. | +| The installation token from a GitHub App loses access to resources if an admin removes repositories from the installation. | An OAuth access token loses access to resources when the user loses access, such as when they lose write access to a repository. | +| Installation access tokens are limited to specified repositories with the permissions chosen by the creator of the app. | An OAuth access token is limited via scopes. | +| GitHub Apps can request separate access to issues and pull requests without accessing the actual contents of the repository. | OAuth Apps need to request the `repo` scope to get access to issues, pull requests, or anything owned by the repository. | +| GitHub Apps aren't subject to organization application policies. A GitHub App only has access to the repositories an organization owner has granted. | If an organization application policy is active, only an organization owner can authorize the installation of an OAuth App. If installed, the OAuth App gains access to anything visible to the token the organization owner has within the approved organization. | +| A GitHub App receives a webhook event when an installation is changed or removed. This tells the app creator when they've received more or less access to an organization's resources. | OAuth Apps can lose access to an organization or repository at any time based on the granting user's changing access. The OAuth App will not inform you when it loses access to a resource. | -## 基于令牌的识别 +## Token-based identification {% note %} -**注:**GitHub 应用程序也可以使用基于用户的令牌。 更多信息请参阅“[识别和授权 GitHub 应用程序用户](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)”。 +**Note:** GitHub Apps can also use a user-based token. For more information, see "[Identifying and authorizing users for GitHub Apps](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)." {% endnote %} -| GitHub 应用程序 | OAuth 应用程序 | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| GitHub 应用可以使用带外 JSON Web 令牌格式的私钥请求安装访问令牌。 | OAuth 应用程序可以通过 Web 请求在重定向后将请求令牌交换为访问令牌。 | -| 安装程序将应用程序识别为 GitHub 应用自动程序,例如 @jenkins-bot。 | 访问令牌将应用程序识别为向应用程序授予令牌的用户,例如 @octocat。 | -| 安装令牌在预定义的时间(当前为 1 小时)后过期。 | OAuth 令牌在被客户撤销之前一直保持活动状态。 | -| {% data reusables.apps.api-rate-limits-non-ghec %}{% ifversion fpt or ghec %} 更高的速率限制适用于 {% data variables.product.prodname_ghe_cloud %}。 更多信息请参阅“[GitHub 应用程序的速率限制](/developers/apps/rate-limits-for-github-apps)”。{% endif %} | OAuth 令牌使用用户的每小时 5,000 个请求的速率限制。 | -| 速率限制的增加可在 GitHub 应用程序级别(影响所有安装)和单个安装级别上授予。 | 速率限制的增加按 OAuth 应用程序授予。 授予该 OAuth 应用程序的每个令牌都会获得增加的上限。 | -| {% data variables.product.prodname_github_apps %} 可以代表用户进行身份验证,这称为用户到服务器请求。 授权流程与 OAuth 应用程序授权流程相同。 用户到服务器令牌可能会过期,可通过刷新令牌进行续订。 更多信息请参阅“[刷新用户到服务器访问令牌](/apps/building-github-apps/refreshing-user-to-server-access-tokens/)”和“[识别和授权 GitHub 应用程序用户](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)”。 | {% data variables.product.prodname_oauth_apps %} 使用的 OAuth 流程代表用户授权 {% data variables.product.prodname_oauth_app %}。 这与用于 {% data variables.product.prodname_github_app %} 用户到服务器授权中使用的流程相同。 | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| A GitHub App can request an installation access token by using a private key with a JSON web token format out-of-band. | An OAuth app can exchange a request token for an access token after a redirect via a web request. | +| An installation token identifies the app as the GitHub Apps bot, such as @jenkins-bot. | An access token identifies the app as the user who granted the token to the app, such as @octocat. | +| Installation tokens expire after a predefined amount of time (currently 1 hour). | OAuth tokens remain active until they're revoked by the customer. | +| {% data reusables.apps.api-rate-limits-non-ghec %}{% ifversion fpt or ghec %} Higher rate limits apply for {% data variables.product.prodname_ghe_cloud %}. For more information, see "[Rate limits for GitHub Apps](/developers/apps/rate-limits-for-github-apps)."{% endif %} | OAuth tokens use the user's rate limit of 5,000 requests per hour. | +| Rate limit increases can be granted both at the GitHub Apps level (affecting all installations) and at the individual installation level. | Rate limit increases are granted per OAuth App. Every token granted to that OAuth App gets the increased limit. | +| {% data variables.product.prodname_github_apps %} can authenticate on behalf of the user, which is called user-to-server requests. The flow to authorize is the same as the OAuth App authorization flow. User-to-server tokens can expire and be renewed with a refresh token. For more information, see "[Refreshing user-to-server access tokens](/apps/building-github-apps/refreshing-user-to-server-access-tokens/)" and "[Identifying and authorizing users for GitHub Apps](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)." | The OAuth flow used by {% data variables.product.prodname_oauth_apps %} authorizes an {% data variables.product.prodname_oauth_app %} on behalf of the user. This is the same flow used in {% data variables.product.prodname_github_app %} user-to-server authorization. | -## 请求资源的权限级别 +## Requesting permission levels for resources -与 OAuth 应用程序不同,GitHub 应用程序具有针对性的权限,只允许它们请求访问所需的资源。 例如,持续集成 (CI) GitHub 应用程序可以请求对仓库内容的读取权限和对状态 API 的写入权限。 另一个 GitHub 应用程序可能没有对代码的读取或写入权限,但仍能管理议题、标签和里程碑。 OAuth 应用程序不能使用精细权限。 +Unlike OAuth apps, GitHub Apps have targeted permissions that allow them to request access only to what they need. For example, a Continuous Integration (CI) GitHub App can request read access to repository content and write access to the status API. Another GitHub App can have no read or write access to code but still have the ability to manage issues, labels, and milestones. OAuth Apps can't use granular permissions. -| 访问 | GitHub 应用程序(`read` 或 `write` 权限) | OAuth 应用程序 | -| -------------------- | -------------------------------- | ----------------------------------------- | -| **访问公共仓库** | 需要在安装过程中选择公共仓库。 | `public_repo` 作用域。 | -| **访问仓库代码/内容** | 仓库内容 | `repo` 作用域。 | -| **获取议题、标签和里程碑** | 议题 | `repo` 作用域。 | -| **获取拉取请求、标签和里程碑** | 拉取请求 | `repo` 作用域。 | -| **访问提交状态(对于 CI 构建)** | 提交状态 | `repo:status` 作用域。 | -| **访问部署和部署状态** | 部署 | `repo_deployment` 作用域。 | -| **通过 web 挂钩接收事件** | GitHub 应用程序默认包含一个 web 挂钩。 | `write:repo_hook` 或 `write:org_hook` 作用域。 | +| Access | GitHub Apps (`read` or `write` permissions) | OAuth Apps | +| ------ | ----- | ----------- | +| **For access to public repositories** | Public repository needs to be chosen during installation. | `public_repo` scope. | +| **For access to repository code/contents** | Repository contents | `repo` scope. | +| **For access to issues, labels, and milestones** | Issues | `repo` scope. | +| **For access to pull requests, labels, and milestones** | Pull requests | `repo` scope. | +| **For access to commit statuses (for CI builds)** | Commit statuses | `repo:status` scope. | +| **For access to deployments and deployment statuses** | Deployments | `repo_deployment` scope. | +| **To receive events via a webhook** | A GitHub App includes a webhook by default. | `write:repo_hook` or `write:org_hook` scope. | -## 仓库发现 +## Repository discovery -| GitHub 应用程序 | OAuth 应用程序 | -| --------------------------------------------------------- | ----------------------------------------------------------------------- | -| GitHub 应用程序可以访问 `/installation/repositories` 以查看安装可访问的仓库。 | OAuth 应用程序可访问用户视图中的 `/user/repos` 或组织视图中的 `/orgs/:org/repos` 以查看可访问的资源。 | -| 当从安装中添加或删除仓库时,GitHub 应用程序会接收 web 挂钩。 | 在组织内创建新仓库时,OAuth 应用程序为通知创建组织 web 挂钩。 | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub Apps can look at `/installation/repositories` to see repositories the installation can access. | OAuth Apps can look at `/user/repos` for a user view or `/orgs/:org/repos` for an organization view of accessible repositories. | +| GitHub Apps receive webhooks when repositories are added or removed from the installation. | OAuth Apps create organization webhooks for notifications when a new repository is created within an organization. | -## Web 挂钩 +## Webhooks -| GitHub 应用程序 | OAuth 应用程序 | -| --------------------------------------------------- | ------------------------------------------------------- | -| 默认情况下,GitHub 应用程序有一个 web 挂钩,可根据配置接收它们有权访问的每个仓库中的事件。 | OAuth 应用程序请求 web 挂钩作用域为它们需要接收其事件的每个仓库创建仓库 web 挂钩。 | -| GitHub 应用程序使用组织成员的权限接收某些组织级别的事件。 | OAuth 应用程序请求组织 web 挂钩作用域为它们需要接收其组织级别事件的每个组织创建组织 web 挂钩。 | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| By default, GitHub Apps have a single webhook that receives the events they are configured to receive for every repository they have access to. | OAuth Apps request the webhook scope to create a repository webhook for each repository they need to receive events from. | +| GitHub Apps receive certain organization-level events with the organization member's permission. | OAuth Apps request the organization webhook scope to create an organization webhook for each organization they need to receive organization-level events from. | -## Git 访问 +## Git access -| GitHub 应用程序 | OAuth 应用程序 | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | -| GitHub 应用程序请求仓库内容权限,并使用安装令牌通过[基于 HTTP 的 Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation) 进行身份验证。 | OAuth 应用程序请求 `write:public_key` 作用域,并通过 API [创建部署密钥](/rest/reference/repos#create-a-deploy-key)。 然后您可以使用该密钥来执行 Git 命令。 | -| 令牌用作 HTTP 密码。 | 令牌用作 HTTP 用户名。 | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub Apps ask for repository contents permission and use your installation token to authenticate via [HTTP-based Git](/apps/building-github-apps/authenticating-with-github-apps/#http-based-git-access-by-an-installation). | OAuth Apps ask for `write:public_key` scope and [Create a deploy key](/rest/reference/deployments#create-a-deploy-key) via the API. You can then use that key to perform Git commands. | +| The token is used as the HTTP password. | The token is used as the HTTP username. | -## 机器与机器人帐户 +## Machine vs. bot accounts -机器用户帐户是基于 OAuth 的用户帐户,它使用 GitHub 的用户系统隔离自动系统。 +Machine user accounts are OAuth-based user accounts that segregate automated systems using GitHub's user system. -机器人帐户特定于 GitHub 应用,并内置于每个 GitHub 应用程序中。 +Bot accounts are specific to GitHub Apps and are built into every GitHub App. -| GitHub 应用程序 | OAuth 应用程序 | -| ---------------------------------------------------------------------- | ------------------------------------------------------------- | -| GitHub 应用程序机器人不占用 {% data variables.product.prodname_enterprise %} 席位。 | 机器用户帐户占用 {% data variables.product.prodname_enterprise %} 席位。 | -| 由于 GitHub 应用程序机器人永远不会被授予密码,因此客户无法直接登录它。 | 机器用户帐户被授予由客户管理和保护的用户名和密码。 | +| GitHub Apps | OAuth Apps | +| ----- | ----------- | +| GitHub App bots do not consume a {% data variables.product.prodname_enterprise %} seat. | A machine user account consumes a {% data variables.product.prodname_enterprise %} seat. | +| Because a GitHub App bot is never granted a password, a customer can't sign into it directly. | A machine user account is granted a username and password to be managed and secured by the customer. | diff --git a/translations/zh-CN/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md b/translations/zh-CN/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md index 81c514324b..c50c580dbb 100644 --- a/translations/zh-CN/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md +++ b/translations/zh-CN/content/developers/apps/getting-started-with-apps/migrating-oauth-apps-to-github-apps.md @@ -98,7 +98,7 @@ You'll need to replace `YOUR_APP_NAME` with the name of your GitHub App, `ID_OF_ ### Remove any unnecessary repository hooks -Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/repos#delete-a-repository-webhook) on those repositories that were created by your OAuth App. +Once your GitHub App has been installed on a repository, you should remove any unnecessary webhooks that were created by your legacy OAuth App. If both apps are installed on a repository, they may duplicate functionality for the user. To remove webhooks, you can listen for the [`installation_repositories` webhook](/webhooks/event-payloads/#installation_repositories) with the `repositories_added` action and [Delete a repository webhook](/rest/reference/webhooks#delete-a-repository-webhook) on those repositories that were created by your OAuth App. ### Encourage users to revoke access to your OAuth app diff --git a/translations/zh-CN/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md b/translations/zh-CN/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md index c519cb708b..37bfe4dd23 100644 --- a/translations/zh-CN/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md +++ b/translations/zh-CN/content/developers/github-marketplace/selling-your-app-on-github-marketplace/receiving-payment-for-app-purchases.md @@ -1,11 +1,11 @@ --- -title: 接收应用程序购买的付款 -intro: '在每个月末,您将收到您的 {% data variables.product.prodname_marketplace %} 上架产品的付款。' +title: Receiving payment for app purchases +intro: 'At the end of each month, you''ll receive payment for your {% data variables.product.prodname_marketplace %} listing.' redirect_from: - - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing/ - - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings/ + - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/pricing-payments-and-free-trials/receiving-payment-for-a-github-marketplace-listing + - /apps/marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /marketplace/selling-your-app/receiving-payment-for-github-marketplace-listings - /developers/github-marketplace/receiving-payment-for-app-purchases versions: @@ -13,17 +13,16 @@ versions: ghec: '*' topics: - Marketplace -shortTitle: 接收付款 +shortTitle: Receive payment --- +After your {% data variables.product.prodname_marketplace %} listing for an app with a paid plan is created and approved, you'll provide payment details to {% data variables.product.product_name %} as part of the financial onboarding process. -为含有付费计划的应用程序创建 {% data variables.product.prodname_marketplace %} 上架信息并得到批准后,您需要向 {% data variables.product.product_name %} 提供付款详细信息以完成财务手续。 +Once your revenue reaches a minimum of 500 US dollars for the month, you'll receive an electronic payment from {% data variables.product.company_short %}. This will be the income from marketplace transactions minus the amount charged by {% data variables.product.company_short %} to cover their running costs. -一旦您当月的收入达到最低 500 美元,您将收到 {% data variables.product.company_short %} 的电子付款。 此金额为 Marketplace 交易的收入减去 {% data variables.product.company_short %} 为顾及运营成本而收取的金额。 - -对于 2021 年 1 月 1 日之前发生的交易,{% data variables.product.company_short %} 扣留交易收入的 25%。 对于该日期之后发生的交易,{% data variables.product.company_short %} 仅扣留 5%。 这一变化将反映在 2021 年 1 月底收到的付款中。 +For transactions made before January 1, 2021, {% data variables.product.company_short %} retains 25% of transaction income. For transactions made after that date, only 5% is retained by {% data variables.product.company_short %}. This change will be reflected in payments received from the end of January 2021 onward. {% note %} -**注:**有关当前定价和付款条款的详细信息,请参阅“[{% data variables.product.prodname_marketplace %} 开发者协议](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)”。 +**Note:** For details of the current pricing and payment terms, see "[{% data variables.product.prodname_marketplace %} developer agreement](/free-pro-team@latest/github/site-policy/github-marketplace-developer-agreement)." {% endnote %} diff --git a/translations/zh-CN/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/translations/zh-CN/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index d02f24f4a3..83686ec401 100644 --- a/translations/zh-CN/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/translations/zh-CN/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -327,7 +327,7 @@ Webhook events are triggered based on the specificity of the domain you register Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments). +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments). {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -352,11 +352,11 @@ Key | Type | Description Key | Type | Description ----|------|-------------{% ifversion fpt or ghes or ghae or ghec %} `action` |`string` | The action performed. Can be `created`.{% endif %} -`deployment_status` |`object` | The [deployment status](/rest/reference/repos#list-deployment-statuses). +`deployment_status` |`object` | The [deployment status](/rest/reference/deployments#list-deployment-statuses). `deployment_status["state"]` |`string` | The new state. Can be `pending`, `success`, `failure`, or `error`. `deployment_status["target_url"]` |`string` | The optional link added to the status. `deployment_status["description"]`|`string` | The optional human-readable description added to the status. -`deployment` |`object` | The [deployment](/rest/reference/repos#list-deployments) that this status is associated with. +`deployment` |`object` | The [deployment](/rest/reference/deployments#list-deployments) that this status is associated with. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -820,7 +820,7 @@ Activity related to {% data variables.product.prodname_registry %}. {% data reus Key | Type | Description ----|------|------------ `id` | `integer` | The unique identifier of the page build. -`build` | `object` | The [List GitHub Pages builds](/rest/reference/repos#list-github-pages-builds) itself. +`build` | `object` | The [List GitHub Pages builds](/rest/reference/pages#list-github-pages-builds) itself. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} @@ -846,7 +846,7 @@ Key | Type | Description ----|------|------------ `zen` | `string` | Random string of GitHub zen. `hook_id` | `integer` | The ID of the webhook that triggered the ping. -`hook` | `object` | The [webhook configuration](/rest/reference/repos#get-a-repository-webhook). +`hook` | `object` | The [webhook configuration](/rest/reference/webhooks#get-a-repository-webhook). `hook[app_id]` | `integer` | When you register a new {% data variables.product.prodname_github_app %}, {% data variables.product.product_name %} sends a ping event to the **webhook URL** you specified during registration. The event contains the `app_id`, which is required for [authenticating](/apps/building-integrations/setting-up-and-registering-github-apps/about-authentication-options-for-github-apps/) an app. {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} diff --git a/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md b/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md index 514bf5d42f..3249d81ea8 100644 --- a/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md +++ b/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/why-wasnt-my-application-for-a-student-developer-pack-approved.md @@ -4,7 +4,7 @@ intro: 'Review common reasons that applications for the {% data variables.produc redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved - - /articles/why-was-my-application-for-a-student-developer-pack-denied/ + - /articles/why-was-my-application-for-a-student-developer-pack-denied - /articles/why-wasn-t-my-application-for-a-student-developer-pack-approved - /articles/why-wasnt-my-application-for-a-student-developer-pack-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-a-student-developer-pack-approved diff --git a/translations/zh-CN/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/zh-CN/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 0cdd662fb8..e1e2026fb4 100644 --- a/translations/zh-CN/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/zh-CN/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 @@ -1,29 +1,28 @@ --- -title: 申请教育者或研究人员折扣 -intro: '如果您是教育者或研究人员,可以为组织申请免费获取 {% data variables.product.prodname_team %}。' +title: Apply for an educator or researcher discount +intro: 'If you''re an educator or a researcher, you can apply to receive {% data variables.product.prodname_team %} for your organization account for free.' redirect_from: - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /github/teaching-and-learning-with-github-education/applying-for-an-educator-or-researcher-discount - - /articles/applying-for-a-classroom-discount/ - - /articles/applying-for-a-discount-for-your-school-club/ - - /articles/applying-for-an-academic-research-discount/ - - /articles/applying-for-a-discount-for-your-first-robotics-team/ + - /articles/applying-for-a-classroom-discount + - /articles/applying-for-a-discount-for-your-school-club + - /articles/applying-for-an-academic-research-discount + - /articles/applying-for-a-discount-for-your-first-robotics-team - /articles/applying-for-an-educator-or-researcher-discount - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount versions: fpt: '*' -shortTitle: 申请折扣 +shortTitle: Apply for a discount --- - -## 关于教育者和研究人员折扣 +## About educator and researcher discounts {% data reusables.education.about-github-education-link %} {% data reusables.education.educator-requirements %} -有关在 {% data variables.product.product_name %} 上创建用户帐户的更多信息,请参阅“[注册新 {% data variables.product.prodname_dotcom %} 帐户](/github/getting-started-with-github/signing-up-for-a-new-github-account)”。 +For more information about user 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)." -## 申请教育者或研究人员折扣 +## Applying for an educator or researcher discount {% data reusables.education.benefits-page %} {% data reusables.education.click-get-teacher-benefits %} @@ -33,28 +32,30 @@ shortTitle: 申请折扣 {% data reusables.education.plan-to-use-github %} {% data reusables.education.submit-application %} -## 升级组织 +## Upgrading your organization -在教育者或研究人员折扣申请获得批准后,您可以将用于学习社区的组织升级到 {% data variables.product.prodname_team %},以便免费访问无限的用户和具有完全功能的私有仓库。 您可以升级现有组织或创建新组织进行升级。 +After your request for an educator or researcher discount has been approved, you can upgrade the organizations you use with your learning community to {% data variables.product.prodname_team %}, which allows unlimited users and private repositories with full features, for free. You can upgrade an existing organization or create a new organization to upgrade. -### 升级现有组织 +### Upgrading an existing organization {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -### 升级新组织 +### Upgrading a new organization {% data reusables.education.upgrade-page %} -1. 单击 {% octicon "plus" aria-label="The plus symbol" %} **Create an organization(创建组织)**。 ![创建组织按钮](/assets/images/help/education/create-org-button.png) -3. 阅读信息,然后单击 **Create organization(创建组织)**。 ![创建组织按钮](/assets/images/help/education/create-organization-button.png) -4. 在“Choose a plan(选择计划)”下,单击 **选择 {% data variables.product.prodname_free_team %}**。 -5. 按照提示创建组织。 +1. Click {% octicon "plus" aria-label="The plus symbol" %} **Create an organization**. + ![Create an organization button](/assets/images/help/education/create-org-button.png) +3. Read the information, then click **Create organization**. + ![Create organization button](/assets/images/help/education/create-organization-button.png) +4. Under "Choose your plan", click **Choose {% data variables.product.prodname_free_team %}**. +5. Follow the prompts to create your organization. {% data reusables.education.upgrade-page %} {% data reusables.education.upgrade-organization %} -## 延伸阅读 +## Further reading -- "[为什么我的教育者或研究人员折扣申请未获得批准?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)" +- "[Why wasn't my application for an educator or researcher discount approved?](/articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved)" - [{% data variables.product.prodname_education %}](https://education.github.com) -- [{% data variables.product.prodname_classroom %} 视频](https://classroom.github.com/videos) +- [{% data variables.product.prodname_classroom %} Videos](https://classroom.github.com/videos) - [{% data variables.product.prodname_education_community %}](https://education.github.community/) diff --git a/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md b/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md index 06f2e46958..82cc504911 100644 --- a/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md +++ b/translations/zh-CN/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved.md @@ -1,48 +1,47 @@ --- -title: 为什么我的教育工作者或研究人员折扣申请未获得批准? -intro: 查看申请教育工作者或研究人员折扣未获批准的常见原因,并了解成功重新申请的窍门。 +title: Why wasn't my application for an educator or researcher discount approved? +intro: Review common reasons that applications for an educator or researcher discount are not approved and learn tips for reapplying successfully. redirect_from: - /education/teach-and-learn-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /github/teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied/ + - /articles/why-was-my-application-for-an-educator-or-researcher-discount-denied - /articles/why-wasn-t-my-application-for-an-educator-or-researcher-discount-approved - /articles/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved - /education/explore-the-benefits-of-teaching-and-learning-with-github-education/why-wasnt-my-application-for-an-educator-or-researcher-discount-approved versions: fpt: '*' -shortTitle: 申请未被批准 +shortTitle: Application not approved --- - {% tip %} -**提示:** {% data reusables.education.about-github-education-link %} +**Tip:** {% data reusables.education.about-github-education-link %} {% endtip %} -## 关联文档证明不明确 +## Unclear proof of affiliation documents -如果您上传的图像无法明确地确定您目前在学校或大学工作,则必须重新申请并上传您的教职员 ID 或雇主证明信的其他图像,其中须含有明确信息。 +If the image you uploaded doesn't clearly identify your current employment with a school or university, you must reapply and upload another image of your faculty ID or employment verification letter with clear information. {% data reusables.education.pdf-support %} -## 使用具有未经验证域的学术电子邮件 +## Using an academic email with an unverified domain -如果您的学术电子邮件地址有未经验证的域,则我们可能需要您的学术地位的进一步证明。 {% data reusables.education.upload-different-image %} +If your academic email address has an unverified domain, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -## 使用来自电子邮件政策宽松的学校的学术电子邮件 +## Using an academic email from a school with lax email policies -如果您学校的校友和退休教师终身可以访问学校发出的电子邮件地址,则我们可能需要您的学术地位的进一步证明。 {% data reusables.education.upload-different-image %} +If alumni and retired faculty of your school have lifetime access to school-issued email addresses, we may require further proof of your academic status. {% data reusables.education.upload-different-image %} {% data reusables.education.pdf-support %} -如果您有关于学校域的其他疑问或问题,请让学校的 IT 人员联系我们。 +If you have other questions or concerns about the school domain, please ask your school IT staff to contact us. -## 非学生申请学生开发包 +## Non-student applying for Student Developer Pack -教育工作者或研究人员没有资格获得 [{% data variables.product.prodname_student_pack %}](https://education.github.com/pack)随附的合作伙伴优惠。 当您重新申请时,确保选择 **Faculty(教职工)**来描述您的学术地位。 +Educators and researchers are not eligible for the partner offers that come with the [{% data variables.product.prodname_student_pack %}](https://education.github.com/pack). When you reapply, make sure that you choose **Faculty** to describe your academic status. -## 延伸阅读 +## Further reading -- “[申请教育工作者或研究人员折扣](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)” +- "[Apply for an educator or researcher discount](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/apply-for-an-educator-or-researcher-discount)" diff --git a/translations/zh-CN/content/get-started/getting-started-with-git/about-remote-repositories.md b/translations/zh-CN/content/get-started/getting-started-with-git/about-remote-repositories.md index 6448f9759d..78b6642b52 100644 --- a/translations/zh-CN/content/get-started/getting-started-with-git/about-remote-repositories.md +++ b/translations/zh-CN/content/get-started/getting-started-with-git/about-remote-repositories.md @@ -73,7 +73,7 @@ SSH URLs provide access to a Git repository via SSH, a secure protocol. To use t When you `git clone`, `git fetch`, `git pull`, or `git push` to a remote repository using SSH URLs, you'll be prompted for a password and must provide your SSH key passphrase. For more information, see "[Working with SSH key passphrases](/github/authenticating-to-github/working-with-ssh-key-passphrases)." -{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)."{% endif %} +{% ifversion fpt or ghec %}If you are accessing an organization that uses SAML single sign-on (SSO), you must authorize your SSH key to access the organization before you authenticate. For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %}{% endif %} {% tip %} diff --git a/translations/zh-CN/content/get-started/learning-about-github/access-permissions-on-github.md b/translations/zh-CN/content/get-started/learning-about-github/access-permissions-on-github.md index 9d725ebcf0..07127770d3 100644 --- a/translations/zh-CN/content/get-started/learning-about-github/access-permissions-on-github.md +++ b/translations/zh-CN/content/get-started/learning-about-github/access-permissions-on-github.md @@ -7,7 +7,7 @@ redirect_from: - /articles/access-permissions-on-github - /github/getting-started-with-github/access-permissions-on-github - /github/getting-started-with-github/learning-about-github/access-permissions-on-github -intro: 'While you can grant read/write access to collaborators on a personal repository, members of an organization can have more granular access permissions for the organization''s repositories.' +intro: 'With roles, you can control who has access to your accounts and resources on {% data variables.product.product_name %} and the level of access each person has.' versions: fpt: '*' ghes: '*' @@ -18,6 +18,13 @@ topics: - Accounts shortTitle: Access permissions --- + +## About access permissions on {% data variables.product.prodname_dotcom %} + +{% data reusables.organizations.about-roles %} + +Roles work differently for different types of accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + ## Personal user accounts A repository owned by a user account has two permission levels: the *repository owner* and *collaborators*. For more information, see "[Permission levels for a user account repository](/articles/permission-levels-for-a-user-account-repository)." diff --git a/translations/zh-CN/content/get-started/learning-about-github/githubs-products.md b/translations/zh-CN/content/get-started/learning-about-github/githubs-products.md index 35843a3620..c5927d487d 100644 --- a/translations/zh-CN/content/get-started/learning-about-github/githubs-products.md +++ b/translations/zh-CN/content/get-started/learning-about-github/githubs-products.md @@ -1,6 +1,6 @@ --- -title: GitHub 的产品 -intro: '{% data variables.product.prodname_dotcom %} 的产品和定价计划概述。' +title: GitHub's products +intro: 'An overview of {% data variables.product.prodname_dotcom %}''s products and pricing plans.' redirect_from: - /articles/github-s-products - /articles/githubs-products @@ -18,66 +18,67 @@ topics: - Desktop - Security --- +## About {% data variables.product.prodname_dotcom %}'s products -## 关于 {% data variables.product.prodname_dotcom %} 的产品 +{% data variables.product.prodname_dotcom %} offers free and paid products for storing and collaborating on code. Some products apply only to user accounts, while other plans apply only to organization and enterprise accounts. For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -{% data variables.product.prodname_dotcom %} 提供免费和付费产品。 您可以在 <{% data variables.product.pricing_url %}> 上查看每款产品的价格和完整功能列表。 {% data reusables.products.product-roadmap %} +You can see pricing and a full list of features for each product at <{% data variables.product.pricing_url %}>. {% data reusables.products.product-roadmap %} -## 用户帐户的 {% data variables.product.prodname_free_user %} +## {% data variables.product.prodname_free_user %} for user accounts -通过用户帐户的 {% data variables.product.prodname_free_team %},可与无限的协作者合作处理功能完全的无限公共仓库,或者是功能有限的无限私有仓库, +With {% data variables.product.prodname_free_team %} for user accounts, you can work with unlimited collaborators on unlimited public repositories with a full feature set, and on unlimited private repositories with a limited feature set. -通过 {% data variables.product.prodname_free_user %},用户帐户可包含: +With {% data variables.product.prodname_free_user %}, your user account includes: - {% data variables.product.prodname_gcf %} - {% data variables.product.prodname_dependabot_alerts %} -- 双重身份验证 -- 2,000 {% data variables.product.prodname_actions %} 分钟 -- 500MB {% data variables.product.prodname_registry %} 存储空间 +- Two-factor authentication enforcement +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_pro %} -除了可用于用户帐户的 {% data variables.product.prodname_free_user %} 的功能之外,{% data variables.product.prodname_pro %} 还包含: -- 通过电子邮件提供的 {% data variables.contact.github_support %} -- 3,000 {% data variables.product.prodname_actions %} 分钟 -- 2GB {% data variables.product.prodname_registry %} 存储空间 -- 私有仓库中的高级工具和洞察力: - - 必需拉取请求审查 - - 多个拉取请求审查者 - - 自动链接的引用 +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_pro %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers + - Auto-linked references - {% data variables.product.prodname_pages %} - Wikis - - 受保护分支 - - 代码所有者 - - 仓库洞察图:脉冲、贡献者、流量、提交、代码频率、网络和复刻 + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks -## 组织的 {% data variables.product.prodname_free_team %} +## {% data variables.product.prodname_free_team %} for organizations -通过组织的 {% data variables.product.prodname_free_team %},可与无限的协作者合作处理功能完全的无限公共仓库,或者是功能有限的无限私有仓库, +With {% data variables.product.prodname_free_team %} for organizations, you can work with unlimited collaborators on unlimited public repositories with a full feature set, or unlimited private repositories with a limited feature set. -除了可用于用户帐户的 {% data variables.product.prodname_free_user %} 的功能之外,组织的 {% data variables.product.prodname_free_team %} 还包含: +In addition to the features available with {% data variables.product.prodname_free_user %} for user accounts, {% data variables.product.prodname_free_team %} for organizations includes: - {% data variables.product.prodname_gcf %} -- 团队讨论 -- 用于管理组的团队访问权限控制 -- 2,000 {% data variables.product.prodname_actions %} 分钟 -- 500MB {% data variables.product.prodname_registry %} 存储空间 +- Team discussions +- Team access controls for managing groups +- 2,000 {% data variables.product.prodname_actions %} minutes +- 500MB {% data variables.product.prodname_registry %} storage ## {% data variables.product.prodname_team %} -除了可用于组织的 {% data variables.product.prodname_free_team %} 的功能之外,{% data variables.product.prodname_team %} 还包含: -- 通过电子邮件提供的 {% data variables.contact.github_support %} -- 3,000 {% data variables.product.prodname_actions %} 分钟 -- 2GB {% data variables.product.prodname_registry %} 存储空间 -- 私有仓库中的高级工具和洞察力: - - 必需拉取请求审查 - - 多个拉取请求审查者 +In addition to the features available with {% data variables.product.prodname_free_team %} for organizations, {% data variables.product.prodname_team %} includes: +- {% data variables.contact.github_support %} via email +- 3,000 {% data variables.product.prodname_actions %} minutes +- 2GB {% data variables.product.prodname_registry %} storage +- Advanced tools and insights in private repositories: + - Required pull request reviewers + - Multiple pull request reviewers - {% data variables.product.prodname_pages %} - Wikis - - 受保护分支 - - 代码所有者 - - 仓库洞察图:脉冲、贡献者、流量、提交、代码频率、网络和复刻 - - 草稿拉取请求 - - 团队拉取请求审查 - - 预定提醒 + - Protected branches + - Code owners + - Repository insights graphs: Pulse, contributors, traffic, commits, code frequency, network, and forks + - Draft pull requests + - Team pull request reviewers + - Scheduled reminders {% ifversion fpt or ghec %} - The option to enable {% data variables.product.prodname_github_codespaces %} - Organization owners can enable {% data variables.product.prodname_github_codespaces %} for the organization by setting a spending limit and granting user permissions for members of their organization. For more information, see "[Enabling Codespaces for your organization](/codespaces/managing-codespaces-for-your-organization/enabling-codespaces-for-your-organization)." @@ -87,25 +88,25 @@ topics: ## {% data variables.product.prodname_enterprise %} -{% data variables.product.prodname_enterprise %} 包括两个部署选项:云托管和自托管。 +{% data variables.product.prodname_enterprise %} includes two deployment options: cloud-hosted and self-hosted. -除了 {% data variables.product.prodname_team %} 的可用功能之外,{% data variables.product.prodname_enterprise %} 还包括: +In addition to the features available with {% data variables.product.prodname_team %}, {% data variables.product.prodname_enterprise %} includes: - {% data variables.contact.enterprise_support %} -- 更多安全、合规和部署控件 -- SAML 单点登录进行身份验证 -- 使用 SAML 或 SCIM 进行配置 +- Additional security, compliance, and deployment controls +- Authentication with SAML single sign-on +- Access provisioning with SAML or SCIM - {% data variables.product.prodname_github_connect %} -- 购买 {% data variables.product.prodname_GH_advanced_security %} 的选项。 更多信息请参阅“[关于 {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)”。 +- The option to purchase {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/github/getting-started-with-github/about-github-advanced-security)." -{% data variables.product.prodname_ghe_cloud %} 还包括: -- {% data variables.contact.enterprise_support %}. 更多信息请参阅“<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} 支持</a>”和“<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} 附录</a>”。 -- 50,000 {% data variables.product.prodname_actions %} 分钟 -- 50GB {% data variables.product.prodname_registry %} 存储空间 -- {% data variables.product.prodname_pages %} 站点的访问控制。 更多信息请参阅“<a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">更改 {% data variables.product.prodname_pages %} 站点的可见性</a>” -- 99.9% 月持续运行时间的服务等级协议 -- The option to configure your enterprise for {% data variables.product.prodname_emus %}, so you can provision and manage members with your identity provider and restrict your member's contributions to just your enterprise. 更多信息请参阅“[关于 {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)”。 -- 通过企业帐户集中管理多个 {% data variables.product.prodname_dotcom_the_website %} 组织的策略和帐单的选项。 更多信息请参阅“[关于企业帐户](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)”。 +{% data variables.product.prodname_ghe_cloud %} also includes: +- {% data variables.contact.enterprise_support %}. For more information, see "<a href="/articles/github-enterprise-cloud-support" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} support</a>" and "<a href="/articles/github-enterprise-cloud-addendum" class="dotcom-only">{% data variables.product.prodname_ghe_cloud %} Addendum</a>." +- 50,000 {% data variables.product.prodname_actions %} minutes +- 50GB {% data variables.product.prodname_registry %} storage +- Access control for {% data variables.product.prodname_pages %} sites. For more information, see <a href="/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site" class="dotcom-only">Changing the visibility of your {% data variables.product.prodname_pages %} site</a>" +- A service level agreement for 99.9% monthly uptime +- The option to configure your enterprise for {% data variables.product.prodname_emus %}, so you can provision and manage members with your identity provider and restrict your member's contributions to just your enterprise. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users)." +- The option to centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations with an enterprise account. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)." -您可以设置试用版来评估 {% data variables.product.prodname_ghe_cloud %}。 更多信息请参阅“<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">设置 {% data variables.product.prodname_ghe_cloud %} 的试用</a>”。 +You can set up a trial to evaluate {% data variables.product.prodname_ghe_cloud %}. For more information, see "<a href="/articles/setting-up-a-trial-of-github-enterprise-cloud" class="dotcom-only">Setting up a trial of {% data variables.product.prodname_ghe_cloud %}</a>." -有关托管理您自己的 [{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com) 实例的更多信息,请联系 {% data variables.contact.contact_enterprise_sales %}。 {% data reusables.enterprise_installation.request-a-trial %} +For more information about hosting your own instance of [{% data variables.product.prodname_ghe_server %}](https://enterprise.github.com), contact {% data variables.contact.contact_enterprise_sales %}. {% data reusables.enterprise_installation.request-a-trial %} diff --git a/translations/zh-CN/content/get-started/learning-about-github/types-of-github-accounts.md b/translations/zh-CN/content/get-started/learning-about-github/types-of-github-accounts.md index 4981f1858c..568b1834d8 100644 --- a/translations/zh-CN/content/get-started/learning-about-github/types-of-github-accounts.md +++ b/translations/zh-CN/content/get-started/learning-about-github/types-of-github-accounts.md @@ -1,6 +1,6 @@ --- title: Types of GitHub accounts -intro: 'Your user account is your identity on {% data variables.product.product_location %}. Your user account can be a member of any number of organizations.{% ifversion fpt or ghec %} Organizations can belong to enterprise accounts.{% endif %}' +intro: 'Accounts on {% data variables.product.product_name %} allow you to organize and control access to code.' redirect_from: - /manage-multiple-clients - /managing-clients @@ -21,73 +21,67 @@ topics: - Desktop - Security --- -{% ifversion fpt or ghec %} -For a full list of features for each {% data variables.product.product_name %} product, see "[{% data variables.product.prodname_dotcom %}'s products](/github/getting-started-with-github/githubs-products)." -{% endif %} -## Personal user accounts +## About accounts on {% data variables.product.product_name %} -Every person who uses {% data variables.product.product_location %} has their own user account, which includes: +With {% data variables.product.product_name %}, you can store and collaborate on code. Accounts allow you to organize and control access to that code. There are three types of accounts on {% data variables.product.product_name %}. +- Personal accounts +- Organization accounts +- Enterprise accounts -{% ifversion fpt or ghec %} +Every person who uses {% data variables.product.product_name %} signs into a personal account. An organization account enhances collaboration between multiple personal accounts, and {% ifversion fpt or ghec %}an enterprise account{% else %}the enterprise account for {% data variables.product.product_location %}{% endif %} allows central management of multiple organizations. -- Unlimited public and private repositories with {% data variables.product.prodname_free_user %} -- Unlimited collaborators with {% data variables.product.prodname_free_user %} -- Additional features for private repositories with {% data variables.product.prodname_pro %} -- Ability to [invite repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +## Personal accounts -{% else %} +Every person who uses {% data variables.product.product_location %} signs into a personal account. Your personal account is your identity on {% data variables.product.product_location %} and has a username and profile. For example, see [@octocat's profile](https://github.com/octocat). -- Unlimited repositories and [collaborators](/articles/permission-levels-for-a-user-account-repository) -- Ability to [add unlimited repository collaborators](/articles/inviting-collaborators-to-a-personal-repository) +Your personal account can own resources such as repositories, packages, and projects. Any time you take any action on {% data variables.product.product_location %}, such as creating an issue or reviewing a pull request, the action is attributed to your personal account. -{% endif %} - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %}Each personal account uses either {% data variables.product.prodname_free_user %} or {% data variables.product.prodname_pro %}. All personal accounts can own an unlimited number of public and private repositories, with an unlimited number of collaborators on those repositories. If you use {% data variables.product.prodname_free_user %}, private repositories owned by your personal account have a limited feature set. You can upgrade to {% data variables.product.prodname_pro %} to get a full feature set for private repositories. For more information, see "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)." {% else %}You can create an unlimited number of repositories owned by your personal account, with an unlimited number of collaborators on those repositories.{% endif %} {% tip %} -**Tips**: - -- You can use one account for multiple purposes, such as for personal use and business use. We do not recommend creating more than one account. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." -- User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. +**Tip**: Personal accounts are intended for humans, but you can create accounts to automate activity on {% data variables.product.product_name %}. This type of account is called a machine user. For example, you can create a machine user account to automate continuous integration (CI) workflows. {% endtip %} -{% else %} - -{% tip %} - -**Tip**: User accounts are intended for humans, but you can give one to a robot, such as a continuous integration bot, if necessary. - -{% endtip %} - -{% endif %} - {% ifversion fpt or ghec %} -### {% data variables.product.prodname_emus %} - -With {% data variables.product.prodname_emus %}, instead of using your personal account, members of an {% data variables.product.prodname_emu_enterprise %} are provisioned accounts using the enterprise's identity provider (IdP). {% data variables.product.prodname_managed_users_caps %} authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. - -{% data variables.product.prodname_managed_users_caps %} can only interact with users, repositories, and organizations that are part of their enterprise. {% data variables.product.prodname_managed_users_caps %} have read-only access to the rest of {% data variables.product.prodname_dotcom_the_website %}. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +Most people will use one personal account for all their work on {% data variables.product.prodname_dotcom_the_website %}, including both open source projects and paid employment. If you're currently using more than one personal account that you created for yourself, we suggest combining the accounts. For more information, see "[Merging multiple user accounts](/articles/merging-multiple-user-accounts)." {% endif %} ## Organization accounts -Organizations are shared accounts where groups of people can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. +Organizations are shared accounts where an unlimited number of people can collaborate across many projects at once. -{% data reusables.organizations.organizations_include %} +Like personal accounts, organizations can own resources such as repositories, packages, and projects. However, you cannot sign into an organization. Instead, each person signs into their own personal account, and any actions the person takes on organization resources are attributed to their personal account. Each personal account can be a member of multiple organizations. -{% ifversion fpt or ghec %} +The personal accounts within an organization can be given different roles in the organization, which grant different levels of access to the organization and its data. All members can collaborate with each other in repositories and projects, but only organization owners and security managers can manage the settings for the organization and control access to the organization's data with sophisticated security and administrative features. For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" and "[Keeping your organization secure](/organizations/keeping-your-organization-secure)." + +![Diagram showing that users must sign in to their personal user account to access an organization's resources](/assets/images/help/overview/sign-in-pattern.png) + +{% ifversion fpt or ghec %} +Even if you're a member of an organization that uses SAML single sign-on, you will still sign into your own personal account on {% data variables.product.prodname_dotcom_the_website %}, and that personal account will be linked to your identity in your organization's identity provider (IdP). For more information, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation{% else %}."{% endif %} + +However, if you're a member of an enterprise that uses {% data variables.product.prodname_emus %}, instead of using a personal account that you created, a new account will be provisioned for you by the enterprise's IdP. To access any organizations owned by that enterprise, you must authenticate using their IdP instead of a {% data variables.product.prodname_dotcom_the_website %} username and password. For more information, see "[About {% data variables.product.prodname_emus %}](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% endif %} + +You can also create nested sub-groups of organization members called teams, to reflect your group's structure and simplify access management. For more information, see "[About teams](/organizations/organizing-members-into-teams/about-teams)." + +{% data reusables.organizations.organization-plans %} + +For more information about all the features of organizations, see "[About organizations](/organizations/collaborating-with-groups-in-organizations/about-organizations)." ## Enterprise accounts -With enterprise accounts, you can centrally manage policy and billing for multiple {% data variables.product.prodname_dotcom_the_website %} organizations. {% data reusables.gated-features.enterprise-accounts %} - +{% ifversion fpt %} +{% data variables.product.prodname_ghe_cloud %} and {% data variables.product.prodname_ghe_server %} include enterprise accounts, which allow administrators to centrally manage policy and billing for multiple organizations and enable innersourcing between the organizations. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +{% elsif ghec %} +Enterprise accounts allow central policy management and billing for multiple organizations. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." +{% elsif ghes or ghae %} +Your enterprise account is a collection of all the organizations {% ifversion ghae %}owned by{% elsif ghes %}on{% endif %} {% data variables.product.product_location %}. You can use your enterprise account to centrally manage policy and billing. Unlike organizations, enterprise accounts cannot directly own resources like repositories, packages, or projects. These resources are owned by organizations within the enterprise account instead. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." {% endif %} ## Further reading -{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)" -- "[{% data variables.product.prodname_dotcom %}'s products](/articles/githubs-products)"{% endif %} +{% ifversion fpt or ghec %}- "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/articles/signing-up-for-a-new-github-account)"{% endif %} - "[Creating a new organization account](/articles/creating-a-new-organization-account)" diff --git a/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md b/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md index 895f30fd9d..2f1cf8bcf2 100644 --- a/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md +++ b/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-ae.md @@ -13,7 +13,7 @@ shortTitle: GitHub AE trial You can set up a 90-day trial to evaluate {% data variables.product.prodname_ghe_managed %}. This process allows you to deploy a {% data variables.product.prodname_ghe_managed %} account in your existing Azure region. - **{% data variables.product.prodname_ghe_managed %} account**: The Azure resource that contains the required components, including the instance. -- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at https://portal.azure.com. This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. +- **{% data variables.product.prodname_ghe_managed %} portal**: The Azure management tool at [https://portal.azure.com](https://portal.azure.com). This is used to deploy the {% data variables.product.prodname_ghe_managed %} account. ## Setting up your trial of {% data variables.product.prodname_ghe_managed %} diff --git a/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md b/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md index 8c44c1a59a..0a60c0a9d2 100644 --- a/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md +++ b/translations/zh-CN/content/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud.md @@ -19,11 +19,17 @@ shortTitle: Enterprise Cloud trial ## About {% data variables.product.prodname_ghe_cloud %} -{% data reusables.organizations.about-organizations %} +{% data variables.product.prodname_ghe_cloud %} is a plan for large businesses or teams who collaborate on {% data variables.product.prodname_dotcom_the_website %}. + +{% data reusables.organizations.about-organizations %} For more information about accounts, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." You can use organizations for free with {% data variables.product.prodname_free_team %}, which includes limited features. For additional features, such as SAML single sign-on (SSO), access control for {% data variables.product.prodname_pages %}, and included {% data variables.product.prodname_actions %} minutes, you can upgrade to {% data variables.product.prodname_ghe_cloud %}. For a detailed list of the features available with {% data variables.product.prodname_ghe_cloud %}, see our [Pricing](https://github.com/pricing) page. -{% data reusables.saml.saml-accounts %} For more information, see "<a href="/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on" class="dotcom-only">About identity and access management with SAML single sign-on</a>." +{% data reusables.saml.saml-accounts %} For more information, see "[About identity and access management with SAML single sign-on](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion not ghec %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} + +{% data reusables.enterprise-accounts.emu-short-summary %} + +{% data variables.product.prodname_emus %} is not part of the free trial of {% data variables.product.prodname_ghe_cloud %}. If you're interested in {% data variables.product.prodname_emus %}, please contact [{% data variables.product.prodname_dotcom %}'s Sales team](https://enterprise.github.com/contact). {% data reusables.products.which-product-to-use %} diff --git a/translations/zh-CN/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md b/translations/zh-CN/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md index 40188bc3dc..d20a58f745 100644 --- a/translations/zh-CN/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md +++ b/translations/zh-CN/content/get-started/signing-up-for-github/signing-up-for-a-new-github-account.md @@ -1,7 +1,7 @@ --- -title: 注册新 GitHub 帐户 -shortTitle: 注册新 GitHub 帐户 -intro: '{% data variables.product.company_short %} 为一起工作的人员团队提供个人和组织的用户帐户。' +title: Signing up for a new GitHub account +shortTitle: Sign up for a new GitHub account +intro: '{% data variables.product.company_short %} offers user accounts for individuals and organizations for teams of people working together.' redirect_from: - /articles/signing-up-for-a-new-github-account - /github/getting-started-with-github/signing-up-for-a-new-github-account @@ -13,15 +13,19 @@ topics: - Accounts --- -有关帐户类型和产品的更多信息,请参阅“[{% data variables.product.prodname_dotcom %} 帐户的类型](/articles/types-of-github-accounts)”和“[{% data variables.product.company_short %} 的产品](/articles/github-s-products)”。 +## About new accounts on {% data variables.product.prodname_dotcom_the_website %} + +You can create a personal account, which serves as your identity on {% data variables.product.prodname_dotcom_the_website %}, or an organization, which allows multiple personal accounts to collaborate across multiple projects. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." + +When you create a personal account or organization, you must select a billing plan for the account. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)." + +## Signing up for a new account {% data reusables.accounts.create-account %} -1. 按照提示操作,创建您的个人帐户或组织。 +1. Follow the prompts to create your personal account or organization. -## 后续步骤 +## Next steps -- “[验证电子邮件地址](/articles/verifying-your-email-address)” -- “[配置双重身份验证](/articles/configuring-two-factor-authentication)” -- “[将个人简历添加到个人资料](/articles/adding-a-bio-to-your-profile)” -- “[创建组织](/articles/creating-a-new-organization-from-scratch)” -- `github/roadmap` 仓库中的 [ {% data variables.product.prodname_roadmap %} ]({% data variables.product.prodname_roadmap_link %}) +- "[Verify your email address](/articles/verifying-your-email-address)" +- "[Creating an enterprise account](/enterprise-cloud@latest/admin/overview/creating-an-enterprise-account)"{% ifversion fpt %} in the {% data variables.product.prodname_ghe_cloud %} documentation{% endif %} +- [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository diff --git a/translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md index 66395d7189..621628a074 100644 --- a/translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md +++ b/translations/zh-CN/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md @@ -1,52 +1,51 @@ --- -title: GitHub 扩展和集成 -intro: '通过 {% data variables.product.product_name %} 扩展可在第三方应用程序中无缝使用 {% data variables.product.product_name %} 仓库。' +title: GitHub extensions and integrations +intro: 'Use {% data variables.product.product_name %} extensions to work seamlessly in {% data variables.product.product_name %} repositories within third-party applications.' redirect_from: - - /articles/about-github-extensions-for-third-party-applications/ + - /articles/about-github-extensions-for-third-party-applications - /articles/github-extensions-and-integrations - /github/customizing-your-github-workflow/github-extensions-and-integrations versions: fpt: '*' ghec: '*' -shortTitle: 扩展和集成 +shortTitle: Extensions & integrations --- +## Editor tools -## 编辑器工具 - -您可以在第三方编辑器工具中连接到 {% data variables.product.product_name %} 仓库,例如 Atom、Unity 和 Visual Studio 等工具。 +You can connect to {% data variables.product.product_name %} repositories within third-party editor tools, such as Atom, Unity, and Visual Studio. ### {% data variables.product.product_name %} for Atom -使用 {% data variables.product.product_name %} for Atom 扩展,您可以从 Atom 编辑器中提交、推送、拉取和解决合并冲突等。 更多信息请参阅官方 [{% data variables.product.product_name %} for Atom 站点](https://github.atom.io/)。 +With the {% data variables.product.product_name %} for Atom extension, you can commit, push, pull, resolve merge conflicts, and more from the Atom editor. For more information, see the official [{% data variables.product.product_name %} for Atom site](https://github.atom.io/). ### {% data variables.product.product_name %} for Unity -使用 {% data variables.product.product_name %} for Unity 编辑器扩展,您可以在开源游戏开发平台 Unity 上进行开发,在 {% data variables.product.product_name %} 查看您的工作。 更多信息请参阅官方 Unity 编辑器扩展[站点](https://unity.github.com/)或[文档](https://github.com/github-for-unity/Unity/tree/master/docs)。 +With the {% data variables.product.product_name %} for Unity editor extension, you can develop on Unity, the open source game development platform, and see your work on {% data variables.product.product_name %}. For more information, see the official Unity editor extension [site](https://unity.github.com/) or the [documentation](https://github.com/github-for-unity/Unity/tree/master/docs). ### {% data variables.product.product_name %} for Visual Studio -使用 {% data variables.product.product_name %} for Visual Studio 扩展,您可以 Visual Studio 中处理 {% data variables.product.product_name %} 仓库。 更多信息请参阅官方 Visual Studio 扩展[站点](https://visualstudio.github.com/)或[文档](https://github.com/github/VisualStudio/tree/master/docs)。 +With the {% data variables.product.product_name %} for Visual Studio extension, you can work in {% data variables.product.product_name %} repositories without leaving Visual Studio. For more information, see the official Visual Studio extension [site](https://visualstudio.github.com/) or [documentation](https://github.com/github/VisualStudio/tree/master/docs). ### {% data variables.product.prodname_dotcom %} for Visual Studio Code -使用 {% data variables.product.prodname_dotcom %} for Visual Studio Code 扩展,您可以在 Visual Studio Code 中审查和管理 {% data variables.product.product_name %} 拉取请求。 更多信息请参阅官方 Visual Studio Code 扩展[站点](https://vscode.github.com/)或[文档](https://github.com/Microsoft/vscode-pull-request-github)。 +With the {% data variables.product.prodname_dotcom %} for Visual Studio Code extension, you can review and manage {% data variables.product.product_name %} pull requests in Visual Studio Code. For more information, see the official Visual Studio Code extension [site](https://vscode.github.com/) or [documentation](https://github.com/Microsoft/vscode-pull-request-github). -## 项目管理工具 +## Project management tools -您可以将 {% data variables.product.product_location %} 上的个人或组织帐户与第三方项目管理工具(如 Jira)集成。 +You can integrate your personal or organization account on {% data variables.product.product_location %} with third-party project management tools, such as Jira. -### Jira Cloud 与 {% data variables.product.product_name %}.com 集成 +### Jira Cloud and {% data variables.product.product_name %}.com integration -您可以将 Jira Cloud 与个人或组织帐户集成,以扫描提交和拉取请求,在任何提及的 Jira 议题中创建相关的元数据和超链接。 更多信息请访问 Marketplace 中的 [Jira 集成应用程序](https://github.com/marketplace/jira-software-github)。 +You can integrate Jira Cloud with your personal or organization account to scan commits and pull requests, creating relevant metadata and hyperlinks in any mentioned Jira issues. For more information, visit the [Jira integration app](https://github.com/marketplace/jira-software-github) in the marketplace. -## 团队通信工具 +## Team communication tools -您可以将 {% data variables.product.product_location %} 上的个人或组织帐户与第三方团队通信工具(如 Slack 或 Microsoft Teams)集成。 +You can integrate your personal or organization account on {% data variables.product.product_location %} with third-party team communication tools, such as Slack or Microsoft Teams. -### Slack 与 {% data variables.product.product_name %} 集成 +### Slack and {% data variables.product.product_name %} integration -您可以订阅仓库或组织,并获得有关议题、拉取请求、提交、发布、部署审查和部署状态的实时更新。 您还可以执行关闭或打开议题等活动,并在不离开 Slack 的情况下提供丰富的议题和拉取请求参考。 更多信息请访问 Marketplace 中的 [Slack 集成应用程序](https://github.com/marketplace/slack-github)。 +You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, releases, deployment reviews and deployment statuses. You can also perform activities like close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace. -### Microsoft Teams 与 {% data variables.product.product_name %} 集成 +### Microsoft Teams and {% data variables.product.product_name %} integration -您可以订阅仓库或组织,并获得有关议题、拉取请求、提交、部署审查和部署状态的实时更新。 您也可以执行一些活动,如关闭或打开议题、评论您的议题和拉取请求,以及提供丰富的议题和拉取请求引用而不离开 Microsoft Teams。 更多信息请访问 Microsoft AppSource 中的 [Microsoft Teams 集成应用程序](https://appsource.microsoft.com/en-us/product/office/WA200002077)。 +You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, deployment reviews and deployment statuses. You can also perform activities like close or open issues, comment on your issues and pull requests, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource. diff --git a/translations/zh-CN/content/github/extending-github/about-webhooks.md b/translations/zh-CN/content/github/extending-github/about-webhooks.md index 3fdf84a69e..3ebe391ec7 100644 --- a/translations/zh-CN/content/github/extending-github/about-webhooks.md +++ b/translations/zh-CN/content/github/extending-github/about-webhooks.md @@ -1,11 +1,11 @@ --- -title: 关于 web 挂钩 +title: About webhooks redirect_from: - - /post-receive-hooks/ - - /articles/post-receive-hooks/ - - /articles/creating-webhooks/ + - /post-receive-hooks + - /articles/post-receive-hooks + - /articles/creating-webhooks - /articles/about-webhooks -intro: Web 挂钩是一种通知方式,只要仓库或组织上发生特定操作,就会发送通知到外部 web 服务器。 +intro: Webhooks provide a way for notifications to be delivered to an external web server whenever certain actions occur on a repository or organization. versions: fpt: '*' ghes: '*' @@ -15,17 +15,17 @@ versions: {% tip %} -**提示:** {% data reusables.organizations.owners-and-admins-can %} 为组织管理 web 挂钩。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** {% data reusables.organizations.owners-and-admins-can %} manage webhooks for an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} -只要在仓库或组织上执行特定的操作,就可触发 web 挂钩。 例如,您可以配置 web 挂钩在以下情况下执行: +Webhooks can be triggered whenever a variety of actions are performed on a repository or an organization. For example, you can configure a webhook to execute whenever: -* 推送到仓库 -* 打开拉取请求 -* 构建 {% data variables.product.prodname_pages %} 网站 -* 团队新增成员 +* A repository is pushed to +* A pull request is opened +* A {% data variables.product.prodname_pages %} site is built +* A new member is added to a team -使用 {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API 可以让这些 web 挂钩更新外部议题跟踪器、触发 CI 构建、更新备份镜像,甚至部署到生产服务器。 +Using the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API, you can make these webhooks update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to your production server. -要设置新的 web 挂钩,您需要访问外部服务器并熟悉所涉及的技术程序。 有关构建 web 挂钩的帮助,包括可以关联的完整操作列表,请参阅“[web 挂钩](/webhooks)”。 +To set up a new webhook, you'll need access to an external server and familiarity with the technical procedures involved. For help on building a webhook, including a full list of actions you can associate with, see "[Webhooks](/webhooks)." diff --git a/translations/zh-CN/content/github/extending-github/git-automation-with-oauth-tokens.md b/translations/zh-CN/content/github/extending-github/git-automation-with-oauth-tokens.md index d24b92aca0..e22725a212 100644 --- a/translations/zh-CN/content/github/extending-github/git-automation-with-oauth-tokens.md +++ b/translations/zh-CN/content/github/extending-github/git-automation-with-oauth-tokens.md @@ -1,48 +1,48 @@ --- -title: 使用 OAuth 令牌实施 Git 自动化 +title: Git automation with OAuth tokens redirect_from: - - /articles/git-over-https-using-oauth-token/ - - /articles/git-over-http-using-oauth-token/ + - /articles/git-over-https-using-oauth-token + - /articles/git-over-http-using-oauth-token - /articles/git-automation-with-oauth-tokens -intro: '你可以使用 OAuth 令牌通过自动化脚本与 {% data variables.product.product_name %} 交互。' +intro: 'You can use OAuth tokens to interact with {% data variables.product.product_name %} via automated scripts.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' -shortTitle: 使用 OAuth 令牌实施自动化 +shortTitle: Automate with OAuth tokens --- -## 第 1 步:获取 OAuth 令牌 +## Step 1: Get an OAuth token -在应用程序设置页面上创建个人访问令牌。 更多信息请参阅“[创建个人访问令牌](/github/authenticating-to-github/creating-a-personal-access-token)”。 +Create a personal access token on your application settings page. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." {% tip %} {% ifversion fpt or ghec %} -**提示:** -- 您必须先验证您的电子邮件地址才能创建个人访问令牌。 更多信息请参阅“[验证电子邮件地址](/articles/verifying-your-email-address)”。 +**Tips:** +- You must verify your email address before you can create a personal access token. For more information, see "[Verifying your email address](/articles/verifying-your-email-address)." - {% data reusables.user_settings.review_oauth_tokens_tip %} {% else %} -**提示:**{% data reusables.user_settings.review_oauth_tokens_tip %} +**Tip:** {% data reusables.user_settings.review_oauth_tokens_tip %} {% endif %} {% endtip %} {% ifversion fpt or ghec %}{% data reusables.user_settings.removes-personal-access-tokens %}{% endif %} -## 第 2 步:克隆仓库 +## Step 2: Clone a repository {% data reusables.command_line.providing-token-as-password %} -为了避免这些提示,您可以使用 Git 密码缓存。 有关信息请参阅“[在 Git 中缓存 GitHub 凭据](/github/getting-started-with-github/caching-your-github-credentials-in-git)”。 +To avoid these prompts, you can use Git password caching. For information, see "[Caching your GitHub credentials in Git](/github/getting-started-with-github/caching-your-github-credentials-in-git)." {% warning %} -**警告**:令牌具有读取/写入权限,应该被视为密码。 如果您在克隆或添加远程仓库时将令牌输入克隆 URL,Git 会以纯文本格式将其写入 _.git/config_ 文件,这存在安全风险。 +**Warning**: Tokens have read/write access and should be treated like passwords. If you enter your token into the clone URL when cloning or adding a remote, Git writes it to your _.git/config_ file in plain text, which is a security risk. {% endwarning %} -## 延伸阅读 +## Further reading -- "[授权 OAuth 应用程序](/developers/apps/authorizing-oauth-apps)" +- "[Authorizing OAuth Apps](/developers/apps/authorizing-oauth-apps)" diff --git a/translations/zh-CN/content/github/extending-github/index.md b/translations/zh-CN/content/github/extending-github/index.md index 62c57501e9..79a03ace00 100644 --- a/translations/zh-CN/content/github/extending-github/index.md +++ b/translations/zh-CN/content/github/extending-github/index.md @@ -1,8 +1,8 @@ --- -title: 扩展 GitHub +title: Extending GitHub redirect_from: - - /categories/86/articles/ - - /categories/automation/ + - /categories/86/articles + - /categories/automation - /categories/extending-github versions: fpt: '*' diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 5011d23fb9..575a38144d 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -2,7 +2,7 @@ title: Adding an existing project to GitHub using the command line intro: 'Putting your existing work on {% data variables.product.product_name %} can let you share and collaborate in lots of great ways.' redirect_from: - - /articles/add-an-existing-project-to-github/ + - /articles/add-an-existing-project-to-github - /articles/adding-an-existing-project-to-github-using-the-command-line - /github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line versions: diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md index 0d7e1db730..a559e7393b 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer.md @@ -1,37 +1,44 @@ --- -title: 使用 GitHub 导入工具导入仓库 -intro: 如果您有项目托管在另一个版本控制系统上,可以使用 GitHub 导入工具将其自动导入到 GitHub。 +title: Importing a repository with GitHub Importer +intro: 'If you have a project hosted on another version control system, you can automatically import it to GitHub using the GitHub Importer tool.' redirect_from: - - /articles/importing-from-other-version-control-systems-to-github/ + - /articles/importing-from-other-version-control-systems-to-github - /articles/importing-a-repository-with-github-importer - /github/importing-your-projects-to-github/importing-a-repository-with-github-importer versions: fpt: '*' ghec: '*' -shortTitle: 使用 GitHub 导入工具 +shortTitle: Use GitHub Importer --- - {% tip %} -**提示:**GitHub 导入工具不适用于所有导入。 例如,如果您现有的代码托管在私有网络上,我们的工具便无法访问。 在这些情况下,我们建议对 Git 仓库[使用命令行导入](/articles/importing-a-git-repository-using-the-command-line),或者对导入自其他版本控制系统的项目使用[源代码迁移工具](/articles/source-code-migration-tools)。 +**Tip:** GitHub Importer is not suitable for all imports. For example, if your existing code is hosted on a private network, our tool won't be able to access it. In these cases, we recommend [importing using the command line](/articles/importing-a-git-repository-using-the-command-line) for Git repositories or an external [source code migration tool](/articles/source-code-migration-tools) for projects imported from other version control systems. {% endtip %} -如果在导入时要将仓库中的提交匹配到作者的 GitHub 用户帐户,请确保在开始导入之前,仓库的每个贡献者都有 GitHub 帐户。 +If you'd like to match the commits in your repository to the authors' GitHub user accounts during the import, make sure every contributor to your repository has a GitHub account before you begin the import. {% data reusables.repositories.repo-size-limit %} -1. 在任何页面的右上角,单击 {% octicon "plus" aria-label="Plus symbol" %},然后单击 **Import repository(导入仓库)**。 ![新仓库菜单中的导入仓库选项](/assets/images/help/importer/import-repository.png) -2. 在 "Your old repository's clone URL"(您的旧仓库的克隆 URL)下,输入要导入的项目的 URL。 ![导入的仓库 URL 对应的文本字段](/assets/images/help/importer/import-url.png) -3. 选择拥有仓库的用户帐户或组织,然后输入 GitHub 上帐户的名称。 ![仓库所有者菜单和仓库名称字段](/assets/images/help/importer/import-repo-owner-name.png) -4. 指定新仓库是*公共*还是*私有*。 更多信息请参阅“[设置仓库可见性](/articles/setting-repository-visibility)”。 ![公共或私有仓库单选按钮](/assets/images/help/importer/import-public-or-private.png) -5. 检查您输入的信息,然后单击 **Begin import(开始导入)**。 ![开始导入按钮](/assets/images/help/importer/begin-import-button.png) -6. 如果您的旧项目有密码保护,请输入该项目的登录信息,然后单击 **Submit(提交)**。 ![有密码保护项目的密码表单和提交按钮](/assets/images/help/importer/submit-old-credentials-importer.png) -7. 如果有多个项目托管于旧项目的克隆 URL 上,请选择要导入的项目,然后单击 **Submit(提交)**。 ![要导入的项目列表和提交按钮](/assets/images/help/importer/choose-project-importer.png) -8. 如果项目包含超过 100 MB 的大文件,请选择是否使用 [Git Large File Storage](/articles/versioning-large-files) 导入大文件,然后单击 **Continue(继续)**。 ![Git Large File Storage 菜单和继续按钮](/assets/images/help/importer/select-gitlfs-importer.png) +1. In the upper-right corner of any page, click {% octicon "plus" aria-label="Plus symbol" %}, and then click **Import repository**. +![Import repository option in new repository menu](/assets/images/help/importer/import-repository.png) +2. Under "Your old repository's clone URL", type the URL of the project you want to import. +![Text field for URL of imported repository](/assets/images/help/importer/import-url.png) +3. Choose your user account or an organization to own the repository, then type a name for the repository on GitHub. +![Repository owner menu and repository name field](/assets/images/help/importer/import-repo-owner-name.png) +4. Specify whether the new repository should be *public* or *private*. For more information, see "[Setting repository visibility](/articles/setting-repository-visibility)." +![Public or private repository radio buttons](/assets/images/help/importer/import-public-or-private.png) +5. Review the information you entered, then click **Begin import**. +![Begin import button](/assets/images/help/importer/begin-import-button.png) +6. If your old project was protected by a password, type your login information for that project, then click **Submit**. +![Password form and Submit button for password-protected project](/assets/images/help/importer/submit-old-credentials-importer.png) +7. If there are multiple projects hosted at your old project's clone URL, choose the project you'd like to import, then click **Submit**. +![List of projects to import and Submit button](/assets/images/help/importer/choose-project-importer.png) +8. If your project contains files larger than 100 MB, choose whether to import the large files using [Git Large File Storage](/articles/versioning-large-files), then click **Continue**. +![Git Large File Storage menu and Continue button](/assets/images/help/importer/select-gitlfs-importer.png) -在仓库完成导入时,您会收到一封电子邮件。 +You'll receive an email when the repository has been completely imported. -## 延伸阅读 +## Further reading -- "[使用 GitHub 导入工具更新提交作者属性](/articles/updating-commit-author-attribution-with-github-importer)" +- "[Updating commit author attribution with GitHub Importer](/articles/updating-commit-author-attribution-with-github-importer)" diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md index d6537134f3..b4936814c0 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/index.md @@ -1,11 +1,11 @@ --- -title: 将源代码导入到 GitHub -intro: '您可以使用 {% ifversion fpt %}GitHub 导入工具、命令行、{% else %}命令行{% endif %}或外部迁移工具将仓库导入到 GitHub。' +title: Importing source code to GitHub +intro: 'You can import repositories to GitHub using {% ifversion fpt %}GitHub Importer, the command line,{% else %}the command line{% endif %} or external migration tools.' redirect_from: - - /articles/importing-an-external-git-repository/ - - /articles/importing-from-bitbucket/ - - /articles/importing-an-external-git-repo/ - - /articles/importing-your-project-to-github/ + - /articles/importing-an-external-git-repository + - /articles/importing-from-bitbucket + - /articles/importing-an-external-git-repo + - /articles/importing-your-project-to-github - /articles/importing-source-code-to-github versions: fpt: '*' @@ -19,6 +19,6 @@ children: - /importing-a-git-repository-using-the-command-line - /adding-an-existing-project-to-github-using-the-command-line - /source-code-migration-tools -shortTitle: 导入代码到 GitHub +shortTitle: Import code to GitHub --- diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md index a0f5d7dae2..eaf2788967 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/importing-source-code-to-github/source-code-migration-tools.md @@ -1,8 +1,8 @@ --- -title: 源代码迁移工具 -intro: 您可以使用外部工具将项目移动到 GitHub。 +title: Source code migration tools +intro: You can use external tools to move your projects to GitHub. redirect_from: - - /articles/importing-from-subversion/ + - /articles/importing-from-subversion - /articles/source-code-migration-tools - /github/importing-your-projects-to-github/source-code-migration-tools versions: @@ -10,49 +10,48 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: 代码迁移工具 +shortTitle: Code migration tools --- - {% ifversion fpt or ghec %} -我们建议使用 [GitHub 导入工具](/articles/about-github-importer)从 Subversion、Mercurial、Team Foundation Version Control (TFVC) 或其他 Git 仓库导入项目。 您还可以使用这些外部工具将项目转换为 Git。 +We recommend using [GitHub Importer](/articles/about-github-importer) to import projects from Subversion, Mercurial, Team Foundation Version Control (TFVC), or another Git repository. You can also use these external tools to convert your project to Git. {% endif %} -## 从 Subversion 导入 +## Importing from Subversion -在典型 Subversion 环境中,多个项目存储在一个根仓库中。 在 GitHub 上,这些项目的每一个通常都将映射到用户帐户或组织的单独 Git 仓库。 以下情况时,我们建议将 Subversion 仓库的每一部分导入到单独的 GitHub 仓库: +In a typical Subversion environment, multiple projects are stored in a single root repository. On GitHub, each of these projects will usually map to a separate Git repository for a user account or organization. We suggest importing each part of your Subversion repository to a separate GitHub repository if: -* 协作者需要检出或提交到独立于项目其他部分的部分 -* 您想要不同的部分有其自己的访问权限 +* Collaborators need to check out or commit to that part of the project separately from the other parts +* You want different parts to have their own access permissions -我们建议使用以下工具将 Subversion 仓库转换为 Git: +We recommend these tools for converting Subversion repositories to Git: - [`git-svn`](https://git-scm.com/docs/git-svn) - [svn2git](https://github.com/nirvdrum/svn2git) -## 从 Mercurial 导入 +## Importing from Mercurial -我们建议使用 [hg-fast-export](https://github.com/frej/fast-export) 将 Mercurial 仓库转换为 Git。 +We recommend [hg-fast-export](https://github.com/frej/fast-export) for converting Mercurial repositories to Git. -## 从 TFVC 导入 +## Importing from TFVC -我们建议 [git-tfs](https://github.com/git-tfs/git-tfs) 用于在TFVC 和 Git 之间移动更改。 +We recommend [git-tfs](https://github.com/git-tfs/git-tfs) for moving changes between TFVC and Git. For more information about moving from TFVC (a centralized version control system) to Git, see "[Plan your Migration to Git](https://docs.microsoft.com/devops/develop/git/centralized-to-git)" from the Microsoft docs site. {% tip %} -**提示:**在成功地将项目转换为 Git 后,您可以[将其推送到 {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/)。 +**Tip:** After you've successfully converted your project to Git, you can [push it to {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/pushing-commits-to-a-remote-repository/). {% endtip %} {% ifversion fpt or ghec %} -## 延伸阅读 +## Further reading -- “[关于 GitHub 导入工具](/articles/about-github-importer)” -- "[使用 GitHub 导入工具导入仓库](/articles/importing-a-repository-with-github-importer)" +- "[About GitHub Importer](/articles/about-github-importer)" +- "[Importing a repository with GitHub Importer](/articles/importing-a-repository-with-github-importer)" - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}) {% endif %} diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/index.md b/translations/zh-CN/content/github/importing-your-projects-to-github/index.md index 13d43dd550..b2db417ddf 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/index.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/index.md @@ -1,10 +1,10 @@ --- -title: 将项目导入到 GitHub -intro: '您可以使用多种不同方法将源代码导入到 {% data variables.product.product_name %}。' -shortTitle: 导入项目 +title: Importing your projects to GitHub +intro: 'You can import your source code to {% data variables.product.product_name %} using a variety of different methods.' +shortTitle: Importing your projects redirect_from: - - /categories/67/articles/ - - /categories/importing/ + - /categories/67/articles + - /categories/importing - /categories/importing-your-projects-to-github versions: fpt: '*' diff --git a/translations/zh-CN/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md b/translations/zh-CN/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md index 894dbb34aa..21d7ded6ac 100644 --- a/translations/zh-CN/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md +++ b/translations/zh-CN/content/github/importing-your-projects-to-github/working-with-subversion-on-github/what-are-the-differences-between-subversion-and-git.md @@ -1,20 +1,19 @@ --- -title: Subversion 和 Git 有哪些区别? -intro: Subversion (SVN) 仓库与 Git 仓库类似,但涉及项目架构时有一些区别。 +title: What are the differences between Subversion and Git? +intro: 'Subversion (SVN) repositories are similar to Git repositories, but there are several differences when it comes to the architecture of your projects.' redirect_from: - - /articles/what-are-the-differences-between-svn-and-git/ + - /articles/what-are-the-differences-between-svn-and-git - /articles/what-are-the-differences-between-subversion-and-git - /github/importing-your-projects-to-github/what-are-the-differences-between-subversion-and-git versions: fpt: '*' ghes: '*' ghec: '*' -shortTitle: Subversion 与 Git 差异 +shortTitle: Subversion & Git differences --- +## Directory structure -## 目录结构 - -项目中的每个*引用*或标记的提交快照均在特定子目录中组织,例如 `trunk`、`branches` 和 `tags`。 例如,具有两项正在开发的功能的 SVN 项目可能类似如下: +Each *reference*, or labeled snapshot of a commit, in a project is organized within specific subdirectories, such as `trunk`, `branches`, and `tags`. For example, an SVN project with two features under development might look like this: sample_project/trunk/README.md sample_project/trunk/lib/widget.rb @@ -23,48 +22,48 @@ shortTitle: Subversion 与 Git 差异 sample_project/branches/another_new_feature/README.md sample_project/branches/another_new_feature/lib/widget.rb -SVN 工作流程可能类似如下: +An SVN workflow looks like this: -* `trunk` 目录表示项目的最新稳定发行版。 -* 活动功能工作在 `branches` 下的子目录内进行开发。 -* 功能完成后,该功能目录将合并到 `trunk` 中并删除。 +* The `trunk` directory represents the latest stable release of a project. +* Active feature work is developed within subdirectories under `branches`. +* When a feature is finished, the feature directory is merged into `trunk` and removed. -Git 项目也存储在一个目录中。 不过,Git 通过将其引用存储在一个特殊的 *.git* 目录中来模糊其详细信息。 例如,具有两项正在开发的功能的 Git 项目可能类似如下: +Git projects are also stored within a single directory. However, Git obscures the details of its references by storing them in a special *.git* directory. For example, a Git project with two features under development might look like this: sample_project/.git sample_project/README.md sample_project/lib/widget.rb -Git 工作流程可能类似如下: +A Git workflow looks like this: -* Git 仓库在 *.git* 目录中存储所有其分支和标记的完整历史记录。 -* 最新稳定发行版包含在默认分支中。 -* 活动功能工作在单独的分支中进行开发。 -* 功能完成后,该功能分支将合并到默认分支中并删除。 +* A Git repository stores the full history of all of its branches and tags within the *.git* directory. +* The latest stable release is contained within the default branch. +* Active feature work is developed in separate branches. +* When a feature is finished, the feature branch is merged into the default branch and deleted. -与 SVN 不同的是,使用 Git 时目录结构保持不变,但文件内容会根据您的分支而变化。 +Unlike SVN, with Git the directory structure remains the same, but the contents of the files change based on your branch. -## 包括子项目 +## Including subprojects -*子项目*是在主项目之外的某个位置开发和管理的项目。 您通常导入子项目以将一些功能添加到您的项目,而无需自行维护代码。 每当子项目更新时,您可以将其与您的项目同步,以确保所有内容都是最新的。 +A *subproject* is a project that's developed and managed somewhere outside of your main project. You typically import a subproject to add some functionality to your project without needing to maintain the code yourself. Whenever the subproject is updated, you can synchronize it with your project to ensure that everything is up-to-date. -在 SVN 中,子项目称为 *SVN 外部*。 在 Git 中,它称为 *Git 子模块*。 尽管在概念上类似,但 Git 子模块不会自动保持最新状态;您必须明确要求才能将新版本带入您的项目。 +In SVN, a subproject is called an *SVN external*. In Git, it's called a *Git submodule*. Although conceptually similar, Git submodules are not kept up-to-date automatically; you must explicitly ask for a new version to be brought into your project. -更多信息请参阅 Git 文档中的“[Git 工具子模块](https://git-scm.com/book/en/Git-Tools-Submodules)”。 +For more information, see "[Git Tools Submodules](https://git-scm.com/book/en/Git-Tools-Submodules)" in the Git documentation. -## 保留历史记录 +## Preserving history -SVN 配置为假设项目的历史记录永不更改。 Git 允许您使用 [`git rebase`](/github/getting-started-with-github/about-git-rebase) 等工具修改以前的提交和更改。 +SVN is configured to assume that the history of a project never changes. Git allows you to modify previous commits and changes using tools like [`git rebase`](/github/getting-started-with-github/about-git-rebase). {% tip %} -[GitHub 支持 Subversion 客户端](/articles/support-for-subversion-clients),如果您在同一项目内同时使用 Git 和 SVN,可能会产生一些意外的结果。 如果您操纵了 Git 的提交历史记录,这些相同的提交在 SVN 的历史记录中将始终保留。 如果意外提交了一些敏感数据,我们有[一篇文章可帮助您将其从 Git 的历史中删除](/articles/removing-sensitive-data-from-a-repository)。 +[GitHub supports Subversion clients](/articles/support-for-subversion-clients), which may produce some unexpected results if you're using both Git and SVN on the same project. If you've manipulated Git's commit history, those same commits will always remain within SVN's history. If you accidentally committed some sensitive data, we have [an article that will help you remove it from Git's history](/articles/removing-sensitive-data-from-a-repository). {% endtip %} -## 延伸阅读 +## Further reading -- “[GitHub 支持的 Subversion 属性](/articles/subversion-properties-supported-by-github)” -- [_Git SCM_ 书籍中的“分支与合并”](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) -- “[将源代码导入到 GitHub](/articles/importing-source-code-to-github)” -- "[源代码迁移工具](/articles/source-code-migration-tools)" +- "[Subversion properties supported by GitHub](/articles/subversion-properties-supported-by-github)" +- ["Branching and Merging" from the _Git SCM_ book](https://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging) +- "[Importing source code to GitHub](/articles/importing-source-code-to-github)" +- "[Source code migration tools](/articles/source-code-migration-tools)" diff --git a/translations/zh-CN/content/github/index.md b/translations/zh-CN/content/github/index.md index b8c5e0a166..25aee3d946 100644 --- a/translations/zh-CN/content/github/index.md +++ b/translations/zh-CN/content/github/index.md @@ -1,9 +1,9 @@ --- title: GitHub redirect_from: - - /articles/ - - /common-issues-and-questions/ - - /troubleshooting-common-issues/ + - /articles + - /common-issues-and-questions + - /troubleshooting-common-issues intro: 'Documentation, guides, and help topics for software developers, designers, and project managers. Covers using Git, pull requests, issues, wikis, gists, and everything you need to make the most of GitHub for development.' versions: fpt: '*' diff --git a/translations/zh-CN/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md b/translations/zh-CN/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md index 846cd7bfbf..3bfef628dd 100644 --- a/translations/zh-CN/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md +++ b/translations/zh-CN/content/github/site-policy/coordinated-disclosure-of-security-vulnerabilities.md @@ -1,8 +1,8 @@ --- title: Coordinated Disclosure of Security Vulnerabilities redirect_from: - - /responsible-disclosure/ - - /coordinated-disclosure/ + - /responsible-disclosure + - /coordinated-disclosure - /articles/responsible-disclosure-of-security-vulnerabilities - /site-policy/responsible-disclosure-of-security-vulnerabilities versions: @@ -11,11 +11,10 @@ topics: - Policy - Legal --- +We want to keep GitHub safe for everyone. If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. -我们希望每个人都能安全地使用 GitHub。 If you've discovered a security vulnerability in GitHub, we appreciate your help in disclosing it to us in a coordinated manner. +## Bounty Program -## 赏金计划 +Like several other large software companies, GitHub provides a bug bounty to better engage with security researchers. The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. Then, to recognize the significant effort that these researchers often put forth when hunting down bugs, we reward them with some cold hard cash. -为更好地吸引安全研究人员参与,GitHub 也像其他一些大型软件公司一样提供漏洞赏金。 The idea is simple: hackers and security researchers (like you) find and report vulnerabilities through our coordinated disclosure process. 然后,为了认可这些研究人员在寻找漏洞时付出的巨大努力,我们用一些真金白银奖励他们。 - -请查看 [GitHub 漏洞赏金](https://bounty.github.com)站点了解赏金详情,并阅读我们全面的[法律安全港政策](/articles/github-bug-bounty-program-legal-safe-harbor)条款,我们期待您大展身手! +Check out the [GitHub Bug Bounty](https://bounty.github.com) site for bounty details, review our comprehensive [Legal Safe Harbor Policy](/articles/github-bug-bounty-program-legal-safe-harbor) terms as well, and happy hunting! diff --git a/translations/zh-CN/content/github/site-policy/dmca-takedown-policy.md b/translations/zh-CN/content/github/site-policy/dmca-takedown-policy.md index 44b7a11ce5..05d313d7f4 100644 --- a/translations/zh-CN/content/github/site-policy/dmca-takedown-policy.md +++ b/translations/zh-CN/content/github/site-policy/dmca-takedown-policy.md @@ -1,10 +1,10 @@ --- -title: DMCA 删除政策 +title: DMCA Takedown Policy redirect_from: - - /dmca/ - - /dmca-takedown/ - - /dmca-takedown-policy/ - - /articles/dmca-takedown/ + - /dmca + - /dmca-takedown + - /dmca-takedown-policy + - /articles/dmca-takedown - /articles/dmca-takedown-policy versions: fpt: '*' @@ -13,105 +13,105 @@ topics: - Legal --- -欢迎阅读 GitHub 的《千禧年数字版权法案》(通常称为 "DMCA")指南。 本页面并非该法案的综合入门读物。 但是,如果您收到针对您在 GitHub 上所发布内容的 DMCA 删除通知,或者您是要发出此类通知的权利持有者,此页面将有助于您了解该法案以及我们遵守该法案的政策。 +Welcome to GitHub's Guide to the Digital Millennium Copyright Act, commonly known as the "DMCA." This page is not meant as a comprehensive primer to the statute. However, if you've received a DMCA takedown notice targeting content you've posted on GitHub or if you're a rights-holder looking to issue such a notice, this page will hopefully help to demystify the law a bit as well as our policies for complying with it. -(如果只想提交通知,您可以跳到“[G. 提交通告](#g-submitting-notices)。”) +(If you just want to submit a notice, you can skip to "[G. Submitting Notices](#g-submitting-notices).") -与所有法律事务一样,就您的具体问题或情况咨询专业人员始终是最好的方式。 我们强烈建议您在采取任何可能影响您权利的行动之前这样做。 本指南不是法律意见,也不应作为法律意见。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## 什么是 DMCA? +## What Is the DMCA? -要了解 DMCA 及其制定的一些政策方针,考虑一下它颁布之前的现实情况,或许有助于理解。 +In order to understand the DMCA and some of the policy lines it draws, it's perhaps helpful to consider life before it was enacted. -DMCA 为托管用户生成内容的服务提供商提供了安全港。 仅仅一项侵犯版权的索赔就可能导致高达 150,000 美元的法定赔偿,因此,对用户生成的内容承担责任可能对服务提供商非常不利。 如果面向数以百万计的用户,这种潜在损失将不可估量,可以说,假如没有 DMCA,则 YouTube、Facebook 或 GitHub 等云计算和用户生成内容的网站可能就[不会存在](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/)(或者至少会将部分成本转嫁给用户)。 +The DMCA provides a safe harbor for service providers that host user-generated content. Since even a single claim of copyright infringement can carry statutory damages of up to $150,000, the possibility of being held liable for user-generated content could be very harmful for service providers. With potential damages multiplied across millions of users, cloud-computing and user-generated content sites like YouTube, Facebook, or GitHub probably [never would have existed](https://arstechnica.com/tech-policy/2015/04/how-the-dmca-made-youtube/) without the DMCA (or at least not without passing some of that cost downstream to their users). -DMCA 通过为托管涉嫌侵权用户生成内容的互联网服务提供商建立[版权责任安全港](https://www.copyright.gov/title17/92chap5.html#512),解决了这一问题。 从本质上讲,只要服务提供商遵守 DMCA 的通知和删除规则,就不会对基于用户生成内容的侵权行为承担责任。 因此,对 GitHub 而言,保持其 DMCA 安全港状态非常重要。 +The DMCA addresses this issue by creating a [copyright liability safe harbor](https://www.copyright.gov/title17/92chap5.html#512) for internet service providers hosting allegedly infringing user-generated content. Essentially, so long as a service provider follows the DMCA's notice-and-takedown rules, it won't be liable for copyright infringement based on user-generated content. Because of this, it is important for GitHub to maintain its DMCA safe-harbor status. -DMCA 还禁止[规避技术措施](https://www.copyright.gov/title17/92chap12.html),以有效控制访问受版权保护的作品。 +The DMCA also prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. -## DMCA 通知概述 +## DMCA Notices In a Nutshell -DMCA 规定了两个简单直接的程序,所有 GitHub 用户都应了解:(i) 版权持有者要求删除内容的[删除通知](/articles/guide-to-submitting-a-dmca-takedown-notice)程序;(ii) 内容被误删时用户要求恢复内容的[反通知](/articles/guide-to-submitting-a-dmca-counter-notice)程序。 +The DMCA provides two simple, straightforward procedures that all GitHub users should know about: (i) a [takedown-notice](/articles/guide-to-submitting-a-dmca-takedown-notice) procedure for copyright holders to request that content be removed; and (ii) a [counter-notice](/articles/guide-to-submitting-a-dmca-counter-notice) procedure for users to get content re-enabled when content is taken down by mistake or misidentification. -DMCA [删除通知](/articles/guide-to-submitting-a-dmca-takedown-notice)供版权所有者用于要求 GitHub 删除他们认为侵权的内容。 如果您是软件设计师或开发者,可能每天都会创建版权内容。 如果其他人以未经授权的方式在 GitHub 上使用您的版权内容,您可以向我们发送 DMCA 删除通知,要求更改或删除侵权内容。 +DMCA [takedown notices](/articles/guide-to-submitting-a-dmca-takedown-notice) are used by copyright owners to ask GitHub to take down content they believe to be infringing. If you are a software designer or developer, you create copyrighted content every day. If someone else is using your copyrighted content in an unauthorized manner on GitHub, you can send us a DMCA takedown notice to request that the infringing content be changed or removed. -另一方面,[反通知](/articles/guide-to-submitting-a-dmca-counter-notice)可用于纠正错误。 发送删除通知的人可能没有版权,或者没有意识到您拥有许可,或者在删除通知中犯了其他错误。 由于 GitHub 往往不知道通知是否有误,因此您可以通过 DMCA 反通知告诉我们并要求我们恢复内容。 +On the other hand, [counter notices](/articles/guide-to-submitting-a-dmca-counter-notice) can be used to correct mistakes. Maybe the person sending the takedown notice does not hold the copyright or did not realize that you have a license or made some other mistake in their takedown notice. Since GitHub usually cannot know if there has been a mistake, the DMCA counter notice allows you to let us know and ask that we put the content back up. -DMCA 通知和删除流程仅适用于有关侵犯版权的投诉。 通过我们 DMCA 流程发送的通知必须指明涉嫌侵权的版权作品。 此流程不能用于其他投诉,如有关涉嫌[商标侵权](/articles/github-trademark-policy/)或[敏感数据](/articles/github-sensitive-data-removal-policy/)的投诉;我们为这些情况另外提供了不同的流程。 +The DMCA notice and takedown process should be used only for complaints about copyright infringement. Notices sent through our DMCA process must identify copyrighted work or works that are allegedly being infringed. The process cannot be used for other complaints, such as complaints about alleged [trademark infringement](/articles/github-trademark-policy/) or [sensitive data](/articles/github-sensitive-data-removal-policy/); we offer separate processes for those situations. -## A. 此流程实际上是如何运作的? +## A. How Does This Actually Work? -DMCA 框架有点像课堂上传纸条。 版权所有者向 GitHub 提交对某个用户的投诉。 如果书写正确,我们会将该投诉转达给用户。 如果用户对投诉有异议,他们可以回传“纸条”表达异议。 除了确定通知是否符合 DMCA 的最低要求外,GitHub 在此过程中几乎不行使酌处权。 当事方(及其律师)应负责评估其投诉的合理性,并注意,此类通知受伪证处罚条款约束。 +The DMCA framework is a bit like passing notes in class. The copyright owner hands GitHub a complaint about a user. If it's written correctly, we pass the complaint along to the user. If the user disputes the complaint, they can pass a note back saying so. GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -以下是此流程的基本步骤。 +Here are the basic steps in the process. -1. **版权所有者调查。**版权所有者务必进行初步调查,以确认 (a) 他们拥有原始作品的版权,以及 (b) GitHub 上的内容未经授权且侵权。 这包括确认该使用不符合[合理使用](https://www.lumendatabase.org/topics/22)的条件。 如果特定使用符合以下条件,可能属于合理使用:只使用少量版权内容、以变换方式使用内容、用于教育目的或以上条件的某些组合。 由于代码本身适合于这些用途,但每个用例都有所不同,因此必须单独考虑。 -> **示例:**Acme Web Company 的一名员工在某个 GitHub 仓库中发现其公司的一些代码。 Acme Web Company 已将其源代码许可给几个受信任的合作伙伴。 在发出删除通知之前,Acme 应认真查看这些许可及其协议,以确认 GitHub 上的代码未在这些授权之列。 +1. **Copyright Owner Investigates.** A copyright owner should always conduct an initial investigation to confirm both (a) that they own the copyright to an original work and (b) that the content on GitHub is unauthorized and infringing. This includes confirming that the use is not protected as [fair use](https://www.lumendatabase.org/topics/22). A particular use may be fair if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +> **Example:** An employee of Acme Web Company finds some of the company's code in a GitHub repository. Acme Web Company licenses its source code out to several trusted partners. Before sending in a take-down notice, Acme should review those licenses and its agreements to confirm that the code on GitHub is not authorized under any of them. -2. **版权所有者发送通知。**进行调查后,版权所有者编写[删除通知](/articles/guide-to-submitting-a-dmca-takedown-notice)并将其发送到 GitHub。 如果根据法律要求,该删除通知足够详细(如[操作指南](/articles/guide-to-submitting-a-dmca-takedown-notice)中所述),我们会[将该通知发布](#d-transparency)到我们的[公共仓库](https://github.com/github/dmca)中,并将链接传送给受影响的用户。 +2. **Copyright Owner Sends A Notice.** After conducting an investigation, a copyright owner prepares and sends a [takedown notice](/articles/guide-to-submitting-a-dmca-takedown-notice) to GitHub. Assuming the takedown notice is sufficiently detailed according to the statutory requirements (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-takedown-notice)), we will [post the notice](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the link along to the affected user. -3. **GitHub 要求用户进行更改。**如果通知指出仓库或包的整个内容都侵权,我们将跳到步骤 6 并迅速禁用整个仓库或包。 否则,由于 GitHub 无法禁止访问仓库中的特定文件,我们将联系创建该仓库的用户,给他们 1 个工作日左右的时间来删除或修改通知中指定的内容。 如果我们给用户进行更改的机会,我们会通知版权所有者。 由于包是不可变的,如果只有包的一部分侵权,GitHub 将需要禁用整个包,但我们允许在删除侵权部分后恢复。 +3. **GitHub Asks User to Make Changes.** If the notice alleges that the entire contents of a repository infringe, or a package infringes, we will skip to Step 6 and disable the entire repository or package expeditiously. Otherwise, because GitHub cannot disable access to specific files within a repository, we will contact the user who created the repository and give them approximately 1 business day to delete or modify the content specified in the notice. We'll notify the copyright owner if and when we give the user a chance to make changes. Because packages are immutable, if only part of a package is infringing, GitHub would need to disable the entire package, but we permit reinstatement once the infringing portion is removed. -4. **用户向 GitHub 通知更改。**如果用户选择进行指定的更改,则*必须*在大约 1 个工作日内告知我们。 如果没有,我们将禁用仓库(如步骤 6 所述)。 如果用户通知我们已进行更改,我们将进行核实然后通知版权所有者。 +4. **User Notifies GitHub of Changes.** If the user chooses to make the specified changes, they *must* tell us so within the window of approximately 1 business day. If they don't, we will disable the repository (as described in Step 6). If the user notifies us that they made changes, we will verify that the changes have been made and then notify the copyright owner. -5. **版权所有者修改或撤回通知。**用户进行更改后,版权所有者必须进行审查,如果认为更改不充分,他们可以重申或修改其删除通知。 除非版权所有者联系我们以重申原删除通知或提交修改的通知,否则 GitHub 不会采取任何进一步行动。 如果版权所有者对更改感到满意,他们可以提交正式的撤回声明,或者什么都不做。 静默期超过两周,GitHub 将解释为默示撤回删除通知。 +5. **Copyright Owner Revises or Retracts the Notice.** If the user makes changes, the copyright owner must review them and renew or revise their takedown notice if the changes are insufficient. GitHub will not take any further action unless the copyright owner contacts us to either renew the original takedown notice or submit a revised one. If the copyright owner is satisfied with the changes, they may either submit a formal retraction or else do nothing. GitHub will interpret silence longer than two weeks as an implied retraction of the takedown notice. -6. **GitHub 可能禁止访问内容。**在以下情况下,GitHub 将禁用用户内容:(i) 版权所有者声称对用户整个仓库或包的内容都拥有版权(如步骤 3 所述);(ii) 用户在获得更改机会后没有进行任何更改(如步骤 4 所述);或 (iii) 版权所有者在用户有机会进行更改后重申了删除通知。 如果版权所有者选择*修改*通知,我们将回到步骤 2,将修改的通知当作新通知来重复这个流程。 +6. **GitHub May Disable Access to the Content.** GitHub will disable a user's content if: (i) the copyright owner has alleged copyright over the user's entire repository or package (as noted in Step 3); (ii) the user has not made any changes after being given an opportunity to do so (as noted in Step 4); or (iii) the copyright owner has renewed their takedown notice after the user had a chance to make changes. If the copyright owner chooses instead to *revise* the notice, we will go back to Step 2 and repeat the process as if the revised notice were a new notice. -7. **用户可发送反通知。**我们鼓励用户在其内容被禁用后就其选择权咨询律师。 如果用户认为其内容是由于错误或错误指认而被禁用,他们可以向我们发送[反通知](/articles/guide-to-submitting-a-dmca-counter-notice)。 与原通知一样,我们将确保反通知足够详细(如[操作指南](/articles/guide-to-submitting-a-dmca-counter-notice)中所述)。 如果是,我们会将其[发布](#d-transparency)到我们的[公共仓库](https://github.com/github/dmca),然后向版权所有者发送链接以传达该通知。 +7. **User May Send A Counter Notice.** We encourage users who have had content disabled to consult with a lawyer about their options. If a user believes that their content was disabled as a result of a mistake or misidentification, they may send us a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). As with the original notice, we will make sure that the counter notice is sufficiently detailed (as explained in the [how-to guide](/articles/guide-to-submitting-a-dmca-counter-notice)). If it is, we will [post it](#d-transparency) to our [public repository](https://github.com/github/dmca) and pass the notice back to the copyright owner by sending them the link. -8. **版权所有者可提出法律诉讼。**如果版权所有者在收到反通知后,希望继续禁用内容,则他们需要发起法律诉讼,寻求通过法院命令制止用户从事与 GitHub 上的内容相关的侵权活动。 也就是说,用户可能会被起诉。 如果版权所有者在 10-14 天内没有向 GitHub 发出通知(发送向主管法院提交的有效法律投诉的副本),GitHub 将重新启用被禁用的内容。 +8. **Copyright Owner May File a Legal Action.** If a copyright owner wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain the user from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued. If the copyright owner does not give GitHub notice within 10-14 days, by sending a copy of a valid legal complaint filed in a court of competent jurisdiction, GitHub will re-enable the disabled content. -## B. 复刻呢? (或如何处理复刻?) +## B. What About Forks? (or What's a Fork?) -GitHub 的最佳功能之一是用户能够“复刻”彼此的仓库。 这意味着什么? 从本质上讲,这意味着用户可以将 GitHub 上的项目复制到自己的仓库中。 在许可或法律允许的情况下,用户可以对复刻进行更改,然后将其推送到主项目或只保留为自己的项目变体。 每个此类副本都是原仓库的[复刻](/articles/github-glossary#fork),或者说原仓库也可以称为复刻的“父仓库”。 +One of the best features of GitHub is the ability for users to "fork" one another's repositories. What does that mean? In essence, it means that users can make a copy of a project on GitHub into their own repositories. As the license or the law allows, users can then make changes to that fork to either push back to the main project or just keep as their own variation of a project. Each of these copies is a "[fork](/articles/github-glossary#fork)" of the original repository, which in turn may also be called the "parent" of the fork. -GitHub 在禁用父仓库时*不会*自动禁用复刻。 这是因为复刻属于不同的用户,可能进行了重大更改,也可能获得了许可或者其使用方式符合合理使用原则。 GitHub 不会对复刻进行任何独立调查。 我们希望版权所有者进行这种调查,如果他们认为复刻也侵权,则应在其删除通知中明确包括这些复刻。 +GitHub *will not* automatically disable forks when disabling a parent repository. This is because forks belong to different users, may have been altered in significant ways, and may be licensed or used in a different way that is protected by the fair-use doctrine. GitHub does not conduct any independent investigation into forks. We expect copyright owners to conduct that investigation and, if they believe that the forks are also infringing, expressly include forks in their takedown notice. -在极少数情况下,您可能在正被复刻的完整仓库中指称侵权。 如果您在提交通知时发现该仓库的所有现有复刻涉嫌侵权,我们将在处理通知时处理对该网络中所有复刻的有效索赔。 我们这样做是考虑到所有新建复刻都可能包含相同的内容。 此外,如果所报告的包含涉嫌侵权内容的网络大于一百 (100) 个仓库,从而很难全面审查,并且您在通知中指出:“根据您审查的代表性复刻数量,我相信所有或大多数复刻的侵权程度与父仓库相同”,则我们可能会考虑禁用整个网络。 你的宣誓声明将适用于此声明。 +In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks I have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -## C. 规避索赔呢? +## C. What about Circumvention Claims? -DMCA 禁止[规避技术措施](https://www.copyright.gov/title17/92chap12.html),以有效控制访问受版权保护的作品。 鉴于这些类型的索赔往往技术性很强,GitHub 要求索赔人提供[关于这些索赔的详细信息](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology),我们进行了更广泛的审查。 +The DMCA prohibits the [circumvention of technical measures](https://www.copyright.gov/title17/92chap12.html) that effectively control access to works protected by copyright. Given that these types of claims are often highly technical in nature, GitHub requires claimants to provide [detailed information about these claims](/github/site-policy/guide-to-submitting-a-dmca-takedown-notice#complaints-about-anti-circumvention-technology), and we undertake a more extensive review. -规避索赔必须包括以下关于技术措施以及被告项目规避这些措施的方式的详细信息。 具体而言,给 GitHub 的通知必须包括详细的说明,描述: -1. 技术措施是什么; -2. 它们如何有效控制对受版权保护材料的访问;以及 -3. 被告项目是如何设计来规避他们以前描述的技术保护措施的。 +A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -GitHub 将仔细审查规避索赔,包括技术和法律专家提出的索赔要求。 在技术审查中,我们将设法核实有关技术保护措施的运作方式以及据称项目绕过这些措施的方式的细节。 在法律审查中,我们将设法确保索赔不超出 DMCA 的界限。 如果无法确定索赔是否有效,我们将在开发人员端进行错误检查,并且保留内容。 如果索赔人希望跟进更多细节,我们将重新开始审查进程,以评估经修订的索赔。 +GitHub will review circumvention claims closely, including by both technical and legal experts. In the technical review, we will seek to validate the details about the manner in which the technical protection measures operate and the way the project allegedly circumvents them. In the legal review, we will seek to ensure that the claims do not extend beyond the boundaries of the DMCA. In cases where we are unable to determine whether a claim is valid, we will err on the side of the developer, and leave the content up. If the claimant wishes to follow up with additional detail, we would start the review process again to evaluate the revised claims. -如果我们的专家确定索赔是完整、合法和技术上合法的,我们将联系仓库所有者,让他们有机会对索赔作出回应或更改仓库以避免撤除。 如果他们不回应,我们将尝试再次联系仓库所有者,然后再采取任何进一步的步骤。 换句话说,我们不会在未尝试联系存储库所有者以给他们先回应或更改机会的情况下,根据规避技术的主张直接禁用仓库。 如果我们无法通过先联系仓库所有者来解决问题,即使内容已禁用,如果他们希望有机会对索赔提出异议、向我们提交其他事实或进行更改以恢复内容,我们也始终乐于考虑仓库所有者的回应。 当我们需要禁用内容时,我们将在法律允许的范围内确保仓库所有者能够导出其议题,并提取不包含所谓的规避代码的其他仓库数据。 +Where our experts determine that a claim is complete, legal, and technically legitimate, we will contact the repository owner and give them a chance to respond to the claim or make changes to the repo to avoid a takedown. If they do not respond, we will attempt to contact the repository owner again before taking any further steps. In other words, we will not disable a repository based on a claim of circumvention technology without attempting to contact a repository owner to give them a chance to respond or make changes first. If we are unable to resolve the issue by reaching out to the repository owner first, we will always be happy to consider a response from the repository owner even after the content has been disabled if they would like an opportunity to dispute the claim, present us with additional facts, or make changes to have the content restored. When we need to disable content, we will ensure that repository owners can export their issues and pull requests and other repository data that do not contain the alleged circumvention code to the extent legally possible. -请注意,我们对规避技术的审查流程不适用于违反我们可接受使用政策限制的内容,禁止共享未经授权的产品许可密钥、生成未经授权的产品许可密钥的软件或绕过产品许可密钥检查的软件。 虽然这些类型的索赔也可能违反 DMCA 关于规避技术的规定,但这些索赔通常很简单,不需要额外的技术和法律审查。 然而,如果索赔并不简单,例如在越狱的情况下,规避技术索赔审查程序将适用。 +Please note, our review process for circumvention technology does not apply to content that would otherwise violate our Acceptable Use Policy restrictions against sharing unauthorized product licensing keys, software for generating unauthorized product licensing keys, or software for bypassing checks for product licensing keys. Although these types of claims may also violate the DMCA provisions on circumvention technology, these are typically straightforward and do not warrant additional technical and legal review. Nonetheless, where a claim is not straightforward, for example in the case of jailbreaks, the circumvention technology claim review process would apply. -当 GitHub 根据我们的规避技术索赔审查流程处理 DMCA 拆解时,我们将转介仓库所有者通过 [GitHub 的开发人员防御基金](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/)免费获得独立法律咨询。 +When GitHub processes a DMCA takedown under our circumvention technology claim review process, we will offer the repository owner a referral to receive independent legal consultation through [GitHub’s Developer Defense Fund](https://github.blog/2021-07-27-github-developer-rights-fellowship-stanford-law-school/) at no cost to them. -## D. 如果我无意中错过了更改时限怎么办? +## D. What If I Inadvertently Missed the Window to Make Changes? -我们知道,有许多现实原因导致您无法在我们禁用您的仓库之前提供的大约 1 个工作日时限内进行更改。 可能我们的邮件被标记为垃圾邮件,可能您正在度假,可能您不经常查看电子邮件帐户,或者您只是很忙。 我们理解。 如果您回复我们表示您愿意更改,但因为某些原因错过了第一次机会,我们会重新启用仓库,再次提供大约 1 个工作日的时间让您进行更改。 同样,要在大约 1 个工作日的时限之后让仓库保持启用状态,您必须在完成更改后通知我们,如上文的[步骤 A.4](#a-how-does-this-actually-work) 所述。 请注意,我们只提供这一次额外机会。 +We recognize that there are many valid reasons that you may not be able to make changes within the window of approximately 1 business day we provide before your repository gets disabled. Maybe our message got flagged as spam, maybe you were on vacation, maybe you don't check that email account regularly, or maybe you were just busy. We get it. If you respond to let us know that you would have liked to make the changes, but somehow missed the first opportunity, we will re-enable the repository one additional time for approximately 1 business day to allow you to make the changes. Again, you must notify us that you have made the changes in order to keep the repository enabled after that window of approximately 1 business day, as noted above in [Step A.4](#a-how-does-this-actually-work). Please note that we will only provide this one additional chance. -## E. 透明 +## E. Transparency -我们认为,透明是一种美德。 公众应该知道 GitHub 会删除哪些内容以及原因。 知情的公众可以注意到并发现那些在不透明系统中无法注意到的潜在问题。 我们会在 <https://github.com/github/dmca> 上发布我们收到的任何法律通知(包括原通知、反通知或撤回声明)的删节版。 我们不会公布您的个人联系信息;我们会在发布通知之前删除个人信息(URL 中用户名除外)。 但是我们不会删节通知中的任何其他信息,除非您明确要求我们删除。 以下是一些已发布的[通知](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md)和[反通知](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md)的示例,供您参考。 我们删除内容时,会在其位置发布指向相关通知的链接。 +We believe that transparency is a virtue. The public should know what content is being removed from GitHub and why. An informed public can notice and surface potential issues that would otherwise go unnoticed in an opaque system. We post redacted copies of any legal notices we receive (including original notices, counter notices or retractions) at <https://github.com/github/dmca>. We will not publicly publish your personal contact information; we will remove personal information (except for usernames in URLs) before publishing notices. We will not, however, redact any other information from your notice unless you specifically ask us to. Here are some examples of a published [notice](https://github.com/github/dmca/blob/master/2014/2014-05-28-Delicious-Brains.md) and [counter notice](https://github.com/github/dmca/blob/master/2014/2014-05-01-Pushwoosh-SDK-counternotice.md) for you to see what they look like. When we remove content, we will post a link to the related notice in its place. -另请注意,尽管我们不会公开发布未删节的通知,但我们可能会向权利受影响的任何相关方直接提供相关通知的完整未删节版。 +Please also note that, although we will not publicly publish unredacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. -## F. 屡次侵权 +## F. Repeated Infringement -GitHub 的政策是,在适当的情况下,自行决定禁用和终止可能侵犯 GitHub 或其他方的版权或其他知识产权的用户帐户。 +It is the policy of GitHub, in appropriate circumstances and in its sole discretion, to disable and terminate the accounts of users who may infringe upon the copyrights or other intellectual property rights of GitHub or others. -## G. 提交通知 +## G. Submitting Notices -如果您准备提交通知或反通知: -- [如何提交 DMCA 通知](/articles/guide-to-submitting-a-dmca-takedown-notice) -- [如何提交 DMCA 反通知](/articles/guide-to-submitting-a-dmca-counter-notice) +If you are ready to submit a notice or a counter notice: +- [How to Submit a DMCA Notice](/articles/guide-to-submitting-a-dmca-takedown-notice) +- [How to Submit a DMCA Counter Notice](/articles/guide-to-submitting-a-dmca-counter-notice) -## 深入了解并发表意见 +## Learn More and Speak Up -在互联网上随便逛一逛,就不难发现有关版权系统,特别是有关 DMCA 的评论和批评。 虽然 GitHub 承认并赞赏 DMCA 在促进在线创新方面发挥的重要作用,但我们认为,版权法或许需要打一两个补丁——如果不推出全新版本的话。 在软件方面,我们不断改进和更新我们的代码。 想想自 1998 年 DMCA 面世以来,技术的变化可谓翻天覆地。 更新这些适用于软件的法律难道不是理所当然的吗? +If you poke around the Internet, it is not too hard to find commentary and criticism about the copyright system in general and the DMCA in particular. While GitHub acknowledges and appreciates the important role that the DMCA has played in promoting innovation online, we believe that the copyright laws could probably use a patch or two—if not a whole new release. In software, we are constantly improving and updating our code. Think about how much technology has changed since 1998 when the DMCA was written. Doesn't it just make sense to update these laws that apply to software? -我们并不认为存在解答一切的魔方。 但如果您感兴趣,这里有一些学术文章和博客的链接,我们发现其中有不少关于改革的意见和建议: +We don't presume to have all the answers. But if you are curious, here are a few links to scholarly articles and blog posts we have found with opinions and proposals for reform: - [Unintended Consequences: Twelve Years Under the DMCA](https://www.eff.org/wp/unintended-consequences-under-dmca) (Electronic Frontier Foundation) - [Statutory Damages in Copyright Law: A Remedy in Need of Reform](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=1375604) (William & Mary Law Review) @@ -120,4 +120,4 @@ GitHub 的政策是,在适当的情况下,自行决定禁用和终止可能 - [Opportunities for Copyright Reform](https://www.cato-unbound.org/issues/january-2013/opportunities-copyright-reform) (Cato Unbound) - [Fair Use Doctrine and the Digital Millennium Copyright Act: Does Fair Use Exist on the Internet Under the DMCA?](https://digitalcommons.law.scu.edu/lawreview/vol42/iss1/6/) (Santa Clara Law Review) -GitHub 不一定支持这些文章中的任何观点。 我们提供链接的目的是鼓励您了解更多信息,形成自己的观点,然后联系您选举的代表(例如[美国 国会](https://www.govtrack.us/congress/members)或[欧盟 议会](https://www.europarl.europa.eu/meps/en/home)的官员),以求实现您认为应该进行的任何更改。 +GitHub doesn't necessarily endorse any of the viewpoints in those articles. We provide the links to encourage you to learn more, form your own opinions, and then reach out to your elected representative(s) (e.g, in the [U.S. Congress](https://www.govtrack.us/congress/members) or [E.U. Parliament](https://www.europarl.europa.eu/meps/en/home)) to seek whatever changes you think should be made. diff --git a/translations/zh-CN/content/github/site-policy/github-community-guidelines.md b/translations/zh-CN/content/github/site-policy/github-community-guidelines.md index 8215f39167..7011d661da 100644 --- a/translations/zh-CN/content/github/site-policy/github-community-guidelines.md +++ b/translations/zh-CN/content/github/site-policy/github-community-guidelines.md @@ -1,7 +1,7 @@ --- -title: GitHub 社区指导方针 +title: GitHub Community Guidelines redirect_from: - - /community-guidelines/ + - /community-guidelines - /articles/github-community-guidelines versions: fpt: '*' @@ -10,99 +10,110 @@ topics: - Legal --- -数百万开发者在 GitHub 上托管了数百万个项目,包括开源和闭源项目,我们很荣幸能够为促进社区的日常协作发挥作用。 走在一起,我们都有机会和责任让这个社区成为我们值得骄傲的地方。 +Millions of developers host millions of projects on GitHub — both open and closed source — and we're honored to play a part in enabling collaboration across the community every day. Together, we all have an exciting opportunity and responsibility to make this a community we can be proud of. -GitHub 的用户来自世界各地,有上周才创建其第一个 "Hello World" 项目的新人,也有享誉全球的软件开发高手,他们带来了各种不同的观点、想法和经验。 我们致力于让 GitHub 成为一个海纳百川的环境,接纳各种不同的声音和观点,打造一个所有人都能畅所欲言的空间。 +GitHub users worldwide bring wildly different perspectives, ideas, and experiences, and range from people who created their first "Hello World" project last week to the most well-known software developers in the world. We are committed to making GitHub a welcoming environment for all the different voices and perspectives in our community, while maintaining a space where people are free to express themselves. -我们依靠社区成员传达期望、[仲裁](#what-if-something-or-someone-offends-you)他们的项目以及{% data variables.contact.report_abuse %}或{% data variables.contact.report_content %}。 通过概述我们期望社区内出现的情况,我们希望帮助您理解如何在 GitHub 上进行最佳的协作,以及哪种操作或内容可能违反我们的[服务条款](#legal-notices),包括我们的[可接受使用政策](/github/site-policy/github-acceptable-use-policies)。 我们将调查任何滥用举报,并且可能在我们的网站上仲裁我们确定违反了 GitHub 服务条款的公共内容。 +We rely on our community members to communicate expectations, [moderate](#what-if-something-or-someone-offends-you) their projects, and {% data variables.contact.report_abuse %} or {% data variables.contact.report_content %}. By outlining what we expect to see within our community, we hope to help you understand how best to collaborate on GitHub, and what type of actions or content may violate our [Terms of Service](#legal-notices), which include our [Acceptable Use Policies](/github/site-policy/github-acceptable-use-policies). We will investigate any abuse reports and may moderate public content on our site that we determine to be in violation of our Terms of Service. -## 建立强大的社区 +## Building a strong community -GitHub 社区的主要目的是协作处理软件项目。 我们希望人们能够更好地协作。 虽然我们维护网站,但这实际上是我们一起构建的*社区*,我们需要大家共同将其打造成最好的工具。 +The primary purpose of the GitHub community is to collaborate on software projects. +We want people to work better together. Although we maintain the site, this is a community we build *together*, and we need your help to make it the best it can be. -* **包容开放** - 其他协作的经验水平或背景可能与您不同,但这并不意味着他们不能贡献好的想法。 鼓励大家欢迎新的协作者和刚入门的新手。 +* **Be welcoming and open-minded** - Other collaborators may not have the same experience level or background as you, but that doesn't mean they don't have good ideas to contribute. We encourage you to be welcoming to new collaborators and those just getting started. -* **互相尊重。**粗鲁是正常对话的天敌。 保持礼貌和专业,不要发表被理性的人视为冒犯、侮辱或仇恨的言论。 不要骚扰或打击任何人。 在所有互动中应互相尊重和体谅。 +* **Respect each other.** Nothing sabotages healthy conversation like rudeness. Be civil and professional, and don’t post anything that a reasonable person would consider offensive, abusive, or hate speech. Don’t harass or grief anyone. Treat each other with dignity and consideration in all interactions. - 您可能要发表反对的意见。 没问题。 但请记住,您的批评要对事不对人。 不要说脏话、人身攻击、纠结于帖子的语气而罔顾其实际内容或制造下意识的矛盾。 而应该提供合理的反驳论据,保持友善的对话。 + You may wish to respond to something by disagreeing with it. That’s fine. But remember to criticize ideas, not people. Avoid name-calling, ad hominem attacks, responding to a post’s tone instead of its actual content, and knee-jerk contradiction. Instead, provide reasoned counter-arguments that improve the conversation. -* **共情沟通** - 意见相左或分歧是生活中的常态。 作为社区的一部分,意味着您要与各种背景和观点的人互动,其中许多人的观点可能与您不同。 如果您不同意某人的观点,请先试图理解他们并体会他们的情感,然后再发表意见。 这将有助于营造尊重和友好的氛围,让人舒适自在地提出问题、参与讨论和做出贡献。 +* **Communicate with empathy** - Disagreements or differences of opinion are a fact of life. Being part of a community means interacting with people from a variety of backgrounds and perspectives, many of which may not be your own. If you disagree with someone, try to understand and share their feelings before you address them. This will promote a respectful and friendly atmosphere where people feel comfortable asking questions, participating in discussions, and making contributions. -* **清楚明确,紧扣主题** - 人们使用 GitHub 的目的是完成工作和提高效率。 脱离主题的评论对于完成工作和取得成效是一种干扰(有时可能受欢迎,但这种情况很少)。 紧扣主题有助于产生积极和富有成效的讨论。 +* **Be clear and stay on topic** - People use GitHub to get work done and to be more productive. Off-topic comments are a distraction (sometimes welcome, but usually not) from getting work done and being productive. Staying on topic helps produce positive and productive discussions. - 此外,在互联网上与陌生人交流可能并不容易。 很难传达或读懂语气,容易被误解为嘲讽。 尽可能清晰表达,并考虑其他人如何理解您的表达。 + Additionally, communicating with strangers on the Internet can be awkward. It's hard to convey or read tone, and sarcasm is frequently misunderstood. Try to use clear language, and think about how it will be received by the other person. -## 如果某事或某人冒犯您会怎么样? +## What if something or someone offends you? -我们通过社区来了解何时需要解决问题。 我们不主动监控网站上的冒犯性内容。 如果您发现网站上有您反感的某事或某人,GitHub 提供了以下工具帮助您立即采取行动: +We rely on the community to let us know when an issue needs to be addressed. We do not actively monitor the site for offensive content. If you run into something or someone on the site that you find objectionable, here are some tools GitHub provides to help you take action immediately: -* **传达期望** - 如果您参与一个没有设置其社区特定指南的社区,请提交拉取请求来建议他们在 README 或 [CONTRIBUTING 文件](/articles/setting-guidelines-for-repository-contributors/)中说明, 或者在[专用行为守则](/articles/adding-a-code-of-conduct-to-your-project/)中规定。 +* **Communicate expectations** - If you participate in a community that has not set their own, community-specific guidelines, encourage them to do so either in the README or [CONTRIBUTING file](/articles/setting-guidelines-for-repository-contributors/), or in [a dedicated code of conduct](/articles/adding-a-code-of-conduct-to-your-project/), by submitting a pull request. -* **仲裁评论** - 如果您对仓库拥有 [写入权限](/articles/repository-permission-levels-for-an-organization/),则可以编辑、删除或隐藏任何人对提交、拉取请求和议题的评论。 对仓库具有读取权限的任何人都可查看评论的编辑历史记录。 评论作者和具有仓库写入权限的人员可以删除评论编辑历史记录中的敏感信息。 更多信息请参阅“[追踪评论中的变化](/articles/tracking-changes-in-a-comment)”和“[管理破坏性评论](/articles/managing-disruptive-comments)”。 +* **Moderate Comments** - If you have [write-access privileges](/articles/repository-permission-levels-for-an-organization/) for a repository, you can edit, delete, or hide anyone's comments on commits, pull requests, and issues. Anyone with read access to a repository can view a comment's edit history. Comment authors and people with write access to a repository can delete sensitive information from a comment's edit history. For more information, see "[Tracking changes in a comment](/articles/tracking-changes-in-a-comment)" and "[Managing disruptive comments](/articles/managing-disruptive-comments)." -* **锁定对话**- 如果某个议题或拉取请求中的讨论失控,您可以[锁定对话](/articles/locking-conversations/)。 +* **Lock Conversations**  - If a discussion in an issue or pull request gets out of control, you can [lock the conversation](/articles/locking-conversations/). -* **阻止用户** - 如果您遇到一个连续表现出不良行为的用户,可以[阻止该用户访问您的个人帐户](/articles/blocking-a-user-from-your-personal-account/)或[阻止该用户访问您的组织](/articles/blocking-a-user-from-your-organization/)。 +* **Block Users**  - If you encounter a user who continues to demonstrate poor behavior, you can [block the user from your personal account](/articles/blocking-a-user-from-your-personal-account/) or [block the user from your organization](/articles/blocking-a-user-from-your-organization/). -当然,如果您需要更多关于处理某种情况的帮助,可随时联系我们以{% data variables.contact.report_abuse %}。 +Of course, you can always contact us to {% data variables.contact.report_abuse %} if you need more help dealing with a situation. -## 不允许什么? +## What is not allowed? -我们致力于维持一个用户能够自由表达意见并对彼此想法(包括技术和其他方面)提出挑战的社区。 但当思想被压制时,这种讨论不可能促进富有成果的对话,因为因为社区成员被禁声或害怕说出来。 因此,您应该始终尊重他人,言行文明,不要对他人有任何人身攻击以谁为由攻击他人。 我们不容忍以下越界行为: +We are committed to maintaining a community where users are free to express themselves and challenge one another's ideas, both technical and otherwise. Such discussions, however, are unlikely to foster fruitful dialog when ideas are silenced because community members are being shouted down or are afraid to speak up. That means you should be respectful and civil at all times, and refrain from attacking others on the basis of who they are. We do not tolerate behavior that crosses the line into the following: -- #### 暴力威胁 不得暴力威胁他人,也不得利用网站组织、宣传或煽动现实世界中的暴力或恐怖主义行为。 仔细考虑您使用的文字、发布的图像、编写的软件以及其他人会如何解读它们。 即使您只是开个玩笑,但别人不见得这样理解。 如果您认为别人*可能*会将您发布的内容解读为威胁或者煽动暴力或恐怖主义, 不要在 GitHub 上发布。 在非常情况下, 如果我们认为可能存在真正的人身伤害风险或公共安全威胁,我们可能会向执法机构报告暴力威胁。 +- #### Threats of violence + You may not threaten violence towards others or use the site to organize, promote, or incite acts of real-world violence or terrorism. Think carefully about the words you use, the images you post, and even the software you write, and how they may be interpreted by others. Even if you mean something as a joke, it might not be received that way. If you think that someone else *might* interpret the content you post as a threat, or as promoting violence or terrorism, stop. Don't post it on GitHub. In extraordinary cases, we may report threats of violence to law enforcement if we think there may be a genuine risk of physical harm or a threat to public safety. -- ####仇恨言论和歧视 虽然不禁止谈论年龄、身材、能力、种族、性别认同和表达、经验水平、国籍、外貌、民族、宗教或性认同和性取向等话题,但我们不允许基于身份特征攻击任何个人或群体。 只要认识到以一种侵略性或侮辱性的方式处理这些(及其他)敏感的专题,就可能使其他人感到不受欢迎甚至不安全。 虽然总是存在误解的可能性,但我们期望社区成员在讨论敏感问题时保持尊重和平静。 +- #### Hate speech and discrimination + While it is not forbidden to broach topics such as age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation, we do not tolerate speech that attacks a person or group of people on the basis of who they are. Just realize that when approached in an aggressive or insulting manner, these (and other) sensitive topics can make others feel unwelcome, or perhaps even unsafe. While there's always the potential for misunderstandings, we expect our community members to remain respectful and civil when discussing sensitive topics. -- #### 欺凌和骚扰 我们不容忍欺凌或骚扰。 这意味着我们不允许针对任何特定个人或群体的典型骚扰或恐吓行为。 一般来说,如果您屡次三番采取多余的行动,就很可能走进了欺凌或骚扰的歧途。 +- #### Bullying and harassment + We do not tolerate bullying or harassment. This means any habitual badgering or intimidation targeted at a specific person or group of people. In general, if your actions are unwanted and you continue to engage in them, there's a good chance you are headed into bullying or harassment territory. -- ### 破坏其他用户的体验 成为社区的一部分包括认识到您的行为如何影响他人,并与他人及其依赖的平台进行有意义和富有成效的互动。 不允许重复发布与主题无关的评论、开启空洞或无意义的议题或拉取请求,或者以不断破坏其他用户体验的方式使用任何其他平台功能等行为。 虽然我们鼓励维护人员根据个别情况调整自己的项目,但 GitHub 员工可能会对从事此类行为的帐户采取进一步的限制措施。 +- #### Disrupting the experience of other users + Being part of a community includes recognizing how your behavior affects others and engaging in meaningful and productive interactions with people and the platform they rely on. Behaviors such as repeatedly posting off-topic comments, opening empty or meaningless issues or pull requests, or using any other platform feature in a way that continually disrupts the experience of other users are not allowed. While we encourage maintainers to moderate their own projects on an individual basis, GitHub staff may take further restrictive action against accounts that are engaging in these types of behaviors. -- #### 冒充 不得冒充他人,包括复制他人的头像、使用他人的电子邮件地址发布内容、使用相似用户名或其他冒充方式。 冒充是骚扰的一种形式。 +- #### Impersonation + You may not impersonate another person by copying their avatar, posting content under their email address, using a similar username or otherwise posing as someone else. Impersonation is a form of harassment. -- #### 人肉和侵犯隐私 不得发布他人的个人信息,例如个人、私人电子邮件地址、电话号码、实际地址、信用卡号码、社会保障/国民身份号码或密码。 根据具体情况,例如在恐吓或骚扰的情况下,我们可能会认为发布他人信息(例如未经当事人同意而拍摄或散发的照片或视频)是侵犯隐私的行为,特别是当此类材料会给当事人带来安全风险时。 +- #### Doxxing and invasion of privacy + Don't post other people's personal information, such as personal, private email addresses, phone numbers, physical addresses, credit card numbers, Social Security/National Identity numbers, or passwords. Depending on the context, such as in the case of intimidation or harassment, we may consider other information, such as photos or videos that were taken or distributed without the subject's consent, to be an invasion of privacy, especially when such material presents a safety risk to the subject. -- #### 性淫秽内容 不得发布色情内容。 但这并不意味着禁止一切裸体或与性有关的所有代码和内容。 我们认识到,性行为是生活的一部分,非色情的性内容可能是您项目的一部分,或者出于教育或艺术目的而呈现。 我们不允许淫秽性内容或可能涉及利用或性化未成年人的内容。 +- #### Sexually obscene content + Don’t post content that is pornographic. This does not mean that all nudity, or all code and content related to sexuality, is prohibited. We recognize that sexuality is a part of life and non-pornographic sexual content may be a part of your project, or may be presented for educational or artistic purposes. We do not allow obscene sexual content or content that may involve the exploitation or sexualization of minors. -- #### 过激的暴力内容 不得在没有合理的上下文或警告的情况下发布暴力图像、文本或其他内容。 在视频游戏、新闻报道以及对历史事件的描述中通常可以包含暴力内容,但我们不允许不加选择地发布暴力内容,或者以其他用户很难避开的方式发布(例如头像或议题评论)。 在其他情况下发布明确警告或免责声明有助于用户就他们是否想要参与这类内容作出明智的决定。 +- #### Gratuitously violent content + Don’t post violent images, text, or other content without reasonable context or warnings. While it's often okay to include violent content in video games, news reports, and descriptions of historical events, we do not allow violent content that is posted indiscriminately, or that is posted in a way that makes it difficult for other users to avoid (such as a profile avatar or an issue comment). A clear warning or disclaimer in other contexts helps users make an educated decision as to whether or not they want to engage with such content. -- #### 错误信息和虚假信息 不得发布歪曲现实的内容,包括不准确或虚假的信息(错误信息),或者故意欺骗的信息(假信息),因为这种内容可能伤害公众,或者干扰所有人公平和平等参与公共生活的机会。 例如,我们不允许可能危及群体福祉或限制他们参与自由和开放社会的内容。 鼓励积极参与表达想法、观点和经验,不得质疑个人帐户或言论。 我们通常允许模仿和讽刺,但要符合我们的“可接受使用政策”,而且我们认为上下文对于如何接收和理解信息很重要;因此,通过免责声明或其他方式澄清您的意图以及您的信息的来源,可能是适当的做法。 +- #### Misinformation and disinformation + You may not post content that presents a distorted view of reality, whether it is inaccurate or false (misinformation) or is intentionally deceptive (disinformation) where such content is likely to result in harm to the public or to interfere with fair and equal opportunities for all to participate in public life. For example, we do not allow content that may put the well-being of groups of people at risk or limit their ability to take part in a free and open society. We encourage active participation in the expression of ideas, perspectives, and experiences and may not be in a position to dispute personal accounts or observations. We generally allow parody and satire that is in line with our Acceptable Use Polices, and we consider context to be important in how information is received and understood; therefore, it may be appropriate to clarify your intentions via disclaimers or other means, as well as the source(s) of your information. -- #### Active malware or exploits Being part of a community includes not taking advantage of other members of the community. 我们不允许任何人利用我们的平台直接支持造成技术损害的非法攻击, 例如利用 GitHub 作为提供恶意可执行文件的方式或作为攻击基础架构, 例如,组织拒绝服务攻击或管理命令和控制服务器。 技术损害是指资源过度消耗、物理损坏、停机、拒绝服务或数据丢失,在滥用之前没有隐含或明确的双重用途。 +- #### Active malware or exploits + Being part of a community includes not taking advantage of other members of the community. We do not allow anyone to use our platform in direct support of unlawful attacks that cause technical harms, such as using GitHub as a means to deliver malicious executables or as attack infrastructure, for example by organizing denial of service attacks or managing command and control servers. Technical harms means overconsumption of resources, physical damage, downtime, denial of service, or data loss, with no implicit or explicit dual-use purpose prior to the abuse occurring. - 请注意,GitHub 允许双重用途内容,并支持发布用于研究漏洞、恶意软件或漏洞的内容,因为此类内容的发布和分发具有教育价值,并为安全社区提供净收益。 我们具有积极的意图,并利用这些项目来促进和推动整个生态系统的改善。 + Note that GitHub allows dual-use content and supports the posting of content that is used for research into vulnerabilities, malware, or exploits, as the publication and distribution of such content has educational value and provides a net benefit to the security community. We assume positive intention and use of these projects to promote and drive improvements across the ecosystem. - 在极少数非常普遍地滥用两用内容的情况下,我们可能会限制访问该特定内容实例,以破坏利用 GitHub 平台作为漏洞或恶意软件 CDN 的持续非法攻击或恶意软件活动。 在大多数情况下,限制采取将内容置于身份验证背后的形式,但作为最后手段,可能涉及禁用访问或在不可能的情况下完全删除(例如,当作为 Gist 发布时)。 我们还将尽可能联系项目所有者了解实施的限制。 + In rare cases of very widespread abuse of dual-use content, we may restrict access to that specific instance of the content to disrupt an ongoing unlawful attack or malware campaign that is leveraging the GitHub platform as an exploit or malware CDN. In most of these instances, restriction takes the form of putting the content behind authentication, but may, as an option of last resort, involve disabling access or full removal where this is not possible (e.g. when posted as a gist). We will also contact the project owners about restrictions put in place where possible. - 在可行的情况下,限制是暂时的,无助于永久清除或限制该平台上的任何特定两用内容或该内容的副本。 尽管我们的目标是使这些罕见的限制情况成为与项目所有者的合作过程,但如果您认为您的内容受到了不适当的限制,我们也有[申诉流程](#appeal-and-reinstatement)。 + Restrictions are temporary where feasible, and do not serve the purpose of purging or restricting any specific dual-use content, or copies of that content, from the platform in perpetuity. While we aim to make these rare cases of restriction a collaborative process with project owners, if you do feel your content was unduly restricted, we have an [appeals process](#appeal-and-reinstatement) in place. - 为了便于项目维护者自己找到解决滥用问题的途径,在上报给 GitHub 滥用报告之前,我们建议但不要求仓库所有者在张贴可能有害的安全研究内容时采取下列步骤: + To facilitate a path to abuse resolution with project maintainers themselves, prior to escalation to GitHub abuse reports, we recommend, but do not require, that repository owners take the following steps when posting potentially harmful security research content: - * 在项目的 README.md 文件或源代码评论中,清楚地识别和描述任何可能有害的内容。 - * 通过仓库中的 SECURITY.md 文件为任何第三方滥用查询提供首选的联系方式(例如,“请在此仓库上为任何问题或疑虑创建议题”)。 这种联系方式允许第三方直接与项目维护者联系,并有可能解决问题,而无需提交滥用报告。 + * Clearly identify and describe any potentially harmful content in a disclaimer in the project’s README.md file or source code comments. + * Provide a preferred contact method for any 3rd party abuse inquiries through a SECURITY.md file in the repository (e.g. "Please create an issue on this repository for any questions or concerns"). Such a contact method allows 3rd parties to reach out to project maintainers directly and potentially resolve concerns without the need to file abuse reports. - *GitHub 认为 npm 注册表是一个主要用于安装和代码运行时使用的平台,而不是用于研究的平台。* + *GitHub considers the npm registry to be a platform used primarily for installation and run-time use of code, and not for research.* -## 如果有人违反规则会怎么样? +## What happens if someone breaks the rules? -当用户举报不当行为或内容时,我们可能会采取各种措施。 它通常取决于特定案例的确切情况。 我们知道,有时人们可能会出于各种原因而去说或去做一些不适当的事情。 也许他们并未意识到自己的言论会被如何解读。 或者他们只是想让自己的情绪得到宣泄。 当然,有时候,有些人只是想散发垃圾信息或存心捣乱。 +There are a variety of actions that we may take when a user reports inappropriate behavior or content. It usually depends on the exact circumstances of a particular case. We recognize that sometimes people may say or do inappropriate things for any number of reasons. Perhaps they did not realize how their words would be perceived. Or maybe they just let their emotions get the best of them. Of course, sometimes, there are folks who just want to spam or cause trouble. -每种情况都需要采用不同的方法,我们会努力调整对策,以满足报告的具体情况的需要。 我们将逐案审查每一份滥用报告。 在每个案例中,我们都会安排一个多元化的团队,调查内容及相关事实,并以本行为准则为决策指导,采取适当的措施。 +Each case requires a different approach, and we try to tailor our response to meet the needs of the situation that has been reported. We'll review each abuse report on a case-by-case basis. In each case, we will have a diverse team investigate the content and surrounding facts and respond as appropriate, using these guidelines to guide our decision. -为响应滥用举报,我们可能采取的措施包括但不限于: +Actions we may take in response to an abuse report include but are not limited to: -* 删除内容 -* 屏蔽内容 -* 帐户暂停 -* 帐户终止 +* Content Removal +* Content Blocking +* Account Suspension +* Account Termination -## 申诉和恢复 +## Appeal and Reinstatement -在某些情况下,例如根据用户提供的补充资料,可能有理由推翻某项行动,或在用户已解决违规行为并同意遵守我们的可接受使用政策。 如果您想对强制执行行动提出申诉,请联系[支持](https://support.github.com/contact?tags=docs-policy)。 +In some cases there may be a basis to reverse an action, for example, based on additional information a user provided, or where a user has addressed the violation and agreed to abide by our Acceptable Use Policies moving forward. If you wish to appeal an enforcement action, please contact [support](https://support.github.com/contact?tags=docs-policy). -## 法律声明 +## Legal Notices -我们将这些社区指导方针专用于公共领域,让所有人根据 [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) 的条款使用、重新使用、调整或适应。 +We dedicate these Community Guidelines to the public domain for anyone to use, reuse, adapt, or whatever, under the terms of [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/). -这些只是指导方针;不影响我们的[服务条款](/articles/github-terms-of-service/),也不打算作为完整的清单。 GitHub 保留根据[服务条款](/articles/github-terms-of-service/#c-acceptable-use)完全酌处的权利,可以删除任何内容或终止其活动违反我们可接受使用条款的任何帐户。 这些指导方针说明了我们何时将行使这一酌处权。 +These are only guidelines; they do not modify our [Terms of Service](/articles/github-terms-of-service/) and are not intended to be a complete list. GitHub retains full discretion under the [Terms of Service](/articles/github-terms-of-service/#c-acceptable-use) to remove any content or terminate any accounts for activity that violates our Terms on Acceptable Use. These guidelines describe when we will exercise that discretion. diff --git a/translations/zh-CN/content/github/site-policy/github-logo-policy.md b/translations/zh-CN/content/github/site-policy/github-logo-policy.md index 822850ef5a..ec874245e8 100644 --- a/translations/zh-CN/content/github/site-policy/github-logo-policy.md +++ b/translations/zh-CN/content/github/site-policy/github-logo-policy.md @@ -1,8 +1,8 @@ --- -title: GitHub 徽标政策 +title: GitHub Logo Policy redirect_from: - - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know/ - - /articles/using-an-octocat-to-link-to-github-or-your-github-profile/ + - /articles/i-m-developing-a-third-party-github-app-what-do-i-need-to-know + - /articles/using-an-octocat-to-link-to-github-or-your-github-profile - /articles/github-logo-policy versions: fpt: '*' @@ -11,6 +11,6 @@ topics: - Legal --- -在某些情况下,您可以将 {% data variables.product.prodname_dotcom %} 徽标添加到您的网站或第三方应用程序中。 有关徽标使用的更多信息和具体指南,请参阅 [{% data variables.product.prodname_dotcom %} 徽标和使用页面](https://github.com/logos)。 +You can add {% data variables.product.prodname_dotcom %} logos to your website or third-party application in some scenarios. For more information and specific guidelines on logo usage, see the [{% data variables.product.prodname_dotcom %} Logos and Usage page](https://github.com/logos). -您还可以将章鱼猫用作个人头像或放在网站上作为您的 {% data variables.product.prodname_dotcom %} 帐户的链接,但不能用于您的公司或您构建的产品。 {% data variables.product.prodname_dotcom %} 的 [Octodex](https://octodex.github.com/) 中有千姿百态的章鱼猫。 有关使用 Octodex 中的章鱼猫的更多信息,请参阅 [Octodex 常见问题解答](https://octodex.github.com/faq/)。 +You can also use an octocat as your personal avatar or on your website to link to your {% data variables.product.prodname_dotcom %} account, but not for your company or a product you're building. {% data variables.product.prodname_dotcom %} has an extensive collection of octocats in the [Octodex](https://octodex.github.com/). For more information on using the octocats from the Octodex, see the [Octodex FAQ](https://octodex.github.com/faq/). diff --git a/translations/zh-CN/content/github/site-policy/github-privacy-statement.md b/translations/zh-CN/content/github/site-policy/github-privacy-statement.md index df2ff447d1..a9ce688a7e 100644 --- a/translations/zh-CN/content/github/site-policy/github-privacy-statement.md +++ b/translations/zh-CN/content/github/site-policy/github-privacy-statement.md @@ -1,12 +1,12 @@ --- -title: GitHub 隐私声明 +title: GitHub Privacy Statement redirect_from: - - /privacy/ - - /privacy-policy/ - - /privacy-statement/ - - /github-privacy-policy/ - - /articles/github-privacy-policy/ - - /articles/github-privacy-statement/ + - /privacy + - /privacy-policy + - /privacy-statement + - /github-privacy-policy + - /articles/github-privacy-policy + - /articles/github-privacy-statement versions: fpt: '*' topics: @@ -14,329 +14,329 @@ topics: - Legal --- -生效日期:2020 年 12 月 19 日 +Effective date: December 19, 2020 -感谢您将自己的源代码、项目和个人信息交托给 GitHub Inc. (“GitHub”、“我们”)。 保管您的私人信息是一项重大责任,我们希望您了解我们的处理方式。 +Thanks for entrusting GitHub Inc. (“GitHub”, “we”) with your source code, your projects, and your personal information. Holding on to your private information is a serious responsibility, and we want you to know how we're handling it. -所有大写术语采用 [GitHub 服务条款](/github/site-policy/github-terms-of-service)中的定义,除非本文另有说明。 +All capitalized terms have their definition in [GitHub’s Terms of Service](/github/site-policy/github-terms-of-service), unless otherwise noted here. -## 精简版 +## The short version -我们按照本隐私声明所述来使用您的个人信息。 无论您身在何方、居于何处、是何国籍,我们为世界各地的所有用户提供同样的高标准隐私保护,不论其原籍国或所在地。 +We use your personal information as this Privacy Statement describes. No matter where you are, where you live, or what your citizenship is, we provide the same high standard of privacy protection to all our users around the world, regardless of their country of origin or location. -当然,下面的精简版和摘要无法面面俱到,因此请继续往下阅读以了解详情。 +Of course, the short version and the Summary below don't tell you everything, so please read on for more details. -## 摘要 +## Summary -| 节 | 说明 | -| ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | -| [GitHub 收集哪些信息](#what-information-github-collects) | GitHub 直接从您的注册、付款、交易和用户个人资料中收集信息。 我们还自动从您的使用信息、cookie 和设备信息中收集,但在必要时会征得您的同意。 GitHub 可能还会从第三方收集用户个人信息。 我们只收集极少量的必要个人信息,除非您自己选择提供更多信息。 | -| [GitHub_不_收集哪些信息](#what-information-github-does-not-collect) | 我们不会有意收集 13 岁以下儿童的信息,也不会收集[敏感个人信息](https://gdpr-info.eu/art-9-gdpr/)。 | -| [GitHub 如何使用您的信息](#how-github-uses-your-information) | 本节介绍我们使用个人信息的方式,包括为您提供服务、与您沟通、出于安全和合规目的以及改善我们的服务。 我们还介绍了在法律要求的情况下处理个人信息的法律依据。 | -| [我们如何分享所收集的信息](#how-we-share-the-information-we-collect) | 在以下情况下,我们可能会与第三方分享您的信息:经您同意、与我们的服务提供商分享、出于安全目的、为履行我们的法律义务,或者公司实体或业务单位的控制权发生变更或出售。 我们不会出售您的个人信息,也不会在 GitHub 上发布广告。 您可以查看可访问您信息的服务提供商列表。 | -| [其他重要信息](#other-important-information) | 我们针对 GitHub 上的仓库内容、公共信息和组织而提供的附加说明。 | -| [其他服务](#additional-services) | 我们提供有关其他服务产品的信息,包括第三方应用程序、GitHub Pages 和 GitHub 应用程序。 | -| [您如何访问和控制我们收集的信息](#how-you-can-access-and-control-the-information-we-collect) | 我们为您提供访问、更改或删除个人信息的途径。 | -| [我们使用 cookie 和跟踪技术](#our-use-of-cookies-and-tracking) | 我们只是使用绝对必要的 cookie 来提供、保障和改进我们的服务。 我们提供了一个非常透明地说明此技术的网页。 请参阅本节了解更多信息。 | -| [GitHub 如何保护您的信息](#how-github-secures-your-information) | 我们采取所有合理必要的措施,保护 GitHub 上个人信息的机密性、完整性和可用性,并保护我们服务器的弹性。 | -| [GitHub 的全球隐私实践](#githubs-global-privacy-practices) | 我们为世界各地的所有用户提供同样的高标准隐私保护。 | -| [我们如何与您交流](#how-we-communicate-with-you) | 我们通过电子邮件与您通信。 您可以在帐户设置中或通过联系我们来控制我们与您联系的方式。 | -| [解决投诉](#resolving-complaints) | 万一我们无法快速彻底地解决隐私问题,我们提供一条解决争议的途径。 | -| [隐私声明的变更](#changes-to-our-privacy-statement) | 如果本隐私声明发生重大变更,我们会在任何此类变更生效之前 30 天通知您。 您也可以在我们的站点政策仓库中跟踪变更。 | -| [许可](#license) | 本隐私声明的许可采用[知识共享零许可](https://creativecommons.org/publicdomain/zero/1.0/)原则。 | -| [联系 GitHub](#contacting-github) | 如果您对我们的隐私声明有疑问,请随时联系我们。 | -| [翻译](#translations) | 我们提供本隐私声明的一些翻译版本的链接。 | +| Section | What can you find there? | +|---|---| +| [What information GitHub collects](#what-information-github-collects) | GitHub collects information directly from you for your registration, payment, transactions, and user profile. We also automatically collect from you your usage information, cookies, and device information, subject, where necessary, to your consent. GitHub may also collect User Personal Information from third parties. We only collect the minimum amount of personal information necessary from you, unless you choose to provide more. | +| [What information GitHub does _not_ collect](#what-information-github-does-not-collect) | We don’t knowingly collect information from children under 13, and we don’t collect [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/). | +| [How GitHub uses your information](#how-github-uses-your-information) | In this section, we describe the ways in which we use your information, including to provide you the Service, to communicate with you, for security and compliance purposes, and to improve our Service. We also describe the legal basis upon which we process your information, where legally required. | +| [How we share the information we collect](#how-we-share-the-information-we-collect) | We may share your information with third parties under one of the following circumstances: with your consent, with our service providers, for security purposes, to comply with our legal obligations, or when there is a change of control or sale of corporate entities or business units. We do not sell your personal information and we do not host advertising on GitHub. You can see a list of the service providers that access your information. | +| [Other important information](#other-important-information) | We provide additional information specific to repository contents, public information, and Organizations on GitHub. | +| [Additional services](#additional-services) | We provide information about additional service offerings, including third-party applications, GitHub Pages, and GitHub applications. | +| [How you can access and control the information we collect](#how-you-can-access-and-control-the-information-we-collect) | We provide ways for you to access, alter, or delete your personal information. | +| [Our use of cookies and tracking](#our-use-of-cookies-and-tracking) | We only use strictly necessary cookies to provide, secure and improve our service. We offer a page that makes this very transparent. Please see this section for more information. | +| [How GitHub secures your information](#how-github-secures-your-information) | We take all measures reasonably necessary to protect the confidentiality, integrity, and availability of your personal information on GitHub and to protect the resilience of our servers. | +| [GitHub's global privacy practices](#githubs-global-privacy-practices) | We provide the same high standard of privacy protection to all our users around the world. | +| [How we communicate with you](#how-we-communicate-with-you) | We communicate with you by email. You can control the way we contact you in your account settings, or by contacting us. | +| [Resolving complaints](#resolving-complaints) | In the unlikely event that we are unable to resolve a privacy concern quickly and thoroughly, we provide a path of dispute resolution. | +| [Changes to our Privacy Statement](#changes-to-our-privacy-statement) | We notify you of material changes to this Privacy Statement 30 days before any such changes become effective. You may also track changes in our Site Policy repository. | +| [License](#license) | This Privacy Statement is licensed under the [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). | +| [Contacting GitHub](#contacting-github) | Please feel free to contact us if you have questions about our Privacy Statement. | +| [Translations](#translations) | We provide links to some translations of the Privacy Statement. | -## GitHub 隐私声明 +## GitHub Privacy Statement -## GitHub 收集哪些信息 +## What information GitHub collects -**用户个人信息**是关于我们用户的任何个人信息,这些信息可以单独或结合其他信息来识别他们的身份,或者以其他方式与他们合理关联。 用户名和密码、电子邮件地址、真实姓名、互联网协议 (IP) 地址和照片等信息是典型的“用户个人信息”。 +"**User Personal Information**" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information such as a username and password, an email address, a real name, an Internet protocol (IP) address, and a photograph are examples of “User Personal Information.” -用户个人信息不包括汇总的非个人识别信息,即不能识别用户身份或与他们没有合理关联的信息。 我们可能会将此类汇总的非个人识别信息用于研究目的,以及运营、分析、改善和优化我们的网站及服务。 +User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. We may use such aggregated, non-personally identifying information for research purposes and to operate, analyze, improve, and optimize our Website and Service. -### 用户直接向 GitHub 提供的信息 +### Information users provide directly to GitHub -#### 注册信息 -创建帐户时,我们需要您提供一些基本信息。 创建用户名和密码时,我们会要求您提供有效的电子邮件地址。 +#### Registration information +We require some basic information at the time of account creation. When you create your own username and password, we ask you for a valid email address. -#### 支付信息 -如果您注册我们的付费帐户、通过 GitHub 赞助计划汇款或在 GitHub Marketplace 上购买应用程序,我们将收集您的全名、地址和信用卡信息或 PayPal 信息。 请注意,GitHub 不会处理或存储您的信用卡信息或 PayPal 信息,但我们的第三方付款处理商会这样做。 +#### Payment information +If you sign on to a paid Account with us, send funds through the GitHub Sponsors Program, or buy an application on GitHub Marketplace, we collect your full name, address, and credit card information or PayPal information. Please note, GitHub does not process or store your credit card information or PayPal information, but our third-party payment processor does. -如果您在 [GitHub Marketplace](https://github.com/marketplace) 上列出并销售应用程序,我们需要您的银行信息。 如果您通过 [GitHub 赞助计划](https://github.com/sponsors)筹集资金,我们需要您在注册过程中提供一些[其他信息](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information),以便您参与这些服务并通过这些服务获取资金以及满足合规要求。 +If you list and sell an application on [GitHub Marketplace](https://github.com/marketplace), we require your banking information. If you raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we require some [additional information](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-bank-information) through the registration process for you to participate in and receive funds through those services and for compliance purposes. -#### 个人资料信息 -您可以选择在帐户个人资料中向我们提供更多信息,例如您的全名、头像等,可包括照片、简历、地理位置、公司和第三方网站的 URL。 此类信息可能包括用户个人信息。 请注意,您的个人资料信息可能对我们服务的其他用户显示。 +#### Profile information +You may choose to give us more information for your Account profile, such as your full name, an avatar which may include a photograph, your biography, your location, your company, and a URL to a third-party website. This information may include User Personal Information. Please note that your profile information may be visible to other Users of our Service. -### GitHub 在您使用服务时自动收集的信息 +### Information GitHub automatically collects from your use of the Service -#### 交易信息 -如果您拥有我们的付费帐户、在 [GitHub Marketplace](https://github.com/marketplace) 上出售上架的应用程序或通过 [GitHub 赞助计划](https://github.com/sponsors)筹集资金,我们会自动收集有关您在服务中的交易的某些信息,例如日期、时间和收取金额。 +#### Transactional information +If you have a paid Account with us, sell an application listed on [GitHub Marketplace](https://github.com/marketplace), or raise funds through the [GitHub Sponsors Program](https://github.com/sponsors), we automatically collect certain information about your transactions on the Service, such as the date, time, and amount charged. -#### 使用信息 -如果您访问我们的服务或网站,我们将与大多数服务商一样自动收集一些基本信息,但在必要时会征得您的同意。 这包括有关您如何使用服务的信息,例如您查看的页面、推荐站点、您的 IP 地址和会话信息,以及每个请求的日期和时间。 这是我们针对网站的每个访客收集的信息,无论他们是否有帐户。 此类信息可能包括用户个人信息。 +#### Usage information +If you're accessing our Service or Website, we automatically collect the same basic information that most services collect, subject, where necessary, to your consent. This includes information about how you use the Service, such as the pages you view, the referring site, your IP address and session information, and the date and time of each request. This is information we collect from every visitor to the Website, whether they have an Account or not. This information may include User Personal information. -#### Cookie -如下所述,我们通过 cookie 自动收集信息(例如 cookie ID 和设置)以保持您的登录状态、记住您的首选项、识别您和您的设备以及分析您使用服务的情况 。 +#### Cookies +As further described below, we automatically collect information from cookies (such as cookie ID and settings) to keep you logged in, to remember your preferences, to identify you and your device and to analyze your use of our service. -#### 设备信息 -我们可能会收集有关您设备的某些信息,例如其 IP 地址、浏览器或客户端应用程序信息、语言首选项、操作系统和应用程序版本、设备类型和 ID 以及设备型号和制造商。 此类信息可能包括用户个人信息。 +#### Device information +We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. -### 从第三方收集信息 +### Information we collect from third parties -GitHub 可能会从第三方收集用户个人信息。 例如,如果您报名参加培训或从我们的供应商、合作伙伴或附属公司获取有关 GitHub 的信息,就可能会发生这种情况。 GitHub 不从第三方数据中间商购买用户个人信息。 +GitHub may collect User Personal Information from third parties. For example, this may happen if you sign up for training or to receive information about GitHub from one of our vendors, partners, or affiliates. GitHub does not purchase User Personal Information from third-party data brokers. -## GitHub 不收集哪些信息 +## What information GitHub does not collect -我们不会有意收集**[敏感个人信息](https://gdpr-info.eu/art-9-gdpr/)**,例如显示种族或民族、政见、宗教或信仰或工会成员资格的个人数据;用于唯一识别自然人的遗传数据或生物数据处理信息;有关健康的数据或涉及自然人的性生活或性取向的数据。 如果您选择在我们的服务器上存储任何敏感个人信息,则您有责任遵守有关该数据的任何法规管制。 +We do not intentionally collect “**[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)**”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. If you choose to store any Sensitive Personal Information on our servers, you are responsible for complying with any regulatory controls regarding that data. -13 岁以下的孩子不得在 GitHub 上拥有帐户。 GitHub 不会有意收集 13 岁以下孩子的信息,也没有专门为他们定制任何内容。 如果我们得知或有理由怀疑您是 13 岁以下的用户,我们不得不关闭您的帐户。 我们并不想阻止您学习代码,但这是规则。 有关帐户终止的信息,请参阅我们的[服务条款](/github/site-policy/github-terms-of-service)。 不同国家/地区可能有不同的最低年龄限制,如果您未达到您所在国家/地区提供数据收集许可的最低年龄,则不得在 GitHub 上拥有帐户。 +If you are a child under the age of 13, you may not have an Account on GitHub. GitHub does not knowingly collect information from or direct any of our content specifically to children under 13. If we learn or have reason to suspect that you are a User who is under the age of 13, we will have to close your Account. We don't want to discourage you from learning to code, but those are the rules. Please see our [Terms of Service](/github/site-policy/github-terms-of-service) for information about Account termination. Different countries may have different minimum age limits, and if you are below the minimum age for providing consent for data collection in your country, you may not have an Account on GitHub. -我们不会有意收集**存储在您的仓库中**或其他自由内容输入中的用户个人信息。 用户仓库中的任何个人信息由仓库所有者负责。 +We do not intentionally collect User Personal Information that is **stored in your repositories** or other free-form content inputs. Any personal information within a user's repository is the responsibility of the repository owner. -## GitHub 如何使用您的信息 +## How GitHub uses your information -我们可能将您的信息用于以下目的: -- 我们使用您的[注册信息](#registration-information)创建您的帐户并为您提供服务。 -- 我们使用您的[付款信息](#payment-information)为您提供付费帐户服务、Marketplace 服务、赞助计划或您要求的任何其他 GitHub 付费服务。 -- 我们使用您的用户个人信息,特别是您的用户名,在 GitHub 上识别您的身份。 -- 我们使用您的[个人资料信息](#profile-information)填写您的帐户个人资料,并根据您的要求将其分享给其他用户。 -- 我们使用您的电子邮件地址与您通信,但需要征得您的同意,**并且以您的同意为前提**。 请参阅我们的[电子邮件通信](#how-we-communicate-with-you)部分了解更多信息。 -- 我们使用用户个人信息响应支持请求。 -- 我们使用用户个人信息和其他数据为您提供建议,例如推荐您可能想要关注或贡献的项目。 我们根据您在 GitHub 上的公开行为(例如您加星标的项目)确定您的编码兴趣,然后向您推荐类似的项目。 这些推荐是自动生成的,但对您的权利没有任何法律影响。 -- 我们可能使用用户个人信息邀请您参与调查、测试版程序或其他研究项目,但在必要时会征得您的同意。 -- 我们使用[使用信息](#usage-information)和[设备信息](#device-information)来更好地了解用户如何使用 GitHub 并改善我们的网站和服务。 -- 出于安全目的,或者为了调查可能的欺诈行为或企图损害 GitHub 或我们用户的行为时,我们可能会使用您的用户个人信息。 -- 我们可能会使用您的用户个人信息来履行我们的法律义务、保护我们的知识产权和执行我们的[服务条款](/github/site-policy/github-terms-of-service)。 -- 我们对用户个人信息的使用范围仅限于本隐私声明中列出的目的。 如果我们要将您的用户个人信息用于其他目的,则需要您的事先许可。 在您的[用户个人资料](https://github.com/settings/admin)中,始终可以查看我们拥有哪些信息、我们如何使用这些信息以及您授予了我们哪些权限。 +We may use your information for the following purposes: +- We use your [Registration Information](#registration-information) to create your account, and to provide you the Service. +- We use your [Payment Information](#payment-information) to provide you with the Paid Account service, the Marketplace service, the Sponsors Program, or any other GitHub paid service you request. +- We use your User Personal Information, specifically your username, to identify you on GitHub. +- We use your [Profile Information](#profile-information) to fill out your Account profile and to share that profile with other users if you ask us to. +- We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. Please see our section on [email communication](#how-we-communicate-with-you) for more information. +- We use User Personal Information to respond to support requests. +- We use User Personal Information and other data to make recommendations for you, such as to suggest projects you may want to follow or contribute to. We learn from your public behavior on GitHub—such as the projects you star—to determine your coding interests, and we recommend similar projects. These recommendations are automated decisions, but they have no legal impact on your rights. +- We may use User Personal Information to invite you to take part in surveys, beta programs, or other research projects, subject, where necessary, to your consent . +- We use [Usage Information](#usage-information) and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and Service. +- We may use your User Personal Information if it is necessary for security purposes or to investigate possible fraud or attempts to harm GitHub or our Users. +- We may use your User Personal Information to comply with our legal obligations, protect our intellectual property, and enforce our [Terms of Service](/github/site-policy/github-terms-of-service). +- We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. You can always see what information we have, how we're using it, and what permissions you have given us in your [user profile](https://github.com/settings/admin). -### 我们处理信息的法律依据 +### Our legal bases for processing information -如果我们处理您的用户个人信息受某些国际法律(包括但不限于欧盟通用数据保护条例 (GDPR))的约束,则 GitHub 必须告知您有关我们处理用户个人信息的法律依据。 GitHub 根据以下法律依据处理用户个人信息: +To the extent that our processing of your User Personal Information is subject to certain international laws (including, but not limited to, the European Union's General Data Protection Regulation (GDPR)), GitHub is required to notify you about the legal basis on which we process User Personal Information. GitHub processes User Personal Information on the following legal bases: -- 合同履行: - * 您在创建 GitHub 帐户时,需要提供您的[注册信息](#registration-information)。 我们需要使用这些信息与您签订服务条款协议,并在履行合同的基础上处理这些信息。 我们还会根据其他法律依据处理您的用户名和电子邮件地址,如下所述。 - * 如果您拥有我们的付费帐户,我们会在履行合同的基础上收集和处理额外的[付款信息](#payment-information)。 - * 当您在 Marketplace 上买卖应用程序,或通过 GitHub 赞助计划收发资金时,我们会处理[付款信息](#payment-information)和其他元素,以便履行适用于这些服务的合同。 -- 同意: - * 在以下情况下,我们需要征得您的同意才能使用您的用户个人信息:您在[用户个人资料](https://github.com/settings/admin)中填写信息时;您决定参与 GitHub 培训、研究项目、测试版程序或调查时;以及用于营销目的(如果适用)时。 所有这些用户个人信息都是完全可选的,您可以随时访问、修改和删除它。 虽然不能完全删除您的电子邮件地址,但您可以将其设为私密。 您可以随时撤回同意。 -- 合法利益: - * 一般来说,我们处理用户个人信息的其他依据是维护我们的合法利益,例如,出于法律合规目的、安全目的,或为了保持 GitHub 系统、网站和服务的持续保密性、完整性、可用性和弹性。 -- 如果要请求删除我们在您同意的基础上处理的数据,或者对我们处理个人信息的方式有异议,请使用我们的[隐私问题联系表](https://support.github.com/contact/privacy)。。 +- Contract Performance: + * When you create a GitHub Account, you provide your [Registration Information](#registration-information). We require this information for you to enter into the Terms of Service agreement with us, and we process that information on the basis of performing that contract. We also process your username and email address on other legal bases, as described below. + * If you have a paid Account with us, we collect and process additional [Payment Information](#payment-information) on the basis of performing that contract. + * When you buy or sell an application listed on our Marketplace or, when you send or receive funds through the GitHub Sponsors Program, we process [Payment Information](#payment-information) and additional elements in order to perform the contract that applies to those services. +- Consent: + * We rely on your consent to use your User Personal Information under the following circumstances: when you fill out the information in your [user profile](https://github.com/settings/admin); when you decide to participate in a GitHub training, research project, beta program, or survey; and for marketing purposes, where applicable. All of this User Personal Information is entirely optional, and you have the ability to access, modify, and delete it at any time. While you are not able to delete your email address entirely, you can make it private. You may withdraw your consent at any time. +- Legitimate Interests: + * Generally, the remainder of the processing of User Personal Information we perform is necessary for the purposes of our legitimate interest, for example, for legal compliance purposes, security purposes, or to maintain ongoing confidentiality, integrity, availability, and resilience of GitHub’s systems, Website, and Service. +- If you would like to request deletion of data we process on the basis of consent or if you object to our processing of personal information, please use our [Privacy contact form](https://support.github.com/contact/privacy). -## 我们如何分享所收集的信息 +## How we share the information we collect -我们在以下情况下可能会与第三方分享您的用户个人信息: +We may share your User Personal Information with third parties under one of the following circumstances: -### 经您同意 -在告知您我们将分享哪些信息、与谁分享以及原因之后,如果您同意,我们将分享您的用户个人信息。 例如,如果您购买我们 Marketplace 上列出的应用程序,我们将分享您的用户名以便该应用程序开发者为您提供服务。 此外,您可以通过在 GitHub 上的操作来指示我们分享您的用户个人信息。 例如,如果您加入组织,则表明您愿意向组织所有者提供在组织访问日志中查看您的活动的权限。 +### With your consent +We share your User Personal Information, if you consent, after letting you know what information will be shared, with whom, and why. For example, if you purchase an application listed on our Marketplace, we share your username to allow the application Developer to provide you with services. Additionally, you may direct us through your actions on GitHub to share your User Personal Information. For example, if you join an Organization, you indicate your willingness to provide the owner of the Organization with the ability to view your activity in the Organization’s access log. -### 与服务提供商分享 -我们会与有限数量的服务提供商分享用户个人信息,他们替我们处理这些信息以提供或改善我们的服务,并且通过签署数据保护协议或作出类似承诺,同意遵守与我们隐私声明类似的隐私限制。 我们的服务提供商履行付款处理、客户支持事件单、网络数据传输、安全及其他类似服务。 虽然 GitHub 在美国处理所有用户个人信息,但我们的服务提供商可能在美国或欧盟外部处理数据。 如果您想知道我们的服务提供商有哪些,请参阅我们关于[子处理商](/github/site-policy/github-subprocessors-and-cookies)的页面。 +### With service providers +We share User Personal Information with a limited number of service providers who process it on our behalf to provide or improve our Service, and who have agreed to privacy restrictions similar to the ones in our Privacy Statement by signing data protection agreements or making similar commitments. Our service providers perform payment processing, customer support ticketing, network data transmission, security, and other similar services. While GitHub processes all User Personal Information in the United States, our service providers may process data outside of the United States or the European Union. If you would like to know who our service providers are, please see our page on [Subprocessors](/github/site-policy/github-subprocessors-and-cookies). -### 出于安全目的 -如果您是组织的成员,GitHub 可能会将您与该组织相关联的用户名、[使用信息](#usage-information)和[设备信息](#device-information)分享给组织的所有者和/或管理员,但提供此类信息的目的仅限于调查或响应可能影响或损害该特定组织安全性的安全事件。 +### For security purposes +If you are a member of an Organization, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) associated with that Organization with an owner and/or administrator of the Organization, to the extent that such information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -### 法律要求披露 -为遵守法律程序和履行法律义务,GitHub 力求提高透明度。 如果法律强制或要求披露用户的信息,我们会尽合理努力通知该用户,除非法律或法院命令不允许我们通知,或者在极少数紧急情况下来不及通知。 GitHub 可能会根据有效传票、法院命令、搜查令或类似的政府命令,向执法机构披露我们收集的用户个人信息或其他信息,或者我们出于善意,认为这种披露是履行我们法律义务的必要行动,有助于保护我们、第三方或公众的财产或权利时,我们也会这样做。 +### For legal disclosure +GitHub strives for transparency in complying with legal process and legal obligations. Unless prevented from doing so by law or court order, or in rare, exigent circumstances, we make a reasonable effort to notify users of any legally compelled or required disclosure of their information. GitHub may disclose User Personal Information or other information we collect about you to law enforcement if required in response to a valid subpoena, court order, search warrant, a similar government order, or when we believe in good faith that disclosure is necessary to comply with our legal obligations, to protect our property or rights, or those of third parties or the public at large. -有关我们为响应法律要求而披露的更多信息,请参阅我们的[用户数据法律要求指南](/github/site-policy/guidelines-for-legal-requests-of-user-data)。 +For more information about our disclosure in response to legal requests, see our [Guidelines for Legal Requests of User Data](/github/site-policy/guidelines-for-legal-requests-of-user-data). -### 控制权变更或出售 -如果我们参与公司实体或业务单位的合并、出售或收购,我们可能会分享用户个人信息。 如果发生任何此类所有权变更的情况,我们将确保根据条款保护用户个人信息的机密性,并且在传输您的任何用户个人信息之前在网站上或通过电子邮件通知您。 接收任何用户个人信息的组织必须遵守我们在隐私声明或服务条款中所作的任何承诺。 +### Change in control or sale +We may share User Personal Information if we are involved in a merger, sale, or acquisition of corporate entities or business units. If any such change of ownership happens, we will ensure that it is under terms that preserve the confidentiality of User Personal Information, and we will notify you on our Website or by email before any transfer of your User Personal Information. The organization receiving any User Personal Information will have to honor any promises we made in our Privacy Statement or Terms of Service. -### 汇总的非个人识别信息 -我们会与他人分享某些汇总的非个人识别信息,包括我们用户使用 GitHub 的整体情况或用户对我们其他方面(例如我们的会议或活动)的反应。 +### Aggregate, non-personally identifying information +We share certain aggregated, non-personally identifying information with others about how our users, collectively, use GitHub, or how our users respond to our other offerings, such as our conferences or events. -我们**不会**出于金钱或其他报酬而出售您的用户个人信息。 +We **do not** sell your User Personal Information for monetary or other consideration. -请注意:《2018 年加州消费者隐私法案》(“CCPA”) 要求企业在其隐私政策中声明,他们是否会披露个人信息以换取金钱或其他有价值的报酬。 虽然 CCPA 只涵盖加州居民,但我们自愿将人们控制自己的数据之核心权利扩展到我们的_所有_用户,而不仅仅是居住在加州的用户。 您可以在[此处](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act)了解有关 CCPA 以及我们如何遵守它的更多信息。 +Please note: The California Consumer Privacy Act of 2018 (“CCPA”) requires businesses to state in their privacy policy whether or not they disclose personal information in exchange for monetary or other valuable consideration. While CCPA only covers California residents, we voluntarily extend its core rights for people to control their data to _all_ of our users, not just those who live in California. You can learn more about the CCPA and how we comply with it [here](/github/site-policy/githubs-notice-about-the-california-consumer-privacy-act). -## 仓库内容 +## Repository contents -### 访问私有仓库 +### Access to private repositories -如果您的仓库是私有仓库,您可以控制对内容的访问。 如果其中包含用户个人信息或敏感个人信息,则 GitHub 只能根据本隐私声明访问该信息。 GitHub 工作人员[不得访问私有仓库内容](/github/site-policy/github-terms-of-service#e-private-repositories),除非 -- 出于安全目的 -- 协助仓库所有者处理支持事项 -- 保持服务的完整性 -- 履行我们的法律义务 -- 我们有理由认为其内容违法,或 -- 经您同意. +If your repository is private, you control the access to your Content. If you include User Personal Information or Sensitive Personal Information, that information may only be accessible to GitHub in accordance with this Privacy Statement. GitHub personnel [do not access private repository content](/github/site-policy/github-terms-of-service#e-private-repositories) except for +- security purposes +- to assist the repository owner with a support matter +- to maintain the integrity of the Service +- to comply with our legal obligations +- if we have reason to believe the contents are in violation of the law, or +- with your consent. -不过,虽然我们一般不搜索您的仓库中的内容,但可能扫描我们的服务器和内容,以根据算法指纹技术检测某些令牌或安全签名、已知活动的恶意软件、已知的依赖项漏洞或其他已知违反我们服务条款的内容,例如暴力极端主义或恐怖主义内容或儿童剥削图片(统称为“自动扫描”)。 我们的服务条款提供了有关[私有仓库](/github/site-policy/github-terms-of-service#e-private-repositories)的更多详情。 +However, while we do not generally search for content in your repositories, we may scan our servers and content to detect certain tokens or security signatures, known active malware, known vulnerabilities in dependencies, or other content known to violate our Terms of Service, such as violent extremist or terrorist content or child exploitation imagery, based on algorithmic fingerprinting techniques (collectively, "automated scanning"). Our Terms of Service provides more details on [private repositories](/github/site-policy/github-terms-of-service#e-private-repositories). -请注意,您可以选择禁用对私有仓库的某些访问权限,它们是在为您提供服务的过程中默认启用的(例如,自动扫描需要启用依赖项图和 Dependabot 警报)。 +Please note, you may choose to disable certain access to your private repositories that is enabled by default as part of providing you with the Service (for example, automated scanning needed to enable Dependency Graph and Dependabot alerts). -GitHub 将提供有关我们访问私有仓库内容的通知,访问的目的无外乎[为了法律披露](/github/site-policy/github-privacy-statement#for-legal-disclosure),为了履行我们的法律义务或遵循法律要求的其他约束,提供自动扫描,或者应对安全威胁或其他安全风险。 +GitHub will provide notice regarding our access to private repository content, unless [for legal disclosure](/github/site-policy/github-privacy-statement#for-legal-disclosure), to comply with our legal obligations, or where otherwise bound by requirements under law, for automated scanning, or if in response to a security threat or other risk to security. -### 公共仓库 +### Public repositories -如果您的仓库是公共仓库,则任何人都可以查看其内容。 如果您的公共仓库中含有用户个人信息、[敏感个人信息](https://gdpr-info.eu/art-9-gdpr/)或机密信息,例如电子邮件地址或密码,该信息可能会被搜索引擎索引或被第三方使用。 +If your repository is public, anyone may view its contents. If you include User Personal Information, [Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/), or confidential information, such as email addresses or passwords, in your public repository, that information may be indexed by search engines or used by third parties. -更多信息请参阅[公共仓库中的用户个人信息](/github/site-policy/github-privacy-statement#public-information-on-github)。 +Please see more about [User Personal Information in public repositories](/github/site-policy/github-privacy-statement#public-information-on-github). -## 其他重要信息 +## Other important information -### GitHub 上的公共信息 +### Public information on GitHub -GitHub 的许多服务和功能都是面向公众的。 如果您的内容是面向公众的,则第三方可能会按照我们的服务条款访问和使用它,例如查看您的个人资料或仓库,或者通过我们的 API 拉取数据。 我们不会出售您的内容;它是您的财产。 但是,我们会允许第三方(例如研究或存档组织)汇编面向公众的 GitHub 信息。 据悉,数据中间商等其他第三方也会搜刮 GitHub 和汇编数据。 +Many of GitHub services and features are public-facing. If your content is public-facing, third parties may access and use it in compliance with our Terms of Service, such as by viewing your profile or repositories or pulling data via our API. We do not sell that content; it is yours. However, we do allow third parties, such as research organizations or archives, to compile public-facing GitHub information. Other third parties, such as data brokers, have been known to scrape GitHub and compile data as well. -与您的内容相关的用户个人信息可能被第三方收集在这些 GitHub 数据汇编中。 如果您不希望自己的用户个人信息出现在第三方的 GitHub 数据汇编中,请不要公开自己的用户个人信息,并确保在您的用户个人资料和 [Git 提交设置](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)中[将您的电子邮件地址配置为私密](https://github.com/settings/emails)。 在当前版本中,用户的电子邮件地址默认设置为私密,但旧版 GitHub 的用户可能需要更新其设置。 +Your User Personal Information associated with your content could be gathered by third parties in these compilations of GitHub data. If you do not want your User Personal Information to appear in third parties’ compilations of GitHub data, please do not make your User Personal Information publicly available and be sure to [configure your email address to be private in your user profile](https://github.com/settings/emails) and in your [git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). We currently set Users' email address to private by default, but legacy GitHub Users may need to update their settings. -如果您要汇编 GitHub 数据,则必须遵守我们有关[信息使用](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions)和[隐私](/github/site-policy/github-acceptable-use-policies#7-privacy)的服务条款,并且只能出于我们用户授权的目的使用所收集的任何面向公众的用户个人信息。 例如,如果 GitHub 用户出于识别和归因的目的而公开电子邮件地址,请不要将该电子邮件地址用于向用户发送未经请求的电子邮件或出售用户个人信息(例如向招聘人员、猎头和职介所出售)或用于商业广告。 我们希望您合理地保护从 GitHub 收集的任何用户个人信息,并且必须及时回应 GitHub 或 GitHub 用户的投诉以及删除和“别碰”要求。 +If you would like to compile GitHub data, you must comply with our Terms of Service regarding [information usage](/github/site-policy/github-acceptable-use-policies#6-information-usage-restrictions) and [privacy](/github/site-policy/github-acceptable-use-policies#7-privacy), and you may only use any public-facing User Personal Information you gather for the purpose for which our user authorized it. For example, where a GitHub user has made an email address public-facing for the purpose of identification and attribution, do not use that email address for the purposes of sending unsolicited emails to users or selling User Personal Information, such as to recruiters, headhunters, and job boards, or for commercial advertising. We expect you to reasonably secure any User Personal Information you have gathered from GitHub, and to respond promptly to complaints, removal requests, and "do not contact" requests from GitHub or GitHub users. -同样,GitHub 上项目包含的公开用户个人信息可能在协作过程中被收集。 如果您要针对 GitHub 上的任何用户个人信息问题提出投诉,请参阅我们的[解决投诉](/github/site-policy/github-privacy-statement#resolving-complaints)部分。 +Similarly, projects on GitHub may include publicly available User Personal Information collected as part of the collaborative process. If you have a complaint about any User Personal Information on GitHub, please see our section on [resolving complaints](/github/site-policy/github-privacy-statement#resolving-complaints). -### 组织 +### Organizations -您可以通过在 GitHub 上的操作来表明您愿意分享自己的用户个人信息。 如果您与组织协作或成为组织成员,则其帐户所有者可能会收到您的用户个人信息。 当您接受组织邀请时,您将被告知所有者可以看到的信息类型(更多信息请参阅[关于组织成员](/github/setting-up-and-managing-your-github-user-account/about-organization-membership))。 如果您接受含有[验证域](/organizations/managing-organization-settings/verifying-your-organizations-domain)的组织的邀请,则该组织的所有者将能够在该组织的验证域中查看您的完整电子邮件地址。 +You may indicate, through your actions on GitHub, that you are willing to share your User Personal Information. If you collaborate on or become a member of an Organization, then its Account owners may receive your User Personal Information. When you accept an invitation to an Organization, you will be notified of the types of information owners may be able to see (for more information, see [About Organization Membership](/github/setting-up-and-managing-your-github-user-account/about-organization-membership)). If you accept an invitation to an Organization with a [verified domain](/organizations/managing-organization-settings/verifying-your-organizations-domain), then the owners of that Organization will be able to see your full email address(es) within that Organization's verified domain(s). -请注意,GitHub 可能会将您的用户名、[使用信息](#usage-information)和[设备信息](#device-information)分享给您所属组织的所有者,但提供这些用户个人信息的目的仅限于调查或响应可能影响或损害该特定组织安全性的安全事件。 +Please note, GitHub may share your username, [Usage Information](#usage-information), and [Device Information](#device-information) with the owner(s) of the Organization you are a member of, to the extent that your User Personal Information is provided only to investigate or respond to a security incident that affects or compromises the security of that particular Organization. -如果您与已同意[公司服务条款](/github/site-policy/github-corporate-terms-of-service)、数据保护附录 (DPA) 和本隐私声明的帐户进行协作或成为其成员,则对于您在该帐户中的活动,当本隐私声明与 DPA 之间发生任何冲突时,以 DPA 为准。 +If you collaborate on or become a member of an Account that has agreed to the [Corporate Terms of Service](/github/site-policy/github-corporate-terms-of-service) and a Data Protection Addendum (DPA) to this Privacy Statement, then that DPA governs in the event of any conflicts between this Privacy Statement and the DPA with respect to your activity in the Account. -请联系帐户所有者,详细了解他们在组织中如何处理您的用户个人信息,以及您访问、更新、更改或删除存储在该帐户中的用户个人信息的方式。 +Please contact the Account owners for more information about how they might process your User Personal Information in their Organization and the ways for you to access, update, alter, or delete the User Personal Information stored in the Account. -## 其他服务 +## Additional services -### 第三方应用程序 +### Third party applications -您可以选择在自己的帐户中启用或添加第三方应用程序(称为“开发者产品”)。 这些开发者产品并非使用 GitHub 的必要条件。 我们会在您要求时(例如从 Marketplace 购买开发者产品)将您的用户个人信息分享给第三方;但是,对于您使用第三方开发者产品以及您选择与之分享的用户个人信息,您自行负责。 您可以查看我们的 [API 文档](/rest/reference/users),以了解您使用自己的 GitHub 个人资料向开发者产品验证时会提供哪些信息。 +You have the option of enabling or adding third-party applications, known as "Developer Products," to your Account. These Developer Products are not necessary for your use of GitHub. We will share your User Personal Information with third parties when you ask us to, such as by purchasing a Developer Product from the Marketplace; however, you are responsible for your use of the third-party Developer Product and for the amount of User Personal Information you choose to share with it. You can check our [API documentation](/rest/reference/users) to see what information is provided when you authenticate into a Developer Product using your GitHub profile. ### GitHub Pages -如果您创建 GitHub Pages 网站,则您有责任发布隐私声明,准确说明您如何收集、使用和分享个人信息和其他访客信息,以及如何遵守适用的数据隐私法律、法规和条例。 请注意,GitHub 可能会从 GitHub Pages 网站的访客收集用户个人信息,包括访客 IP 地址的日志,以履行法律义务、维护网站和服务的安全性和完整性。 +If you create a GitHub Pages website, it is your responsibility to post a privacy statement that accurately describes how you collect, use, and share personal information and other visitor information, and how you comply with applicable data privacy laws, rules, and regulations. Please note that GitHub may collect User Personal Information from visitors to your GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the security and integrity of the Website and the Service. -### GitHub 应用程序 +### GitHub applications -您还可以在自己的帐户中添加 GitHub 的应用程序,例如我们的 Desktop 应用程序、Atom 应用程序或其他应用程序和帐户功能。 这些应用程序都有其各自的条款,并且可能收集不同类型的用户个人信息;但是,所有 GitHub 应用程序均受本隐私声明的约束,我们只收集必要的用户个人信息,并且仅用于您许可的目的。 +You can also add applications from GitHub, such as our Desktop app, our Atom application, or other application and account features, to your Account. These applications each have their own terms and may collect different kinds of User Personal Information; however, all GitHub applications are subject to this Privacy Statement, and we collect the amount of User Personal Information necessary, and use it only for the purpose for which you have given it to us. -## 您如何访问和控制我们收集的信息 +## How you can access and control the information we collect -如果您已经是 GitHub 用户,则可以通过[编辑用户个人资料](https://github.com/settings/profile)或联系 [GitHub 支持](https://support.github.com/contact?tags=docs-policy),访问、更新、更改或删除您的基本用户个人资料信息。 您可以在个人资料中限制信息、保持更新个人信息或者联系 [GitHub 支持](https://support.github.com/contact?tags=docs-policy),以控制我们收集的信息。 +If you're already a GitHub user, you may access, update, alter, or delete your basic user profile information by [editing your user profile](https://github.com/settings/profile) or contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). You can control the information we collect about you by limiting what information is in your profile, by keeping your information current, or by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -如果 GitHub 处理您的信息,例如 [GitHub 从第三方](#information-we-collect-from-third-parties)获取的信息,但您没有帐户,则您可以通过联系 [GitHub 支持](https://support.github.com/contact?tags=docs-policy),根据适用法律,访问、更新、更改、删除或反对处理您的个人信息。 +If GitHub processes information about you, such as information [GitHub receives from third parties](#information-we-collect-from-third-parties), and you do not have an account, then you may, subject to applicable law, access, update, alter, delete, or object to the processing of your personal information by contacting [GitHub Support](https://support.github.com/contact?tags=docs-policy). -### 数据可移植性 +### Data portability -作为 GitHub 用户,您可以随时带走您的数据。 例如,您可以[将您的仓库克隆到桌面](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop),也可以使用我们的[数据移植工具](https://developer.github.com/changes/2018-05-24-user-migration-api/)下载我们拥有的与您相关的信息。 +As a GitHub User, you can always take your data with you. You can [clone your repositories to your desktop](/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop), for example, or you can use our [Data Portability tools](https://developer.github.com/changes/2018-05-24-user-migration-api/) to download information we have about you. -### 数据保留和删除 +### Data retention and deletion of data -一般来说,只要您的帐户处于活动状态或需要为您提供服务,GitHub 就会保留您的用户个人信息。 +Generally, GitHub retains User Personal Information for as long as your account is active or as needed to provide you services. -如果您想取消帐户或删除用户个人信息,可以在[用户个人资料](https://github.com/settings/admin)中进行。 我们将根据需要保留并使用您的信息,以履行我们的法律义务、解决争端和执行我们的协议,但是除非法律要求,否则我们将在您请求后 90 天内(在合理时间内)删除您的完整个人资料。 您可以联系[GitHub 支持](https://support.github.com/contact?tags=docs-policy),请求在 30 天内删除您的数据,但需要征得我们的同意。 +If you would like to cancel your account or delete your User Personal Information, you may do so in your [user profile](https://github.com/settings/admin). We retain and use your information as necessary to comply with our legal obligations, resolve disputes, and enforce our agreements, but barring legal requirements, we will delete your full profile (within reason) within 90 days of your request. You may contact [GitHub Support](https://support.github.com/contact?tags=docs-policy) to request the erasure of the data we process on the basis of consent within 30 days. -删除帐户后,某些数据,例如对其他用户仓库的贡献和对其他议题的评论,仍然保留。 但是,我们通过将其与[空用户](https://github.com/ghost)相关联,从议题、拉取请求和评论的作者字段中删除或去识别化您的用户个人信息,包括您的用户名和电子邮件地址。 +After an account has been deleted, certain data, such as contributions to other Users' repositories and comments in others' issues, will remain. However, we will delete or de-identify your User Personal Information, including your username and email address, from the author field of issues, pull requests, and comments by associating them with a [ghost user](https://github.com/ghost). -也就是说,[通过 Git 提交设置](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)提供的电子邮件地址将始终与您在 Git 系统中的提交相关联。 如果您已选择将自己的电子邮件地址设为私密,则还应更新您的 Git 提交设置。 我们无法更改或删除 Git 提交历史记录中的数据 — 虽然 Git 软件设计用于维护记录,但我们让您来控制在该记录中放入哪些信息。 +That said, the email address you have supplied [via your Git commit settings](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address) will always be associated with your commits in the Git system. If you choose to make your email address private, you should also update your Git commit settings. We are unable to change or delete data in the Git commit history — the Git software is designed to maintain a record — but we do enable you to control what information you put in that record. -## 我们使用 cookie 和跟踪技术 +## Our use of cookies and tracking -### Cookie +### Cookies -GitHub 仅使用绝对必要的 Cookie。 Cookie 是网站通常存储在访客的计算机硬盘或移动设备上的小型文本文件。 +GitHub only uses strictly necessary cookies. Cookies are small text files that websites often store on computer hard drives or mobile devices of visitors. -我们仅使用 Cookie 来提供、保障和改进我们的服务。 例如,我们使用它们来保持您的登录状态、记住您的偏好、出于安全目的识别您的设备、分析您使用服务的情况、编译统计报告以及为 GitHub 的未来发展提供信息。 我们使用自己的 Cookie 进行分析,但不使用任何第三方分析服务提供商。 +We use cookies solely to provide, secure, and improve our service. For example, we use them to keep you logged in, remember your preferences, identify your device for security purposes, analyze your use of our service, compile statistical reports, and provide information for future development of GitHub. We use our own cookies for analytics purposes, but do not use any third-party analytics service providers. -使用我们的服务,即表示您同意我们将这些类型的 cookie 放在您的计算机或设备上。 如果您禁止浏览器或设备接受这些 cookie,则将无法登录或使用我们的服务。 +By using our service, you agree that we can place these types of cookies on your computer or device. If you disable your browser or device’s ability to accept these cookies, you will not be able to log in or use our service. -我们提供了一个有关 [cookie 和跟踪技术](/github/site-policy/github-subprocessors-and-cookies)的网页,介绍我们设置的 cookie、对这些 cookie 的需求以及它们的类型(临时或永久)。 +We provide more information about [cookies on GitHub](/github/site-policy/github-subprocessors-and-cookies#cookies-on-github) on our [GitHub Subprocessors and Cookies](/github/site-policy/github-subprocessors-and-cookies) page that describes the cookies we set, the needs we have for those cookies, and the expiration of such cookies. ### DNT -“[别跟踪](https://www.eff.org/issues/do-not-track)”(DNT) 是有一种隐私首选项,如果您不希望在线服务(特别是广告网络)通过第三方跟踪服务收集和分享有关您在线活动的某类信息,您可以在浏览器中设置该选项。 GitHub 响应浏览器的 DNT 信号,并遵循[关于响应 DNT 信号的 W3C 标准](https://www.w3.org/TR/tracking-dnt/)。 如果您要设置浏览器以传达不希望被跟踪的信号,请查看浏览器的文档以了解如何启用该信号。 还有一些很适合阻止在线跟踪的应用程序,例如 [Privacy Badger](https://privacybadger.org/)。 +"[Do Not Track](https://www.eff.org/issues/do-not-track)" (DNT) is a privacy preference you can set in your browser if you do not want online services to collect and share certain kinds of information about your online activity from third party tracking services. GitHub responds to browser DNT signals and follows the [W3C standard for responding to DNT signals](https://www.w3.org/TR/tracking-dnt/). If you would like to set your browser to signal that you would not like to be tracked, please check your browser's documentation for how to enable that signal. There are also good applications that block online tracking, such as [Privacy Badger](https://privacybadger.org/). -## GitHub 如何保护您的信息 +## How GitHub secures your information -GitHub 采取所有合理必要的措施保护用户个人信息,使其免遭未经授权的访问、更改或破坏;保持数据准确性;并帮助确保用户个人信息的适当使用。 +GitHub takes all measures reasonably necessary to protect User Personal Information from unauthorized access, alteration, or destruction; maintain data accuracy; and help ensure the appropriate use of User Personal Information. -GitHub 实施明文规定的安全信息程序。 我们的程序: -- 符合行业公认的框架; -- 包括合理设计的安全保障措施,以保护用户数据的机密性、完整性、可用性和弹性; -- 适合 GitHub 业务运营的性质、规模和复杂性; -- 包括事件响应和数据泄露通知流程;以及 -- 遵守 GitHub 开展业务所在地区适用的信息安全相关法律和法规。 +GitHub enforces a written security information program. Our program: +- aligns with industry recognized frameworks; +- includes security safeguards reasonably designed to protect the confidentiality, integrity, availability, and resilience of our Users' data; +- is appropriate to the nature, size, and complexity of GitHub’s business operations; +- includes incident response and data breach notification processes; and +- complies with applicable information security-related laws and regulations in the geographic regions where GitHub does business. -如果出现涉及用户个人信息的数据泄露事件,我们会立即采取措施以减轻泄露影响并及时通知所有受影响的用户。 +In the event of a data breach that affects your User Personal Information, we will act promptly to mitigate the impact of a breach and notify any affected Users without undue delay. -GitHub 上的数据传输使用 SSH、HTTPS (TLS) 进行加密,git 仓库的内容在静态时进行加密。 我们在顶级数据中心管理自己的机笼和机架,物理和网络安全性俱佳,并且对通过第三方存储提供商存储的数据进行加密处理。 +Transmission of data on GitHub is encrypted using SSH, HTTPS (TLS), and git repository content is encrypted at rest. We manage our own cages and racks at top-tier data centers with high level of physical and network security, and when data is stored with a third-party storage provider, it is encrypted. -没有任何传输方法或电子存储方法是 100% 安全的。 因此,我们无法保证其绝对安全。 更多信息请参阅我们的[安全披露](https://github.com/security)。 +No method of transmission, or method of electronic storage, is 100% secure. Therefore, we cannot guarantee its absolute security. For more information, see our [security disclosures](https://github.com/security). -## GitHub 的全球隐私实践 +## GitHub's global privacy practices -GitHub, Inc. 和 GitHub B.V.(适用于欧洲经济区、英国和瑞士)是负责处理与服务相关个人信息的控制方 ,但以下情况除外:(a) 参与者添加到仓库的个人信息,在这种情况下,该仓库的所有者是控制方,GitHub 是处理方(或者,如果所有者充当处理方,则 GitHub 将为再处理方);或 (b) 您与 GitHub 签订了涵盖数据隐私保护的单独协议(例如数据处理协议)。 +GitHub, Inc. and, for those in the European Economic Area, the United Kingdom, and Switzerland, GitHub B.V. are the controllers responsible for the processing of your personal information in connection with the Service, except (a) with respect to personal information that was added to a repository by its contributors, in which case the owner of that repository is the controller and GitHub is the processor (or, if the owner acts as a processor, GitHub will be the subprocessor); or (b) when you and GitHub have entered into a separate agreement that covers data privacy (such as a Data Processing Agreement). -我们的地址是: +Our addresses are: -- GitHub, Inc., 88 Colin P. Kelly Jr. Street, San Francisco, CA 94107。 -- GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdam, The Netherlands。 +- GitHub, Inc., 88 Colin P. Kelly Jr. Street, San Francisco, CA 94107. +- GitHub B.V., Vijzelstraat 68-72, 1017 HL Amsterdam, The Netherlands. -我们按照本隐私声明在美国存储和处理我们收集的信息,但我们的服务提供商可能在美国境外存储和处理数据。 但是我们理解,不同国家和地区的用户对隐私保护有不同的预期,即使美国没有与其他国家/地区相同的隐私框架,我们也会努力满足这些需求。 +We store and process the information that we collect in the United States in accordance with this Privacy Statement, though our service providers may store and process data outside the United States. However, we understand that we have Users from different countries and regions with different privacy expectations, and we try to meet those needs even when the United States does not have the same privacy framework as other countries. -如本隐私声明所述,我们为世界各地的所有用户提供同样的高标准隐私保护,不论其原籍国或所在地,我们为我们提供的通知、选择、问责、安全、数据完整性、访问和追索水准而感到自豪。 无论我们在哪里开展业务,都会与我们的数据保护官合作,努力遵守适用的数据隐私法律,我们的数据保护官作为跨职能团队的一部分,负责监督我们的隐私合规工作。 此外,如果我们的供应商或附属公司有权访问用户个人信息,则他们必须签署协议,遵守我们的隐私政策和适用的数据隐私法律。 +We provide the same high standard of privacy protection—as described in this Privacy Statement—to all our users around the world, regardless of their country of origin or location, and we are proud of the levels of notice, choice, accountability, security, data integrity, access, and recourse we provide. We work hard to comply with the applicable data privacy laws wherever we do business, working with our Data Protection Officer as part of a cross-functional team that oversees our privacy compliance efforts. Additionally, if our vendors or affiliates have access to User Personal Information, they must sign agreements that require them to comply with our privacy policies and with applicable data privacy laws. -特点: +In particular: - - 我们在您同意的基础上收集您的用户个人信息,GitHub 提供明确的数据收集指导原则:不含糊、知情、具体、自愿同意。 - - 我只收集实现目的所需的最少量用户个人信息,除非您自己选择提供更多信息。 我们建议您只提供无压力分享的数据。 - - 我们提供简单的方法让您能够在法律允许的范围内访问、更改或删除我们收集的用户个人信息。 - - 对于用户个人信息,我们向用户提供通知、选择、问责、安全和访问,并且限制处理目的。 我们还为用户提供追索和执行方法。 + - GitHub provides clear methods of unambiguous, informed, specific, and freely given consent at the time of data collection, when we collect your User Personal Information using consent as a basis. + - We collect only the minimum amount of User Personal Information necessary for our purposes, unless you choose to provide more. We encourage you to only give us the amount of data you are comfortable sharing. + - We offer you simple methods of accessing, altering, or deleting the User Personal Information we have collected, where legally permitted. + - We provide our Users notice, choice, accountability, security, and access regarding their User Personal Information, and we limit the purpose for processing it. We also provide our Users a method of recourse and enforcement. -### 跨境数据传输 +### Cross-border data transfers -GitHub 处理美国境内外的个人信息,并依靠标准合同条款作为法律规定的机制,将数据从欧洲经济区、英国和瑞士合法转移到美国。 此外,GitHub 还通过了欧盟-美国和瑞士-美国隐私盾框架的认证。 要了解有关我们跨境数据传输的更多信息,请参阅我们的[全球隐私实践](/github/site-policy/global-privacy-practices)。 +GitHub processes personal information both inside and outside of the United States and relies on Standard Contractual Clauses as the legally provided mechanism to lawfully transfer data from the European Economic Area, the United Kingdom, and Switzerland to the United States. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about our cross-border data transfers, see our [Global Privacy Practices](/github/site-policy/global-privacy-practices). -## 我们如何与您交流 +## How we communicate with you -我们使用您的电子邮件地址与您通信,但需要征得您的同意,**并且以您的同意为前提**。 例如,如果您向我们的支持团队提出请求,我们将通过电子邮件答复您。 对于在 GitHub 上如何使用和分享您的电子邮件地址,您有很多控制权。 您可以在[用户个人资料](https://github.com/settings/emails)中管理您的通信首选项。 +We use your email address to communicate with you, if you've said that's okay, **and only for the reasons you’ve said that’s okay**. For example, if you contact our Support team with a request, we respond to you via email. You have a lot of control over how your email address is used and shared on and through GitHub. You may manage your communication preferences in your [user profile](https://github.com/settings/emails). -根据设计,Git 版本控制系统将许多操作与用户的电子邮件地址相关联,例如提交消息。 我们在很多方面无法更改 Git 系统。 如果您希望自己的电子邮件地址保持私密,即使在公共仓库中发表评论时也不可见,[您可以在用户个人资料中创建私密电子邮件地址](https://github.com/settings/emails)。 您还应[更新本地 Git 配置以使用您的私密电子邮件地址](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)。 这不会改变我们与您联系的方式,但会影响其他人查看您的情况。 在当前版本中,用户的电子邮件地址默认设置为私密,但旧版 GitHub 的用户可能需要更新其设置。 有关提交消息中电子邮件地址的更多信息,请参阅[此处](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address)。 +By design, the Git version control system associates many actions with a User's email address, such as commit messages. We are not able to change many aspects of the Git system. If you would like your email address to remain private, even when you’re commenting on public repositories, [you can create a private email address in your user profile](https://github.com/settings/emails). You should also [update your local Git configuration to use your private email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). This will not change how we contact you, but it will affect how others see you. We set current Users' email address private by default, but legacy GitHub Users may need to update their settings. Please see more about email addresses in commit messages [here](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address). -根据您的[电子邮件设置](https://github.com/settings/emails),GitHub 有时可能会发送有关新动态的通知电子邮件,例如您关注的仓库中有变动、出现新功能、有反馈请求、有重要政策变动或需要提供客户支持。 根据您的选择和适用的法律法规,我们还可能会发送营销电子邮件。 在我们发送的每封营销电子邮件的底部,都有一个“退订”链接。 请注意,您不能选择不接收我们的重要通讯,例如来自我们支持团队的电子邮件或系统电子邮件,但是您可以在个人资料中配置通知设置以选择不接收其他通讯。 +Depending on your [email settings](https://github.com/settings/emails), GitHub may occasionally send notification emails about changes in a repository you’re watching, new features, requests for feedback, important policy changes, or to offer customer support. We also send marketing emails, based on your choices and in accordance with applicable laws and regulations. There's an “unsubscribe” link located at the bottom of each of the marketing emails we send you. Please note that you cannot opt out of receiving important communications from us, such as emails from our Support team or system emails, but you can configure your notifications settings in your profile to opt out of other communications. -我们的电子邮件可能包含一个像素标签,它是一个很小的清晰图像,可以告诉我们您是否打开了电子邮件以及您的 IP 地址是什么。 我们使用此像素标签使我们的电子邮件对您更有效,并确保我们不会发送您不需要的电子邮件。 +Our emails may contain a pixel tag, which is a small, clear image that can tell us whether or not you have opened an email and what your IP address is. We use this pixel tag to make our email more effective for you and to make sure we’re not sending you unwanted email. -## 解决投诉 +## Resolving complaints -如果您对 GitHub 处理您的用户个人信息的方式有疑问,请立即告诉我们。 我们乐于提供帮助。 您可以通过填写[隐私问题联系表](https://support.github.com/contact/privacy)联系我们。 也可以直接向我们发送电子邮件,电子邮件地址:privacy@github.com,主题行注明“隐私问题”。 我们将尽快回复 — 最迟不超过 45 天。 +If you have concerns about the way GitHub is handling your User Personal Information, please let us know immediately. We want to help. You may contact us by filling out the [Privacy contact form](https://support.github.com/contact/privacy). You may also email us directly at privacy@github.com with the subject line "Privacy Concerns." We will respond promptly — within 45 days at the latest. -您还可以直接联系我们的数据保护官。 +You may also contact our Data Protection Officer directly. -| 我们的美国总部 | 我们的欧盟办事处 | -| ------------------------- | ------------------ | -| GitHub 数据保护官 | GitHub BV | +| Our United States HQ | Our EU Office | +|---|---| +| GitHub Data Protection Officer | GitHub BV | | 88 Colin P. Kelly Jr. St. | Vijzelstraat 68-72 | -| San Francisco, CA 94107 | 1017 HL Amsterdam | -| 美国 | 荷兰 | -| privacy@github.com | privacy@github.com | +| San Francisco, CA 94107 | 1017 HL Amsterdam | +| United States | The Netherlands | +| privacy@github.com | privacy@github.com | -### 争议解决流程 +### Dispute resolution process -万一您和 GitHub 之间就我们处理用户个人信息的问题出现争议,我们将尽最大努力予以解决。 此外,如果您是欧盟成员国的居民,您有权向当地监管机构投诉,并且您可能拥有更多[选项](/github/site-policy/global-privacy-practices#dispute-resolution-process)。 +In the unlikely event that a dispute arises between you and GitHub regarding our handling of your User Personal Information, we will do our best to resolve it. Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority, and you might have more [options](/github/site-policy/global-privacy-practices#dispute-resolution-process). -## 隐私声明的变更 +## Changes to our Privacy Statement -GitHub 可能会不时更改我们的隐私声明,不过大多数情况都是小变动。 如果本隐私声明发生重大变更,我们会在变更生效之前至少 30 天通知用户 - 在我们网站的主页上发布通知,或者发送电子邮件到您的 GitHub 帐户中指定的主电子邮件地址。 我们还会更新我们的[站点政策仓库](https://github.com/github/site-policy/),通过它可跟踪本政策的所有变更。 对于本隐私声明的其他更改,我们建议用户[关注](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository)或经常查看我们的网站政策仓库。 +Although most changes are likely to be minor, GitHub may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page or sending email to the primary email address specified in your GitHub account. We will also update our [Site Policy repository](https://github.com/github/site-policy/), which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to [watch](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#configuring-your-watch-settings-for-an-individual-repository) or to check our Site Policy repository frequently. -## 许可 +## License -本隐私声明的许可采用[知识共享零许可](https://creativecommons.org/publicdomain/zero/1.0/)原则。 更多信息请参阅我们的[站点政策仓库](https://github.com/github/site-policy#license)。 +This Privacy Statement is licensed under this [Creative Commons Zero license](https://creativecommons.org/publicdomain/zero/1.0/). For details, see our [site-policy repository](https://github.com/github/site-policy#license). -## 联系 GitHub -有关 GitHub 隐私声明或信息实践的问题,请通过我们的[隐私问题联系表](https://support.github.com/contact/privacy)联系我们。 +## Contacting GitHub +Questions regarding GitHub's Privacy Statement or information practices should be directed to our [Privacy contact form](https://support.github.com/contact/privacy). -## 翻译 +## Translations -以下是本文档翻译成其他语言的版本。 如果任何这些版本与英文版之间存在任何冲突、含糊或明显不一致,以英文版为准。 +Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. -### 法语 -Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(12.20.19)(FR).pdf) +### French +Cliquez ici pour obtenir la version française: [Déclaration de confidentialité de GitHub](/assets/images/help/site-policy/github-privacy-statement(07.22.20)(FR).pdf) -### 其他翻译版本: +### Other translations -有关本声明翻译成其他语言的版本,请访问 [https://docs.github.com/](/),然后从“English(英文)”下的下拉菜单中选择语言。 +For translations of this statement into other languages, please visit [https://docs.github.com/](/) and select a language from the drop-down menu under “English.” diff --git a/translations/zh-CN/content/github/site-policy/github-subprocessors-and-cookies.md b/translations/zh-CN/content/github/site-policy/github-subprocessors-and-cookies.md index 35ffa2c6ac..03ca56894a 100644 --- a/translations/zh-CN/content/github/site-policy/github-subprocessors-and-cookies.md +++ b/translations/zh-CN/content/github/site-policy/github-subprocessors-and-cookies.md @@ -1,10 +1,10 @@ --- -title: GitHub 子处理器和 Cookie +title: GitHub Subprocessors and Cookies redirect_from: - - /subprocessors/ - - /github-subprocessors/ - - /github-tracking/ - - /github-cookies/ + - /subprocessors + - /github-subprocessors + - /github-tracking + - /github-cookies - /articles/github-subprocessors-and-cookies versions: fpt: '*' @@ -13,68 +13,68 @@ topics: - Legal --- -生效日期:**2021 年 4 月 2 日** +Effective date: **April 2, 2021** -GitHub 在如何使用您的数据、如何收集您的数据以及与谁分享您的数据方面提供很大的透明度。 为此,我们提供此页面,以详细介绍了我们的[子处理商](#github-subprocessors),以及我们如何使用 [cookie](#cookies-on-github)。 +GitHub provides a great deal of transparency regarding how we use your data, how we collect your data, and with whom we share your data. To that end, we provide this page, which details [our subprocessors](#github-subprocessors), and how we use [cookies](#cookies-on-github). -## GitHub 子处理商 +## GitHub Subprocessors -我们与第三方子处理商(例如我们的供应商和服务提供商)分享您的信息时,我们仍对您的信息负责。 我们在引入新供应商时,会竭尽所能保持您的信任,并且要求所有供应商与我们签订数据保护协议,以约束他们对用户个人信息(定义见[隐私声明](/articles/github-privacy-statement/))的处理。 +When we share your information with third party subprocessors, such as our vendors and service providers, we remain responsible for it. We work very hard to maintain your trust when we bring on new vendors, and we require all vendors to enter into data protection agreements with us that restrict their processing of Users' Personal Information (as defined in the [Privacy Statement](/articles/github-privacy-statement/)). -| 子处理商名称 | 处理说明 | 处理地点 | 公司地点 | -|:------------------------ |:----------------- |:---- |:---- | -| Automattic | 博客服务 | 美国 | 美国 | -| AWS Amazon | 数据托管 | 美国 | 美国 | -| Braintree (PayPal) | 订阅费用信用卡支付处理商 | 美国 | 美国 | -| Clearbit | 营销数据充实服务 | 美国 | 美国 | -| Discourse | 社区论坛软件提供商 | 美国 | 美国 | -| Eloqua | 营销活动自动化 | 美国 | 美国 | -| Google Apps | 公司内部基础设施 | 美国 | 美国 | -| MailChimp | 客户事件单邮件服务提供商 | 美国 | 美国 | -| Mailgun | 交易邮件服务提供商 | 美国 | 美国 | -| Microsoft | Microsoft 服务 | 美国 | 美国 | -| Nexmo | 短信通知提供商 | 美国 | 美国 | -| Salesforce.com | 客户关系管理 | 美国 | 美国 | -| Sentry.io | 应用程序监控提供商 | 美国 | 美国 | -| Stripe | 支付服务提供商 | 美国 | 美国 | -| Twilio & Twilio Sendgrid | 短信通知提供商和交易邮件服务提供商 | 美国 | 美国 | -| Zendesk | 客户支持事件单系统 | 美国 | 美国 | -| Zuora | 公司计费系统 | 美国 | 美国 | +| Name of Subprocessor | Description of Processing | Location of Processing | Corporate Location +|:---|:---|:---|:---| +| Automattic | Blogging service | United States | United States | +| AWS Amazon | Data hosting | United States | United States | +| Braintree (PayPal) | Subscription credit card payment processor | United States | United States | +| Clearbit | Marketing data enrichment service | United States | United States | +| Discourse | Community forum software provider | United States | United States | +| Eloqua | Marketing campaign automation | United States | United States | +| Google Apps | Internal company infrastructure | United States | United States | +| MailChimp | Customer ticketing mail services provider | United States | United States | +| Mailgun | Transactional mail services provider | United States | United States | +| Microsoft | Microsoft Services | United States | United States | +| Nexmo | SMS notification provider | United States | United States | +| Salesforce.com | Customer relations management | United States | United States | +| Sentry.io | Application monitoring provider | United States | United States | +| Stripe | Payment provider | United States | United States | +| Twilio & Twilio Sendgrid | SMS notification provider & transactional mail service provider | United States | United States | +| Zendesk | Customer support ticketing system | United States | United States | +| Zuora | Corporate billing system | United States | United States | -在我们引入新的子处理商来处理用户个人信息、删除子处理商或更改使用子处理商的方式时,我们将更新本页面。 如果您对新的子处理商有疑问或疑虑,我们乐意提供帮助。 请通过 {% data variables.contact.contact_privacy %} 联系我们。 +When we bring on a new subprocessor who handles our Users' Personal Information, or remove a subprocessor, or we change how we use a subprocessor, we will update this page. If you have questions or concerns about a new subprocessor, we'd be happy to help. Please contact us via {% data variables.contact.contact_privacy %}. -## GitHub 上的 Cookie +## Cookies on GitHub -GitHub 使用 Cookie 来提供和保护我们的网站,并分析我们网站的使用情况,以便为您提供出色的用户体验。 为此,我们制作了本页面,详细介绍[我们的子处理商](#github-subprocessors)、我们如何使用 [cookie](#cookies-on-github)、在何处进行跟踪以及如何[在 GitHub 上执行跟踪](#tracking-on-github)。 +GitHub uses cookies to provide and secure our websites, as well as to analyze the usage of our websites, in order to offer you a great user experience. Please take a look at our [Privacy Statement](/github/site-policy/github-privacy-statement#our-use-of-cookies-and-tracking) if you’d like more information about cookies, and on how and why we use them. + +Since the number and names of cookies may change, the table below may be updated from time to time. -由于 Cookie 的数量和名称可能会发生变化,下表可能会不时更新。 +| Service Provider | Cookie Name | Description | Expiration* | +|:---|:---|:---|:---| +| GitHub | `app_manifest_token` | This cookie is used during the App Manifest flow to maintain the state of the flow during the redirect to fetch a user session. | five minutes | +| GitHub | `color_mode` | This cookie is used to indicate the user selected theme preference. | session | +| GitHub | `_device_id` | This cookie is used to track recognized devices for security purposes. | one year | +| GitHub | `dotcom_user` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `_gh_ent` | This cookie is used for temporary application and framework state between pages like what step the customer is on in a multiple step form. | two weeks | +| GitHub | `_gh_sess` | This cookie is used for temporary application and framework state between pages like what step the user is on in a multiple step form. | session | +| GitHub | `gist_oauth_csrf` | This cookie is set by Gist to ensure the user that started the oauth flow is the same user that completes it. | deleted when oauth state is validated | +| GitHub | `gist_user_session` | This cookie is used by Gist when running on a separate host. | two weeks | +| GitHub | `has_recent_activity` | This cookie is used to prevent showing the security interstitial to users that have visited the app recently. | one hour | +| GitHub | `__Host-gist_user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `__Host-user_session_same_site` | This cookie is set to ensure that browsers that support SameSite cookies can check to see if a request originates from GitHub. | two weeks | +| GitHub | `logged_in` | This cookie is used to signal to us that the user is already logged in. | one year | +| GitHub | `marketplace_repository_ids` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `marketplace_suggested_target_id` | This cookie is used for the marketplace installation flow. | one hour | +| GitHub | `_octo` | This cookie is used for session management including caching of dynamic content, conditional feature access, support request metadata, and first party analytics. | one year | +| GitHub | `org_transform_notice` | This cookie is used to provide notice during organization transforms. | one hour | +| GitHub | `private_mode_user_session` | This cookie is used for Enterprise authentication requests. | two weeks | +| GitHub | `saml_csrf_token` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_csrf_token_legacy` | This cookie is set by SAML auth path method to associate a token with the client. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `saml_return_to_legacy` | This cookie is set by the SAML auth path method to maintain state during the SAML authentication loop. | until user closes browser or completes authentication request | +| GitHub | `tz` | This cookie allows us to customize timestamps to your time zone. | session | +| GitHub | `user_session` | This cookie is used to log you in. | two weeks | -| Cookie 名称 | 原因 | 描述 | 过期* | -|:--------- |:------------------------------------ |:------------------------------------------------------- |:------------------ | -| GitHub | `app_manifest_token` | 此 cookie 用于表明页面之间的临时应用程序和框架状态,例如用户在多步骤表单中处于哪一步。 | 5 分钟 | -| GitHub | `color_mode` | 此 cookie 用于指示用户选择的主题首选项。 | 会话 | -| GitHub | `_device_id` | 出于安全考虑,此 Cookie 用于跟踪已识别的设备。 | 1 年 | -| GitHub | `dotcom_user` | 此 cookie 用于向我们表明用户已登录。 | 1 年 | -| GitHub | `_gh_ent` | 此 cookie 用于表明页面之间的临时应用程序和框架状态,例如客户在多步骤表单中处于哪一步。 | 两周 | -| GitHub | `_gh_sess` | 此 cookie 用于表明页面之间的临时应用程序和框架状态,例如用户在多步骤表单中处于哪一步。 | 会话 | -| GitHub | `gist_oauth_csrf` | 此 cookie 由 Gist 设置,以确保启动 oauth 流的用户与完成它的用户是同一个用户。 | 验证 oauth 状态时删除 | -| GitHub | `gist_user_session` | 此 cookie 由 Gist 在单独主机上运行时使用。 | 两周 | -| GitHub | `has_recent_activity` | 此 Cookie 用于防止向最近访问过应用程序的用户显示安全插页。 | 1 小时 | -| GitHub | `__Host-gist_user_session_same_site` | 此 cookie 设置为确保支持 SameSite cookie 的浏览器可以检查请求是否来自 GitHub。 | 两周 | -| GitHub | `__Host-user_session_same_site` | 此 cookie 设置为确保支持 SameSite cookie 的浏览器可以检查请求是否来自 GitHub。 | 两周 | -| GitHub | `logged_in` | 此 cookie 用于向我们表明用户已登录。 | 1 年 | -| GitHub | `marketplace_repository_ids` | 此 cookie 用于您的登录。 | 1 小时 | -| GitHub | `marketplace_suggested_target_id` | 此 cookie 用于您的登录。 | 1 小时 | -| GitHub | `_octo` | 此 Cookie 用于会话管理,包括动态内容缓存、条件功能访问、支持请求元数据和第一方分析。 | 1 年 | -| GitHub | `org_transform_notice` | 此 Cookie 用于在组织转换期间提供通知。 | 1 小时 | -| GitHub | `github.com/personal` | 此 cookie 用于 Google Analytics。 | 两周 | -| GitHub | `saml_csrf_token` | 此 cookie 由 SAML 身份验证路径方法设置,以将令牌与客户端相关联。 | 直到用户关闭浏览器或完成身份验证请求 | -| GitHub | `saml_csrf_token_legacy` | 此 cookie 由 SAML 身份验证路径方法设置,以将令牌与客户端相关联。 | 直到用户关闭浏览器或完成身份验证请求 | -| GitHub | `saml_return_to` | 此 cookie 由 SAML 身份验证路径方法设置,以在 SAML 身份验证循环期间维持状态。 | 直到用户关闭浏览器或完成身份验证请求 | -| GitHub | `saml_return_to_legacy` | 此 cookie 由 SAML 身份验证路径方法设置,以在 SAML 身份验证循环期间维持状态。 | 直到用户关闭浏览器或完成身份验证请求 | -| GitHub | `tz` | 此 Cookie 允许我们根据您的时区自定义时间戳。 | 会话 | -| GitHub | `user_session` | 此 cookie 用于您的登录。 | 两周 | +_*_ The **expiration** dates for the cookies listed below generally apply on a rolling basis. -_*_ GitHub 出于以下原因在用户设备上放置以下 cookie: - -(!) 请注意,虽然我们将第三方 Cookie 的使用限制在呈现外部内容时提供外部功能的需要,但我们网站上的某些页面可能会设置其他第三方 Cookie。 例如,我们可能会嵌入来自其他网站的内容(例如视频),而该网站可能放置 cookie。 虽然我们尽可能减少这些第三方 cookie,但我们无法始终控制这些第三方内容放置哪些 cookie。 +(!) Please note while we limit our use of third party cookies to those necessary to provide external functionality when rendering external content, certain pages on our website may set other third party cookies. For example, we may embed content, such as videos, from another site that sets a cookie. While we try to minimize these third party cookies, we can’t always control what cookies this third party content sets. diff --git a/translations/zh-CN/content/github/site-policy/github-terms-of-service.md b/translations/zh-CN/content/github/site-policy/github-terms-of-service.md index a52889b4c1..9ac616977a 100644 --- a/translations/zh-CN/content/github/site-policy/github-terms-of-service.md +++ b/translations/zh-CN/content/github/site-policy/github-terms-of-service.md @@ -1,10 +1,10 @@ --- title: GitHub Terms of Service redirect_from: - - /tos/ - - /terms/ - - /terms-of-service/ - - /github-terms-of-service-draft/ + - /tos + - /terms + - /terms-of-service + - /github-terms-of-service-draft - /articles/github-terms-of-service versions: fpt: '*' diff --git a/translations/zh-CN/content/github/site-policy/github-username-policy.md b/translations/zh-CN/content/github/site-policy/github-username-policy.md index 4706d21916..84c19fe327 100644 --- a/translations/zh-CN/content/github/site-policy/github-username-policy.md +++ b/translations/zh-CN/content/github/site-policy/github-username-policy.md @@ -1,7 +1,7 @@ --- -title: GitHub 用户名政策 +title: GitHub Username Policy redirect_from: - - /articles/name-squatting-policy/ + - /articles/name-squatting-policy - /articles/github-username-policy versions: fpt: '*' @@ -10,18 +10,18 @@ topics: - Legal --- -GitHub 帐户名按先到先得的方式提供,预期立即使用。 +GitHub account names are available on a first-come, first-served basis, and are intended for immediate and active use. -## 如果已获取所需的用户名,该怎么办? +## What if the username I want is already taken? -请记住,并非 GitHub 上的所有活动都是公开的;因此,并非所有活动都是公开的,没有可见活动的帐户可能正在使用中。 +Keep in mind that not all activity on GitHub is publicly visible; accounts with no visible activity may be in active use. -如果您想要的用户名已被占用,请考虑其他名称或唯一变体。 使用数字、连字符或替代拼写可以帮助您识别想要的用户名仍然可用。 +If the username you want has already been claimed, consider other names or unique variations. Using a number, hyphen, or an alternative spelling might help you identify a desirable username still available. -## 商标政策 +## Trademark Policy -如果您认为某人的帐户侵犯了您的商标权,您可以在我们的[商标政策](/articles/github-trademark-policy/)页面找到更多有关商标投诉的信息。 +If you believe someone's account is violating your trademark rights, you can find more information about making a trademark complaint on our [Trademark Policy](/articles/github-trademark-policy/) page. -## 名称占用政策 +## Name Squatting Policy -GitHub 禁止占用帐户名,并且不得将帐户名留等以后使用而不予以激活。 违反此名称占用政策的帐户可能会被删除或重命名,恕不另行通知。 禁止试图出售、购买或索取其他形式的付款以换取帐户名,这可能导致帐户永久暂停。 +GitHub prohibits account name squatting, and account names may not be reserved or inactively held for future use. Accounts violating this name squatting policy may be removed or renamed without notice. Attempts to sell, buy, or solicit other forms of payment in exchange for account names are prohibited and may result in permanent account suspension. diff --git a/translations/zh-CN/content/github/site-policy/global-privacy-practices.md b/translations/zh-CN/content/github/site-policy/global-privacy-practices.md index c35c49cef4..4d12086d81 100644 --- a/translations/zh-CN/content/github/site-policy/global-privacy-practices.md +++ b/translations/zh-CN/content/github/site-policy/global-privacy-practices.md @@ -1,7 +1,7 @@ --- -title: 全球隐私实践 +title: Global Privacy Practices redirect_from: - - /eu-safe-harbor/ + - /eu-safe-harbor - /articles/global-privacy-practices versions: fpt: '*' @@ -10,66 +10,66 @@ topics: - Legal --- -生效日期:2020 年 7 月 22 日。 +Effective date: July 22, 2020 -如 GitHub 的[隐私声明](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)所述,GitHub 为世界各地的所有用户和客户提供同样的高标准隐私保护,不论其原籍国或所在地,GitHub 为我们提供的通知、选择、问责、安全、数据完整性、访问和追索水准而感到自豪。 +GitHub provides the same high standard of privacy protection—as described in GitHub’s [Privacy Statement](/github/site-policy/github-privacy-statement#githubs-global-privacy-practices)—to all our users and customers around the world, regardless of their country of origin or location, and GitHub is proud of the level of notice, choice, accountability, security, data integrity, access, and recourse we provide. -GitHub 还遵守有关从欧洲经济区、英国和瑞士(统称为"欧盟")向美国传输数据的某些法律框架。 进行此类传输时,GitHub 依赖标准合同条款作为法律机制,以帮助确保您的权利和保护与您的个人信息同行。 此外,GitHub 还通过了欧盟-美国和瑞士-美国隐私盾框架的认证。 要了解有关欧洲委员会关于国际数据传输之决定的更多信息,请参阅[欧洲委员会网站](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en)上的这篇文章。 +GitHub also complies with certain legal frameworks relating to the transfer of data from the European Economic Area, the United Kingdom, and Switzerland (collectively, “EU”) to the United States. When GitHub engages in such transfers, GitHub relies on Standard Contractual Clauses as the legal mechanism to help ensure your rights and protections travel with your personal information. In addition, GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks. To learn more about the European Commission’s decisions on international data transfer, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection_en). -## 标准合同条款 +## Standard Contractual Clauses -GitHub 依靠欧洲委员会批准的标准合同条款 (“SCCs”) 作为从欧盟转移数据的法律机制。 SCCs 是公司之间转移个人数据的合同承诺,约束他们保护这些数据的隐私和安全。 GitHub 采用了 SCCs,以便将数据从欧盟转移到被欧洲委员会视为无法充分保护个人数据(包括保护向美国的数据转移)的国家/地区时,可以保护必要的数据流。 +GitHub relies on the European Commission-approved Standard Contractual Clauses (“SCCs”) as a legal mechanism for data transfers from the EU. SCCs are contractual commitments between companies transferring personal data, binding them to protect the privacy and security of such data. GitHub adopted SCCs so that the necessary data flows can be protected when transferred outside the EU to countries which have not been deemed by the European Commission to adequately protect personal data, including protecting data transfers to the United States. -要了解有关 SCCs 的更多信息,请参阅[欧洲委员会网站](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en)上的这篇文章。 +To learn more about SCCs, see this article on the [European Commission website](https://ec.europa.eu/info/law/law-topic/data-protection/international-dimension-data-protection/standard-contractual-clauses-scc_en). -## 隐私盾框架 +## Privacy Shield Framework -GitHub 已通过了欧盟-美国和瑞士-美国隐私盾框架及其所含承诺的认证,尽管 GitHub 并不依赖欧盟-美国隐私盾框架作为个人信息转移的法律依据(根据欧盟法院在 C-311/18 案中的判决)。 +GitHub is certified to the EU-US and Swiss-US Privacy Shield Frameworks and the commitments they entail, although GitHub does not rely on the EU-US Privacy Shield Framework as a legal basis for transfers of personal information in light of the judgment of the Court of Justice of the EU in Case C-311/18. -欧盟-美国和瑞士-美国隐私盾框架是美国商务部针对从欧盟、英国和瑞士转移到美国的用户个人信息之收集、使用和保留而制定的框架。 GitHub 已通过美国商务部遵守隐私盾原则的认证。 如果我们的供应商或关联公司处理用户个人信息的方式与任一隐私盾框架的原则不一致,则除非我们证明我们对造成损害的事件没有责任,否则 GitHub 仍会负责。 +The EU-US and Swiss-US Privacy Shield Frameworks are set forth by the US Department of Commerce regarding the collection, use, and retention of User Personal Information transferred from the European Union, the UK, and Switzerland to the United States. GitHub has certified to the Department of Commerce that it adheres to the Privacy Shield Principles. If our vendors or affiliates process User Personal Information on our behalf in a manner inconsistent with the principles of either Privacy Shield Framework, GitHub remains liable unless we prove we are not responsible for the event giving rise to the damage. -为尊重我们在隐私盾框架下的认证,如果这些全球隐私实践中的条款与隐私盾原则之间存在任何冲突,以隐私盾原则为准。 要详细了解隐私盾原则和查看我们的认证,请访问[隐私盾网站](https://www.privacyshield.gov/)。 +For purposes of our certifications under the Privacy Shield Frameworks, if there is any conflict between the terms in these Global Privacy Practices and the Privacy Shield Principles, the Privacy Shield Principles shall govern. To learn more about the Privacy Shield program, and to view our certification, visit the [Privacy Shield website](https://www.privacyshield.gov/). -隐私盾框架基于七项原则,GitHub 通过以下方式遵循这些原则: +The Privacy Shield Frameworks are based on seven principles, and GitHub adheres to them in the following ways: -- **通知** - - 我们在收集您的个人信息时会通知您。 - - 我们在[隐私声明](/articles/github-privacy-statement/)中告诉您,我们收集和使用您的信息的目的是什么、我们在什么限制条件下与谁分享该信息,以及您对自己数据的访问权限。 - - 我们告诉您,我们正在参与隐私盾框架以及这对您意味着什么。 - - 我们有一个 {% data variables.contact.contact_privacy %},遇到隐私权问题时可通过它联系我们。 - - 我们告诉您,在出现争议时您有权诉诸有约束力的仲裁,并且这对您是免费的。 - - 我们告诉您,我们受联邦贸易委员会的管辖。 -- **选择** - - 我们让您选择如何处理您的数据。 将数据用于超出您许可范围的用途之前,我们会告诉您并征得您的同意。 - - 我们将为您提供合理的选择机制。 -- **继续转移的问责制** - - 我们将您的信息转移给替我们处理数据的第三方时,该第三方必须与我们签订合同,按照我们的隐私声明保护这些数据。 我们根据隐私盾原则将您的数据转移给供应商后,我们仍对这些数据负责。 - - 我们只与第三方供应商分享他们完成交易所需的数据量。 -- **安全** - - 我们将采用[所有合理和适当的安全措施](https://github.com/security)保护您的个人信息。 -- **数据完整性和目的限制** - - 我们仅出于向您提供服务的相关目的收集您的数据。 - - 我们尽可能少地收集有关您的信息,除非您自己选择向我们提供更多信息。 - - 我们采取合理步骤,确保我们拥有的个人数据准确、最新、可靠且适用于预期用途。 -- **访问** - - 您始终可以在[用户个人资料](https://github.com/settings/profile)中访问您提供的数据。 您可以在那里访问、更新、更改或删除您的信息。 -- **追索、执行和责任** - - 如果您对我们的隐私实践有疑问,可通过 {% data variables.contact.contact_privacy %} 联系我们,我们最迟在 45 天内答复您。 - - 万一发生我们无法解决的争议,您可以免费申请有约束力的仲裁。 更多信息请参阅我们的[隐私声明](/articles/github-privacy-statement/)。 - - 我们将对相关的隐私实践进行定期审核,以核实我们是否遵守承诺。 - - 我们要求员工尊重我们的隐私承诺,违反隐私政策的行为将受到纪律处分,包括终止雇佣关系。 +- **Notice** + - We let you know when we're collecting your personal information. + - We let you know, in our [Privacy Statement](/articles/github-privacy-statement/), what purposes we have for collecting and using your information, who we share that information with and under what restrictions, and what access you have to your data. + - We let you know that we're participating in the Privacy Shield framework, and what that means to you. + - We have a {% data variables.contact.contact_privacy %} where you can contact us with questions about your privacy. + - We let you know about your right to invoke binding arbitration, provided at no cost to you, in the unlikely event of a dispute. + - We let you know that we are subject to the jurisdiction of the Federal Trade Commission. +- **Choice** + - We let you choose what happens to your data. Before we use your data for a purpose other than the one for which you gave it to us, we will let you know and get your permission. + - We will provide you with reasonable mechanisms to make your choices. +- **Accountability for Onward Transfer** + - When we transfer your information to third party vendors that are processing it on our behalf, we are only sending your data to third parties, under contract with us, that will safeguard it consistently with our Privacy Statement. When we transfer your data to our vendors under Privacy Shield, we remain responsible for it. + - We share only the amount of data with our third party vendors as is necessary to complete their transaction. +- **Security** + - We will protect your personal information with [all reasonable and appropriate security measures](https://github.com/security). +- **Data Integrity and Purpose Limitation** + - We only collect your data for the purposes relevant for providing our services to you. + - We collect as little information about you as we can, unless you choose to give us more. + - We take reasonable steps to ensure that the data we have about you is accurate, current, and reliable for its intended use. +- **Access** + - You are always able to access the data we have about you in your [user profile](https://github.com/settings/profile). You may access, update, alter, or delete your information there. +- **Recourse, Enforcement and Liability** + - If you have questions about our privacy practices, you can reach us with our {% data variables.contact.contact_privacy %} and we will respond within 45 days at the latest. + - In the unlikely event of a dispute that we cannot resolve, you have access to binding arbitration at no cost to you. Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. + - We will conduct regular audits of our relevant privacy practices to verify compliance with the promises we have made. + - We require our employees to respect our privacy promises, and violation of our privacy policies is subject to disciplinary action up to and including termination of employment. -### 争议解决流程 +### Dispute resolution process -如我们的[隐私声明](/github/site-policy/github-privacy-statement)中[解决投诉](/github/site-policy/github-privacy-statement#resolving-complaints)部分所述,如果您有与隐私盾相关(或与一般隐私保护相关)的投诉,建议您联系我们。 对于 GitHub 无法直接解决的任何投诉,我们会选择与相关的欧盟数据保护当局或他们成立的小组合作,解决与欧盟人士的争议;与瑞士联邦数据保护和信息专员 (FDPIC) 合作,解决与瑞士人士的争议。 如果您需要适用的数据保护当局联系人的信息,请联系我们。 +As further explained in the [Resolving Complaints](/github/site-policy/github-privacy-statement#resolving-complaints) section of our [Privacy Statement](/github/site-policy/github-privacy-statement), we encourage you to contact us should you have a Privacy Shield-related (or general privacy-related) complaint. For any complaints that cannot be resolved with GitHub directly, we have selected to cooperate with the relevant EU Data Protection Authority, or a panel established by the European data protection authorities, for resolving disputes with EU individuals, and with the Swiss Federal Data Protection and Information Commissioner (FDPIC) for resolving disputes with Swiss individuals. Please contact us if you’d like us to direct you to your data protection authority contacts. -此外,如果您是欧盟成员国的居民,您有权向当地监管机构提出投诉。 +Additionally, if you are a resident of an EU member state, you have the right to file a complaint with your local supervisory authority. -### 独立仲裁 +### Independent arbitration -在某些有限的情况下,如果所有其他形式的争议解决均未成功,作为最后手段,欧盟、欧洲经济区 (EEA)、瑞士和英国人士可以诉诸具有约束力的隐私盾仲裁。 要详细了解这种解决方法及其适用性,请认真阅读[隐私盾](https://www.privacyshield.gov/article?id=ANNEX-I-introduction)。 仲裁不是强制性的;它是您可以选择使用的工具。 +Under certain limited circumstances, EU, European Economic Area (EEA), Swiss, and UK individuals may invoke binding Privacy Shield arbitration as a last resort if all other forms of dispute resolution have been unsuccessful. To learn more about this method of resolution and its availability to you, please read more about [Privacy Shield](https://www.privacyshield.gov/article?id=ANNEX-I-introduction). Arbitration is not mandatory; it is a tool you can use if you so choose. -我们受美国联邦贸易委员会 (FTC) 的管辖。 - -更多信息请参阅我们的[隐私声明](/articles/github-privacy-statement/)。 +We are subject to the jurisdiction of the US Federal Trade Commission (FTC). + +Please see our [Privacy Statement](/articles/github-privacy-statement/) for more information. diff --git a/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md b/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md index 999a676ee7..e2dbb93740 100644 --- a/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md +++ b/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-counter-notice.md @@ -1,8 +1,8 @@ --- -title: 提交 DMCA 反对通知的指南 +title: Guide to Submitting a DMCA Counter Notice redirect_from: - - /dmca-counter-notice-how-to/ - - /articles/dmca-counter-notice-how-to/ + - /dmca-counter-notice-how-to + - /articles/dmca-counter-notice-how-to - /articles/guide-to-submitting-a-dmca-counter-notice versions: fpt: '*' @@ -11,60 +11,72 @@ topics: - Legal --- -本指南介绍 GitHub 处理 DMCA 删除请求反通知所需的信息。 如果您对 DMCA 的概念或 GitHub 处理 DMCA 删除请求的方式有更多一般性疑问,请参阅我们的 [DMCA 删除政策](/articles/dmca-takedown-policy)。 +This guide describes the information that GitHub needs in order to process a counter notice to a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -如果您认为 DMCA 删除请求误禁了您在 GitHub 上的内容,您有权通过提交反通知来反对删除。 如果您这样做,我们将等待 10-14 天,然后重新启用您的内容,除非版权所有者在此之前对您提起法律诉讼。 下述反通知形式与 DMCA 法规建议的形式一致,您可以登录美国版权局官方网站:<https://www.copyright.gov> 查看该法规。 版权局官方网站:<https://www.copyright.gov>。 +If you believe your content on GitHub was mistakenly disabled by a DMCA takedown request, you have the right to contest the takedown by submitting a counter notice. If you do, we will wait 10-14 days and then re-enable your content unless the copyright owner initiates a legal action against you before then. Our counter-notice form, set forth below, is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -与所有法律事务一样,就您的具体问题或情况咨询专业人员始终是最好的方式。 我们强烈建议您在采取任何可能影响您权利的行动之前这样做。 本指南不是法律意见,也不应作为法律意见。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## 开始前 +## Before You Start -***说实话。***DMCA 要求您对自己的反通知宣誓,如有不实会*受到伪证处罚*。 在宣誓声明中故意说谎是一种联邦罪行 。 (*请参阅* [美国 法典,第 18 章,第 1621 条](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm)。) (*请参阅* [美国法典,第 18 章,第 1621 条](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm)。) 提交虚假信息还可能导致民事责任,也就是说,可能被诉经济赔偿。 +***Tell the Truth.*** +The DMCA requires that you swear to your counter notice *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability—that is, you could get sued for money damages. -***调查。***提交 DMCA 反通知可能会产生现实的法律后果。 如果投诉方不同意其删除通知有误,他们可自行决定对您提起诉讼以求继续禁用内容。 在提交反通知之前,您应该对删除通知中的指控进行彻底的调查,并在必要时咨询律师。 +***Investigate.*** +Submitting a DMCA counter notice can have real legal consequences. If the complaining party disagrees that their takedown notice was mistaken, they might decide to file a lawsuit against you to keep the content disabled. You should conduct a thorough investigation into the allegations made in the takedown notice and probably talk to a lawyer before submitting a counter notice. -***必须有充分的理由提交反通知。*** 要提交反通知,您必须“真正认为您的材料被删除或禁用是因为投诉有误或材料标识错误。” ([美国 法典,第 17 章,第 512(g) 条](https://www.copyright.gov/title17/92chap5.html#512)。) 是否要解释您认为存在错误的原因,取决于您和您的律师,但是在提交反通知之前,您*必须*找出错误。 我们在过去收到的反通知中,列举了一些删除通知中的错误,例如:投诉方没有版权;我有许可;该代码已在允许我使用的开源许可下发布;或投诉方没有考虑这一事实:我的使用受到合理使用原则的保护。 当然,删除通知中可能还有其他缺陷。 +***You Must Have a Good Reason to Submit a Counter Notice.*** +In order to file a counter notice, you must have "a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled." ([U.S. Code, Title 17, Section 512(g)](https://www.copyright.gov/title17/92chap5.html#512).) Whether you decide to explain why you believe there was a mistake is up to you and your lawyer, but you *do* need to identify a mistake before you submit a counter notice. In the past, we have received counter notices citing mistakes in the takedown notice such as: the complaining party doesn't have the copyright; I have a license; the code has been released under an open-source license that permits my use; or the complaint doesn't account for the fact that my use is protected by the fair-use doctrine. Of course, there could be other defects with the takedown notice. -***版权法很复杂。***有时,删除通知可能以比较奇怪或间接的方式指控侵权。 版权法很复杂,可能会导致一些意想不到的结果。 在某些情况下,删除通知可能基于您的源代码在进行编译和运行后能够执行的操作,而指控它侵权。 例如: - - 通知可能声称您的软件用于[规避版权作品的访问控制](https://www.copyright.gov/title17/92chap12.html)。 - - [有时](https://www.copyright.gov/docs/mgm/),分发软件也可能侵犯版权,假如您诱使最终用户使用软件侵犯受版权保护的作品。 - - 版权投诉还可能基于软件中[非完全复制](https://en.wikipedia.org/wiki/Substantial_similarity)的设计元素,换句话说,有人可能会发出通知,说他们认为您的*设计*与他们的设计太像了。 +***Copyright Laws Are Complicated.*** +Sometimes a takedown notice might allege infringement in a way that seems odd or indirect. Copyright laws are complicated and can lead to some unexpected results. In some cases a takedown notice might allege that your source code infringes because of what it can do after it is compiled and run. For example: + - The notice may claim that your software is used to [circumvent access controls](https://www.copyright.gov/title17/92chap12.html) to copyrighted works. + - [Sometimes](https://www.copyright.gov/docs/mgm/) distributing software can be copyright infringement, if you induce end users to use the software to infringe copyrighted works. + - A copyright complaint might also be based on [non-literal copying](https://en.wikipedia.org/wiki/Substantial_similarity) of design elements in the software, rather than the source code itself — in other words, someone has sent a notice saying they think your *design* looks too similar to theirs. -这些只是体现版权法复杂性的些许示例。 由于在这些类型的案例中,法律有许多微妙之处,还有一些悬而未决的问题,因此,在侵权指控看起来不那么直接的情况下,寻求专业意见尤为重要。 +These are just a few examples of the complexities of copyright law. Since there are many nuances to the law and some unsettled questions in these types of cases, it is especially important to get professional advice if the infringement allegations do not seem straightforward. -***反通知是法律声明。***我们要求您完整填写反通知的所有字段,因为反通知是一种法律声明——不仅是对我们的声明,也是对投诉方的声明。 如上所述,如果投诉方在收到反通知后,希望继续禁用内容,则他们将需要提起法律诉讼,寻求通过法院命令制止您从事与 GitHub 上的内容相关的侵权活动。 也就是说,您可能会被起诉(并且您在反通知中同意这一点)。 +***A Counter Notice Is A Legal Statement.*** +We require you to fill out all fields of a counter notice completely, because a counter notice is a legal statement — not just to us, but to the complaining party. As we mentioned above, if the complaining party wishes to keep the content disabled after receiving a counter notice, they will need to initiate a legal action seeking a court order to restrain you from engaging in infringing activity relating to the content on GitHub. In other words, you might get sued (and you consent to that in the counter notice). -***您的反通知将被公布。***如我们的 [DMCA 删除政策](/articles/dmca-takedown-policy#d-transparency)所述,**在删节个人信息后,**我们将在 <https://github.com/github/dmca> 上发布所有完整、有效的反通知。 另请注意,尽管我们只公开发布经删节的通知,但我们可能会向权利受影响的任何相关方直接提供相关通知的完整未删节版。 如果您担心自己的隐私,可以请律师或其他法律代表替您提交反通知。 +***Your Counter Notice Will Be Published.*** +As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), **after redacting personal information,** we publish all complete and actionable counter notices at <https://github.com/github/dmca>. Please also note that, although we will only publicly publish redacted notices, we may provide a complete unredacted copy of any notices we receive directly to any party whose rights would be affected by it. If you are concerned about your privacy, you may have a lawyer or other legal representative file the counter notice on your behalf. -***GitHub 不是法官。***除了确定通知是否符合 DMCA 的最低要求外,GitHub 在此过程中几乎不行使酌处权。 当事方(及其律师)应负责评估其投诉的合理性,并注意,此类通知受伪证处罚条款约束。 +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in this process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -***其他资源。***如果您需要其他帮助,可以找到许多在线自助资源。 Lumen 有一套内容丰富的[版权](https://www.lumendatabase.org/topics/5)和 [DMCA 安全港](https://www.lumendatabase.org/topics/14)指南。 如果您参与一个开源项目,需要寻求法律意见,您可以联系[软件自由法律中心](https://www.softwarefreedom.org/about/contact/)。 如果您认为自己的案例特别有挑战,像[电子前沿基金会](https://www.eff.org/pages/legal-assistance)这样的非营利组织可能愿意直接提供帮助,或将您推荐给律师。 +***Additional Resources.*** +If you need additional help, there are many self-help resources online. Lumen has an informative set of guides on [copyright](https://www.lumendatabase.org/topics/5) and [DMCA safe harbor](https://www.lumendatabase.org/topics/14). If you are involved with an open-source project in need of legal advice, you can contact the [Software Freedom Law Center](https://www.softwarefreedom.org/about/contact/). And if you think you have a particularly challenging case, non-profit organizations such as the [Electronic Frontier Foundation](https://www.eff.org/pages/legal-assistance) may also be willing to help directly or refer you to a lawyer. -## 您的反通知必须... +## Your Counter Notice Must... -1. **包括以下声明:“我已阅读并理解 GitHub 的《提交 DMCA 反通知指南》。”**如果您的反通知未包括此声明,但其他内容完整,我们不会拒绝处理;但我们知道您尚未阅读这些指南后,可能会要求您先完成这一步。 +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Counter Notice."** +We won't refuse to process an otherwise complete counter notice if you don't include this statement; however, we will know that you haven't read these guidelines and may ask you to go back and do so. -2. ***标识被禁用的内容及其出现的位置。***被禁用的内容应该已在删除通知中通过 URL 进行了标识。 您只需复制要提出异议的 URL。 +2. ***Identify the content that was disabled and the location where it appeared.*** +The disabled content should have been identified by URL in the takedown notice. You simply need to copy the URL(s) that you want to challenge. -3. **提供您的联系信息。**包括您的电子邮件地址、姓名、电话号码和实际地址。 +3. **Provide your contact information.** +Include your email address, name, telephone number, and physical address. -4. ***包括以下声明:“我宣誓,我坚信材料被删除或禁用是因为投诉有误或材料标识错误,如有不实,愿接受伪证处罚 。”***您也可以选择传达您认为存在错误或错误标识的原因。 如果您将反通知视为传递给投诉方的“便条”,您可以利用这个机会,解释为什么他们不应该针对您的反通知采取下一步行动和提起诉讼。 这是在提交反通知时应该与律师合作的另一个原因。 +4. ***Include the following statement: "I swear, under penalty of perjury, that I have a good-faith belief that the material was removed or disabled as a result of a mistake or misidentification of the material to be removed or disabled."*** +You may also choose to communicate the reasons why you believe there was a mistake or misidentification. If you think of your counter notice as a "note" to the complaining party, this is a chance to explain why they should not take the next step and file a lawsuit in response. This is yet another reason to work with a lawyer when submitting a counter notice. -5. ***包括以下声明:“我同意,我地址所在司法区的联邦地方法院具有管辖权(如果在美国,则为 GitHub 所在的加州北区的联邦法院),我将接受提供 DMCA 通知的人或其代理人递送法院传票。”*** +5. ***Include the following statement: "I consent to the jurisdiction of Federal District Court for the judicial district in which my address is located (if in the United States, otherwise the Northern District of California where GitHub is located), and I will accept service of process from the person who provided the DMCA notification or an agent of such person."*** -6. **提供您的手写或电子签名。** +6. **Include your physical or electronic signature.** -## 如何提交反通知 +## How to Submit Your Counter Notice -得到回复的最快方式是在我们的 {% data variables.contact.contact_dmca %} 上输入您的信息并回答所有问题。 +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -您也可以发送电子邮件通知到 <copyright@github.com>。 您可以包含附件(如果您愿意),但在邮件正文中也应包含来函的纯文本版本。 +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -如果非要通过实物邮件发送通知,也没问题,但我们接收和回复通知的时间会*大大*延长 - 并且 10-14 天的等待期从我们*收到*您的反通知时开始。 接收纯文本电子邮件通知比接收 PDF 附件或实物邮件要快得多。 如果您仍希望通过邮寄方式发送通知,我们的实际地址是: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it—and the 10-14 day waiting period starts from when we *receive* your counter notice. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc -收件人:DMCA 代理 +Attn: DMCA Agent 88 Colin P Kelly Jr St San Francisco, CA. 94107 ``` diff --git a/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md b/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md index 886f5435b2..deccf23500 100644 --- a/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md +++ b/translations/zh-CN/content/github/site-policy/guide-to-submitting-a-dmca-takedown-notice.md @@ -1,8 +1,8 @@ --- -title: 提交 DMCA 删除通知的指南 +title: Guide to Submitting a DMCA Takedown Notice redirect_from: - - /dmca-notice-how-to/ - - /articles/dmca-notice-how-to/ + - /dmca-notice-how-to + - /articles/dmca-notice-how-to - /articles/guide-to-submitting-a-dmca-takedown-notice versions: fpt: '*' @@ -11,83 +11,84 @@ topics: - Legal --- -本指南介绍 GitHub 处理 DMCA 删除请求所需的信息。 如果您对 DMCA 的概念或 GitHub 处理 DMCA 删除请求的方式有更多一般性疑问,请参阅我们的 [DMCA 删除政策](/articles/dmca-takedown-policy)。 +This guide describes the information that GitHub needs in order to process a DMCA takedown request. If you have more general questions about what the DMCA is or how GitHub processes DMCA takedown requests, please review our [DMCA Takedown Policy](/articles/dmca-takedown-policy). -鉴于 GitHub 托管内容的类型(主要是软件代码)以及管理内容的方式(使用 Git),我们需要投诉内容尽可能具体。 这些指南旨在尽可能简单明了地处理指控侵权的通告。 下述通告形式与 DMCA 法规建议的形式一致,您可以登录美国版权局官方网站:<https://www.copyright.gov> 查看该法规。 版权局官方网站:<https://www.copyright.gov>。 +Due to the type of content GitHub hosts (mostly software code) and the way that content is managed (with Git), we need complaints to be as specific as possible. These guidelines are designed to make the processing of alleged infringement notices as straightforward as possible. Our form of notice set forth below is consistent with the form suggested by the DMCA statute, which can be found at the U.S. Copyright Office's official website: <https://www.copyright.gov>. -与所有法律事务一样,就您的具体问题或情况咨询专业人员始终是最好的方式。 我们强烈建议您在采取任何可能影响您权利的行动之前这样做。 本指南不是法律意见,也不应作为法律意见。 +As with all legal matters, it is always best to consult with a professional about your specific questions or situation. We strongly encourage you to do so before taking any action that might impact your rights. This guide isn't legal advice and shouldn't be taken as such. -## 开始前 +## Before You Start -***说实话。***DMCA 要求您对版权投诉中陈述的事实宣誓,捏造事实会*受到伪证处罚*。 在宣誓声明中故意说谎是一种联邦罪行 。 (*请参阅* [美国 法典,第 18 章,第 1621 条](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm)。) (*请参阅* [美国法典,第 18 章,第 1621 条](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm)。) 提交虚假信息还可能导致民事责任,也就是说,可能被诉经济赔偿。 DMCA 本身就针对任何故意捏造材料或活动侵权事实的人[规定了赔偿条款](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations)。 +***Tell the Truth.*** The DMCA requires that you swear to the facts in your copyright complaint *under penalty of perjury*. It is a federal crime to intentionally lie in a sworn declaration. (*See* [U.S. Code, Title 18, Section 1621](https://www.gpo.gov/fdsys/pkg/USCODE-2011-title18/html/USCODE-2011-title18-partI-chap79-sec1621.htm).) Submitting false information could also result in civil liability — that is, you could get sued for money damages. The DMCA itself [provides for damages](https://en.wikipedia.org/wiki/Online_Copyright_Infringement_Liability_Limitation_Act#%C2%A7_512(f)_Misrepresentations) against any person who knowingly materially misrepresents that material or activity is infringing. -***调查。***数以百万计的用户为自己在 GitHub 上创建和参与的项目倾注了心血。 针对此类项目提出 DMCA 投诉是一种严重的法律指控,会对项目背后真实的人造成真正的后果。 因此,我们要求您在提交删除通知之前进行彻底的调查并咨询律师,以确保您投诉的确实是不允许的使用。 +***Investigate.*** Millions of users and organizations pour their hearts and souls into the projects they create and contribute to on GitHub. Filing a DMCA complaint against such a project is a serious legal allegation that carries real consequences for real people. Because of that, we ask that you conduct a thorough investigation and consult with an attorney before submitting a takedown to make sure that the use isn't actually permissible. -***先问清。***向我们发送删除通知之前尝试直接联系用户,是一个良好的开端。 他们可能在其公开的个人资料页面上或仓库的自述文件中列出了联系信息,您也可以通过在仓库中打开议题或拉取请求,与他们取得联系。 这不是强制要求,但卓有成效。 +***Ask Nicely First.*** A great first step before sending us a takedown notice is to try contacting the user directly. They may have listed contact information on their public profile page or in the repository's README, or you could get in touch by opening an issue or pull request on the repository. This is not strictly required, but it is classy. -***发送正确的请求。***我们只接受针对受版权保护的作品并且标识出具体版权作品的 DMCA 删除通知。 如果您要投诉商标滥用行为,请参阅我们的[商标政策](/articles/github-trademark-policy/)。 如果您要删除密码之类的敏感数据,请参阅我们的[敏感数据政策](/articles/github-sensitive-data-removal-policy/)。 如果您要处理诽谤或其他辱骂行为,请参阅我们的[社区指导方针](/articles/github-community-guidelines/)。 +***Send In The Correct Request.*** We can only accept DMCA takedown notices for works that are protected by copyright, and that identify a specific copyrightable work. If you have a complaint about trademark abuse, please see our [trademark policy](/articles/github-trademark-policy/). If you wish to remove sensitive data such as passwords, please see our [policy on sensitive data](/articles/github-sensitive-data-removal-policy/). If you are dealing with defamation or other abusive behavior, please see our [Community Guidelines](/articles/github-community-guidelines/). -***代码不同于其他创意内容。***GitHub 是软件代码协作的平台。 因此,识别这里的有效版权侵犯行为,比识别照片、音乐或视频方面的版权侵犯行为要复杂得多。 +***Code Is Different From Other Creative Content.*** GitHub is built for collaboration on software code. This makes identifying a valid copyright infringement more complicated than it might otherwise be for, say, photos, music, or videos. -代码不同于其他创意内容的原因有很多。 例如: +There are a number of reasons why code is different from other creative content. For instance: -- 仓库可能包含来自许多不同用户的零碎代码,但可能只有一个文件,甚至文件中的一个子例程侵犯了您的版权。 -- 代码结合了功能和创意表达,但版权只保护表达元素,而不保护功能部分。 -- 通常要考虑许可。 仅仅因为一段有版权声明的代码,不一定意味着侵权。 因为该代码有可能是在开源许可下使用的。 -- 如果特定使用符合以下条件,可能属于[合理使用](https://www.lumendatabase.org/topics/22):只使用少量版权内容、以变换方式使用内容、用于教育目的或以上条件的某些组合。 由于代码本身适合于这些用途,但每个用例都有所不同,因此必须单独考虑。 -- 代码可能被控以许多不同的方式侵权,因此需要对作品进行详细的说明和识别。 +- A repository may include bits and pieces of code from many different people, but only one file or even a sub-routine within a file infringes your copyrights. +- Code mixes functionality with creative expression, but copyright only protects the expressive elements, not the parts that are functional. +- There are often licenses to consider. Just because a piece of code has a copyright notice does not necessarily mean that it is infringing. It is possible that the code is being used in accordance with an open-source license. +- A particular use may be [fair-use](https://www.lumendatabase.org/topics/22) if it only uses a small amount of copyrighted content, uses that content in a transformative way, uses it for educational purposes, or some combination of the above. Because code naturally lends itself to such uses, each use case is different and must be considered separately. +- Code may be alleged to infringe in many different ways, requiring detailed explanations and identifications of works. -此列表并不详尽,因此在提出针对代码的投诉之前,请咨询法律专业人士,这一点特别重要。 +This list isn't exhaustive, which is why speaking to a legal professional about your proposed complaint is doubly important when dealing with code. -***不要使用自动程序。***应该让训练有素的专业人员来评估您发送的每个删除通知中的事实。 如果您将工作外包给第三方,请务必了解他们的运作方式,确保他们不使用自动程序来批量提交投诉。 这些投诉往往是无效的,因为处理它们会对项目造成不必要的中断! +***No Bots.*** You should have a trained professional evaluate the facts of every takedown notice you send. If you are outsourcing your efforts to a third party, make sure you know how they operate, and make sure they are not using automated bots to submit complaints in bulk. These complaints are often invalid and processing them results in needlessly taking down projects! -***版权问题难以确定。***确定特定作品是否受版权保护可能很难。 例如,fact(包括数据)通常不受版权保护。 字词短语通常不受版权保护。 URL 和域名通常不受版权保护。 因为您只能使用 DMCA 流程来处理受版权保护的内容,因此,如果您对内容是否受保护存有疑问,应咨询律师。 +***Matters of Copyright Are Hard.*** It can be very difficult to determine whether or not a particular work is protected by copyright. For example, facts (including data) are generally not copyrightable. Words and short phrases are generally not copyrightable. URLs and domain names are generally not copyrightable. Since you can only use the DMCA process to target content that is protected by copyright, you should speak with a lawyer if you have questions about whether or not your content is protectable. -***您可能会收到反通知。***任何受您删除通知影响的用户可自行决定提交[反通知](/articles/guide-to-submitting-a-dmca-counter-notice)。 如果他们这样做,我们将在 10-14 天内重新启用其内容,除非您通知我们,您已采取法律行动以求制止用户从事与 GitHub 上的内容有关的侵权活动。 +***You May Receive a Counter Notice.*** Any user affected by your takedown notice may decide to submit a [counter notice](/articles/guide-to-submitting-a-dmca-counter-notice). If they do, we will re-enable their content within 10-14 days unless you notify us that you have initiated a legal action seeking to restrain the user from engaging in infringing activity relating to the content on GitHub. -***您的投诉将被公布。***如我们的 [DMCA 删除政策](/articles/dmca-takedown-policy#d-transparency)所述,在删节个人信息后,我们将在 <https://github.com/github/dmca> 上发布所有完整、有效的删除通知。 +***Your Complaint Will Be Published.*** As noted in our [DMCA Takedown Policy](/articles/dmca-takedown-policy#d-transparency), after redacting personal information, we publish all complete and actionable takedown notices at <https://github.com/github/dmca>. -***GitHub 不是法官。***除了确定通知是否符合 DMCA 的最低要求外,GitHub 在此过程中几乎不行使酌处权。 当事方(及其律师)应负责评估其投诉的合理性,并注意,此类通知受伪证处罚条款约束。 +***GitHub Isn't The Judge.*** +GitHub exercises little discretion in the process other than determining whether the notices meet the minimum requirements of the DMCA. It is up to the parties (and their lawyers) to evaluate the merit of their claims, bearing in mind that notices must be made under penalty of perjury. -## 您的投诉必须... +## Your Complaint Must ... -1. **包括以下声明:“我已阅读并理解 GitHub 的《提交 DMCA 通知指南》。”**如果您的投诉未包括此声明,但其他内容完整,我们不会拒绝处理。 但我们知道您尚未阅读这些指南后,可能会要求您先完成这一步。 +1. **Include the following statement: "I have read and understand GitHub's Guide to Filing a DMCA Notice."** We won't refuse to process an otherwise complete complaint if you don't include this statement. But we'll know that you haven't read these guidelines and may ask you to go back and do so. -2. **标识您认为被侵犯版权的作品。**此信息很重要,因为它有助于受影响的用户评估您的主张,使他们能够将您的作品与他们的作品进行比较。 标识的具体性将取决于您认为被侵权的作品的性质。 如果您已发布自己的作品,则只需链接到其所在的网页。 如果它是尚未发布的专有信息,您可以对其进行描述并说明它是专有信息。 如果已在版权局注册它,则应提供注册号。 如果声称托管内容完全是直接复制您的作品,您也可以只阐述这一事实。 +2. **Identify the copyrighted work you believe has been infringed.** This information is important because it helps the affected user evaluate your claim and give them the ability to compare your work to theirs. The specificity of your identification will depend on the nature of the work you believe has been infringed. If you have published your work, you might be able to just link back to a web page where it lives. If it is proprietary and not published, you might describe it and explain that it is proprietary. If you have registered it with the Copyright Office, you should include the registration number. If you are alleging that the hosted content is a direct, literal copy of your work, you can also just explain that fact. -3. **标识您声称侵犯了上述第 2 条中所列版权作品的材料。**您的标识应尽可能具体,这非常重要。 此标识必须足以让 GitHub 找到所指材料。 这意味着至少应包括涉嫌侵犯版权的材料的 URL。 如果您声称并非整个仓库侵权,则应标识涉嫌侵权的具体文件或文件中的具体行号。 如果您声称 URL 上的所有内容都侵权,也请明确说明。 - - 请注意,GitHub 禁用父仓库时*不会*自动禁用[复刻](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork)。 如果您已调查和分析了仓库的复刻,并且认为它们也涉嫌侵权,请明确标识每个涉嫌侵权的复刻。 另请确认,您已逐个调查每个所标识的复刻,并且您的宣誓声明适用于每个所标识的复刻。 在极少数情况下,您可能在正被复刻的完整仓库中指称侵权。 如果您在提交通知时发现该仓库的所有现有复刻涉嫌侵权,我们将在处理通知时处理对该网络中所有复刻的有效索赔。 我们这样做是考虑到所有新建复刻都可能包含相同的内容。 此外,如果所报告的包含涉嫌侵权内容的网络大于一百 (100) 个仓库,从而很难全面审查,并且您在通知中指出:“根据您审查的代表性复刻数量,我相信所有或大多数复刻的侵权程度与父仓库相同”,则我们可能会考虑禁用整个网络。 你的宣誓声明将适用于此声明。 +3. **Identify the material that you allege is infringing the copyrighted work listed in item #2, above.** It is important to be as specific as possible in your identification. This identification needs to be reasonably sufficient to permit GitHub to locate the material. At a minimum, this means that you should include the URL to the material allegedly infringing your copyright. If you allege that less than a whole repository infringes, identify the specific file(s) or line numbers within a file that you allege infringe. If you allege that all of the content at a URL infringes, please be explicit about that as well. + - Please note that GitHub will *not* automatically disable [forks](/articles/dmca-takedown-policy#b-what-about-forks-or-whats-a-fork) when disabling a parent repository. If you have investigated and analyzed the forks of a repository and believe that they are also infringing, please explicitly identify each allegedly infringing fork. Please also confirm that you have investigated each individual case and that your sworn statements apply to each identified fork. In rare cases, you may be alleging copyright infringement in a full repository that is actively being forked. If at the time that you submitted your notice, you identified all existing forks of that repository as allegedly infringing, we would process a valid claim against all forks in that network at the time we process the notice. We would do this given the likelihood that all newly created forks would contain the same content. In addition, if the reported network that contains the allegedly infringing content is larger than one hundred (100) repositories and thus would be difficult to review in its entirety, we may consider disabling the entire network if you state in your notice that, "Based on the representative number of forks you have reviewed, I believe that all or most of the forks are infringing to the same extent as the parent repository." Your sworn statement would apply to this statement. -4. **说明侵权用户需要采取哪些补救措施。**同样,具体性很重要。 我们将您的投诉传达给用户时,这些说明将告诉他们需要采取哪些措施以避免其余内容被禁用。 用户只需要添加归属声明? 他们需要删除代码中的某些行,或者需要删除整个文件? 当然,我们明白,在某些情况下,用户的所有内容都涉嫌侵权,除了全部删除之外,别无他法。 如果是这种情况,也请明确说明。 +4. **Explain what the affected user would need to do in order to remedy the infringement.** Again, specificity is important. When we pass your complaint along to the user, this will tell them what they need to do in order to avoid having the rest of their content disabled. Does the user just need to add a statement of attribution? Do they need to delete certain lines within their code, or entire files? Of course, we understand that in some cases, all of a user's content may be alleged to infringe and there's nothing they could do short of deleting it all. If that's the case, please make that clear as well. -5. **提供您的联系信息。**包括您的电子邮件地址、姓名、电话号码和实际地址。 +5. **Provide your contact information.** Include your email address, name, telephone number and physical address. -6. **提供涉嫌侵权者的联系信息(如果您知道)。**一般通过提供与涉嫌侵权内容相关联的 GitHub 用户名来满足这一要求。 但在某些情况下,您可能对涉嫌侵权者有更多了解。 如果是,请与我们分享这些信息。 +6. **Provide contact information, if you know it, for the alleged infringer.** Usually this will be satisfied by providing the GitHub username associated with the allegedly infringing content. But there may be cases where you have additional knowledge about the alleged infringer. If so, please share that information with us. -7. **包括以下声明:“我坚信,在侵权网页上使用上述版权材料,未经版权所有者、其代理人或法律的授权。 我已考虑合理使用的情况。”** +7. **Include the following statement: "I have a good faith belief that use of the copyrighted materials described above on the infringing web pages is not authorized by the copyright owner, or its agent, or the law. I have taken fair use into consideration."** -8. **还应包括以下声明:“本人谨此宣誓,本通知中的信息准确无误,对于涉嫌受到侵犯之专有权,本人是版权所有者或所有者的授权代表,如有不实,愿接受伪证处罚 。”** +8. **Also include the following statement: "I swear, under penalty of perjury, that the information in this notification is accurate and that I am the copyright owner, or am authorized to act on behalf of the owner, of an exclusive right that is allegedly infringed."** -9. **提供您的手写或电子签名。** +9. **Include your physical or electronic signature.** -## 有关反规避技术措施的投诉 +## Complaints about Anti-Circumvention Technology -版权法还禁止规避用于有效控制受版权保护作品之访问权限的技术措施。 如果您认为 GitHub 上托管的内容违反了此禁令,请通过我们的 {% data variables.contact.contact_dmca %} 向我们发送报告。 规避索赔必须包括以下关于技术措施以及被告项目规避这些措施的方式的详细信息。 具体而言,给 GitHub 的通知必须包括详细的说明,描述: -1. 技术措施是什么; -2. 它们如何有效控制对受版权保护材料的访问;以及 -3. 被告项目是如何设计来规避他们以前描述的技术保护措施的。 +The Copyright Act also prohibits the circumvention of technological measures that effectively control access to works protected by copyright. If you believe that content hosted on GitHub violates this prohibition, please send us a report through our {% data variables.contact.contact_dmca %}. A circumvention claim must include the following details about the technical measures in place and the manner in which the accused project circumvents them. Specifically, the notice to GitHub must include detailed statements that describe: +1. What the technical measures are; +2. How they effectively control access to the copyrighted material; and +3. How the accused project is designed to circumvent their previously described technological protection measures. -## 如果提交投诉 +## How to Submit Your Complaint -得到回复的最快方式是在我们的 {% data variables.contact.contact_dmca %} 上输入您的信息并回答所有问题。 +The fastest way to get a response is to enter your information and answer all the questions on our {% data variables.contact.contact_dmca %}. -您也可以发送电子邮件通知到 <copyright@github.com>。 您可以包含附件(如果您愿意),但在邮件正文中也应包含来函的纯文本版本。 +You can also send an email notification to <copyright@github.com>. You may include an attachment if you like, but please also include a plain-text version of your letter in the body of your message. -如果非要通过实物邮件发送通知,也没问题,但我们接收和回复通知的时间会*大大*延长。 接收纯文本电子邮件通知比接收 PDF 附件或实物邮件要快得多。 如果您仍希望通过邮寄方式发送通知,我们的实际地址是: +If you must send your notice by physical mail, you can do that too, but it will take *substantially* longer for us to receive and respond to it. Notices we receive via plain-text email have a much faster turnaround than PDF attachments or physical mail. If you still wish to mail us your notice, our physical address is: ``` GitHub, Inc -收件人:DMCA 代理 +Attn: DMCA Agent 88 Colin P Kelly Jr St San Francisco, CA. 94107 ``` diff --git a/translations/zh-CN/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md b/translations/zh-CN/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md index 5051429a00..d78d303584 100644 --- a/translations/zh-CN/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md +++ b/translations/zh-CN/content/github/site-policy/guidelines-for-legal-requests-of-user-data.md @@ -1,7 +1,7 @@ --- -title: 用户数据法律要求指南 +title: Guidelines for Legal Requests of User Data redirect_from: - - /law-enforcement-guidelines/ + - /law-enforcement-guidelines - /articles/guidelines-for-legal-requests-of-user-data versions: fpt: '*' @@ -10,161 +10,214 @@ topics: - Legal --- -您是否是对可能涉及 GitHub 上托管的用户内容进行调查的执法人员? 或许您是一个具有隐私意识的人,想知道我们与执法部门分享什么信息,以及在什么情况下分享信息。 无论您是哪种身份,都应该参阅本文内容。 +Are you a law enforcement officer conducting an investigation that may involve user content hosted on GitHub? +Or maybe you're a privacy-conscious person who would like to know what information we share with law enforcement and under what circumstances. +Either way, you're on the right page. -在这些指南中,我们略微提供了一些 GitHub 的背景信息,简单介绍了 GitHub 及其拥有的数据类型,还有我们披露私人用户信息的条件。 但在我们了解详细信息之前,您可能需要先了解以下几个重要细节: +In these guidelines, we provide a little background about what GitHub is, the types of data we have, and the conditions under which we will disclose private user information. +Before we get into the details, however, here are a few important details you may want to know: -- 我们将[**通知受影响的用户**](#we-will-notify-any-affected-account-owners)有关其帐户信息的任何请求,除非法律或法院命令禁止这样做。 -- 如果没有[有效的法院命令或搜查令](#with-a-court-order-or-a-search-warrant),我们不会披露**位置跟踪数据**,如 IP 地址日志。 -- 如果没有有效的[搜查令](#only-with-a-search-warrant) ,我们不会披露任何**私有用户内容**,包括私有仓库的内容。 +- We will [**notify affected users**](#we-will-notify-any-affected-account-owners) about any requests for their account information, unless prohibited from doing so by law or court order. +- We will not disclose **location-tracking data**, such as IP address logs, without a [valid court order or search warrant](#with-a-court-order-or-a-search-warrant). +- We will not disclose any **private user content**, including the contents of private repositories, without a valid [search warrant](#only-with-a-search-warrant). -## 关于这些指南 +## About these guidelines -我们的用户信任他们的软件项目和代码——往往是他们最宝贵的业务或个人资产。 维持这种信任对我们来说至关重要,因此要确保用户数据的安全、可靠和私密。 +Our users trust us with their software projects and code—often some of their most valuable business or personal assets. +Maintaining that trust is essential to us, which means keeping user data safe, secure, and private. -虽然我们绝大多数用户利用 GitHub 的服务创办新企业、开发新技术和改善人类生活,但我们认识到,我们有数以百万计的用户遍布全球,其中难免会有一些心怀不轨之人。 在这些情况下,我们希望帮助执法部门履行其保护公众的法定职责。 +While the overwhelming majority of our users use GitHub's services to create new businesses, build new technologies, and for the general betterment of humankind, we recognize that with millions of users spread all over the world, there are bound to be a few bad apples in the bunch. +In those cases, we want to help law enforcement serve their legitimate interest in protecting the public. -通过为执法人员提供指南,我们希望在用户隐私与正义之间实现某种平衡。 我们希望这些指南将帮助明确双方的期望,并提高 GitHub 内部流程的透明度。 我们的用户应该知道,我们重视他们的私人信息,并且会尽力保护这些信息。 这至少意味着只有在符合适当法律要求的情况下才向第三方披露数据。 出于同样原因, 我们还希望培训专业执法人员了解 GitHub 系统,以便他们能够更有效地定制其数据请求,并且只针对进行调查所需的信息。 +By providing guidelines for law enforcement personnel, we hope to strike a balance between the often competing interests of user privacy and justice. +We hope these guidelines will help to set expectations on both sides, as well as to add transparency to GitHub's internal processes. +Our users should know that we value their private information and that we do what we can to protect it. +At a minimum, this means only releasing data to third-parties when the appropriate legal requirements have been satisfied. +By the same token, we also hope to educate law enforcement professionals about GitHub's systems so that they can more efficiently tailor their data requests and target just that information needed to conduct their investigation. -## GitHub 术语 +## GitHub terminology -在要求我们披露数据之前,了解我们系统的实施方式很有用。 GitHub 使用 [Git 版本控制系统](https://git-scm.com/video/what-is-version-control)托管数百万数据仓库。 GitHub 上的仓库——可能是公共或私有——常用于软件开发项目,但也常用于研究各种内容。 +Before asking us to disclose data, it may be useful to understand how our system is implemented. +GitHub hosts millions of data repositories using the [Git version control system](https://git-scm.com/video/what-is-version-control). +Repositories on GitHub—which may be public or private—are most commonly used for software development projects, but are also often used to work on content of all kinds. -- [**用户**](/articles/github-glossary#user) — 用户在我们的系统中表示为个人 GitHub 帐户。 每个用户都有自己的个人资料,可以拥有多个仓库。 用户可以创建或受邀加入组织,也可以在其他用户的仓库上进行协作。 +- [**Users**](/articles/github-glossary#user) — +Users are represented in our system as personal GitHub accounts. +Each user has a personal profile, and can own multiple repositories. +Users can create or be invited to join organizations or to collaborate on another user's repository. -- [**协作者**](/articles/github-glossary#collaborator) — 协作者是受到仓库所有者邀请参与其项目的用户,可以读取和写入参与的仓库。 +- [**Collaborators**](/articles/github-glossary#collaborator) — +A collaborator is a user with read and write access to a repository who has been invited to contribute by the repository owner. -- [**组织**](/articles/github-glossary#organization) — 组织是由两个或以上用户组成的组,通常对应实际的组织,如企业或项目。 它们由用户管理,可以包含仓库和用户小组。 +- [**Organizations**](/articles/github-glossary#organization) — +Organizations are a group of two or more users that typically mirror real-world organizations, such as businesses or projects. +They are administered by users and can contain both repositories and teams of users. -- [**仓库**](/articles/github-glossary#repository) — 仓库是最基本的 GitHub 元素之一。 它们很容易被想象为项目的文件夹。 仓库包含所有项目文件(包括文档),并存储每个文件的修订历史记录。 仓库可以有多个协作者,并由管理员酌情决定是否可以公开查看。 +- [**Repositories**](/articles/github-glossary#repository) — +A repository is one of the most basic GitHub elements. +They may be easiest to imagine as a project's folder. +A repository contains all of the project files (including documentation), and stores each file's revision history. +Repositories can have multiple collaborators and, at its administrators' discretion, may be publicly viewable or not. -- [**页面**](/articles/what-is-github-pages) — GitHub 页面是由 GitHub 免费托管的公共网页,用户可以轻松地通过存储在其仓库中的代码发布。 如果用户或组织有一个 GitHub 页面,该页面通常可以在 `https://username.github.io` 这样的网址上找到,或其网页可能已映射到其自定义域名。 +- [**Pages**](/articles/what-is-github-pages) — +GitHub Pages are public webpages freely hosted by GitHub that users can easily publish through code stored in their repositories. +If a user or organization has a GitHub Page, it can usually be found at a URL such as `https://username.github.io` or they may have the webpage mapped to their own custom domain name. -- [**Gist**](/articles/creating-gists) — Gists 是源代码或其他文本的片段,用户可用来存储想法或与朋友共享。 像普通的 GitHub 仓库一样,Gist 也是通过 Git 创建的,所以它们会自动设置版本、可复刻、可下载。 Gist 可以是公共的,也可以是秘密的(只能通过已知 URL 访问)。 公共 Gist 无法转换成秘密 Gist。 +- [**Gists**](/articles/creating-gists) — +Gists are snippets of source code or other text that users can use to store ideas or share with friends. +Like regular GitHub repositories, Gists are created with Git, so they are automatically versioned, forkable and downloadable. +Gists can either be public or secret (accessible only through a known URL). Public Gists cannot be converted into secret Gists. -## GitHub.com 上的用户数据 +## User data on GitHub.com -以下是我们维护的 GitHub 上用户和项目数据类型的非详尽清单。 +Here is a non-exhaustive list of the kinds of data we maintain about users and projects on GitHub. - <a name="public-account-data"></a> -**公共帐户数据** — GitHub 上有各种关于用户及其仓库的公开信息。 用户配置文件可在 `https://github.com/username` 这样的网址上找到。 用户配置文件显示用户何时在 GitHub.com上创建帐户及其在 GitHub.com 上的公共活动和社交互动的信息。 公共用户配置文件还可以包括用户可能已经选择公开分享的其他信息。 所有用户公共配置文件显示: - - 用户名 - - 用户已加星标的仓库 - - 用户关注的其他 GitHub 用户 - - 关注他们的用户 +**Public account data** — +There is a variety of information publicly available on GitHub about users and their repositories. +User profiles can be found at a URL such as `https://github.com/username`. +User profiles display information about when the user created their account as well their public activity on GitHub.com and social interactions. +Public user profiles can also include additional information that a user may have chosen to share publicly. +All user public profiles display: + - Username + - The repositories that the user has starred + - The other GitHub users the user follows + - The users that follow them - (可选)用户也可以选择公开分享以下信息: - - 他们的真实姓名 - - 头像 - - 关联公司 - - 他们的位置 - - 公共电子邮件地址 - - 他们的个人网页 - - 用户是其成员的组织(*取决于组织或用户偏好*) + Optionally, a user may also choose to share the following information publicly: + - Their real name + - An avatar + - An affiliated company + - Their location + - A public email address + - Their personal web page + - Organizations to which the user is a member (*depending on either the organizations' or the users' preferences*) - <a name="private-account-data"></a> -**私人帐户数据** — GitHub 也收集和维护我们[隐私政策](/articles/github-privacy-statement)中概述的用户相关特定私密信息。 可能包括: - - 私人电子邮件地址 - - 付款详细信息 - - 安全访问日志 - - 与私有仓库交互的数据 +**Private account data** — +GitHub also collects and maintains certain private information about users as outlined in our [Privacy Policy](/articles/github-privacy-statement). +This may include: + - Private email addresses + - Payment details + - Security access logs + - Data about interactions with private repositories - 要了解 GitHub 收集的私人帐户信息类型, 可以访问您的 {% data reusables.user_settings.personal_dashboard %} 并浏览左侧菜单栏中的区域。 + To get a sense of the type of private account information that GitHub collects, you can visit your {% data reusables.user_settings.personal_dashboard %} and browse through the sections in the left-hand menubar. - <a name="organization-account-data"></a> -**组织帐户数据** — 有关组织及其管理用户和仓库的信息发布于 GitHub。 组织配置文件可在 `https://github.com/organization` 这样的网址上找到。 公共组织配置文件还可以包括所有者可能已经选择公开分享的其他信息。 所有组织公共配置文件显示: - - 组织名称 - - 所有者已加星标的仓库 - - 作为组织所有者的所有 GitHub 用户 +**Organization account data** — +Information about organizations, their administrative users and repositories is publicly available on GitHub. +Organization profiles can be found at a URL such as `https://github.com/organization`. +Public organization profiles can also include additional information that the owners have chosen to share publicly. +All organization public profiles display: + - The organization name + - The repositories that the owners have starred + - All GitHub users that are owners of the organization - (可选)管理用户也可以选择公开分享以下信息: - - 头像 - - 关联公司 - - 他们的位置 - - 直接成员和团队 - - 协作者 + Optionally, administrative users may also choose to share the following information publicly: + - An avatar + - An affiliated company + - Their location + - Direct Members and Teams + - Collaborators - <a name="public-repository-data"></a> -**公共仓库数据** — GitHub 上具有数以百万计的开源软件项目。 您可以浏览几乎任何公共仓库(例如 [Atom 项目](https://github.com/atom/atom),以了解 GitHub 收集和维护的仓库相关信息。 可能包括: +**Public repository data** — +GitHub is home to millions of public, open-source software projects. +You can browse almost any public repository (for example, the [Atom Project](https://github.com/atom/atom)) to get a sense for the information that GitHub collects and maintains about repositories. +This can include: - - 代码本身 - - 代码的旧版本 - - 项目的稳定版本 - - 协作者、贡献者和仓库成员的信息 - - Git 操作日志,如提交、分支、推送、拄取、复刻和克隆。 - - 与 Git 操作相关的对话,例如对拉取请求或提交的评论 - - 项目文档,例如议题和维基页面 - - 显示对项目的贡献和贡献者网络的统计数据和图表 + - The code itself + - Previous versions of the code + - Stable release versions of the project + - Information about collaborators, contributors and repository members + - Logs of Git operations such as commits, branching, pushing, pulling, forking and cloning + - Conversations related to Git operations such as comments on pull requests or commits + - Project documentation such as Issues and Wiki pages + - Statistics and graphs showing contributions to the project and the network of contributors - <a name="private-repository-data"></a> -**私有仓库数据** — GitHub 对私有仓库收集和维护的数据类型与公共仓库相同,不同的是,只有特别邀请的用户才可访问私有仓库数据。 +**Private repository data** — +GitHub collects and maintains the same type of data for private repositories that can be seen for public repositories, except only specifically invited users may access private repository data. - <a name="other-data"></a> -**其他数据** — 此外,GitHub 还收集分析数据,如页面访问和我们用户偶尔自愿提供的信息(例如与我们支持团队的通信、调查信息和/或网站注册)。 +**Other data** — +Additionally, GitHub collects analytics data such as page visits and information occasionally volunteered by our users (such as communications with our support team, survey information and/or site registrations). -## 我们将通知任何受影响的帐户所有者 +## We will notify any affected account owners -我们的政策是通知用户有关其帐户或仓库的任何待处理请求,除非法律或法院命令禁止我们这样做。 在披露用户信息之前,我们将作出合理的努力通知任何受影响的帐户所有者,包括向他们经验证的电子邮件地址发送邮件,向他们提供传票、法院命令或逮捕令的副本等,以便他们有机会根据自己的意愿对法律程序提出质疑。 在(极少的)紧急情况下,如果我们确定延迟通知对于防止死亡或严重伤害或持续的调查是必要的,我们可能延迟通知。 +It is our policy to notify users about any pending requests regarding their accounts or repositories, unless we are prohibited by law or court order from doing so. Before disclosing user information, we will make a reasonable effort to notify any affected account owner(s) by sending a message to their verified email address providing them with a copy of the subpoena, court order, or warrant so that they can have an opportunity to challenge the legal process if they wish. In (rare) exigent circumstances, we may delay notification if we determine delay is necessary to prevent death or serious harm or due to an ongoing investigation. -## 非公开信息的披露 +## Disclosure of non-public information -根据我们的政策,仅当用户同意或在收到有效传票、民事调查要求、法院命令、搜查令或其他类似有效法律程序时,才会披露与民或事刑事调查有关的非公开用户信息。 在某些紧急情况(见下文)下,我们也可能分享有限的信息,但只能与情况的性质相对应,超出此范围则需要法律程序。 GitHub 保留对任何非公开信息请求提出异议的权利。 如果 GitHub 同意应合法请求提供非公开信息,我们将对请求的信息进行合理的搜寻。 以下是我们会同意提供的信息类型,具体取决于我们所服务的法律程序的类型: +It is our policy to disclose non-public user information in connection with a civil or criminal investigation only with user consent or upon receipt of a valid subpoena, civil investigative demand, court order, search warrant, or other similar valid legal process. In certain exigent circumstances (see below), we also may share limited information but only corresponding to the nature of the circumstances, and would require legal process for anything beyond that. +GitHub reserves the right to object to any requests for non-public information. +Where GitHub agrees to produce non-public information in response to a lawful request, we will conduct a reasonable search for the requested information. +Here are the kinds of information we will agree to produce, depending on the kind of legal process we are served with: - <a name="with-user-consent"></a> -**经用户同意** — GitHub 将应请求直接向用户(若为组织帐户,则为组织所有者)或指定的第三方(一旦 GitHub 确信用户已核实其身份并得到用户同意)提供私人帐户信息。 +**With user consent** — +GitHub will provide private account information, if requested, directly to the user (or an owner, in the case of an organization account), or to a designated third party with the user's written consent once GitHub is satisfied that the user has verified his or her identity. - <a name="with-a-subpoena"></a> -**有传票** — 如果收到与官方刑事或民事调查相关的有效传票、民事调查要求或类似法律程序,我们可以提供某些非公开帐户信息,其中可能包括: +**With a subpoena** — +If served with a valid subpoena, civil investigative demand, or similar legal process issued in connection with an official criminal or civil investigation, we can provide certain non-public account information, which may include: - - 与帐户关联的名称 - - 与帐户关联的电子邮件地址 - - 帐单信息 - - 注册日期和终止日期 - - 帐户注册时的 IP 地址、日期和时间 - - 用于在指定时间或与调查有关的事件中访问帐户的 IP 地址 + - Name(s) associated with the account + - Email address(es) associated with the account + - Billing information + - Registration date and termination date + - IP address, date, and time at the time of account registration + - IP address(es) used to access the account at a specified time or event relevant to the investigation -若为组织帐户,我们可以提供帐户所有者的姓名和电子邮件地址,以及创建组织帐户时的日期和 IP 地址。 我们不会产生关于组织帐户的其他成员或贡献者(如果有)的任何信息,或者关于识别的帐户所有者的任何其他信息,除非收到这些特定用户的后续请求。 +In the case of organization accounts, we can provide the name(s) and email address(es) of the account owner(s) as well as the date and IP address at the time of creation of the organization account. We will not produce information about other members or contributors, if any, to the organization account or any additional information regarding the identified account owner(s) without a follow-up request for those specific users. -请注意,可用的信息因个案而异。 用户可选择提供一些信息。 在另一些情况下,我们可能没有收集或保留信息。 +Please note that the information available will vary from case to case. Some of the information is optional for users to provide. In other cases, we may not have collected or retained the information. - <a name="with-a-court-order-or-a-search-warrant"></a> -**有法院命令*或*搜查令** — 我们不会披露帐户访问日志,除非收到以下指令的要求: (i) 根据 18 U.S.C. 第 2703(d) 条签发的法院命令,有具体而明确的事实表明,有合理的理由相信所要求的信息与正在进行的刑事调查有关; 或 (ii) 根据《联邦刑事诉讼规定》(Federal Rules of Criminal Procedure) 或同等国家搜查程序签发的搜查令,上面显示可能的原因。 第 2703(d) 条签发的法院命令,有具体而明确的事实表明,有合理的理由相信所要求的信息与正在进行的刑事调查有关; 或 (ii) 根据《联邦刑事诉讼规定》(Federal Rules of Criminal Procedure) 或同等国家搜查程序签发的搜查令,上面显示可能的原因。 除了上述非公开用户帐户信息之外,我们根据法院命令或搜查令提供的帐户访问日志信息可能包括: +**With a court order *or* a search warrant** — We will not disclose account access logs unless compelled to do so by either +(i) a court order issued under 18 U.S.C. Section 2703(d), upon a showing of specific and articulable facts showing that there are reasonable grounds to believe that the information sought is relevant and material to an ongoing criminal investigation; or +(ii) a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures, upon a showing of probable cause. +In addition to the non-public user account information listed above, we can provide account access logs in response to a court order or search warrant, which may include: - - 显示用户在一段时间内移动的任何日志 - - 帐户或私有版本库设置(例如,哪些用户拥有特定权限等) - - 用户或 IP 特定分析数据,如浏览历史记录 - - 帐户创建以外或指定时间和日期的安全访问日志 + - Any logs which would reveal a user's movements over a period of time + - Account or private repository settings (for example, which users have certain permissions, etc.) + - User- or IP-specific analytic data such as browsing history + - Security access logs other than account creation or for a specific time and date - <a name="only-with-a-search-warrant"></a> -**仅限于搜查令** — 我们不会披露任何用户帐户的私人内容,除非根据《联邦刑事诉讼规定》或同等国家搜查令规定程序签发的搜查令要求披露,搜查令上显示了可能的原因。 除了上述非公开用户帐户信息和帐户访问日志,我们还将根据搜查令提供私人用户帐户内容,可能包括: +**Only with a search warrant** — +We will not disclose the private contents of any user account unless compelled to do so under a search warrant issued under the procedures described in the Federal Rules of Criminal Procedure or equivalent state warrant procedures upon a showing of probable cause. +In addition to the non-public user account information and account access logs mentioned above, we will also provide private user account contents in response to a search warrant, which may include: - - 秘密 Gist 的内容 - - 私有仓库中的源代码或其他内容 - - 私有仓库的贡献和协作记录 - - 私有仓库中的通信或文档(例如议题或维基) - - 任何用于身份验证或加密的安全密钥 + - Contents of secret Gists + - Source code or other content in private repositories + - Contribution and collaboration records for private repositories + - Communications or documentation (such as Issues or Wikis) in private repositories + - Any security keys used for authentication or encryption - <a name="in-exigent-circumstances"></a> -**在紧急情况下** — 如果我们在某些紧急情况下收到要求提供信息的请求(如果我们认为有必要披露信息以防止涉及人员死亡或严重人身伤害危险的紧急情况),我们可能会披露我们认为对执法部门处理紧急情况必要的有限信息。 对于超出此范围的任何信息,如上所述,我们需要传票、搜查令或法院命令才会披露。 例如,没有搜查令时,我们不会披露私有仓库的内容。 在披露信息之前,我们会确认请求来自执法机构,当局发出了正式通知,概述了紧急情况以及所要求的信息将如何有助于处理紧急情况。 +**Under exigent circumstances** — +If we receive a request for information under certain exigent circumstances (where we believe the disclosure is necessary to prevent an emergency involving danger of death or serious physical injury to a person), we may disclose limited information that we determine necessary to enable law enforcement to address the emergency. For any information beyond that, we would require a subpoena, search warrant, or court order, as described above. For example, we will not disclose contents of private repositories without a search warrant. Before disclosing information, we confirm that the request came from a law enforcement agency, an authority sent an official notice summarizing the emergency, and how the information requested will assist in addressing the emergency. -## 费用补偿 +## Cost reimbursement -根据州和联邦法律,GitHub 可以要求补偿与遵守有效法律要求(如传票、法院命令或搜查令)相关的费用。 我们只收取部分费用,这些补偿只包括我们为遵守法律命令而实际发生的一部分费用。 +Under state and federal law, GitHub can seek reimbursement for costs associated with compliance with a valid legal demand, such as a subpoena, court order or search warrant. We only charge to recover some costs, and these reimbursements cover only a portion of the costs we actually incur to comply with legal orders. -虽然我们在紧急情况下不收费,但除非法律另有要求,否则我们将根据以下安排要求补偿为满足所有其他法律要求产生的费用: +While we do not charge in emergency situations or in other exigent circumstances, we seek reimbursement for all other legal requests in accordance with the following schedule, unless otherwise required by law: -- 最多 25 个标识符的初始搜索:免费 -- 最多 5 个帐户的订阅者信息/数据制作:免费 -- 为 5 个以上帐户制作订阅者信息/数据:每个帐户 20 美元 -- 二次搜索:每次搜索 10 美元 +- Initial search of up to 25 identifiers: Free +- Production of subscriber information/data for up to 5 accounts: Free +- Production of subscriber information/data for more than 5 accounts: $20 per account +- Secondary searches: $10 per search -## 数据保存 +## Data preservation -在美国执法部门发出与官方刑事调查相关的正式要求后, 以及签发法院命令或其他程序之前,我们将采取步骤保存长达 90 天的帐户记录。 +We will take steps to preserve account records for up to 90 days upon formal request from U.S. law enforcement in connection with official criminal investigations, and pending the issuance of a court order or other process. -## 提交请求 +## Submitting requests -请将请求发送到: +Please serve requests to: ``` GitHub, Inc. @@ -173,23 +226,25 @@ c/o Corporation Service Company Sacramento, CA 95833-3505 ``` -抄送件可通过电子邮件发送给 legal@support.github.com。 +Courtesy copies may be emailed to legal@support.github.com. -请求请尽可能具体,包含以下信息: +Please make your requests as specific and narrow as possible, including the following information: -- 关于发出信息请求的机构的完整信息 -- 负责代理的名称和证章/ID -- 正式电子邮件地址和联系电话号码 -- 相关的用户、组织、仓库名称 -- 相关的任何页面、gist 或文件的 URL -- 您需要的记录类型描述 +- Full information about authority issuing the request for information +- The name and badge/ID of the responsible agent +- An official email address and contact phone number +- The user, organization, repository name(s) of interest +- The URLs of any pages, gists or files of interest +- The description of the types of records you need -请留出至少两周时间给我们审查您的请求。 +Please allow at least two weeks for us to be able to look into your request. -## 外国执法部门的请求 +## Requests from foreign law enforcement -作为一家设在加利福尼亚的美国公司,GitHub 不必根据外国当局签发的法律程序向外国政府提供数据。 希望向 GitHub 索取信息的外国执法官员应与美国司法部刑事司国际事务办公室联系。 GitHub 将迅速答复美国法院通过司法互助条约(“MLAT)或委托调查书发出的请求。 法院通过司法互助条约(“MLAT)或委托调查书发出的请求。 +As a United States company based in California, GitHub is not required to provide data to foreign governments in response to legal process issued by foreign authorities. +Foreign law enforcement officials wishing to request information from GitHub should contact the United States Department of Justice Criminal Division's Office of International Affairs. +GitHub will promptly respond to requests that are issued via U.S. court by way of a mutual legal assistance treaty (“MLAT”) or letter rogatory. -## 问题 +## Questions -您是否有其他问题、评论或建议? 请联系 {% data variables.contact.contact_support %}。 +Do you have other questions, comments or suggestions? Please contact {% data variables.contact.contact_support %}. diff --git a/translations/zh-CN/content/github/site-policy/index.md b/translations/zh-CN/content/github/site-policy/index.md index 1f8dfbe03b..1496ee8035 100644 --- a/translations/zh-CN/content/github/site-policy/index.md +++ b/translations/zh-CN/content/github/site-policy/index.md @@ -1,7 +1,7 @@ --- -title: 站点策略 +title: Site policy redirect_from: - - /categories/61/articles/ + - /categories/61/articles - /categories/site-policy versions: fpt: '*' diff --git a/translations/zh-CN/content/github/working-with-github-support/github-enterprise-cloud-support.md b/translations/zh-CN/content/github/working-with-github-support/github-enterprise-cloud-support.md index 7c198a59d3..972f708b78 100644 --- a/translations/zh-CN/content/github/working-with-github-support/github-enterprise-cloud-support.md +++ b/translations/zh-CN/content/github/working-with-github-support/github-enterprise-cloud-support.md @@ -1,8 +1,8 @@ --- title: GitHub Enterprise Cloud support redirect_from: - - /articles/business-plan-support/ - - /articles/github-business-cloud-support/ + - /articles/business-plan-support + - /articles/github-business-cloud-support - /articles/github-enterprise-cloud-support intro: '{% data variables.product.prodname_ghe_cloud %} includes a target eight-hour response time for priority support requests, Monday to Friday in your local time zone.' versions: diff --git a/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md b/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md index 15a2177662..d52fb36e48 100644 --- a/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md +++ b/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/creating-gists.md @@ -3,9 +3,9 @@ title: Creating gists intro: 'You can create two kinds of gists: {% ifversion ghae %}internal{% else %}public{% endif %} and secret. Create {% ifversion ghae %}an internal{% else %}a public{% endif %} gist if you''re ready to share your ideas with {% ifversion ghae %}enterprise members{% else %}the world{% endif %} or a secret gist if you''re not.' permissions: '{% data reusables.enterprise-accounts.emu-permission-gist %}' redirect_from: - - /articles/about-gists/ - - /articles/cannot-delete-an-anonymous-gist/ - - /articles/deleting-an-anonymous-gist/ + - /articles/about-gists + - /articles/cannot-delete-an-anonymous-gist + - /articles/deleting-an-anonymous-gist - /articles/creating-gists - /github/writing-on-github/creating-gists versions: diff --git a/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md b/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md index e7bf670739..cbc1fe7c11 100644 --- a/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md +++ b/translations/zh-CN/content/github/writing-on-github/editing-and-sharing-content-with-gists/index.md @@ -1,9 +1,9 @@ --- -title: 编辑内容以及与 gist 共享内容 +title: Editing and sharing content with gists intro: '' redirect_from: - - /categories/23/articles/ - - /categories/gists/ + - /categories/23/articles + - /categories/gists - /articles/editing-and-sharing-content-with-gists versions: fpt: '*' @@ -13,6 +13,6 @@ versions: children: - /creating-gists - /forking-and-cloning-gists -shortTitle: 与 gists 共享内容 +shortTitle: Share content with gists --- diff --git a/translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md b/translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md index 08bdd3fb28..568196ac4e 100644 --- a/translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md +++ b/translations/zh-CN/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/index.md @@ -1,10 +1,10 @@ --- -title: 开始在 GitHub 上编写和格式化 +title: Getting started with writing and formatting on GitHub redirect_from: - - /articles/markdown-basics/ - - /articles/things-you-can-do-in-a-text-area-on-github/ + - /articles/markdown-basics + - /articles/things-you-can-do-in-a-text-area-on-github - /articles/getting-started-with-writing-and-formatting-on-github -intro: 您可以在 GitHub 上使用简单的功能格式化您的评论,与他人交流议题、拉取请求和 wiki。 +intro: 'You can use simple features to format your comments and interact with others in issues, pull requests, and wikis on GitHub.' versions: fpt: '*' ghes: '*' @@ -13,6 +13,6 @@ versions: children: - /about-writing-and-formatting-on-github - /basic-writing-and-formatting-syntax -shortTitle: 开始在 GitHub 上写入 +shortTitle: Start writing on GitHub --- diff --git a/translations/zh-CN/content/github/writing-on-github/index.md b/translations/zh-CN/content/github/writing-on-github/index.md index 1daefeec9c..e53ef2f32b 100644 --- a/translations/zh-CN/content/github/writing-on-github/index.md +++ b/translations/zh-CN/content/github/writing-on-github/index.md @@ -1,11 +1,11 @@ --- -title: 在 GitHub 上编写 +title: Writing on GitHub redirect_from: - - /categories/88/articles/ - - /articles/github-flavored-markdown/ - - /articles/writing-on-github/ + - /categories/88/articles + - /articles/github-flavored-markdown + - /articles/writing-on-github - /categories/writing-on-github -intro: '您可以通过各种格式选项构建 {% data variables.product.product_name %} 共享的信息。' +intro: 'You can structure the information shared on {% data variables.product.product_name %} with various formatting options.' versions: fpt: '*' ghes: '*' diff --git a/translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md b/translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md index 2464279e9e..5f8e3d33ce 100644 --- a/translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md +++ b/translations/zh-CN/content/github/writing-on-github/working-with-advanced-formatting/attaching-files.md @@ -3,7 +3,7 @@ title: Attaching files intro: You can convey information by attaching a variety of file types to your issues and pull requests. redirect_from: - /github/managing-your-work-on-github/managing-your-work-with-issues-and-pull-requests/file-attachments-on-issues-and-pull-requests - - /articles/issue-attachments/ + - /articles/issue-attachments - /articles/file-attachments-on-issues-and-pull-requests - /github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests versions: diff --git a/translations/zh-CN/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md b/translations/zh-CN/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md index ece3c7041f..45ee882eba 100644 --- a/translations/zh-CN/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md +++ b/translations/zh-CN/content/github/writing-on-github/working-with-saved-replies/editing-a-saved-reply.md @@ -1,8 +1,8 @@ --- -title: 编辑已保存回复 -intro: 您可以编辑已保存回复的标题和正文。 +title: Editing a saved reply +intro: You can edit the title and body of a saved reply. redirect_from: - - /articles/changing-a-saved-reply/ + - /articles/changing-a-saved-reply - /articles/editing-a-saved-reply - /github/writing-on-github/editing-a-saved-reply versions: @@ -11,16 +11,17 @@ versions: ghae: '*' ghec: '*' --- - {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.saved_replies %} -3. 使用位于要编辑已保存回复旁边的“Saved replies”(已保存回复),单击 {% octicon "pencil" aria-label="The pencil" %}。 - ![编辑已保存回复](/assets/images/help/settings/saved-replies-edit-existing.png) -4. 在“ Edit saved reply”(已保存回复)下,您可以编辑已保存回复的标题和内容。 ![编辑标题和内容](/assets/images/help/settings/saved-replies-edit-existing-content.png) -5. 单击 **Update saved reply(更新已保存回复)**。 ![更新已保存回复](/assets/images/help/settings/saved-replies-save-edit.png) +3. Under "Saved replies", next to the saved reply you want to edit, click {% octicon "pencil" aria-label="The pencil" %}. +![Edit a saved reply](/assets/images/help/settings/saved-replies-edit-existing.png) +4. Under "Edit saved reply", you can edit the title and the content of the saved reply. +![Edit title and content](/assets/images/help/settings/saved-replies-edit-existing-content.png) +5. Click **Update saved reply**. +![Update saved reply](/assets/images/help/settings/saved-replies-save-edit.png) -## 延伸阅读 +## Further reading -- "[创建已保存回复](/articles/creating-a-saved-reply)" -- "[删除已保存回复](/articles/deleting-a-saved-reply)" -- "[使用已保存回复](/articles/using-saved-replies)" +- "[Creating a saved reply](/articles/creating-a-saved-reply)" +- "[Deleting a saved reply](/articles/deleting-a-saved-reply)" +- "[Using saved replies](/articles/using-saved-replies)" diff --git a/translations/zh-CN/content/graphql/reference/mutations.md b/translations/zh-CN/content/graphql/reference/mutations.md index 528855dbe2..73f190ae96 100644 --- a/translations/zh-CN/content/graphql/reference/mutations.md +++ b/translations/zh-CN/content/graphql/reference/mutations.md @@ -1,5 +1,5 @@ --- -title: 突变 +title: Mutations redirect_from: - /v4/mutation - /v4/reference/mutation @@ -12,12 +12,11 @@ topics: - API --- -## 关于突变 +## About mutations -每个 GraphQL 架构的查询和突变都有根类型。 [突变类型](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System)可定义用于更改服务器上数据的 GraphQL 操作。 此操作类似于执行 HTTP 请求方法,如 `POST`、`PATCH` 和 `DELETE`。 +Every GraphQL schema has a root type for both queries and mutations. The [mutation type](https://graphql.github.io/graphql-spec/June2018/#sec-Type-System) defines GraphQL operations that change data on the server. It is analogous to performing HTTP verbs such as `POST`, `PATCH`, and `DELETE`. -更多信息请参阅“[关于突变](/graphql/guides/forming-calls-with-graphql#about-mutations)。” +For more information, see "[About mutations](/graphql/guides/forming-calls-with-graphql#about-mutations)." -{% for item in graphql.schemaForCurrentVersion.mutations %} - {% include graphql-mutation %} -{% endfor %} +<!-- this page is pre-rendered by scripts because it's too big to load dynamically --> +<!-- see lib/graphql/static/prerendered-mutations.json --> diff --git a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md index 8fbf0e523e..d5073f08ca 100644 --- a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md +++ b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md @@ -1,6 +1,6 @@ --- -title: 关于组织 -intro: 组织是共享帐户,其中业务和开源项目可一次协助处理多个项目。 所有者和管理员可通过复杂的安全和管理功能管理成员对组织数据和项目的访问。 +title: About organizations +intro: Organizations are shared accounts where businesses and open-source projects can collaborate across many projects at once. Owners and administrators can manage member access to the organization's data and projects with sophisticated security and administrative features. redirect_from: - /articles/about-organizations - /github/setting-up-and-managing-organizations-and-teams/about-organizations @@ -14,25 +14,25 @@ topics: - Teams --- -{% data reusables.organizations.about-organizations %} +{% data reusables.organizations.about-organizations %} For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." -{% data reusables.organizations.organizations_include %} +{% data reusables.organizations.organizations_include %} -{% data reusables.organizations.org-ownership-recommendation %} 更多信息请参阅“[管理组织的所有权连续性](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)”。 +{% data reusables.organizations.org-ownership-recommendation %} For more information, see "[Maintaining ownership continuity for your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)." {% ifversion fpt or ghec %} -## 组织和企业帐户 +## Organizations and enterprise accounts Enterprise accounts are a feature of {% data variables.product.prodname_ghe_cloud %} that allow owners to centrally manage policy and billing for multiple organizations. -对于属于企业帐户的组织,帐单在企业帐户级别管理,并且帐单设置在组织级别不可用。 企业所有者可以为企业帐户中的所有组织设置策略,或者允许组织所有者在组织级别设置策略。 组织所有者无法更改在企业帐户级对组织执行的设置。 如果对组织的策略或设置有疑问,请联系企业帐户的所有者。 +For organizations that belong to an enterprise account, billing is managed at the enterprise account level, and billing settings are not available at the organization level. Enterprise owners can set policy for all organizations in the enterprise account or allow organization owners to set the policy at the organization level. Organization owners cannot change settings enforced for your organization at the enterprise account level. If you have questions about a policy or setting for your organization, contact the owner of your enterprise account. {% data reusables.enterprise.create-an-enterprise-account %} For more information, see "[Creating an enterprise account]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/admin/overview/creating-an-enterprise-account){% ifversion ghec %}."{% else %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% endif %} {% data reusables.enterprise-accounts.invite-organization %} -## 组织的服务条款和数据保护 +## Terms of service and data protection for organizations -实体(如公司、非营利组织或集团)可同意用于其组织的标准服务条款或公司服务条款。 更多信息请参阅“[升级到公司服务条款](/articles/upgrading-to-the-corporate-terms-of-service)”。 +An entity, such as a company, non-profit, or group, can agree to the Standard Terms of Service or the Corporate Terms of Service for their organization. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)." {% endif %} diff --git a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md index 973be80a8e..1301ef95bc 100644 --- a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md +++ b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/about-your-organizations-news-feed.md @@ -1,8 +1,8 @@ --- -title: 关于组织的消息馈送 -intro: 您可以使用组织的消息馈送跟进该组织拥有的仓库上的近期活动。 +title: About your organization’s news feed +intro: You can use your organization's news feed to keep up with recent activity on repositories owned by that organization. redirect_from: - - /articles/news-feed/ + - /articles/news-feed - /articles/about-your-organization-s-news-feed - /articles/about-your-organizations-news-feed - /github/setting-up-and-managing-organizations-and-teams/about-your-organizations-news-feed @@ -14,15 +14,17 @@ versions: topics: - Organizations - Teams -shortTitle: 组织消息馈送 +shortTitle: Organization news feed --- -组织的消息馈送显示其他人在该组织拥有的仓库上的活动。 您可以使用组织的消息馈送来查看何时有人打开、关闭或合并议题或拉取请求,创建或删除分支,创建标记或发行版,评论议题,拉取请求,或者提交或推送提交到 {% data variables.product.product_name %}。 +An organization's news feed shows other people's activity on repositories owned by that organization. You can use your organization's news feed to see when someone opens, closes, or merges an issue or pull request, creates or deletes a branch, creates a tag or release, comments on an issue, pull request, or commit, or pushes new commits to {% data variables.product.product_name %}. -## 访问组织的消息馈送 +## Accessing your organization's news feed -1. {% data variables.product.signin_link %} 到 {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} 上的帐户。 -2. 打开 {% data reusables.user_settings.personal_dashboard %}。 -3. 单击页面左上角的帐户上下文切换器。 ![Enterprise 中的上下文切换器按钮](/assets/images/help/organizations/account_context_switcher.png) -4. 从下拉菜单中选择组织。{% ifversion fpt or ghec %} ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} -![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} +1. {% data variables.product.signin_link %} to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}. +2. Open your {% data reusables.user_settings.personal_dashboard %}. +3. Click the account context switcher in the upper-left corner of the page. + ![Context switcher button in Enterprise](/assets/images/help/organizations/account_context_switcher.png) +4. Select an organization from the drop-down menu.{% ifversion fpt or ghec %} + ![Context switcher menu in dotcom](/assets/images/help/organizations/account-context-switcher-selected-dotcom.png){% else %} + ![Context switcher menu in Enterprise](/assets/images/help/organizations/account_context_switcher.png){% endif %} diff --git a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md index d05c7a533d..373c0c390d 100644 --- a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md +++ b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md @@ -1,15 +1,15 @@ --- -title: 访问组织的设置 +title: Accessing your organization's settings redirect_from: - - /articles/who-can-access-organization-billing-information-and-account-settings/ - - /articles/managing-the-organization-s-settings/ - - /articles/who-can-see-billing-information-account-settings/ - - /articles/who-can-see-billing-information-and-access-account-settings/ - - /articles/managing-an-organization-s-settings/ + - /articles/who-can-access-organization-billing-information-and-account-settings + - /articles/managing-the-organization-s-settings + - /articles/who-can-see-billing-information-account-settings + - /articles/who-can-see-billing-information-and-access-account-settings + - /articles/managing-an-organization-s-settings - /articles/accessing-your-organization-s-settings - /articles/accessing-your-organizations-settings - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organizations-settings -intro: 组织帐户设置页面提供几种管理帐户的方式,如帐单、团队成员资格和仓库设置。 +intro: 'The organization account settings page provides several ways to manage the account, such as billing, team membership, and repository settings.' versions: fpt: '*' ghes: '*' @@ -18,14 +18,13 @@ versions: topics: - Organizations - Teams -shortTitle: 访问组织设置 +shortTitle: Access organization settings --- - {% ifversion fpt or ghec %} {% tip %} -**提示:**只有组织所有者和帐单管理员可以查看及更改组织的帐单信息与帐户设置。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Only organization owners and billing managers can see and change the billing information and account settings for an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} diff --git a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/index.md b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/index.md index 562b37aaf2..bd2e17c6b1 100644 --- a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/index.md +++ b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/index.md @@ -1,8 +1,8 @@ --- -title: 与组织中的团体协作 -intro: 组织帐户中的人员团体可同时跨多个项目展开协作。 +title: Collaborating with groups in organizations +intro: Groups of people can collaborate across many projects at the same time in organization accounts. redirect_from: - - /articles/creating-a-new-organization-account/ + - /articles/creating-a-new-organization-account - /articles/collaborating-with-groups-in-organizations - /github/setting-up-and-managing-organizations-and-teams/collaborating-with-groups-in-organizations versions: @@ -21,6 +21,6 @@ children: - /customizing-your-organizations-profile - /about-your-organizations-news-feed - /viewing-insights-for-your-organization -shortTitle: 与组协作 +shortTitle: Collaborate with groups --- diff --git a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md index 3dcd489dd7..84fdefa98d 100644 --- a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md +++ b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md @@ -1,28 +1,26 @@ --- -title: 关于双重身份验证和 SAML 单点登录 -intro: 组织管理员可启用 SAML 单点登录及双重身份验证,为其组织成员增加额外的身份验证措施。 -product: '{% data reusables.gated-features.saml-sso %}' +title: About two-factor authentication and SAML single sign-on +intro: Organizations administrators can enable both SAML single sign-on and two-factor authentication to add additional authentication measures for their organization members. redirect_from: - /articles/about-two-factor-authentication-and-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-two-factor-authentication-and-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 2FA 和 SAML 单点登录 +shortTitle: 2FA & SAML single sign-on --- -双重身份验证 (2FA) 为组织成员提供基本验证。 通过启用 2FA,组织管理员可降低 {% data variables.product.product_location %} 上成员的帐户被盗的可能性。 有关 2FA 的更多信息,请参阅“[关于双重身份验证](/articles/about-two-factor-authentication)”。 +Two-factor authentication (2FA) provides basic authentication for organization members. By enabling 2FA, organization administrators limit the likelihood that a member's account on {% data variables.product.product_location %} could be compromised. For more information on 2FA, see "[About two-factor authentication](/articles/about-two-factor-authentication)." -为增加额外的身份验证措施,组织管理员也可[启用 SAML 单点登录 (SSO)](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization),这样组织成员必须使用单点登录来访问组织。 有关 SAML SSO 的更多信息,请参阅“[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)”。 +To add additional authentication measures, organization administrators can also [enable SAML single sign-on (SSO)](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) so that organization members must use single sign-on to access an organization. For more information on SAML SSO, see "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)." -如果同时启用了 2FA 和 SAML SSO,组织成员必须执行以下操作: -- 使用 2FA 登录其在 {% data variables.product.product_location %} 上的帐户 -- 使用单点登录访问组织 -- 使用授权用于 API 或 Git 访问的令牌,并使用单点登录授权令牌 +If both 2FA and SAML SSO are enabled, organization members must do the following: +- Use 2FA to log in to their account on {% data variables.product.product_location %} +- Use single sign-on to access the organization +- Use an authorized token for API or Git access and use single sign-on to authorize the token -## 延伸阅读 +## Further reading -- "[对组织实施 SAML 单点登录](/articles/enforcing-saml-single-sign-on-for-your-organization)" +- "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)" diff --git a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md index 6a1ba5a876..3b715c25de 100644 --- a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md +++ b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md @@ -1,11 +1,10 @@ --- -title: 使用 SAML 单点登录授予对组织的访问 -intro: 组织管理员可使用 SAML 单点登录授予对其组织的访问。 此访问权限可授予组织成员、自动程序和服务帐户。 +title: Granting access to your organization with SAML single sign-on +intro: 'Organization administrators can grant access to their organization with SAML single sign-on. This access can be granted to organization members, bots, and service accounts.' redirect_from: - /articles/granting-access-to-your-organization-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/granting-access-to-your-organization-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -14,6 +13,6 @@ children: - /managing-bots-and-service-accounts-with-saml-single-sign-on - /viewing-and-managing-a-members-saml-access-to-your-organization - /about-two-factor-authentication-and-saml-single-sign-on -shortTitle: 通过 SAML 授予访问权限 +shortTitle: Grant access with SAML --- diff --git a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md index 57d2fa3df3..0b6a234588 100644 --- a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md +++ b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md @@ -1,27 +1,25 @@ --- -title: 使用 SAML 单点登录管理自动程序和服务帐户 -intro: 启用了 SAML 单点登录的组织可保留对自动程序和服务帐户的访问权限。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Managing bots and service accounts with SAML single sign-on +intro: Organizations that have enabled SAML single sign-on can retain access for bots and service accounts. redirect_from: - /articles/managing-bots-and-service-accounts-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/managing-bots-and-service-accounts-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 管理自动程序和服务帐户 +shortTitle: Manage bots & service accounts --- -要保留对自动程序和服务帐户的访问权限,组织可以对组织[启用](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)但**不**[实施](/articles/enforcing-saml-single-sign-on-for-your-organization) SAML 单点登录。 如果需要对组织实施 SAML 单点登录,您可以通过身份提供程序 (IdP) 为自动程序或服务帐户创建外部身份。 +To retain access for bots and service accounts, organization administrators can [enable](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization), but **not** [enforce](/articles/enforcing-saml-single-sign-on-for-your-organization) SAML single sign-on for their organization. If you need to enforce SAML single sign-on for your organization, you can create an external identity for the bot or service account with your identity provider (IdP). {% warning %} -**注:**如果对组织实施 SAML 单点登录但**未**通过 IdP 为自动程序和服务帐户设置外部身份,它们将会从组织中删除。 +**Note:** If you enforce SAML single sign-on for your organization and **do not** have external identities set up for bots and service accounts with your IdP, they will be removed from your organization. {% endwarning %} -## 延伸阅读 +## Further reading -- "[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" 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 bd598f9a4f..8845f4c7cb 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 @@ -1,39 +1,37 @@ --- -title: 查看和管理成员对组织的 SAML 访问 -intro: 您可以查看和撤销组织成员的链接身份、活动会话和授权凭据。 +title: Viewing and managing a member's SAML access to your organization +intro: 'You can view and revoke an organization member''s linked identity, active sessions, and authorized credentials.' permissions: Organization owners can view and manage a member's SAML access to an organization. -product: '{% data reusables.gated-features.saml-sso %}' redirect_from: - /articles/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-revoking-organization-members-authorized-access-tokens - /github/setting-up-and-managing-organizations-and-teams/viewing-and-managing-a-members-saml-access-to-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 管理 SAML 访问 +shortTitle: Manage SAML access --- -## 关于对组织的 SAML 访问 +## About SAML access to your organization -对组织启用 SAML 单点登录时,每个组织成员都可以将其在身份提供程序 (IdP) 上的外部身份链接到其在 {% data variables.product.product_location %} 上的现有帐户。 要在 {% data variables.product.product_name %} 上访问组织的资源,成员必须在其浏览器中启动 SAML 会话。 要使用 API 或 Git 访问组织的资源,成员必须使用被授权用于组织的个人访问令牌或 SSH 密钥。 +When you enable SAML single sign-on for your organization, each organization member can link their external identity on your identity provider (IdP) to their existing account on {% data variables.product.product_location %}. To access your organization's resources on {% data variables.product.product_name %}, the member must have an active SAML session in their browser. To access your organization's resources using the API or Git, the member must use a personal access token or SSH key that the member has authorized for use with your organization. -您可以在同一页面上查看和撤销每个成员的链接身份、活动会话和授权凭据。 +You can view and revoke each member's linked identity, active sessions, and authorized credentials on the same page. -## 查看和撤销链接的身份 +## Viewing and revoking a linked identity -{% data reusables.saml.about-linked-identities %} +{% data reusables.saml.about-linked-identities %} -如果可用,该条目将包含 SCIM 数据。 更多信息请参阅“[关于 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)”。 +When available, the entry will include SCIM data. For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% warning %} -**警告:**对于使用 SCIM 的组织: -- 撤销 {% data variables.product.product_name %} 上链接的用户身份也会删除 SAML 和 SCIM 元数据。 因此,身份提供商无法同步或解除预配已链接的用户身份。 -- 管理员必须通过身份提供商撤销链接的身份。 -- 要撤销链接的身份并通过身份提供商链接其他帐户,管理员可以删除用户并重新分配给 {% data variables.product.product_name %} 应用程序。 更多信息请参阅身份提供商的文档。 +**Warning:** For organizations using SCIM: +- Revoking a linked user identity on {% data variables.product.product_name %} will also remove the SAML and SCIM metadata. As a result, the identity provider will not be able to synchronize or deprovision the linked user identity. +- An admin must revoke a linked identity through the identity provider. +- To revoke a linked identity and link a different account through the identity provider, an admin can remove and re-assign the user to the {% data variables.product.product_name %} application. For more information, see your identity provider's documentation. {% endwarning %} @@ -49,7 +47,7 @@ shortTitle: 管理 SAML 访问 {% data reusables.saml.revoke-sso-identity %} {% data reusables.saml.confirm-revoke-identity %} -## 查看和撤销活动的 SAML 会话 +## Viewing and revoking an active SAML session {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} @@ -59,7 +57,7 @@ shortTitle: 管理 SAML 访问 {% data reusables.saml.view-saml-sessions %} {% data reusables.saml.revoke-saml-session %} -## 查看和撤销授权的凭据 +## Viewing and revoking authorized credentials {% data reusables.saml.about-authorized-credentials %} @@ -72,7 +70,7 @@ shortTitle: 管理 SAML 访问 {% data reusables.saml.revoke-authorized-credentials %} {% data reusables.saml.confirm-revoke-credentials %} -## 延伸阅读 +## Further reading -- "[- "](/articles/about-identity-and-access-management-with-saml-single-sign-on)关于使用 SAML 单点登录管理身份和访问{% ifversion ghec %} -- "[查看和管理用户对企业帐户的 SAML 访问](/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)"{% endif %} +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)"{% ifversion ghec %} +- "[Viewing and managing a user's SAML access to your enterprise account](/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)"{% endif %} diff --git a/translations/zh-CN/content/organizations/index.md b/translations/zh-CN/content/organizations/index.md index 8bfc39dbd2..aebcbe659d 100644 --- a/translations/zh-CN/content/organizations/index.md +++ b/translations/zh-CN/content/organizations/index.md @@ -1,9 +1,9 @@ --- -title: 组织和团队 -shortTitle: 组织 -intro: 跨多个项目协作,同时管理对项目和数据的访问,并为组织自定义设置。 +title: Organizations and teams +shortTitle: Organizations +intro: Collaborate across many projects while managing access to projects and data and customizing settings for your organization. redirect_from: - - /articles/about-improved-organization-permissions/ + - /articles/about-improved-organization-permissions - /categories/setting-up-and-managing-organizations-and-teams - /github/setting-up-and-managing-organizations-and-teams versions: diff --git a/translations/zh-CN/content/organizations/keeping-your-organization-secure/index.md b/translations/zh-CN/content/organizations/keeping-your-organization-secure/index.md index d556839c2f..01d2dd4043 100644 --- a/translations/zh-CN/content/organizations/keeping-your-organization-secure/index.md +++ b/translations/zh-CN/content/organizations/keeping-your-organization-secure/index.md @@ -1,8 +1,8 @@ --- -title: 保护组织安全 -intro: '组织所有者有多项功能来帮助保护其项目和数据的安全。 如果您是组织的所有者,应定期检查组织的审核日志{% ifversion not ghae %}、成员 2FA 状态{% endif %} 和应用程序设置,以确保没有未授权或恶意的活动。' +title: Keeping your organization secure +intro: 'Organization owners have several features to help them keep their projects and data secure. If you''re the owner of an organization, you should regularly review your organization''s audit log{% ifversion not ghae %}, member 2FA status,{% endif %} and application settings to ensure that no unauthorized or malicious activity has occurred.' redirect_from: - - /articles/preventing-unauthorized-access-to-organization-information/ + - /articles/preventing-unauthorized-access-to-organization-information - /articles/keeping-your-organization-secure - /github/setting-up-and-managing-organizations-and-teams/keeping-your-organization-secure versions: @@ -22,6 +22,6 @@ children: - /restricting-email-notifications-for-your-organization - /reviewing-the-audit-log-for-your-organization - /reviewing-your-organizations-installed-integrations -shortTitle: 组织安全 +shortTitle: Organization security --- diff --git a/translations/zh-CN/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md b/translations/zh-CN/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md index eaf99a3523..609f0b67d1 100644 --- a/translations/zh-CN/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md +++ b/translations/zh-CN/content/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization.md @@ -1,10 +1,10 @@ --- -title: 限制组织的电子邮件通知 -intro: 为防止组织信息泄露到个人电子邮件帐户,您可以限制成员可以接收有关组织活动的电子邮件通知的域。 +title: Restricting email notifications for your organization +intro: 'To prevent organization information from leaking into personal email accounts, you can restrict the domains where members can receive email notifications about organization activity.' product: '{% data reusables.gated-features.restrict-email-domain %}' permissions: Organization owners can restrict email notifications for an organization. redirect_from: - - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain/ + - /articles/restricting-email-notifications-about-organization-activity-to-an-approved-email-domain - /articles/restricting-email-notifications-to-an-approved-domain - /github/setting-up-and-managing-organizations-and-teams/restricting-email-notifications-to-an-approved-domain - /organizations/keeping-your-organization-secure/restricting-email-notifications-to-an-approved-domain @@ -18,29 +18,29 @@ topics: - Notifications - Organizations - Policy -shortTitle: 限制电子邮件通知 +shortTitle: Restrict email notifications --- -## 关于电子邮件限制 +## About email restrictions -当在组织中启用受限制的电子邮件通知时,成员只能使用与已验证或批准的域关联的电子邮件地址接收有关组织活动的电子邮件通知。 更多信息请参阅“[验证或批准组织的域](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)”。 +When restricted email notifications are enabled in an organization, members can only use an email address associated with a verified or approved domain to receive email notifications about organization activity. For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.enterprise-accounts.approved-domains-beta-note %} {% data reusables.notifications.email-restrictions-verification %} -外部协作者不受限于已验证或批准域的电子邮件通知。 For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." +Outside collaborators are not subject to restrictions on email notifications for verified or approved domains. For more information about outside collaborators, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators)." -如果您的组织由企业帐户拥有,则组织成员除了能够接收来自组织的任何已验证或批准域的通知之外,还能够接收来自企业帐户的任何已验证或批准域的通知。 更多信息请参阅“[验证或批准企业的域](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)”。 +If your organization is owned by an enterprise account, organization members will be able to receive notifications from any domains verified or approved for the enterprise account, in addition to any domains verified or approved for the organization. For more information, see "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)." -## 限制电子邮件通知 +## Restricting email notifications -在限制组织的电子邮件通知之前,您必须至少验证或批准组织的一个域名,或者企业所有者必须已验证或批准至少一个企业帐户域。 +Before you can restrict email notifications for your organization, you must verify or approve at least one domain for the organization, or an enterprise owner must have verified or approved at least one domain for the enterprise account. -有关验证和批准组织域名的更多信息,请参阅“[验证或批准组织域名](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)”。 +For more information about verifying and approving domains for an organization, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.verified-domains %} {% data reusables.organizations.restrict-email-notifications %} -6. 单击 **Save(保存)**。 +6. Click **Save**. diff --git a/translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md b/translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md index f222e7b6c4..08a2b3eb70 100644 --- a/translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md +++ b/translations/zh-CN/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md @@ -56,7 +56,7 @@ To search for specific events, use the `action` qualifier in your query. Actions | [`marketplace_agreement_signature`](#marketplace_agreement_signature-category-actions) | Contains all activities related to signing the {% data variables.product.prodname_marketplace %} Developer Agreement. | [`marketplace_listing`](#marketplace_listing-category-actions) | Contains all activities related to listing apps in {% data variables.product.prodname_marketplace %}.{% endif %}{% ifversion fpt or ghes > 3.0 or ghec %} | [`members_can_create_pages`](#members_can_create_pages-category-actions) | Contains all activities related to managing the publication of {% data variables.product.prodname_pages %} sites for repositories in the organization. For more information, see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | {% endif %} -| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion fpt or ghec %} +| [`org`](#org-category-actions) | Contains activities related to organization membership.{% ifversion ghec %} | [`org_credential_authorization`](#org_credential_authorization-category-actions) | Contains all activities related to authorizing credentials for use with SAML single sign-on.{% endif %}{% ifversion fpt or ghes or ghae or ghec %} | [`organization_label`](#organization_label-category-actions) | Contains all activities related to default labels for repositories in your organization.{% endif %} | [`oauth_application`](#oauth_application-category-actions) | Contains all activities related to OAuth Apps.{% ifversion fpt or ghes > 3.0 or ghec %} @@ -423,12 +423,12 @@ For more information, see "[Managing the publication of {% data variables.produc | `block_user` | Triggered when an organization owner [blocks a user from accessing the organization's repositories](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization). | `cancel_invitation` | Triggered when an organization invitation has been revoked. {% endif %}{% ifversion fpt or ghes or ghec %} | `create_actions_secret` | Triggered when a {% data variables.product.prodname_actions %} secret is 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 %} {% ifversion fpt or ghec %} -| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %} +| `disable_oauth_app_restrictions` | Triggered when an owner [disables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/disabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `disable_saml` | Triggered when an organization admin disables SAML single sign-on for an organization.{% endif %}{% endif %} | `disable_member_team_creation_permission` | Triggered when an organization owner limits team creation to owners. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `disable_two_factor_requirement` | Triggered when an owner disables a two-factor authentication requirement for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} -| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization. -| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %} +| `enable_oauth_app_restrictions` | Triggered when an owner [enables {% data variables.product.prodname_oauth_app %} access restrictions](/articles/enabling-oauth-app-access-restrictions-for-your-organization) for your organization.{% ifversion ghec %} +| `enable_saml` | Triggered when an organization admin [enables SAML single sign-on](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization) for an organization.{% endif %}{% endif %} | `enable_member_team_creation_permission` | Triggered when an organization owner allows members to create teams. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." |{% ifversion not ghae %} | `enable_two_factor_requirement` | Triggered when an owner requires two-factor authentication for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization.{% endif %}{% ifversion fpt or ghec %} | `invite_member` | Triggered when [a new user was invited to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization). @@ -440,7 +440,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `remove_billing_manager` | Triggered when an [owner removes a billing manager from an organization](/articles/removing-a-billing-manager-from-your-organization/) or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and a billing manager doesn't use 2FA or disables 2FA. |{% endif %} | `remove_member` | Triggered when an [owner removes a member from an organization](/articles/removing-a-member-from-your-organization/){% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an organization member doesn't use 2FA or disables 2FA{% endif %}. Also triggered when an [organization member removes themselves](/articles/removing-yourself-from-an-organization/) from an organization.| | `remove_outside_collaborator` | Triggered when an owner removes an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication is required in an organization](/articles/requiring-two-factor-authentication-in-your-organization) and an outside collaborator does not use 2FA or disables 2FA{% endif %}. | -| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion fpt or ghec %} +| `remove_self_hosted_runner` | Triggered when a self-hosted runner is 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)." {% ifversion ghec %} | `revoke_external_identity` | Triggered when an organization owner revokes 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)." | `revoke_sso_session` | Triggered when an organization owner revokes 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 %} | `runner_group_created` | Triggered when a self-hosted runner group is 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)." @@ -464,7 +464,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `update_saml_provider_settings` | Triggered when an organization's SAML provider settings are updated. | `update_terms_of_service` | Triggered when an organization changes between the Standard Terms of Service and the Corporate Terms of Service. For more information, see "[Upgrading to the Corporate Terms of Service](/articles/upgrading-to-the-corporate-terms-of-service)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ### `org_credential_authorization` category actions | Action | Description diff --git a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/index.md b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/index.md index 7554ba5626..94a30b7368 100644 --- a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/index.md +++ b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/index.md @@ -1,8 +1,8 @@ --- -title: 管理对组织仓库的访问 -intro: 组织所有者可以管理个人和团队对组织仓库的访问。 团队维护员也可以管理团队的仓库访问权限。 +title: Managing access to your organization's repositories +intro: Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access. redirect_from: - - /articles/permission-levels-for-an-organization-repository/ + - /articles/permission-levels-for-an-organization-repository - /articles/managing-access-to-your-organization-s-repositories - /articles/managing-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-repositories @@ -26,6 +26,6 @@ children: - /converting-an-organization-member-to-an-outside-collaborator - /converting-an-outside-collaborator-to-an-organization-member - /reinstating-a-former-outside-collaborators-access-to-your-organization -shortTitle: 管理对仓库的访问 +shortTitle: Manage access to repositories --- diff --git a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md index 8a81977f91..4e2c599dd2 100644 --- a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md +++ b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-an-individuals-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: 管理个人对组织仓库的访问 -intro: 您可以管理个人对组织拥有的仓库的访问。 +title: Managing an individual's access to an organization repository +intro: You can manage a person's access to a repository owned by your organization. redirect_from: - - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program/ + - /articles/managing-an-individual-s-access-to-an-organization-repository-early-access-program - /articles/managing-an-individual-s-access-to-an-organization-repository - /articles/managing-an-individuals-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-repository @@ -14,13 +14,13 @@ versions: topics: - Organizations - Teams -shortTitle: 管理个人访问 +shortTitle: Manage individual access permissions: People with admin access to a repository can manage access to the repository. --- ## About access to organization repositories -从组织中的仓库删除协作者时,该协作者会失去对仓库的读写权限。 如果仓库是私有的,并且协作者对仓库进行了复刻,则其复刻也会被检测到,但协作者仍然保留仓库的任何本地克隆副本。 +When you remove a collaborator from a repository in your organization, the collaborator loses read and write access to the repository. If the repository is private and the collaborator has forked the repository, then their fork is also deleted, but the collaborator will still retain any local clones of your repository. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -30,20 +30,25 @@ permissions: People with admin access to a repository can manage access to the r {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-manage-access %} {% data reusables.organizations.invite-teams-or-people %} -5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. ![用于输入要邀请加入仓库的团队或人员名称的搜索字段](/assets/images/help/repository/manage-access-invite-search-field.png) -6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. ![为团队或人员选择权限](/assets/images/help/repository/manage-access-invite-choose-role-add.png) +5. In the search field, start typing the name of the person to invite, then click a name in the list of matches. + ![Search field for typing the name of a team or person to invite to the repository](/assets/images/help/repository/manage-access-invite-search-field.png) +6. Under "Choose a role", select the repository role to assign the person, then click **Add NAME to REPOSITORY**. + ![Selecting permissions for the team or person](/assets/images/help/repository/manage-access-invite-choose-role-add.png) -## 管理个人对组织仓库的访问 +## Managing an individual's access to an organization repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.people %} -4. 单击 **Members(成员)**或 **Outside collaborators(外部协作者)**以管理具有不同访问权限的人员。 ![邀请成员或外部协作者参加组织的按钮](/assets/images/help/organizations/select-outside-collaborators.png) -5. 在您要管理的人员名称右侧,使用 {% octicon "gear" aria-label="The Settings gear" %} 下拉菜单,并单击 **Manage(管理)**。 ![管理访问链接](/assets/images/help/organizations/member-manage-access.png) -6. 在 "Manage access"(管理访问权限)页面上的仓库旁边,单击 **Manage access(管理访问权限)**。 ![管理对仓库的访问权限按钮](/assets/images/help/organizations/repository-manage-access.png) -7. 检查个人对指定仓库的访问权限,例如他们是协作者还是通过团队成员资格来访问仓库。 ![用户的仓库访问矩阵](/assets/images/help/organizations/repository-access-matrix-for-user.png) +4. Click either **Members** or **Outside collaborators** to manage people with different types of access. ![Button to invite members or outside collaborators to an organization](/assets/images/help/organizations/select-outside-collaborators.png) +5. To the right of the name of the person you'd like to manage, use the {% octicon "gear" aria-label="The Settings gear" %} drop-down menu, and click **Manage**. + ![The manage access link](/assets/images/help/organizations/member-manage-access.png) +6. On the "Manage access" page, next to the repository, click **Manage access**. +![Manage access button for a repository](/assets/images/help/organizations/repository-manage-access.png) +7. Review the person's access to a given repository, such as whether they're a collaborator or have access to the repository via team membership. +![Repository access matrix for the user](/assets/images/help/organizations/repository-access-matrix-for-user.png) -## 延伸阅读 +## Further reading -{% ifversion fpt or ghec %}- "[限制与仓库的交互](/articles/limiting-interactions-with-your-repository)"{% endif %} +{% ifversion fpt or ghec %}- "[Limiting interactions with your repository](/articles/limiting-interactions-with-your-repository)"{% endif %} - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md index 260e02b0fb..51d2c0a079 100644 --- a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md +++ b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository.md @@ -1,8 +1,8 @@ --- -title: 管理团队对组织仓库的访问 -intro: 您可以向团队授予仓库访问权限,删除团队的仓库访问权限,或者更改团队对仓库的权限级别。 +title: Managing team access to an organization repository +intro: 'You can give a team access to a repository, remove a team''s access to a repository, or change a team''s permission level for a repository.' redirect_from: - - /articles/managing-team-access-to-an-organization-repository-early-access-program/ + - /articles/managing-team-access-to-an-organization-repository-early-access-program - /articles/managing-team-access-to-an-organization-repository - /github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-repository versions: @@ -13,32 +13,35 @@ versions: topics: - Organizations - Teams -shortTitle: 管理团队访问 +shortTitle: Manage team access --- -对仓库具有管理员权限的人员可以管理团队对仓库的访问权限。 团队维护员可以删除团队对仓库的访问权限。 +People with admin access to a repository can manage team access to the repository. Team maintainers can remove a team's access to a repository. {% warning %} -**警告:** -- 如果团队能够直接访问仓库,您可以更改其权限级别。 如果团队对仓库的访问权限继承自父团队,则您必须更改团队对仓库的访问权限。 -- 如果您添加或删除父团队的仓库访问权限,则其每个子团队也会获得或失去相应的仓库访问权限。 更多信息请参阅“[关于团队](/articles/about-teams)”。 +**Warnings:** +- You can change a team's permission level if the team has direct access to a repository. If the team's access to the repository is inherited from a parent team, you must change the parent team's access to the repository. +- If you add or remove repository access for a parent team, each of that parent's child teams will also receive or lose access to the repository. For more information, see "[About teams](/articles/about-teams)." {% endwarning %} -## 授予团队对仓库的访问权限 +## Giving a team access to a repository {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. 在仓库列表上方,单击 **Add repository(添加仓库)**。 ![添加仓库按钮](/assets/images/help/organizations/add-repositories-button.png) -6. 输入仓库的名称,然后单击 **Add repository to team(添加仓库到团队)**。 ![仓库搜索字段](/assets/images/help/organizations/team-repositories-add.png) -7. 也可选择在仓库名称右侧使用下拉菜单,为团队选择不同的权限级别。 ![仓库访问权限下拉菜单](/assets/images/help/organizations/team-repositories-change-permission-level.png) +5. Above the list of repositories, click **Add repository**. + ![The Add repository button](/assets/images/help/organizations/add-repositories-button.png) +6. Type the name of a repository, then click **Add repository to team**. + ![Repository search field](/assets/images/help/organizations/team-repositories-add.png) +7. Optionally, to the right of the repository name, use the drop-down menu and choose a different permission level for the team. + ![Repository access level dropdown](/assets/images/help/organizations/team-repositories-change-permission-level.png) -## 删除团队对仓库的访问权限 +## Removing a team's access to a repository -如果团队能够直接访问仓库,您可以更改其对仓库的访问权限。 如果团队对仓库的访问权限继承自父团队,则必须删除父团队对仓库的访问权限才可删除其子团队的相应权限。 +You can remove a team's access to a repository if the team has direct access to a repository. If a team's access to the repository is inherited from a parent team, you must remove the repository from the parent team in order to remove the repository from child teams. {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} @@ -46,10 +49,13 @@ shortTitle: 管理团队访问 {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team-repositories-tab %} -5. 选择要从团队删除的仓库。 ![某些仓库的勾选框已选中的团队仓库列表](/assets/images/help/teams/select-team-repositories-bulk.png) -6. 在仓库列表上方,使用下拉菜单,然后单击 **Remove from team(从团队删除)**。 ![包含从团队删除仓库的选项的下拉菜单](/assets/images/help/teams/remove-team-repo-dropdown.png) -7. 检查要从团队删除的仓库,然后单击 **Remove repositories(删除仓库)**。 ![包含团队无法再访问的仓库列表的模态框](/assets/images/help/teams/confirm-remove-team-repos.png) +5. Select the repository or repositories you'd like to remove from the team. + ![List of team repositories with the checkboxes for some repositories selected](/assets/images/help/teams/select-team-repositories-bulk.png) +6. Above the list of repositories, use the drop-down menu, and click **Remove from team**. + ![Drop-down menu with the option to remove a repository from a team](/assets/images/help/teams/remove-team-repo-dropdown.png) +7. Review the repository or repositories that will be removed from the team, then click **Remove repositories**. + ![Modal box with a list of repositories that the team will no longer have access to](/assets/images/help/teams/confirm-remove-team-repos.png) -## 延伸阅读 +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" diff --git a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md index 87dda915f4..7a0e4bbd0d 100644 --- a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md +++ b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization.md @@ -3,7 +3,7 @@ title: Repository roles for an organization intro: 'You can customize access to each repository in your organization by assigning granular roles, giving people access to the features and tasks they need.' miniTocMaxHeadingLevel: 3 redirect_from: - - /articles/repository-permission-levels-for-an-organization-early-access-program/ + - /articles/repository-permission-levels-for-an-organization-early-access-program - /articles/repository-permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization - /organizations/managing-access-to-your-organizations-repositories/repository-permission-levels-for-an-organization diff --git a/translations/zh-CN/content/organizations/managing-git-access-to-your-organizations-repositories/index.md b/translations/zh-CN/content/organizations/managing-git-access-to-your-organizations-repositories/index.md index e775809eac..ddff241ba3 100644 --- a/translations/zh-CN/content/organizations/managing-git-access-to-your-organizations-repositories/index.md +++ b/translations/zh-CN/content/organizations/managing-git-access-to-your-organizations-repositories/index.md @@ -1,9 +1,9 @@ --- -title: 管理对组织仓库的 Git 访问 -intro: 您可以将 SSH 证书颁发机构 (CA) 添加到组织,并允许成员使用 SSH CA 签名的密钥通过 Git 访问组织的仓库。 +title: Managing Git access to your organization's repositories +intro: You can add an SSH certificate authority (CA) to your organization and allow members to access the organization's repositories over Git using keys signed by the SSH CA. product: '{% data reusables.gated-features.ssh-certificate-authorities %}' redirect_from: - - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities/ + - /articles/managing-git-access-to-your-organizations-repositories-using-ssh-certificate-authorities - /articles/managing-git-access-to-your-organizations-repositories - /github/setting-up-and-managing-organizations-and-teams/managing-git-access-to-your-organizations-repositories versions: @@ -17,6 +17,6 @@ topics: children: - /about-ssh-certificate-authorities - /managing-your-organizations-ssh-certificate-authorities -shortTitle: 管理 Git 权限 +shortTitle: Manage Git access --- diff --git a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md index 8189c1809b..fcbc84c3ef 100644 --- a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md +++ b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md @@ -1,8 +1,8 @@ --- -title: 我可以为组织中的人员创建帐户吗? -intro: 虽然您可以将用户添加到您创建的组织,但您无法代表其他人创建其个人用户帐户。 +title: Can I create accounts for people in my organization? +intro: 'While you can add users to an organization you''ve created, you can''t create personal user accounts on behalf of another person.' redirect_from: - - /articles/can-i-create-accounts-for-those-in-my-organization/ + - /articles/can-i-create-accounts-for-those-in-my-organization - /articles/can-i-create-accounts-for-people-in-my-organization - /github/setting-up-and-managing-organizations-and-teams/can-i-create-accounts-for-people-in-my-organization versions: @@ -11,19 +11,21 @@ versions: topics: - Organizations - Teams -shortTitle: 为人员创建帐户 +shortTitle: Create accounts for people --- -## 关于用户帐户 +## About user accounts -由于访问组织需要登录用户帐户,因此每个团队成员都需要创建自己的用户帐户。 在有了要添加到组织的每个人的用户名后,就可以将用户添加到团队。 +Because you access an organization by logging in to a user account, each of your team members needs to create their own user account. After you have usernames for each person you'd like to add to your organization, you can add the users to teams. {% ifversion fpt or ghec %} -如果您需要更好地控制组织成员的用户帐户,请考虑 {% data variables.product.prodname_emus %}。 {% data reusables.enterprise-accounts.emu-short-summary %} +{% 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 user accounts have to the organization's resources through an identity provider (IdP). 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){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} + +You can also consider {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} {% endif %} -## 将用户添加到您的组织 +## Adding users to your organization -1. 向每个人提供关于[创建用户帐户](/articles/signing-up-for-a-new-github-account)的说明。 -2. 获取要赋予其组织成员资格的每个人的用户名。 -3. [邀请新个人帐户加入](/articles/inviting-users-to-join-your-organization)您的组织。 使用[组织角色](/articles/permission-levels-for-an-organization)和[仓库权限](/articles/repository-permission-levels-for-an-organization)限制每个帐户的访问权限。 +1. Provide each person instructions to [create a user account](/articles/signing-up-for-a-new-github-account). +2. Ask for the username of each person you want to give organization membership to. +3. [Invite the new personal accounts to join](/articles/inviting-users-to-join-your-organization) your organization. Use [organization roles](/articles/permission-levels-for-an-organization) and [repository permissions](/articles/repository-permission-levels-for-an-organization) to limit the access of each account. diff --git a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/index.md b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/index.md index 90120e3b23..1216f530f7 100644 --- a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/index.md +++ b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/index.md @@ -1,8 +1,8 @@ --- -title: 管理组织中的成员资格 -intro: '在创建组织后,您可以{% ifversion fpt %}邀请人员成为{% else %}添加人员为{% endif %}组织的成员。 您也可以删除组织的成员,以及恢复前成员。' +title: Managing membership in your organization +intro: 'After you create your organization, you can {% ifversion fpt %}invite people to become{% else %}add people as{% endif %} members of the organization. You can also remove members of the organization, and reinstate former members.' redirect_from: - - /articles/removing-a-user-from-your-organization/ + - /articles/removing-a-user-from-your-organization - /articles/managing-membership-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-membership-in-your-organization versions: @@ -21,7 +21,6 @@ children: - /reinstating-a-former-member-of-your-organization - /exporting-member-information-for-your-organization - /can-i-create-accounts-for-people-in-my-organization -shortTitle: 管理会员资格 +shortTitle: Manage membership --- - <!-- else --> 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 247e312548..31b090c1f3 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,9 +1,9 @@ --- -title: 邀请用户参加您的组织 -intro: '您可以使用任何人的 {% data variables.product.product_name %} 用户名或电子邮件地址邀请其成为组织的成员。' +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/ + - /articles/adding-or-inviting-members-to-a-team-in-an-organization - /articles/inviting-users-to-join-your-organization - /github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization versions: @@ -12,16 +12,18 @@ 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 %}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](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} ## Inviting a user to join your organization @@ -36,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/renaming-an-organization.md b/translations/zh-CN/content/organizations/managing-organization-settings/renaming-an-organization.md index 8c682583f9..30bd57d2b3 100644 --- a/translations/zh-CN/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/translations/zh-CN/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -1,8 +1,8 @@ --- -title: 重命名组织 -intro: 如果您的项目或公司已更改名称,您可以更新组织的名称以匹配。 +title: Renaming an organization +intro: 'If your project or company has changed names, you can update the name of your organization to match.' redirect_from: - - /articles/what-happens-when-i-change-my-organization-s-name/ + - /articles/what-happens-when-i-change-my-organization-s-name - /articles/renaming-an-organization - /github/setting-up-and-managing-organizations-and-teams/renaming-an-organization versions: @@ -17,34 +17,35 @@ topics: {% tip %} -**提示:**只有组织所有者才能重命名组织。 {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Only organization owners can rename an organization. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} -## 更改我的组织名称时会发生什么? +## What happens when I change my organization's name? -更改组织名称后,您的旧组织名称可供其他人申请使用。 当您更改组织的名称后,在旧组织名称下对仓库的大多数引用都会更改为新名称。 不过,指向您个人资料的某些链接不会自动重定向。 +After changing your organization's name, your old organization name becomes available for someone else to claim. When you change your organization's name, most references to your repositories under the old organization name automatically change to the new name. However, some links to your profile won't automatically redirect. -### 自动进行的更改 +### Changes that occur automatically -- {% data variables.product.prodname_dotcom %} 将引用自动重定向到您的仓库。 指向您组织现有**仓库**的 Web 链接将继续有效。 启动更改后,可能需要几分钟时间才能完成。 -- 您可以继续将本地仓库推送到旧的远程跟踪 URL 而不进行更新。 但是,我们建议您在更改组织名称后更新所有现有的远程仓库 URL。 由于您的旧组织名称在更改后可供其他人使用,因此新组织所有者可以创建覆盖仓库重定向条目的仓库。 更多信息请参阅“[管理远程仓库](/github/getting-started-with-github/managing-remote-repositories)”。 -- 以前的 Git 提交也将正确归于组织内的用户。 +- {% data variables.product.prodname_dotcom %} automatically redirects references to your repositories. Web links to your organization's existing **repositories** will continue to work. This can take a few minutes to complete after you initiate the change. +- You can continue pushing your local repositories to the old remote tracking URL without updating it. However, we recommend you update all existing remote repository URLs after changing your organization name. Because your old organization name is available for use by anyone else after you change it, the new organization owner can create repositories that override the redirect entries to your repository. For more information, see "[Managing remote repositories](/github/getting-started-with-github/managing-remote-repositories)." +- Previous Git commits will also be correctly attributed to users within your organization. -### 并非自动的更改 +### Changes that aren't automatic -更改组织的名称后: -- 指向以前组织资料页面的链接(例如 `https://{% data variables.command_line.backticks %}/previousorgname`)将返回 404 错误。 我们建议您更新其他站点指向组织的链接{% ifversion fpt or ghec %},例如 LinkedIn 或 Twitter 个人资料{% endif %}。 -- 使用旧组织名称的 API 请求将返回 404 错误。 我们建议您更新 API 请求中的旧组织名称。 -- 对于使用旧组织名称的团队,没有自动[@提及](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams)重定向。{% ifversion fpt or ghec %} -- 如果为组织启用了 SAML 单点登录 (SSO),则必须在身份提供商 (IdP) 上更新 {% data variables.product.prodname_ghe_cloud %} 的应用程序中的组织名称。 如果您不更新 IdP 上的组织名称,组织成员将无法使用您的 IdP 身份验证来访问组织的资源。 更多信息请参阅“[将身份提供程序连接到组织](/github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization)”。{% endif %} +After changing your organization's name: +- Links to your previous organization profile page, such as `https://{% data variables.command_line.backticks %}/previousorgname`, will return a 404 error. We recommend you update links to your organization from other sites{% ifversion fpt or ghec %}, such as your LinkedIn or Twitter profiles{% endif %}. +- API requests that use the old organization's name will return a 404 error. We recommend you update the old organization name in your API requests. +- There are no automatic [@mention](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams) redirects for teams that use the old organization's name.{% ifversion ghec %} +- If SAML single sign-on (SSO) is enabled for the organization, you must update the organization name in the application for {% data variables.product.prodname_ghe_cloud %} on your identity provider (IdP). If you don't update the organization name on your IdP, members of the organization will no longer be able to authenticate with your IdP to access the organization's resources. For more information, see "[Connecting your identity provider to your organization](/github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization)."{% endif %} -## 更改组织的名称 +## Changing your organization's name {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -4. 在设置页面底部附近的“Rename organization(重命名组织)”下,单击 **Rename Organization(重命名组织)**。 ![重命名组织按钮](/assets/images/help/settings/settings-rename-organization.png) +4. Near the bottom of the settings page, under "Rename organization", click **Rename Organization**. + ![Rename organization button](/assets/images/help/settings/settings-rename-organization.png) -## 延伸阅读 +## Further reading -* “[我的提交为什么链接到错误的用户?](/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user)” +* "[Why are my commits linked to the wrong user?](/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user)" diff --git a/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md b/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md index f8248a5f85..44b80ce85d 100644 --- a/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md +++ b/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md @@ -1,9 +1,9 @@ --- -title: 设置添加外部协作者的权限 -intro: 为了保护组织的数据和组织中使用的付费许可数,您可以只允许所有者邀请外部协作者加入组织仓库。 +title: Setting permissions for adding outside collaborators +intro: 'To protect your organization''s data and the number of paid licenses used in your organization, you can allow only owners to invite outside collaborators to organization repositories.' product: '{% data reusables.gated-features.restrict-add-collaborator %}' redirect_from: - - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories/ + - /articles/restricting-the-ability-to-add-outside-collaborators-to-organization-repositories - /articles/setting-permissions-for-adding-outside-collaborators - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-adding-outside-collaborators versions: @@ -14,15 +14,16 @@ versions: topics: - Organizations - Teams -shortTitle: 设置协作者策略 +shortTitle: Set collaborator policy --- -组织所有者和具有仓库管理员权限的成员可以邀请外部协作者处理仓库。 您还可以将外部协作者邀请权限仅限于组织所有者。 +Organization owners, and members with admin privileges for a repository, can invite outside collaborators to work on the repository. You can also restrict outside collaborator invite permissions to only organization owners. {% data reusables.organizations.outside-collaborators-use-seats %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. 在“Repository invitations(仓库邀请)”下,选择 **Allow members to invite outside collaborators to repositories for this organization(允许成员邀请外部协作者加入此组织的仓库)**。 ![允许成员邀请外部协作者加入组织仓库的复选框](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) -6. 单击 **Save(保存)**。 +5. Under "Repository invitations", select **Allow members to invite outside collaborators to repositories for this organization**. + ![Checkbox to allow members to invite outside collaborators to organization repositories](/assets/images/help/organizations/repo-invitations-checkbox-updated.png) +6. Click **Save**. diff --git a/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md b/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md index 8d99e577c6..5309271e6e 100644 --- a/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md +++ b/translations/zh-CN/content/organizations/managing-organization-settings/setting-permissions-for-deleting-or-transferring-repositories.md @@ -1,8 +1,8 @@ --- -title: 设置删除或转让仓库的权限 -intro: 您可以允许具有仓库管理员权限的组织成员删除或转让仓库,或者将删除或转让仓库的功能限制为仅组织所有者。 +title: Setting permissions for deleting or transferring repositories +intro: 'You can allow organization members with admin permissions to a repository to delete or transfer the repository, or limit the ability to delete or transfer repositories to organization owners only.' redirect_from: - - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization/ + - /articles/setting-permissions-for-deleting-or-transferring-repositories-in-your-organization - /articles/setting-permissions-for-deleting-or-transferring-repositories - /github/setting-up-and-managing-organizations-and-teams/setting-permissions-for-deleting-or-transferring-repositories versions: @@ -13,13 +13,14 @@ versions: topics: - Organizations - Teams -shortTitle: 设置仓库管理策略 +shortTitle: Set repo management policy --- -所有者可以设置删除或转让组织中仓库的权限。 +Owners can set permissions for deleting or transferring repositories in an organization. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %} -5. 在 Repository deletion and transfer(仓库删除和转让)下,选择或取消选择 **Allow members to delete or transfer repositories for this organization(允许成员删除或转让此组织的仓库)**。 ![允许成员删除仓库的复选框](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) -6. 单击 **Save(保存)**。 +5. Under "Repository deletion and transfer", select or deselect **Allow members to delete or transfer repositories for this organization**. +![Checkbox to allow members to delete repositories](/assets/images/help/organizations/disallow-members-to-delete-repositories.png) +6. Click **Save**. diff --git a/translations/zh-CN/content/organizations/managing-organization-settings/transferring-organization-ownership.md b/translations/zh-CN/content/organizations/managing-organization-settings/transferring-organization-ownership.md index c7a37654cc..da79cb679b 100644 --- a/translations/zh-CN/content/organizations/managing-organization-settings/transferring-organization-ownership.md +++ b/translations/zh-CN/content/organizations/managing-organization-settings/transferring-organization-ownership.md @@ -1,8 +1,8 @@ --- -title: 转让组织所有权 -intro: '要使其他人成为组织帐户的所有者,您必须添加新所有者{% ifversion fpt or ghec %},确保帐单信息已更新,{% endif %}然后将自身从该帐户中删除。' +title: Transferring organization ownership +intro: 'To make someone else the owner of an organization account, you must add a new owner{% ifversion fpt or ghec %}, ensure that the billing information is updated,{% endif %} and then remove yourself from the account.' redirect_from: - - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else/ + - /articles/needs-polish-how-do-i-give-ownership-to-an-organization-to-someone-else - /articles/transferring-organization-ownership - /github/setting-up-and-managing-organizations-and-teams/transferring-organization-ownership versions: @@ -13,26 +13,25 @@ versions: topics: - Organizations - Teams -shortTitle: 转移所有权 +shortTitle: Transfer ownership --- - {% ifversion fpt or ghec %} {% note %} -**注:**{% data reusables.enterprise-accounts.invite-organization %} +**Note:** {% data reusables.enterprise-accounts.invite-organization %} {% endnote %}{% endif %} -1. 如果您是具有*所有者*权限的唯一成员,则授予其他组织成员所有者角色。 更多信息请参阅“[任命组织所有者](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)”。 -2. 联系新的所有者,确保其能够[访问组织的设置](/articles/accessing-your-organization-s-settings)。 +1. If you're the only member with *owner* privileges, give another organization member the owner role. For more information, see "[Appointing an organization owner](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization#appointing-an-organization-owner)." +2. Contact the new owner and make sure he or she is able to [access the organization's settings](/articles/accessing-your-organization-s-settings). {% ifversion fpt or ghec %} -3. 如果您目前负责为组织中的 GitHub 付款,则还需要让新所有者或[帐单管理员](/articles/adding-a-billing-manager-to-your-organization/)更新组织的付款信息。 更多信息请参阅“[添加或编辑付款方式](/articles/adding-or-editing-a-payment-method)”。 +3. If you are currently responsible for paying for GitHub in your organization, you'll also need to have the new owner or a [billing manager](/articles/adding-a-billing-manager-to-your-organization/) update the organization's payment information. For more information, see "[Adding or editing a payment method](/articles/adding-or-editing-a-payment-method)." {% warning %} - **警告**:从组织中删除自身**不会**更新组织帐户存档的帐单信息。 新的所有者或帐单管理员必须更新存档的帐单信息,以删除您的信用卡或 PayPal 信息。 + **Warning**: Removing yourself from the organization **does not** update the billing information on file for the organization account. The new owner or a billing manager must update the billing information on file to remove your credit card or PayPal information. {% endwarning %} {% endif %} -4. 从组织中[删除自身](/articles/removing-yourself-from-an-organization)。 +4. [Remove yourself](/articles/removing-yourself-from-an-organization) from the organization. diff --git a/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 03a6516b82..f7caf78b8b 100644 --- a/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -90,6 +90,8 @@ You can only choose an additional permission if it's not already included in the - **View {% data variables.product.prodname_code_scanning %} results**: Ability to view {% data variables.product.prodname_code_scanning %} alerts. - **Dismiss or reopen {% data variables.product.prodname_code_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_code_scanning %} alerts. - **Delete {% data variables.product.prodname_code_scanning %} results**: Ability to delete {% data variables.product.prodname_code_scanning %} alerts. +- **View {% data variables.product.prodname_secret_scanning %} results**: Ability to view {% data variables.product.prodname_secret_scanning %} alerts. +- **Dismiss or reopen {% data variables.product.prodname_secret_scanning %} results**: Ability to dismiss or reopen {% data variables.product.prodname_secret_scanning %} alerts. ## Precedence for different levels of access 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 300940a79e..a62d2b892d 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 @@ -2,7 +2,7 @@ title: Roles in an organization intro: Organization owners can assign roles to individuals and teams giving them different sets of permissions in the organization. redirect_from: - - /articles/permission-levels-for-an-organization-early-access-program/ + - /articles/permission-levels-for-an-organization-early-access-program - /articles/permission-levels-for-an-organization - /github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization - /organizations/managing-peoples-access-to-your-organization-with-roles/permission-levels-for-an-organization @@ -16,7 +16,6 @@ topics: - Teams shortTitle: Roles in an organization --- - ## About roles {% data reusables.organizations.about-roles %} @@ -31,13 +30,13 @@ Organization-level roles are sets of permissions that can be assigned to individ You can assign individuals or teams to a variety of organization-level roles to control your members' access to your organization and its resources. For more details about the individual permissions included in each role, see "[Permissions for organization roles](#permissions-for-organization-roles)." ### Organization owners -Organization owners have complete administrative access to your organization. 此角色应限于组织中的少数几个人,但不少于两人。 更多信息请参阅“[管理组织的所有权连续性](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)”。 +Organization owners have complete administrative access to your organization. This role should be limited, but to no less than two people, in your organization. For more information, see "[Maintaining ownership continuity for your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization)." -### 组织成员 +### Organization members The default, non-administrative role for people in an organization is the organization member. By default, organization members have a number of permissions, including the ability to create repositories and project boards. {% ifversion fpt or ghec %} -### 帐单管理员 +### Billing managers Billing managers are users who can manage the billing settings for your organization, such as payment information. This is a useful option if members of your organization don't usually have access to billing resources. 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 %} @@ -51,179 +50,174 @@ Billing managers are users who can manage the billing settings for your organiza If your organization has a security team, you can use the security manager role to give members of the team the least access they need to the organization. For more information, see "[Managing security managers in your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization)." {% endif %} -### {% data variables.product.prodname_github_app %} 管理员 -默认情况下,只有组织所有者才可管理组织拥有的 {% data variables.product.prodname_github_apps %} 的设置。 要允许其他用户管理组织拥有的 {% data variables.product.prodname_github_apps %},所有者可向他们授予 {% data variables.product.prodname_github_app %} 管理员权限。 +### {% data variables.product.prodname_github_app %} managers +By default, only organization owners can manage the settings of {% data variables.product.prodname_github_apps %} owned by an organization. To allow additional users to manage {% data variables.product.prodname_github_apps %} owned by an organization, an owner can grant them {% data variables.product.prodname_github_app %} manager permissions. -指定用户为组织中 {% data variables.product.prodname_github_app %} 的管理员时,您可以授予他们对组织拥有的部分或全部 {% data variables.product.prodname_github_apps %} 的设置进行管理的权限。 更多信息请参阅: +When you designate a user as a {% data variables.product.prodname_github_app %} manager in your organization, you can grant them access to manage the settings of some or all {% data variables.product.prodname_github_apps %} owned by the organization. For more information, see: -- "[为组织添加 GitHub 应用程序管理员](/articles/adding-github-app-managers-in-your-organization)" -- "[从组织删除 GitHub 应用程序管理员](/articles/removing-github-app-managers-from-your-organization)" +- "[Adding GitHub App managers in your organization](/articles/adding-github-app-managers-in-your-organization)" +- "[Removing GitHub App managers from your organization](/articles/removing-github-app-managers-from-your-organization)" -### 外部协作者 -在允许访问仓库时,为确保组织数据的安全,您可以添加*外部协作者*。 {% data reusables.organizations.outside_collaborators_description %} +### Outside collaborators +To keep your organization's data secure while allowing access to repositories, you can add *outside collaborators*. {% data reusables.organizations.outside_collaborators_description %} ## Permissions for organization roles {% ifversion fpt %} -下面列出的一些功能仅限于使用 {% data variables.product.prodname_ghe_cloud %} 的组织。 {% data reusables.enterprise.link-to-ghec-trial %} +Some of the features listed below are limited to organizations using {% data variables.product.prodname_ghe_cloud %}. {% data reusables.enterprise.link-to-ghec-trial %} {% endif %} {% ifversion fpt or ghec %} <!--Dotcom and cloud version has extra column for Billing managers--> -| Organization permission | 所有者 | 成员 | 帐单管理员 | Security managers | -|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:-----:|:-----:|:-----------------:| -| 创建仓库(详细信息请参阅“[限制在组织中创建仓库](/articles/restricting-repository-creation-in-your-organization)”) | **X** | **X** | | **X** | -| 查看和编辑帐单信息 | **X** | | **X** | | -| 邀请人员加入组织 | **X** | | | | -| 编辑和取消邀请加入组织 | **X** | | | | -| 从组织删除成员 | **X** | | | | -| 恢复组织的前成员 | **X** | | | | -| 添加和删除**所有团队**的人员 | **X** | | | | -| 将组织成员升级为*团队维护员* | **X** | | | | -| 配置代码审查分配(请参阅“[管理团队的代码审查分配](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)”) | **X** | | | | -| 设置预定提醒(请参阅“[管理拉取请求的预定提醒](/github/setting-up-and-managing-organizations-and-teams/managing-scheduled-reminders-for-pull-requests)”) | **X** | | | | -| 添加协作者到**所有仓库** | **X** | | | | -| 访问组织审核日志 | **X** | | | | -| 编辑组织的资料页面(详细信息请参阅“[关于组织的资料](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)”) | **X** | | | | -| 验证组织的域(详细信息请参阅“[验证组织的域](/articles/verifying-your-organization-s-domain)”) | **X** | | | | -| 将电子邮件通知限于已经验证或批准的域名(有关详细信息,请参阅“[限制组织的电子邮件通知](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)”) | **X** | | | | -| 删除**所有团队** | **X** | | | | -| 删除组织帐户,包括所有仓库 | **X** | | | | -| 创建团队(详细信息请参阅“[在组织中设置团队创建权限](/articles/setting-team-creation-permissions-in-your-organization)”) | **X** | **X** | | **X** | -| [在组织的层次结构中移动团队](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | | -| 创建项目板(详细信息请参阅“[组织的项目板权限](/articles/project-board-permissions-for-an-organization)”) | **X** | **X** | | **X** | -| 查看所有组织成员和团队 | **X** | **X** | | **X** | -| @提及任何可见团队 | **X** | **X** | | **X** | -| 可成为*团队维护员* | **X** | **X** | | **X** | -| 查看组织洞见(详细信息请参阅“[查看用于组织的洞见](/articles/viewing-insights-for-your-organization)”) | **X** | **X** | | **X** | -| 查看并发布公共团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | **X** | | **X** | -| 查看并发布私有团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | | | | -| 编辑和删除**所有团队**的团队讨论(详细信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments)”) | **X** | | | | -| 隐藏对提交、拉取请求和议题的评论(详细信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)”) | **X** | **X** | | **X** | -| 对组织禁用团队讨论(详细信息请参阅“[对组织禁用团队讨论](/articles/disabling-team-discussions-for-your-organization)”) | **X** | | | | -| 管理组织依赖项洞见的显示(详细信息请参阅“[更改组织依赖项洞见的可见性](/articles/changing-the-visibility-of-your-organizations-dependency-insights)”) | **X** | | | | -| 设置**所有团队**的团队头像(详细信息请参阅“[设置团队的头像](/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** | | | | -| 将您的赞助归因于另一个组织(更多信息请参阅“[将赞助归因于组织](/sponsors/sponsoring-open-source-contributors/attributing-sponsorships-to-your-organization)”) | **X** | | | | -| 管理从组织中的仓库发布 {% data variables.product.prodname_pages %} 站点(请参阅“[管理组织的 {% data variables.product.prodname_pages %} 站点发布](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)”了解详细信息) | **X** | | | | -| 管理安全性和分析设置(详情请参阅“[管理组织的安全性和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”) | **X** | | | **X** | -| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** | -| 启用并实施 [SAML 单点登录](/articles/about-identity-and-access-management-with-saml-single-sign-on) | **X** | | | | -| [管理用户对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization) | **X** | | | | -| 管理组织的 SSH 认证中心(详细信息请参阅“[管理组织的 SSH 认证中心](/articles/managing-your-organizations-ssh-certificate-authorities)”) | **X** | | | | -| 转让仓库 | **X** | | | | -| 购买、安装、管理其帐单以及取消 {% data variables.product.prodname_marketplace %} 应用程序 | **X** | | | | -| 列出 {% data variables.product.prodname_marketplace %} 中的应用程序 | **X** | | | | -| 接收所有组织仓库[关于易受攻击的依赖项的 {% data variables.product.prodname_dependabot_alerts %}](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies) | **X** | | | **X** | -| 管理 {% data variables.product.prodname_dependabot_security_updates %}(请参阅“[关于 {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)”) | **X** | | | **X** | -| [管理复刻策略](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) | **X** | | | | -| [限制组织中公共仓库的活动](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization) | **X** | | | | -| Pull (read) *all repositories* in the organization | **X** | | | **X** | -| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | | -| 将组织成员转换为[外部协作者](#outside-collaborators) | **X** | | | | -| [查看对组织仓库具有访问权限的人员](/articles/viewing-people-with-access-to-your-repository) | **X** | | | | -| [导出具有组织仓库访问权限人员的列表](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | | -| 管理默认分支名称(请参阅“[管理组织中仓库的默认标签](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization)”) | **X** | | | | -| 管理默认标签(请参阅“[管理组织中仓库的默认标签](/articles/managing-default-labels-for-repositories-in-your-organization)”) | **X** | | | | -| 启用团队同步(详情请参阅“[管理组织的团队同步](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)”) | **X** | | | | +| Organization permission | Owners | Members | Billing managers | Security managers | +|:--------------------|:------:|:-------:|:----------------:|:----------------:| +| Create repositories (see "[Restricting repository creation in your organization](/articles/restricting-repository-creation-in-your-organization)" for details) | **X** | **X** | | **X** | +| View and edit billing information | **X** | | **X** | | +| Invite people to join the organization | **X** | | | | +| Edit and cancel invitations to join the organization | **X** | | | | +| Remove members from the organization | **X** | | | | +| Reinstate former members to the organization | **X** | | | | +| Add and remove people from **all teams** | **X** | | | | +| Promote organization members to *team maintainer* | **X** | | | | +| Configure code review assignments (see "[Managing code review assignment for your team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)") | **X** | | | | +| Set scheduled reminders (see "[Managing scheduled reminders for pull requests](/github/setting-up-and-managing-organizations-and-teams/managing-scheduled-reminders-for-pull-requests)") | **X** | | | | +| Add collaborators to **all repositories** | **X** | | | | +| Access the organization audit log | **X** | | | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | | | +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | | | | +| Delete **all teams** | **X** | | | | +| Delete the organization account, including all repositories | **X** | | | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | | **X** | +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | | **X** | +| See all organization members and teams | **X** | **X** | | **X** | +| @mention any visible team | **X** | **X** | | **X** | +| Can be made a *team maintainer* | **X** | **X** | | **X** | +| View organization insights (see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization)" for details) | **X** | **X** | | **X** | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | | **X** | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | | +| Edit and delete team discussions in **all teams** (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)" for details) | **X** | | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **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)" for details) | **X** | | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | | | +| Sponsor accounts and manage the organization's sponsorships (see "[Sponsoring open-source contributors](/sponsors/sponsoring-open-source-contributors)" for details) | **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)" for details) | **X** | | | | +| Attribute your sponsorships to another organization (see "[Attributing sponsorships to your organization](/sponsors/sponsoring-open-source-contributors/attributing-sponsorships-to-your-organization)" for details ) | **X** | | | | +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | | | | +| Manage security and analysis settings (see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" for details) | **X** | | | **X** | +| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | | **X** |{% ifversion ghec %} +| Enable and enforce [SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on) | **X** | | | | +| [Manage a user'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) | **X** | | | | +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | |{% endif %} +| Transfer repositories | **X** | | | | +| Purchase, install, manage billing for, and cancel {% data variables.product.prodname_marketplace %} apps | **X** | | | | +| List apps in {% data variables.product.prodname_marketplace %} | **X** | | | | +| Receive [{% data variables.product.prodname_dependabot_alerts %} about vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies) for all of an organization's repositories | **X** | | | **X** | +| Manage {% data variables.product.prodname_dependabot_security_updates %} (see "[About {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)") | **X** | | | **X** | +| [Manage the forking policy](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) | **X** | | | +| [Limit activity in public repositories in an organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization) | **X** | | | | +| Pull (read) *all repositories* in the organization | **X** | | | **X** | +| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | | +| Manage the default branch name (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)") | **X** | | | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | |{% ifversion ghec %} +| Enable team synchronization (see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" for details) | **X** | | | |{% endif %} {% elsif ghes > 3.2 or ghae-issue-4999 %} <!--GHES 3.3+ and eventual GHAE release don't have the extra column for Billing managers, but have security managers--> -| 组织操作 | 所有者 | 成员 | Security managers | -|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:-----:|:--------------------------------------------:| -| 邀请人员加入组织 | **X** | | | -| 编辑和取消邀请加入组织 | **X** | | | -| 从组织删除成员 | **X** | | | | -| 恢复组织的前成员 | **X** | | | | -| 添加和删除**所有团队**的人员 | **X** | | | -| 将组织成员升级为*团队维护员* | **X** | | | -| 配置代码审查分配(请参阅“[管理团队的代码审查分配](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)”) | **X** | | | -| 添加协作者到**所有仓库** | **X** | | | -| 访问组织审核日志 | **X** | | | -| 编辑组织的资料页面(详细信息请参阅“[关于组织的资料](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)”) | **X** | | |{% ifversion ghes > 3.1 %} -| 验证组织的域(详细信息请参阅“[验证组织的域](/articles/verifying-your-organization-s-domain)”) | **X** | | | -| 将电子邮件通知限于已经验证或批准的域名(有关详细信息,请参阅“[限制组织的电子邮件通知](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)”) | **X** | | -{% endif %} -| 删除**所有团队** | **X** | | | -| 删除组织帐户,包括所有仓库 | **X** | | | -| 创建团队(详细信息请参阅“[在组织中设置团队创建权限](/articles/setting-team-creation-permissions-in-your-organization)”) | **X** | **X** | **X** | -| 查看所有组织成员和团队 | **X** | **X** | **X** | -| @提及任何可见团队 | **X** | **X** | **X** | -| 可成为*团队维护员* | **X** | **X** | **X** | -| 转让仓库 | **X** | | | -| 管理安全性和分析设置(详情请参阅“[管理组织的安全性和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”) | **X** | | **X** |{% ifversion ghes > 3.1 %} -| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | **X** |{% endif %}{% ifversion ghes > 3.2 %} -| 管理 {% data variables.product.prodname_dependabot_security_updates %}(请参阅“[关于 {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)”) | **X** | | **X** -{% endif %} -| 管理组织的 SSH 认证中心(详细信息请参阅“[管理组织的 SSH 认证中心](/articles/managing-your-organizations-ssh-certificate-authorities)”) | **X** | | | -| 创建项目板(详细信息请参阅“[组织的项目板权限](/articles/project-board-permissions-for-an-organization)”) | **X** | **X** | **X** | -| 查看并发布公共团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | **X** | **X** | -| 查看并发布私有团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | | | -| 编辑和删除**所有团队**中的团队讨论(更多信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments)”) | **X** | | | | -| 隐藏对提交、拉取请求和议题的评论(详细信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)”) | **X** | **X** | **X** | -| 对组织禁用团队讨论(详细信息请参阅“[对组织禁用团队讨论](/articles/disabling-team-discussions-for-your-organization)”) | **X** | | | -| 设置**所有团队**的团队头像(详细信息请参阅“[设置团队的头像](/articles/setting-your-team-s-profile-picture)”) | **X** | | |{% ifversion ghes > 3.0 %} -| 管理从组织中的仓库发布 {% data variables.product.prodname_pages %} 站点(请参阅“[管理组织的 {% data variables.product.prodname_pages %} 站点发布](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)”了解详细信息) | **X** | | -{% endif %} -| [在组织的层次结构中移动团队](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | -| Pull (read) *all repositories* in the organization | **X** | | **X** | -| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | -| 将组织成员转换为[外部协作者](#outside-collaborators) | **X** | | | -| [查看对组织仓库具有访问权限的人员](/articles/viewing-people-with-access-to-your-repository) | **X** | | | -| [导出具有组织仓库访问权限人员的列表](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | -| 管理默认标签(请参阅“[管理组织中仓库的默认标签](/articles/managing-default-labels-for-repositories-in-your-organization)”) | **X** | | | +| Organization action | Owners | Members | Security managers | +|:--------------------|:------:|:-------:|:-------:| +| Invite people to join the organization | **X** | | | +| Edit and cancel invitations to join the organization | **X** | | | +| Remove members from the organization | **X** | | | | +| Reinstate former members to the organization | **X** | | | | +| Add and remove people from **all teams** | **X** | | | +| Promote organization members to *team maintainer* | **X** | | | +| Configure code review assignments (see "[Managing code review assignment for your team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team)") | **X** | | | +| Add collaborators to **all repositories** | **X** | | | +| Access the organization audit log | **X** | | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | |{% ifversion ghes > 3.1 %} +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | | |{% endif %} +| Delete **all teams** | **X** | | | +| Delete the organization account, including all repositories | **X** | | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | **X** | +| See all organization members and teams | **X** | **X** | **X** | +| @mention any visible team | **X** | **X** | **X** | +| Can be made a *team maintainer* | **X** | **X** | **X** | +| Transfer repositories | **X** | | | +| Manage security and analysis settings (see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" for details) | **X** | | **X** |{% ifversion ghes > 3.1 %} +| View the security overview for the organization (see "[About the security overview](/code-security/security-overview/about-the-security-overview)" for details) | **X** | | **X** |{% endif %}{% ifversion ghes > 3.2 %} +| Manage {% data variables.product.prodname_dependabot_security_updates %} (see "[About {% data variables.product.prodname_dependabot_security_updates %}](/github/managing-security-vulnerabilities/about-dependabot-security-updates)") | **X** | | **X** |{% endif %} +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | **X** | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | **X** | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | +| Edit and delete team discussions in **all teams** (for more information, see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)) | **X** | | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **X** | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | |{% ifversion ghes > 3.0 %} +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | | |{% endif %} +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | +| Pull (read) *all repositories* in the organization | **X** | | **X** | +| Push (write) and clone (copy) *all repositories* in the organization | **X** | | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | | {% ifversion ghae %}| Manage IP allow lists (see "[Restricting network traffic to your enterprise](/admin/configuration/restricting-network-traffic-to-your-enterprise)") | **X** | | |{% endif %} {% else %} <!--GHES and GHAE older versions don't have the extra column for Billing managers or Security managers--> -| 组织操作 | 所有者 | 成员 | -|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |:-----:|:------------------------------:| -| 邀请人员加入组织 | **X** | | -| 编辑和取消邀请加入组织 | **X** | | -| 从组织删除成员 | **X** | | | -| 恢复组织的前成员 | **X** | | | -| 添加和删除**所有团队**的人员 | **X** | | -| 将组织成员升级为*团队维护员* | **X** | | -| Configure code review assignments (see "[Managing code review settings for your team](/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team)")) | **X** | | -| 添加协作者到**所有仓库** | **X** | | -| 访问组织审核日志 | **X** | | -| 编辑组织的资料页面(详细信息请参阅“[关于组织的资料](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)”) | **X** | | |{% ifversion ghes > 3.1 %} -| 验证组织的域(详细信息请参阅“[验证组织的域](/articles/verifying-your-organization-s-domain)”) | **X** | | -| 将电子邮件通知限于已经验证或批准的域名(有关详细信息,请参阅“[限制组织的电子邮件通知](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)”) | **X** | -{% endif %} -| 删除**所有团队** | **X** | | -| 删除组织帐户,包括所有仓库 | **X** | | -| 创建团队(详细信息请参阅“[在组织中设置团队创建权限](/articles/setting-team-creation-permissions-in-your-organization)”) | **X** | **X** | -| 查看所有组织成员和团队 | **X** | **X** | -| @提及任何可见团队 | **X** | **X** | -| 可成为*团队维护员* | **X** | **X** | -| 转让仓库 | **X** | | -| 管理组织的 SSH 认证中心(详细信息请参阅“[管理组织的 SSH 认证中心](/articles/managing-your-organizations-ssh-certificate-authorities)”) | **X** | | -| 创建项目板(详细信息请参阅“[组织的项目板权限](/articles/project-board-permissions-for-an-organization)”) | **X** | **X** | | -| 查看并发布公共团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | **X** | | -| 查看并发布私有团队讨论到**所有团队**(详细信息请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | | | -| 编辑和删除**所有团队**中的团队讨论(更多信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments)”) | **X** | | | -| 隐藏对提交、拉取请求和议题的评论(详细信息请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)”) | **X** | **X** | **X** | -| 对组织禁用团队讨论(详细信息请参阅“[对组织禁用团队讨论](/articles/disabling-team-discussions-for-your-organization)”) | **X** | | | -| 设置**所有团队**的团队头像(详细信息请参阅“[设置团队的头像](/articles/setting-your-team-s-profile-picture)”) | **X** | | |{% ifversion ghes > 3.0 %} -| 管理从组织中的仓库发布 {% data variables.product.prodname_pages %} 站点(请参阅“[管理组织的 {% data variables.product.prodname_pages %} 站点发布](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)”了解详细信息) | **X** | -{% endif %} -| [在组织的层次结构中移动团队](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | -| 拉取(读取)、推送(写入)和克隆(复制)组织中的*所有仓库* | **X** | | -| 将组织成员转换为[外部协作者](#outside-collaborators) | **X** | | -| [查看对组织仓库具有访问权限的人员](/articles/viewing-people-with-access-to-your-repository) | **X** | | -| [导出具有组织仓库访问权限人员的列表](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | -| 管理默认标签(请参阅“[管理组织中仓库的默认标签](/articles/managing-default-labels-for-repositories-in-your-organization)”) | **X** | | -{% ifversion ghae %}| 管理 IP 允许列表(请参阅“[限制到企业的网络流量](/admin/configuration/restricting-network-traffic-to-your-enterprise)”)| **X** |{% endif %} +| Organization action | Owners | Members | +|:--------------------|:------:|:-------:| +| Invite people to join the organization | **X** | | +| Edit and cancel invitations to join the organization | **X** | | +| Remove members from the organization | **X** | | | +| Reinstate former members to the organization | **X** | | | +| Add and remove people from **all teams** | **X** | | +| Promote organization members to *team maintainer* | **X** | | +| Configure code review assignments (see "[Managing code review settings for your team](/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team)")) | **X** | | +| Add collaborators to **all repositories** | **X** | | +| Access the organization audit log | **X** | | +| Edit the organization's profile page (see "[About your organization's profile](/github/setting-up-and-managing-your-github-profile/customizing-your-profile/about-your-organizations-profile)" for details) | **X** | | |{% ifversion ghes > 3.1 %} +| Verify the organization's domains (see "[Verifying your organization's domain](/articles/verifying-your-organization-s-domain)" for details) | **X** | | +| Restrict email notifications to verified or approved domains (see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/restricting-email-notifications-for-your-organization)" for details) | **X** | |{% endif %} +| Delete **all teams** | **X** | | +| Delete the organization account, including all repositories | **X** | | +| Create teams (see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)" for details) | **X** | **X** | +| See all organization members and teams | **X** | **X** | +| @mention any visible team | **X** | **X** | +| Can be made a *team maintainer* | **X** | **X** | +| Transfer repositories | **X** | | +| Manage an organization's SSH certificate authorities (see "[Managing your organization's SSH certificate authorities](/articles/managing-your-organizations-ssh-certificate-authorities)" for details) | **X** | | +| Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)" for details) | **X** | **X** | | +| View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | **X** | | +| View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)" for details) | **X** | | | +| Edit and delete team discussions in **all teams** (for more information, see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)) | **X** | | | +| Hide comments on commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)" for details) | **X** | **X** | **X** | +| Disable team discussions for an organization (see "[Disabling team discussions for your organization](/articles/disabling-team-discussions-for-your-organization)" for details) | **X** | | | +| Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)" for details) | **X** | | |{% ifversion ghes > 3.0 %} +| Manage the publication of {% data variables.product.prodname_pages %} sites from repositories in the organization (see "[Managing the publication of {% data variables.product.prodname_pages %} sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)" for details) | **X** | |{% endif %} +| [Move teams in an organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy) | **X** | | | +| Pull (read), push (write), and clone (copy) *all repositories* in the organization | **X** | | +| Convert organization members to [outside collaborators](#outside-collaborators) | **X** | | +| [View people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository) | **X** | | +| [Export a list of people with access to an organization repository](/articles/viewing-people-with-access-to-your-repository/#exporting-a-list-of-people-with-access-to-your-repository) | **X** | | +| Manage default labels (see "[Managing default labels for repositories in your organization](/articles/managing-default-labels-for-repositories-in-your-organization)") | **X** | | +{% ifversion ghae %}| Manage IP allow lists (see "[Restricting network traffic to your enterprise](/admin/configuration/restricting-network-traffic-to-your-enterprise)") | **X** | |{% endif %} {% endif %} -## 延伸阅读 +## Further reading - "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)" -- "[组织的项目板权限](/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization)" +- "[Project board permissions for an organization](/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization)" 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 fc8668f7da..5839c6e333 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 @@ -1,68 +1,64 @@ --- -title: 关于使用 SAML 单点登录管理身份和访问 -intro: '如果您使用身份提供程序 (IdP) 集中管理用户身份和应用程序,可以配置安全声明标记语言 (SAML) 单点登录 (SSO) 来保护组织在 {% data variables.product.prodname_dotcom %} 上的资源。' -product: '{% data reusables.gated-features.saml-sso %}' +title: About identity and access management with SAML single sign-on +intro: 'If you centrally manage your users'' identities and applications with an identity provider (IdP), you can configure Security Assertion Markup Language (SAML) single sign-on (SSO) to protect your organization''s resources on {% data variables.product.prodname_dotcom %}.' redirect_from: - /articles/about-identity-and-access-management-with-saml-single-sign-on - /github/setting-up-and-managing-organizations-and-teams/about-identity-and-access-management-with-saml-single-sign-on versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 使用 SAML SSO 的 IAM +shortTitle: IAM with SAML SSO --- {% data reusables.enterprise-accounts.emu-saml-note %} -## 关于 SAML SSO +## About SAML SSO {% data reusables.saml.dotcom-saml-explanation %} {% data reusables.saml.saml-accounts %} -组织所有者可以对单个组织强制实施 SAML SSO,企业所有者可以为企业帐户中的所有组织强制实施 SAML SSO。 更多信息请参阅“[配置企业的 SAML 单点登录](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)”。 - -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +Organization owners can enforce SAML SSO for an individual organization, or enterprise owners can enforce SAML SSO for all organizations in an enterprise account. For more information, see "[Configuring SAML single sign-on for your enterprise](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)." {% data reusables.saml.outside-collaborators-exemption %} -在为您的组织启用 SAML SSO 之前,您需要将 IdP 连接到组织。 更多信息请参阅“[将身份提供程序连接到组织](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)”。 +Before enabling SAML SSO for your organization, you'll need to connect your IdP to your organization. For more information, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." -对于组织,SAML SSO 可以禁用、启用但不实施或者启用并实施。 为组织启用 SAML SSO 并且组织成员使用 IdP 成功完成身份验证后,您可以实施 SAML SSO 配置。 有关对 {% data variables.product.prodname_dotcom %} 组织实施 SAML SSO 的更多信息,请参阅“[对组织实施 SAML 单点登录](/articles/enforcing-saml-single-sign-on-for-your-organization)”。 +For an organization, SAML SSO can be disabled, enabled but not enforced, or enabled and enforced. After you enable SAML SSO for your organization and your organization's members successfully authenticate with your IdP, you can enforce the SAML SSO configuration. For more information about enforcing SAML SSO for your {% data variables.product.prodname_dotcom %} organization, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." -成员必须定期使用您的 IdP 进行身份验证,以获得对组织资源的访问权限。 此登录期的持续时间由 IdP 指定,一般为 24 小时。 此定期登录要求会限制访问的时长,您必须重新验证身份后才可继续访问。 +Members must periodically authenticate with your IdP to authenticate and gain access to your organization's resources. The duration of this login period is specified by your IdP and is generally 24 hours. This periodic login requirement limits the length of access and requires users to re-identify themselves to continue. -要在命令行使用 API 和 Git 访问组织受保护的资源,成员必须授权并使用个人访问令牌或 SSH 密钥验证身份。 更多信息请参阅“[授权个人访问令牌用于 SAML 单点登录](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)”和“[授权 SSH 密钥用于 SAML 单点登录](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)”。 +To access the organization's protected resources using the API and Git on the command line, members must authorize and authenticate with a personal access token or SSH key. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)" and "[Authorizing an SSH key for use with SAML single sign-on](/github/authenticating-to-github/authorizing-an-ssh-key-for-use-with-saml-single-sign-on)." -成员第一次使用 SAML SSO 访问您的组织时,{% data variables.product.prodname_dotcom %} 会自动创建一条记录,以链接您的组织、成员在 {% data variables.product.product_location %} 上的帐户以及成员在 IdP 上的帐户。 您可以查看和撤销组织成员或企业帐户关联的 SAML 身份、活动的会话以及授权的凭据。 更多信息请参阅“[查看和管理成员对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)”和“[查看和管理用户对企业帐户的 SAML 访问](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)”。 +The first time a member uses SAML SSO to access your organization, {% data variables.product.prodname_dotcom %} automatically creates a record that links your organization, the member's account on {% data variables.product.product_location %}, and the member's account on your IdP. You can view and revoke the linked SAML identity, active sessions, and authorized credentials for members of your organization or enterprise account. 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)" and "[Viewing and managing a user's SAML access to your enterprise account](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)." -如果成员在创建新的仓库时使用 SAML SSO 会话登录,则该仓库的默认可见性为私密。 否则,默认可见性为公开。 有关仓库可见性的更多信息,请参阅“[关于仓库](/repositories/creating-and-managing-repositories/about-repositories#about-repository-visibility)。” +If members are signed in with a SAML SSO session when they create a new repository, the default visibility of that repository is private. Otherwise, the default visibility is public. For more information on repository visibility, see "[About repositories](/repositories/creating-and-managing-repositories/about-repositories#about-repository-visibility)." -组织成员还必须具有活动的 SAML 会话才可授权 {% data variables.product.prodname_oauth_app %}。 您可以联系 {% data variables.contact.contact_support %} 选择退出此要求。 {% data variables.product.product_name %} 不建议退出此要求,因为它会使您的组织面临更高的帐户接管风险和潜在的数据丢失风险。 +Organization members must also have an active SAML session to authorize an {% data variables.product.prodname_oauth_app %}. You can opt out of this requirement by contacting {% data variables.contact.contact_support %}. {% data variables.product.product_name %} does not recommend opting out of this requirement, which will expose your organization to a higher risk of account takeovers and potential data loss. {% data reusables.saml.saml-single-logout-not-supported %} -## 支持的 SAML 服务 +## Supported SAML services {% data reusables.saml.saml-supported-idps %} -有些 IdP 支持配置通过 SCIM 访问 {% data variables.product.prodname_dotcom %} 组织。 {% data reusables.scim.enterprise-account-scim %} 更多信息请参阅“[关于 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)”。 +Some IdPs support provisioning access to a {% data variables.product.prodname_dotcom %} organization via SCIM. {% data reusables.scim.enterprise-account-scim %} For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." -## 使用 SAML SSO 添加成员到组织 +## Adding members to an organization using SAML SSO -在启用 SAML SSO 后,可通过多种方式向组织添加新成员。 组织所有者可在 {% data variables.product.product_name %} 上或使用 API 手动邀请新成员。 更多信息请参阅“[邀请用户加入组织](/articles/inviting-users-to-join-your-organization)”和“[成员](/rest/reference/orgs#add-or-update-organization-membership)”。 +After you enable SAML SSO, there are multiple ways you can add new members to your organization. Organization owners can invite new members manually on {% data variables.product.product_name %} or using the API. For more information, see "[Inviting users to join your organization](/articles/inviting-users-to-join-your-organization)" and "[Members](/rest/reference/orgs#add-or-update-organization-membership)." -要供应新用户而不使用组织所有者的邀请,您可以使用 URL `https://github.com/orgs/ORGANIZATION/sso/sign_up`,将 _ORGANIZATION_ 替换为组织的名称。 例如,您可以配置 IdP,让能访问 IdP 的任何人都可单击 IdP 仪表板上的链接加入 {% data variables.product.prodname_dotcom %} 组织。 +To provision new users without an invitation from an organization owner, you can use the URL `https://github.com/orgs/ORGANIZATION/sso/sign_up`, replacing _ORGANIZATION_ with the name of your organization. For example, you can configure your IdP so that anyone with access to the IdP can click a link on the IdP's dashboard to join your {% data variables.product.prodname_dotcom %} organization. -如果您的 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)”。 +If your IdP supports SCIM, {% data variables.product.prodname_dotcom %} can automatically invite members to join your organization when you grant access on your IdP. If you remove a member's access to your {% data variables.product.prodname_dotcom %} organization on your SAML IdP, the member will be automatically removed from the {% data variables.product.prodname_dotcom %} organization. For more information, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% data reusables.organizations.team-synchronization %} {% data reusables.saml.saml-single-logout-not-supported %} -## 延伸阅读 +## Further reading -- "[关于双重身份验证和 SAML 单点登录](/articles/about-two-factor-authentication-and-saml-single-sign-on)" -- "[关于使用 SAML 单点登录进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" +- "[About two-factor authentication and SAML single sign-on ](/articles/about-two-factor-authentication-and-saml-single-sign-on)" +- "[About authentication with SAML single sign-on](/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/about-scim.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md index 4ceff3c4bf..b4df5f9aec 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim.md @@ -1,12 +1,10 @@ --- -title: 关于 SCIM -intro: '通过“跨域身份管理系统”(System for Cross-domain Identity Management, SCIM),管理员可以在系统之间自动交换用户身份信息。' -product: '{% data reusables.gated-features.saml-sso %}' +title: About SCIM +intro: 'With System for Cross-domain Identity Management (SCIM), administrators can automate the exchange of user identity information between systems.' redirect_from: - /articles/about-scim - /github/setting-up-and-managing-organizations-and-teams/about-scim versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,20 +13,20 @@ topics: {% data reusables.enterprise-accounts.emu-scim-note %} -如果在组织中使用 [SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on),您可以实施 SCIM 来添加、管理和删除组织成员对 {% data variables.product.product_name %} 的访问权限。 例如,管理员可以使用 SCIM 撤销配置组织成员,以及从组织中自动删除成员。 +If you use [SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on) in your organization, you can implement SCIM to add, manage, and remove organization members' access to {% data variables.product.product_name %}. For example, an administrator can deprovision an organization member using SCIM and automatically remove the member from the organization. -如果您使用 SAML SSO 而不实施 SCIM,将不能自动撤销配置。 当组织成员的会话在其访问权限从 IdP 删除后到期时,他们就会自动从组织中删除。 即使会话已到期,通过授权的令牌也可授予对组织的访问。 要删除访问权限,组织管理员可以手动从组织删除授权的令牌,或者通过 SCIM 自动执行删除。 +If you use SAML SSO without implementing SCIM, you won't have automatic deprovisioning. When organization members' sessions expire after their access is removed from the IdP, they aren't automatically removed from the organization. Authorized tokens grant access to the organization even after their sessions expire. To remove access, organization administrators can either manually remove the authorized token from the organization or automate its removal with SCIM. -这些身份提供程序兼容组织的 {% data variables.product.product_name %} SCIM API。 更多信息请参阅 {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API 文档中的 [SCIM](/rest/reference/scim) 。 +These identity providers are compatible with the {% data variables.product.product_name %} SCIM API for organizations. For more information, see [SCIM](/rest/reference/scim) in the {% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API documentation. - Azure AD - Okta - OneLogin {% data reusables.scim.enterprise-account-scim %} -## 延伸阅读 +## Further reading -- "[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" -- "[将身份提供程序连接到组织](/articles/connecting-your-identity-provider-to-your-organization)" -- "[对组织启用并测试 SAML 单点登录](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)" -- "[查看和管理成员对组织的 SAML 访问](/github/setting-up-and-managing-organizations-and-teams//viewing-and-managing-a-members-saml-access-to-your-organization)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[Connecting your identity provider to your organization](/articles/connecting-your-identity-provider-to-your-organization)" +- "[Enabling and testing SAML single sign-on for your organization](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)" +- "[Viewing and managing a member's SAML access to your organization](/github/setting-up-and-managing-organizations-and-teams//viewing-and-managing-a-members-saml-access-to-your-organization)" diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md index 1963f769ca..61ab67a115 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md @@ -1,33 +1,34 @@ --- -title: 身份提供程序不可用时访问组织 -intro: '即使身份提供程序不可用,组织管理员也可绕过单点登录使用其恢复代码登录 {% data variables.product.product_name %}。' -product: '{% data reusables.gated-features.saml-sso %}' +title: Accessing your organization if your identity provider is unavailable +intro: 'Organization administrators can sign into {% data variables.product.product_name %} even if their identity provider is unavailable by bypassing single sign-on and using their recovery codes.' redirect_from: - /articles/accessing-your-organization-if-your-identity-provider-is-unavailable - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organization-if-your-identity-provider-is-unavailable versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 不可用的身份提供程序 +shortTitle: Unavailable identity provider --- -组织管理员可以使用[下载或保存的恢复代码](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)绕过单点登录。 您可能已将这些保存到密码管理器,如 [LastPass](https://lastpass.com/) 或 [1Password](https://1password.com/)。 +Organization administrators can use [one of their downloaded or saved recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes) to bypass single sign-on. You may have saved these to a password manager, such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% note %} -**注:**恢复代码只能使用一次,并且必须按连续的顺序使用。 恢复代码授予 24 小时访问权限。 +**Note:** You can only use recovery codes once and you must use them in consecutive order. Recovery codes grant access for 24 hours. {% endnote %} -1. 在单点登录对话框底部,单击 **Use a recovery code(使用恢复代码)**绕过单点登录。 ![用于输入恢复代码的链接](/assets/images/help/saml/saml_use_recovery_code.png) -2. 在 "Recovery Code"(恢复代码)字段中,输入您的恢复代码。 ![无法输入恢复代码](/assets/images/help/saml/saml_recovery_code_entry.png) -3. 单击 **Verify(验证)**。 ![用于确认恢复代码的按钮](/assets/images/help/saml/saml_verify_recovery_codes.png) +1. At the bottom of the single sign-on dialog, click **Use a recovery code** to bypass single sign-on. +![Link to enter your recovery code](/assets/images/help/saml/saml_use_recovery_code.png) +2. In the "Recovery Code" field, type your recovery code. +![Field to enter your recovery code](/assets/images/help/saml/saml_recovery_code_entry.png) +3. Click **Verify**. +![Button to verify your recovery code](/assets/images/help/saml/saml_verify_recovery_codes.png) -请务必注意,恢复代码在使用后便不再有效。 恢复代码不能重复使用。 +After you've used a recovery code, make sure to note that it's no longer valid. You will not be able to reuse the recovery code. -## 延伸阅读 +## Further reading -- "[关于使用 SAML SSO 管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[About identity and access management with SAML SSO](/articles/about-identity-and-access-management-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 ad6cd135b8..0c2dba8ac3 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 @@ -1,59 +1,59 @@ --- -title: 使用 Octa 配置 SAML 单个登录和 SCIM -intro: '您可以使用安全声明标记语言 (SAML) 单点登录 (SSO) 和跨域身份管理系统 (SCIM) 与 Okta 一起来自动管理对 {% data variables.product.prodname_dotcom %} 上组织的访问。' +title: Configuring SAML single sign-on and SCIM using Okta +intro: 'You can use Security Assertion Markup Language (SAML) single sign-on (SSO) and System for Cross-domain Identity Management (SCIM) with Okta to automatically manage access to your organization on {% data variables.product.product_location %}.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/configuring-saml-single-sign-on-and-scim-using-okta -product: '{% data reusables.gated-features.saml-sso %}' permissions: Organization owners can configure SAML SSO and SCIM using Okta for an organization. versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 使用 Octa 配置 SAML 和 SCIM +shortTitle: Configure SAML & SCIM with Okta --- -## 关于 SAML 和 SCIM 与 Octa +## About SAML and SCIM with Okta -您可以通过配置组织使用 SAML SSO 和 SCIM 以及身份提供程序 (IdP) Okta,从一个中心界面控制对 {% data variables.product.prodname_dotcom %} 组织及其他 web 应用程序的访问。 +You can control access to your organization on {% data variables.product.product_location %} and other web applications from one central interface by configuring the organization to use SAML SSO and SCIM with Okta, an Identity Provider (IdP). -SAML SSO 控制并保护对组织资源(如仓库、议题和拉取请求)的访问。 当您在 Octa 中进行更改时,SCIM 会自动添加、管理和删除成员对您的 {% data variables.product.prodname_dotcom %} 组织的访问权限。 更多信息请参阅“[关于使用 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)”。 +SAML SSO controls and secures access to organization resources like repositories, issues, and pull requests. SCIM automatically adds, manages, and removes members' access to your organization on {% data variables.product.product_location %} when you make changes in 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](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." -启用 SCIM 后,您在 Okta 中为其分配了 {% data variables.product.prodname_ghe_cloud %} 应用程序的任何用户都可以使用以下配置。 +After you enable SCIM, the following provisioning features are available for any users that you assign your {% data variables.product.prodname_ghe_cloud %} application to in Okta. -| 功能 | 描述 | -| -------- | -------------------------------------------------------------------------------------------------- | -| 推送新用户 | 在 Okta 中创建新用户时,该用户将收到一封电子邮件,让其加入您的 {% data variables.product.prodname_dotcom %} 组织。 | -| 推送用户停用 | 当您在 Okta 中停用某用户时,Okta 会将该用户从您的 {% data variables.product.prodname_dotcom %} 组织中删除。 | -| 推送个人资料更新 | 当您在 Okta 中更新某用户的个人资料时,Okta 会在您的 {% data variables.product.prodname_dotcom %} 组织中更新该用户成员资格的元数据。 | -| 重新激活用户 | 当您在 Okta 中重新激活某用户时,Okta 会向该用户发送一封邀请电子邮件,邀请其重新加入您的 {% data variables.product.prodname_dotcom %} 组织。 | +| Feature | Description | +| --- | --- | +| Push New Users | When you create a new user in Okta, the user will receive an email to join your organization on {% data variables.product.product_location %}. | +| Push User Deactivation | When you deactivate a user in Okta, Okta will remove the user from your organization on {% data variables.product.product_location %}. | +| Push Profile Updates | When you update a user's profile in Okta, Okta will update the metadata for the user's membership in your organization on {% data variables.product.product_location %}. | +| Reactivate Users | When you reactivate a user in Okta, Okta will send an email invitation for the user to rejoin your organization on {% data variables.product.product_location %}. | -## 基本要求 +## Prerequisites {% data reusables.saml.use-classic-ui %} -## 在 Okta 中添加 {% data variables.product.prodname_ghe_cloud %} 应用程序 +## Adding the {% data variables.product.prodname_ghe_cloud %} application in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.add-okta-application %} {% data reusables.saml.search-ghec-okta %} -4. 在“Github Enterprise Cloud - Organization(Github Enterprise Cloud - 组织)”的右侧单击 **Add(添加)**。 ![对 {% data variables.product.prodname_ghe_cloud %} 应用程序单击"Add(添加)"](/assets/images/help/saml/okta-add-ghec-application.png) +4. To the right of "Github Enterprise Cloud - Organization", click **Add**. + ![Clicking "Add" for the {% data variables.product.prodname_ghe_cloud %} application](/assets/images/help/saml/okta-add-ghec-application.png) -5. 在 **GitHub Organization(GitHub 组织)**字段中,键入您的 {% data variables.product.prodname_dotcom %} 组织的名称。 例如,如果组织的 URL 是 https://github.com/octo-org,则组织名称为 `octo-org`。 ![键入 GitHub 组织名称](/assets/images/help/saml/okta-github-organization-name.png) +5. In the **GitHub Organization** field, type the name of your organization on {% data variables.product.product_location %}. For example, if your organization's URL is https://github.com/octo-org, the organization name would be `octo-org`. + ![Type GitHub organization name](/assets/images/help/saml/okta-github-organization-name.png) -6. 单击 **Done(完成)**。 +6. Click **Done**. -## 启用和测试 SAML SSO +## Enabling and testing SAML SSO {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.assign-yourself-to-okta %} {% data reusables.saml.okta-sign-on-tab %} {% data reusables.saml.okta-view-setup-instructions %} -6. 按照“如何配置 SAML 2.0”指南,使用登录 URL、发行机构 URL 和公共证书在 {% data variables.product.prodname_dotcom %} 上启用并测试 SAML SSO。 更多信息请参阅“[对组织启用并测试 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)”。 +6. Enable and test SAML SSO on {% data variables.product.prodname_dotcom %} using the sign on URL, issuer URL, and public certificates from the "How to Configure SAML 2.0" guide. For more information, see "[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)." -## 在 Okta 中使用 SCIM 配置访问配置 +## Configuring access provisioning with SCIM in Okta {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} @@ -62,22 +62,25 @@ SAML SSO 控制并保护对组织资源(如仓库、议题和拉取请求) {% data reusables.saml.okta-enable-api-integration %} -6. 单击 **Authenticate with Github Enterprise Cloud - Organization(向 Github Enterprise Cloud 验证 - 组织)**。 ![Okta 应用程序的"Authenticate with Github Enterprise Cloud - Organization( 向 Github Enterprise Cloud 验证 - 组织)"按钮](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) +6. Click **Authenticate with Github Enterprise Cloud - Organization**. + !["Authenticate with Github Enterprise Cloud - Organization" button for Okta application](/assets/images/help/saml/okta-authenticate-with-ghec-organization.png) -7. 在组织名称的右侧,单击 **Grant(授予)**。 ![用于授权 Okta SCIM 集成访问组织的"Grant(授予)"按钮](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) +7. To the right of your organization's name, click **Grant**. + !["Grant" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-grant-organization-access.png) {% note %} - **注**:如果在列表中看不到您的组织,请在浏览器中访问 `https://github.com/orgs/ORGANIZATION-NAME/sso`,并使用 IdP 上的管理员帐户通过 SAML SSO 向您的组织验证身份。 例如,如果您的组织名称是 `octo-org`,则 URL 是 `https://github.com/orgs/octo-org/so`。 更多信息请参阅“[关于使用 SAML 单点登录进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)”。 + **Note**: If you don't see your organization in the list, go to `https://github.com/orgs/ORGANIZATION-NAME/sso` in your browser and authenticate with your organization via SAML SSO using your administrator account on the IdP. For example, if your organization's name is `octo-org`, the URL would be `https://github.com/orgs/octo-org/sso`. For more information, see "[About authentication with SAML single sign-on](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)." {% endnote %} -1. 单击 **Authorize OktaOAN(授权 OktaOAN)**。 ![用于授权 Okta SCIM 集成访问组织的"Authorize OktaOAN(授权 OktaOAN)"按钮](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) +1. Click **Authorize OktaOAN**. + !["Authorize OktaOAN" button for authorizing Okta SCIM integration to access organization](/assets/images/help/saml/okta-scim-integration-authorize-oktaoan.png) {% data reusables.saml.okta-save-provisioning %} {% data reusables.saml.okta-edit-provisioning %} -## 延伸阅读 +## Further reading -- “[使用 Okta 为企业帐户配置 SAML 单点登录](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)” -- "[管理组织的团队同步](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization#enabling-team-synchronization-for-okta)" -- Okta 文档中的[了解 SAML](https://developer.okta.com/docs/concepts/saml/) -- Okta 文档中的[了解 SCIM](https://developer.okta.com/docs/concepts/scim/) +- "[Configuring SAML single sign-on for your enterprise account using Okta](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise-using-okta)" +- "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization#enabling-team-synchronization-for-okta)" +- [Understanding SAML](https://developer.okta.com/docs/concepts/saml/) in the Okta documentation +- [Understanding SCIM](https://developer.okta.com/docs/concepts/scim/) in the Okta documentation 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 f2f1085da3..6917f58951 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,31 +1,29 @@ --- -title: 将身份提供程序连接到组织 -intro: '要使用 SAML 单点登录和 SCIM,必须将身份提供程序连接到您的 {% data variables.product.product_name %} 组织。' -product: '{% data reusables.gated-features.saml-sso %}' +title: Connecting your identity provider to your organization +intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider to your {% 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 versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 连接 IdP +shortTitle: Connect an 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)”。 +When you enable SAML SSO for your {% data variables.product.product_name %} organization, you connect your identity provider (IdP) to your organization. For more information, see "[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)." -您可以在 IdP 文档中找到 IdP 的 SAML 和 SCIM 实现详细信息。 +You can find the SAML and SCIM implementation details for your IdP in the IdP's documentation. - Active Directory Federation Services (AD FS) [SAML](https://docs.microsoft.com/windows-server/identity/active-directory-federation-services) -- Azure Active Directory (Azure AD) [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) 和 [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) -- Okta [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) 和 [SCIM](http://developer.okta.com/standards/SCIM/) -- OneLogin [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) 和 [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) +- Azure Active Directory (Azure AD) [SAML](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-tutorial) and [SCIM](https://docs.microsoft.com/azure/active-directory/active-directory-saas-github-provisioning-tutorial) +- Okta [SAML](http://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Github-com.html) and [SCIM](http://developer.okta.com/standards/SCIM/) +- OneLogin [SAML](https://onelogin.service-now.com/support?id=kb_article&sys_id=2929ddcfdbdc5700d5505eea4b9619c6) and [SCIM](https://onelogin.service-now.com/support?id=kb_article&sys_id=5aa91d03db109700d5505eea4b96197e) - PingOne [SAML](https://support.pingidentity.com/s/marketplace-integration/a7i1W0000004ID3QAM/github-connector) - Shibboleth [SAML](https://wiki.shibboleth.net/confluence/display/IDP30/Home) {% note %} -**注:**{% data variables.product.product_name %} 支持的用于 SCIM 的身份提供程序为 Azure AD、Okta 和 OneLogin。 {% data reusables.scim.enterprise-account-scim %} 有关 SCIM 的更多信息,请参阅“[关于 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)”。 +**Note:** {% data variables.product.product_name %} supported identity providers for SCIM are Azure AD, Okta, and OneLogin. {% data reusables.scim.enterprise-account-scim %} For more information about SCIM, see "[About SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)." {% endnote %} diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md index 5e8d7b5ee9..01040de16f 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md @@ -1,37 +1,37 @@ --- -title: 下载组织的 SAML 单点登录恢复代码 -intro: '组织管理员应下载组织的 SAML 单点登录恢复代码,以确保即使组织的身份提供程序不可用,也可以访问 {% data variables.product.product_name %}。' +title: Downloading your organization's SAML single sign-on recovery codes +intro: 'Organization administrators should download their organization''s SAML single sign-on recovery codes to ensure that they can access {% data variables.product.product_name %} even if the identity provider for the organization is unavailable.' redirect_from: - /articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes - /articles/downloading-your-organizations-saml-single-sign-on-recovery-codes - /github/setting-up-and-managing-organizations-and-teams/downloading-your-organizations-saml-single-sign-on-recovery-codes -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 下载 SAML 恢复代码 +shortTitle: Download SAML recovery codes --- -恢复代码不应共享或分发。 建议使用一个密码管理器保存它们,例如 [LastPass](https://lastpass.com/) 或 [1Password](https://1password.com/)。 +Recovery codes should not be shared or distributed. We recommend saving them with a password manager such as [LastPass](https://lastpass.com/) or [1Password](https://1password.com/). {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. 在“SAML single sign-on”(SAML 单点登录)下,在有关恢复代码的注释中,单击 **Save your recovery codes(保存恢复代码)**。 ![查看和保存恢复代码的链接](/assets/images/help/saml/saml_recovery_codes.png) -6. 通过单击 **Download(下载)**、**Print(打印)** 或 **Copy(复制)**保存恢复代码。 ![下载、打印或复制恢复代码的按钮](/assets/images/help/saml/saml_recovery_code_options.png) +5. Under "SAML single sign-on", in the note about recovery codes, click **Save your recovery codes**. +![Link to view and save your recovery codes](/assets/images/help/saml/saml_recovery_codes.png) +6. Save your recovery codes by clicking **Download**, **Print**, or **Copy**. +![Buttons to download, print, or copy your recovery codes](/assets/images/help/saml/saml_recovery_code_options.png) {% note %} - **注:** 如果您的 IdP 不可用,恢复代码将帮助您返回 {% data variables.product.product_name %}。 如果生成新的恢复代码,“单点登录恢复代码”页面上显示的恢复代码会自动更新。 + **Note:** Your recovery codes will help get you back into {% data variables.product.product_name %} if your IdP is unavailable. If you generate new recovery codes the recovery codes displayed on the "Single sign-on recovery codes" page are automatically updated. {% endnote %} -7. 使用恢复代码重新获得 {% data variables.product.product_name %} 的访问权限后,无法重复使用该恢复代码。 对 {% data variables.product.product_name %} 的访问权限将仅在 24 小时内可用,之后系统会要求您使用单点登录进行登录。 +7. Once you use a recovery code to regain access to {% data variables.product.product_name %}, it cannot be reused. Access to {% data variables.product.product_name %} will only be available for 24 hours before you'll be asked to sign in using single sign-on. -## 延伸阅读 +## Further reading -- "[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" -- “[在身份提供程序不可用的情况下访问组织](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)” +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[Accessing your organization if your identity provider is unavailable](/articles/accessing-your-organization-if-your-identity-provider-is-unavailable)" 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 2fe4db40a8..00cc0a8af6 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 @@ -1,60 +1,63 @@ --- -title: 启用和测试组织的 SAML 单点登录 -intro: 组织所有者和管理员可以启用 SAML 单点登录,以将额外的安全层添加到其组织。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Enabling and testing SAML single sign-on for your organization +intro: Organization owners and admins can enable SAML single sign-on to add an extra layer of security to their organization. redirect_from: - /articles/enabling-and-testing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-and-testing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 启用和测试 SAML SSO +shortTitle: Enable & test SAML SSO --- -## 关于 SAML 单点登录 +## About SAML single sign-on -无需所有成员使用 SAML SSO,即可在组织中将其启用。 在组织中启用但不实施 SAML SSO 可帮助组织顺利采用 SAML SSO。 一旦组织内的大多数成员使用 SAML SSO,即可在组织内将其实施。 +You can enable SAML SSO in your organization without requiring all members to use it. Enabling but not enforcing SAML SSO in your organization can help smooth your organization's SAML SSO adoption. Once a majority of your organization's members use SAML SSO, you can enforce it within your organization. -如果启用但不实施 SAML SSO,则选择不使用 SAML SSO 的组织成员仍可以是组织的成员。 有关实施 SAML SSO 的更多信息,请参阅“[对组织实施 SAML 单点登录](/articles/enforcing-saml-single-sign-on-for-your-organization)”。 +If you enable but don't enforce SAML SSO, organization members who choose not to use SAML SSO can still be members of the organization. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} -## 启用和测试组织的 SAML 单点登录 +## Enabling and testing SAML single sign-on for your organization -{% data reusables.saml.saml-requires-ghec %}{% ifversion fpt %} {% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +Before your enforce SAML SSO in your organization, ensure that you've prepared the organization. For more information, see "[Preparing to enforce SAML single sign-on in your organization](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)." -在组织中实施 SAML SSO 之前,请确保您已准备好组织。 更多信息请参阅“[准备在组织中实施 SAML 单点登录](/articles/preparing-to-enforce-saml-single-sign-on-in-your-organization)”。 - -有关 {% data variables.product.company_short %} 支持 SAML SSO 的身份提供商 (IDP) 的更多信息,请参阅“[将身份提供商连接到组织](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)”。 +For more information about the identity providers (IdPs) that {% data variables.product.company_short %} supports for SAML SSO, see "[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -5. 在“SAML single sign-on”(SAML 单点登录)下,选择 **Enable SAML authentication(启用 SAML 身份验证)**。 ![用于启用 SAML SSO 的复选框](/assets/images/help/saml/saml_enable.png) +5. Under "SAML single sign-on", select **Enable SAML authentication**. +![Checkbox for enabling SAML SSO](/assets/images/help/saml/saml_enable.png) {% note %} - **注意:** 启用 SAML SSO 后,可以下载单点登录恢复代码,以便即使 IdP 不可用也可以访问组织。 更多信息请参阅“[下载组织的单点登录恢复代码](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)”。 + **Note:** After enabling SAML SSO, you can download your single sign-on recovery codes so that you can access your organization even if your IdP is unavailable. For more information, see "[Downloading your organization's SAML single sign-on recovery codes](/articles/downloading-your-organization-s-saml-single-sign-on-recovery-codes)." {% endnote %} -6. 在“Sign on URL”(登录 URL)字段中,为单点登录请求输入 IdP 上的 HTTPS 端点。 此值可在 IdP 配置中找到。 ![登录时将成员转发到的 URL 字段](/assets/images/help/saml/saml_sign_on_url.png) -7. 可选择在“Issuer”(签发者)字段中,输入 SAML 签发者的姓名。 此操作验证已发送消息的真实性。 ![SAML 签发者姓名字段](/assets/images/help/saml/saml_issuer.png) -8. 在“Public Certificate”(公共证书)下,粘贴证书以验证 SAML 响应。 ![身份提供程序的公共证书字段](/assets/images/help/saml/saml_public_certificate.png) -9. 单击 {% octicon "pencil" aria-label="The edit icon" %},然后在 Signature Method(签名方法)和 Digest Method(摘要方法)下拉菜单中,选择 SAML 签发者使用的哈希算法。以验证请求的完整性。 ![SAML 签发者使用的签名方法和摘要方法哈希算法下拉列表](/assets/images/help/saml/saml_hashing_method.png) -10. 在为组织启用 SAML SSO 之前,单击 **Test SAML configuration** (测试 SMAL 配置),以确保已输入的信息正确。 ![实施前测试 SAML 配置的按钮](/assets/images/help/saml/saml_test.png) +6. In the "Sign on URL" field, type the HTTPS endpoint of your IdP for single sign-on requests. This value is available in your IdP configuration. +![Field for the URL that members will be forwarded to when signing in](/assets/images/help/saml/saml_sign_on_url.png) +7. Optionally, in the "Issuer" field, type your SAML issuer's name. This verifies the authenticity of sent messages. +![Field for the SAML issuer's name](/assets/images/help/saml/saml_issuer.png) +8. Under "Public Certificate," paste a certificate to verify SAML responses. +![Field for the public certificate from your identity provider](/assets/images/help/saml/saml_public_certificate.png) +9. Click {% octicon "pencil" aria-label="The edit icon" %} and then in the Signature Method and Digest Method drop-downs, choose the hashing algorithm used by your SAML issuer to verify the integrity of the requests. +![Drop-downs for the Signature Method and Digest method hashing algorithms used by your SAML issuer](/assets/images/help/saml/saml_hashing_method.png) +10. Before enabling SAML SSO for your organization, click **Test SAML configuration** to ensure that the information you've entered is correct. ![Button to test SAML configuration before enforcing](/assets/images/help/saml/saml_test.png) {% tip %} - **提示:** {% data reusables.saml.testing-saml-sso %} + **Tip:** {% data reusables.saml.testing-saml-sso %} {% endtip %} -11. 要实施 SAML SSO 并删除未通过 IdP 进行身份验证的所有组织成员,请选择 **Require SAML SSO authentication for all members of the _organization name_ organization(要求组织的所有成员进行 SAML SSO 身份验证)**。 有关实施 SAML SSO 的更多信息,请参阅“[对组织实施 SAML 单点登录](/articles/enforcing-saml-single-sign-on-for-your-organization)”。 ![对组织要求 SAML SSO 的复选框 ](/assets/images/help/saml/saml_require_saml_sso.png) -12. 单击 **Save(保存)**。 ![保存 SAML SSO 设置的按钮](/assets/images/help/saml/saml_save.png) +11. To enforce SAML SSO and remove all organization members who haven't authenticated via your IdP, select **Require SAML SSO authentication for all members of the _organization name_ organization**. For more information on enforcing SAML SSO, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." +![Checkbox to require SAML SSO for your organization ](/assets/images/help/saml/saml_require_saml_sso.png) +12. Click **Save**. +![Button to save SAML SSO settings](/assets/images/help/saml/saml_save.png) -## 延伸阅读 +## Further reading -- "[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" +- "[About identity and access management with SAML single sign-on](/articles/about-identity-and-access-management-with-saml-single-sign-on)" diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md index 3233ef9b15..667d5251a9 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md @@ -1,50 +1,50 @@ --- -title: 实施组织的 SAML 单点登录 -intro: 组织所有者和管理员可以实施 SAML SSO,以便所有组织成员都必须通过身份提供程序 (IdP) 进行身份验证。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Enforcing SAML single sign-on for your organization +intro: Organization owners and admins can enforce SAML SSO so that all organization members must authenticate via an identity provider (IdP). redirect_from: - /articles/enforcing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enforcing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 强制 SAML 单点登录 +shortTitle: Enforce SAML single sign-on --- -## 关于对组织实施 SAML SSO +## About enforcement of SAML SSO for your organization -启用 SAML SSO 时,{% data variables.product.prodname_dotcom %} 将提示访问 {% data variables.product.prodname_dotcom_the_website %} 上组织资源的成员使用 IdP 进行身份验证,IdP 会将成员的用户帐户链接到 IdP 上的身份。 成员在使用 IdP 进行身份验证之前仍然可以访问组织的资源。 +When you enable SAML SSO, {% data variables.product.prodname_dotcom %} will prompt members who visit the organization's resources on {% data variables.product.prodname_dotcom_the_website %} to authenticate on your IdP, which links the member's user account to an identity on the IdP. Members can still access the organization's resources before authentication with your IdP. -![提示通过 SAML SSO 进行身份验证以访问组织的横幅](/assets/images/help/saml/sso-has-been-enabled.png) +![Banner with prompt to authenticate via SAML SSO to access organization](/assets/images/help/saml/sso-has-been-enabled.png) -您也可以对组织实施 SAML SSO。 {% data reusables.saml.when-you-enforce %} 实施会从组织中删除尚未通过 IdP 进行身份验证的任何成员和管理员。 {% data variables.product.company_short %} 将向每个被删除的用户发送电子邮件通知。 +You can also enforce SAML SSO for your organization. {% data reusables.saml.when-you-enforce %} Enforcement removes any members and administrators who have not authenticated via your IdP from the organization. {% data variables.product.company_short %} sends an email notification to each removed user. -成功完成单点登录后,可以恢复组织成员。 删除的用户访问权限和设置保存三个月,在此时间范围内可以恢复。 更多信息请参阅“[恢复组织的前成员](/articles/reinstating-a-former-member-of-your-organization)”。 +You can restore organization members once they successfully complete single sign-on. Removed users' access privileges and settings are saved for three months and can be restored during this time frame. For more information, see "[Reinstating a former member of your organization](/articles/reinstating-a-former-member-of-your-organization)." -未在组织的 IdP 中设置外部身份的自动程序和服务帐户在执行 SAML SSO 时也将被删除。 有关自动程序和服务帐户的更多信息,请参阅“[使用 SAML 单点登录管理自动程序和服务帐户](/articles/managing-bots-and-service-accounts-with-saml-single-sign-on)”。 +Bots and service accounts that do not have external identities set up in your organization's IdP will also be removed when you enforce SAML SSO. For more information about bots and service accounts, see "[Managing bots and service accounts with SAML single sign-on](/articles/managing-bots-and-service-accounts-with-saml-single-sign-on)." -如果您的组织是企业帐户所拥有的, 要求企业帐户的 SAML 将会覆盖您的组织级 SAML 配置,并对企业中的每个组织强制执行 SAML SSO。 更多信息请参阅“[配置企业的 SAML 单点登录](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)”。 +If your organization is owned by an enterprise account, requiring SAML for the enterprise account will override your organization-level SAML configuration and enforce SAML SSO for every organization in the enterprise. For more information, see "[Configuring SAML single sign-on for your enterprise](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise)." {% tip %} -**提示:** {% data reusables.saml.testing-saml-sso %} +**Tip:** {% data reusables.saml.testing-saml-sso %} {% endtip %} -## 对组织实施 SAML SSO +## Enforcing SAML SSO for your organization -1. 为您的组织启用并测试 SAML SSO,然后至少用您的 IdP 进行一次身份验证。 更多信息请参阅“[对组织启用并测试 SAML 单点登录](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)”。 -1. 准备对组织实施 SAML SSO。 更多信息请参阅“[准备在组织中实施 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization)”。 +1. Enable and test SAML SSO for your organization, then authenticate with your IdP at least once. For more information, see "[Enabling and testing SAML single sign-on for your organization](/articles/enabling-and-testing-saml-single-sign-on-for-your-organization)." +1. Prepare to enforce SAML SSO for your organization. For more information, see "[Preparing to enforce SAML single sign-on in your organization](/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization)." {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.security %} -1. 在“SAML single sign-on(SAML 单点登录)”下,选择 **Require SAML SSO authentication for all members of the _ORGANIZATION_ organization(要求组织的所有成员进行 SAML SSO 身份验证)**。 !["需要 SAML SSO 身份验证" 复选框](/assets/images/help/saml/require-saml-sso-authentication.png) -1. 如有任何组织成员尚未通过您的 IdP 进行身份验证,则 {% data variables.product.company_short %} 会显示这些成员。 如果您强制执行 SAML SSO,{% data variables.product.company_short %} 将从组织中删除成员。 查看警告并单击 **Remove members and require SAML single sign-on(删除成员并要求 SAML 单点登录)**。 ![包含要从组织删除的成员列表的"确认 SAML SSO 实施" 对话框](/assets/images/help/saml/confirm-saml-sso-enforcement.png) -1. 在“Single sign-on recovery codes(单点登录恢复代码)”下,查看您的恢复代码。 将恢复代码存储在安全位置,如密码管理器。 +1. Under "SAML single sign-on", select **Require SAML SSO authentication for all members of the _ORGANIZATION_ organization**. + !["Require SAML SSO authentication" checkbox](/assets/images/help/saml/require-saml-sso-authentication.png) +1. If any organization members have not authenticated via your IdP, {% data variables.product.company_short %} displays the members. If you enforce SAML SSO, {% data variables.product.company_short %} will remove the members from the organization. Review the warning and click **Remove members and require SAML single sign-on**. + !["Confirm SAML SSO enforcement" dialog with list of members to remove from organization](/assets/images/help/saml/confirm-saml-sso-enforcement.png) +1. Under "Single sign-on recovery codes", review your recovery codes. Store the recovery codes in a safe location like a password manager. -## 延伸阅读 +## Further reading -- "[查看和管理成员对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)" +- "[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)" diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md index 420131782e..668ba3b7bc 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/index.md @@ -1,12 +1,11 @@ --- title: Managing SAML single sign-on for your organization -intro: Organization administrators can manage organization members' identities and access to the organization with SAML single sign-on (SSO). +intro: Organization owners can manage organization members' identities and access to the organization with SAML single sign-on (SSO). redirect_from: - - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on/ + - /articles/managing-member-identity-and-access-in-your-organization-with-saml-single-sign-on - /articles/managing-saml-single-sign-on-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md index c963c89bb7..353f17c351 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md @@ -1,7 +1,6 @@ --- title: Managing team synchronization for your organization intro: 'You can enable and disable team synchronization between your identity provider (IdP) and your organization on {% data variables.product.product_name %}.' -product: '{% data reusables.gated-features.team-synchronization %}' redirect_from: - /articles/synchronizing-teams-between-your-identity-provider-and-github - /github/setting-up-and-managing-organizations-and-teams/synchronizing-teams-between-your-identity-provider-and-github @@ -10,7 +9,6 @@ redirect_from: permissions: Organization owners can manage team synchronization for an organization. miniTocMaxHeadingLevel: 3 versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md index b585f38add..8af5f30451 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md @@ -1,27 +1,25 @@ --- -title: 准备在组织中实施 SAML 单点登录 -intro: 在组织中实施 SAML 单点登录之前,应验证组织的成员资格,并配置到身份提供程序的连接设置。 -product: '{% data reusables.gated-features.saml-sso %}' +title: Preparing to enforce SAML single sign-on in your organization +intro: 'Before you enforce SAML single sign-on in your organization, you should verify your organization''s membership and configure the connection settings to your identity provider.' redirect_from: - /articles/preparing-to-enforce-saml-single-sign-on-in-your-organization - /github/setting-up-and-managing-organizations-and-teams/preparing-to-enforce-saml-single-sign-on-in-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations - Teams -shortTitle: 准备执行 SAML SSO +shortTitle: Prepare to enforce SAML SSO --- -{% data reusables.saml.when-you-enforce %} 在组织中执行 SAML SSO 之前,您应该审核组织成员资格,启用 SAML SSO,并审核组织成员的 SAML 访问权限。 更多信息请参阅以下文章。 +{% data reusables.saml.when-you-enforce %} Before enforcing SAML SSO in your organization, you should review organization membership, enable SAML SSO, and review organization members' SAML access. For more information, see the following. -| 任务 | 更多信息 | -|:------------------------ |:------------------------- | -| 在组织中添加或删除成员 | <ul><li>"[I邀请用户加入您的组织](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[从组织中删除成员](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | -| 启用 SAML SSO 以将 IdP 连接到组织 | <ul><li>"[将身份提供商连接到组织](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[对组织启用和测试 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)"</li></ul> | -| 确保组织成员已登录并且将其帐户与 IdP 链接。 | <ul><li>"[查看和管理成员对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)"</li></ul> | +| Task | More information | +| :- | :- | +| Add or remove members from your organization | <ul><li>"[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)"</li><li>"[Removing a member from your organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization)"</li></ul> | +| Connect your IdP to your organization by enabling SAML SSO | <ul><li>"[Connecting your identity provider to your organization](/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization)"</li><li>"[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)"</li></ul> | +| Ensure that your organization members have signed in and linked their accounts with the IdP | <ul><li>"[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)"</li></ul> | -完成这些任务后,便可为您的组织执行 SAML SSO。 更多信息请参阅“[对组织实施 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)”。 +After you finish these tasks, you can enforce SAML SSO for your organization. For more information, see "[Enforcing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization)." {% data reusables.saml.outside-collaborators-exemption %} diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md index dffddfadae..5e33eb9458 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management.md @@ -1,9 +1,7 @@ --- title: Troubleshooting identity and access management intro: 'Review and resolve common troubleshooting errors for managing your organization''s SAML SSO, team synchronization, or identity provider (IdP) connection.' -product: '{% data reusables.gated-features.saml-sso %}' versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md index e26256d292..02f92675b7 100644 --- a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md +++ b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-admin-team-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: 将管理员团队转换为改进的组织权限 -intro: 如果您的组织是在 2015 年 9 月之后创建的,则您的组织默认具有改进的组织权限。 在 2015 年 9 月之前创建的组织可能需要将较旧的所有者和管理员团队迁移到改进的权限模型。 旧管理员团队的成员在其团队被迁移到改进的组织权限模型之前,自动保留创建仓库的权限。 +title: Converting an admin team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-admin-team-to-the-improved-organization-permissions - /articles/converting-an-admin-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-admin-team-to-improved-organization-permissions versions: @@ -12,23 +12,23 @@ versions: topics: - Organizations - Teams -shortTitle: 转换管理员团队 +shortTitle: Convert admin team --- -要删除旧管理员团队成员创建仓库的权限,请为这些成员创建新团队,确保该团队对组织仓库具有必要的权限,然后删除旧管理员团队。 +You can remove the ability for members of legacy admin teams to create repositories by creating a new team for these members, ensuring that the team has necessary access to the organization's repositories, then deleting the legacy admin team. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**警告:** -- 如果旧管理员团队中有成员不是其他团队的成员,则删除该团队将导致从组织中删除这些成员。 在删除该团队之前,请确保其成员已经是组织的直接成员,或者具有对必要仓库的协作者权限。 -- 为防止丢失旧管理员团队成员创建的私有复刻,在删除旧管理员团队之前必须完成下面的步骤 1-3。 -- 由于“管理员”是用于[对某些仓库具有特定权限](/articles/repository-permission-levels-for-an-organization)的组织成员的术语,因此我们建议在您决定的任何团队名称中避免使用该术语。 +**Warnings:** +- If there are members of your legacy Admin team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. +- To prevent the loss of private forks made by members of the legacy Admin team, you must follow steps 1-3 below before deleting the legacy Admin team. +- Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endwarning %} -1. [创建新团队](/articles/creating-a-team)。 -2. [将旧管理员团队的每个成员添加](/articles/adding-organization-members-to-a-team)到新团队。 -3. 对于旧团队可访问的每个仓库,[为新团队提供同等的访问权限](/articles/managing-team-access-to-an-organization-repository) 。 -4. [删除旧管理员团队](/articles/deleting-a-team)。 +1. [Create a new team](/articles/creating-a-team). +2. [Add each of the members](/articles/adding-organization-members-to-a-team) of your legacy admin team to the new team. +3. [Give the new team equivalent access](/articles/managing-team-access-to-an-organization-repository) to each of the repositories the legacy team could access. +4. [Delete the legacy admin team](/articles/deleting-a-team). diff --git a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md index 6680f2869b..2d483eed91 100644 --- a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md +++ b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/converting-an-owners-team-to-improved-organization-permissions.md @@ -1,9 +1,9 @@ --- -title: 将所有者团队转换为改进的组织权限 -intro: 如果您的组织是在 2015 年 9 月之后创建的,则您的组织默认具有改进的组织权限。 在 2015 年 9 月之前创建的组织可能需要将较旧的所有者和管理员团队迁移到改进的权限模型。 “所有者”现在是赋予组织中个别成员的管理角色。 旧所有者团队的成员自动获得所有者权限。 +title: Converting an Owners team to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. The "Owner" is now an administrative role given to individual members of your organization. Members of your legacy Owners team are automatically given owner privileges.' redirect_from: - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program/ - - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions/ + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions-early-access-program + - /articles/converting-your-previous-owners-team-to-the-improved-organization-permissions - /articles/converting-an-owners-team-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/converting-an-owners-team-to-improved-organization-permissions versions: @@ -13,19 +13,19 @@ versions: topics: - Organizations - Teams -shortTitle: 转换所有者团队 +shortTitle: Convert Owners team --- -您可以通过几种方式转换旧所有者团队: +You have a few options to convert your legacy Owners team: -- 给团队一个新名称以表明其成员在组织中具有特殊地位。 -- 在确保所有成员已被添加到对组织仓库具有必要权限的其他团队后,删除该团队。 +- Give the team a new name that denotes the members have a special status in the organization. +- Delete the team after ensuring all members have been added to teams that grant necessary access to the organization's repositories. -## 给所有者团队一个新名称 +## Give the Owners team a new name {% tip %} - **注:**由于“管理员”是用于[对某些仓库具有特定权限](/articles/repository-permission-levels-for-an-organization)的组织成员的术语,因此我们建议在您决定的任何团队名称中避免使用该术语。 + **Note:** Because "admin" is a term for organization members with specific [access to certain repositories](/articles/repository-permission-levels-for-an-organization) in the organization, we recommend you avoid that term in any team name you decide on. {% endtip %} @@ -33,17 +33,19 @@ shortTitle: 转换所有者团队 {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. 在团队名称字段中,为所有者团队选择一个新名称。 例如: - - 如果组织中只有极少数成员是所有者团队的成员,您可以将该团队命名为“核心”。 - - 如果组织中的所有成员都是所有者团队的成员(以便他们能够 [@提及团队](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams)),您可以将该团队命名为“员工”。 ![在团队名称字段将所有者团队重命名为核心](/assets/images/help/teams/owners-team-new-name.png) -6. 在团队说明下,单击 **Save and continue(保存并继续)**。 ![保存并继续按钮](/assets/images/help/teams/owners-team-save-and-continue.png) -7. (可选)[让团队*公开*](/articles/changing-team-visibility)。 +5. In the team name field, choose a new name for the Owners team. For example: + - If very few members of your organization were members of the Owners team, you might name the team "Core". + - If all members of your organization were members of the Owners team so that they could [@mention teams](/articles/basic-writing-and-formatting-syntax/#mentioning-people-and-teams), you might name the team "Employees". + ![The team name field, with the Owners team renamed to Core](/assets/images/help/teams/owners-team-new-name.png) +6. Under the team description, click **Save and continue**. +![The Save and continue button](/assets/images/help/teams/owners-team-save-and-continue.png) +7. Optionally, [make the team *public*](/articles/changing-team-visibility). -## 删除旧所有者团队 +## Delete the legacy Owners team {% warning %} -**警告:**如果所有者团队中有成员不是其他团队的成员,则删除该团队将导致从组织中删除这些成员。 在删除该团队之前,请确保其成员已经是组织的直接成员,或者具有对必要仓库的协作者权限。 +**Warning:** If there are members of your Owners team who are not members of other teams, deleting the team will remove those members from the organization. Before deleting the team, ensure members are already direct members of the organization, or have collaborator access to necessary repositories. {% endwarning %} @@ -51,4 +53,5 @@ shortTitle: 转换所有者团队 {% data reusables.user_settings.access_org %} {% data reusables.organizations.owners-team %} {% data reusables.organizations.convert-owners-team-confirm %} -5. 在页面底部,查看警告,然后单击 **Delete the Owners team(删除所有者团队)**。 ![删除所有者团队的链接](/assets/images/help/teams/owners-team-delete.png) +5. At the bottom of the page, review the warning and click **Delete the Owners team**. + ![Link for deleting the Owners team](/assets/images/help/teams/owners-team-delete.png) diff --git a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/index.md b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/index.md index 34281aeff2..510cc6c4d7 100644 --- a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/index.md +++ b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/index.md @@ -1,10 +1,10 @@ --- -title: 迁移到改进的组织权限 -intro: 如果您的组织是在 2015 年 9 月之后创建的,则您的组织默认包括改进的组织权限。 在 2015 年 9 月之前创建的组织可能需要将较旧的所有者和管理员团队迁移到改进的组织权限模型。 +title: Migrating to improved organization permissions +intro: 'If your organization was created after September 2015, your organization includes improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved organization permissions model.' redirect_from: - - /articles/improved-organization-permissions/ - - /articles/github-direct-organization-membership-pre-release-guide/ - - /articles/migrating-your-organization-to-improved-organization-permissions/ + - /articles/improved-organization-permissions + - /articles/github-direct-organization-membership-pre-release-guide + - /articles/migrating-your-organization-to-improved-organization-permissions - /articles/migrating-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-to-improved-organization-permissions versions: @@ -18,6 +18,6 @@ children: - /converting-an-owners-team-to-improved-organization-permissions - /converting-an-admin-team-to-improved-organization-permissions - /migrating-admin-teams-to-improved-organization-permissions -shortTitle: 迁移到改进的权限 +shortTitle: Migrate to improved permissions --- diff --git a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md index b5accb4fad..e5965cfefd 100644 --- a/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md +++ b/translations/zh-CN/content/organizations/migrating-to-improved-organization-permissions/migrating-admin-teams-to-improved-organization-permissions.md @@ -1,8 +1,8 @@ --- -title: 将管理团队迁移到改进的组织权限 -intro: 如果您的组织是在 2015 年 9 月之后创建的,则您的组织默认具有改进的组织权限。 在 2015 年 9 月之前创建的组织可能需要将较旧的所有者和管理员团队迁移到改进的权限模型。 旧管理员团队的成员在其团队被迁移到改进的组织权限模型之前,自动保留创建仓库的权限。 +title: Migrating admin teams to improved organization permissions +intro: 'If your organization was created after September 2015, your organization has improved organization permissions by default. Organizations created before September 2015 may need to migrate older Owners and Admin teams to the improved permissions model. Members of legacy admin teams automatically retain the ability to create repositories until those teams are migrated to the improved organization permissions model.' redirect_from: - - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions/ + - /articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions - /articles/migrating-admin-teams-to-improved-organization-permissions - /github/setting-up-and-managing-organizations-and-teams/migrating-admin-teams-to-improved-organization-permissions versions: @@ -12,34 +12,37 @@ versions: topics: - Organizations - Teams -shortTitle: 迁移管理团队 +shortTitle: Migrate admin team --- -默认情况下,所有组织成员都可以创建仓库。 如果将[仓库创建权限](/articles/restricting-repository-creation-in-your-organization)限于组织所有者,并且您的组织已在旧组织权限结构下创建,则旧管理员团队的成员仍可创建仓库。 +By default, all organization members can create repositories. If you restrict [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) to organization owners, and your organization was created under the legacy organization permissions structure, members of legacy admin teams will still be able to create repositories. -旧管理员团队是在旧组织权限结构下使用管理员权限级别创建的团队。 这些团队成员可以为组织创建仓库,我们在改进的组织权限结构中保留了这种能力。 +Legacy admin teams are teams that were created with the admin permission level under the legacy organization permissions structure. Members of these teams were able to create repositories for the organization, and we've preserved this ability in the improved organization permissions structure. -您可以将旧管理员团队迁移到改进的组织权限,以删除此能力。 +You can remove this ability by migrating your legacy admin teams to the improved organization permissions. For more information, see "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)." {% warning %} -**警告:**如果您的组织对所有成员禁用了[仓库创建权限](/articles/restricting-repository-creation-in-your-organization),则旧管理员团队的有些成员可能会失去仓库创建权限。 如果组织启用了成员仓库创建,则将旧管理员团队迁移到改进的组织权限不会影响团队成员创建仓库的能力。 +**Warning:** If your organization has disabled [repository creation permissions](/articles/restricting-repository-creation-in-your-organization) for all members, some members of legacy admin teams may lose repository creation permissions. If your organization has enabled member repository creation, migrating legacy admin teams to improved organization permissions will not affect team members' ability to create repositories. {% endwarning %} -## 迁移所有组织的旧管理员团队 +## Migrating all of your organization's legacy admin teams {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.teams_sidebar %} -1. 检查组织的旧管理员团队,然后单击 **Migrate all teams(迁移所有团队)**。 ![迁移所有团队按钮](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) -1. 阅读这些团队成员的可能权限更改的信息,然后单击 **Migrate all teams(迁移所有团队)**。 ![确认迁移按钮](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) +1. Review your organization's legacy admin teams, then click **Migrate all teams**. + ![Migrate all teams button](/assets/images/help/teams/migrate-all-legacy-admin-teams.png) +1. Read the information about possible permissions changes for members of these teams, then click **Migrate all teams.** + ![Confirm migration button](/assets/images/help/teams/confirm-migrate-all-legacy-admin-teams.png) -## 迁移单一管理员团队 +## Migrating a single admin team {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -1. 在团队说明框中,单击 **Migrate team(迁移团队)**。 ![迁移团队按钮](/assets/images/help/teams/migrate-a-legacy-admin-team.png) +1. In the team description box, click **Migrate team**. + ![Migrate team button](/assets/images/help/teams/migrate-a-legacy-admin-team.png) diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md index f4d61d27a6..a6dac889cb 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/adding-organization-members-to-a-team.md @@ -1,8 +1,8 @@ --- -title: 添加组织成员到团队 -intro: '拥有所有者或团队维护员权限的人员可以添加成员到团队。 具有所有者权限的人员也可{% ifversion fpt or ghec %}邀请非成员加入{% else %}添加非成员到{% endif %}团队和组织。' +title: Adding organization members to a team +intro: 'People with owner or team maintainer permissions can add organization members to teams. People with owner permissions can also {% ifversion fpt or ghec %}invite non-members to join{% else %}add non-members to{% endif %} a team and the organization.' redirect_from: - - /articles/adding-organization-members-to-a-team-early-access-program/ + - /articles/adding-organization-members-to-a-team-early-access-program - /articles/adding-organization-members-to-a-team - /github/setting-up-and-managing-organizations-and-teams/adding-organization-members-to-a-team versions: @@ -13,7 +13,7 @@ versions: topics: - Organizations - Teams -shortTitle: 将成员添加到团队 +shortTitle: Add members to a team --- {% data reusables.organizations.team-synchronization %} @@ -22,13 +22,14 @@ shortTitle: 将成员添加到团队 {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -6. 在团队成员列表上方,单击 **Add a member(添加成员)**。 ![添加成员按钮](/assets/images/help/teams/add-member-button.png) +6. Above the list of team members, click **Add a member**. +![Add member button](/assets/images/help/teams/add-member-button.png) {% data reusables.organizations.invite_to_team %} {% data reusables.organizations.review-team-repository-access %} {% ifversion fpt or ghec %}{% data reusables.organizations.cancel_org_invite %}{% endif %} -## 延伸阅读 +## Further reading -- "[关于团队](/articles/about-teams)" -- "[管理团队对组织仓库的访问](/articles/managing-team-access-to-an-organization-repository)" +- "[About teams](/articles/about-teams)" +- "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)" diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md index e1e2074ed9..457c1d5b7f 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member.md @@ -1,8 +1,8 @@ --- title: Assigning the team maintainer role to a team member -intro: You can give a team member the ability to manage team membership and settings by assigning the team maintainer role. +intro: 'You can give a team member the ability to manage team membership and settings by assigning the team maintainer role.' redirect_from: - - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program/ + - /articles/giving-team-maintainer-permissions-to-an-organization-member-early-access-program - /articles/giving-team-maintainer-permissions-to-an-organization-member - /github/setting-up-and-managing-organizations-and-teams/giving-team-maintainer-permissions-to-an-organization-member - /organizations/managing-peoples-access-to-your-organization-with-roles/giving-team-maintainer-permissions-to-an-organization-member @@ -22,21 +22,21 @@ permissions: Organization owners can promote team members to team maintainers. People with the team maintainer role can manage team membership and settings. -- [更改团队名称和描述](/articles/renaming-a-team) -- [更改团队的可见性](/articles/changing-team-visibility) -- [申请添加子团队](/articles/requesting-to-add-a-child-team) -- [申请添加或更改父团队](/articles/requesting-to-add-or-change-a-parent-team) -- [设置团队头像](/articles/setting-your-team-s-profile-picture) -- [编辑团队讨论](/articles/managing-disruptive-comments/#editing-a-comment) -- [删除团队讨论](/articles/managing-disruptive-comments/#deleting-a-comment) -- [添加组织成员到团队](/articles/adding-organization-members-to-a-team) -- [从团队中删除组织成员](/articles/removing-organization-members-from-a-team) -- 删除团队对仓库的访问权限{% ifversion fpt or ghes or ghae or ghec %} -- [管理团队的代码审查任务](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} -- [管理拉取请求的预定提醒](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} +- [Change the team's name and description](/articles/renaming-a-team) +- [Change the team's visibility](/articles/changing-team-visibility) +- [Request to add a child team](/articles/requesting-to-add-a-child-team) +- [Request to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team) +- [Set the team profile picture](/articles/setting-your-team-s-profile-picture) +- [Edit team discussions](/articles/managing-disruptive-comments/#editing-a-comment) +- [Delete team discussions](/articles/managing-disruptive-comments/#deleting-a-comment) +- [Add organization members to the team](/articles/adding-organization-members-to-a-team) +- [Remove organization members from the team](/articles/removing-organization-members-from-a-team) +- Remove the team's access to repositories{% ifversion fpt or ghes or ghae or ghec %} +- [Manage code review assignment for the team](/organizations/organizing-members-into-teams/managing-code-review-assignment-for-your-team){% endif %}{% ifversion fpt or ghec %} +- [Manage scheduled reminders for pull requests](/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team){% endif %} -## 将组织成员升级为团队维护员 +## Promoting an organization member to team maintainer Before you can promote an organization member to team maintainer, the person must already be a member of the team. @@ -44,6 +44,9 @@ Before you can promote an organization member to team maintainer, the person mus {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_members_tab %} -4. 选择要将其升级为团队维护员的人员。 ![组织成员旁的复选框](/assets/images/help/teams/team-member-check-box.png) -5. 在团队成员列表的上方,使用下拉菜单并单击 **Change role...(更改角色...)**。 ![包含更改角色选项的下拉菜单](/assets/images/help/teams/bulk-edit-drop-down.png) -6. 选择新角色并单击 **Change role(更改角色)**。 ![维护员或成员角色的单选按钮](/assets/images/help/teams/team-role-modal.png) +4. Select the person or people you'd like to promote to team maintainer. +![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Change role...**. +![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) +6. Select a new role and click **Change role**. +![Radio buttons for Maintainer or Member roles](/assets/images/help/teams/team-role-modal.png) diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/creating-a-team.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/creating-a-team.md index 6718ff82f8..7422a82371 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -1,8 +1,8 @@ --- -title: 创建团队 -intro: 您可以创建独立或嵌套团队来管理仓库权限和提及人群。 +title: Creating a team +intro: You can create independent or nested teams to manage repository permissions and mentions for groups of people. redirect_from: - - /articles/creating-a-team-early-access-program/ + - /articles/creating-a-team-early-access-program - /articles/creating-a-team - /github/setting-up-and-managing-organizations-and-teams/creating-a-team versions: @@ -15,7 +15,7 @@ topics: - Teams --- -只有父团队的组织所有者和维护员才能在父团队下创建新的子团队。 所有者还可以限制组织中所有团队的创建权限。 更多信息请参阅“[设置组织中的团队创建权限](/articles/setting-team-creation-permissions-in-your-organization)”。 +Only organization owners and maintainers of a parent team can create a new child team under a parent. Owners can also restrict creation permissions for all teams in an organization. For more information, see "[Setting team creation permissions in your organization](/articles/setting-team-creation-permissions-in-your-organization)." {% data reusables.organizations.team-synchronization %} @@ -25,17 +25,18 @@ topics: {% data reusables.organizations.team_name %} {% data reusables.organizations.team_description %} {% data reusables.organizations.create-team-choose-parent %} -{% ifversion fpt or ghec %} -1. (可选)如果您的组织或企业帐户使用团队同步或您的企业使用 {% data variables.product.prodname_emus %},则将身份提供商组连接到您的团队。 - * 如果您的企业使用 {% data variables.product.prodname_emus %},请使用“Identity Provider Groups(身份提供商组)”下拉菜单,并选择单个身份提供商组以连接到新团队。 更多信息请参阅“[使用身份提供商组管理团队成员](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)”。 - * 如果您的组织或企业使用团队同步 ,请使用“Identity Provider Groups(身份提供商组)”下拉菜单,并选择五个身份提供商组以连接到新团队。 更多信息请参阅“[同步团队与身份提供程序组](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)”。 ![用于选择身份提供程序组的下拉菜单](/assets/images/help/teams/choose-an-idp-group.png) +{% ifversion ghec %} +1. Optionally, if your organization or enterprise account uses team synchronization or your enterprise uses {% data variables.product.prodname_emus %}, connect an identity provider group to your team. + * If your enterprise uses {% data variables.product.prodname_emus %}, use the "Identity Provider Groups" drop-down menu, and select a single identity provider group to connect to the new team. For more information, "[Managing team memberships with identity provider groups](/enterprise-cloud@latest/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/managing-team-memberships-with-identity-provider-groups)." + * If your organization or enterprise account uses team synchronization, use the "Identity Provider Groups" drop-down menu, and select up to five identity provider groups to connect to the new team. For more information, see "[Synchronizing a team with an identity provider group](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)." + ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png) {% endif %} {% data reusables.organizations.team_visibility %} {% data reusables.organizations.create_team %} -1. (可选)[授予团队访问组织仓库的权限](/articles/managing-team-access-to-an-organization-repository)。 +1. Optionally, [give the team access to organization repositories](/articles/managing-team-access-to-an-organization-repository). -## 延伸阅读 +## Further reading -- "[关于团队](/articles/about-teams)" -- “[更改团队可见性](/articles/changing-team-visibility)” -- “[在组织的层次结构中移动团队](/articles/moving-a-team-in-your-organization-s-hierarchy)” +- "[About teams](/articles/about-teams)" +- "[Changing team visibility](/articles/changing-team-visibility)" +- "[Moving a team in your organization's hierarchy](/articles/moving-a-team-in-your-organization-s-hierarchy)" diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/index.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/index.md index 7cf0286f9b..ebe04edd68 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/index.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/index.md @@ -1,15 +1,15 @@ --- -title: 将成员组织为团队 -intro: 您可以将组织成员组成团队,通过级联访问权限和提及来反映公司或群组结构。 +title: Organizing members into teams +intro: You can group organization members into teams that reflect your company or group's structure with cascading access permissions and mentions. redirect_from: - - /articles/setting-up-teams-improved-organization-permissions/ - - /articles/setting-up-teams-for-accessing-organization-repositories/ - - /articles/creating-teams/ - - /articles/adding-people-to-teams-in-an-organization/ - - /articles/removing-a-member-from-a-team-in-your-organization/ - - /articles/setting-up-teams/ - - /articles/maintaining-teams-improved-organization-permissions/ - - /articles/maintaining-teams/ + - /articles/setting-up-teams-improved-organization-permissions + - /articles/setting-up-teams-for-accessing-organization-repositories + - /articles/creating-teams + - /articles/adding-people-to-teams-in-an-organization + - /articles/removing-a-member-from-a-team-in-your-organization + - /articles/setting-up-teams + - /articles/maintaining-teams-improved-organization-permissions + - /articles/maintaining-teams - /articles/organizing-members-into-teams - /github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams versions: @@ -37,6 +37,6 @@ children: - /disabling-team-discussions-for-your-organization - /managing-scheduled-reminders-for-your-team - /deleting-a-team -shortTitle: 将成员组织成团队 +shortTitle: Organize members into teams --- diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md index 558156a767..6386e39cc6 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy.md @@ -1,8 +1,8 @@ --- -title: 在组织的层次结构中移动团队 -intro: 团队维护员和组织所有者可以在父团队下嵌套团队,或者更改或删除已嵌套团队的父团队。 +title: Moving a team in your organization’s hierarchy +intro: 'Team maintainers and organization owners can nest a team under a parent team, or change or remove a nested team''s parent.' redirect_from: - - /articles/changing-a-team-s-parent/ + - /articles/changing-a-team-s-parent - /articles/moving-a-team-in-your-organization-s-hierarchy - /articles/moving-a-team-in-your-organizations-hierarchy - /github/setting-up-and-managing-organizations-and-teams/moving-a-team-in-your-organizations-hierarchy @@ -14,31 +14,34 @@ versions: topics: - Organizations - Teams -shortTitle: 移动团队 +shortTitle: Move a team --- -组织所有者可以更改任何团队的父团队。 团队维护员如果同时是子团队和父团队的维护员,则可更改团队的父团队。 没有子团队维护员权限的团队维护员可以申请添加父团队或子团队。 更多信息请参阅“[申请添加或更改父团队](/articles/requesting-to-add-or-change-a-parent-team)”和“[申请添加子团队](/articles/requesting-to-add-a-child-team)”。 +Organization owners can change the parent of any team. Team maintainers can change a team's parent if they are maintainers in both the child team and the parent team. Team maintainers without maintainer permissions in the child team can request to add a parent or child team. For more information, see "[Requesting to add or change a parent team](/articles/requesting-to-add-or-change-a-parent-team)" and "[Requesting to add a child team](/articles/requesting-to-add-a-child-team)." {% data reusables.organizations.child-team-inherits-permissions %} {% tip %} -**提示:** -- 不能将团队的父团队更改为机密团队。 更多信息请参阅“[关于团队](/articles/about-teams)”。 -- 不能将父团队嵌套在其子团队下面。 +**Tips:** +- You cannot change a team's parent to a secret team. For more information, see "[About teams](/articles/about-teams)." +- You cannot nest a parent team beneath one of its child teams. {% endtip %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.teams %} -4. 在团队列表中,单击您要更改其父团队的团队名称。 ![组织的团队列表](/assets/images/help/teams/click-team-name.png) +4. In the list of teams, click the name of the team whose parent you'd like to change. + ![List of the organization's teams](/assets/images/help/teams/click-team-name.png) {% data reusables.organizations.team_settings %} -6. 使用下拉菜单选择父团队,要删除现有团队,则选择 **Clear selected value(清除所选值)**。 ![列出组织团队的下拉菜单](/assets/images/help/teams/choose-parent-team.png) -7. 单击 **Update(更新)**。 +6. Use the drop-down menu to choose a parent team, or to remove an existing parent, select **Clear selected value**. + ![Drop-down menu listing the organization's teams](/assets/images/help/teams/choose-parent-team.png) +7. Click **Update**. {% data reusables.repositories.changed-repository-access-permissions %} -9. 单击 **Confirm new parent team(确认新的父团队)**。 ![包含仓库访问权限更改相关信息的模态框](/assets/images/help/teams/confirm-new-parent-team.png) +9. Click **Confirm new parent team**. + ![Modal box with information about the changes in repository access permissions](/assets/images/help/teams/confirm-new-parent-team.png) -## 延伸阅读 +## Further reading -- "[关于团队](/articles/about-teams)" +- "[About teams](/articles/about-teams)" diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md index 3559a2b967..aba9635cbe 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/removing-organization-members-from-a-team.md @@ -1,8 +1,8 @@ --- -title: 从团队中删除组织成员 -intro: 具有*所有者*或*团队维护员*权限的人员可以从团队中删除团队成员。 如果人员不再需要团队授予的仓库访问权限,或者人员不再关注团队的项目,则可能有必要这样做。 +title: Removing organization members from a team +intro: 'People with *owner* or *team maintainer* permissions can remove team members from a team. This may be necessary if a person no longer needs access to a repository the team grants, or if a person is no longer focused on a team''s projects.' redirect_from: - - /articles/removing-organization-members-from-a-team-early-access-program/ + - /articles/removing-organization-members-from-a-team-early-access-program - /articles/removing-organization-members-from-a-team - /github/setting-up-and-managing-organizations-and-teams/removing-organization-members-from-a-team versions: @@ -13,13 +13,15 @@ versions: topics: - Organizations - Teams -shortTitle: 删除成员 +shortTitle: Remove members --- -{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} +{% data reusables.repositories.deleted_forks_from_private_repositories_warning %} {% data reusables.profile.access_org %} {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} -4. 选择您想要删除的一个或多个人员。 ![组织成员旁的复选框](/assets/images/help/teams/team-member-check-box.png) -5. 在团队成员列表上方,使用下拉菜单,然后单击 **Remove from team(从团队中删除)**。 ![包含更改角色选项的下拉菜单](/assets/images/help/teams/bulk-edit-drop-down.png) +4. Select the person or people you'd like to remove. + ![Check box next to organization member](/assets/images/help/teams/team-member-check-box.png) +5. Above the list of team members, use the drop-down menu and click **Remove from team**. + ![Drop-down menu with option to change role](/assets/images/help/teams/bulk-edit-drop-down.png) diff --git a/translations/zh-CN/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md b/translations/zh-CN/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md index 1c53bcbdc8..1e2fc70a8f 100644 --- a/translations/zh-CN/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md +++ b/translations/zh-CN/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md @@ -3,10 +3,8 @@ title: Synchronizing a team with an identity provider group intro: 'You can synchronize a {% data variables.product.product_name %} team with an identity provider (IdP) group to automatically add and remove team members.' redirect_from: - /github/setting-up-and-managing-organizations-and-teams/synchronizing-a-team-with-an-identity-provider-group -product: '{% data reusables.gated-features.team-synchronization %} ' permissions: 'Organization owners and team maintainers can synchronize a {% data variables.product.prodname_dotcom %} team with an IdP group.' versions: - fpt: '*' ghae: '*' ghec: '*' topics: @@ -21,15 +19,15 @@ shortTitle: Synchronize with an IdP {% data reusables.identity-and-permissions.about-team-sync %} -{% ifversion fpt or ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. +{% ifversion ghec %}You can connect up to five IdP groups to a {% data variables.product.product_name %} team.{% elsif ghae %}You can connect a team on {% data variables.product.product_name %} to one IdP group. All users in the group are automatically added to the team and also added to the parent organization as members. When you disconnect a group from a team, users who became members of the organization via team membership are removed from the organization.{% endif %} You can assign an IdP group to multiple {% data variables.product.product_name %} teams. -{% ifversion fpt or ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} +{% ifversion ghec %}Team synchronization does not support IdP groups with more than 5000 members.{% endif %} -Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion fpt or ghec %} or using the API{% endif %}. +Once a {% data variables.product.prodname_dotcom %} team is connected to an IdP group, your IdP administrator must make team membership changes through the identity provider. You cannot manage team membership on {% data variables.product.product_name %}{% ifversion ghec %} or using the API{% endif %}. -{% ifversion fpt or ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} +{% ifversion ghec %}{% data reusables.enterprise-accounts.team-sync-override %}{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} All team membership changes made through your IdP will appear in the audit log on {% data variables.product.product_name %} as changes made by the team synchronization bot. Your IdP will send team membership data to {% data variables.product.prodname_dotcom %} once every hour. Connecting a team to an IdP group may remove some team members. For more information, see "[Requirements for members of synchronized teams](#requirements-for-members-of-synchronized-teams)." {% endif %} @@ -42,9 +40,9 @@ Parent teams cannot synchronize with IdP groups. If the team you want to connect To manage repository access for any {% data variables.product.prodname_dotcom %} team, including teams connected to an IdP group, you must make changes with {% data variables.product.product_name %}. For more information, see "[About teams](/articles/about-teams)" and "[Managing team access to an organization repository](/articles/managing-team-access-to-an-organization-repository)." -{% ifversion fpt or ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} +{% ifversion ghec %}You can also manage team synchronization with the API. For more information, see "[Team synchronization](/rest/reference/teams#team-sync)."{% endif %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} ## Requirements for members of synchronized teams After you connect a team to an IdP group, team synchronization will add each member of the IdP group to the corresponding team on {% data variables.product.product_name %} only if: @@ -62,7 +60,7 @@ To avoid unintentionally removing team members, we recommend enforcing SAML SSO ## Prerequisites -{% ifversion fpt or ghec %} +{% ifversion ghec %} Before you can connect a {% data variables.product.product_name %} team with an identity provider group, an organization or enterprise owner must enable team synchronization for your organization or enterprise account. 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 account](/enterprise-cloud@latest/admin/authentication/managing-identity-and-access-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." To avoid unintentionally removing team members, visit the administrative portal for your IdP and confirm that each current team member is also in the IdP groups that you want to connect to this team. If you don't have this access to your identity provider, you can reach out to your IdP administrator. @@ -83,7 +81,7 @@ When you connect an IdP group to a {% data variables.product.product_name %} tea {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", use the drop-down menu, and select up to 5 identity provider groups. ![Drop-down menu to choose identity provider groups](/assets/images/help/teams/choose-an-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", use the drop-down menu, and select an identity provider group from the list. @@ -98,7 +96,7 @@ If you disconnect an IdP group from a {% data variables.product.prodname_dotcom {% data reusables.user_settings.access_org %} {% data reusables.organizations.specific_team %} {% data reusables.organizations.team_settings %} -{% ifversion fpt or ghec %} +{% ifversion ghec %} 6. Under "Identity Provider Groups", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. ![Unselect a connected IdP group from the GitHub team](/assets/images/help/teams/unselect-idp-group.png){% elsif ghae %} 6. Under "Identity Provider Group", to the right of the IdP group you want to disconnect, click {% octicon "x" aria-label="X symbol" %}. diff --git a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md index ffc161a154..9e952acc4d 100644 --- a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md +++ b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/about-oauth-app-access-restrictions.md @@ -1,8 +1,8 @@ --- -title: 关于 OAuth App 访问限制 -intro: '组织可通过启用 {% data variables.product.prodname_oauth_apps %} 访问限制,选择哪些 {% data variables.product.prodname_oauth_app %} 可以访问其仓库及其他资源。' +title: About OAuth App access restrictions +intro: 'Organizations can choose which {% data variables.product.prodname_oauth_apps %} have access to their repositories and other resources by enabling {% data variables.product.prodname_oauth_app %} access restrictions.' redirect_from: - - /articles/about-third-party-application-restrictions/ + - /articles/about-third-party-application-restrictions - /articles/about-oauth-app-access-restrictions - /github/setting-up-and-managing-organizations-and-teams/about-oauth-app-access-restrictions versions: @@ -11,58 +11,58 @@ versions: topics: - Organizations - Teams -shortTitle: OAuth 应用程序访问 +shortTitle: OAuth App access --- -## 关于 OAuth App 访问限制 +## About OAuth App access restrictions -当 {% data variables.product.prodname_oauth_app %} 访问限制启用后,组织成员无法授权 {% data variables.product.prodname_oauth_app %} 访问组织资源。 组织成员可以申请所有者批准他们想使用的 {% data variables.product.prodname_oauth_apps %},并且组织所有者会收到待处理申请的通知。 +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members cannot authorize {% data variables.product.prodname_oauth_app %} access to organization resources. Organization members can request owner approval for {% data variables.product.prodname_oauth_apps %} they'd like to use, and organization owners receive a notification of pending requests. {% data reusables.organizations.oauth_app_restrictions_default %} {% tip %} -**提示**:当组织尚未设置 {% data variables.product.prodname_oauth_app %} 访问限制时,组织成员授权的任何 {% data variables.product.prodname_oauth_app %} 也可访问组织的私有资源。 +**Tip**: When an organization has not set up {% data variables.product.prodname_oauth_app %} access restrictions, any {% data variables.product.prodname_oauth_app %} authorized by an organization member can also access the organization's private resources. {% endtip %} {% ifversion fpt %} -为了进一步保护您的组织资源,您可以升级到 {% data variables.product.prodname_ghe_cloud %},其中包括安全功能,如 SAML 单点登录。 {% data reusables.enterprise.link-to-ghec-trial %} +To further protect your organization's resources, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes security features like SAML single sign-on. {% data reusables.enterprise.link-to-ghec-trial %} {% endif %} -## 设置 {% data variables.product.prodname_oauth_app %} 访问限制 +## Setting up {% data variables.product.prodname_oauth_app %} access restrictions -当组织所有者第一次设置 {% data variables.product.prodname_oauth_app %} 访问限制时: +When an organization owner sets up {% data variables.product.prodname_oauth_app %} access restrictions for the first time: -- **组织拥有的应用程序**会自动获得对组织资源的访问权限。 -- **{% data variables.product.prodname_oauth_apps %}** 会立即失去对组织资源的访问权限。 -- **2014 年 2 月之前创建的 SSH 密钥**会立即失去对组织资源(包括用户和部署密钥)的访问权限。 -- **{% data variables.product.prodname_oauth_apps %} 在 2017 年 2 月期间或以后创建的 SSH 密钥**会立即失去对组织资源的访问权限。 -- **来自私有组织仓库的挂钩**不再发送到未批准的 {% data variables.product.prodname_oauth_apps %}。 -- 对私有组织资源的 **API 访问**不适用于未批准的 {% data variables.product.prodname_oauth_apps %}。 此外,也没有在公共资源资源上执行创建、更新或删除操作的权限。 -- **用户创建的挂钩和 2014 年 5 月之前创建的挂钩**不受影响。 -- **组织拥有的仓库的私有复刻**需遵守组织的访问限制。 +- **Applications that are owned by the organization** are automatically given access to the organization's resources. +- **{% data variables.product.prodname_oauth_apps %}** immediately lose access to the organization's resources. +- **SSH keys created before February 2014** immediately lose access to the organization's resources (this includes user and deploy keys). +- **SSH keys created by {% data variables.product.prodname_oauth_apps %} during or after February 2014** immediately lose access to the organization's resources. +- **Hook deliveries from private organization repositories** will no longer be sent to unapproved {% data variables.product.prodname_oauth_apps %}. +- **API access** to private organization resources is not available for unapproved {% data variables.product.prodname_oauth_apps %}. In addition, there are no privileged create, update, or delete actions on public organization resources. +- **Hooks created by users and hooks created before May 2014** will not be affected. +- **Private forks of organization-owned repositories** are subject to the organization's access restrictions. -## 解决 SSH 访问失败 +## Resolving SSH access failures -当 2014 年 2 月之前创建的 SSH 密钥因 {% data variables.product.prodname_oauth_app %} 访问限制启用而失去对组织的访问权限时,后续 SSH 访问尝试就会失败。 用户将会收到错误消息,将他们导向至可以批准密钥或在其位置上传可信密钥的 URL。 +When an SSH key created before February 2014 loses access to an organization with {% data variables.product.prodname_oauth_app %} access restrictions enabled, subsequent SSH access attempts will fail. Users will encounter an error message directing them to a URL where they can approve the key or upload a trusted key in its place. -## Web 挂钩 +## Webhooks -当 {% data variables.product.prodname_oauth_app %} 在限制启用后被授予对组织的访问权限时,该 {% data variables.product.prodname_oauth_app %} 创建的任何原有 web 挂钩会继续分发。 +When an {% data variables.product.prodname_oauth_app %} is granted access to the organization after restrictions are enabled, any pre-existing webhooks created by that {% data variables.product.prodname_oauth_app %} will resume dispatching. -当组织从之前批准的 {% data variables.product.prodname_oauth_app %} 删除访问权限时,该应用程序创建的任何原有 web 挂钩不再分发(这些挂钩将被禁用,但不会删除)。 +When an organization removes access from a previously-approved {% data variables.product.prodname_oauth_app %}, any pre-existing webhooks created by that application will no longer be dispatched (these hooks will be disabled, but not deleted). -## 重新启用访问限制 +## Re-enabling access restrictions -如果组织禁用 {% data variables.product.prodname_oauth_app %} 访问应用程序限制,后来又重新启用它们,则之前批准的 {% data variables.product.prodname_oauth_app %} 会被自动授予访问组织资源的权限。 +If an organization disables {% data variables.product.prodname_oauth_app %} access application restrictions, and later re-enables them, previously approved {% data variables.product.prodname_oauth_app %} are automatically granted access to the organization's resources. -## 延伸阅读 +## Further reading -- "[为组织启用 {% data variables.product.prodname_oauth_app %} 访问限制](/articles/enabling-oauth-app-access-restrictions-for-your-organization)" -- "[为组织审批 {% data variables.product.prodname_oauth_apps %}](/articles/approving-oauth-apps-for-your-organization)" -- "[审查组织安装的集成](/articles/reviewing-your-organization-s-installed-integrations)" -- "[拒绝访问以前为组织批准的 {% data variables.product.prodname_oauth_app %}](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization)" -- "[为组织禁用 {% data variables.product.prodname_oauth_app %} 访问限制](/articles/disabling-oauth-app-access-restrictions-for-your-organization)" -- "[请求组织对 {% data variables.product.prodname_oauth_apps %} 的审批](/articles/requesting-organization-approval-for-oauth-apps)" -- "[授权 {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" +- "[Enabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/enabling-oauth-app-access-restrictions-for-your-organization)" +- "[Approving {% data variables.product.prodname_oauth_apps %} for your organization](/articles/approving-oauth-apps-for-your-organization)" +- "[Reviewing your organization's installed integrations](/articles/reviewing-your-organization-s-installed-integrations)" +- "[Denying access to a previously approved {% data variables.product.prodname_oauth_app %} for your organization](/articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization)" +- "[Disabling {% data variables.product.prodname_oauth_app %} access restrictions for your organization](/articles/disabling-oauth-app-access-restrictions-for-your-organization)" +- "[Requesting organization approval for {% data variables.product.prodname_oauth_apps %}](/articles/requesting-organization-approval-for-oauth-apps)" +- "[Authorizing {% data variables.product.prodname_oauth_apps %}](/github/authenticating-to-github/keeping-your-account-and-data-secure/authorizing-oauth-apps)" diff --git a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md index e253650a25..c945c1acab 100644 --- a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md +++ b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: 批准组织的 OAuth Apps -intro: '当组织成员申请 {% data variables.product.prodname_oauth_app %} 访问组织资源时,组织所有者可以批准或拒绝该申请。' +title: Approving OAuth Apps for your organization +intro: 'When an organization member requests {% data variables.product.prodname_oauth_app %} access to organization resources, organization owners can approve or deny the request.' redirect_from: - - /articles/approving-third-party-applications-for-your-organization/ + - /articles/approving-third-party-applications-for-your-organization - /articles/approving-oauth-apps-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/approving-oauth-apps-for-your-organization versions: @@ -11,17 +11,18 @@ versions: topics: - Organizations - Teams -shortTitle: 批准 OAuth 应用程序 +shortTitle: Approve OAuth Apps --- - -当 {% data variables.product.prodname_oauth_app %} 访问限制启用后,组织成员必须向组织所有者[申请批准](/articles/requesting-organization-approval-for-oauth-apps),然后才可授权对组织资源具有访问权限的 {% data variables.product.prodname_oauth_app %}。 +When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members must [request approval](/articles/requesting-organization-approval-for-oauth-apps) from an organization owner before they can authorize an {% data variables.product.prodname_oauth_app %} that has access to the organization's resources. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 在要批准的应用程序的旁边,单击 **Review(审查)**。 ![审查申请链接](/assets/images/help/settings/settings-third-party-approve-review.png) -6. 在审查申请的应用程序相关信息后,单击 **Grant access(授予访问)**。 ![授予访问按钮](/assets/images/help/settings/settings-third-party-approve-grant.png) +5. Next to the application you'd like to approve, click **Review**. +![Review request link](/assets/images/help/settings/settings-third-party-approve-review.png) +6. After you review the information about the requested application, click **Grant access**. +![Grant access button](/assets/images/help/settings/settings-third-party-approve-grant.png) -## 延伸阅读 +## Further reading -- "[关于 {% data variables.product.prodname_oauth_app %} 访问限制](/articles/about-oauth-app-access-restrictions)" +- "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)" diff --git a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md index 78eb09ad29..da3f557b72 100644 --- a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md +++ b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: 拒绝此前批准的 OAuth 应用程序对组织的访问权限 -intro: '如果组织不再需要之前授权的 {% data variables.product.prodname_oauth_app %},所有者可删除此应用程序对组织资源的访问权限。' +title: Denying access to a previously approved OAuth App for your organization +intro: 'If an organization no longer requires a previously authorized {% data variables.product.prodname_oauth_app %}, owners can remove the application''s access to the organization''s resources.' redirect_from: - - /articles/denying-access-to-a-previously-approved-application-for-your-organization/ + - /articles/denying-access-to-a-previously-approved-application-for-your-organization - /articles/denying-access-to-a-previously-approved-oauth-app-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/denying-access-to-a-previously-approved-oauth-app-for-your-organization versions: @@ -11,11 +11,13 @@ versions: topics: - Organizations - Teams -shortTitle: 拒绝 OAuth 应用程序 +shortTitle: Deny OAuth App --- {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 在要禁用的应用程序旁边,单击 {% octicon "pencil" aria-label="The edit icon" %}。 ![编辑图标](/assets/images/help/settings/settings-third-party-deny-edit.png) -6. 单击 **Deny access(拒绝访问)**。 ![拒绝确认按钮](/assets/images/help/settings/settings-third-party-deny-confirm.png) +5. Next to the application you'd like to disable, click {% octicon "pencil" aria-label="The edit icon" %}. + ![Edit icon](/assets/images/help/settings/settings-third-party-deny-edit.png) +6. Click **Deny access**. + ![Deny confirmation button](/assets/images/help/settings/settings-third-party-deny-confirm.png) diff --git a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md index c6b6c5e0d4..4931bc44cc 100644 --- a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: 禁用 OAuth 应用程序对您的组织的访问权限限制 -intro: '组织所有者可禁用对拥有组织资源访问权限的 {% data variables.product.prodname_oauth_apps %} 的限制。' +title: Disabling OAuth App access restrictions for your organization +intro: 'Organization owners can disable restrictions on the {% data variables.product.prodname_oauth_apps %} that have access to the organization''s resources.' redirect_from: - - /articles/disabling-third-party-application-restrictions-for-your-organization/ + - /articles/disabling-third-party-application-restrictions-for-your-organization - /articles/disabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/disabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,17 +11,19 @@ versions: topics: - Organizations - Teams -shortTitle: 禁用 OAuth 应用程序 +shortTitle: Disable OAuth App --- {% danger %} -**警告**:禁用 {% data variables.product.prodname_oauth_app %} 对组织的访问权限限制后,任何组织成员批准某一应用程序使用其私有帐户设置时,将自动授予 {% data variables.product.prodname_oauth_app %} 对组织私有资源的访问权限。 +**Warning**: When you disable {% data variables.product.prodname_oauth_app %} access restrictions for your organization, any organization member will automatically authorize {% data variables.product.prodname_oauth_app %} access to the organization's private resources when they approve an application for use in their personal account settings. {% enddanger %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 单击 **Remove restrictions(删除限制)**。 ![删除限制按钮](/assets/images/help/settings/settings-third-party-remove-restrictions.png) -6. 审查有关禁用第三方应用程序限制的信息后,请单击 **Yes, remove application restrictions(是,删除应用程序限制)**。 ![删除确认按钮](/assets/images/help/settings/settings-third-party-confirm-disable.png) +5. Click **Remove restrictions**. + ![Remove restrictions button](/assets/images/help/settings/settings-third-party-remove-restrictions.png) +6. After you review the information about disabling third-party application restrictions, click **Yes, remove application restrictions**. + ![Remove confirmation button](/assets/images/help/settings/settings-third-party-confirm-disable.png) diff --git a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md index 0b440e1fe4..5ad4a078f8 100644 --- a/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md +++ b/translations/zh-CN/content/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md @@ -1,8 +1,8 @@ --- -title: 对组织启用 OAuth App 访问限制 -intro: '组织所有者可启用 {% data variables.product.prodname_oauth_app %} 访问限制,以便在组织成员在其个人账户上使用允许 {% data variables.product.prodname_oauth_apps %} 的同时,防止不受信任的应用程序访问组织的资源。' +title: Enabling OAuth App access restrictions for your organization +intro: 'Organization owners can enable {% data variables.product.prodname_oauth_app %} access restrictions to prevent untrusted apps from accessing the organization''s resources while allowing organization members to use {% data variables.product.prodname_oauth_apps %} for their personal accounts.' redirect_from: - - /articles/enabling-third-party-application-restrictions-for-your-organization/ + - /articles/enabling-third-party-application-restrictions-for-your-organization - /articles/enabling-oauth-app-access-restrictions-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/enabling-oauth-app-access-restrictions-for-your-organization versions: @@ -11,22 +11,24 @@ versions: topics: - Organizations - Teams -shortTitle: 启用 OAuth 应用程序 +shortTitle: Enable OAuth App --- {% data reusables.organizations.oauth_app_restrictions_default %} {% warning %} -**警告**: -- 启用 {% data variables.product.prodname_oauth_app %} 访问限制将撤销对所有之前已授权 {% data variables.product.prodname_oauth_apps %} 和 SSH 密钥的组织访问权限。 更多信息请参阅“[关于 {% data variables.product.prodname_oauth_app %} 访问限制](/articles/about-oauth-app-access-restrictions)”。 -- 在设置 {% data variables.product.prodname_oauth_app %} 访问限制后,确保重新授权任何需要持续访问组织私有数据的 {% data variables.product.prodname_oauth_app %}。 所有组织成员将需要创建新的 SSH 密钥,并且组织将需要根据需要创建新的部署密钥。 -- 启用 {% data variables.product.prodname_oauth_app %} 访问限制后,应用程序可以使用 OAuth 令牌访问有关 {% data variables.product.prodname_marketplace %} 事务的信息。 +**Warnings**: +- Enabling {% data variables.product.prodname_oauth_app %} access restrictions will revoke organization access for all previously authorized {% data variables.product.prodname_oauth_apps %} and SSH keys. For more information, see "[About {% data variables.product.prodname_oauth_app %} access restrictions](/articles/about-oauth-app-access-restrictions)." +- Once you've set up {% data variables.product.prodname_oauth_app %} access restrictions, make sure to re-authorize any {% data variables.product.prodname_oauth_app %} that require access to the organization's private data on an ongoing basis. All organization members will need to create new SSH keys, and the organization will need to create new deploy keys as needed. +- When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, applications can use an OAuth token to access information about {% data variables.product.prodname_marketplace %} transactions. {% endwarning %} {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.oauth_app_access %} -5. 在“Third-party application access policy”(第三方应用程序访问策略)下,单击 **Setup application access restrictions(设置应用程序访问限制)**。 ![设置限制按钮](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) -6. 审查有关第三方访问限制的信息后,单击 **Restrict third-party application access(限制第三方应用程序访问)**。 ![限制确认按钮](/assets/images/help/settings/settings-third-party-restrict-confirm.png) +5. Under "Third-party application access policy," click **Setup application access restrictions**. + ![Set up restrictions button](/assets/images/help/settings/settings-third-party-set-up-restrictions.png) +6. After you review the information about third-party access restrictions, click **Restrict third-party application access**. + ![Restriction confirmation button](/assets/images/help/settings/settings-third-party-restrict-confirm.png) diff --git a/translations/zh-CN/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md b/translations/zh-CN/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md index d2d4c6688c..293248895a 100644 --- a/translations/zh-CN/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md +++ b/translations/zh-CN/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md @@ -1,6 +1,6 @@ --- -title: 配置包的访问控制和可见性 -intro: '选择谁对容器映像具有读取、写入或管理员访问权限,以及容器映像在 {% data variables.product.prodname_dotcom %} 上的可见性。' +title: Configuring a package's access control and visibility +intro: 'Choose who has read, write, or admin access to your container image and the visibility of your container images on {% data variables.product.prodname_dotcom %}.' product: '{% data reusables.gated-features.packages %}' redirect_from: - /packages/managing-container-images-with-github-container-registry/configuring-access-control-and-visibility-for-container-images @@ -8,83 +8,94 @@ redirect_from: versions: fpt: '*' ghec: '*' -shortTitle: 访问控制和可见性 +shortTitle: Access control & visibility --- -具有精细权限的包仅限于个人用户或组织帐户。 您可以从与包相连(或链接)的仓库分别更改包的访问控制和可见性。 +Packages with granular permissions are scoped to a personal user or organization account. You can change the access control and visibility of a package separately from the repository that it is connected (or linked) to. -目前,您只能对 {% data variables.product.prodname_container_registry %} 使用粒度权限。 粒度权限不支持我们的其他软件包注册表,如 npm 注册表。 +Currently, you can only use granular permissions with the {% data variables.product.prodname_container_registry %}. Granular permissions are not supported in our other package registries, such as the npm registry. -有关仓库作用域的包、与包相关的 PAT 作用域或管理操作工作流程的权限的更多信息,请参阅“[关于 GitHub Packages 的权限](/packages/learn-github-packages/about-permissions-for-github-packages)”。 +For more information about permissions for repository-scoped packages, packages-related scopes for PATs, or managing permissions for your actions workflows, see "[About permissions for GitHub Packages](/packages/learn-github-packages/about-permissions-for-github-packages)." -## 容器映像的可见性和访问权限 +## Visibility and access permissions for container images {% data reusables.package_registry.visibility-and-access-permissions %} -## 为个人帐户配置对容器映像的访问 +## Configuring access to container images for your personal account -如果您对用户帐户拥有的容器映像具有管理员权限,您可以向其他用户分配读取、写入或管理员角色。 有关这些权限角色的更多信息,请参阅“[容器映像的可见性和访问权限](#visibility-and-access-permissions-for-container-images)”。 +If you have admin permissions to a container image that's owned by a user account, you can assign read, write, or admin roles to other users. For more information about these permission roles, see "[Visibility and access permissions for container images](#visibility-and-access-permissions-for-container-images)." -如果您的软件包是私人或内部的并且由组织拥有,则您只能向其他组织成员或团队授予访问。 +If your package is private or internal and owned by an organization, then you can only give access to other organization members or teams. {% data reusables.package_registry.package-settings-from-user-level %} -1. 在软件包设置页面上,单击 **Invite teams or people(邀请团队或人员)**,然后输入名称、用户名或您想要授予访问权限的人员的电子邮件地址。 不能授予团队访问用户帐户拥有的容器映像。 ![容器访问邀请按钮](/assets/images/help/package-registry/container-access-invite.png) -1. 在用户名或团队名称旁边,使用“Role(角色)”下拉菜单选择所需的权限级别。 ![容器访问选项](/assets/images/help/package-registry/container-access-control-options.png) +1. On the package settings page, click **Invite teams or people** and enter the name, username, or email of the person you want to give access. Teams cannot be given access to a container image owned by a user account. + ![Container access invite button](/assets/images/help/package-registry/container-access-invite.png) +1. Next to the username or team name, use the "Role" drop-down menu to select a desired permission level. + ![Container access options](/assets/images/help/package-registry/container-access-control-options.png) -所选用户将自动被授予访问权限,不需要先接受邀请。 +The selected users will automatically be given access and don't need to accept an invitation first. -## 为企业配置对容器映像的访问 +## Configuring access to container images for an organization -如果您对组织拥有的容器映像具有管理员权限,您可以向其他用户和团队分配读取、写入或管理员角色。 有关这些权限角色的更多信息,请参阅“[容器映像的可见性和访问权限](#visibility-and-access-permissions-for-container-images)”。 +If you have admin permissions to an organization-owned container image, you can assign read, write, or admin roles to other users and teams. For more information about these permission roles, see "[Visibility and access permissions for container images](#visibility-and-access-permissions-for-container-images)." -如果您的软件包是私人或内部的并且由组织拥有,则您只能向其他组织成员或团队授予访问。 +If your package is private or internal and owned by an organization, then you can only give access to other organization members or teams. {% data reusables.package_registry.package-settings-from-org-level %} -1. 在软件包设置页面上,单击 **Invite teams or people(邀请团队或人员)**,然后输入名称、用户名或您想要授予访问权限的人员的电子邮件地址。 您还可以从组织输入团队名称,以允许所有团队成员访问。 ![容器访问邀请按钮](/assets/images/help/package-registry/container-access-invite.png) -1. 在用户名或团队名称旁边,使用“Role(角色)”下拉菜单选择所需的权限级别。 ![容器访问选项](/assets/images/help/package-registry/container-access-control-options.png) +1. On the package settings page, click **Invite teams or people** and enter the name, username, or email of the person you want to give access. You can also enter a team name from the organization to give all team members access. + ![Container access invite button](/assets/images/help/package-registry/container-access-invite.png) +1. Next to the username or team name, use the "Role" drop-down menu to select a desired permission level. + ![Container access options](/assets/images/help/package-registry/container-access-control-options.png) -所选用户或团队将自动被授予访问权限,不需要先接受邀请。 +The selected users or teams will automatically be given access and don't need to accept an invitation first. -## 从仓库继承容器映像的访问权限 +## Inheriting access for a container image from a repository -要通过 {% data variables.product.prodname_actions %} 工作流程简化包管理,您可以让容器映像默认继承仓库的访问权限。 +To simplify package management through {% data variables.product.prodname_actions %} workflows, you can enable a container image to inherit the access permissions of a repository by default. -如果您继承了存储包工作流程的仓库的访问权限,则可以通过仓库的权限调整对包的访问权限。 +If you inherit the access permissions of the repository where your package's workflows are stored, then you can adjust access to your package through the repository's permissions. -仓库一旦同步,您就无法访问包的精细访问设置。 要通过精细的包访问设置自定义包的权限,您必须先删除同步的仓库。 +Once a repository is synced, you can't access the package's granular access settings. To customize the package's permissions through the granular package access settings, you must remove the synced repository first. {% data reusables.package_registry.package-settings-from-org-level %} -2. 在“Repository source(仓库来源)”下,选择 **Inherit access from repository (recommended)(从仓库继承访问权限 [推荐])**。 ![继承仓库访问权限复选框](/assets/images/help/package-registry/inherit-repo-access-for-package.png) +2. Under "Repository source", select **Inherit access from repository (recommended)**. + ![Inherit repo access checkbox](/assets/images/help/package-registry/inherit-repo-access-for-package.png) -## 确保工作流程访问您的包 +## Ensuring workflow access to your package -为确保 {% data variables.product.prodname_actions %} 工作流程能访问您的包,您必须授予存储工作流程的仓库以明确的访问权限。 +To ensure that a {% data variables.product.prodname_actions %} workflow has access to your package, you must give explicit access to the repository where the workflow is stored. -指定的仓库不需要是保存包源代码的仓库。 您可以授予多个仓库工作流程对包的访问权限。 +The specified repository does not need to be the repository where the source code for the package is kept. You can give multiple repositories workflow access to a package. {% note %} -**注意:**通过 **Actions access(操作访问)**菜单选项同步容器映像与仓库不同于将容器连接到仓库。 有关将仓库链接到容器的更多信息,请参阅“[将仓库连接到包](/packages/learn-github-packages/connecting-a-repository-to-a-package)”。 +**Note:** Syncing your container image with a repository through the **Actions access** menu option is different than connecting your container to a repository. For more information about linking a repository to your container, see "[Connecting a repository to a package](/packages/learn-github-packages/connecting-a-repository-to-a-package)." {% endnote %} -### 用户帐户拥有的容器映像的 {% data variables.product.prodname_actions %} 访问权限 +### {% data variables.product.prodname_actions %} access for user-account-owned container images {% data reusables.package_registry.package-settings-from-user-level %} -1. 在左侧边栏中,单击 **Actions access(操作访问)**。 ![左侧菜单中的"Actions access(操作访问)"选项](/assets/images/help/package-registry/organization-repo-access-for-a-package.png) -2. 为确保工作流程有权访问容器包,您必须添加存储工作流程的仓库。 单击 **Add repository(添加仓库)**并搜索要添加的仓库。 !["添加仓库"按钮](/assets/images/help/package-registry/add-repository-button.png) -3. (使用“role(角色)”下拉菜单,选择您希望仓库访问您的容器映像所必须拥有的默认访问权限。 ![授予仓库的权限访问级别](/assets/images/help/package-registry/repository-permission-options-for-package-access-through-actions.png) +1. In the left sidebar, click **Actions access**. + !["Actions access" option in left menu](/assets/images/help/package-registry/organization-repo-access-for-a-package.png) +2. To ensure your workflow has access to your container package, you must add the repository where the workflow is stored. Click **Add repository** and search for the repository you want to add. + !["Add repository" button](/assets/images/help/package-registry/add-repository-button.png) +3. Using the "role" drop-down menu, select the default access level that you'd like the repository to have to your container image. + ![Permission access levels to give to repositories](/assets/images/help/package-registry/repository-permission-options-for-package-access-through-actions.png) -要进一步自定义对容器映像的访问,请参阅“[配置对个人帐户的容器映像的访问](#configuring-access-to-container-images-for-your-personal-account)”。 +To further customize access to your container image, see "[Configuring access to container images for your personal account](#configuring-access-to-container-images-for-your-personal-account)." -### 组织拥有的容器映像的 {% data variables.product.prodname_actions %} 访问权限 +### {% data variables.product.prodname_actions %} access for organization-owned container images {% data reusables.package_registry.package-settings-from-org-level %} -1. 在左侧边栏中,单击 **Actions access(操作访问)**。 ![左侧菜单中的"Actions access(操作访问)"选项](/assets/images/help/package-registry/organization-repo-access-for-a-package.png) -2. 单击 **Add repository(添加仓库)**并搜索要添加的仓库。 !["添加仓库"按钮](/assets/images/help/package-registry/add-repository-button.png) -3. 使用“role(角色)”下拉菜单,选择您希望仓库成员访问您的容器映像所必须拥有的默认访问权限。 外部协作者将不包括在内。 ![授予仓库的权限访问级别](/assets/images/help/package-registry/repository-permission-options-for-package-access-through-actions.png) +1. In the left sidebar, click **Actions access**. + !["Actions access" option in left menu](/assets/images/help/package-registry/organization-repo-access-for-a-package.png) +2. Click **Add repository** and search for the repository you want to add. + !["Add repository" button](/assets/images/help/package-registry/add-repository-button.png) +3. Using the "role" drop-down menu, select the default access level that you'd like repository members to have to your container image. Outside collaborators will not be included. + ![Permission access levels to give to repositories](/assets/images/help/package-registry/repository-permission-options-for-package-access-through-actions.png) -要进一步自定义对容器映像的访问,请参阅“[配置对组织的容器映像的访问](#configuring-access-to-container-images-for-an-organization)”。 +To further customize access to your container image, see "[Configuring access to container images for an organization](#configuring-access-to-container-images-for-an-organization)." ## Ensuring {% data variables.product.prodname_codespaces %} access to your package @@ -92,68 +103,71 @@ By default, a codespace can seamlessly access certain packages in the {% data va Otherwise, to ensure that a codespace has access to your package, you must grant access to the repository where the codespace is being launched. -指定的仓库不需要是保存包源代码的仓库。 You can give codespaces in multiple repositories access to a package. +The specified repository does not need to be the repository where the source code for the package is kept. You can give codespaces in multiple repositories access to a package. Once you've selected the package you're interested in sharing with codespaces in a repository, you can grant that repo access. 1. In the right sidebar, click **Package settings**. !["Package settings" option in right menu](/assets/images/help/package-registry/package-settings.png) - + 2. Under "Manage Codespaces access", click **Add repository**. - !["添加仓库"按钮](/assets/images/help/package-registry/manage-codespaces-access-blank.png) + !["Add repository" button](/assets/images/help/package-registry/manage-codespaces-access-blank.png) 3. Search for the repository you want to add. - !["添加仓库"按钮](/assets/images/help/package-registry/manage-codespaces-access-search.png) - + !["Add repository" button](/assets/images/help/package-registry/manage-codespaces-access-search.png) + 4. Repeat for any additional repositories you would like to allow access. 5. If the codespaces for a repository no longer need access to an image, you can remove access. !["Remove repository" button](/assets/images/help/package-registry/manage-codespaces-access-item.png) -## 为个人帐户配置容器映像的可见性 +## Configuring visibility of container images for your personal account -首次发布包时,默认可见性是私有的,只有您才能看到包。 您可以通过更改访问设置来修改私有或公共容器映像的访问权限。 +When you first publish a package, the default visibility is private and only you can see the package. You can modify a private or public container image's access by changing the access settings. -公共包可以匿名访问,无需身份验证。 包一旦被设为公共,便无法再次将其设为私有。 +A public package can be accessed anonymously without authentication. Once you make your package public, you cannot make your package private again. {% data reusables.package_registry.package-settings-from-user-level %} -5. 在“Danger Zone(危险区域)”下,选择可见性设置: - - 要使容器映像对任何人都可见,请单击“**Make public(设为公共)**”。 +5. Under "Danger Zone", choose a visibility setting: + - To make the container image visible to anyone, click **Make public**. {% warning %} - **警告:**包一旦被设为公共,便无法再次将其设为私有。 + **Warning:** Once you make a package public, you cannot make it private again. {% endwarning %} - - 要使容器映像只对选择的人员可见,请单击“**Make private(设为私有)**”。 ![容器可见性选项](/assets/images/help/package-registry/container-visibility-option.png) + - To make the container image visible to a custom selection of people, click **Make private**. + ![Container visibility options](/assets/images/help/package-registry/container-visibility-option.png) -## 组织成员的容器创建可见性 +## Container creation visibility for organization members -您可以选择组织成员默认可以发布的容器的可见性。 +You can choose the visibility of containers that organization members can publish by default. {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -4. 在左侧,单击 **Packages(包)**。 -6. 在“Container creation(容器创建)”下,选择是要启用公共、私有或内部容器映像。 - - 要让组织成员创建公共容器映像,请单击 **Public(公共)**。 - - 要让组织成员创建只对其他组织成员可见的私有容器映像,请单击 **Private(私有)**。 您可以进一步自定义私有容器映像的可见性。 - - **仅适用于 {% data variables.product.prodname_ghe_cloud %} :**要让组织成员创建仅供其他组织成员可见的内部容器映像,请单击 **Internal(内部)**。 ![组织成员发布的容器图像的可见性选项](/assets/images/help/package-registry/container-creation-org-settings.png) +4. On the left, click **Packages**. +6. Under "Container creation", choose whether you want to enable the creation of public, private, or internal container images. + - To enable organization members to create public container images, click **Public**. + - To enable organization members to create private container images that are only visible to other organization members, click **Private**. You can further customize the visibility of private container images. + - To enable organization members to create internal container images that are visible to all organization members, click **Internal**. If the organization belongs to an enterprise, the container images will be visible to all enterprise members. + ![Visibility options for container images published by organization members](/assets/images/help/package-registry/container-creation-org-settings.png) -## 为组织配置容器映像的可见性 +## Configuring visibility of container images for an organization -首次发布包时,默认可见性是私有的,只有您才能看到包。 您可以通过访问设置授予用户或团队对容器映像的不同访问角色。 +When you first publish a package, the default visibility is private and only you can see the package. You can grant users or teams different access roles for your container image through the access settings. -公共包可以匿名访问,无需身份验证。 包一旦被设为公共,便无法再次将其设为私有。 +A public package can be accessed anonymously without authentication. Once you make your package public, you cannot make your package private again. {% data reusables.package_registry.package-settings-from-org-level %} -5. 在“Danger Zone(危险区域)”下,选择可见性设置: - - 要使容器映像对任何人都可见,请单击“**Make public(设为公共)**”。 +5. Under "Danger Zone", choose a visibility setting: + - To make the container image visible to anyone, click **Make public**. {% warning %} - **警告:**包一旦被设为公共,便无法再次将其设为私有。 + **Warning:** Once you make a package public, you cannot make it private again. {% endwarning %} - - 要使容器映像只对选择的人员可见,请单击“**Make private(设为私有)**”。 ![容器可见性选项](/assets/images/help/package-registry/container-visibility-option.png) + - To make the container image visible to a custom selection of people, click **Make private**. + ![Container visibility options](/assets/images/help/package-registry/container-visibility-option.png) diff --git a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md index 1c3a537941..8b423a877c 100644 --- a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md +++ b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: 关于自定义域名和 GitHub 页面 -intro: '{% data variables.product.prodname_pages %} 支持使用自定义域名,或者将网站的 URL 根目录从默认值(如 `octocat.github.io`)更改为您拥有的任何域名。' +title: About custom domains and GitHub Pages +intro: '{% data variables.product.prodname_pages %} supports using custom domains, or changing the root of your site''s URL from the default, like `octocat.github.io`, to any domain you own.' redirect_from: - - /articles/about-custom-domains-for-github-pages-sites/ - - /articles/about-supported-custom-domains/ - - /articles/custom-domain-redirects-for-your-github-pages-site/ + - /articles/about-custom-domains-for-github-pages-sites + - /articles/about-supported-custom-domains + - /articles/custom-domain-redirects-for-your-github-pages-site - /articles/about-custom-domains-and-github-pages - /github/working-with-github-pages/about-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: 在 GitHub Pages 中自定义域 +shortTitle: Custom domains in GitHub Pages --- -## 支持的自定义域 +## Supported custom domains -{% data variables.product.prodname_pages %} 可使用两种类型的域名:子域名和 apex 域名。 有关不支持的自定义域名列表,请参阅“[自定义域名和 {% data variables.product.prodname_pages %} 疑难解答](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)“。 +{% data variables.product.prodname_pages %} works with two types of domains: subdomains and apex domains. For a list of unsupported custom domains, see "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages/#custom-domain-names-that-are-unsupported)." -| 支持的自定义域类型 | 示例 | -| --------- | ------------------ | -| `www` 子域 | `www.example.com` | -| 自定义子域 | `blog.example.com` | -| Apex 域 | `example.com` | +| Supported custom domain type | Example | +|---|---| +| `www` subdomain | `www.example.com` | +| Custom subdomain | `blog.example.com` | +| Apex domain | `example.com` | -您可以为您的网站设置 apex 和 `www` 子域配置。 有关 apex 域的更多信息,请参阅“[对您的 {% data variables.product.prodname_pages %} 网站使用 apex 域](#using-an-apex-domain-for-your-github-pages-site)”。 +You can set up either or both of apex and `www` subdomain configurations for your site. For more information on apex domains, see "[Using an apex domain for your {% data variables.product.prodname_pages %} site](#using-an-apex-domain-for-your-github-pages-site)." -建议始终使用 `www` 子域名,即使您也同时使用 apex 域。 当您创建具有 apex 域的新站点时,我们会自动尝试保护 `www` 子域以供在提供网站内容时使用。 如果您配置 `www` 子域,我们会自动尝试保护相关的 apex 域。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site)。 +We recommend always using a `www` subdomain, even if you also use an apex domain. When you create a new site with an apex domain, we automatically attempt to secure the `www` subdomain for use when serving your site's content. If you configure a `www` subdomain, we automatically attempt to secure the associated apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -在配置用户或组织网站的自定义域后,自定义域名将替换未配置自定义域的帐户所拥有的任何项目网站 URL 的 `<user>.github.io` 或 `<organization>.github.io` 部分。 例如,如果您的用户网站的自定义域名为 `www.octocat.com`,并且您拥有一个未自定义域名的项目网站,该网站从名为 `octo-project` 的仓库发布,则该仓库的 {% data variables.product.prodname_pages %} 网站将在 `www.octocat.com/octo-project` 上提供。 +After you configure a custom domain for a user or organization site, the custom domain will replace the `<user>.github.io` or `<organization>.github.io` portion of the URL for any project sites owned by the account that do not have a custom domain configured. For example, if the custom domain for your user site is `www.octocat.com`, and you have a project site with no custom domain configured that is published from a repository called `octo-project`, the {% data variables.product.prodname_pages %} site for that repository will be available at `www.octocat.com/octo-project`. -## 对您的 {% data variables.product.prodname_pages %} 网站使用子域名 +## Using a subdomain for your {% data variables.product.prodname_pages %} site -子域名是根域前 URL 的一部分。 您可以将子域名配置为 `www` 或网站的独特部分,如 `blog.example.com`。 +A subdomain is the part of a URL before the root domain. You can configure your subdomain as `www` or as a distinct section of your site, like `blog.example.com`. -子域名配置通过 DNS 提供商使用 `CNAME` 记录配置。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)。 +Subdomains are configured with a `CNAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)." -### `www` 子域 +### `www` subdomains -`www` 子域名是最常用的一种子域名。 例如,`www.example.com` 包含 `www` 子域名。 +A `www` subdomain is the most commonly used type of subdomain. For example, `www.example.com` includes a `www` subdomain. -`www` 子域名是最稳定的一种自定义域,因为 `www` 子域名不受 {% data variables.product.product_name %} 服务器 IP 地址变动的影响。 +`www` subdomains are the most stable type of custom domain because `www` subdomains are not affected by changes to the IP addresses of {% data variables.product.product_name %}'s servers. -### 自定义子域 +### Custom subdomains -自定义子域是一种不使用标准 `www` 变体的子域。 自定义子域主要在您需要将网站分为两个不同的部分时使用。 例如,您可以创建一个名为 `blog.example.com` 并自定义该部分与 `www.example.com` 分开。 +A custom subdomain is a type of subdomain that doesn't use the standard `www` variant. Custom subdomains are mostly used when you want two distinct sections of your site. For example, you can create a site called `blog.example.com` and customize that section independently from `www.example.com`. -## 对您的 {% data variables.product.prodname_pages %} 网站使用 apex 域 +## Using an apex domain for your {% data variables.product.prodname_pages %} site -Apex 域是一个不包含子域的自定义域,如 `example.com`。 Apex 域也称为基础域、裸域、根 apex 域或区域 apex 域。 +An apex domain is a custom domain that does not contain a subdomain, such as `example.com`. Apex domains are also known as base, bare, naked, root apex, or zone apex domains. -Apex 域配置通过 DNS 提供商使用 `A`, `ALAS` 或 `ANAME` 记录配置。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)。 +An apex domain is configured with an `A`, `ALIAS`, or `ANAME` record through your DNS provider. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." -{% data reusables.pages.www-and-apex-domain-recommendation %}更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 站点的自定义域](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)”。 +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site/#configuring-a-subdomain)." ## Securing the custom domain for your {% data variables.product.prodname_pages %} site {% data reusables.pages.secure-your-domain %} 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)" and "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -有许多原因会导致您的网站被自动禁用。 +There are a couple of reasons your site might be automatically disabled. -- 如果您从 {% data variables.product.prodname_pro %} 降级到 {% data variables.product.prodname_free_user %},则目前发布自您的帐户中私有仓库的任何 {% data variables.product.prodname_pages %} 站点都会取消发布。 更多信息请参阅“[Downgrading your {% data variables.product.prodname_dotcom %} 结算方案](/articles/downgrading-your-github-billing-plan)”。 -- 如果将私人仓库转让给使用 {% data variables.product.prodname_free_user %} 的个人帐户,仓库将失去对 {% data variables.product.prodname_pages %} 功能的访问,当前发布的 {% data variables.product.prodname_pages %} 站点将取消发布。 更多信息请参阅“[转让仓库](/articles/transferring-a-repository)”。 +- If you downgrade from {% data variables.product.prodname_pro %} to {% data variables.product.prodname_free_user %}, any {% data variables.product.prodname_pages %} sites that are currently published from private repositories in your account will be unpublished. For more information, see "[Downgrading your {% data variables.product.prodname_dotcom %} billing plan](/articles/downgrading-your-github-billing-plan)." +- If you transfer a private repository to a personal account that is using {% data variables.product.prodname_free_user %}, the repository will lose access to the {% data variables.product.prodname_pages %} feature, and the currently published {% data variables.product.prodname_pages %} site will be unpublished. For more information, see "[Transferring a repository](/articles/transferring-a-repository)." -## 延伸阅读 +## Further reading -- "[自定义域名和 {% data variables.product.prodname_pages %} 疑难解答](/articles/troubleshooting-custom-domains-and-github-pages)" +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md index 0c9d431de0..df8f8b376f 100644 --- a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md +++ b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/index.md @@ -1,14 +1,14 @@ --- -title: 配置 GitHub Pages 站点的自定义域 -intro: '您可以自定义 {% data variables.product.prodname_pages %} 站点的域名。' +title: Configuring a custom domain for your GitHub Pages site +intro: 'You can customize the domain name of your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/tips-for-configuring-an-a-record-with-your-dns-provider/ - - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site/ - - /articles/configuring-an-a-record-with-your-dns-provider/ - - /articles/using-a-custom-domain-with-github-pages/ - - /articles/tips-for-configuring-a-cname-record/ - - /articles/setting-up-a-custom-domain-with-pages/ - - /articles/setting-up-a-custom-domain-with-github-pages/ + - /articles/tips-for-configuring-an-a-record-with-your-dns-provider + - /articles/adding-or-removing-a-custom-domain-for-your-github-pages-site + - /articles/configuring-an-a-record-with-your-dns-provider + - /articles/using-a-custom-domain-with-github-pages + - /articles/tips-for-configuring-a-cname-record + - /articles/setting-up-a-custom-domain-with-pages + - /articles/setting-up-a-custom-domain-with-github-pages - /articles/configuring-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/configuring-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -22,6 +22,5 @@ children: - /managing-a-custom-domain-for-your-github-pages-site - /verifying-your-custom-domain-for-github-pages - /troubleshooting-custom-domains-and-github-pages -shortTitle: 配置自定义域 +shortTitle: Configure a custom domain --- - diff --git a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md index cdec6e11ef..025d260cef 100644 --- a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md +++ b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site.md @@ -1,14 +1,14 @@ --- -title: 管理 GitHub Pages 站点的自定义域 -intro: '您可以设置或更新某些 DNS 记录和仓库设置,以将 {% data variables.product.prodname_pages %} 站点的默认域指向自定义域。' +title: Managing a custom domain for your GitHub Pages site +intro: 'You can set up or update certain DNS records and your repository settings to point the default domain for your {% data variables.product.prodname_pages %} site to a custom domain.' redirect_from: - - /articles/quick-start-setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain/ - - /articles/setting-up-a-www-subdomain/ - - /articles/setting-up-a-custom-domain/ - - /articles/setting-up-an-apex-domain-and-www-subdomain/ - - /articles/adding-a-cname-file-to-your-repository/ - - /articles/setting-up-your-pages-site-repository/ + - /articles/quick-start-setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain + - /articles/setting-up-a-www-subdomain + - /articles/setting-up-a-custom-domain + - /articles/setting-up-an-apex-domain-and-www-subdomain + - /articles/adding-a-cname-file-to-your-repository + - /articles/setting-up-your-pages-site-repository - /articles/managing-a-custom-domain-for-your-github-pages-site - /github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site product: '{% data reusables.gated-features.pages %}' @@ -17,40 +17,41 @@ versions: ghec: '*' topics: - Pages -shortTitle: 管理自定义域 +shortTitle: Manage a custom domain --- -拥有仓库管理员权限的人可为 {% data variables.product.prodname_pages %} 站点配置自定义域。 +People with admin permissions for a repository can configure a custom domain for a {% data variables.product.prodname_pages %} site. -## 关于自定义域配置 +## About custom domain configuration -使用 DNS 提供程序配置自定义域之前,请确保将自定义域添加到您的 {% data variables.product.prodname_pages %} 站点。 使用 DNS 提供程序配置自定义域而不将其添加到 {% data variables.product.product_name %},可能导致其他人能够在您的某个子域上托管站点。 +Make sure you add your custom domain to your {% data variables.product.prodname_pages %} site before configuring your custom domain with your DNS provider. Configuring your custom domain with your DNS provider without adding your custom domain to {% data variables.product.product_name %} could result in someone else being able to host a site on one of your subdomains. {% windows %} -`dig` 命令可用于验证 DNS 记录的配置是否正确,它未包含在 Windows 中。 在验证 DNS 记录的配置是否正确之前,必须安装 [BIND](https://www.isc.org/bind/)。 +The `dig` command, which can be used to verify correct configuration of DNS records, is not included in Windows. Before you can verify that your DNS records are configured correctly, you must install [BIND](https://www.isc.org/bind/). {% endwindows %} {% note %} -**注:**DNS 更改可能需要最多 24 小时才能传播。 +**Note:** DNS changes can take up to 24 hours to propagate. {% endnote %} -## 配置子域 +## Configuring a subdomain -要设置 `www` 或自定义子域,例如 `www.example.com` 或 `blog.example.com`,您必须将域添加到仓库设置,这将在站点的仓库中创建 CNAME 文件。 然后,通过 DNS 提供商配置 CNAME 记录。 +To set up a `www` or custom subdomain, such as `www.example.com` or `blog.example.com`, you must add your domain in the repository settings, which will create a CNAME file in your site’s repository. After that, configure a CNAME record with your DNS provider. {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. 在 "Custom domain(自定义域)"下,输入自定义域,然后单击 **Save(保存)**。 这将创建一个在发布源根目录中添加 _CNAME _ 文件的提交。 ![保存自定义域按钮](/assets/images/help/pages/save-custom-subdomain.png) -5. 导航到您的 DNS 提供程序并创建 `CNAME` 记录,使子域指向您站点的默认域。 例如,如果要对您的用户站点使用子域 `www.example.com`,您可以创建 `CNAME` 记录,使 `www.example.com` 指向 `<user>.github.io`。 如果要对您的组织站点使用子域 `www.anotherexample.com`,您可以创建 `CNAME` 记录,使 `www.anotherexample.com` 指向 `<organization>.github.io`。 `CNAME` 记录应该始终指向 `<user>.github.io` 或 `<organization>.github.io`,不包括仓库名称。 {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-subdomain.png) +5. Navigate to your DNS provider and create a `CNAME` record that points your subdomain to the default domain for your site. For example, if you want to use the subdomain `www.example.com` for your user site, create a `CNAME` record that points `www.example.com` to `<user>.github.io`. If you want to use the subdomain `www.anotherexample.com` for your organization site, create a `CNAME` record that points `www.anotherexample.com` to `<organization>.github.io`. The `CNAME` record should always point to `<user>.github.io` or `<organization>.github.io`, excluding the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. 要确认您的 DNS 记录配置正确,请使用 `dig` 命令,将 _WWW.EXAM.COM_ 替换为您的子域。 +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your subdomain. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -61,26 +62,27 @@ shortTitle: 管理自定义域 {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## 配置 apex 域 +## Configuring an apex domain -要设置 apex 域,例如 `example.com`,您必须使用 DNS 提供程序配置 {% data variables.product.prodname_pages %} 仓库中的 _CNAME_ 文件以及至少一条 `ALIAS`、`ANAME` 或 `A` 记录。 +To set up an apex domain, such as `example.com`, you must configure a _CNAME_ file in your {% data variables.product.prodname_pages %} repository and at least one `ALIAS`, `ANAME`, or `A` record with your DNS provider. -{% data reusables.pages.www-and-apex-domain-recommendation %}更多信息请参阅“[配置子域](#configuring-a-subdomain)”。 +{% data reusables.pages.www-and-apex-domain-recommendation %} For more information, see "[Configuring a subdomain](#configuring-a-subdomain)." {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. 在 "Custom domain(自定义域)"下,输入自定义域,然后单击 **Save(保存)**。 这将创建一个在发布源根目录中添加 _CNAME _ 文件的提交。 ![保存自定义域按钮](/assets/images/help/pages/save-custom-apex-domain.png) -5. 导航到 DNS 提供程序并创建一个 `ALIAS`、`ANAME` 或 `A` 记录。 您也可以创建 `AAAA` 记录以获得 IPv6 支持。 {% data reusables.pages.contact-dns-provider %} - - 要创建 `ALIAS` 或 `ANAME` 记录,请将 apex 域指向站点的默认域。 {% data reusables.pages.default-domain-information %} - - 要创建 `A` 记录,请将 apex 域指向 {% data variables.product.prodname_pages %} 的 IP 地址。 +4. Under "Custom domain", type your custom domain, then click **Save**. This will create a commit that adds a _CNAME_ file in the root of your publishing source. + ![Save custom domain button](/assets/images/help/pages/save-custom-apex-domain.png) +5. Navigate to your DNS provider and create either an `ALIAS`, `ANAME`, or `A` record. You can also create `AAAA` records for IPv6 support. {% data reusables.pages.contact-dns-provider %} + - To create an `ALIAS` or `ANAME` record, point your apex domain to the default domain for your site. {% data reusables.pages.default-domain-information %} + - To create `A` records, point your apex domain to the IP addresses for {% data variables.product.prodname_pages %}. ```shell 185.199.108.153 185.199.109.153 185.199.110.153 185.199.111.153 ``` - - 要创建 `AAAA` 记录,请将 apex 域指向 {% data variables.product.prodname_pages %} 的 IP 地址。 + - To create `AAAA` records, point your apex domain to the IP addresses for {% data variables.product.prodname_pages %}. ```shell 2606:50c0:8000::153 2606:50c0:8001::153 @@ -90,8 +92,8 @@ shortTitle: 管理自定义域 {% indented_data_reference reusables.pages.wildcard-dns-warning spaces=3 %} {% data reusables.command_line.open_the_multi_os_terminal %} -6. 要确认您的 DNS 记录配置正确,请使用 `dig` 命令,将 _EXAM.COM_ 替换为您的 apex 域。 确认结果与上面 {% data variables.product.prodname_pages %} 的 IP 地址相匹配。 - - 对于 `A` 记录。 +6. To confirm that your DNS record configured correctly, use the `dig` command, replacing _EXAMPLE.COM_ with your apex domain. Confirm that the results match the IP addresses for {% data variables.product.prodname_pages %} above. + - For `A` records. ```shell $ dig <em>EXAMPLE.COM</em> +noall +answer -t A > <em>EXAMPLE.COM</em> 3600 IN A 185.199.108.153 @@ -99,7 +101,7 @@ shortTitle: 管理自定义域 > <em>EXAMPLE.COM</em> 3600 IN A 185.199.110.153 > <em>EXAMPLE.COM</em> 3600 IN A 185.199.111.153 ``` - - 对于 `AAAA` 记录。 + - For `AAAA` records. ```shell $ dig <em>EXAMPLE.COM</em> +noall +answer -t AAAA > <em>EXAMPLE.COM</em> 3600 IN AAAA 2606:50c0:8000::153 @@ -110,16 +112,16 @@ shortTitle: 管理自定义域 {% data reusables.pages.build-locally-download-cname %} {% data reusables.pages.enforce-https-custom-domain %} -## 配置 apex 域和 `www` 子域变种 +## Configuring an apex domain and the `www` subdomain variant -使用 apex 域时,我们建议配置您的 {% data variables.product.prodname_pages %} 站点,以便在 apex 域和该域的 `www` 子域变体中托管内容。 +When using an apex domain, we recommend configuring your {% data variables.product.prodname_pages %} site to host content at both the apex domain and that domain's `www` subdomain variant. -要与 apex 域一起设置 `www` 子域,您必须先配置 apex 域,这将通过您的 DNS 提供商创建 `ALIAS`、`ANAME` 或 `A` 记录。 更多信息请参阅“[配置 apex 域](#configuring-an-apex-domain)”。 +To set up a `www` subdomain alongside the apex domain, you must first configure an apex domain, which will create an `ALIAS`, `ANAME`, or `A` record with your DNS provider. For more information, see "[Configuring an apex domain](#configuring-an-apex-domain)." -配置 apex 域后,您必须通过 DNS 提供商配置 CNAME 记录。 +After you configure the apex domain, you must configure a CNAME record with your DNS provider. -1. 导航到您的 DNS 提供商,并创建一个 `CNAME` 记录,指向您网站的默认域名 `www.example.com` :`<user>.github.io` 或 `<organization>.github.io`。 不要包括仓库名称。 {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} -2. 要确认您的 DNS 记录配置正确,请使用 `dig` 命令,将 _WWW.EXAM.COM_ 替换为您的 `www` 子域变体。 +1. Navigate to your DNS provider and create a `CNAME` record that points `www.example.com` to the default domain for your site: `<user>.github.io` or `<organization>.github.io`. Do not include the repository name. {% data reusables.pages.contact-dns-provider %} {% data reusables.pages.default-domain-information %} +2. To confirm that your DNS record configured correctly, use the `dig` command, replacing _WWW.EXAMPLE.COM_ with your `www` subdomain variant. ```shell $ dig <em>WWW.EXAMPLE.COM</em> +nostats +nocomments +nocmd > ;<em>WWW.EXAMPLE.COM.</em> IN A @@ -127,17 +129,18 @@ shortTitle: 管理自定义域 > <em>YOUR-USERNAME</em>.github.io. 43192 IN CNAME <em> GITHUB-PAGES-SERVER </em>. > <em> GITHUB-PAGES-SERVER </em>. 22 IN A 192.0.2.1 ``` -## 删除自定义域 +## Removing a custom domain {% data reusables.pages.navigate-site-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.pages.sidebar-pages %} -4. 在“Custom domain(自定义域)”下,单击 **Remove(删除)**。 ![保存自定义域按钮](/assets/images/help/pages/remove-custom-domain.png) +4. Under "Custom domain," click **Remove**. + ![Save custom domain button](/assets/images/help/pages/remove-custom-domain.png) ## Securing your custom domain {% data reusables.pages.secure-your-domain %} 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)." -## 延伸阅读 +## Further reading -- "[自定义域名和 {% data variables.product.prodname_pages %} 疑难解答](/articles/troubleshooting-custom-domains-and-github-pages)" +- "[Troubleshooting custom domains and {% data variables.product.prodname_pages %}](/articles/troubleshooting-custom-domains-and-github-pages)" diff --git a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md index 552a3743d3..892a5af812 100644 --- a/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md +++ b/translations/zh-CN/content/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages.md @@ -1,10 +1,10 @@ --- -title: 自定义域和 GitHub Pages 疑难解答 -intro: '您可以检查常见错误,以解决与 {% data variables.product.prodname_pages %} 站点的自定义域或 HTTPS 相关的问题。' +title: Troubleshooting custom domains and GitHub Pages +intro: 'You can check for common errors to resolve issues with custom domains or HTTPS for your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/my-custom-domain-isn-t-working/ - - /articles/custom-domain-isn-t-working/ - - /articles/troubleshooting-custom-domains/ + - /articles/my-custom-domain-isn-t-working + - /articles/custom-domain-isn-t-working + - /articles/troubleshooting-custom-domains - /articles/troubleshooting-custom-domains-and-github-pages - /github/working-with-github-pages/troubleshooting-custom-domains-and-github-pages product: '{% data reusables.gated-features.pages %}' @@ -13,58 +13,58 @@ versions: ghec: '*' topics: - Pages -shortTitle: 排除自定义域的故障 +shortTitle: Troubleshoot a custom domain --- -## _CNAME_ 错误 +## _CNAME_ errors -自定义域存储在发布源的根目录下的 _CNAME_ 文件中。 您可以通过仓库设置或手动添加或更新此文件。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site)。 +Custom domains are stored in a _CNAME_ file in the root of your publishing source. You can add or update this file through your repository settings or manually. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -要让您的站点呈现在正确的域中,请确保您的 _CNAME_ 文件仍存在于仓库中。 例如,许多静态站点生成器会强制推送到您的仓库,这可能会覆盖在配置自定义域时添加到仓库中的 _CNAME_ 文件。 如果您在本地构建站点并将生成的文件推送到 {% data variables.product.product_name %},请确保先将添加 _CNAME_ 文件的提交拉取到本地仓库,使该文件纳入到构建中。 +For your site to render at the correct domain, make sure your _CNAME_ file still exists in the repository. For example, many static site generators force push to your repository, which can overwrite the _CNAME_ file that was added to your repository when you configured your custom domain. If you build your site locally and push generated files to {% data variables.product.product_name %}, make sure to pull the commit that added the _CNAME_ file to your local repository first, so the file will be included in the build. -然后,确保 _CNAME_ 文件格式正确。 +Then, make sure the _CNAME_ file is formatted correctly. -- _CNAME_ 文件名必须全部大写。 -- _CNAME_ 文件只能包含一个域。 要将多个域指向您的站点,必须通过 DNS 提供程序设置重定向。 -- _CNAME_ 文件只能包含一个域名。 例如,`www.example.com`、`blog.example.com` 或 `example.com`。 -- 域名在所有 {% data variables.product.prodname_pages %} 站点中必须是唯一的。 例如,如果另一个仓库的 _CNAME_ 文件包含 `example.com`,则不能在您仓库的 _CNAME_ 文件中使用 `example.com`。 +- The _CNAME_ filename must be all uppercase. +- The _CNAME_ file can contain only one domain. To point multiple domains to your site, you must set up a redirect through your DNS provider. +- The _CNAME_ file must contain the domain name only. For example, `www.example.com`, `blog.example.com`, or `example.com`. +- The domain name must be unique across all {% data variables.product.prodname_pages %} sites. For example, if another repository's _CNAME_ file contains `example.com`, you cannot use `example.com` in the _CNAME_ file for your repository. -## DNS 配置错误 +## DNS misconfiguration -如果将站点的默认域指向自定义域时遇到问题,请联系 DNS 提供商。 +If you have trouble pointing the default domain for your site to your custom domain, contact your DNS provider. -您还可以使用以下方法之一来测试自定义域的 DNS 记录是否正确配置: +You can also use one of the following methods to test whether your custom domain's DNS records are configured correctly: -- CLI 工具,如 `dig`。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site)。 -- 在线 DNS 查找工具。 +- A CLI tool such as `dig`. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)". +- An online DNS lookup tool. -## 自定义域名不受支持 +## Custom domain names that are unsupported -如果您的自定义域不受支持,则可能需要将您的域更改为受支持的域。 也可以联系您的 DNS 提供商,看他们是否提供域名转发服务。 +If your custom domain is unsupported, you may need to change your domain to a supported domain. You can also contact your DNS provider to see if they offer forwarding services for domain names. -确保您的站点没有: -- 使用多个 apex 域。 例如,同时使用 `example.com` 和 `anotherexample.com`。 -- 使用多个 `www` 子域。 例如,同时使用 `www.example.com` 和 `www.anotherexample.com`。 -- 同时使用 apex 域和自定义子域。 例如,同时使用 `example.com` 和 `docs.example.com`。 +Make sure your site does not: +- Use more than one apex domain. For example, both `example.com` and `anotherexample.com`. +- Use more than one `www` subdomain. For example, both `www.example.com` and `www.anotherexample.com`. +- Use both an apex domain and custom subdomain. For example, both `example.com` and `docs.example.com`. - 一个例外是 `www` 子域。 如果配置正确, `www` 子域将自动重定向到 apex 域。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)。 + The one exception is the `www` subdomain. If configured correctly, the `www` subdomain is automatically redirected to the apex domain. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain)." {% data reusables.pages.wildcard-dns-warning %} -有关支持的自定义域列表,请参阅“[关于自定义域和 {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)”。 +For a list of supported custom domains, see "[About custom domains and {% data variables.product.prodname_pages %}](/articles/about-custom-domains-and-github-pages/#supported-custom-domains)." -## HTTPS 错误 +## HTTPS errors -通过 `CNAME`、`ALIAS`、`ANAME` 或 `A` DNS 记录正确配置的使用自定义域的 {% data variables.product.prodname_pages %} 站点可通过 HTTPS 进行访问。 更多信息请参阅“[使用 HTTPS 保护 {% data variables.product.prodname_pages %} 站点](/articles/securing-your-github-pages-site-with-https)”。 +{% data variables.product.prodname_pages %} sites using custom domains that are correctly configured with `CNAME`, `ALIAS`, `ANAME`, or `A` DNS records can be accessed over HTTPS. For more information, see "[Securing your {% data variables.product.prodname_pages %} site with HTTPS](/articles/securing-your-github-pages-site-with-https)." -配置自定义域后,您的站点可能需要最多一个小时才能通过 HTTPS 访问。 更新现有 DNS 设置后,您可能需要删除自定义域并将其重新添加到站点仓库,以触发启用 HTTPS 的进程。 更多信息请参阅“[管理 {% data variables.product.prodname_pages %} 网站的自定义域](/articles/managing-a-custom-domain-for-your-github-pages-site)。 +It can take up to an hour for your site to become available over HTTPS after you configure your custom domain. After you update existing DNS settings, you may need to remove and re-add your custom domain to your site's repository to trigger the process of enabling HTTPS. For more information, see "[Managing a custom domain for your {% data variables.product.prodname_pages %} site](/articles/managing-a-custom-domain-for-your-github-pages-site)." -如果您使用的是证书颁发机构授权 (CAA) 记录,则必须存在至少一个值为 `letsencrypt.org` 的 CAA 记录,才能通过 HTTPS 访问您的站点。 更多信息请参阅 Let's Encrypt 文档中的“[证书颁发机构授权 (CAA)](https://letsencrypt.org/docs/caa/)”。 +If you're using Certification Authority Authorization (CAA) records, at least one CAA record must exist with the value `letsencrypt.org` for your site to be accessible over HTTPS. For more information, see "[Certificate Authority Authorization (CAA)](https://letsencrypt.org/docs/caa/)" in the Let's Encrypt documentation. -## Linux 上的 URL 格式 +## URL formatting on Linux -如果您站点的 URL 包含以破折号开头或结尾的用户名或组织名称,或者包含连续破折号,则使用 Linux 浏览的用户在尝试访问您的站点时会收到服务器错误。 要解决此问题,请更改您的 {% data variables.product.product_name %} 用户名以删除非字母数字字符。 更多信息请参阅“[更改 {% data variables.product.prodname_dotcom %} 用户名](/articles/changing-your-github-username/)”。 +If the URL for your site contains a username or organization name that begins or ends with a dash, or contains consecutive dashes, people browsing with Linux will receive a server error when they attempt to visit your site. To fix this, change your {% data variables.product.product_name %} username to remove non-alphanumeric characters. For more information, see "[Changing your {% data variables.product.prodname_dotcom %} username](/articles/changing-your-github-username/)." -## 浏览器缓存 +## Browser cache -如果您最近更改或删除了自定义域,但无法在浏览器中访问新 URL,则可能需要清除浏览器的缓存才能访问新 URL。 有关清除缓存的更多信息,请参阅浏览器的文档。 +If you've recently changed or removed your custom domain and can't access the new URL in your browser, you may need to clear your browser's cache to reach the new URL. For more information on clearing your cache, see your browser's documentation. diff --git a/translations/zh-CN/content/pages/index.md b/translations/zh-CN/content/pages/index.md index 858d13e7f8..ac99f2500e 100644 --- a/translations/zh-CN/content/pages/index.md +++ b/translations/zh-CN/content/pages/index.md @@ -1,14 +1,13 @@ --- -title: GitHub Pages 文档 +title: GitHub Pages Documentation shortTitle: GitHub Pages -intro: '您可以直接从 {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} 的仓库创建网站。' +intro: 'You can create a website directly from a repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}.' redirect_from: - - /categories/20/articles/ - - /categories/95/articles/ - - /categories/github-pages-features/ - - /pages/ - - /categories/96/articles/ - - /categories/github-pages-troubleshooting/ + - /categories/20/articles + - /categories/95/articles + - /categories/github-pages-features + - /categories/96/articles + - /categories/github-pages-troubleshooting - /categories/working-with-github-pages - /github/working-with-github-pages product: '{% data reusables.gated-features.pages %}' @@ -25,4 +24,3 @@ children: - /setting-up-a-github-pages-site-with-jekyll - /configuring-a-custom-domain-for-your-github-pages-site --- - diff --git a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md index 0a8646cfee..4b37a72160 100644 --- a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/about-jekyll-build-errors-for-github-pages-sites.md @@ -2,8 +2,8 @@ title: About Jekyll build errors for GitHub Pages sites intro: 'If Jekyll encounters an error building your {% data variables.product.prodname_pages %} site locally or on {% data variables.product.product_name %}, you''ll receive an error message with more information.' redirect_from: - - /articles/viewing-jekyll-build-error-messages/ - - /articles/generic-jekyll-build-failures/ + - /articles/viewing-jekyll-build-error-messages + - /articles/generic-jekyll-build-failures - /articles/about-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/about-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' diff --git a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md index 1d92c6b71c..e93f69bfd4 100644 --- a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md +++ b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/adding-a-theme-to-your-github-pages-site-using-jekyll.md @@ -1,9 +1,9 @@ --- -title: 使用 Jekyll 向 GitHub Pages 站点添加主题 -intro: 您可以通过添加和自定义主题来个性化 Jekyll 站点。 +title: Adding a theme to your GitHub Pages site using Jekyll +intro: You can personalize your Jekyll site by adding and customizing a theme. redirect_from: - - /articles/customizing-css-and-html-in-your-jekyll-theme/ - - /articles/adding-a-jekyll-theme-to-your-github-pages-site/ + - /articles/customizing-css-and-html-in-your-jekyll-theme + - /articles/adding-a-jekyll-theme-to-your-github-pages-site - /articles/adding-a-theme-to-your-github-pages-site-using-jekyll - /github/working-with-github-pages/adding-a-theme-to-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' @@ -14,28 +14,30 @@ versions: ghec: '*' topics: - Pages -shortTitle: 将主题添加到 Pages 站点 +shortTitle: Add theme to Pages site --- -拥有仓库写入权限的人员可以使用 Jekyll 将主题添加到 {% data variables.product.prodname_pages %} 网站。 +People with write permissions for a repository can add a theme to a {% data variables.product.prodname_pages %} site using Jekyll. {% data reusables.pages.test-locally %} -## 添加主题 +## Adding a theme {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -2. 导航到 *_config.yml*。 +2. Navigate to *_config.yml*. {% data reusables.repositories.edit-file %} -4. 为主题名称添加新行。 - - 要使用支持的主题,请键入 `theme: THEME-NAME`,将 _THEME-NAME_ 替换为主题仓库的 README 中显示的主题名称。 有关支持的主题列表,请参阅 {% data variables.product.prodname_pages %} 网站上的“[支持的主题](https://pages.github.com/themes/)”。 ![配置文件中支持的主题](/assets/images/help/pages/add-theme-to-config-file.png) - - 要使用托管于 {% data variables.product.prodname_dotcom %} 的任何其他 Jekyll 主题,请键入 `remote_theme: THEME-NAME`,将 THEME-NAME 替换为主题仓库的 README 中显示的主题名称。 ![配置文件中不支持的主题](/assets/images/help/pages/add-remote-theme-to-config-file.png) +4. Add a new line to the file for the theme name. + - To use a supported theme, type `theme: THEME-NAME`, replacing _THEME-NAME_ with the name of the theme as shown in the README of the theme's repository. For a list of supported themes, see "[Supported themes](https://pages.github.com/themes/)" on the {% data variables.product.prodname_pages %} site. + ![Supported theme in config file](/assets/images/help/pages/add-theme-to-config-file.png) + - To use any other Jekyll theme hosted on {% data variables.product.prodname_dotcom %}, type `remote_theme: THEME-NAME`, replacing THEME-NAME with the name of the theme as shown in the README of the theme's repository. + ![Unsupported theme in config file](/assets/images/help/pages/add-remote-theme-to-config-file.png) {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## 自定义主题的 CSS +## Customizing your theme's CSS {% data reusables.pages.best-with-supported-themes %} @@ -43,31 +45,31 @@ shortTitle: 将主题添加到 Pages 站点 {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -1. 创建一个名为 _/assets/css/style.scss_ 的新文件。 -2. 在文件顶部添加以下内容: +1. Create a new file called _/assets/css/style.scss_. +2. Add the following content to the top of the file: ```scss --- --- @import "{{ site.theme }}"; ``` -3. 在 `@import` 行的后面直接添加您喜欢的任何自定义 CSS 或 Sass(包括导入)。 +3. Add any custom CSS or Sass (including imports) you'd like immediately after the `@import` line. -## 自定义主题的 HTML 布局 +## Customizing your theme's HTML layout {% data reusables.pages.best-with-supported-themes %} {% data reusables.pages.theme-customization-help %} -1. 在 {% data variables.product.prodname_dotcom %} 上,导航到主题的源仓库。 例如,Minima 的源仓库为 https://github.com/jekyll/minima。 -2. 在 *_layouts* 文件夹中,导航到主题的 _default.html_ 文件。 -3. 复制文件的内容。 +1. On {% data variables.product.prodname_dotcom %}, navigate to your theme's source repository. For example, the source repository for Minima is https://github.com/jekyll/minima. +2. In the *_layouts* folder, navigate to your theme's _default.html_ file. +3. Copy the contents of the file. {% data reusables.pages.navigate-site-repo %} {% data reusables.pages.navigate-publishing-source %} -6. 创建名为 *_layouts/default.html* 的文件。 -7. 粘贴之前复制的默认布局内容。 -8. 根据需要自定义布局。 +6. Create a file called *_layouts/default.html*. +7. Paste the default layout content you copied earlier. +8. Customize the layout as you'd like. -## 延伸阅读 +## Further reading -- "[创建新文件](/articles/creating-new-files)" +- "[Creating new files](/articles/creating-new-files)" diff --git a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md index dab7078fff..baf0068f4c 100644 --- a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md +++ b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll.md @@ -2,8 +2,8 @@ title: Setting a Markdown processor for your GitHub Pages site using Jekyll intro: 'You can choose a Markdown processor to determine how Markdown is rendered on your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/migrating-your-pages-site-from-maruku/ - - /articles/updating-your-markdown-processor-to-kramdown/ + - /articles/migrating-your-pages-site-from-maruku + - /articles/updating-your-markdown-processor-to-kramdown - /articles/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll - /github/working-with-github-pages/setting-a-markdown-processor-for-your-github-pages-site-using-jekyll product: '{% data reusables.gated-features.pages %}' diff --git a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md index 0224c4f21a..6f54aa966b 100644 --- a/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md +++ b/translations/zh-CN/content/pages/setting-up-a-github-pages-site-with-jekyll/troubleshooting-jekyll-build-errors-for-github-pages-sites.md @@ -2,27 +2,27 @@ title: Troubleshooting Jekyll build errors for GitHub Pages sites intro: 'You can use Jekyll build error messages to troubleshoot problems with your {% data variables.product.prodname_pages %} site.' redirect_from: - - /articles/page-build-failed-missing-docs-folder/ - - /articles/page-build-failed-invalid-submodule/ - - /articles/page-build-failed-missing-submodule/ - - /articles/page-build-failed-markdown-errors/ - - /articles/page-build-failed-config-file-error/ - - /articles/page-build-failed-unknown-tag-error/ - - /articles/page-build-failed-tag-not-properly-terminated/ - - /articles/page-build-failed-tag-not-properly-closed/ - - /articles/page-build-failed-file-does-not-exist-in-includes-directory/ - - /articles/page-build-failed-file-is-a-symlink/ - - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository/ - - /articles/page-build-failed-file-is-not-properly-utf-8-encoded/ - - /articles/page-build-failed-invalid-post-date/ - - /articles/page-build-failed-invalid-sass-or-scss/ - - /articles/page-build-failed-invalid-highlighter-language/ - - /articles/page-build-failed-relative-permalinks-configured/ - - /articles/page-build-failed-syntax-error-in-for-loop/ - - /articles/page-build-failed-invalid-yaml-in-data-file/ - - /articles/page-build-failed-date-is-not-a-valid-datetime/ - - /articles/troubleshooting-github-pages-builds/ - - /articles/troubleshooting-jekyll-builds/ + - /articles/page-build-failed-missing-docs-folder + - /articles/page-build-failed-invalid-submodule + - /articles/page-build-failed-missing-submodule + - /articles/page-build-failed-markdown-errors + - /articles/page-build-failed-config-file-error + - /articles/page-build-failed-unknown-tag-error + - /articles/page-build-failed-tag-not-properly-terminated + - /articles/page-build-failed-tag-not-properly-closed + - /articles/page-build-failed-file-does-not-exist-in-includes-directory + - /articles/page-build-failed-file-is-a-symlink + - /articles/page-build-failed-symlink-does-not-exist-within-your-sites-repository + - /articles/page-build-failed-file-is-not-properly-utf-8-encoded + - /articles/page-build-failed-invalid-post-date + - /articles/page-build-failed-invalid-sass-or-scss + - /articles/page-build-failed-invalid-highlighter-language + - /articles/page-build-failed-relative-permalinks-configured + - /articles/page-build-failed-syntax-error-in-for-loop + - /articles/page-build-failed-invalid-yaml-in-data-file + - /articles/page-build-failed-date-is-not-a-valid-datetime + - /articles/troubleshooting-github-pages-builds + - /articles/troubleshooting-jekyll-builds - /articles/troubleshooting-jekyll-build-errors-for-github-pages-sites - /github/working-with-github-pages/troubleshooting-jekyll-build-errors-for-github-pages-sites product: '{% data reusables.gated-features.pages %}' diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md index 8ac947096a..04a027d1a8 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md @@ -1,9 +1,9 @@ --- -title: 在具有代码质量功能的仓库上进行协作 -intro: '代码质量功能,例如状态、{% ifversion ghes %}预接收挂钩、{% endif %}受保护分支和必需状态检查,可帮助协作者做出符合组织和仓库管理员设置条件的贡献。' +title: Collaborating on repositories with code quality features +intro: 'Workflow quality features like statuses, {% ifversion ghes %}pre-receive hooks, {% endif %}protected branches, and required status checks help collaborators make contributions that meet conditions set by organization and repository administrators.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features/ - - /articles/collaborating-on-repositories-with-code-quality-features-enabled/ + - /github/collaborating-with-issues-and-pull-requests/collaborating-on-repositories-with-code-quality-features + - /articles/collaborating-on-repositories-with-code-quality-features-enabled - /articles/collaborating-on-repositories-with-code-quality-features - /github/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features versions: @@ -16,6 +16,5 @@ topics: children: - /about-status-checks - /working-with-pre-receive-hooks -shortTitle: 代码质量功能 +shortTitle: Code quality features --- - diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md index 151742973c..4edfc60e28 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md @@ -1,9 +1,9 @@ --- -title: 关于协作开发模式 -intro: 使用拉取请求的方式取决于项目中使用的开发模型类型。 您可以使用复刻和拉取模型或共享仓库模型。 +title: About collaborative development models +intro: The way you use pull requests depends on the type of development model you use in your project. You can use the fork and pull model or the shared repository model. redirect_from: - /github/collaborating-with-issues-and-pull-requests/getting-started/about-collaborative-development-models - - /articles/types-of-collaborative-development-models/ + - /articles/types-of-collaborative-development-models - /articles/about-collaborative-development-models - /github/collaborating-with-issues-and-pull-requests/about-collaborative-development-models - /github/collaborating-with-pull-requests/getting-started/about-collaborative-development-models @@ -14,25 +14,24 @@ versions: ghec: '*' topics: - Pull requests -shortTitle: 协作开发 +shortTitle: Collaborative development --- +## Fork and pull model -## 复刻和拉取模型 - -在复刻和拉取模型中,任何人都可以复刻现有仓库并推送对其个人复刻的更改。 不需要对来源仓库的权限即可推送到用户拥有的复刻。 项目维护员可将更改拉入来源仓库。 将提议更改的拉取请求从用户拥有的复刻打开到来源(上游)仓库的分支时,可让对上游仓库具有推送权限的任何人更改您的拉取请求。 此模型常用于开源项目,因为它可减少新贡献者的磨合,让人们独立工作而无需前期协调。 +In the fork and pull model, anyone can fork an existing repository and push changes to their personal fork. You do not need permission to the source repository to push to a user-owned fork. The changes can be pulled into the source repository by the project maintainer. When you open a pull request proposing changes from your user-owned fork to a branch in the source (upstream) repository, you can allow anyone with push access to the upstream repository to make changes to your pull request. This model is popular with open source projects as it reduces the amount of friction for new contributors and allows people to work independently without upfront coordination. {% tip %} -**提示:** {% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} +**Tip:** {% data reusables.open-source.open-source-guide-general %} {% data reusables.open-source.open-source-learning-lab %} {% endtip %} -## 共享仓库模型 +## Shared repository model -在共享仓库模型中,协作者被授予单一共享仓库的推送权限,需要更改时可创建主题分支。 拉取请求适用于此模型,因为在更改合并到主要开发分支之前,它们会发起代码审查和关于更改的一般讨论。 此模型更多用于协作处理私有项目的小型团队和组织。 +In the shared repository model, collaborators are granted push access to a single shared repository and topic branches are created when changes need to be made. Pull requests are useful in this model as they initiate code review and general discussion about a set of changes before the changes are merged into the main development branch. This model is more prevalent with small teams and organizations collaborating on private projects. -## 延伸阅读 +## Further reading -- "[关于拉取请求](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)" -- "[从复刻创建拉取请求](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)" -- "[允许更改创建自复刻的拉取请求分支](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" +- "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)" +- "[Creating a pull request from a fork](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)" +- "[Allowing changes to a pull request branch created from a fork](/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)" diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md index 12cc17fc44..1fef23a997 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md @@ -1,9 +1,9 @@ --- -title: 入门指南 -shortTitle: 入门指南 -intro: '了解 {% data variables.product.prodname_dotcom %} 流程以及协作和讨论项目的不同方式。' +title: Getting started +shortTitle: Getting started +intro: 'Learn about the {% data variables.product.prodname_dotcom %} flow and different ways to collaborate on and discuss your projects.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/getting-started/ + - /github/collaborating-with-issues-and-pull-requests/getting-started - /github/collaborating-with-issues-and-pull-requests/overview - /github/collaborating-with-pull-requests/getting-started versions: @@ -19,4 +19,3 @@ topics: children: - /about-collaborative-development-models --- - diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/index.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/index.md index c7388cd146..0b40a80858 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/index.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/index.md @@ -1,13 +1,13 @@ --- -title: 协作处理拉取请求 -intro: 跟踪和讨论议题更改,然后提出和审查拉取请求中的更改。 +title: Collaborating with pull requests +intro: 'Track and discuss changes in issues, then propose and review changes in pull requests.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/ - - /categories/63/articles/ - - /categories/collaborating/ - - /categories/collaborating-on-projects-using-pull-requests/ - - /categories/collaborating-on-projects-using-issues-and-pull-requests/ - - /categories/collaborating-with-issues-and-pull-requests/ + - /github/collaborating-with-issues-and-pull-requests + - /categories/63/articles + - /categories/collaborating + - /categories/collaborating-on-projects-using-pull-requests + - /categories/collaborating-on-projects-using-issues-and-pull-requests + - /categories/collaborating-with-issues-and-pull-requests - /github/collaborating-with-pull-requests versions: fpt: '*' @@ -26,4 +26,3 @@ children: - /incorporating-changes-from-a-pull-request shortTitle: Collaborate with pull requests --- - diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md index 8babad4362..35a425283f 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md @@ -30,7 +30,7 @@ You can review changes in a pull request one file at a time. While reviewing the {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.choose-pr-review %} {% data reusables.repositories.changed-files %} -{% ifversion fpt or ghec or ghes > 3.2 or ghae %} +{% ifversion fpt or ghec or ghes > 3.3 or ghae %} You can change the format of the diff view in this tab by clicking {% octicon "gear" aria-label="The Settings gear" %} and choosing the unified or split view. The choice you make will apply when you view the diff for other pull requests. diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md index 27f28dfa81..19207dd1b4 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/index.md @@ -1,10 +1,10 @@ --- -title: 使用复刻 -intro: '复刻通常在 {% data variables.product.product_name %} 上的开源开发中使用。' +title: Working with forks +intro: 'Forks are often used in open source development on {% data variables.product.product_name %}.' redirect_from: - - /github/collaborating-with-issues-and-pull-requests/working-with-forks/ + - /github/collaborating-with-issues-and-pull-requests/working-with-forks - /articles/working-with-forks - - /github/collaborating-with-pull-requests/working-with-forks/ + - /github/collaborating-with-pull-requests/working-with-forks versions: fpt: '*' ghes: '*' @@ -20,4 +20,3 @@ children: - /allowing-changes-to-a-pull-request-branch-created-from-a-fork - /what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility --- - diff --git a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md index 9d9b203f5a..2a067051d5 100644 --- a/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md +++ b/translations/zh-CN/content/pull-requests/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility.md @@ -3,7 +3,7 @@ title: What happens to forks when a repository is deleted or changes visibility? intro: Deleting your repository or changing its visibility affects that repository's forks. redirect_from: - /github/collaborating-with-issues-and-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - - /articles/changing-the-visibility-of-a-network/ + - /articles/changing-the-visibility-of-a-network - /articles/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-issues-and-pull-requests/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility - /github/collaborating-with-pull-requests/working-with-forks/what-happens-to-forks-when-a-repository-is-deleted-or-changes-visibility diff --git a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md index 68ff2d03cc..5877608cd0 100644 --- a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md +++ b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message.md @@ -1,74 +1,73 @@ --- -title: 更改提交消息 +title: Changing a commit message redirect_from: - - /articles/can-i-delete-a-commit-message/ + - /articles/can-i-delete-a-commit-message - /articles/changing-a-commit-message - /github/committing-changes-to-your-project/changing-a-commit-message - /github/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message -intro: '如果提交消息中包含不明确、不正确或敏感的信息,您可以在本地修改它,然后将含有新消息的新提交推送到 {% data variables.product.product_name %}。 您还可以更改提交消息以添加遗漏的信息。' +intro: 'If a commit message contains unclear, incorrect, or sensitive information, you can amend it locally and push a new commit with a new message to {% data variables.product.product_name %}. You can also change a commit message to add missing information.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' --- +## Rewriting the most recent commit message -## 重写最近的提交消息 +You can change the most recent commit message using the `git commit --amend` command. -您可以使用 `git commit --amend` 命令更改最近的提交消息。 +In Git, the text of the commit message is part of the commit. Changing the commit message will change the commit ID--i.e., the SHA1 checksum that names the commit. Effectively, you are creating a new commit that replaces the old one. -在 Git 中,提交消息的文本是提交的一部分。 更改提交消息将更改提交 ID - 即用于命名提交的 SHA1 校验和。 实际上,您是创建一个新提交以替换旧提交。 +## Commit has not been pushed online -## 提交尚未推送上线 +If the commit only exists in your local repository and has not been pushed to {% data variables.product.product_location %}, you can amend the commit message with the `git commit --amend` command. -如果提交仅存在于您的本地仓库中,尚未推送到 {% data variables.product.product_location %},您可以使用 `git commit --amend` 命令修改提交消息。 - -1. 在命令行上,导航到包含要修改的提交的仓库。 -2. 键入 `git commit --amend`,然后按 **Enter** 键。 -3. 在文本编辑器中编辑提交消息,然后保存该提交。 - - 通过在提交中添加尾行可添加合作作者。 更多信息请参阅“[创建有多个作者的提交](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)”。 +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Type `git commit --amend` and press **Enter**. +3. In your text editor, edit the commit message, and save the commit. + - You can add a co-author by adding a trailer to the commit. For more information, see "[Creating a commit with multiple authors](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors)." {% ifversion fpt or ghec %} - - 通过在提交中添加尾行可创建代表组织的提交。 更多信息请参阅“[创建代表组织的提交](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)” + - You can create commits on behalf of your organization by adding a trailer to the commit. For more information, see "[Creating a commit on behalf of an organization](/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-on-behalf-of-an-organization)" {% endif %} -在下次推送时,新的提交和消息将显示在 {% data variables.product.product_location %} 上。 +The new commit and message will appear on {% data variables.product.product_location %} the next time you push. {% tip %} -通过更改 `core.editor` 设置可更改 Git 的默认文本编辑器。 更多信息请参阅 Git 手册中的“[基本客户端配置](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)”。 +You can change the default text editor for Git by changing the `core.editor` setting. For more information, see "[Basic Client Configuration](https://git-scm.com/book/en/Customizing-Git-Git-Configuration#_basic_client_configuration)" in the Git manual. {% endtip %} -## 修改旧提交或多个提交的消息 +## Amending older or multiple commit messages -如果您已将提交推送到 {% data variables.product.product_location %},则必须强制推送含有修正消息的提交。 +If you have already pushed the commit to {% data variables.product.product_location %}, you will have to force push a commit with an amended message. {% warning %} -我们很不提倡强制推送,因为这会改变仓库的历史记录。 如果强制推送,已克隆仓库的人员必须手动修复其本地历史记录。 更多信息请参阅 Git 手册中的“[从上游变基恢复](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)”。 +We strongly discourage force pushing, since this changes the history of your repository. If you force push, people who have already cloned your repository will have to manually fix their local history. For more information, see "[Recovering from upstream rebase](https://git-scm.com/docs/git-rebase#_recovering_from_upstream_rebase)" in the Git manual. {% endwarning %} -**修改最近推送提交的消息** +**Changing the message of the most recently pushed commit** -1. 按照[上述步骤](/articles/changing-a-commit-message#commit-has-not-been-pushed-online)修改提交消息。 -2. 使用 `push --force-with-lease` 命令强制推送经修改的旧提交。 +1. Follow the [steps above](/articles/changing-a-commit-message#commit-has-not-been-pushed-online) to amend the commit message. +2. Use the `push --force-with-lease` command to force push over the old commit. ```shell $ git push --force-with-lease <em>example-branch</em> ``` -**修改旧提交或多个提交的消息** +**Changing the message of older or multiple commit messages** -如果需要修改多个提交或旧提交的消息,您可以使用交互式变基,然后强制推送以更改提交历史记录。 +If you need to amend the message for multiple commits or an older commit, you can use interactive rebase, then force push to change the commit history. -1. 在命令行上,导航到包含要修改的提交的仓库。 -2. 使用 `git rebase -i HEAD~n` 命令在默认文本编辑器中显示最近 `n` 个提交的列表。 +1. On the command line, navigate to the repository that contains the commit you want to amend. +2. Use the `git rebase -i HEAD~n` command to display a list of the last `n` commits in your default text editor. ```shell # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 ``` - 此列表将类似于以下内容: + The list will look similar to the following: ```shell pick e499d89 Delete CNAME @@ -93,33 +92,33 @@ versions: # # Note that empty commits are commented out ``` -3. 在要更改的每个提交消息的前面,用 `reword` 替换 `pick`。 +3. Replace `pick` with `reword` before each commit message you want to change. ```shell pick e499d89 Delete CNAME reword 0c39034 Better README reword f7fde4a Change the commit message but push the same commit. ``` -4. 保存并关闭提交列表文件。 -5. 在每个生成的提交文件中,键入新的提交消息,保存文件,然后关闭它。 -6. 准备好将更改推送到 GitHub 时,请使用 push - force 命令强制推送旧提交。 +4. Save and close the commit list file. +5. In each resulting commit file, type the new commit message, save the file, and close it. +6. When you're ready to push your changes to GitHub, use the push --force command to force push over the old commit. ```shell $ git push --force <em>example-branch</em> ``` -有关交互式变基的更多信息,请参阅 Git 手册中的“[交互模式](https://git-scm.com/docs/git-rebase#_interactive_mode)”。 +For more information on interactive rebase, see "[Interactive mode](https://git-scm.com/docs/git-rebase#_interactive_mode)" in the Git manual. {% tip %} -如前文所述,修改提交消息会生成含有新 ID 的新提交。 但是,在这种情况下,该修改提交的每个后续提交也会获得一个新 ID,因为每个提交也包含其父提交的 ID。 +As before, amending the commit message will result in a new commit with a new ID. However, in this case, every commit that follows the amended commit will also get a new ID because each commit also contains the id of its parent. {% endtip %} {% warning %} -如果您的提交消息中包含敏感信息,则强制推送修改后的提交可能不会导致从 {% data variables.product.product_name %} 中删除原提交。 旧提交不会成为后续克隆的一部分;但是,它可能仍然缓存在 {% data variables.product.product_name %} 上,并且可通过提交 ID 访问。 您必须联系 {% data variables.contact.contact_support %} 并提供旧提交 ID,以便从远程仓库中清除它。 +If you have included sensitive information in a commit message, force pushing a commit with an amended commit may not remove the original commit from {% data variables.product.product_name %}. The old commit will not be a part of a subsequent clone; however, it may still be cached on {% data variables.product.product_name %} and accessible via the commit ID. You must contact {% data variables.contact.contact_support %} with the old commit ID to have it purged from the remote repository. {% endwarning %} -## 延伸阅读 +## Further reading -* "[对提交签名](/articles/signing-commits)" +* "[Signing commits](/articles/signing-commits)" diff --git a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/index.md b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/index.md index 255d5bfff0..9206e8d17d 100644 --- a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/index.md +++ b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/index.md @@ -1,9 +1,9 @@ --- -title: 提交对项目的更改 -intro: 您可以通过将工作分组为提交来管理仓库中的代码更改。 +title: Committing changes to your project +intro: You can manage code changes in a repository by grouping work into commits. redirect_from: - - /categories/21/articles/ - - /categories/commits/ + - /categories/21/articles + - /categories/commits - /categories/committing-changes-to-your-project - /github/committing-changes-to-your-project versions: @@ -15,6 +15,5 @@ children: - /creating-and-editing-commits - /viewing-and-comparing-commits - /troubleshooting-commits -shortTitle: 提交对项目的更改 +shortTitle: Commit changes to your project --- - diff --git a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md index 155b7239d4..e63f9863ff 100644 --- a/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md +++ b/translations/zh-CN/content/pull-requests/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user.md @@ -1,57 +1,58 @@ --- -title: 我的提交为什么链接到错误的用户? +title: Why are my commits linked to the wrong user? redirect_from: - - /articles/how-do-i-get-my-commits-to-link-to-my-github-account/ + - /articles/how-do-i-get-my-commits-to-link-to-my-github-account - /articles/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/why-are-my-commits-linked-to-the-wrong-user - /github/committing-changes-to-your-project/troubleshooting-commits/why-are-my-commits-linked-to-the-wrong-user -intro: '{% data variables.product.product_name %} 使用提交标题中的电子邮件地址将提交链接到 GitHub 用户。 如果将您的提交链接到其他用户,或者根本没有链接到任何用户,您可能需要更改本地 Git 配置设置{% ifversion not ghae %},将电子邮件地址添加到您的帐户电子邮件设置,或同时执行这两项操作{% endif %}。' +intro: '{% data variables.product.product_name %} uses the email address in the commit header to link the commit to a GitHub user. If your commits are being linked to another user, or not linked to a user at all, you may need to change your local Git configuration settings{% ifversion not ghae %}, add an email address to your account email settings, or do both{% endif %}.' versions: fpt: '*' ghes: '*' ghae: '*' ghec: '*' -shortTitle: 链接到错误的用户 +shortTitle: Linked to wrong user --- - {% tip %} -**注**:如果您的提交链接到其他用户,这并不意味着该用户能够访问您的仓库。 只有您将用户作为协作者添加或将其添加到具有仓库访问权限的团队时,用户才能访问您拥有的仓库。 +**Note**: If your commits are linked to another user, that does not mean the user can access your repository. A user can only access a repository you own if you add them as a collaborator or add them to a team that has access to the repository. {% endtip %} -## 提交链接到其他用户 +## Commits are linked to another user -如果您的提交链接到其他用户,则意味着本地 Git 配置设置中的电子邮件地址已连接到该用户在 {% data variables.product.product_name %}上的帐户。 在这种情况下,您可以将本地 Git 配置设置中的电子邮件{% ifversion ghae %} 更改为 {% data variables.product.product_name %} 上与您的帐户关联的地址,以链接您未来的提交。 原来的提交不会进行链接。 更多信息请参阅“[设置提交电子邮件地址](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)”。{% else %}并且将新的电子邮件地址添加到您在 {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} 上的帐户以将未来的提交链接到您的帐户。 +If your commits are linked to another user, that means the email address in your local Git configuration settings is connected to that user's account on {% data variables.product.product_name %}. In this case, you can change the email in your local Git configuration settings{% ifversion ghae %} to the address associated with your account on {% data variables.product.product_name %} to link your future commits. Old commits will not be linked. For more information, see "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)."{% else %} and add the new email address to your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %} account to link future commits to your account. -1. 要更改本地 Git 配置中的电子邮件地址,请按照“[设置提交电子邮件地址](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)”中的步骤操作。 如果您在多台计算机上工作,则需要在每台计算机上更改此设置。 -2. 按照“[添加电子邮件地址到 GitHub 帐户](/articles/adding-an-email-address-to-your-github-account)”中的步骤操作,将步骤 2 中的电子邮件地址添加到您的帐户设置。{% endif %} +1. To change the email address in your local Git configuration, follow the steps in "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)". If you work on multiple machines, you will need to change this setting on each one. +2. Add the email address from step 2 to your account settings by following the steps in "[Adding an email address to your GitHub account](/articles/adding-an-email-address-to-your-github-account)".{% endif %} -从这时开始,您提交的内容将链接到您的帐户。 +Commits you make from this point forward will be linked to your account. -## 提交没有链接到任何用户 +## Commits are not linked to any user -如果您的提交没有链接到任何用户,则提交作者的名称不会显示为到用户配置文件的链接。 +If your commits are not linked to any user, the commit author's name will not be rendered as a link to a user profile. -要检查用于这些提交的电子邮件地址并将提交连接到您的帐户,请执行以下步骤: +To check the email address used for those commits and connect commits to your account, take the following steps: -1. 通过单击提交消息链接导航到提交。 ![提交消息链接](/assets/images/help/commits/commit-msg-link.png) -2. 要阅读有关提交未链接原因的消息,请将鼠标悬停在用户名右侧的蓝色 {% octicon "question" aria-label="Question mark" %} 上。 ![提交悬停消息](/assets/images/help/commits/commit-hover-msg.png) +1. Navigate to the commit by clicking the commit message link. +![Commit message link](/assets/images/help/commits/commit-msg-link.png) +2. To read a message about why the commit is not linked, hover over the blue {% octicon "question" aria-label="Question mark" %} to the right of the username. +![Commit hover message](/assets/images/help/commits/commit-hover-msg.png) - - **无法识别的作者(含电子邮件地址)**如果您看到此消息包含电子邮件地址,则表示用于创作提交的地址未连接到您在 {% data variables.product.product_name %} 上的帐户。 {% ifversion not ghae %}要链接提交,请[将电子邮件地址添加到 GitHub 电子邮件设置](/articles/adding-an-email-address-to-your-github-account)。{% endif %}如果电子邮件地址关联了 Gravatar,提交旁边将显示该 Gravatar,而不是默认的灰色 Octocat。 - - **无法识别的作者(无电子邮件地址)**如果您看到此消息没有电子邮件地址,则表示您使用了无法连接到您在 {% data variables.product.product_name %} 上的帐户的通用电子邮件地址。{% ifversion not ghae %} 您需要[在 Git 中设置提交电子邮件地址](/articles/setting-your-commit-email-address),然后[将新地址添加到 GitHub 电子邮件设置](/articles/adding-an-email-address-to-your-github-account)以链接您未来的提交。 旧提交不会链接。{% endif %} - - **无效的电子邮件地址**本地 Git 配置设置中的电子邮件地址为空白或未格式化为电子邮件地址。{% ifversion not ghae %} 您需要[在 Git 中设置提交电子邮件地址](/articles/setting-your-commit-email-address),然后[将新地址添加到 GitHub 电子邮件设置](/articles/adding-an-email-address-to-your-github-account)以链接您未来的提交。 旧提交不会链接。{% endif %} + - **Unrecognized author (with email address)** If you see this message with an email address, the address you used to author the commit is not connected to your account on {% data variables.product.product_name %}. {% ifversion not ghae %}To link your commits, [add the email address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account).{% endif %} If the email address has a Gravatar associated with it, the Gravatar will be displayed next to the commit, rather than the default gray Octocat. + - **Unrecognized author (no email address)** If you see this message without an email address, you used a generic email address that can't be connected to your account on {% data variables.product.product_name %}.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. Old commits will not be linked.{% endif %} + - **Invalid email** The email address in your local Git configuration settings is either blank or not formatted as an email address.{% ifversion not ghae %} You will need to [set your commit email address in Git](/articles/setting-your-commit-email-address), then [add the new address to your GitHub email settings](/articles/adding-an-email-address-to-your-github-account) to link your future commits. Old commits will not be linked.{% endif %} {% ifversion ghae %} -您可以将本地 Git 配置设置中的电子邮件地址更改为与您的帐户关联的地址,以链接您未来的提交。 原来的提交不会进行链接。 更多信息请参阅“[设置提交电子邮件地址](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)”。 +You can change the email in your local Git configuration settings to the address associated with your account to link your future commits. Old commits will not be linked. For more information, see "[Setting your commit email address](/github/setting-up-and-managing-your-github-user-account/setting-your-commit-email-address#setting-your-commit-email-address-in-git)." {% endif %} {% warning %} -如果您的本地 Git 配置包含通用电子邮件地址或已附加到其他用户帐户的电子邮件地址,则您之前的提交将不会链接到您的帐户。 虽然 Git 允许您更改用于以前提交的电子邮件地址,但我们强烈反对这样做,尤其是在共享仓库中。 +If your local Git configuration contained a generic email address, or an email address that was already attached to another user's account, then your previous commits will not be linked to your account. While Git does allow you to change the email address used for previous commits, we strongly discourage this, especially in a shared repository. {% endwarning %} -## 延伸阅读 +## Further reading -* "[搜索提交](/search-github/searching-on-github/searching-commits)" +* "[Searching commits](/search-github/searching-on-github/searching-commits)" diff --git a/translations/zh-CN/content/repositories/archiving-a-github-repository/index.md b/translations/zh-CN/content/repositories/archiving-a-github-repository/index.md index beeb382a0e..753b40a4bf 100644 --- a/translations/zh-CN/content/repositories/archiving-a-github-repository/index.md +++ b/translations/zh-CN/content/repositories/archiving-a-github-repository/index.md @@ -1,8 +1,8 @@ --- -title: 存档 GitHub 仓库 -intro: '您可以使用 {% data variables.product.product_name %}、API 或第三方工具和服务存档、备份和引用您的工作。' +title: Archiving a GitHub repository +intro: 'You can archive, back up, and cite your work using {% data variables.product.product_name %}, the API, or third-party tools and services.' redirect_from: - - /articles/can-i-archive-a-repository/ + - /articles/can-i-archive-a-repository - /articles/archiving-a-github-repository - /enterprise/admin/user-management/archiving-and-unarchiving-repositories - /github/creating-cloning-and-archiving-repositories/archiving-a-github-repository @@ -18,6 +18,6 @@ children: - /about-archiving-content-and-data-on-github - /referencing-and-citing-content - /backing-up-a-repository -shortTitle: 存档仓库 +shortTitle: Archive a repository --- diff --git a/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md b/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md index 0b586ef51a..fbef6893f4 100644 --- a/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md +++ b/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/index.md @@ -1,8 +1,8 @@ --- -title: 定义拉取请求的可合并性 -intro: 您可以要求拉取请求在可以合并之前先通过一组检查。 例如,您可以阻止未通过状态检查的拉取请求,或要求拉取请求在获得特定数量的批准审查之后才可合并。 +title: Defining the mergeability of pull requests +intro: 'You can require pull requests to pass a set of checks before they can be merged. For example, you can block pull requests that don''t pass status checks or require that pull requests have a specific number of approving reviews before they can be merged.' redirect_from: - - /articles/defining-the-mergeability-of-a-pull-request/ + - /articles/defining-the-mergeability-of-a-pull-request - /articles/defining-the-mergeability-of-pull-requests - /enterprise/admin/developer-workflow/establishing-pull-request-merge-conditions - /github/administering-a-repository/defining-the-mergeability-of-pull-requests @@ -18,6 +18,6 @@ children: - /about-protected-branches - /managing-a-branch-protection-rule - /troubleshooting-required-status-checks -shortTitle: PRs 的合并性 +shortTitle: Mergeability of PRs --- diff --git a/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md b/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md index 8bd4b1b579..807c0c5aa5 100644 --- a/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md +++ b/translations/zh-CN/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md @@ -1,10 +1,10 @@ --- -title: 删除和恢复拉取请求中的分支 -intro: 如果拥有仓库的写入权限,可删除与已关闭或已合并拉取请求关联的分支。 无法删除与已打开拉取请求关联的分支。 +title: Deleting and restoring branches in a pull request +intro: 'If you have write access in a repository, you can delete branches that are associated with closed or merged pull requests. You cannot delete branches that are associated with open pull requests.' redirect_from: - - /articles/tidying-up-pull-requests/ - - /articles/restoring-branches-in-a-pull-request/ - - /articles/deleting-unused-branches/ + - /articles/tidying-up-pull-requests + - /articles/restoring-branches-in-a-pull-request + - /articles/deleting-unused-branches - /articles/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/deleting-and-restoring-branches-in-a-pull-request - /github/administering-a-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request @@ -17,30 +17,31 @@ topics: - Repositories shortTitle: Delete & restore branches --- +## Deleting a branch used for a pull request -## 删除用于拉取请求的分支 - -如果拉取请求已合并或关闭,并且没有打开的其他拉取请求在引用分支,则可以删除与该拉取请求关联的分支。 有关关闭未与拉取请求关联的分支的信息,请参阅“[在存储库中创建和删除分支](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)”。 +You can delete a branch that is associated with a pull request if the pull request has been merged or closed and there are no other open pull requests referencing the branch. For information on closing branches that are not associated with pull requests, see "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository#deleting-a-branch)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. 在拉取请求列表中,单击与要删除分支关联的拉取请求。 -5. 在拉取请求底部附近,单击 **Delete branch(删除分支)**。 ![删除分支按钮](/assets/images/help/pull_requests/delete_branch_button.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to delete. +5. Near the bottom of the pull request, click **Delete branch**. + ![Delete branch button](/assets/images/help/pull_requests/delete_branch_button.png) - 如果此分支当前有打开的拉取请求,则不显示此按钮。 + This button isn't displayed if there's currently an open pull request for this branch. -## 恢复已删除分支 +## Restoring a deleted branch -可恢复已关闭拉取请求的头部分支。 +You can restore the head branch of a closed pull request. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-pr %} {% data reusables.repositories.list-closed-pull-requests %} -4. 在拉取请求列表中,单击与要回复分支关联的拉取请求。 -5. 在拉取请求底部附近,单击 **恢复分支**。 ![恢复已删除分支按钮](/assets/images/help/branches/branches-restore-deleted.png) +4. In the list of pull requests, click the pull request that's associated with the branch that you want to restore. +5. Near the bottom of the pull request, click **Restore branch**. + ![Restore deleted branch button](/assets/images/help/branches/branches-restore-deleted.png) -## 延伸阅读 +## Further reading -- “[在仓库内创建和删除分支](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)” -- "[管理分支的自动删除](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)."。 +- "[Creating and deleting branches within your repository](/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)" +- "[Managing the automatic deletion of branches](/github/administering-a-repository/managing-the-automatic-deletion-of-branches)" diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/about-repositories.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/about-repositories.md index 6a27e9ea41..57a56440e4 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -48,7 +48,7 @@ You can restrict who has access to a repository by choosing a repository's visib {% ifversion fpt or ghec or ghes %} -When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} can also be created with internal visibility. For more information, see "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. +When you create a repository, you can choose to make the repository public or private.{% ifversion ghec or ghes %} If you're creating the repository in an organization{% ifversion ghec %} that is owned by an enterprise account{% endif %}, you can also choose to make the repository internal.{% endif %}{% endif %}{% ifversion fpt %} Repositories in organizations that use {% data variables.product.prodname_ghe_cloud %} and are owned by an enterprise account can also be created with internal visibility. For more information, see [the {% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/repositories/creating-and-managing-repositories/about-repositories). {% elsif ghae %} @@ -61,7 +61,7 @@ When you create a repository owned by your user account, the repository is alway - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghes %} - If {% data variables.product.product_location %} is not in private mode or behind a firewall, public repositories are accessible to everyone on the internet. Otherwise, public repositories are available to everyone using {% data variables.product.product_location %}, including outside collaborators. -- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. Internal repositories are accessible to all enterprise members. +- Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- elsif ghae %} - Private repositories are only accessible to you, people you explicitly share access with, and, for organization repositories, certain organization members. {%- endif %} diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md index 1d7c89c5eb..a8a463dce3 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md @@ -1,10 +1,10 @@ --- -title: 创建新仓库 -intro: 您可以在个人帐户或者您有足够权限的任何组织中创建新仓库。 +title: Creating a new repository +intro: You can create a new repository on your personal account or any organization where you have sufficient permissions. redirect_from: - - /creating-a-repo/ - - /articles/creating-a-repository-in-an-organization/ - - /articles/creating-a-new-organization-repository/ + - /creating-a-repo + - /articles/creating-a-repository-in-an-organization + - /articles/creating-a-new-organization-repository - /articles/creating-a-new-repository - /articles/creating-an-internal-repository - /github/setting-up-and-managing-your-enterprise-account/creating-an-internal-repository @@ -19,39 +19,41 @@ versions: topics: - Repositories --- - {% tip %} -**提示:**所有者可限制组织中的仓库创建权限。 更多信息请参阅“[限制在组织中创建仓库](/articles/restricting-repository-creation-in-your-organization)”。 +**Tip:** Owners can restrict repository creation permissions in an organization. For more information, see "[Restricting repository creation in your organization](/articles/restricting-repository-creation-in-your-organization)." {% endtip %} {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**提示**:您也可以使用 {% data variables.product.prodname_cli %} 创建仓库。 更多信息请参阅 {% data variables.product.prodname_cli %} 文档中的“[`gh 仓库创建`](https://cli.github.com/manual/gh_repo_create)”。 +**Tip**: You can also create a repository using the {% data variables.product.prodname_cli %}. For more information, see "[`gh repo create`](https://cli.github.com/manual/gh_repo_create)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} {% data reusables.repositories.create_new %} -2. (可选)要创建具有现有仓库的目录结构和文件的仓库,请使用 **Choose a template(选择模板)**下拉菜单并选择一个模板仓库。 您将看到由您和您所属组织拥有的模板仓库,或者您以前使用过的模板仓库。 更多信息请参阅“[从模板创建仓库](/articles/creating-a-repository-from-a-template)”。 ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} -3. (可选)如果您选择使用模板,要包括模板中所有分支的目录结构和文件,而不仅仅是默认分支,请选择 **Include all branches(包括所有分支)**。 ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} -3. 在“Owner(所有者)”下拉菜单中,选择要在其上创建仓库的帐户。 ![所有者下拉菜单](/assets/images/help/repository/create-repository-owner.png) +2. Optionally, to create a repository with the directory structure and files of an existing repository, use the **Choose a template** drop-down and select a template repository. You'll see template repositories that are owned by you and organizations you're a member of or that you've used before. For more information, see "[Creating a repository from a template](/articles/creating-a-repository-from-a-template)." + ![Template drop-down menu](/assets/images/help/repository/template-drop-down.png){% ifversion fpt or ghae or ghes or ghec %} +3. Optionally, if you chose to use a template, to include the directory structure and files from all branches in the template, and not just the default branch, select **Include all branches**. + ![Include all branches checkbox](/assets/images/help/repository/include-all-branches.png){% endif %} +3. In the Owner drop-down, select the account you wish to create the repository on. + ![Owner drop-down menu](/assets/images/help/repository/create-repository-owner.png) {% data reusables.repositories.repo-name %} {% data reusables.repositories.choose-repo-visibility %} -6. 如果您不使用模板,可以使用许多可选项预填充仓库。 如果要将现有仓库导入 {% data variables.product.product_name %},请不要选择上述任何选项,否则可能会导致合并冲突。 您可以通过用户界面添加或创建新文件,或者选择稍后使用命令行添加新文件。 For more information, see "[Importing a Git repository using the command line](/articles/importing-a-git-repository-using-the-command-line/)," "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)," and "[Addressing merge conflicts](/articles/addressing-merge-conflicts/)." - - 您可以创建自述文件以介绍您的项目。 更多信息请参阅“[关于自述文件](/articles/about-readmes/)”。 - - 您可以创建 *.gitignore* 文件以设置忽略规则。 更多信息请参阅“[忽略文件](/github/getting-started-with-github/ignoring-files)”。{% ifversion fpt or ghec %} - - 您可以选择为项目添加软件许可。 更多信息请参阅“[许可仓库](/articles/licensing-a-repository)”。{% endif %} +6. If you're not using a template, there are a number of optional items you can pre-populate your repository with. If you're importing an existing repository to {% data variables.product.product_name %}, don't choose any of these options, as you may introduce a merge conflict. You can add or create new files using the user interface or choose to add new files using the command line later. For more information, see "[Importing a Git repository using the command line](/articles/importing-a-git-repository-using-the-command-line/)," "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository#adding-a-file-to-a-repository-using-the-command-line)," and "[Addressing merge conflicts](/articles/addressing-merge-conflicts/)." + - You can create a README, which is a document describing your project. For more information, see "[About READMEs](/articles/about-readmes/)." + - You can create a *.gitignore* file, which is a set of ignore rules. For more information, see "[Ignoring files](/github/getting-started-with-github/ignoring-files)."{% ifversion fpt or ghec %} + - You can choose to add a software license for your project. For more information, see "[Licensing a repository](/articles/licensing-a-repository)."{% endif %} {% data reusables.repositories.select-marketplace-apps %} {% data reusables.repositories.create-repo %} {% ifversion fpt or ghec %} -9. 在生成的 Quick Setup(快速设置)页面底部的“Import code from an old repository(从旧仓库导入代码)”下,您可以选择将项目导入新仓库。 为此,请单击 **Import code(导入代码)**。 +9. At the bottom of the resulting Quick Setup page, under "Import code from an old repository", you can choose to import a project to your new repository. To do so, click **Import code**. {% endif %} -## 延伸阅读 +## Further reading -- “[管理对组织仓库的访问](/articles/managing-access-to-your-organization-s-repositories)” -- [开源指南](https://opensource.guide/){% ifversion fpt or ghec %} +- "[Managing access to your organization's repositories](/articles/managing-access-to-your-organization-s-repositories)" +- [Open Source Guides](https://opensource.guide/){% ifversion fpt or ghec %} - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}){% endif %} diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md index 2fb55c082a..e5428dc4c8 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md @@ -1,9 +1,9 @@ --- -title: 创建仅含议题的仓库 -intro: '{% data variables.product.product_name %} 不提供仅限议题的访问权限,但您可以通过仅含议题的第二仓库来实现此目的。' +title: Creating an issues-only repository +intro: '{% data variables.product.product_name %} does not provide issues-only access permissions, but you can accomplish this using a second repository which contains only the issues.' redirect_from: - - /articles/issues-only-access-permissions/ - - /articles/is-there-issues-only-access-to-organization-repositories/ + - /articles/issues-only-access-permissions + - /articles/is-there-issues-only-access-to-organization-repositories - /articles/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-an-issues-only-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/creating-an-issues-only-repository @@ -14,14 +14,13 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 仅议题仓库 +shortTitle: Issues-only repository --- +1. Create a **private** repository to host the source code from your project. +2. Create a second repository with the permissions you desire to host the issue tracker. +3. Add a README file to the issues repository explaining the purpose of this repository and linking to the issues section. +4. Set your collaborators or teams to give access to the repositories as you desire. -1. 创建一个**私有**仓库来托管项目的源代码。 -2. 使用所需权限创建第二仓库来托管议题跟踪器。 -3. 向议题仓库添加自述文件以解释此仓库的用途并链接到议题部分。 -4. 设置协作者或团队,根据需要授予适当的仓库权限。 +Users with write access to both can reference and close issues back and forth across the repositories, but those without the required permissions will see references that contain a minimum of information. -对这两个仓库都有写入权限的用户可跨仓库来回引用和关闭议题,但没有所需权限的用户将会看到包含极少信息的引用。 - -例如,如果您通过读取 `Fixes organization/public-repo#12` 的消息将提交推送到私有仓库的默认分支,则该议题将被关闭,但只有具有适当权限的用户才会看到指示该提交关闭议题的跨仓库引用。 没有权限的用户也会看到引用,但看不到详细信息。 +For example, if you pushed a commit to the private repository's default branch with a message that read `Fixes organization/public-repo#12`, the issue would be closed, but only users with the proper permissions would see the cross-repository reference indicating the commit that closed the issue. Without the permissions, a reference still appears, but the details are omitted. diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/deleting-a-repository.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/deleting-a-repository.md index 5fb2fd7aea..f9f2013c0c 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/deleting-a-repository.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/deleting-a-repository.md @@ -2,8 +2,8 @@ title: Deleting a repository intro: You can delete any repository or fork if you're either an organization owner or have admin permissions for the repository or fork. Deleting a forked repository does not delete the upstream repository. redirect_from: - - /delete-a-repo/ - - /deleting-a-repo/ + - /delete-a-repo + - /deleting-a-repo - /articles/deleting-a-repository - /github/administering-a-repository/deleting-a-repository - /github/administering-a-repository/managing-repository-settings/deleting-a-repository diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md index 68417e59de..0cbb49c85b 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md @@ -1,8 +1,8 @@ --- -title: 镜像仓库 +title: Duplicating a repository intro: 'To maintain a mirror of a repository without forking it, you can run a special clone command, then mirror-push to the new repository.' redirect_from: - - /articles/duplicating-a-repo/ + - /articles/duplicating-a-repo - /articles/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/duplicating-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/duplicating-a-repository @@ -14,8 +14,7 @@ versions: topics: - Repositories --- - -{% ifversion fpt or ghec %} +{% ifversion fpt or ghec %} {% note %} @@ -25,81 +24,81 @@ topics: {% endif %} -Before you can push the original repository to your new copy, or _mirror_, of the repository, you must [create the new repository](/articles/creating-a-new-repository) on {% data variables.product.product_location %}. 在以下示例中,`exampleuser/new-repository` 或 `exampleuser/mirrored` 是镜像。 +Before you can push the original repository to your new copy, or _mirror_, of the repository, you must [create the new repository](/articles/creating-a-new-repository) on {% data variables.product.product_location %}. In these examples, `exampleuser/new-repository` or `exampleuser/mirrored` are the mirrors. -## 镜像仓库 +## Mirroring a repository {% data reusables.command_line.open_the_multi_os_terminal %} -2. 创建仓库的裸克隆。 +2. Create a bare clone of the repository. ```shell $ git clone --bare https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>old-repository</em>.git ``` -3. 镜像推送至新仓库。 +3. Mirror-push to the new repository. ```shell $ cd <em>old-repository</em> $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>new-repository</em>.git ``` -4. 删除您之前创建的临时本地仓库。 +4. Remove the temporary local repository you created earlier. ```shell $ cd .. $ rm -rf <em>old-repository</em> ``` -## 镜像包含 {% data variables.large_files.product_name_long %} 对象的仓库。 +## Mirroring a repository that contains {% data variables.large_files.product_name_long %} objects {% data reusables.command_line.open_the_multi_os_terminal %} -2. 创建仓库的裸克隆。 将示例用户名替换为拥有仓库的个人或组织的名称,并将示例仓库名称替换为要复制的仓库的名称。 +2. Create a bare clone of the repository. Replace the example username with the name of the person or organization who owns the repository, and replace the example repository name with the name of the repository you'd like to duplicate. ```shell $ git clone --bare https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>old-repository</em>.git ``` -3. 导航到刚克隆的仓库。 +3. Navigate to the repository you just cloned. ```shell $ cd <em>old-repository</em> ``` -4. 拉取仓库的 {% data variables.large_files.product_name_long %} 对象。 +4. Pull in the repository's {% data variables.large_files.product_name_long %} objects. ```shell $ git lfs fetch --all ``` -5. 镜像推送至新仓库。 +5. Mirror-push to the new repository. ```shell $ git push --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>new-repository</em>.git ``` -6. 将仓库的 {% data variables.large_files.product_name_long %} 对象推送至镜像。 +6. Push the repository's {% data variables.large_files.product_name_long %} objects to your mirror. ```shell $ git lfs push --all https://github.com/<em>exampleuser/new-repository.git</em> ``` -7. 删除您之前创建的临时本地仓库。 +7. Remove the temporary local repository you created earlier. ```shell $ cd .. $ rm -rf <em>old-repository</em> ``` -## 镜像其他位置的仓库 +## Mirroring a repository in another location -如果要镜像其他位置的仓库,包括从原始位置获取更新,可以克隆镜像并定期推送更改。 +If you want to mirror a repository in another location, including getting updates from the original, you can clone a mirror and periodically push the changes. {% data reusables.command_line.open_the_multi_os_terminal %} -2. 创建仓库的裸镜像克隆。 +2. Create a bare mirrored clone of the repository. ```shell $ git clone --mirror https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>repository-to-mirror</em>.git ``` -3. 设置到镜像的推送位置。 +3. Set the push location to your mirror. ```shell $ cd <em>repository-to-mirror</em> $ git remote set-url --push origin https://{% data variables.command_line.codeblock %}/<em>exampleuser</em>/<em>mirrored</em> ``` -与裸克隆一样,镜像的克隆包括所有远程分支和标记,但每次获取时都会覆盖所有本地引用,因此它始终与原始仓库相同。 设置推送 URL 可简化至镜像的推送。 +As with a bare clone, a mirrored clone includes all remote branches and tags, but all local references will be overwritten each time you fetch, so it will always be the same as the original repository. Setting the URL for pushes simplifies pushing to your mirror. -4. 如需更新镜像,请获取更新和推送。 +4. To update your mirror, fetch updates and push. ```shell $ git fetch -p origin $ git push --mirror ``` -{% ifversion fpt or ghec %} -## 延伸阅读 +{% ifversion fpt or ghec %} +## Further reading * "[Pushing changes to GitHub](/desktop/contributing-and-collaborating-using-github-desktop/making-changes-in-a-branch/pushing-changes-to-github#pushing-changes-to-github)" * "[About Git Large File Storage and GitHub Desktop](/desktop/getting-started-with-github-desktop/about-git-large-file-storage-and-github-desktop)" -* “[关于 GitHub 导入工具](/github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer)” +* "[About GitHub Importer](/github/importing-your-projects-to-github/importing-source-code-to-github/about-github-importer)" {% endif %} diff --git a/translations/zh-CN/content/repositories/creating-and-managing-repositories/transferring-a-repository.md b/translations/zh-CN/content/repositories/creating-and-managing-repositories/transferring-a-repository.md index 651ec1b4dd..82edf7150d 100644 --- a/translations/zh-CN/content/repositories/creating-and-managing-repositories/transferring-a-repository.md +++ b/translations/zh-CN/content/repositories/creating-and-managing-repositories/transferring-a-repository.md @@ -2,15 +2,15 @@ title: Transferring a repository intro: You can transfer repositories to other users or organization accounts. redirect_from: - - /articles/about-repository-transfers/ - - /move-a-repo/ - - /moving-a-repo/ - - /articles/what-is-transferred-with-a-repository/ - - /articles/what-is-transferred-with-a-repo/ - - /articles/how-to-transfer-a-repo/ - - /articles/how-to-transfer-a-repository/ - - /articles/transferring-a-repository-owned-by-your-personal-account/ - - /articles/transferring-a-repository-owned-by-your-organization/ + - /articles/about-repository-transfers + - /move-a-repo + - /moving-a-repo + - /articles/what-is-transferred-with-a-repository + - /articles/what-is-transferred-with-a-repo + - /articles/how-to-transfer-a-repo + - /articles/how-to-transfer-a-repository + - /articles/transferring-a-repository-owned-by-your-personal-account + - /articles/transferring-a-repository-owned-by-your-organization - /articles/transferring-a-repository - /github/administering-a-repository/transferring-a-repository - /github/administering-a-repository/managing-repository-settings/transferring-a-repository diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md index 0371d81e62..d5d45325ef 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md @@ -2,7 +2,7 @@ title: About code owners intro: You can use a CODEOWNERS file to define individuals or teams that are responsible for code in a repository. redirect_from: - - /articles/about-codeowners/ + - /articles/about-codeowners - /articles/about-code-owners - /github/creating-cloning-and-archiving-repositories/about-code-owners - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md index a6ad2effcd..bd1c73488f 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md @@ -2,8 +2,8 @@ title: About READMEs intro: 'You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.' redirect_from: - - /articles/section-links-on-readmes-and-blob-pages/ - - /articles/relative-links-in-readmes/ + - /articles/section-links-on-readmes-and-blob-pages + - /articles/relative-links-in-readmes - /articles/about-readmes - /github/creating-cloning-and-archiving-repositories/about-readmes - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-readmes diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md index 8ddcf28d0e..be5c459c90 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md @@ -1,12 +1,12 @@ --- -title: 关于仓库语言 -intro: 仓库中的文件和目录确定构成仓库的语言。 您可以查看仓库的语言以快速获取仓库的概述。 +title: About repository languages +intro: The files and directories within a repository determine the languages that make up the repository. You can view a repository's languages to get a quick overview of the repository. redirect_from: - - /articles/my-repository-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-my-favorite-language-recognized/ - - /articles/my-repo-is-marked-as-the-wrong-language/ - - /articles/why-isn-t-sql-recognized-as-a-language/ - - /articles/why-isn-t-my-favorite-language-recognized-by-github/ + - /articles/my-repository-is-marked-as-the-wrong-language + - /articles/why-isn-t-my-favorite-language-recognized + - /articles/my-repo-is-marked-as-the-wrong-language + - /articles/why-isn-t-sql-recognized-as-a-language + - /articles/why-isn-t-my-favorite-language-recognized-by-github - /articles/about-repository-languages - /github/creating-cloning-and-archiving-repositories/about-repository-languages - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-repository-languages @@ -17,14 +17,13 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 仓库语言 +shortTitle: Repository languages --- +{% data variables.product.product_name %} uses the open source [Linguist library](https://github.com/github/linguist) to +determine file languages for syntax highlighting and repository statistics. Language statistics will update after you push changes to your default branch. -{% data variables.product.product_name %} 使用开源 [Linguist 库](https://github.com/github/linguist)来 -确定用于语法突出显示和仓库统计信息的文件语言。 语言统计数据在您推送更改到默认分支后将会更新。 +Some files are hard to identify, and sometimes projects contain more library and vendor files than their primary code. If you're receiving incorrect results, please consult the Linguist [troubleshooting guide](https://github.com/github/linguist/blob/master/docs/troubleshooting.md) for help. -有些文件难以识别,有时项目包含的库和供应商文件多于其主要代码。 如果您收到错误结果,请查阅 Linguist [故障排除指南](https://github.com/github/linguist/blob/master/docs/troubleshooting.md)寻求帮助。 +## Markup languages -## 标记语言 - -标记语言渲染到 HTML,并使用开源[标记库](https://github.com/github/markup)内联显示。 目前,我们不接受在 {% data variables.product.product_name %} 中显示新的标记语言。 但我们会主动维护目前的标记语言。 如果您发现问题,[请创建议题](https://github.com/github/markup/issues/new)。 +Markup languages are rendered to HTML and displayed inline using our open-source [Markup library](https://github.com/github/markup). At this time, we are not accepting new markup languages to show within {% data variables.product.product_name %}. However, we do actively maintain our current markup languages. If you see a problem, [please create an issue](https://github.com/github/markup/issues/new). diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md index 2aa2f07f4f..48c0c4d4bf 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md @@ -2,7 +2,7 @@ title: Classifying your repository with topics intro: 'To help other people find and contribute to your project, you can add topics to your repository related to your project''s intended purpose, subject area, affinity groups, or other important qualities.' redirect_from: - - /articles/about-topics/ + - /articles/about-topics - /articles/classifying-your-repository-with-topics - /github/administering-a-repository/classifying-your-repository-with-topics - /github/administering-a-repository/managing-repository-settings/classifying-your-repository-with-topics diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md index 6a7a20218e..3ac3c54bdd 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md @@ -1,8 +1,8 @@ --- -title: 许可仓库 -intro: GitHub 上的公共仓库常用于共享开源软件。 要使仓库真正开源,您需要许可它供其他人免费使用、更改和分发软件。 +title: Licensing a repository +intro: 'Public repositories on GitHub are often used to share open source software. For your repository to truly be open source, you''ll need to license it so that others are free to use, change, and distribute the software.' redirect_from: - - /articles/open-source-licensing/ + - /articles/open-source-licensing - /articles/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/licensing-a-repository - /github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/licensing-a-repository @@ -13,86 +13,86 @@ versions: topics: - Repositories --- - ## 选择合适的许可 +## Choosing the right license -我们创建了 [choosealicense.com](https://choosealicense.com),以帮助您了解如何许可您的代码。 软件许可是告诉其他人,他们能够对您的代码做什么,不能做什么,因此做明智的决定很重要。 +We created [choosealicense.com](https://choosealicense.com), to help you understand how to license your code. A software license tells others what they can and can't do with your source code, so it's important to make an informed decision. -您没有选择许可的义务, 但如果没有许可,就会默认实施版权法,因此您会保留对您的源代码的所有权利,任何人都不能复制、分发您的工作或创建其派生作品。 如果您创建开源项目,强烈建议您包含开源许可。 [开源指南](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project)提供为项目选择正确许可的附加指导。 +You're under no obligation to choose a license. However, without a license, the default copyright laws apply, meaning that you retain all rights to your source code and no one may reproduce, distribute, or create derivative works from your work. If you're creating an open source project, we strongly encourage you to include an open source license. The [Open Source Guide](https://opensource.guide/legal/#which-open-source-license-is-appropriate-for-my-project) provides additional guidance on choosing the correct license for your project. {% note %} -**注:**如果您在 {% data variables.product.product_name %} 的公共仓库中发布源代码,{% ifversion fpt or ghec %}根据[服务条款](/free-pro-team@latest/github/site-policy/github-terms-of-service),{% endif %}其他 {% data variables.product.product_location %} 用户有权利查看您的仓库并对其复刻。 如果您已创建仓库,并且不再希望用户访问它,便可将仓库设为私有。 在将仓库的可见性变为私有时,其他用户创建的现有复刻或本地副本仍将存在。 更多信息请参阅“[设置仓库可见性](/github/administering-a-repository/setting-repository-visibility)”。 +**Note:** If you publish your source code in a public repository on {% data variables.product.product_name %}, {% ifversion fpt or ghec %}according to the [Terms of Service](/free-pro-team@latest/github/site-policy/github-terms-of-service), {% endif %}other users of {% data variables.product.product_location %} have the right to view and fork your repository. If you have already created a repository and no longer want users to have access to the repository, you can make the repository private. When you change the visibility of a repository to private, existing forks or local copies created by other users will still exist. For more information, see "[Setting repository visibility](/github/administering-a-repository/setting-repository-visibility)." {% endnote %} -## 确定许可的位置 +## Determining the location of your license -大多数人将其许可文件放在仓库根目录的文件 `LICENSE.txt`(或者 `LICENSE.md` 或 `LICENSE.rst`)中;[下面是 Hubot 中的一个示例](https://github.com/github/hubot/blob/master/LICENSE.md)。 +Most people place their license text in a file named `LICENSE.txt` (or `LICENSE.md` or `LICENSE.rst`) in the root of the repository; [here's an example from Hubot](https://github.com/github/hubot/blob/master/LICENSE.md). -有些项目在其自述文件中包含许可的相关信息。 例如,项目的自述文件可能包含一条注释,表示“此项目根据 MIT 许可的条款进行许可”。 +Some projects include information about their license in their README. For example, a project's README may include a note saying "This project is licensed under the terms of the MIT license." -作为最佳实践,我们建议您的项目随附许可文件。 +As a best practice, we encourage you to include the license file with your project. -## 按许可类型搜索 GitHub +## Searching GitHub by license type -您可以使用 `license` 限定符和准确的许可关键字,根据许可或许可系列来过滤仓库: +You can filter repositories based on their license or license family using the `license` qualifier and the exact license keyword: -| 许可 | 许可关键字 | -| -- | ------------------------------------------------------------- | -| | Academic Free License v3.0 | `afl-3.0` | -| | Apache license 2.0 | `apache-2.0` | -| | Artistic license 2.0 | `artistic-2.0` | -| | Boost Software License 1.0 | `bsl-1.0` | -| | BSD 2-clause "Simplified" license | `bsd-2-clause` | -| | BSD 3-clause "New" or "Revised" license | `bsd-3-clause` | -| | BSD 3-clause Clear license | `bsd-3-clause-clear` | -| | Creative Commons 许可系列 | `cc` | -| | Creative Commons Zero v1.0 Universal | `cc0-1.0` | -| | Creative Commons Attribution 4.0 | `cc-by-4.0` | -| | Creative Commons Attribution Share Alike 4.0 | `cc-by-sa-4.0` | -| | Do What The F*ck You Want To Public License | `wtfpl` | -| | Educational Community License v2.0 | `ecl-2.0` | -| | Eclipse Public License 1.0 | `epl-1.0` | -| | Eclipse Public License 2.0 | `epl-2.0` | -| | European Union Public License 1.1 | `eupl-1.1` | -| | GNU Affero General Public License v3.0 | `agpl-3.0` | -| | GNU General Public License 系列 | `gpl` | -| | GNU General Public License v2.0 | `gpl-2.0` | -| | GNU General Public License v3.0 | `gpl-3.0` | -| | GNU Lesser General Public License 系列 | `lgpl` | -| | GNU Lesser General Public License v2.1 | `lgpl-2.1` | -| | GNU Lesser General Public License v3.0 | `lgpl-3.0` | -| | ISC | `isc` | -| | LaTeX Project Public License v1.3c | `lppl-1.3c` | -| | Microsoft Public License | `ms-pl` | -| | MIT | `mit` | -| | Mozilla Public License 2.0 | `mpl-2.0` | -| | Open Software License 3.0 | `osl-3.0` | -| | PostgreSQL License | `postgresql` | -| | SIL Open Font License 1.1 | `ofl-1.1` | -| | University of Illinois/NCSA Open Source License | `ncsa` | -| | The Unlicense | `unlicense` | -| | zLib License | `zlib` | +License | License keyword +--- | --- +| Academic Free License v3.0 | `afl-3.0` | +| Apache license 2.0 | `apache-2.0` | +| Artistic license 2.0 | `artistic-2.0` | +| Boost Software License 1.0 | `bsl-1.0` | +| BSD 2-clause "Simplified" license | `bsd-2-clause` | +| BSD 3-clause "New" or "Revised" license | `bsd-3-clause` | +| BSD 3-clause Clear license | `bsd-3-clause-clear` | +| Creative Commons license family | `cc` | +| Creative Commons Zero v1.0 Universal | `cc0-1.0` | +| Creative Commons Attribution 4.0 | `cc-by-4.0` | +| Creative Commons Attribution Share Alike 4.0 | `cc-by-sa-4.0` | +| Do What The F*ck You Want To Public License | `wtfpl` | +| Educational Community License v2.0 | `ecl-2.0` | +| Eclipse Public License 1.0 | `epl-1.0` | +| Eclipse Public License 2.0 | `epl-2.0` | +| European Union Public License 1.1 | `eupl-1.1` | +| GNU Affero General Public License v3.0 | `agpl-3.0` | +| GNU General Public License family | `gpl` | +| GNU General Public License v2.0 | `gpl-2.0` | +| GNU General Public License v3.0 | `gpl-3.0` | +| GNU Lesser General Public License family | `lgpl` | +| GNU Lesser General Public License v2.1 | `lgpl-2.1` | +| GNU Lesser General Public License v3.0 | `lgpl-3.0` | +| ISC | `isc` | +| LaTeX Project Public License v1.3c | `lppl-1.3c` | +| Microsoft Public License | `ms-pl` | +| MIT | `mit` | +| Mozilla Public License 2.0 | `mpl-2.0` | +| Open Software License 3.0 | `osl-3.0` | +| PostgreSQL License | `postgresql` | +| SIL Open Font License 1.1 | `ofl-1.1` | +| University of Illinois/NCSA Open Source License | `ncsa` | +| The Unlicense | `unlicense` | +| zLib License | `zlib` | -按系列许可搜索时,搜索结果将包含该系列的所有许可。 例如,在使用查询 `license:gpl` 时,搜索结果将包含在 GNU General Public License v2.0 和 GNU General Public License v3.0 下许可的仓库。 更多信息请参阅“[搜索仓库](/search-github/searching-on-github/searching-for-repositories/#search-by-license)”。 +When you search by a family license, your results will include all licenses in that family. For example, when you use the query `license:gpl`, your results will include repositories licensed under GNU General Public License v2.0 and GNU General Public License v3.0. For more information, see "[Searching for repositories](/search-github/searching-on-github/searching-for-repositories/#search-by-license)." -## 检测许可 +## Detecting a license -[开源 Ruby gem 被许可人](https://github.com/licensee/licensee)比较仓库的 *LICENSE* 文件与已知许可短列表。 被许可人还提供[许可 API](/rest/reference/licenses) 并[向我们提供如何许可 {% data variables.product.product_name %} 上的仓库的洞见](https://github.com/blog/1964-open-source-license-usage-on-github-com)。 如果您的仓库使用的许可未列在[选择许可网站](https://choosealicense.com/appendix/)中,您可以[申请包含该许可](https://github.com/github/choosealicense.com/blob/gh-pages/CONTRIBUTING.md#adding-a-license)。 +[The open source Ruby gem Licensee](https://github.com/licensee/licensee) compares the repository's *LICENSE* file to a short list of known licenses. Licensee also provides the [Licenses API](/rest/reference/licenses) and [gives us insight into how repositories on {% data variables.product.product_name %} are licensed](https://github.com/blog/1964-open-source-license-usage-on-github-com). If your repository is using a license that isn't listed on the [Choose a License website](https://choosealicense.com/appendix/), you can [request including the license](https://github.com/github/choosealicense.com/blob/gh-pages/CONTRIBUTING.md#adding-a-license). -如果您的仓库使用的许可列在“选择许可”网站中,但未明确显示在仓库页面顶部,其中可能包含多个许可或存在其他复杂性。 为使您的许可被检测到,请简化*许可*文件,并在其他位置注明复杂性,例如在仓库的*自述文件*中。 +If your repository is using a license that is listed on the Choose a License website and it's not displaying clearly at the top of the repository page, it may contain multiple licenses or other complexity. To have your license detected, simplify your *LICENSE* file and note the complexity somewhere else, such as your repository's *README* file. -## 将许可应用到带现有许可的仓库 +## Applying a license to a repository with an existing license -许可选择器仅当您在 GitHub 上创建新项目时可用。 您可以使用浏览器手动添加许可。 有关添加许可到仓库的更多信息,请参阅“[添加许可到仓库](/articles/adding-a-license-to-a-repository)”。 +The license picker is only available when you create a new project on GitHub. You can manually add a license using the browser. For more information on adding a license to a repository, see "[Adding a license to a repository](/articles/adding-a-license-to-a-repository)." -![GitHub.com 上许可选择器的屏幕截图](/assets/images/help/repository/repository-license-picker.png) +![Screenshot of license picker on GitHub.com](/assets/images/help/repository/repository-license-picker.png) -## 免责声明 +## Disclaimer -GitHub 开源许可的目标是提供一个起点,帮助您做出明智的决定。 GitHub 显示许可信息以帮助用户了解开源许可以及使用它们的项目。 我们希望它有帮助,但请记住,我们不是律师,像其他人一样,我们也会犯错。 For that reason, GitHub provides the information on an "as-is" basis and makes no warranties regarding any information or licenses provided on or through it, and disclaims liability for damages resulting from using the license information. 如果对适合您的代码的许可有任何疑问,或有任何其他相关的问题,最好咨询专业人员。 +The goal of GitHub's open source licensing efforts is to provide a starting point to help you make an informed choice. GitHub displays license information to help users get information about open source licenses and the projects that use them. We hope it helps, but please keep in mind that we’re not lawyers and that we make mistakes like everyone else. For that reason, GitHub provides the information on an "as-is" basis and makes no warranties regarding any information or licenses provided on or through it, and disclaims liability for damages resulting from using the license information. If you have any questions regarding the right license for your code or any other legal issues relating to it, it’s always best to consult with a professional. -## 延伸阅读 +## Further reading -- 开源指南的“[开源的法律方面](https://opensource.guide/legal/)”部分{% ifversion fpt or ghec %} +- The Open Source Guides' section "[The Legal Side of Open Source](https://opensource.guide/legal/)"{% ifversion fpt or ghec %} - [{% data variables.product.prodname_learning %}]({% data variables.product.prodname_learning_link %}){% endif %} diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md index 322cfe09a4..0181b7ae84 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md @@ -1,10 +1,10 @@ --- -title: 管理仓库的安全性和分析设置 -intro: '您可以控制功能以保护 {% data variables.product.prodname_dotcom %} 上项目的安全并分析其中的代码。' +title: Managing security and analysis settings for your repository +intro: 'You can control features that secure and analyze the code in your project on {% data variables.product.prodname_dotcom %}.' permissions: People with admin permissions to a repository can manage security and analysis settings for the repository. redirect_from: - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories/ - - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories/ + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization-s-repositories + - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organizations-repositories - /articles/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/managing-security-vulnerabilities/managing-alerts-for-vulnerable-dependencies-in-your-organization - /github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository @@ -22,23 +22,23 @@ topics: - Dependency graph - Secret scanning - Repositories -shortTitle: 安全和分析 +shortTitle: Security & analysis --- - {% ifversion fpt or ghec %} -## 为公共仓库启用或禁用安全和分析功能 +## Enabling or disabling security and analysis features for public repositories -您可以管理公共仓库的一部分安全和分析功能。 其他功能是永久启用的,包括依赖项图和密码扫描。 +You can manage a subset of security and analysis features for public repositories. Other features are permanently enabled, including dependency graph and secret scanning. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} -4. 在“Configure security and analysis features(配置安全性和分析功能)”下,单击功能右侧的 **Disable(禁用)**或 **Enable(启用)**。 ![公共仓库中"Configure security and analysis(配置安全性和分析)"功能的"Enable(启用)"或"Disable(禁用)"按钮](/assets/images/help/repository/security-and-analysis-disable-or-enable-dotcom-public.png) +4. Under "Configure security and analysis features", to the right of the feature, click **Disable** or **Enable**. + !["Enable" or "Disable" button for "Configure security and analysis" features in a public repository](/assets/images/help/repository/security-and-analysis-disable-or-enable-dotcom-public.png) {% endif %} -## 为私有仓库启用或禁用安全和分析功能{% ifversion fpt or ghec %}{% endif %} +## Enabling or disabling security and analysis features{% ifversion fpt or ghec %} for private repositories{% endif %} -您可以管理{% ifversion fpt or ghec %}私有或内部 {% endif %}仓库的安全性和分析功能。{% ifversion fpt or ghes or ghec %} 如果您的组织属于拥有 {% data variables.product.prodname_GH_advanced_security %} 许可证的企业,则额外选项可用。 {% data reusables.advanced-security.more-info-ghas %}{% endif %} +You can manage the security and analysis features for your {% ifversion fpt or ghec %}private or internal {% endif %}repository.{% ifversion fpt or ghes or ghec %} If your organization belongs to an enterprise with a license for {% data variables.product.prodname_GH_advanced_security %} then extra options are available. {% data reusables.advanced-security.more-info-ghas %}{% endif %} {% data reusables.security.security-and-analysis-features-enable-read-only %} @@ -46,74 +46,77 @@ shortTitle: 安全和分析 {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} {% ifversion fpt or ghes > 3.0 or ghec %} -4. 在“Configure security and analysis features(配置安全性和分析功能)”下,单击功能右侧的 **Disable(禁用)**或 **Enable(启用)**。 The control for "{% data variables.product.prodname_GH_advanced_security %}" is disabled if your enterprise has no available licenses for {% data variables.product.prodname_advanced_security %}.{% ifversion fpt or ghec %} !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/help/repository/security-and-analysis-disable-or-enable-dotcom-private.png){% elsif ghes > 3.2 %} -!["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/enterprise/3.3/repository/security-and-analysis-disable-or-enable-ghes.png){% else %} -!["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/enterprise/3.1/help/repository/security-and-analysis-disable-or-enable-ghes.png){% endif %} +4. Under "Configure security and analysis features", to the right of the feature, click **Disable** or **Enable**. The control for "{% data variables.product.prodname_GH_advanced_security %}" is disabled if your enterprise has no available licenses for {% data variables.product.prodname_advanced_security %}.{% ifversion fpt or ghec %} + !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/help/repository/security-and-analysis-disable-or-enable-dotcom-private.png){% elsif ghes > 3.2 %} + !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/enterprise/3.3/repository/security-and-analysis-disable-or-enable-ghes.png){% else %} + !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/enterprise/3.1/help/repository/security-and-analysis-disable-or-enable-ghes.png){% endif %} {% note %} - **注意:**如果您禁用 {% data variables.product.prodname_GH_advanced_security %}、{% ifversion fpt or ghec %}依赖项审核、{% endif %}{% data variables.product.prodname_secret_scanning %} 和 {% data variables.product.prodname_code_scanning %} 都会禁用。 任何工作流程、SARIF上传或 {% data variables.product.prodname_code_scanning %} 的 API 调用都将失败。 + **Note:** If you disable {% data variables.product.prodname_GH_advanced_security %}, {% ifversion fpt or ghec %}dependency review, {% endif %}{% data variables.product.prodname_secret_scanning %} and {% data variables.product.prodname_code_scanning %} are disabled. Any workflows, SARIF uploads, or API calls for {% data variables.product.prodname_code_scanning %} will fail. {% endnote %} {% endif %} {% ifversion ghes = 3.0 %} -4. 在“Configure security and analysis features(配置安全性和分析功能)”下,单击功能右侧的 **Disable(禁用)**或 **Enable(启用)**。 !["Configure security and analysis(配置安全性和分析)"功能的"Enable(启用)"或"Disable(禁用)"按钮](/assets/images/help/repository/security-and-analysis-disable-or-enable-ghe.png) +4. Under "Configure security and analysis features", to the right of the feature, click **Disable** or **Enable**. + !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/help/repository/security-and-analysis-disable-or-enable-ghe.png) {% endif %} {% ifversion ghae %} -4. 在“Configure security and analysis features(配置安全性和分析功能)”下,单击功能右侧的 **Disable(禁用)**或 **Enable(启用)**。 在启用“{% data variables.product.prodname_secret_scanning %}”之前,您可能需要先启用 {% data variables.product.prodname_GH_advanced_security %}。 ![为您的仓库启用或禁用 {% data variables.product.prodname_GH_advanced_security %} 或 {% data variables.product.prodname_secret_scanning %}](/assets/images/enterprise/github-ae/repository/enable-ghas-secret-scanning-ghae.png) +4. Under "Configure security and analysis features", to the right of the feature, click **Disable** or **Enable**. Before you can enable "{% data variables.product.prodname_secret_scanning %}" for your repository, you may need to enable {% data variables.product.prodname_GH_advanced_security %}. + ![Enable or disable {% data variables.product.prodname_GH_advanced_security %} or {% data variables.product.prodname_secret_scanning %} for your repository](/assets/images/enterprise/github-ae/repository/enable-ghas-secret-scanning-ghae.png) {% endif %} -## 授予对安全警报的访问权限 +## Granting access to security alerts -为组织中的仓库启用 {% ifversion not ghae %}{% data variables.product.prodname_dependabot %} 或 {% endif %}{% data variables.product.prodname_secret_scanning %} 警报之后,组织所有者和仓库管理员默认可以查看警报。 您可以授予其他团队和人员访问仓库的警报。 +After you enable {% ifversion not ghae %}{% data variables.product.prodname_dependabot %} or {% endif %}{% data variables.product.prodname_secret_scanning %} alerts for a repository in an organization, organization owners and repository administrators can view the alerts by default. You can give additional teams and people access to the alerts for a repository. {% note %} -组织所有者和仓库管理员只能向具有仓库写入权限的人员授予安全警报的查看权限,如 {% data variables.product.prodname_secret_scanning %} 警报。 +Organization owners and repository administrators can only grant access to view security alerts, such as {% data variables.product.prodname_secret_scanning %} alerts, to people or teams who have write access to the repo. {% endnote %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} -4. 在“Access to alerts(访问警报)”下,在搜索字段中开始键入您要查找的个人或团队的名称,然后单击匹配列表中的名称。 +4. Under "Access to alerts", in the search field, start typing the name of the person or team you'd like to find, then click a name in the list of matches. {% ifversion fpt or ghec or ghes > 3.2 %} - ![用于授予人员或团队访问安全警报的搜索字段](/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png) + ![Search field for granting people or teams access to security alerts](/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png) {% endif %} {% ifversion ghes < 3.3 %} - ![用于授予人员或团队访问安全警报的搜索字段](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-person-or-team-search.png) + ![Search field for granting people or teams access to security alerts](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-person-or-team-search.png) {% endif %} {% ifversion ghae %} - ![用于授予人员或团队访问安全警报的搜索字段](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-person-or-team-search-ghae.png) + ![Search field for granting people or teams access to security alerts](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-person-or-team-search-ghae.png) {% endif %} - -5. 单击 **Save changes(保存更改)**。 + +5. Click **Save changes**. {% ifversion fpt or ghes > 3.2 or ghec %} - ![用于更改安全警报设置的"Save changes(保存更改)"按钮](/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png) + !["Save changes" button for changes to security alert settings](/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png) {% endif %} {% ifversion ghes < 3.3 %} - ![用于更改安全警报设置的"Save changes(保存更改)"按钮](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-save-changes.png) + !["Save changes" button for changes to security alert settings](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-save-changes.png) {% endif %} {% ifversion ghae %} - ![用于更改安全警报设置的"Save changes(保存更改)"按钮](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-save-changes-ghae.png) + !["Save changes" button for changes to security alert settings](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-save-changes-ghae.png) {% endif %} -## 删除对安全警报的访问权限 +## Removing access to security alerts {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} -4. 在“Access to alerts(访问警报)”下,在要删除其访问权限的个人或团队的右侧,单击 {% octicon "x" aria-label="X symbol" %}。 - {% ifversion fpt or ghec or ghes > 3.2 %} - ![用于删除某人对您仓库的安全警报访问权限的 "x" 按钮](/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png) +4. Under "Access to alerts", to the right of the person or team whose access you'd like to remove, click {% octicon "x" aria-label="X symbol" %}. + {% ifversion fpt or ghec or ghes > 3.2 %} + !["x" button to remove someone's access to security alerts for your repository](/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png) {% endif %} {% ifversion ghes < 3.3 %} - ![用于删除某人对您仓库的安全警报访问权限的 "x" 按钮](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-username-x.png) + !["x" button to remove someone's access to security alerts for your repository](/assets/images/enterprise/3.2/repository/security-and-analysis-security-alerts-username-x.png) {% endif %} {% ifversion ghae %} - ![用于删除某人对您仓库的安全警报访问权限的 "x" 按钮](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-username-x-ghae.png) + !["x" button to remove someone's access to security alerts for your repository](/assets/images/enterprise/github-ae/repository/security-and-analysis-security-alerts-username-x-ghae.png) {% endif %} - 5. 单击 **Save changes(保存更改)**。 + 5. Click **Save changes**. -## 延伸阅读 +## Further reading -- "[保护您的仓库](/code-security/getting-started/securing-your-repository)" -- “[管理组织的安全性和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)” +- "[Securing your repository](/code-security/getting-started/securing-your-repository)" +- "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md index 70e1d47969..67c8fece20 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md @@ -1,11 +1,11 @@ --- -title: 关于推送到仓库的电子邮件通知 -intro: 您可以选择在任何人推送到仓库时自动发送电子邮件通知到特定电子邮件地址。 +title: About email notifications for pushes to your repository +intro: You can choose to automatically send email notifications to a specific email address when anyone pushes to the repository. permissions: People with admin permissions in a repository can enable email notifications for pushes to your repository. redirect_from: - - /articles/managing-notifications-for-pushes-to-a-repository/ - - /articles/receiving-email-notifications-for-pushes-to-a-repository/ - - /articles/about-email-notifications-for-pushes-to-your-repository/ + - /articles/managing-notifications-for-pushes-to-a-repository + - /articles/receiving-email-notifications-for-pushes-to-a-repository + - /articles/about-email-notifications-for-pushes-to-your-repository - /github/receiving-notifications-about-activity-on-github/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/about-email-notifications-for-pushes-to-your-repository - /github/administering-a-repository/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository @@ -16,37 +16,39 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 用于推送的电子邮件通知 +shortTitle: Email notifications for pushes --- - {% data reusables.notifications.outbound_email_tip %} -对于推送到仓库所发送的每封电子邮件通知都会列出新提交,以及只包含这些提交的差异的链接。 在电子邮件通知中,您会看到: +Each email notification for a push to a repository lists the new commits and links to a diff containing just those commits. In the email notification you'll see: -- 其中进行了提交的仓库名称 -- 进行提交的分支 -- 提交的 SHA1,包括到 {% data variables.product.product_name %} 中差异的链接 -- 提交的作者 -- 提交的日期 -- 作为提交一部分所更改的文件 -- 提交消息 +- The name of the repository where the commit was made +- The branch a commit was made in +- The SHA1 of the commit, including a link to the diff in {% data variables.product.product_name %} +- The author of the commit +- The date when the commit was made +- The files that were changed as part of the commit +- The commit message -您可以过滤因推送到仓库而收到的电子邮件通知。 更多信息请参阅{% ifversion fpt or ghae or ghes or ghec %}“[配置通知](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}”[关于通知电子邮件](/github/receiving-notifications-about-activity-on-github/about-email-notifications)”。 您还可以对推送关闭电子邮件通知。 更多信息请参阅“[选择通知的递送方式](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}”。 +You can filter email notifications you receive for pushes to a repository. For more information, see {% ifversion fpt or ghae or ghes or ghec %}"[Configuring notifications](/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#filtering-email-notifications){% else %}"[About notification emails](/github/receiving-notifications-about-activity-on-github/about-email-notifications)." You can also turn off email notifications for pushes. For more information, see "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications){% endif %}." -## 对推送到仓库启用电子邮件通知 +## Enabling email notifications for pushes to your repository {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.sidebar-notifications %} -5. 输入最多两个您希望通知发送到的电子邮件地址,用空格分隔。 如果要将电子邮件发送到两个以上的帐户,请将其中一个电子邮件地址设为群组电子邮件地址。 ![电子邮件地址文本框](/assets/images/help/settings/email_services_addresses.png) -1. 如果您操作自己的服务器,可通过 **Approved 标头**验证电子邮件的真实性。 **Approved 标头**是您在此字段中输入的令牌或密码,它将随电子邮件一起发送。 如果电子邮件的 `Approved` 标头与令牌匹配,则可以信任该电子邮件来自 {% data variables.product.product_name %}。 ![电子邮件已批准标头文本框](/assets/images/help/settings/email_services_approved_header.png) -7. 单击 **Setup notifications(设置通知)**。 ![设置通知按钮](/assets/images/help/settings/setup_notifications_settings.png) +5. Type up to two email addresses, separated by whitespace, where you'd like notifications to be sent. If you'd like to send emails to more than two accounts, set one of the email addresses to a group email address. +![Email address textbox](/assets/images/help/settings/email_services_addresses.png) +1. If you operate your own server, you can verify the integrity of emails via the **Approved header**. The **Approved header** is a token or secret that you type in this field, and that is sent with the email. If the `Approved` header of an email matches the token, you can trust that the email is from {% data variables.product.product_name %}. +![Email approved header textbox](/assets/images/help/settings/email_services_approved_header.png) +7. Click **Setup notifications**. +![Setup notifications button](/assets/images/help/settings/setup_notifications_settings.png) -## 延伸阅读 +## Further reading {% ifversion fpt or ghae or ghes or ghec %} -- "[关于通知](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" +- "[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" {% else %} -- "[关于通知](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)" -- "[选择通知的递送方式](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications)" -- "[关于电子邮件通知](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)" -- "[关于 web 通知](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)"{% endif %} +- "[About notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-notifications)" +- "[Choosing the delivery method for your notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/choosing-the-delivery-method-for-your-notifications)" +- "[About email notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-email-notifications)" +- "[About web notifications](/enterprise/{{ currentVersion }}/user/github/receiving-notifications-about-activity-on-github/about-web-notifications)"{% endif %} diff --git a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md index 1841cf3ab9..60c27fc359 100644 --- a/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md +++ b/translations/zh-CN/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md @@ -2,9 +2,9 @@ title: Setting repository visibility intro: You can choose who can view your repository. redirect_from: - - /articles/making-a-private-repository-public/ - - /articles/making-a-public-repository-private/ - - /articles/converting-a-public-repo-to-a-private-repo/ + - /articles/making-a-private-repository-public + - /articles/making-a-public-repository-private + - /articles/converting-a-public-repo-to-a-private-repo - /articles/setting-repository-visibility - /github/administering-a-repository/setting-repository-visibility - /github/administering-a-repository/managing-repository-settings/setting-repository-visibility diff --git a/translations/zh-CN/content/repositories/releasing-projects-on-github/about-releases.md b/translations/zh-CN/content/repositories/releasing-projects-on-github/about-releases.md index e912a77bea..b4e5fce59b 100644 --- a/translations/zh-CN/content/repositories/releasing-projects-on-github/about-releases.md +++ b/translations/zh-CN/content/repositories/releasing-projects-on-github/about-releases.md @@ -1,9 +1,9 @@ --- -title: 关于发行版 -intro: 您可以创建包软件的发行版,以及发行说明和二进制文件链接,以供其他人使用。 +title: About releases +intro: 'You can create a release to package software, along with release notes and links to binary files, for other people to use.' redirect_from: - - /articles/downloading-files-from-the-command-line/ - - /articles/downloading-files-with-curl/ + - /articles/downloading-files-from-the-command-line + - /articles/downloading-files-with-curl - /articles/about-releases - /articles/getting-the-download-count-for-your-releases - /github/administering-a-repository/getting-the-download-count-for-your-releases @@ -17,43 +17,42 @@ versions: topics: - Repositories --- - -## 关于发行版 +## About releases {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -![发行版概述](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) +![An overview of releases](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) {% elsif ghes > 3.3 or ghae-issue-4972 %} -![发行版概述](/assets/images/help/releases/releases-overview-with-contributors.png) +![An overview of releases](/assets/images/help/releases/releases-overview-with-contributors.png) {% else %} -![发行版概述](/assets/images/help/releases/releases-overview.png) +![An overview of releases](/assets/images/help/releases/releases-overview.png) {% endif %} -发行版是可部署的软件迭代,您可以打包并提供给更广泛的受众下载和使用。 +Releases are deployable software iterations you can package and make available for a wider audience to download and use. -发行版基于 [Git 标记](https://git-scm.com/book/en/Git-Basics-Tagging),这些标记会标记仓库历史记录中的特定点。 标记日期可能与发行日期不同,因为它们可在不同的时间创建。 有关查看现有标记的更多信息,请参阅“[查看仓库的发行版和标记](/github/administering-a-repository/viewing-your-repositorys-releases-and-tags)”。 +Releases are based on [Git tags](https://git-scm.com/book/en/Git-Basics-Tagging), which mark a specific point in your repository's history. A tag date may be different than a release date since they can be created at different times. For more information about viewing your existing tags, see "[Viewing your repository's releases and tags](/github/administering-a-repository/viewing-your-repositorys-releases-and-tags)." -当仓库中发布新发行版时您可以接收通知,但不会接受有关仓库其他更新的通知。 更多信息请参阅{% ifversion fpt or ghae or ghes or ghec %}“[查看您的订阅](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions){% else %}”[关注和取消关注仓库的发行版](/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository){% endif %}”。 +You can receive notifications when new releases are published in a repository without receiving notifications about other updates to the repository. For more information, see {% ifversion fpt or ghae or ghes or ghec %}"[Viewing your subscriptions](/github/managing-subscriptions-and-notifications-on-github/viewing-your-subscriptions){% else %}"[Watching and unwatching releases for a repository](/github/receiving-notifications-about-activity-on-github/watching-and-unwatching-releases-for-a-repository){% endif %}." -对仓库具有读取访问权限的任何人都可以查看和比较发行版,但只有对仓库具有写入权限的人员才能管理发行版。 更多信息请参阅“[管理仓库中的发行版](/github/administering-a-repository/managing-releases-in-a-repository)”。 +Anyone with read access to a repository can view and compare releases, but only people with write permissions to a repository can manage releases. For more information, see "[Managing releases in a repository](/github/administering-a-repository/managing-releases-in-a-repository)." {% ifversion fpt or ghec %} You can manually create release notes while managing a release. Alternatively, you can automatically generate release notes from a default template, or customize your own release notes template. For more information, see "[Automatically generated release notes](/repositories/releasing-projects-on-github/automatically-generated-release-notes)." -对仓库具有管理员权限的人可以选择是否将 {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) 对象包含在 {% data variables.product.product_name %} 为每个发行版创建的 ZIP 文件和 tarball 中。 更多信息请参阅“[管理仓库存档中的 {% data variables.large_files.product_name_short %} 对象](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)”。 +People with admin permissions to a repository can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.product_name %} creates for each release. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% ifversion fpt or ghec %} -如果发行版修复了安全漏洞,您应该在仓库中发布安全通告。 {% data variables.product.prodname_dotcom %} 审查每个发布的安全通告,并且可能使用它向受影响的仓库发送 {% data variables.product.prodname_dependabot_alerts %}。 更多信息请参阅“[关于 GitHub 安全通告](/github/managing-security-vulnerabilities/about-github-security-advisories)”。 +If a release fixes a security vulnerability, you should publish a security advisory in your repository. {% data variables.product.prodname_dotcom %} reviews each published security advisory and may use it to send {% data variables.product.prodname_dependabot_alerts %} to affected repositories. For more information, see "[About GitHub Security Advisories](/github/managing-security-vulnerabilities/about-github-security-advisories)." -您可以查看依赖项图的 **Dependents(依赖项)**选项卡,了解哪些仓库和包依赖于您仓库中的代码,并因此可能受到新发行版的影响。 更多信息请参阅“[关于依赖关系图](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)”。 +You can view the **Dependents** tab of the dependency graph to see which repositories and packages depend on code in your repository, and may therefore be affected by a new release. For more information, see "[About the dependency graph](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)." {% endif %} -您也可以使用发行版 API 来收集信息,例如人们下载发行版资产的次数。 更多信息请参阅“[发行版](/rest/reference/repos#releases)”。 +You can also use the Releases API to gather information, such as the number of times people download a release asset. For more information, see "[Releases](/rest/reference/repos#releases)." {% ifversion fpt or ghec %} -## 存储和带宽配额 +## Storage and bandwidth quotas - 发行版中包含的每个文件都必须在 {% data variables.large_files.max_file_size %} 下。 发行版的总大小和带宽使用没有限制。 + Each file included in a release must be under {% data variables.large_files.max_file_size %}. There is no limit on the total size of a release, nor bandwidth usage. {% endif %} diff --git a/translations/zh-CN/content/repositories/releasing-projects-on-github/index.md b/translations/zh-CN/content/repositories/releasing-projects-on-github/index.md index 1ec397f255..feb05945b2 100644 --- a/translations/zh-CN/content/repositories/releasing-projects-on-github/index.md +++ b/translations/zh-CN/content/repositories/releasing-projects-on-github/index.md @@ -1,9 +1,9 @@ --- -title: 在 GitHub 上发布项目 -intro: 您可以创建发行版以打包软件、发行说明和二进制文件,供他人下载。 +title: Releasing projects on GitHub +intro: 'You can create a release to package software, release notes, and binary files for other people to download.' redirect_from: - - /categories/85/articles/ - - /categories/releases/ + - /categories/85/articles + - /categories/releases - /github/administering-a-repository/releasing-projects-on-github versions: fpt: '*' @@ -21,6 +21,6 @@ children: - /comparing-releases - /automatically-generated-release-notes - /automation-for-release-forms-with-query-parameters -shortTitle: 发布项目 +shortTitle: Release projects --- diff --git a/translations/zh-CN/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/translations/zh-CN/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md index d1a4ff8390..eff47a5b08 100644 --- a/translations/zh-CN/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md +++ b/translations/zh-CN/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md @@ -1,9 +1,9 @@ --- -title: 管理仓库中的发行版 -intro: 您可以创建要捆绑的发行版,并将项目的迭代交付给用户。 +title: Managing releases in a repository +intro: You can create releases to bundle and deliver iterations of a project to users. redirect_from: - /articles/creating-releases - - /articles/listing-and-editing-releases/ + - /articles/listing-and-editing-releases - /articles/editing-and-deleting-releases - /articles/managing-releases-in-a-repository - /github/administering-a-repository/creating-releases @@ -18,23 +18,22 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 管理版本 +shortTitle: Manage releases --- - {% ifversion fpt or ghes > 3.0 or ghae or ghec %} -## 关于发行版管理 +## About release management You can create new releases with release notes, @mentions of contributors, and links to binary files, as well as edit or delete existing releases. {% ifversion fpt or ghec %} -您也可以在 {% data variables.product.prodname_marketplace %} 中从特定的发行版发布操作。 更多信息请参阅“<a href="/actions/creating-actions/publishing-actions-in-github-marketplace" class="dotcom-only">在 {% data variables.product.prodname_marketplace %} 中发布操作</a>”。 +You can also publish an action from a specific release in {% data variables.product.prodname_marketplace %}. For more information, see "<a href="/actions/creating-actions/publishing-actions-in-github-marketplace" class="dotcom-only">Publishing an action in the {% data variables.product.prodname_marketplace %}</a>." -您可以选择是否将 {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) 对象包含在 {% data variables.product.product_name %} 为每个发行版创建的 ZIP 文件和 tarball 中。 更多信息请参阅“[管理仓库存档中的 {% data variables.large_files.product_name_short %} 对象](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)”。 +You can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.product_name %} creates for each release. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% endif %} -## 创建发行版 +## Creating a release {% include tool-switcher %} @@ -42,7 +41,7 @@ You can create new releases with release notes, @mentions of contributors, and l {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -3. 单击 **Draft a new release(草拟新发行版)**。 +3. Click **Draft a new release**. {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %}![Releases draft button](/assets/images/help/releases/draft-release-button-with-search.png){% else %}![Releases draft button](/assets/images/help/releases/draft_release_button.png){% endif %} 4. {% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}Click **Choose a tag**, type{% else %}Type{% endif %} a version number for your release{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}, and press **Enter**{% endif %}. Alternatively, select an existing tag. @@ -52,32 +51,36 @@ You can create new releases with release notes, @mentions of contributors, and l ![Confirm you want to create a new tag](/assets/images/help/releases/releases-tag-create-confirm.png) {% else %} - ![发行版标记版本](/assets/images/enterprise/releases/releases-tag-version.png) + ![Releases tagged version](/assets/images/enterprise/releases/releases-tag-version.png) {% endif %} 5. If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release. {% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4865 %}![Choose a branch](/assets/images/help/releases/releases-choose-branch.png) {% else %}![Releases tagged branch](/assets/images/enterprise/releases/releases-tag-branch.png){% endif %} -6. 键入发行版的标题和说明。 +6. Type a title and description for your release. {%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you @mention any {% data variables.product.product_name %} users in the description, the published release will include a **Contributors** section with an avatar list of all the mentioned users. {%- endif %} {% ifversion fpt or ghec %} Alternatively, you can automatically generate your release notes by clicking **Auto-generate release notes**. {% endif %} - ![发行版说明](/assets/images/help/releases/releases_description_auto.png) -7. (可选)要在发行版中包含二进制文件(例如已编译的程序),请在二进制文件框中拖放或手动选择文件。 ![通过发行版提供 DMG](/assets/images/help/releases/releases_adding_binary.gif) -8. 要通知用户发行版本尚不可用于生产,可能不稳定,请选择 **This is a pre-release(这是预发布)**。 ![将版本标记为预发行版的复选框](/assets/images/help/releases/prerelease_checkbox.png) + ![Releases description](/assets/images/help/releases/releases_description_auto.png) +7. Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box. + ![Providing a DMG with the Release](/assets/images/help/releases/releases_adding_binary.gif) +8. To notify users that the release is not ready for production and may be unstable, select **This is a pre-release**. + ![Checkbox to mark a release as prerelease](/assets/images/help/releases/prerelease_checkbox.png) {%- ifversion fpt or ghec %} -1. Optionally, if {% data variables.product.prodname_discussions %} are enabled in the repository, select **Create a discussion for this release**, then select the **Category** drop-down menu and click a category for the release discussion. ![用于创建发行版讨论和下拉菜单以选择类别的复选框](/assets/images/help/releases/create-release-discussion.png) +1. Optionally, if {% data variables.product.prodname_discussions %} are enabled in the repository, select **Create a discussion for this release**, then select the **Category** drop-down menu and click a category for the release discussion. + ![Checkbox to create a release discussion and drop-down menu to choose a category](/assets/images/help/releases/create-release-discussion.png) {%- endif %} -9. 如果您准备推广您的发行版,请单击 **Publish release(发布版本)**。 要在以后处理该发行版,请单击 **Save draft(保存草稿)**。 ![发布版本和草拟发行版按钮](/assets/images/help/releases/release_buttons.png) +9. If you're ready to publicize your release, click **Publish release**. To work on the release later, click **Save draft**. + ![Publish release and Draft release buttons](/assets/images/help/releases/release_buttons.png) {%- ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4972 or ghae-issue-4974 %} You can then view your published or draft releases in the releases feed for your repository. For more information, see "[Viewing your repository's releases and tags](/github/administering-a-repository/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags)." {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} ![Published release with @mentioned contributors](/assets/images/help/releases/refreshed-releases-overview-with-contributors.png) - {% else %} + {% else %} ![Published release with @mentioned contributors](/assets/images/help/releases/releases-overview-with-contributors.png) {% endif %} {%- endif %} @@ -105,7 +108,7 @@ If you @mention any {% data variables.product.product_name %} users in the notes {% endcli %} -## 编辑发行版 +## Editing a release {% include tool-switcher %} @@ -114,11 +117,14 @@ If you @mention any {% data variables.product.product_name %} users in the notes {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -3. On the right side of the page, next to the release you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. ![编辑发行版](/assets/images/help/releases/edit-release-pencil.png) +3. On the right side of the page, next to the release you want to edit, click {% octicon "pencil" aria-label="The edit icon" %}. + ![Edit a release](/assets/images/help/releases/edit-release-pencil.png) {% else %} -3. 在页面右侧要编辑的发行版旁边,单击 **Edit release(编辑发行版)**。 ![编辑发行版](/assets/images/help/releases/edit-release.png) +3. On the right side of the page, next to the release you want to edit, click **Edit release**. + ![Edit a release](/assets/images/help/releases/edit-release.png) {% endif %} -4. Edit the details for the release in the form, then click **Update release**.{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you add or remove any @mentions of GitHub users in the description, those users will be added or removed from the avatar list in the **Contributors** section of the release.{% endif %} ![更新发行版](/assets/images/help/releases/update-release.png) +4. Edit the details for the release in the form, then click **Update release**.{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-4972 %} If you add or remove any @mentions of GitHub users in the description, those users will be added or removed from the avatar list in the **Contributors** section of the release.{% endif %} + ![Update a release](/assets/images/help/releases/update-release.png) {% endwebui %} @@ -128,7 +134,7 @@ Releases cannot currently be edited with {% data variables.product.prodname_cli {% endcli %} -## 删除发行版 +## Deleting a release {% include tool-switcher %} @@ -137,12 +143,16 @@ Releases cannot currently be edited with {% data variables.product.prodname_cli {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-4974 %} -3. On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="The trash icon" %}. ![删除发行版](/assets/images/help/releases/delete-release-trash.png) +3. On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="The trash icon" %}. + ![Delete a release](/assets/images/help/releases/delete-release-trash.png) {% else %} -3. 单击要删除的发行版的名称。 ![用于查看发行版的链接](/assets/images/help/releases/release-name-link.png) -4. 在页面右上角,单击 **Delete(删除)**。 ![删除发行版按钮](/assets/images/help/releases/delete-release.png) +3. Click the name of the release you wish to delete. + ![Link to view release](/assets/images/help/releases/release-name-link.png) +4. In the upper-right corner of the page, click **Delete**. + ![Delete release button](/assets/images/help/releases/delete-release.png) {% endif %} -5. 单击 **Delete this release(删除此发行版)**。 ![确认删除发行版](/assets/images/help/releases/confirm-delete-release.png) +5. Click **Delete this release**. + ![Confirm delete release](/assets/images/help/releases/confirm-delete-release.png) {% endwebui %} diff --git a/translations/zh-CN/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md b/translations/zh-CN/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md index ad864238a0..393e6eb56c 100644 --- a/translations/zh-CN/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md +++ b/translations/zh-CN/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md @@ -1,8 +1,8 @@ --- -title: 查看仓库的发行版和标记 -intro: 您可以按发行版名称或标记版本号查看仓库的时间记录。 +title: Viewing your repository's releases and tags +intro: You can view the chronological history of your repository by release name or tag version number. redirect_from: - - /articles/working-with-tags/ + - /articles/working-with-tags - /articles/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-tags - /github/administering-a-repository/viewing-your-repositorys-releases-and-tags @@ -14,29 +14,29 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 查看版本和标记 +shortTitle: View releases & tags --- - {% ifversion fpt or ghae or ghes or ghec %} {% tip %} -**提示**:您也可以使用 {% data variables.product.prodname_cli %} 查看发行版。 更多信息请参阅 {% data variables.product.prodname_cli %} 文档中的“[`gh 发行版视图`](https://cli.github.com/manual/gh_release_view)”。 +**Tip**: You can also view a release using the {% data variables.product.prodname_cli %}. For more information, see "[`gh release view`](https://cli.github.com/manual/gh_release_view)" in the {% data variables.product.prodname_cli %} documentation. {% endtip %} {% endif %} -## 查看发行版 +## Viewing releases {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. 在 Releases(发行版)页面的顶部,单击 **Releases(发行版)**。 +2. At the top of the Releases page, click **Releases**. -## 查看标记 +## Viewing tags {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} -2. 在 Releases(版本)页面的顶部,单击 **Tags(标记)**。 ![标记页面](/assets/images/help/releases/tags-list.png) +2. At the top of the Releases page, click **Tags**. +![Tags page](/assets/images/help/releases/tags-list.png) -## 延伸阅读 +## Further reading -- "[对标记签名](/articles/signing-tags)" +- "[Signing tags](/articles/signing-tags)" diff --git a/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md b/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md index cc17d9d120..2a5f059245 100644 --- a/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md +++ b/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md @@ -1,8 +1,8 @@ --- -title: 关于仓库图 -intro: 仓库图可帮助您查看和分析仓库的数据。 +title: About repository graphs +intro: Repository graphs help you view and analyze data for your repository. redirect_from: - - /articles/using-graphs/ + - /articles/using-graphs - /articles/about-repository-graphs - /github/visualizing-repository-data-with-graphs/about-repository-graphs - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/about-repository-graphs @@ -14,19 +14,18 @@ versions: topics: - Repositories --- - -仓库图提供有关 {% ifversion fpt or ghec %} 流量、依赖于仓库的项目、{% endif %}仓库贡献者和提交以及仓库复刻和网络的信息。 如果是您维护仓库,您可以使用此数据更好地了解谁在使用您的仓库,以及为什么使用。 +A repository's graphs give you information on {% ifversion fpt or ghec %} traffic, projects that depend on the repository,{% endif %} contributors and commits to the repository, and a repository's forks and network. If you maintain a repository, you can use this data to get a better understanding of who's using your repository and why they're using it. {% ifversion fpt or ghec %} -有些仓库图仅在具有 {% data variables.product.prodname_free_user %} 的公共仓库中可用: -- 脉冲 -- 贡献者 -- 流量 -- 提交 -- 代码频率 -- 网络 +Some repository graphs are available only in public repositories with {% data variables.product.prodname_free_user %}: +- Pulse +- Contributors +- Traffic +- Commits +- Code frequency +- Network -所有其他仓库图在所有仓库中可用。 每个仓库图在具有 {% data variables.product.prodname_pro %}、{% data variables.product.prodname_team %} 及 {% data variables.product.prodname_ghe_cloud %} 的公共和私有仓库中可用。 {% data reusables.gated-features.more-info %} +All other repository graphs are available in all repositories. Every repository graph is available in public and private repositories with {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %}, and {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} {% endif %} diff --git a/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md b/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md index 07a8f80964..02ea78541a 100644 --- a/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md +++ b/translations/zh-CN/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md @@ -1,9 +1,9 @@ --- -title: 查看项目的贡献者 -intro: '您可以查看向仓库{% ifversion fpt or ghec %}及其依赖项{% endif %}贡献提交的人员。' +title: Viewing a project's contributors +intro: 'You can see who contributed commits to a repository{% ifversion fpt or ghec %} and its dependencies{% endif %}.' redirect_from: - - /articles/i-don-t-see-myself-in-the-contributions-graph/ - - /articles/viewing-contribution-activity-in-a-repository/ + - /articles/i-don-t-see-myself-in-the-contributions-graph + - /articles/viewing-contribution-activity-in-a-repository - /articles/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/viewing-a-projects-contributors - /github/visualizing-repository-data-with-graphs/accessing-basic-repository-data/viewing-a-projects-contributors @@ -15,37 +15,38 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 查看项目贡献者 +shortTitle: View project contributors --- +## About contributors -## 关于贡献者 - -您可以在贡献者图中查看仓库的前 100 名贡献者{% ifversion ghes or ghae %},包括提交合作作者{% endif %}。 合并提交和空提交不会计为此图的贡献。 +You can view the top 100 contributors to a repository{% ifversion ghes or ghae %}, including commit co-authors,{% endif %} in the contributors graph. Merge commits and empty commits aren't counted as contributions for this graph. {% ifversion fpt or ghec %} -您还可以看到为项目的 Python 依赖项做出贡献的人员列表。 要访问此社区贡献者列表,请访问 `https://github.com/REPO-OWNER/REPO-NAME/community_contributors`。 +You can also see a list of people who have contributed to the project's Python dependencies. To access this list of community contributors, visit `https://github.com/REPO-OWNER/REPO-NAME/community_contributors`. {% endif %} -## 访问贡献者图 +## Accessing the contributors graph {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.accessing-repository-graphs %} -3. 在左侧边栏中,单击 **Contributors(贡献者)**。 ![贡献者选项卡](/assets/images/help/graphs/contributors_tab.png) -4. (可选)要查看特定时间段内的贡献者,单击然后拖动,直到选择时间段。 贡献者图在每个周日汇总每周提交数,因此您设置的时间段必须包括周日。 ![贡献者图中选择的时间范围](/assets/images/help/graphs/repo_contributors_click_drag_graph.png) +3. In the left sidebar, click **Contributors**. + ![Contributors tab](/assets/images/help/graphs/contributors_tab.png) +4. Optionally, to view contributors during a specific time period, click, then drag until the time period is selected. The contributors graph sums weekly commit numbers onto each Sunday, so your time period must include a Sunday. + ![Selected time range in the contributors graph](/assets/images/help/graphs/repo_contributors_click_drag_graph.png) -## 贡献者疑难解答 +## Troubleshooting contributors -如果您没有在仓库的贡献者图中显示,可能是因为: -- 您并非前 100 名贡献者之一。 -- 您的提交尚未合并到默认分支。 -- 您用于创作提交的电子邮件地址未连接到到您的 {% data variables.product.product_name %} 帐户。 +If you don't appear in a repository's contributors graph, it may be because: +- You aren't one of the top 100 contributors. +- Your commits haven't been merged into the default branch. +- The email address you used to author the commits isn't connected to your account on {% data variables.product.product_name %}. {% tip %} -**提示:**要列出仓库中的所有提交贡献者,请参阅“[仓库](/rest/reference/repos#list-contributors)”。 +**Tip:** To list all commit contributors in a repository, see "[Repositories](/rest/reference/repos#list-contributors)." {% endtip %} -如果仓库中的所有提交均位于非默认分支中,则您不在贡献者图中。 例如,除非 `gh-pages` 是仓库的默认分支,否则 `gh-pages` 分支上的提交不包含在图中。 要将您的提交合并到默认分支,您可以创建拉取请求。 更多信息请参阅“[关于拉取请求](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)”。 +If all your commits in the repository are on non-default branches, you won't be in the contributors graph. For example, commits on the `gh-pages` branch aren't included in the graph unless `gh-pages` is the repository's default branch. To have your commits merged into the default branch, you can create a pull request. For more information, see "[About pull requests](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)." -如果您用于创作提交的电子邮件地址未连接到您的 {% data variables.product.product_name %} 帐户,则提交不会链接到您的帐户,并且您不会在贡献者图中显示。 更多信息请参阅“[设置提交电子邮件地址](/articles/setting-your-commit-email-address){% ifversion not ghae %}”和“[添加电子邮件地址到 {% data variables.product.prodname_dotcom %} 帐户](/articles/adding-an-email-address-to-your-github-account){% endif %}”。 +If the email address you used to author the commits is not connected to your account on {% data variables.product.product_name %}, your commits won't be linked to your account, and you won't appear in the contributors graph. For more information, see "[Setting your commit email address](/articles/setting-your-commit-email-address){% ifversion not ghae %}" and "[Adding an email address to your {% data variables.product.prodname_dotcom %} account](/articles/adding-an-email-address-to-your-github-account){% endif %}." diff --git a/translations/zh-CN/content/repositories/working-with-files/index.md b/translations/zh-CN/content/repositories/working-with-files/index.md index 8a03d297e2..1e874875f7 100644 --- a/translations/zh-CN/content/repositories/working-with-files/index.md +++ b/translations/zh-CN/content/repositories/working-with-files/index.md @@ -2,8 +2,8 @@ title: Working with files intro: Learn how to manage and use files in repositories. redirect_from: - - /categories/81/articles/ - - /categories/manipulating-files/ + - /categories/81/articles + - /categories/manipulating-files - /categories/managing-files-in-a-repository - /github/managing-files-in-a-repository versions: diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-files/editing-files.md b/translations/zh-CN/content/repositories/working-with-files/managing-files/editing-files.md index e1f0d3c9b1..b52562a21b 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-files/editing-files.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-files/editing-files.md @@ -1,8 +1,8 @@ --- title: Editing files -intro: '您可以使用文件编辑器,在任何仓库中的 {% data variables.product.product_name %} 上直接编辑文件。' +intro: 'You can edit files directly on {% data variables.product.product_name %} in any of your repositories using the file editor.' redirect_from: - - /articles/editing-files/ + - /articles/editing-files - /articles/editing-files-in-your-repository - /github/managing-files-in-a-repository/editing-files-in-your-repository - /articles/editing-files-in-another-user-s-repository @@ -19,39 +19,44 @@ topics: shortTitle: Edit files --- -## 编辑仓库中的文件 +## Editing files in your repository {% tip %} -**提示**:{% data reusables.repositories.protected-branches-block-web-edits-uploads %} +**Tip**: {% data reusables.repositories.protected-branches-block-web-edits-uploads %} {% endtip %} {% note %} -**注意:** {% data variables.product.product_name %} 的文件编辑器使用 [CodeMirror](https://codemirror.net/)。 +**Note:** {% data variables.product.product_name %}'s file editor uses [CodeMirror](https://codemirror.net/). {% endnote %} -1. 在您的仓库中,浏览至要编辑的文件。 +1. In your repository, browse to the file you want to edit. {% data reusables.repositories.edit-file %} -3. 在 **Edit file(编辑文件)** 选项卡上,对文件做所需的更改。 ![文件中的新内容](/assets/images/help/repository/edit-readme-light.png) +3. On the **Edit file** tab, make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} {% data reusables.files.choose_commit_branch %} {% data reusables.files.propose_file_change %} -## 编辑其他用户仓库中的文件 +## Editing files in another user's repository When you edit a file in another user's repository, we'll automatically [fork the repository](/articles/fork-a-repo) and [open a pull request](/articles/creating-a-pull-request) for you. -1. 才其他用户的仓库中,浏览到包含要编辑文件的文件夹。 单击要编辑文件的名称。 -2. 在文件内容上方,单击 {% octicon "pencil" aria-label="The edit icon" %}。 此时,GitHub 会为您复刻仓库。 -3. 对文件做任何需要的更改。 ![文件中的新内容](/assets/images/help/repository/edit-readme-light.png) +1. In another user's repository, browse to the folder that contains the file you want to edit. Click the name of the file you want to edit. +2. Above the file content, click {% octicon "pencil" aria-label="The edit icon" %}. At this point, GitHub forks the repository for you. +3. Make any changes you need to the file. +![New content in file](/assets/images/help/repository/edit-readme-light.png) {% data reusables.files.preview_change %} {% data reusables.files.write_commit_message %} {% data reusables.files.choose-commit-email %} -6. 单击 **Propose file change(提议文件更改)**。 ![提交更改按钮](/assets/images/help/repository/propose_file_change_button.png) -7. 为您的拉取请求输标题和说明。 ![拉取请求说明页面](/assets/images/help/pull_requests/pullrequest-description.png) -8. 单击 **Create pull request(创建拉取请求)**。 ![拉取请求按钮](/assets/images/help/pull_requests/pullrequest-send.png) +6. Click **Propose file change**. +![Commit Changes button](/assets/images/help/repository/propose_file_change_button.png) +7. Type a title and description for your pull request. +![Pull Request description page](/assets/images/help/pull_requests/pullrequest-description.png) +8. Click **Create pull request**. +![Pull Request button](/assets/images/help/pull_requests/pullrequest-send.png) diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md index e4cbbcd5e2..284c0fc933 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: 关于 Git Large File Storage +title: About Git Large File Storage intro: '{% data variables.product.product_name %} limits the size of files allowed in repositories. To track files beyond this limit, you can use {% data variables.large_files.product_name_long %}.' redirect_from: - - /articles/about-large-file-storage/ + - /articles/about-large-file-storage - /articles/about-git-large-file-storage - /github/managing-large-files/about-git-large-file-storage - /github/managing-large-files/versioning-large-files/about-git-large-file-storage @@ -14,29 +14,29 @@ versions: shortTitle: Git Large File Storage --- -## 关于 {% data variables.large_files.product_name_long %} +## About {% data variables.large_files.product_name_long %} -{% data variables.large_files.product_name_short %} 处理大文件的方式是存储对仓库中文件的引用,而不实际文件本身。 为满足 Git 的架构要求,{% data variables.large_files.product_name_short %} 创建了指针文件,用于对实际文件(存储在其他位置)的引用。 {% data variables.product.product_name %} 在仓库中管理此指针文件。 克隆仓库时,{% data variables.product.product_name %} 使用指针文件作为映射来查找大文件。 +{% data variables.large_files.product_name_short %} handles large files by storing references to the file in the repository, but not the actual file itself. To work around Git's architecture, {% data variables.large_files.product_name_short %} creates a pointer file which acts as a reference to the actual file (which is stored somewhere else). {% data variables.product.product_name %} manages this pointer file in your repository. When you clone the repository down, {% data variables.product.product_name %} uses the pointer file as a map to go and find the large file for you. {% ifversion fpt or ghec %} -使用 {% data variables.large_files.product_name_short %},可以将文件存储到: +Using {% data variables.large_files.product_name_short %}, you can store files up to: -| 产品 | 最大文件大小 | -| ------------------------------------------------- | ---------------- | -| {% data variables.product.prodname_free_user %} | 2 GB | -| {% data variables.product.prodname_pro %} | 2 GB | -| {% data variables.product.prodname_team %} | 4 GB | +| Product | Maximum file size | +|------- | ------- | +| {% data variables.product.prodname_free_user %} | 2 GB | +| {% data variables.product.prodname_pro %} | 2 GB | +| {% data variables.product.prodname_team %} | 4 GB | | {% data variables.product.prodname_ghe_cloud %} | 5 GB |{% else %} - 使用 {% data variables.large_files.product_name_short %},可在仓库中存储最大 5 GB 的文件。 -{% endif %} +Using {% data variables.large_files.product_name_short %}, you can store files up to 5 GB in your repository. +{% endif %} -您也可以将 {% data variables.large_files.product_name_short %} 与 {% data variables.product.prodname_desktop %} 结合使用。 有关在 {% data variables.product.prodname_desktop %} 中克隆 Git LFS 仓库的更多信息,请参阅"[将仓库从 GitHub 克隆到 GitHub Desktop](/desktop/guides/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop)"。 +You can also use {% data variables.large_files.product_name_short %} with {% data variables.product.prodname_desktop %}. For more information about cloning Git LFS repositories in {% data variables.product.prodname_desktop %}, see "[Cloning a repository from GitHub to GitHub Desktop](/desktop/guides/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop)." {% data reusables.large_files.can-include-lfs-objects-archives %} -## 指针文件格式 +## Pointer file format -{% data variables.large_files.product_name_short %} 的指针文件看起来像: +{% data variables.large_files.product_name_short %}'s pointer file looks like this: ``` version {% data variables.large_files.version_name %} @@ -44,16 +44,16 @@ oid sha256:4cac19622fc3ada9c0fdeadb33f88f367b541f38b89102a3f1261ac81fd5bcb5 size 84977953 ``` -它会跟踪所用 {% data variables.large_files.product_name_short %} 的 `version`,后接文件的唯一标识符 (`oid`)。 它还会存储最终文件的 `size`。 +It tracks the `version` of {% data variables.large_files.product_name_short %} you're using, followed by a unique identifier for the file (`oid`). It also stores the `size` of the final file. {% note %} -**注意**: -- {% data variables.large_files.product_name_short %} 不能用于 {% data variables.product.prodname_pages %} 站点。 -- {% data variables.large_files.product_name_short %} 不能用于模板仓库。 - +**Notes**: +- {% data variables.large_files.product_name_short %} cannot be used with {% data variables.product.prodname_pages %} sites. +- {% data variables.large_files.product_name_short %} cannot be used with template repositories. + {% endnote %} -## 延伸阅读 +## Further reading -- "[使用 {% data variables.large_files.product_name_long %} 进行协作](/articles/collaboration-with-git-large-file-storage)" +- "[Collaboration with {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage)" diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md index 37931b2484..575108e57e 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-large-files-on-github.md @@ -12,7 +12,7 @@ redirect_from: - /articles/conditions-for-large-files - /github/managing-large-files/conditions-for-large-files - /github/managing-large-files/working-with-large-files/conditions-for-large-files - - /articles/what-is-the-size-limit-for-a-repository/ + - /articles/what-is-the-size-limit-for-a-repository - /articles/what-is-my-disk-quota - /github/managing-large-files/what-is-my-disk-quota - /github/managing-large-files/working-with-large-files/what-is-my-disk-quota @@ -27,80 +27,80 @@ shortTitle: Large files ## About size limits on {% data variables.product.product_name %} {% ifversion fpt or ghec %} -{% data variables.product.product_name %} 尝试为所有 Git 仓库提供丰富的存储空间,尽管文件和仓库大小存在硬性限制。 为确保用户的性能和可靠性,我们积极监控整个仓库运行状况的信号。 仓库运行状况是各种交互因素共同作用的结果,包括大小、提交频率、内容和结构。 +{% data variables.product.product_name %} tries to provide abundant storage for all Git repositories, although there are hard limits for file and repository sizes. To ensure performance and reliability for our users, we actively monitor signals of overall repository health. Repository health is a function of various interacting factors, including size, commit frequency, contents, and structure. ### File size limits {% endif %} -{% data variables.product.product_name %} limits the size of files allowed in repositories. 如果尝试添加或更新大于 {% data variables.large_files.warning_size %} 的文件,您将从 Git 收到警告。 更改仍将成功推送到仓库,但您可以考虑删除提交,以尽量减少对性能的影响。 更多信息请参阅“[从仓库的历史记录中删除文件](#removing-files-from-a-repositorys-history)”。 +{% data variables.product.product_name %} limits the size of files allowed in repositories. If you attempt to add or update a file that is larger than {% data variables.large_files.warning_size %}, you will receive a warning from Git. The changes will still successfully push to your repository, but you can consider removing the commit to minimize performance impact. For more information, see "[Removing files from a repository's history](#removing-files-from-a-repositorys-history)." {% note %} -**注:**如果您通过浏览器将文件添加到仓库,该文件不得大于 {% data variables.large_files.max_github_browser_size %}。 更多信息请参阅“[添加文件到仓库](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)”。 +**Note:** If you add a file to a repository via a browser, the file can be no larger than {% data variables.large_files.max_github_browser_size %}. For more information, see "[Adding a file to a repository](/repositories/working-with-files/managing-files/adding-a-file-to-a-repository)." {% endnote %} -{% ifversion ghes %}默认情况下, {% endif %}{% data variables.product.product_name %} 阻止超过 {% data variables.large_files.max_github_size %} 的推送。 {% ifversion ghes %}但站点管理员可为您的 {% data variables.product.product_location %} 配置不同的限制。 For more information, see "[Setting Git push limits](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)."{% endif %} +{% ifversion ghes %}By default, {% endif %}{% data variables.product.product_name %} blocks pushes that exceed {% data variables.large_files.max_github_size %}. {% ifversion ghes %}However, a site administrator can configure a different limit for {% data variables.product.product_location %}. For more information, see "[Setting Git push limits](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-git-push-limits)."{% endif %} To track files beyond this limit, you must use {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}). For more information, see "[About {% data variables.large_files.product_name_long %}](/repositories/working-with-files/managing-large-files/about-git-large-file-storage)." -If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %} instead of tracking the files. 更多信息请参阅“[分发大型二进制文件](#distributing-large-binaries)”。 +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %} instead of tracking the files. For more information, see "[Distributing large binaries](#distributing-large-binaries)." -Git is not designed to handle large SQL files. 要与其他开发者共享大型数据库,建议使用 [Dropbox](https://www.dropbox.com/)。 +Git is not designed to handle large SQL files. To share large databases with other developers, we recommend using [Dropbox](https://www.dropbox.com/). {% ifversion fpt or ghec %} ### Repository size limits -建议仓库保持较小,理想情况下小于 1 GB,强烈建议小于 5 GB。 较小的仓库克隆速度更快,使用和维护更容易。 如果您的仓库过度影响我们的基础架构,您可能会收到来自 {% data variables.contact.github_support %} 的电子邮件,要求您采取纠正措施。 我们力求灵活,特别是对于拥有很多协作者的大型项目,并且尽可能与您一起找到解决方案。 您可以有效地管理仓库的大小和整体运行状况,以免您的仓库影响我们的基础架构。 在 [`github/git-sizer`](https://github.com/github/git-sizer) 仓库中可以找到用于仓库分析的建议和工具。 +We recommend repositories remain small, ideally less than 1 GB, and less than 5 GB is strongly recommended. Smaller repositories are faster to clone and easier to work with and maintain. If your repository excessively impacts our infrastructure, you might receive an email from {% data variables.contact.github_support %} asking you to take corrective action. We try to be flexible, especially with large projects that have many collaborators, and will work with you to find a resolution whenever possible. You can prevent your repository from impacting our infrastructure by effectively managing your repository's size and overall health. You can find advice and a tool for repository analysis in the [`github/git-sizer`](https://github.com/github/git-sizer) repository. -外部依赖项可能导致 Git 仓库变得非常大。 为避免外部依赖项填满仓库,建议您使用包管理器。 常用语言的热门包管理器包括 [Bundler](http://bundler.io/)、[Node's Package Manager](http://npmjs.org/) 和 [Maven](http://maven.apache.org/)。 这些包管理器支持直接使用 Git 仓库,因此不需要预打包的来源。 +External dependencies can cause Git repositories to become very large. To avoid filling a repository with external dependencies, we recommend you use a package manager. Popular package managers for common languages include [Bundler](http://bundler.io/), [Node's Package Manager](http://npmjs.org/), and [Maven](http://maven.apache.org/). These package managers support using Git repositories directly, so you don't need pre-packaged sources. -Git 未设计为用作备份工具。 但有许多专门设计用于执行备份的解决方案例如 [Arq](https://www.arqbackup.com/)、[Carbonite](http://www.carbonite.com/) 和 [CrashPlan](https://www.crashplan.com/en-us/)。 +Git is not designed to serve as a backup tool. However, there are many solutions specifically designed for performing backups, such as [Arq](https://www.arqbackup.com/), [Carbonite](http://www.carbonite.com/), and [CrashPlan](https://www.crashplan.com/en-us/). {% endif %} -## 从仓库的历史记录中删除文件 +## Removing files from a repository's history {% warning %} -**警告**:这些步骤将从您的计算机和 {% data variables.product.product_location %} 上的仓库中永久删除文件。 如果文件很重要,请在仓库外部的目录中创建本地备份副本。 +**Warning**: These procedures will permanently remove files from the repository on your computer and {% data variables.product.product_location %}. If the file is important, make a local backup copy in a directory outside of the repository. {% endwarning %} -### 删除在最近未推送的提交中添加的文件 +### Removing a file added in the most recent unpushed commit -如果文件使用最近的提交添加,而您尚未推送到 {% data variables.product.product_location %},您可以删除文件并修改提交: +If the file was added with your most recent commit, and you have not pushed to {% data variables.product.product_location %}, you can delete the file and amend the commit: {% data reusables.command_line.open_the_multi_os_terminal %} {% data reusables.command_line.switching_directories_procedural %} -3. 要删除文件,请输入 `git rm --cached`: +3. To remove the file, enter `git rm --cached`: ```shell $ git rm --cached <em>giant_file</em> # Stage our giant file for removal, but leave it on disk ``` -4. 使用 `--amend -CHEAD` 提交此更改: +4. Commit this change using `--amend -CHEAD`: ```shell $ git commit --amend -CHEAD # Amend the previous commit with your change # Simply making a new commit won't work, as you need # to remove the file from the unpushed history as well ``` -5. 将提交推送到 {% data variables.product.product_location %}: +5. Push your commits to {% data variables.product.product_location %}: ```shell $ git push # Push our rewritten, smaller commit ``` -### 删除之前提交中添加的文件 +### Removing a file that was added in an earlier commit -如果在之前的提交中添加了文件,则需要将其从仓库历史记录中删除。 要从仓库历史记录中删除文件,可以使用 BFG Repo-Cleaner 或 `git filter-branch` 命令。 更多信息请参阅“[从仓库中删除敏感数据](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)”。 +If you added a file in an earlier commit, you need to remove it from the repository's history. To remove files from the repository's history, you can use the BFG Repo-Cleaner or the `git filter-branch` command. For more information see "[Removing sensitive data from a repository](/github/authenticating-to-github/removing-sensitive-data-from-a-repository)." -## 分发大型二进制文件 +## Distributing large binaries -如果需要在仓库内分发大型文件,您可以在 {% data variables.product.product_location %} 上创建发行版。 发行版允许您打包软件、发行说明和指向二进制文件的链接,以供其他人使用。 更多信息请参阅“[关于发行版](/github/administering-a-repository/about-releases)”。 +If you need to distribute large files within your repository, you can create releases on {% data variables.product.product_location %}. Releases allow you to package software, release notes, and links to binary files, for other people to use. For more information, visit "[About releases](/github/administering-a-repository/about-releases)." {% ifversion fpt or ghec %} -我们不限制二进制发行版文件的总大小,也不限制用于传递它们的带宽。 但每个文件必须小于 {% data variables.large_files.max_lfs_size %}。 +We don't limit the total size of the binary files in the release or the bandwidth used to deliver them. However, each individual file must be smaller than {% data variables.large_files.max_lfs_size %}. {% endif %} diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md index 3d5ae5b7bd..d8b8b08de9 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage.md @@ -1,50 +1,49 @@ --- -title: 关于存储和带宽使用情况 +title: About storage and bandwidth usage intro: '{% data reusables.large_files.free-storage-bandwidth-amount %}' redirect_from: - - /articles/billing-plans-for-large-file-storage/ - - /articles/billing-plans-for-git-large-file-storage/ + - /articles/billing-plans-for-large-file-storage + - /articles/billing-plans-for-git-large-file-storage - /articles/about-storage-and-bandwidth-usage - /github/managing-large-files/about-storage-and-bandwidth-usage - /github/managing-large-files/versioning-large-files/about-storage-and-bandwidth-usage versions: fpt: '*' ghec: '*' -shortTitle: 存储和带宽 +shortTitle: Storage & bandwidth --- +{% data variables.large_files.product_name_short %} is available for every repository on {% data variables.product.product_name %}, whether or not your account or organization has a paid subscription. -{% data variables.large_files.product_name_short %} 是适用于 {% data variables.product.product_name %} 上每个仓库的变量,无论您的帐户或组织是否有付费的订阅。 +## Tracking storage and bandwidth use -## 跟踪存储和带宽使用情况 +When you commit and push a change to a file tracked with {% data variables.large_files.product_name_short %}, a new version of the entire file is pushed and the total file size is counted against the repository owner's storage limit. When you download a file tracked with {% data variables.large_files.product_name_short %}, the total file size is counted against the repository owner's bandwidth limit. {% data variables.large_files.product_name_short %} uploads do not count against the bandwidth limit. -在提交和推送更改到使用 {% data variables.large_files.product_name_short %} 跟踪的文件时,会推送整个文件的新版本,并且根据仓库所有者的存储单位计算文件的总大小。 在下载使用 {% data variables.large_files.product_name_short %} 跟踪的文件时,根据仓库所有者的带宽限制计算文件的总大小。 {% data variables.large_files.product_name_short %} 上传不根据带宽限制进行计算。 - -例如: -- 如果将 500 MB 文件推送到 {% data variables.large_files.product_name_short %},您将使用 500 MB 的分配存储空间,而不使用带宽。 如果进行 1 个字节的更改后再次推送文件,您会使用另外 500 MB 的存储空间,但仍然不使用带宽,所以两次推送的总使用量是 1 GB 存储空间和零带宽。 -- 如果下载一个使用 LFS 跟踪的 500 MB 文件,您将使用仓库所有者分配的 500 MB 带宽。 如果协作者推送文件更改并将新版本拉取到本地仓库,您将使用另外 500 MB 的带宽,所以两次下载的总使用量是 1 GB 带宽。 +For example: +- If you push a 500 MB file to {% data variables.large_files.product_name_short %}, you'll use 500 MB of your allotted storage and none of your bandwidth. If you make a 1 byte change and push the file again, you'll use another 500 MB of storage and no bandwidth, bringing your total usage for these two pushes to 1 GB of storage and zero bandwidth. +- If you download a 500 MB file that's tracked with LFS, you'll use 500 MB of the repository owner's allotted bandwidth. If a collaborator pushes a change to the file and you pull the new version to your local repository, you'll use another 500 MB of bandwidth, bringing the total usage for these two downloads to 1 GB of bandwidth. - If {% data variables.product.prodname_actions %} downloads a 500 MB file that is tracked with LFS, it will use 500 MB of the repository owner's allotted bandwidth. {% ifversion fpt or ghec %} -如果 {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) 对象包含在仓库的源代码存档中,则下载这些存档将会计入仓库的带宽使用量。 更多信息请参阅“[管理仓库存档中的 {% data variables.large_files.product_name_short %} 对象](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)”。 +If {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in source code archives for your repository, downloads of those archives will count towards bandwidth usage for the repository. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)." {% endif %} {% tip %} -**提示**: +**Tips**: - {% data reusables.large_files.owner_quota_only %} - {% data reusables.large_files.does_not_carry %} {% endtip %} -## 存储配额 +## Storage quota -如果使用的存储空间超过 {% data variables.large_files.initial_storage_quota %} 而又未购买数据包,您仍可克隆包含大资产的仓库,但只能检索指针文件,而不能推送新文件备份。 有关指针文件的更多信息,请参阅“[关于 {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)”。 +If you use more than {% data variables.large_files.initial_storage_quota %} of storage without purchasing a data pack, you can still clone repositories with large assets, but you will only retrieve the pointer files, and you will not be able to push new files back up. For more information about pointer files, see "[About {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)." -## 带宽配额 +## Bandwidth quota -如果每月使用的带宽超过{% data variables.large_files.initial_bandwidth_quota %}而又未购买数据包,{% data variables.large_files.product_name_short %} 支持会对您的帐户禁用至下个月。 +If you use more than {% data variables.large_files.initial_bandwidth_quota %} of bandwidth per month without purchasing a data pack, {% data variables.large_files.product_name_short %} support is disabled on your account until the next month. -## 延伸阅读 +## Further reading -- "[查看您的 {% data variables.large_files.product_name_long %} 使用情况](/articles/viewing-your-git-large-file-storage-usage)" -- "[管理 {% data variables.large_files.product_name_long %} 的计费](/articles/managing-billing-for-git-large-file-storage)" +- "[Viewing your {% data variables.large_files.product_name_long %} usage](/articles/viewing-your-git-large-file-storage-usage)" +- "[Managing billing for {% data variables.large_files.product_name_long %}](/articles/managing-billing-for-git-large-file-storage)" diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md index f00e39a311..f1cd37622a 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: 协作处理 Git Large File Storage -intro: '启用 {% data variables.large_files.product_name_short %} 后,您就可以像使用 Git 管理的任何文件一样获取、修改和推送大文件。 但是,没有 {% data variables.large_files.product_name_short %} 的用户将经历不同的工作流程。' +title: Collaboration with Git Large File Storage +intro: 'With {% data variables.large_files.product_name_short %} enabled, you''ll be able to fetch, modify, and push large files just as you would expect with any file that Git manages. However, a user that doesn''t have {% data variables.large_files.product_name_short %} will experience a different workflow.' redirect_from: - - /articles/collaboration-with-large-file-storage/ + - /articles/collaboration-with-large-file-storage - /articles/collaboration-with-git-large-file-storage - /github/managing-large-files/collaboration-with-git-large-file-storage - /github/managing-large-files/versioning-large-files/collaboration-with-git-large-file-storage @@ -11,37 +11,36 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: 协作 +shortTitle: Collaboration --- - -如果仓库上的协作者未安装 {% data variables.large_files.product_name_short %},他们将无法访问原始大文件。 如果他们尝试克隆您的仓库,则只能获取指针文件,而无法访问任何实际数据。 +If collaborators on your repository don't have {% data variables.large_files.product_name_short %} installed, they won't have access to the original large file. If they attempt to clone your repository, they will only fetch the pointer files, and won't have access to any of the actual data. {% tip %} -**提示:**为帮助未启用 {% data variables.large_files.product_name_short %} 的用户,我们建议您设置仓库贡献者指南以介绍如何处理大文件。 例如,您可以要求贡献者不修改大文件,或者将更改上传到文件共享服务,如 [Dropbox](http://www.dropbox.com/) 或 <a href="https://drive.google.com/" data-proofer-ignore>Google Drive</a>。 更多信息请参阅“[设置仓库参与者指南](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)”。 +**Tip:** To help users without {% data variables.large_files.product_name_short %} enabled, we recommend you set guidelines for repository contributors that describe how to work with large files. For example, you may ask contributors not to modify large files, or to upload changes to a file sharing service like [Dropbox](http://www.dropbox.com/) or <a href="https://drive.google.com/" data-proofer-ignore>Google Drive</a>. For more information, see "[Setting guidelines for repository contributors](/communities/setting-up-your-project-for-healthy-contributions/setting-guidelines-for-repository-contributors)." {% endtip %} -## 查看拉取请求中的大文件 +## Viewing large files in pull requests -{% data variables.product.product_name %} 不会渲染拉取请求中的 {% data variables.large_files.product_name_short %} 对象。 仅显示指针文件: +{% data variables.product.product_name %} does not render {% data variables.large_files.product_name_short %} objects in pull requests. Only the pointer file is shown: -![大文件的示例 PR](/assets/images/help/large_files/large_files_pr.png) +![Sample PR for large files](/assets/images/help/large_files/large_files_pr.png) -有关指针文件的更多信息,请参阅“[关于 {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)”。 +For more information about pointer files, see "[About {% data variables.large_files.product_name_long %}](/github/managing-large-files/about-git-large-file-storage#pointer-file-format)." -要查看对大型文件所做的更改,请在本地检出拉取请求以查看差异。 更多信息请参阅“[在本地检出拉取请求](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally)”。 +To view changes made to large files, check out the pull request locally to review the diff. For more information, see "[Checking out pull requests locally](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally)." {% ifversion fpt or ghec %} -## 推送大文件到复刻 +## Pushing large files to forks -将大文件推送到仓库复刻会计入父仓库的带宽和存储配额,而不是复刻所有者的配额。 +Pushing large files to forks of a repository count against the parent repository's bandwidth and storage quotas, rather than the quotas of the fork owner. -如果仓库网络已经有 {% data variables.large_files.product_name_short %} 对象,或者您能够写入仓库网络的根目录,您可以将 {% data variables.large_files.product_name_short %} 对象推送到公共复刻。 +You can push {% data variables.large_files.product_name_short %} objects to public forks if the repository network already has {% data variables.large_files.product_name_short %} objects or you have write access to the root of the repository network. {% endif %} -## 延伸阅读 +## Further reading -- "[复制含有 Git Large File Storage 对象的仓库](/articles/duplicating-a-repository/#mirroring-a-repository-that-contains-git-large-file-storage-objects)" +- "[Duplicating a repository with Git Large File Storage objects](/articles/duplicating-a-repository/#mirroring-a-repository-that-contains-git-large-file-storage-objects)" diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md index db6ed1e7ef..6569c30f30 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: 配置 Git Large File Storage -intro: '安装 [{% data variables.large_files.product_name_short %}] 后 (/articles/installing-git-large-file-storage/),需要将其与仓库中的大文件相关联。' +title: Configuring Git Large File Storage +intro: 'Once [{% data variables.large_files.product_name_short %} is installed](/articles/installing-git-large-file-storage/), you need to associate it with a large file in your repository.' redirect_from: - - /articles/configuring-large-file-storage/ + - /articles/configuring-large-file-storage - /articles/configuring-git-large-file-storage - /github/managing-large-files/configuring-git-large-file-storage - /github/managing-large-files/versioning-large-files/configuring-git-large-file-storage @@ -11,10 +11,9 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: 配置 Git LFS +shortTitle: Configure Git LFS --- - -如果仓库中存在要用于 {% data variables.product.product_name %} 的现有文件,则需要先从仓库中删除它们,然后在本地将其添加到 {% data variables.large_files.product_name_short %}。 更多信息请参阅“[将仓库中的文件移动到 {% data variables.large_files.product_name_short %}](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)”。 +If there are existing files in your repository that you'd like to use {% data variables.product.product_name %} with, you need to first remove them from the repository and then add them to {% data variables.large_files.product_name_short %} locally. For more information, see "[Moving a file in your repository to {% data variables.large_files.product_name_short %}](/articles/moving-a-file-in-your-repository-to-git-large-file-storage)." {% data reusables.large_files.resolving-upload-failures %} @@ -22,46 +21,46 @@ shortTitle: 配置 Git LFS {% tip %} -**注:**尝试向 {% data variables.product.product_name %} 推送大文件之前,请确保在您的企业上启用了 {% data variables.large_files.product_name_short %}。 更多信息请参阅“[在 GitHub Enterprise Server 上配置 Git Large File Storage](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)”。 +**Note:** Before trying to push a large file to {% data variables.product.product_name %}, make sure that you've enabled {% data variables.large_files.product_name_short %} on your enterprise. For more information, see "[Configuring Git Large File Storage on GitHub Enterprise Server](/enterprise/{{ currentVersion }}/admin/guides/installation/configuring-git-large-file-storage-on-github-enterprise-server/)." {% endtip %} {% endif %} {% data reusables.command_line.open_the_multi_os_terminal %} -2. 将当前工作目录更改为要用于 {% data variables.large_files.product_name_short %} 的现有仓库。 -3. 要将仓库中的文件类型与 {% data variables.large_files.product_name_short %} 相关联,请输入 `git {% data variables.large_files.command_name %} track`,后跟要自动上传到 {% data variables.large_files.product_name_short %} 的文件扩展名。 +2. Change your current working directory to an existing repository you'd like to use with {% data variables.large_files.product_name_short %}. +3. To associate a file type in your repository with {% data variables.large_files.product_name_short %}, enter `git {% data variables.large_files.command_name %} track` followed by the name of the file extension you want to automatically upload to {% data variables.large_files.product_name_short %}. - 例如,要关联 _.psd_ 文件,请输入以下命令: + For example, to associate a _.psd_ file, enter the following command: ```shell $ git {% data variables.large_files.command_name %} track "*.psd" > Adding path *.psd ``` - 要与 {% data variables.large_files.product_name_short %} 关联的每个文件类型都需要添加 `git {% data variables.large_files.command_name %} track`。 此命令将修改仓库的 *.gitattributes* 文件,并将大文件与 {% data variables.large_files.product_name_short %} 相关联。 + Every file type you want to associate with {% data variables.large_files.product_name_short %} will need to be added with `git {% data variables.large_files.command_name %} track`. This command amends your repository's *.gitattributes* file and associates large files with {% data variables.large_files.product_name_short %}. {% tip %} - **提示:**我们强烈建议您将本地 *.gitattributes* 文件提交到仓库中。 依赖与 {% data variables.large_files.product_name_short %} 关联的全局 *.gitattributes* 文件,可能会导致在参与其他 Git 项目时发生冲突。 + **Tip:** We strongly suggest that you commit your local *.gitattributes* file into your repository. Relying on a global *.gitattributes* file associated with {% data variables.large_files.product_name_short %} may cause conflicts when contributing to other Git projects. {% endtip %} -4. 将文件添加到与关联的扩展名相匹配的仓库: +4. Add a file to the repository matching the extension you've associated: ```shell $ git add path/to/file.psd ``` -5. 提交文件并将其推送到 {% data variables.product.product_name %}: +5. Commit the file and push it to {% data variables.product.product_name %}: ```shell $ git commit -m "add file.psd" $ git push ``` - 您会看到一些有关文件上传的诊断信息: + You should see some diagnostic information about your file upload: ```shell > Sending file.psd > 44.74 MB / 81.04 MB 55.21 % 14s > 64.74 MB / 81.04 MB 79.21 % 3s ``` -## 延伸阅读 +## Further reading -- "[使用 {% data variables.large_files.product_name_long %} 进行协作](/articles/collaboration-with-git-large-file-storage/)"{% ifversion fpt or ghec %} -- "[管理仓库存档中的 {% data variables.large_files.product_name_short %} 对象](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)"{% endif %} +- "[Collaboration with {% data variables.large_files.product_name_long %}](/articles/collaboration-with-git-large-file-storage/)"{% ifversion fpt or ghec %} +- "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)"{% endif %} diff --git a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md index 397a047ce3..744ea932b5 100644 --- a/translations/zh-CN/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md +++ b/translations/zh-CN/content/repositories/working-with-files/managing-large-files/installing-git-large-file-storage.md @@ -1,8 +1,8 @@ --- -title: 安装 Git Large File Storage -intro: '为使用 {% data variables.large_files.product_name_short %},您需要下载并安装不同于 Git 的新程序。' +title: Installing Git Large File Storage +intro: 'In order to use {% data variables.large_files.product_name_short %}, you''ll need to download and install a new program that''s separate from Git.' redirect_from: - - /articles/installing-large-file-storage/ + - /articles/installing-large-file-storage - /articles/installing-git-large-file-storage - /github/managing-large-files/installing-git-large-file-storage - /github/managing-large-files/versioning-large-files/installing-git-large-file-storage @@ -11,107 +11,106 @@ versions: ghes: '*' ghae: '*' ghec: '*' -shortTitle: 安装 Git LFS +shortTitle: Install Git LFS --- - {% mac %} -1. 导航到 [git-lfs.github.com](https://git-lfs.github.com) 并单击 **Download(下载)**。 也可以使用包管理器安装 {% data variables.large_files.product_name_short %}: - - 要使用 [Homebrew](http://brew.sh/),请运行 `brew install git-lfs`。 - - 要使用 [MacPorts](https://www.macports.org/),请运行 `port install git-lfs`。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. Alternatively, you can install {% data variables.large_files.product_name_short %} using a package manager: + - To use [Homebrew](http://brew.sh/), run `brew install git-lfs`. + - To use [MacPorts](https://www.macports.org/), run `port install git-lfs`. - 如果安装用于 Homebrew 或 MacPorts 的 {% data variables.large_files.product_name_short %},请跳至步骤 6。 + If you install {% data variables.large_files.product_name_short %} with Homebrew or MacPorts, skip to step six. -2. 在计算机上,找到并解压缩下载的文件。 +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. 将当前工作目录更改为您下载并解压缩的文件夹。 +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **注:**在 `cd` 后面使用的文件路径取决于您的操作系统、下载的 Git LFS 版本以及保存 {% data variables.large_files.product_name_short %} 下载的位置。 + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. 要安装该文件,请运行以下命令: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **注:**您可能必须使用 `sudo ./install.sh` 来安装文件。 + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. 验证安装成功: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. 如果未看到表示 `git {% data variables.large_files.command_name %} install` 成功的消息,请联系 {% data variables.contact.contact_support %}。 确保包含操作系统的名称。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endmac %} {% windows %} -1. 导航到 [git-lfs.github.com](https://git-lfs.github.com) 并单击 **Download(下载)**。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **提示:**有关安装 Windows 版 {% data variables.large_files.product_name_short %} 的其他方法的更多信息,请参阅此[入门指南](https://github.com/github/git-lfs#getting-started)。 + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Windows, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. 在计算机上,找到下载的文件。 -3. 双击文件 *git-lfs-windows-1.X.X.exe*,其中 1.X.X 替换为您下载的 Git LFS 版本。 打开此文件时,Windows 将运行安装程序向导以安装 {% data variables.large_files.product_name_short %}。 +2. On your computer, locate the downloaded file. +3. Double click on the file called *git-lfs-windows-1.X.X.exe*, where 1.X.X is replaced with the Git LFS version you downloaded. When you open this file Windows will run a setup wizard to install {% data variables.large_files.product_name_short %}. {% data reusables.command_line.open_the_multi_os_terminal %} -5. 验证安装成功: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. 如果未看到表示 `git {% data variables.large_files.command_name %} install` 成功的消息,请联系 {% data variables.contact.contact_support %}。 确保包含操作系统的名称。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endwindows %} {% linux %} -1. 导航到 [git-lfs.github.com](https://git-lfs.github.com) 并单击 **Download(下载)**。 +1. Navigate to [git-lfs.github.com](https://git-lfs.github.com) and click **Download**. {% tip %} - **提示:**有关安装 Linux 版 {% data variables.large_files.product_name_short %} 的其他方法的更多信息,请参阅此[入门指南](https://github.com/github/git-lfs#getting-started)。 + **Tip:** For more information about alternative ways to install {% data variables.large_files.product_name_short %} for Linux, see this [Getting started guide](https://github.com/github/git-lfs#getting-started). {% endtip %} -2. 在计算机上,找到并解压缩下载的文件。 +2. On your computer, locate and unzip the downloaded file. {% data reusables.command_line.open_the_multi_os_terminal %} -3. 将当前工作目录更改为您下载并解压缩的文件夹。 +3. Change the current working directory into the folder you downloaded and unzipped. ```shell $ cd ~/Downloads/git-lfs-<em>1.X.X</em> ``` {% note %} - **注:**在 `cd` 后面使用的文件路径取决于您的操作系统、下载的 Git LFS 版本以及保存 {% data variables.large_files.product_name_short %} 下载的位置。 + **Note:** The file path you use after `cd` depends on your operating system, Git LFS version you downloaded, and where you saved the {% data variables.large_files.product_name_short %} download. {% endnote %} -4. 要安装该文件,请运行以下命令: +4. To install the file, run this command: ```shell $ ./install.sh > {% data variables.large_files.product_name_short %} initialized. ``` {% note %} - **注:**您可能必须使用 `sudo ./install.sh` 来安装文件。 + **Note:** You may have to use `sudo ./install.sh` to install the file. {% endnote %} -5. 验证安装成功: +5. Verify that the installation was successful: ```shell $ git {% data variables.large_files.command_name %} install > {% data variables.large_files.product_name_short %} initialized. ``` -6. 如果未看到表示 `git {% data variables.large_files.command_name %} install` 成功的消息,请联系 {% data variables.contact.contact_support %}。 确保包含操作系统的名称。 +6. If you don't see a message indicating that `git {% data variables.large_files.command_name %} install` was successful, please contact {% data variables.contact.contact_support %}. Be sure to include the name of your operating system. {% endlinux %} -## 延伸阅读 +## Further reading -- "[配置 {% data variables.large_files.product_name_long %}](/articles/configuring-git-large-file-storage)" +- "[Configuring {% data variables.large_files.product_name_long %}](/articles/configuring-git-large-file-storage)" diff --git a/translations/zh-CN/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md b/translations/zh-CN/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md index 142ee1a545..e634289eb4 100644 --- a/translations/zh-CN/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md +++ b/translations/zh-CN/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md @@ -1,9 +1,9 @@ --- -title: 创建文件的永久链接 -intro: '在 {% data variables.product.product_location %} 上查看文件时,您可以按 "y" 键将 URL 更新为指向所查看文件精确版本的永久链接。' +title: Getting permanent links to files +intro: 'When viewing a file on {% data variables.product.product_location %}, you can press the "y" key to update the URL to a permalink to the exact version of the file you see.' redirect_from: - - /articles/getting-a-permanent-link-to-a-file/ - - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url/ + - /articles/getting-a-permanent-link-to-a-file + - /articles/how-do-i-get-a-permanent-link-from-file-view-to-permanent-blob-url - /articles/getting-permanent-links-to-files - /github/managing-files-in-a-repository/getting-permanent-links-to-files - /github/managing-files-in-a-repository/managing-files-on-github/getting-permanent-links-to-files @@ -14,45 +14,44 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 文件的永久链接 +shortTitle: Permanent links to files --- - {% tip %} -**提示**:在 {% data variables.product.product_name %} 的任意页面上按 "?" 键可查看所有可用的键盘快捷键。 +**Tip**: Press "?" on any page in {% data variables.product.product_name %} to see all available keyboard shortcuts. {% endtip %} -## 文件视图显示分支上的最新版本 +## File views show the latest version on a branch -在 {% data variables.product.product_location %} 上查看文件时,通常会在分支头部看到当前版本。 例如: +When viewing a file on {% data variables.product.product_location %}, you usually see the version at the current head of a branch. For example: * [https://github.com/github/codeql/blob/**main**/README.md](https://github.com/github/codeql/blob/main/README.md) -引用 GitHub 的 `codeql` 仓库,并显示 `main` 分支中 `README.md` 文件的当前版本。 +refers to GitHub's `codeql` repository, and shows the `main` branch's current version of the `README.md` file. -分支头部的文件版本可能会随着新的提交而改变,因此如果您复制常规的 URL,当以后有人查看时,文件内容可能会不同。 +The version of a file at the head of branch can change as new commits are made, so if you were to copy the normal URL, the file contents might not be the same when someone looks at it later. -## 按 <kbd>y</kbd> 键可永久链接到特定提交中的文件 +## Press <kbd>y</kbd> to permalink to a file in a specific commit -要创建所查看文件特定版本的永久链接,不要在 URL 中使用分支名称(例如上例中的 `main` 部分),而是输入提交 id。 这将永久链接到该提交中文件的精确版本。 例如: +For a permanent link to the specific version of a file that you see, instead of using a branch name in the URL (i.e. the `main` part in the example above), put a commit id. This will permanently link to the exact version of the file in that commit. For example: * [https://github.com/github/codeql/blob/**b212af08a6cffbb434f3c8a2795a579e092792fd**/README.md](https://github.com/github/codeql/blob/b212af08a6cffbb434f3c8a2795a579e092792fd/README.md) -将 `main` 替换为特定提交 id,文件内容将不会改变。 +replaces `main` with a specific commit id and the file content will not change. -但是,手动查找提交 SHA 比较麻烦,因此您可以采用便捷方式,通过键入 <kbd>y</kbd> 将 URL 自动更新为永久链接版本。 然后,您可以复制该 URL,以后访问它的任何人都将看到与您所见完全一致的内容。 +Looking up the commit SHA by hand is inconvenient, however, so as a shortcut you can type <kbd>y</kbd> to automatically update the URL to the permalink version. Then you can copy the URL knowing that anyone you share it with will see exactly what you saw. {% tip %} -**提示**:您可以将可解析为提交的任何标识符放在 URL 中,包括分支名称、特定提交 SHA 或标记! +**Tip**: You can put any identifier that can be resolved to a commit in the URL, including branch names, specific commit SHAs, or tags! {% endtip %} -## 创建指向代码段的永久链接 +## Creating a permanent link to a code snippet -您可以创建指向特定版本的文件或拉取请求中特定代码行或行范围的永久链接。 更多信息请参阅“[创建指向代码段的永久链接](/articles/creating-a-permanent-link-to-a-code-snippet/)”。 +You can create a permanent link to a specific line or range of lines of code in a specific version of a file or pull request. For more information, see "[Creating a permanent link to a code snippet](/articles/creating-a-permanent-link-to-a-code-snippet/)." -## 延伸阅读 +## Further reading -- "[存档 GitHub 仓库](/articles/archiving-a-github-repository)" +- "[Archiving a GitHub repository](/articles/archiving-a-github-repository)" diff --git a/translations/zh-CN/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md b/translations/zh-CN/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md index 5a15bc107c..2aa33de78a 100644 --- a/translations/zh-CN/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md +++ b/translations/zh-CN/content/repositories/working-with-files/using-files/tracking-changes-in-a-file.md @@ -1,9 +1,9 @@ --- -title: 跟踪文件中的更改 -intro: 您可以跟踪对文件中各行的更改,了解文件的各部分如何随着时间推移而发生变化。 +title: Tracking changes in a file +intro: You can trace changes to lines in a file and discover how parts of the file evolved over time. redirect_from: - - /articles/using-git-blame-to-trace-changes-in-a-file/ - - /articles/tracing-changes-in-a-file/ + - /articles/using-git-blame-to-trace-changes-in-a-file + - /articles/tracing-changes-in-a-file - /articles/tracking-changes-in-a-file - /github/managing-files-in-a-repository/tracking-changes-in-a-file - /github/managing-files-in-a-repository/managing-files-on-github/tracking-changes-in-a-file @@ -14,24 +14,25 @@ versions: ghec: '*' topics: - Repositories -shortTitle: 跟踪文件更改 +shortTitle: Track file changes --- +With the blame view, you can view the line-by-line revision history for an entire file, or view the revision history of a single line within a file by clicking {% octicon "versions" aria-label="The prior blame icon" %}. Each time you click {% octicon "versions" aria-label="The prior blame icon" %}, you'll see the previous revision information for that line, including who committed the change and when. -使用追溯视图时,您可以查看整个文件的逐行修订历史记录,也可以通过单击 {% octicon "versions" aria-label="The prior blame icon" %} 查看文件中某一行的修订历史记录。 每次单击 {% octicon "versions" aria-label="The prior blame icon" %} 后,您将看到该行以前的修订信息,包括提交更改的人员和时间。 +![Git blame view](/assets/images/help/repository/git_blame.png) -![Git 追溯视图](/assets/images/help/repository/git_blame.png) +In a file or pull request, you can also use the {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} menu to view Git blame for a selected line or range of lines. -在文件或拉取请求中,您还可以使用 {% octicon "kebab-horizontal" aria-label="The horizontal kebab octicon" %} 菜单查看所选行或行范围的 Git 追溯。 - -![带有查看所选行 Git 追溯选项的 Kebab 菜单](/assets/images/help/repository/view-git-blame-specific-line.png) +![Kebab menu with option to view Git blame for a selected line](/assets/images/help/repository/view-git-blame-specific-line.png) {% tip %} -**提示:**在命令行中,您还可以使用 `git blame` 查看文件内各行的修订历史记录。 更多信息请参阅 [Git 的 `git blame` 文档](https://git-scm.com/docs/git-blame)。 +**Tip:** On the command line, you can also use `git blame` to view the revision history of lines within a file. For more information, see [Git's `git blame` documentation](https://git-scm.com/docs/git-blame). {% endtip %} {% data reusables.repositories.navigate-to-repo %} -2. 单击以打开您想要查看其行历史记录的文件。 -3. 在文件视图的右上角,单击 **Blame(追溯)**可打开追溯视图。 ![追溯按钮](/assets/images/help/repository/blame-button.png) -4. 要查看特定行的早期修订,或重新追溯,请单击 {% octicon "versions" aria-label="The prior blame icon" %},直至找到您有兴趣查看的更改。 ![追溯前按钮](/assets/images/help/repository/prior-blame-button.png) +2. Click to open the file whose line history you want to view. +3. In the upper-right corner of the file view, click **Blame** to open the blame view. +![Blame button](/assets/images/help/repository/blame-button.png) +4. To see earlier revisions of a specific line, or reblame, click {% octicon "versions" aria-label="The prior blame icon" %} until you've found the changes you're interested in viewing. +![Prior blame button](/assets/images/help/repository/prior-blame-button.png) diff --git a/translations/zh-CN/content/rest/guides/index.md b/translations/zh-CN/content/rest/guides/index.md index 680ed7ad29..072e826783 100644 --- a/translations/zh-CN/content/rest/guides/index.md +++ b/translations/zh-CN/content/rest/guides/index.md @@ -1,8 +1,8 @@ --- -title: 指南 -intro: 了解如何开始使用 REST API、身份验证以及如何使用 REST API 完成各种任务。 +title: Guides +intro: 'Learn about getting started with the REST API, authentication, and how to use the REST API for a variety of tasks.' redirect_from: - - /guides/ + - /guides - /v3/guides versions: fpt: '*' @@ -24,5 +24,10 @@ children: - /getting-started-with-the-git-database-api - /getting-started-with-the-checks-api --- - -文档的这一部分旨在让您使用实际 {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API 应用程序开始运行。 我们将涵盖您需要知道的一切,从身份验证到操作结果,再到将结果与其他应用程序相结合。 这里的每个教程都包含一个项目,并且每个项目都将存储在我们的公共[平台样本](https://github.com/github/platform-samples)仓库中并形成文档。 ![Electrocat](/assets/images/electrocat.png) +This section of the documentation is intended to get you up-and-running with +real-world {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API applications. We'll cover everything you need to know, from +authentication, to manipulating results, to combining results with other apps. +Every tutorial here will have a project, and every project will be +stored and documented in our public +[platform-samples](https://github.com/github/platform-samples) repository. +![The Electrocat](/assets/images/electrocat.png) diff --git a/translations/zh-CN/content/rest/guides/traversing-with-pagination.md b/translations/zh-CN/content/rest/guides/traversing-with-pagination.md index 91595eb798..36400d1399 100644 --- a/translations/zh-CN/content/rest/guides/traversing-with-pagination.md +++ b/translations/zh-CN/content/rest/guides/traversing-with-pagination.md @@ -263,4 +263,4 @@ puts "The next page link is #{next_page_href}" [octokit.rb]: https://github.com/octokit/octokit.rb [personal token]: /articles/creating-an-access-token-for-command-line-use [hypermedia-relations]: https://github.com/octokit/octokit.rb#pagination -[listing commits]: /rest/reference/repos#list-commits +[listing commits]: /rest/reference/commits#list-commits diff --git a/translations/zh-CN/content/rest/guides/working-with-comments.md b/translations/zh-CN/content/rest/guides/working-with-comments.md index 2758bbf912..371054556f 100644 --- a/translations/zh-CN/content/rest/guides/working-with-comments.md +++ b/translations/zh-CN/content/rest/guides/working-with-comments.md @@ -1,6 +1,6 @@ --- -title: 处理注释 -intro: 使用 REST API,您可以访问和管理拉取请求、议题或提交中的注释。 +title: Working with comments +intro: 'Using the REST API, you can access and manage comments in your pull requests, issues, or commits.' redirect_from: - /guides/working-with-comments/ - /v3/guides/working-with-comments @@ -15,17 +15,27 @@ topics: -对于任何拉取请求,{% data variables.product.product_name %} 都提供三种注释视图:作为整体的[拉取请求注释][PR comment]、拉取请求中的[特定行注释][PR line comment] 和拉取请求中的[特定提交注释][commit comment]。 +For any Pull Request, {% data variables.product.product_name %} provides three kinds of comment views: +[comments on the Pull Request][PR comment] as a whole, [comments on a specific line][PR line comment] within the Pull Request, +and [comments on a specific commit][commit comment] within the Pull Request. -每种类型的评论都会经过 API {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} 的不同部分。 在本指南中,我们将探讨如何访问和处理每种注释。 对于每个示例,我们将使用在 "octocat" 仓库中[创建的样本拉取请求][sample PR]。 同样,您可以在[我们的平台样本仓库][platform-samples]中找到样本。 +Each of these types of comments goes through a different portion of the {% ifversion fpt or ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} API. +In this guide, we'll explore how you can access and manipulate each one. For every +example, we'll be using [this sample Pull Request made][sample PR] on the "octocat" +repository. As always, samples can be found in [our platform-samples repository][platform-samples]. -## 拉取请求注释 +## Pull Request Comments -要访问拉取请求的注释,需要通过[议题 API][issues]。 乍一看这似乎不符合直觉。 但是,一旦您理解了拉取请求只是一个带有代码的议题,使用议题 API 来创建拉取请求注释就合情合理了。 +To access comments on a Pull Request, you'll go through [the Issues API][issues]. +This may seem counterintuitive at first. But once you understand that a Pull +Request is just an Issue with code, it makes sense to use the Issues API to +create comments on a Pull Request. -我们将通过使用 [Octokit.rb][octokit.rb] 创建一个 Ruby 脚本来演示如何获取拉取请求注释 您还需要创建[个人访问令牌][personal token]。 +We'll demonstrate fetching Pull Request comments by creating a Ruby script using +[Octokit.rb][octokit.rb]. You'll also want to create a [personal access token][personal token]. -以下代码应该可以帮助您开始使用 Octokit.rb 访问拉取请求中的注释: +The following code should help you get started accessing comments from a Pull Request +using Octokit.rb: ``` ruby require 'octokit' @@ -43,13 +53,18 @@ client.issue_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -在这里,我们专门调用议题 API 来获取注释 (`issue_comments`),同时提供仓库名称 (`octocat/Spoon-Knife`) 和我们感兴趣的拉取请求 ID (`1176`)。 之后,只需遍历注释以获取有关每个注释的信息即可。 +Here, we're specifically calling out to the Issues API to get the comments (`issue_comments`), +providing both the repository's name (`octocat/Spoon-Knife`), and the Pull Request ID +we're interested in (`1176`). After that, it's simply a matter of iterating through +the comments to fetch information about each one. -## 拉取请求行注释 +## Pull Request Comments on a Line -在差异视图中,您可以开始讨论在拉取请求中进行的某个更改的特定方面。 这些注释出现在已更改文件中的各个行上。 此讨论的端点 URL 来自[拉取请求审查 API][PR Review API]。 +Within the diff view, you can start a discussion on a particular aspect of a singular +change made within the Pull Request. These comments occur on the individual lines +within a changed file. The endpoint URL for this discussion comes from [the Pull Request Review API][PR Review API]. -以下代码将获取文件中所做的所有拉取请求注释(给定一个拉取请求编号): +The following code fetches all the Pull Request comments made on files, given a single Pull Request number: ``` ruby require 'octokit' @@ -69,13 +84,19 @@ client.pull_request_comments("octocat/Spoon-Knife", 1176).each do |comment| end ``` -您会注意到,它与上面的示例非常相似。 此视图与拉取请求注释之间的不同之处在于对话的焦点。 对拉取请求的注释应予以保留,以供讨论或就代码的总体方向提出意见。 在拉取请求审查中所做的注释应该以在文件中实施特定更改的方式进行专门处理。 +You'll notice that it's incredibly similar to the example above. The difference +between this view and the Pull Request comment is the focus of the conversation. +A comment made on a Pull Request should be reserved for discussion or ideas on +the overall direction of the code. A comment made as part of a Pull Request review should +deal specifically with the way a particular change was implemented within a file. -## 提交注释 +## Commit Comments -最后一类注释专门针对单个提交。 因此,它们使用 [提交注释 API][commit comment API]。 +The last type of comments occur specifically on individual commits. For this reason, +they make use of [the commit comment API][commit comment API]. -要检索对提交的注释,您需要使用该提交的 SHA1。 换句话说,您不能使用与拉取请求相关的任何标识符。 例如: +To retrieve the comments on a commit, you'll want to use the SHA1 of the commit. +In other words, you won't use any identifier related to the Pull Request. Here's an example: ``` ruby require 'octokit' @@ -93,7 +114,8 @@ client.commit_comments("octocat/Spoon-Knife", "cbc28e7c8caee26febc8c013b0adfb97a end ``` -请注意,此 API 调用将检索单行注释以对整个提交所做的注释。 +Note that this API call will retrieve single line comments, as well as comments made +on the entire commit. [PR comment]: https://github.com/octocat/Spoon-Knife/pull/1176#issuecomment-24114792 [PR line comment]: https://github.com/octocat/Spoon-Knife/pull/1176#discussion_r6252889 @@ -104,4 +126,4 @@ end [personal token]: /articles/creating-an-access-token-for-command-line-use [octokit.rb]: https://github.com/octokit/octokit.rb [PR Review API]: /rest/reference/pulls#comments -[commit comment API]: /rest/reference/repos#get-a-commit-comment +[commit comment API]: /rest/reference/commits#get-a-commit-comment diff --git a/translations/zh-CN/content/rest/overview/api-previews.md b/translations/zh-CN/content/rest/overview/api-previews.md index 36d03bec29..7cd8e65bb0 100644 --- a/translations/zh-CN/content/rest/overview/api-previews.md +++ b/translations/zh-CN/content/rest/overview/api-previews.md @@ -165,7 +165,7 @@ GitHub App Manifests allow people to create preconfigured GitHub Apps. See "[Cre ## Deployment statuses -You can now update the `environment` of a [deployment status](/rest/reference/repos#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. +You can now update the `environment` of a [deployment status](/rest/reference/deployments#create-a-deployment-status) and use the `in_progress` and `queued` states. When you create deployment statuses, you can now use the `auto_inactive` parameter to mark old `production` deployments as `inactive`. **Custom media type:** `flash-preview` **Announced:** [2018-10-16](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) diff --git a/translations/zh-CN/content/rest/reference/branches.md b/translations/zh-CN/content/rest/reference/branches.md new file mode 100644 index 0000000000..60a187a93b --- /dev/null +++ b/translations/zh-CN/content/rest/reference/branches.md @@ -0,0 +1,30 @@ +--- +title: Branches +intro: 'The branches API allows you to modify branches and their protection settings.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Branches +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Merging + +The Repo Merging API supports merging branches in a repository. This accomplishes +essentially the same thing as merging one branch into another in a local repository +and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. + +The authenticated user will be the author of any merges done through this endpoint. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/collaborators.md b/translations/zh-CN/content/rest/reference/collaborators.md new file mode 100644 index 0000000000..c4842b7049 --- /dev/null +++ b/translations/zh-CN/content/rest/reference/collaborators.md @@ -0,0 +1,35 @@ +--- +title: Collaborators +intro: 'The collaborators API allows you to add, invite, and remove collaborators from a repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Collaborators + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Invitations + +The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. + +Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted +access to invitations **without** also granting access to repository code, while the +`repo` scope grants permission to code as well as invitations. + +### Invite a user to a repository + +Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/collaborators#add-a-repository-collaborator)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/commits.md b/translations/zh-CN/content/rest/reference/commits.md new file mode 100644 index 0000000000..79591a09a6 --- /dev/null +++ b/translations/zh-CN/content/rest/reference/commits.md @@ -0,0 +1,68 @@ +--- +title: Commits +intro: 'The commits API allows you to retrieve information and commits, create commit comments, and create commit statuses.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Commits + +The Repo Commits API supports listing, viewing, and comparing commits in a repository. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit comments + +### Custom media types for commit comments + +These are the supported media types for commit comments. You can read more +about the use of media types in the API [here](/rest/overview/media-types). + + application/vnd.github-commitcomment.raw+json + application/vnd.github-commitcomment.text+json + application/vnd.github-commitcomment.html+json + application/vnd.github-commitcomment.full+json + +For more information, see "[Custom media types](/rest/overview/media-types)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Commit statuses + +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. + +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. + +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. + +Statuses can include a `context` to indicate what service is providing that status. +For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `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. + +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. + +If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/deployments.md b/translations/zh-CN/content/rest/reference/deployments.md new file mode 100644 index 0000000000..1170b20485 --- /dev/null +++ b/translations/zh-CN/content/rest/reference/deployments.md @@ -0,0 +1,90 @@ +--- +title: Deployments +intro: 'The deployments API allows you to create and delete deploy keys, deployments, and deployment environments.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +## Deploy keys + +{% data reusables.repositories.deploy-keys %} + +Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} +{% endfor %} + +## Deployments + +Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). + +Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. + +Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and +the `description` is a high-level summary of what happened with the deployment. + +GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. + +Below is a simple sequence diagram for how these interactions would work. + +``` ++---------+ +--------+ +-----------+ +-------------+ +| Tooling | | GitHub | | 3rd Party | | Your Server | ++---------+ +--------+ +-----------+ +-------------+ + | | | | + | Create Deployment | | | + |--------------------->| | | + | | | | + | Deployment Created | | | + |<---------------------| | | + | | | | + | | Deployment Event | | + | |---------------------->| | + | | | SSH+Deploys | + | | |-------------------->| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | + | | | Deploy Completed | + | | |<--------------------| + | | | | + | | Deployment Status | | + | |<----------------------| | + | | | | +``` + +Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. + +Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. + + +### Inactive deployments + +When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. + +You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghes > 3.1 or ghae or ghec %} +## Environments + +The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." + +{% data reusables.gated-features.environments %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/index.md b/translations/zh-CN/content/rest/reference/index.md index 9417cf7348..eb8dc90939 100644 --- a/translations/zh-CN/content/rest/reference/index.md +++ b/translations/zh-CN/content/rest/reference/index.md @@ -1,7 +1,7 @@ --- -title: 参考 -shortTitle: 参考 -intro: 查看参考文档以了解 GitHub REST API 中可用的资源。 +title: Reference +shortTitle: Reference +intro: View reference documentation to learn about the resources available in the GitHub REST API. versions: fpt: '*' ghes: '*' @@ -14,14 +14,19 @@ children: - /activity - /apps - /billing + - /branches - /checks - /codes-of-conduct - /code-scanning - /codespaces + - /commits + - /collaborators + - /deployments - /emojis - /enterprise-admin - /gists - /git + - /pages - /gitignore - /interactions - /issues @@ -36,12 +41,15 @@ children: - /pulls - /rate-limit - /reactions + - /releases - /repos + - /repository-metrics - /scim - /search - /secret-scanning - /teams - /users + - /webhooks - /permissions-required-for-github-apps --- diff --git a/translations/zh-CN/content/rest/reference/packages.md b/translations/zh-CN/content/rest/reference/packages.md index 72b91cab3b..8af15e78f9 100644 --- a/translations/zh-CN/content/rest/reference/packages.md +++ b/translations/zh-CN/content/rest/reference/packages.md @@ -19,7 +19,7 @@ To use this API, you must authenticate using a personal access token. If your `package_type` is `npm`, `maven`, `rubygems`, or `nuget`, then your token must also include the `repo` scope since your package inherits permissions from a {% data variables.product.prodname_dotcom %} repository. If your package is in the {% data variables.product.prodname_container_registry %}, then your `package_type` is `container` and your token does not need the `repo` scope to access or manage this `package_type`. `container` packages offer granular permissions separate from a repository. For more information, see "[About permissions for {% data variables.product.prodname_registry %}](/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries)." -If you want to use the {% data variables.product.prodname_registry %} API to access resources in an organization with SSO enabled, then you must enable SSO for your personal access token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on)." +If you want to use the {% data variables.product.prodname_registry %} API to access resources in an organization with SSO enabled, then you must enable SSO for your personal access token. For more information, see "[Authorizing a personal access token for use with SAML single sign-on](/github/authenticating-to-github/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} diff --git a/translations/zh-CN/content/rest/reference/pages.md b/translations/zh-CN/content/rest/reference/pages.md new file mode 100644 index 0000000000..713ca428fc --- /dev/null +++ b/translations/zh-CN/content/rest/reference/pages.md @@ -0,0 +1,32 @@ +--- +title: Pages +intro: 'The GitHub Pages API allows you to interact with GitHub Pages sites and build information.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." + +In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: +* `null`: The site has yet to be built. +* `queued`: The build has been requested but not yet begun. +* `building`:The build is in progress. +* `built`: The site has been built. +* `errored`: Indicates an error occurred during the build. + +In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: +* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. +* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: + - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. + - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/permissions-required-for-github-apps.md b/translations/zh-CN/content/rest/reference/permissions-required-for-github-apps.md index 388c85781c..a067fef447 100644 --- a/translations/zh-CN/content/rest/reference/permissions-required-for-github-apps.md +++ b/translations/zh-CN/content/rest/reference/permissions-required-for-github-apps.md @@ -41,18 +41,18 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /rate_limit`](/rest/reference/rate-limit#get-rate-limit-status-for-the-authenticated-user) - [`GET /repos/:owner/:repo`](/rest/reference/repos#get-a-repository) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repos#get-community-profile-metrics) +- [`GET /repos/:owner/:repo/community/profile`](/rest/reference/repository-metrics#get-community-profile-metrics) {% endif -%} - [`GET /repos/:owner/:repo/contributors`](/rest/reference/repos#list-repository-contributors) - [`GET /repos/:owner/:repo/forks`](/rest/reference/repos#list-forks) - [`GET /repos/:owner/:repo/languages`](/rest/reference/repos#list-repository-languages) - [`GET /repos/:owner/:repo/license`](/rest/reference/licenses#get-the-license-for-a-repository) - [`GET /repos/:owner/:repo/stargazers`](/rest/reference/activity#list-stargazers) -- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repos#get-the-weekly-commit-activity) -- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repos#get-the-last-year-of-commit-activity) -- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repos#get-all-contributor-commit-activity) -- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repos#get-the-weekly-commit-count) -- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repos#get-the-hourly-commit-count-for-each-day) +- [`GET /repos/:owner/:repo/stats/code_frequency`](/rest/reference/repository-metrics#get-the-weekly-commit-activity) +- [`GET /repos/:owner/:repo/stats/commit_activity`](/rest/reference/repository-metrics#get-the-last-year-of-commit-activity) +- [`GET /repos/:owner/:repo/stats/contributors`](/rest/reference/repository-metrics#get-all-contributor-commit-activity) +- [`GET /repos/:owner/:repo/stats/participation`](/rest/reference/repository-metrics#get-the-weekly-commit-count) +- [`GET /repos/:owner/:repo/stats/punch_card`](/rest/reference/repository-metrics#get-the-hourly-commit-count-for-each-day) - [`GET /repos/:owner/:repo/subscribers`](/rest/reference/activity#list-watchers) - [`GET /repos/:owner/:repo/tags`](/rest/reference/repos#list-repository-tags) - [`GET /repos/:owner/:repo/topics`](/rest/reference/repos#get-all-repository-topics) @@ -73,14 +73,14 @@ GitHub Apps have the `Read-only` metadata permission by default. The metadata pe - [`GET /users/:username/subscriptions`](/rest/reference/activity#list-repositories-watched-by-a-user) _Collaborators_ -- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/repos#list-repository-collaborators) -- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#check-if-a-user-is-a-repository-collaborator) +- [`GET /repos/:owner/:repo/collaborators`](/rest/reference/collaborators#list-repository-collaborators) +- [`GET /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator) _Commit comments_ -- [`GET /repos/:owner/:repo/comments`](/rest/reference/repos#list-commit-comments-for-a-repository) -- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#get-a-commit-comment) +- [`GET /repos/:owner/:repo/comments`](/rest/reference/commits#list-commit-comments-for-a-repository) +- [`GET /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#get-a-commit-comment) - [`GET /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#list-reactions-for-a-commit-comment) -- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#list-commit-comments) +- [`GET /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#list-commit-comments) _Events_ - [`GET /events`](/rest/reference/activity#list-public-events) @@ -173,7 +173,7 @@ _Search_ - [`DELETE /repos/:owner/:repo/interaction-limits`](/rest/reference/interactions#remove-interaction-restrictions-for-a-repository) (:write) {% endif -%} {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif -%} - [`PUT /repos/:owner/:repo/topics`](/rest/reference/repos#replace-all-repository-topics) (:write) - [`POST /repos/:owner/:repo/transfer`](/rest/reference/repos#transfer-a-repository) (:write) @@ -186,57 +186,57 @@ _Search_ {% ifversion fpt -%} - [`DELETE /repos/:owner/:repo/vulnerability-alerts`](/rest/reference/repos#disable-vulnerability-alerts) (:write) {% endif -%} -- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/repos#accept-a-repository-invitation) (:write) -- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/repos#decline-a-repository-invitation) (:write) +- [`PATCH /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#accept-a-repository-invitation) (:write) +- [`DELETE /user/repository_invitations/:invitation_id`](/rest/reference/collaborators#decline-a-repository-invitation) (:write) _Branches_ -- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#get-branch-protection) (:read) -- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#update-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/repos#delete-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#get-admin-branch-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#set-admin-branch-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/repos#delete-admin-branch-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#get-pull-request-review-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#update-pull-request-review-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/repos#delete-pull-request-review-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#get-commit-signature-protection) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#create-commit-signature-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/repos#delete-commit-signature-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#get-status-checks-protection) (:read) -- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#update-status-check-protection) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/repos#remove-status-check-protection) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#get-all-status-check-contexts) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#add-status-check-contexts) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#set-status-check-contexts) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/repos#remove-status-check-contexts) (:write) -- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#get-access-restrictions) (:read) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/repos#delete-access-restrictions) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#get-branch-protection) (:read) +- [`PUT /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#update-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection`](/rest/reference/branches#delete-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#get-admin-branch-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#set-admin-branch-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/enforce_admins`](/rest/reference/branches#delete-admin-branch-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#get-pull-request-review-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#update-pull-request-review-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_pull_request_reviews`](/rest/reference/branches#delete-pull-request-review-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#get-commit-signature-protection) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#create-commit-signature-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_signatures`](/rest/reference/branches#delete-commit-signature-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#get-status-checks-protection) (:read) +- [`PATCH /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#update-status-check-protection) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks`](/rest/reference/branches#remove-status-check-protection) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#get-all-status-check-contexts) (:read) +- [`POST /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#add-status-check-contexts) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#set-status-check-contexts) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/required_status_checks/contexts`](/rest/reference/branches#remove-status-check-contexts) (:write) +- [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#get-access-restrictions) (:read) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions`](/rest/reference/branches#delete-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#list-teams-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#add-team-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#set-team-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/repos#remove-team-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#add-team-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#set-team-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/teams`](/rest/reference/branches#remove-team-access-restrictions) (:write) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#list-users-with-access-to-the-protected-branch) (:read) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#add-user-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#set-user-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#add-user-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#set-user-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/users`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Collaborators_ -- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#add-a-repository-collaborator) (:write) -- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/repos#remove-a-repository-collaborator) (:write) +- [`PUT /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#add-a-repository-collaborator) (:write) +- [`DELETE /repos/:owner/:repo/collaborators/:username`](/rest/reference/collaborators#remove-a-repository-collaborator) (:write) _Invitations_ -- [`GET /repos/:owner/:repo/invitations`](/rest/reference/repos#list-repository-invitations) (:read) -- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#update-a-repository-invitation) (:write) -- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/repos#delete-a-repository-invitation) (:write) +- [`GET /repos/:owner/:repo/invitations`](/rest/reference/collaborators#list-repository-invitations) (:read) +- [`PATCH /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#update-a-repository-invitation) (:write) +- [`DELETE /repos/:owner/:repo/invitations/:invitation_id`](/rest/reference/collaborators#delete-a-repository-invitation) (:write) _Keys_ -- [`GET /repos/:owner/:repo/keys`](/rest/reference/repos#list-deploy-keys) (:read) -- [`POST /repos/:owner/:repo/keys`](/rest/reference/repos#create-a-deploy-key) (:write) -- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#get-a-deploy-key) (:read) -- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/repos#delete-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys`](/rest/reference/deployments#list-deploy-keys) (:read) +- [`POST /repos/:owner/:repo/keys`](/rest/reference/deployments#create-a-deploy-key) (:write) +- [`GET /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#get-a-deploy-key) (:read) +- [`DELETE /repos/:owner/:repo/keys/:key_id`](/rest/reference/deployments#delete-a-deploy-key) (:write) _Teams_ - [`GET /repos/:owner/:repo/teams`](/rest/reference/repos#list-repository-teams) (:read) @@ -245,10 +245,10 @@ _Teams_ {% ifversion fpt or ghec %} _Traffic_ -- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repos#get-repository-clones) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repos#get-top-referral-paths) (:read) -- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repos#get-top-referral-sources) (:read) -- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repos#get-page-views) (:read) +- [`GET /repos/:owner/:repo/traffic/clones`](/rest/reference/repository-metrics#get-repository-clones) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/paths`](/rest/reference/repository-metrics#get-top-referral-paths) (:read) +- [`GET /repos/:owner/:repo/traffic/popular/referrers`](/rest/reference/repository-metrics#get-top-referral-sources) (:read) +- [`GET /repos/:owner/:repo/traffic/views`](/rest/reference/repository-metrics#get-page-views) (:read) {% endif %} {% ifversion fpt or ghec %} @@ -345,37 +345,37 @@ _Traffic_ - [`GET /repos/:owner/:repo/check-suites/:check_suite_id`](/rest/reference/checks#get-a-check-suite) (:read) - [`GET /repos/:owner/:repo/check-suites/:check_suite_id/check-runs`](/rest/reference/checks#list-check-runs-in-a-check-suite) (:read) - [`POST /repos/:owner/:repo/check-suites/:check_suite_id/rerequest`](/rest/reference/checks#rerequest-a-check-suite) (:write) -- [`GET /repos/:owner/:repo/commits`](/rest/reference/repos#list-commits) (:read) -- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/repos#get-a-commit) (:read) +- [`GET /repos/:owner/:repo/commits`](/rest/reference/commits#list-commits) (:read) +- [`GET /repos/:owner/:repo/commits/:sha`](/rest/reference/commits#get-a-commit) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-runs`](/rest/reference/checks#list-check-runs-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/commits/:sha/check-suites`](/rest/reference/checks#list-check-suites-for-a-git-reference) (:read) - [`GET /repos/:owner/:repo/community/code_of_conduct`](/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository) (:read) -- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/repos#compare-two-commits) (:read) +- [`GET /repos/:owner/:repo/compare/:base...:head`](/rest/reference/commits#compare-two-commits) (:read) - [`GET /repos/:owner/:repo/contents/:path`](/rest/reference/repos#get-repository-content) (:read) {% ifversion fpt or ghes or ghae -%} - [`POST /repos/:owner/:repo/dispatches`](/rest/reference/repos#create-a-repository-dispatch-event) (:write) {% endif -%} - [`POST /repos/:owner/:repo/forks`](/rest/reference/repos#create-a-fork) (:read) -- [`POST /repos/:owner/:repo/merges`](/rest/reference/repos#merge-a-branch) (:write) +- [`POST /repos/:owner/:repo/merges`](/rest/reference/branches#merge-a-branch) (:write) - [`PUT /repos/:owner/:repo/pulls/:pull_number/merge`](/rest/reference/pulls#merge-a-pull-request) (:write) - [`GET /repos/:owner/:repo/readme(?:/(.*))?`](/rest/reference/repos#get-a-repository-readme) (:read) _Branches_ -- [`GET /repos/:owner/:repo/branches`](/rest/reference/repos#list-branches) (:read) -- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/repos#get-a-branch) (:read) +- [`GET /repos/:owner/:repo/branches`](/rest/reference/branches#list-branches) (:read) +- [`GET /repos/:owner/:repo/branches/:branch`](/rest/reference/branches#get-a-branch) (:read) - [`GET /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#list-apps-with-access-to-the-protected-branch) (:write) -- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#add-app-access-restrictions) (:write) -- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#set-app-access-restrictions) (:write) -- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/repos#remove-user-access-restrictions) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#add-app-access-restrictions) (:write) +- [`PUT /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#set-app-access-restrictions) (:write) +- [`DELETE /repos/:owner/:repo/branches/:branch/protection/restrictions/apps`](/rest/reference/branches#remove-user-access-restrictions) (:write) {% ifversion fpt or ghes > 3.0 or ghae -%} -- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/repos#rename-a-branch) (:write) +- [`POST /repos/:owner/:repo/branches/:branch/rename`](/rest/reference/branches#rename-a-branch) (:write) {% endif %} _Commit comments_ -- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#update-a-commit-comment) (:write) -- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/repos#delete-a-commit-comment) (:write) +- [`PATCH /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#update-a-commit-comment) (:write) +- [`DELETE /repos/:owner/:repo/comments/:comment_id`](/rest/reference/commits#delete-a-commit-comment) (:write) - [`POST /repos/:owner/:repo/comments/:comment_id/reactions`](/rest/reference/reactions#create-reaction-for-a-commit-comment) (:read) -- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/repos#create-a-commit-comment) (:read) +- [`POST /repos/:owner/:repo/commits/:sha/comments`](/rest/reference/commits#create-a-commit-comment) (:read) _Git_ - [`POST /repos/:owner/:repo/git/blobs`](/rest/reference/git#create-a-blob) (:write) @@ -435,15 +435,15 @@ _Releases_ ### Permission on "deployments" -- [`GET /repos/:owner/:repo/deployments`](/rest/reference/repos#list-deployments) (:read) -- [`POST /repos/:owner/:repo/deployments`](/rest/reference/repos#create-a-deployment) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#get-a-deployment) (:read) +- [`GET /repos/:owner/:repo/deployments`](/rest/reference/deployments#list-deployments) (:read) +- [`POST /repos/:owner/:repo/deployments`](/rest/reference/deployments#create-a-deployment) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#get-a-deployment) (:read) {% ifversion fpt or ghes or ghae -%} -- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/repos#delete-a-deployment) (:write) +- [`DELETE /repos/:owner/:repo/deployments/:deployment_id`](/rest/reference/deployments#delete-a-deployment) (:write) {% endif -%} -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#list-deployment-statuses) (:read) -- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/repos#create-a-deployment-status) (:write) -- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/repos#get-a-deployment-status) (:read) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#list-deployment-statuses) (:read) +- [`POST /repos/:owner/:repo/deployments/:deployment_id/statuses`](/rest/reference/deployments#create-a-deployment-status) (:write) +- [`GET /repos/:owner/:repo/deployments/:deployment_id/statuses/:status_id`](/rest/reference/deployments#get-a-deployment-status) (:read) {% ifversion fpt or ghes or ghec %} ### Permission on "emails" @@ -703,16 +703,16 @@ _Teams_ ### Permission on "pages" -- [`GET /repos/:owner/:repo/pages`](/rest/reference/repos#get-a-github-pages-site) (:read) -- [`POST /repos/:owner/:repo/pages`](/rest/reference/repos#create-a-github-pages-site) (:write) -- [`PUT /repos/:owner/:repo/pages`](/rest/reference/repos#update-information-about-a-github-pages-site) (:write) -- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/repos#delete-a-github-pages-site) (:write) -- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/repos#list-github-pages-builds) (:read) -- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/repos#request-a-github-pages-build) (:write) -- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/repos#get-github-pages-build) (:read) -- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/repos#get-latest-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages`](/rest/reference/pages#get-a-github-pages-site) (:read) +- [`POST /repos/:owner/:repo/pages`](/rest/reference/pages#create-a-github-pages-site) (:write) +- [`PUT /repos/:owner/:repo/pages`](/rest/reference/pages#update-information-about-a-github-pages-site) (:write) +- [`DELETE /repos/:owner/:repo/pages`](/rest/reference/pages#delete-a-github-pages-site) (:write) +- [`GET /repos/:owner/:repo/pages/builds`](/rest/reference/pages#list-github-pages-builds) (:read) +- [`POST /repos/:owner/:repo/pages/builds`](/rest/reference/pages#request-a-github-pages-build) (:write) +- [`GET /repos/:owner/:repo/pages/builds/:build_id`](/rest/reference/pages#get-github-pages-build) (:read) +- [`GET /repos/:owner/:repo/pages/builds/latest`](/rest/reference/pages#get-latest-pages-build) (:read) {% ifversion fpt -%} -- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/repos#get-a-dns-health-check-for-github-pages) (:write) +- [`GET /repos/:owner/:repo/pages/health`](/rest/reference/pages#get-a-dns-health-check-for-github-pages) (:write) {% endif %} ### Permission on "pull requests" @@ -812,12 +812,12 @@ _Reviews_ ### Permission on "repository hooks" -- [`GET /repos/:owner/:repo/hooks`](/rest/reference/repos#list-repository-webhooks) (:read) -- [`POST /repos/:owner/:repo/hooks`](/rest/reference/repos#create-a-repository-webhook) (:write) -- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#get-a-repository-webhook) (:read) -- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#update-a-repository-webhook) (:write) -- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/repos#delete-a-repository-webhook) (:write) -- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/repos#ping-a-repository-webhook) (:read) +- [`GET /repos/:owner/:repo/hooks`](/rest/reference/webhooks#list-repository-webhooks) (:read) +- [`POST /repos/:owner/:repo/hooks`](/rest/reference/webhooks#create-a-repository-webhook) (:write) +- [`GET /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#get-a-repository-webhook) (:read) +- [`PATCH /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#update-a-repository-webhook) (:write) +- [`DELETE /repos/:owner/:repo/hooks/:hook_id`](/rest/reference/webhooks#delete-a-repository-webhook) (:write) +- [`POST /repos/:owner/:repo/hooks/:hook_id/pings`](/rest/reference/webhooks#ping-a-repository-webhook) (:read) - [`POST /repos/:owner/:repo/hooks/:hook_id/tests`](/rest/reference/repos#test-the-push-repository-webhook) (:read) {% ifversion ghes %} @@ -930,9 +930,9 @@ _Teams_ ### Permission on "statuses" -- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) (:read) -- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/repos#list-commit-statuses-for-a-reference) (:read) -- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/repos#create-a-commit-status) (:write) +- [`GET /repos/:owner/:repo/commits/:ref/status`](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) (:read) +- [`GET /repos/:owner/:repo/commits/:ref/statuses`](/rest/reference/commits#list-commit-statuses-for-a-reference) (:read) +- [`POST /repos/:owner/:repo/statuses/:sha`](/rest/reference/commits#create-a-commit-status) (:write) ### Permission on "team discussions" diff --git a/translations/zh-CN/content/rest/reference/pulls.md b/translations/zh-CN/content/rest/reference/pulls.md index 74f2c47b08..d8b22a8117 100644 --- a/translations/zh-CN/content/rest/reference/pulls.md +++ b/translations/zh-CN/content/rest/reference/pulls.md @@ -1,6 +1,6 @@ --- -title: 拉取 -intro: 拉取 API 允许您列出、查看、编辑、创建甚至合并拉取请求。 +title: Pulls +intro: 'The Pulls API allows you to list, view, edit, create, and even merge pull requests.' redirect_from: - /v3/pulls versions: @@ -13,13 +13,13 @@ topics: miniTocMaxHeadingLevel: 3 --- -拉取请求 API 允许您列出、查看、编辑、创建甚至合并拉取请求。 可以通过[议题评论 API](/rest/reference/issues#comments) 管理对拉取请求的评论。 +The Pull Request API allows you to list, view, edit, create, and even merge pull requests. Comments on pull requests can be managed via the [Issue Comments API](/rest/reference/issues#comments). -每个拉取请求都是一个议题,但并非每个议题都是拉取请求。 因此,在[议题 API](/rest/reference/issues) 中为这两项功能提供了“共享”操作,如操作受理人、标签和里程碑。 +Every pull request is an issue, but not every issue is a pull request. For this reason, "shared" actions for both features, like manipulating assignees, labels and milestones, are provided within [the Issues API](/rest/reference/issues). -### 拉取请求的自定义媒体类型 +### Custom media types for pull requests -以下是拉取请求支持的媒体类型。 +These are the supported media types for pull requests. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json @@ -28,59 +28,60 @@ miniTocMaxHeadingLevel: 3 application/vnd.github.VERSION.diff application/vnd.github.VERSION.patch -更多信息请参阅“[自定义媒体类型](/rest/overview/media-types)”。 +For more information, see "[Custom media types](/rest/overview/media-types)." -如果 diff 损坏,请联系 {% data variables.contact.contact_support %}。 在您的消息中包括仓库名称和拉取请求 ID。 +If a diff is corrupt, contact {% data variables.contact.contact_support %}. Include the repository name and pull request ID in your message. -### 链接关系 +### Link Relations -拉取请求具有以下可能的链接关系: +Pull Requests have these possible link relations: -| 名称 | 描述 | -| ----------------- | ---------------------------------------------------------------------------------------- | -| `self` | 此拉取请求的 API 位置。 | -| `html` | 此拉取请求的 HTML 位置。 | -| `议题` | 此拉取请求的[议题](/rest/reference/issues)的 API 位置。 | -| `comments` | 此拉取请求的[议题评论](/rest/reference/issues#comments)的 API 位置。 | -| `review_comments` | 此拉取请求的[审查评论](/rest/reference/pulls#comments)的 API 位置。 | -| `review_comment` | 用于为此拉取请求仓库中的[审查评论](/rest/reference/pulls#comments)构建 API 位置的 [URL 模板](/rest#hypermedia)。 | -| `commits` | 此拉取请求的[提交](#list-commits-on-a-pull-request)的 API 位置。 | -| `状态` | 此拉取请求的[提交状态](/rest/reference/repos#statuses)的 API 位置,即其`头部`分支的状态。 | +Name | Description +-----|-----------| +`self`| The API location of this Pull Request. +`html`| The HTML location of this Pull Request. +`issue`| The API location of this Pull Request's [Issue](/rest/reference/issues). +`comments`| The API location of this Pull Request's [Issue comments](/rest/reference/issues#comments). +`review_comments`| The API location of this Pull Request's [Review comments](/rest/reference/pulls#comments). +`review_comment`| The [URL template](/rest#hypermedia) to construct the API location for a [Review comment](/rest/reference/pulls#comments) in this Pull Request's repository. +`commits`|The API location of this Pull Request's [commits](#list-commits-on-a-pull-request). +`statuses`| The API location of this Pull Request's [commit statuses](/rest/reference/repos#statuses), which are the statuses of its `head` branch. {% for operation in currentRestOperations %} {% unless operation.subcategory %}{% include rest_operation %}{% endunless %} {% endfor %} -## 审查 +## Reviews -拉取请求审查是拉取请求上的拉取请求审查评论组,与状态和可选的正文注释一起分组。 +Pull Request Reviews are groups of Pull Request Review Comments on the Pull +Request, grouped together with a state and optional body comment. {% for operation in currentRestOperations %} {% if operation.subcategory == 'reviews' %}{% include rest_operation %}{% endif %} {% endfor %} -## 审查评论 +## Review comments -拉取请求审查评论是在拉取请求审查期间对统一差异的一部分所发表的评论。 提交评论和议题评论不同于拉取请求审查评论。 将提交评论直接应用于提交,然后应用议题评论而不引用统一差异的一部分。 更多信息请参阅“[创建提交评论](/rest/reference/repos#create-a-commit-comment)”和“[创建议题评论](/rest/reference/issues#create-an-issue-comment)”。 +Pull request review comments are comments on a portion of the unified diff made during a pull request review. Commit comments and issue comments are different from pull request review comments. You apply commit comments directly to a commit and you apply issue comments without referencing a portion of the unified diff. For more information, see "[Create a commit comment](/rest/reference/commits#create-a-commit-comment)" and "[Create an issue comment](/rest/reference/issues#create-an-issue-comment)." -### 拉取请求审查评论的自定义媒体类型 +### Custom media types for pull request review comments -以下是拉取请求审查评论支持的媒体类型。 +These are the supported media types for pull request review comments. application/vnd.github.VERSION.raw+json application/vnd.github.VERSION.text+json application/vnd.github.VERSION.html+json application/vnd.github.VERSION.full+json -更多信息请参阅“[自定义媒体类型](/rest/overview/media-types)”。 +For more information, see "[Custom media types](/rest/overview/media-types)." {% for operation in currentRestOperations %} {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} {% endfor %} -## 审查请求 +## Review requests -拉取请求作者以及仓库所有者和协作者可以向具有仓库写入权限的任何人请求拉取请求审查。 每个被请求的审查者将收到您要求他们审查拉取请求的通知。 +Pull request authors and repository owners and collaborators can request a pull request review from anyone with write access to the repository. Each requested reviewer will receive a notification asking them to review the pull request. {% for operation in currentRestOperations %} {% if operation.subcategory == 'review-requests' %}{% include rest_operation %}{% endif %} diff --git a/translations/zh-CN/content/rest/reference/releases.md b/translations/zh-CN/content/rest/reference/releases.md new file mode 100644 index 0000000000..a434451bea --- /dev/null +++ b/translations/zh-CN/content/rest/reference/releases.md @@ -0,0 +1,23 @@ +--- +title: Releases +intro: 'The releases API allows you to create, modify, and delete releases and release assets.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% note %} + +**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. + +{% endnote %} + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} +{% endfor %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/repos.md b/translations/zh-CN/content/rest/reference/repos.md index b740a1207d..89a55881b8 100644 --- a/translations/zh-CN/content/rest/reference/repos.md +++ b/translations/zh-CN/content/rest/reference/repos.md @@ -30,52 +30,6 @@ To help streamline your workflow, you can use the API to add autolinks to extern {% endfor %} {% endif %} -## Branches - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'branches' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Collaborators - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'collaborators' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Comments - -### Custom media types for commit comments - -These are the supported media types for commit comments. You can read more -about the use of media types in the API [here](/rest/overview/media-types). - - application/vnd.github-commitcomment.raw+json - application/vnd.github-commitcomment.text+json - application/vnd.github-commitcomment.html+json - application/vnd.github-commitcomment.full+json - -For more information, see "[Custom media types](/rest/overview/media-types)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'comments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Commits - -The Repo Commits API supports listing, viewing, and comparing commits in a repository. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'commits' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Community - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% endif %} ## Contents @@ -105,105 +59,12 @@ You can read more about the use of media types in the API [here](/rest/overview/ {% if operation.subcategory == 'contents' %}{% include rest_operation %}{% endif %} {% endfor %} -## Deploy keys - -{% data reusables.repositories.deploy-keys %} - -Deploy keys can either be setup using the following API endpoints, or by using GitHub. To learn how to set deploy keys up in GitHub, see "[Managing deploy keys](/developers/overview/managing-deploy-keys)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'keys' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Deployments - -Deployments are requests to deploy a specific ref (branch, SHA, tag). GitHub dispatches a [`deployment` event](/developers/webhooks-and-events/webhook-events-and-payloads#deployment) that external services can listen for and act on when new deployments are created. Deployments enable developers and organizations to build loosely coupled tooling around deployments, without having to worry about the implementation details of delivering different types of applications (e.g., web, native). - -Deployment statuses allow external services to mark deployments with an `error`, `failure`, `pending`, `in_progress`, `queued`, or `success` state that systems listening to [`deployment_status` events](/developers/webhooks-and-events/webhook-events-and-payloads#deployment_status) can consume. - -Deployment statuses can also include an optional `description` and `log_url`, which are highly recommended because they make deployment statuses more useful. The `log_url` is the full URL to the deployment output, and -the `description` is a high-level summary of what happened with the deployment. - -GitHub dispatches `deployment` and `deployment_status` events when new deployments and deployment statuses are created. These events allows third-party integrations to receive respond to deployment requests and update the status of a deployment as progress is made. - -Below is a simple sequence diagram for how these interactions would work. - -``` -+---------+ +--------+ +-----------+ +-------------+ -| Tooling | | GitHub | | 3rd Party | | Your Server | -+---------+ +--------+ +-----------+ +-------------+ - | | | | - | Create Deployment | | | - |--------------------->| | | - | | | | - | Deployment Created | | | - |<---------------------| | | - | | | | - | | Deployment Event | | - | |---------------------->| | - | | | SSH+Deploys | - | | |-------------------->| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | - | | | Deploy Completed | - | | |<--------------------| - | | | | - | | Deployment Status | | - | |<----------------------| | - | | | | -``` - -Keep in mind that GitHub is never actually accessing your servers. It's up to your third-party integration to interact with deployment events. Multiple systems can listen for deployment events, and it's up to each of those systems to decide whether they're responsible for pushing the code out to your servers, building native code, etc. - -Note that the `repo_deployment` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to deployments and deployment statuses **without** granting access to repository code, while the {% ifversion not ghae %}`public_repo` and{% endif %}`repo` scopes grant permission to code as well. - - -### Inactive deployments - -When you set the state of a deployment to `success`, then all prior non-transient, non-production environment deployments in the same repository with the same environment name will become `inactive`. To avoid this, you can set `auto_inactive` to `false` when creating the deployment status. - -You can communicate that a transient environment no longer exists by setting its `state` to `inactive`. Setting the `state` to `inactive` shows the deployment as `destroyed` in {% data variables.product.prodname_dotcom %} and removes access to it. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'deployments' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghes > 3.1 or ghae or ghec %} -## Environments - -The Environments API allows you to create, configure, and delete environments. For more information about environments, see "[Using environments for deployment](/actions/deployment/using-environments-for-deployment)." To manage environment secrets, see "[Secrets](/rest/reference/actions#secrets)." - -{% data reusables.gated-features.environments %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'environments' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - ## Forks {% for operation in currentRestOperations %} {% if operation.subcategory == 'forks' %}{% include rest_operation %}{% endif %} {% endfor %} -## Invitations - -The Repository Invitations API allows users or external services to invite other users to collaborate on a repo. The invited users (or external services on behalf of invited users) can choose to accept or decline the invitations. - -Note that the `repo:invite` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted -access to invitations **without** also granting access to repository code, while the -`repo` scope grants permission to code as well as invitations. - -### Invite a user to a repository - -Use the API endpoint for adding a collaborator. For more information, see "[Add a repository collaborator](/rest/reference/repos#add-a-repository-collaborator)." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'invitations' %}{% include rest_operation %}{% endif %} -{% endfor %} - {% ifversion fpt or ghae or ghes > 3.2 or ghec %} ## Git LFS @@ -214,181 +75,3 @@ Use the API endpoint for adding a collaborator. For more information, see "[Add {% endif %} -## Merging - -The Repo Merging API supports merging branches in a repository. This accomplishes -essentially the same thing as merging one branch into another in a local repository -and then pushing to {% data variables.product.product_name %}. The benefit is that the merge is done on the server side and a local repository is not needed. This makes it more appropriate for automation and other tools where maintaining local repositories would be cumbersome and inefficient. - -The authenticated user will be the author of any merges done through this endpoint. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'merging' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Pages - -The {% data variables.product.prodname_pages %} API retrieves information about your {% data variables.product.prodname_pages %} configuration, and the statuses of your builds. Information about the site and the builds can only be accessed by authenticated owners{% ifversion not ghae %}, even if the websites are public{% endif %}. For more information, see "[About {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages)." - -In {% data variables.product.prodname_pages %} API endpoints with a `status` key in their response, the value can be one of: -* `null`: The site has yet to be built. -* `queued`: The build has been requested but not yet begun. -* `building`:The build is in progress. -* `built`: The site has been built. -* `errored`: Indicates an error occurred during the build. - -In {% data variables.product.prodname_pages %} API endpoints that return GitHub Pages site information, the JSON responses include these fields: -* `html_url`: The absolute URL (including scheme) of the rendered Pages site. For example, `https://username.github.io`. -* `source`: An object that contains the source branch and directory for the rendered Pages site. This includes: - - `branch`: The repository branch used to publish your [site's source files](/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). For example, _main_ or _gh-pages_. - - `path`: The repository directory from which the site publishes. Will be either `/` or `/docs`. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'pages' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Releases - -{% note %} - -**Note:** The Releases API replaces the Downloads API. You can retrieve the download count and browser download URL from the endpoints in this API that return releases and release assets. - -{% endnote %} - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'releases' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statistics - -The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different -types of repository activity. - -### A word about caching - -Computing repository statistics is an expensive operation, so we try to return cached -data whenever possible. If the data hasn't been cached when you query a repository's -statistics, you'll receive a `202` response; a background job is also fired to -start compiling these statistics. Give the job a few moments to complete, and -then submit the request again. If the job has completed, that request will receive a -`200` response with the statistics in the response body. - -Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. - -### Statistics exclude some types of commits - -The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). - -To summarize: -- All statistics exclude merge commits. -- Contributor statistics also exclude empty commits. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} -{% endfor %} - -## Statuses - -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. - -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. - -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. - -Statuses can include a `context` to indicate what service is providing that status. -For example, you may have your continuous integration service push statuses with a context of `ci`, and a security audit tool push statuses with a context of `security`. You can -then use the [Get the combined status for a specific reference](/rest/reference/repos#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. - -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. - -If you are developing a GitHub App and want to provide more detailed information about an external service, you may want to use the [Checks API](/rest/reference/checks). - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'statuses' %}{% include rest_operation %}{% endif %} -{% endfor %} - -{% ifversion fpt or ghec %} -## Traffic - -For repositories that you have push access to, the traffic API provides access -to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} -{% endfor %} -{% endif %} - -## Webhooks - -Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} - -If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). - -In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. - -{% for operation in currentRestOperations %} - {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} -{% endfor %} - -### Receiving Webhooks - -In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. - -#### Webhook headers - -{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. - -### PubSubHubbub - -GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. -Topic URLs for a GitHub repository's pushes are in this format: - -`https://github.com/{owner}/{repo}/events/{event}` - -The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." - -#### Response format - -The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. - - Accept: application/json - https://github.com/{owner}/{repo}/events/push.json - -#### Callback URLs - -Callback URLs can use the `http://` protocol. - - # Send updates to postbin.org - http://postbin.org/123 - -#### Subscribing - -The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: - -``` shell -curl -u "user" -i \ - {% data variables.product.api_url_pre %}/hub \ - -F "hub.mode=subscribe" \ - -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ - -F "hub.callback=http://postbin.org/123" -``` - -PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. - -##### Parameters - -Name | Type | Description ------|------|-------------- -``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. -``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. -``hub.callback``|`string` | The URI to receive the updates to the topic. -``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/zh-CN/content/rest/reference/repository-metrics.md b/translations/zh-CN/content/rest/reference/repository-metrics.md new file mode 100644 index 0000000000..aea394d6e0 --- /dev/null +++ b/translations/zh-CN/content/rest/reference/repository-metrics.md @@ -0,0 +1,61 @@ +--- +title: Repository metrics +intro: 'The repository metrics API allows you to retrieve community profile, statistics, and traffic for your repository.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +{% ifversion fpt or ghec %} +## Community + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'community' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% endif %} + +## Statistics + +The Repository Statistics API allows you to fetch the data that {% data variables.product.product_name %} uses for visualizing different +types of repository activity. + +### A word about caching + +Computing repository statistics is an expensive operation, so we try to return cached +data whenever possible. If the data hasn't been cached when you query a repository's +statistics, you'll receive a `202` response; a background job is also fired to +start compiling these statistics. Give the job a few moments to complete, and +then submit the request again. If the job has completed, that request will receive a +`200` response with the statistics in the response body. + +Repository statistics are cached by the SHA of the repository's default branch; pushing to the default branch resets the statistics cache. + +### Statistics exclude some types of commits + +The statistics exposed by the API match the statistics shown by [different repository graphs](/github/visualizing-repository-data-with-graphs/about-repository-graphs). + +To summarize: +- All statistics exclude merge commits. +- Contributor statistics also exclude empty commits. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'statistics' %}{% include rest_operation %}{% endif %} +{% endfor %} + +{% ifversion fpt or ghec %} +## Traffic + +For repositories that you have push access to, the traffic API provides access +to the information provided in your repository graph. For more information, see "<a href="/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository" class="dotcom-only">Viewing traffic to a repository</a>." + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'traffic' %}{% include rest_operation %}{% endif %} +{% endfor %} +{% endif %} \ No newline at end of file diff --git a/translations/zh-CN/content/rest/reference/search.md b/translations/zh-CN/content/rest/reference/search.md index 99d4a14e4f..19f0a12d45 100644 --- a/translations/zh-CN/content/rest/reference/search.md +++ b/translations/zh-CN/content/rest/reference/search.md @@ -58,7 +58,7 @@ GitHub Octocat in:readme user:defunkt const queryString = 'q=' + encodeURIComponent('GitHub Octocat in:readme user:defunkt'); ``` -See "[Searching on GitHub](/articles/searching-on-github/)" +See "[Searching on GitHub](/search-github/searching-on-github)" for a complete list of available qualifiers, their format, and an example of how to use them. For information about how to use operators to match specific quantities, dates, or to exclude results, see "[Understanding the search syntax](/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax/)." diff --git a/translations/zh-CN/content/rest/reference/webhooks.md b/translations/zh-CN/content/rest/reference/webhooks.md new file mode 100644 index 0000000000..c9908012c1 --- /dev/null +++ b/translations/zh-CN/content/rest/reference/webhooks.md @@ -0,0 +1,77 @@ +--- +title: Webhooks +intro: 'The webhooks API allows you to create and manage webhooks for your repositories.' +allowTitleToDifferFromFilename: true +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - API +miniTocMaxHeadingLevel: 3 +--- + +Repository webhooks allow you to receive HTTP `POST` payloads whenever certain events happen in a repository. {% data reusables.webhooks.webhooks-rest-api-links %} + +If you would like to set up a single webhook to receive events from all of your organization's repositories, see our API documentation for [Organization Webhooks](/rest/reference/orgs#webhooks). + +In addition to the REST API, {% data variables.product.prodname_dotcom %} can also serve as a [PubSubHubbub](#pubsubhubbub) hub for repositories. + +{% for operation in currentRestOperations %} + {% if operation.subcategory == 'webhooks' %}{% include rest_operation %}{% endif %} +{% endfor %} + +### Receiving Webhooks + +In order for {% data variables.product.product_name %} to send webhook payloads, your server needs to be accessible from the Internet. We also highly suggest using SSL so that we can send encrypted payloads over HTTPS. + +#### Webhook headers + +{% data variables.product.product_name %} will send along several HTTP headers to differentiate between event types and payload identifiers. See [webhook headers](/developers/webhooks-and-events/webhook-events-and-payloads#delivery-headers) for details. + +### PubSubHubbub + +GitHub can also serve as a [PubSubHubbub](https://github.com/pubsubhubbub/PubSubHubbub) hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. +Topic URLs for a GitHub repository's pushes are in this format: + +`https://github.com/{owner}/{repo}/events/{event}` + +The event can be any available webhook event. For more information, see "[Webhook events and payloads](/developers/webhooks-and-events/webhook-events-and-payloads)." + +#### Response format + +The default format is what [existing post-receive hooks should expect](/post-receive-hooks/): A JSON body sent as the `payload` parameter in a POST. You can also specify to receive the raw JSON body with either an `Accept` header, or a `.json` extension. + + Accept: application/json + https://github.com/{owner}/{repo}/events/push.json + +#### Callback URLs + +Callback URLs can use the `http://` protocol. + + # Send updates to postbin.org + http://postbin.org/123 + +#### Subscribing + +The GitHub PubSubHubbub endpoint is: `{% data variables.product.api_url_code %}/hub`. A successful request with curl looks like: + +``` shell +curl -u "user" -i \ + {% data variables.product.api_url_pre %}/hub \ + -F "hub.mode=subscribe" \ + -F "hub.topic=https://github.com/{owner}/{repo}/events/push" \ + -F "hub.callback=http://postbin.org/123" +``` + +PubSubHubbub requests can be sent multiple times. If the hook already exists, it will be modified according to the request. + +##### Parameters + +Name | Type | Description +-----|------|-------------- +``hub.mode``|`string` | **Required**. Either `subscribe` or `unsubscribe`. +``hub.topic``|`string` |**Required**. The URI of the GitHub repository to subscribe to. The path must be in the format of `/{owner}/{repo}/events/{event}`. +``hub.callback``|`string` | The URI to receive the updates to the topic. +``hub.secret``|`string` | A shared secret key that generates a hash signature of the outgoing body content. You can verify a push came from GitHub by comparing the raw request body with the contents of the {% ifversion fpt or ghes > 2.22 or ghec %}`X-Hub-Signature` or `X-Hub-Signature-256` headers{% elsif ghes < 3.0 %}`X-Hub-Signature` header{% elsif ghae %}`X-Hub-Signature-256` header{% endif %}. You can see [the PubSubHubbub documentation](https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#authednotify) for more details. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-0/20.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-0/20.yml index 71f2c09164..f7842a94a8 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-0/20.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-0/20.yml @@ -11,6 +11,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 - 自定义防火墙规则在升级过程中被删除。 diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-0/22.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-0/22.yml new file mode 100644 index 0000000000..111914cb46 --- /dev/null +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-0/22.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 + - 自定义防火墙规则在升级过程中被删除。 + - Git LFS 跟踪的文件[通过 Web 界面上传](https://github.com/blog/2105-upload-files-to-your-repositories) 被错误地直接添加到仓库。 + - 如果议题包含文件路径长于 255 个字符的同一仓库中 blob 的永久链接,则议题无法关闭。 + - 对 GitHub Connect 启用“用户可以搜索 GitHub.com”后,私有和内部仓库中的议题不包括在 GitHub.com 搜索结果中。 + - 当副本节点在高可用性配置下离线时,{% data variables.product.product_name %} 仍可能将 {% data variables.product.prodname_pages %} 请求路由到离线节点,从而减少用户的 {% data variables.product.prodname_pages %} 可用性。 + - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-1/0.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-1/0.yml index 1d5de0b274..f4db0c2cc8 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-1/0.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-1/0.yml @@ -67,7 +67,7 @@ sections: - | [{% data variables.product.prodname_mobile %}](https://github.com/mobile) filtering allows you to search for and find issues, pull requests, and discussions from your device. New metadata for issues and pull request list items allow you to filter by assignees, checks status, review states, and comment counts. - {% data variables.product.prodname_mobile %} beta is available for {% data variables.product.prodname_ghe_server %}. Sign in with our [Android](https://play.google.com/store/apps/details?id=com.github.android) and [iOS](https://apps.apple.com/app/github/id1477376905) apps to triage notifications and manage issues and pull requests on the go. Administrators can disable mobile support for their Enterprise using the management console or by running `ghe-config app.mobile.enabled false`. For more information, see "[GitHub Mobile](/github/getting-started-with-github/using-github/github-mobile)." + {% data variables.product.prodname_mobile %} beta is available for {% data variables.product.prodname_ghe_server %}. Sign in with our [Android](https://play.google.com/store/apps/details?id=com.github.android) and [iOS](https://apps.apple.com/app/github/id1477376905) apps to triage notifications and manage issues and pull requests on the go. Administrators can disable mobile support for their Enterprise using the management console or by running `ghe-config app.mobile.enabled false`. For more information, see "[GitHub Mobile](/get-started/using-github/github-mobile)." changes: - heading: Administration Changes diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-1/12.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-1/12.yml index 187b02f356..b19cb56327 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-1/12.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-1/12.yml @@ -13,6 +13,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - '{% data variables.product.prodname_registry %} npm 注册表不再返回元数据响应的时间值。这样做是为了大幅改善性能。作为元数据响应的一部分,我们继续拥有返回时间值所需的所有数据,并将在我们解决现有性能问题后恢复返回这个值。' - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-1/14.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-1/14.yml new file mode 100644 index 0000000000..e6c462f3c4 --- /dev/null +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-1/14.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - '{% data variables.product.prodname_registry %} npm 注册表不再返回元数据响应的时间值。这样做是为了大幅改善性能。作为元数据响应的一部分,我们继续拥有返回时间值所需的所有数据,并将在我们解决现有性能问题后恢复返回这个值。' + - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 + - 自定义防火墙规则在升级过程中被删除。 + - Git LFS 跟踪的文件[通过 Web 界面上传](https://github.com/blog/2105-upload-files-to-your-repositories) 被错误地直接添加到仓库。 + - 如果议题包含文件路径长于 255 个字符的同一仓库中 blob 的永久链接,则议题无法关闭。 + - 对 GitHub Connect 启用“用户可以搜索 GitHub.com”后,私有和内部仓库中的议题不包括在 GitHub.com 搜索结果中。 + - If {% data variables.product.prodname_actions %} is enabled for {% data variables.product.prodname_ghe_server %}, teardown of a replica node with `ghe-repl-teardown` will succeed, but may return `ERROR:Running migrations`. + - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-2/0-rc1.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-2/0-rc1.yml index 95d2a1c278..c52c6eafab 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-2/0-rc1.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-2/0-rc1.yml @@ -165,8 +165,8 @@ sections: - heading: API 更改 notes: - - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' - - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' + - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' + - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Webhooks](/rest/reference/webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' - | Improvements have been made to the code scanning and {% data variables.product.prodname_GH_advanced_security %} APIs: diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-2/0.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-2/0.yml index 08ee9a51ec..bc1a754344 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-2/0.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-2/0.yml @@ -166,7 +166,7 @@ sections: - heading: API 更改 notes: - - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' + - 'Pagination support has been added to the Repositories REST API''s "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)."' - 'The REST API can now be used to programmatically resend or check the status of webhooks. For more information, see "[Repositories](/rest/reference/repos#webhooks)," "[Organizations](/rest/reference/orgs#webhooks)," and "[Apps](/rest/reference/apps#webhooks)" in the REST API documentation.' - | Improvements have been made to the code scanning and {% data variables.product.prodname_GH_advanced_security %} APIs: diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-2/4.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-2/4.yml index df2faa023a..5b6c9752c8 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-2/4.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-2/4.yml @@ -19,6 +19,7 @@ sections: changes: - An additional outer layer of `gzip` compression when creating a cluster support bundle with `ghe-cluster-suport-bundle` is now turned off by default. This outer compression can optionally be applied with the `ghe-cluster-suport-bundle -c` command line option. - We have added extra text to the admin console to remind users about the mobile apps' data collection for experience improvement purposes. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] known_issues: - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 - 自定义防火墙规则在升级过程中被删除。 diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-2/6.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-2/6.yml new file mode 100644 index 0000000000..119379595b --- /dev/null +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-2/6.yml @@ -0,0 +1,13 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - 在新建的没有任何用户的 {% data variables.product.prodname_ghe_server %} 上,攻击者可以创建第一个管理员用户。 + - 自定义防火墙规则在升级过程中被删除。 + - Git LFS 跟踪的文件[通过 Web 界面上传](https://github.com/blog/2105-upload-files-to-your-repositories) 被错误地直接添加到仓库。 + - 如果议题包含文件路径长于 255 个字符的同一仓库中 blob 的永久链接,则议题无法关闭。 + - 对 GitHub Connect 启用“用户可以搜索 GitHub.com”后,私有和内部仓库中的议题不包括在 GitHub.com 搜索结果中。 + - '{% data variables.product.prodname_registry %} npm 注册表不再返回元数据响应的时间值。这样做是为了大幅改善性能。作为元数据响应的一部分,我们继续拥有返回时间值所需的所有数据,并将在我们解决现有性能问题后恢复返回这个值。' + - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-3/0-rc1.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-3/0-rc1.yml index ce407e30b2..26be5c3737 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-3/0-rc1.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-3/0-rc1.yml @@ -147,7 +147,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-3/0.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-3/0.yml index b63df617c7..da6a824bb6 100644 --- a/translations/zh-CN/data/release-notes/enterprise-server/3-3/0.yml +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-3/0.yml @@ -44,6 +44,7 @@ sections: - '{% data variables.product.prodname_ghe_server %} 3.3 includes the public beta of a repository cache for geographically-distributed teams and CI infrastructure. The repository cache keeps a read-only copy of your repositories available in additional geographies, which prevents clients from downloading duplicate Git content from your primary instance. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."' - '{% data variables.product.prodname_ghe_server %} 3.3 includes improvements to the user impersonation process. An impersonation session now requires a justification for the impersonation, actions are recorded in the audit log as being performed as an impersonated user, and the user who is impersonated will receive an email notification that they have been impersonated by an enterprise administrator. For more information, see "[Impersonating a user](/enterprise-server@3.3/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user)."' - A new stream processing service has been added to facilitate the growing set of events that are published to the audit log, including events associated with Git and {% data variables.product.prodname_actions %} activity. + - The {% data variables.product.prodname_github_connect %} data connection record now includes a list of enabled {% data variables.product.prodname_github_connect %} features. [Updated 2021-12-09] - heading: Token Changes notes: @@ -139,7 +140,7 @@ sections: notes: - Most REST API previews have graduated and are now an official part of the API. Preview headers are no longer required for most REST API endpoints, but will still function as expected if you specify a graduated preview in the `Accept` header of a request. For previews that still require specifying the preview in the `Accept` header of a request, see "[API previews](/rest/overview/api-previews)." - 'You can now use the REST API to configure custom autolinks to external resources. The REST API now provides beta `GET`/`POST`/`DELETE` endpoints which you can use to view, add, or delete custom autolinks associated with a repository. For more information, see "[Autolinks](/rest/reference/repos#autolinks)."' - - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Repositories](/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' + - 'You can now use the REST API to sync a forked repository with its upstream repository. For more information, see "[Branches](/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository)" in the REST API documentation.' - 'Enterprise administrators on GitHub Enterprise Server can now use the REST API to enable or disable Git LFS for a repository. For more information, see "[Repositories](/rest/reference/repos#git-lfs)."' - 'You can now use the REST API to query the audit log for an enterprise. While audit log forwarding provides the ability to retain and analyze data with your own toolkit and determine patterns over time, the new endpoint can help you perform limited analysis on recent events. For more information, see "[{% data variables.product.prodname_enterprise %} administration](/rest/reference/enterprise-admin#get-the-audit-log-for-an-enterprise)" in the REST API documentation.' - GitHub App user-to-server API requests can now read public resources using the REST API. This includes, for example, the ability to list a public repository's issues and pull requests, and to access a public repository's comments and content. diff --git a/translations/zh-CN/data/release-notes/enterprise-server/3-3/1.yml b/translations/zh-CN/data/release-notes/enterprise-server/3-3/1.yml new file mode 100644 index 0000000000..9e1fbc6568 --- /dev/null +++ b/translations/zh-CN/data/release-notes/enterprise-server/3-3/1.yml @@ -0,0 +1,14 @@ +--- +date: '2021-12-13' +sections: + security_fixes: + - '**CRITICAL:** A remote code execution vulnerability in the Log4j library, identified as [CVE-2021-44228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44228), affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.3.1. The Log4j library is used in an open source service running on the {% data variables.product.prodname_ghe_server %} instance. This vulnerability was fixed in {% data variables.product.prodname_ghe_server %} versions 3.0.22, 3.1.14, 3.2.6, and 3.3.1. For more information, please see [this post](https://github.blog/2021-12-13-githubs-response-to-log4j-vulnerability-cve-2021-44228/) on the GitHub Blog.' + known_issues: + - After upgrading to {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_actions %} may fail to start automatically. To resolve this issue, connect to the appliance via SSH and run the `ghe-actions-start` command. + - On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user. + - 自定义防火墙规则在升级过程中被删除。 + - Git LFS 跟踪的文件[通过 Web 界面上传](https://github.com/blog/2105-upload-files-to-your-repositories) 被错误地直接添加到仓库。 + - 如果议题包含文件路径长于 255 个字符的同一仓库中 blob 的永久链接,则议题无法关闭。 + - 对 GitHub Connect 启用“用户可以搜索 GitHub.com”后,私有和内部仓库中的议题不包括在 GitHub.com 搜索结果中。 + - '{% data variables.product.prodname_registry %} npm 注册表不再返回元数据响应的时间值。这样做是为了大幅改善性能。作为元数据响应的一部分,我们继续拥有返回时间值所需的所有数据,并将在我们解决现有性能问题后恢复返回这个值。' + - Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail. diff --git a/translations/zh-CN/data/release-notes/github-ae/2021-06/2021-12-06.yml b/translations/zh-CN/data/release-notes/github-ae/2021-06/2021-12-06.yml index 9a18c3c00e..8c0fca296d 100644 --- a/translations/zh-CN/data/release-notes/github-ae/2021-06/2021-12-06.yml +++ b/translations/zh-CN/data/release-notes/github-ae/2021-06/2021-12-06.yml @@ -88,7 +88,7 @@ sections: - | With the [latest version of Octicons](https://github.com/primer/octicons/releases), the states of issues and pull requests are now more visually distinct so you can scan status more easily. For more information, see [{% data variables.product.prodname_blog %}](https://github.blog/changelog/2021-06-08-new-issue-and-pull-request-state-icons/). - | - You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Repositories](/rest/reference/repos#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. + You can now see all pull request review comments in the **Files** tab for a pull request by selecting the **Conversations** drop-down. You can also require that all pull request review comments are resolved before anyone merges the pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews#discovering-and-navigating-conversations)" and "[About protected branches](/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-conversation-resolution-before-merging)." For more information about management of branch protection settings with the API, see "[Branches](/rest/reference/branches#get-branch-protection)" in the REST API documentation and "[Mutations](/graphql/reference/mutations#createbranchprotectionrule)" in the GraphQL API documentation. - | You can now upload video files everywhere you write Markdown on {% data variables.product.product_name %}. Share demos, show reproduction steps, and more in issue and pull request comments, as well as in Markdown files within repositories, such as READMEs. For more information, see "[Attaching files](/github/writing-on-github/working-with-advanced-formatting/attaching-files)." - | @@ -113,7 +113,7 @@ sections: - | You can now sort the repositories on a user or organization profile by star count. - | - The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Repositories](/rest/reference/repos#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." + The Repositories REST API's "compare two commits" endpoint, which returns a list of commits reachable from one commit or branch, but unreachable from another, now supports pagination. The API can also now return the results for comparisons over 250 commits. For more information, see the "[Commits](/rest/reference/commits#compare-two-commits)" REST API documentation and "[Traversing with pagination](/rest/guides/traversing-with-pagination)." - | When you define a submodule in {% data variables.product.product_location %} with a relative path, the submodule is now clickable in the web UI. Clicking the submodule in the web UI will take you to the linked repository. Previously, only submodules with absolute URLs were clickable. Relative paths for repositories with the same owner that follow the pattern <code>../<em>REPOSITORY</em></code> or relative paths for repositories with a different owner that follow the pattern <code>../<em>OWNER</em>/<em>REPOSITORY</em></code> are supported. For more information about working with submodules, see [Working with submodules](https://github.blog/2016-02-01-working-with-submodules/) on {% data variables.product.prodname_blog %}. - | diff --git a/translations/zh-CN/data/reusables/accounts/accounts-billed-separately.md b/translations/zh-CN/data/reusables/accounts/accounts-billed-separately.md new file mode 100644 index 0000000000..3e99bbe898 --- /dev/null +++ b/translations/zh-CN/data/reusables/accounts/accounts-billed-separately.md @@ -0,0 +1 @@ +Each account on {% data variables.product.product_name %} is billed separately. Upgrading an organization account enables paid features for the organization's repositories only and does not affect the features available in repositories owned by any associated personal accounts. Similarly, upgrading a personal account enables paid features for the personal account's repositories only and does not affect the repositories of any organization accounts. For more information about account types, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/get-started/learning-about-github/types-of-github-accounts)." diff --git a/translations/zh-CN/data/reusables/actions/hardware-requirements-3.2.md b/translations/zh-CN/data/reusables/actions/hardware-requirements-3.2.md new file mode 100644 index 0000000000..dee0bd16c9 --- /dev/null +++ b/translations/zh-CN/data/reusables/actions/hardware-requirements-3.2.md @@ -0,0 +1,5 @@ +| vCPU | 内存 | 最大并行数 | +|:---- |:------ |:-------- | +| 32 | 128 GB | 1000 个作业 | +| 64 | 256 GB | 1300 个作业 | +| 96 | 384 GB | 2200 个作业 | \ No newline at end of file diff --git a/translations/zh-CN/data/reusables/actions/hardware-requirements-after.md b/translations/zh-CN/data/reusables/actions/hardware-requirements-after.md new file mode 100644 index 0000000000..1f4b7e72bd --- /dev/null +++ b/translations/zh-CN/data/reusables/actions/hardware-requirements-after.md @@ -0,0 +1,7 @@ +| vCPU | 内存 | 最大并行数 | +|:---- |:------ |:-------- | +| 8 | 64 GB | 300 个作业 | +| 16 | 160 GB | 700 个作业 | +| 32 | 128 GB | 1300 个作业 | +| 64 | 256 GB | 2000 个作业 | +| 96 | 384 GB | 4000 个作业 | \ No newline at end of file diff --git a/translations/zh-CN/data/reusables/actions/hardware-requirements-before.md b/translations/zh-CN/data/reusables/actions/hardware-requirements-before.md new file mode 100644 index 0000000000..e92f982dbc --- /dev/null +++ b/translations/zh-CN/data/reusables/actions/hardware-requirements-before.md @@ -0,0 +1,6 @@ +| vCPU | 内存 | 最大作业吞吐量 | +|:---- |:------ |:------- | +| 4 | 32 GB | 演示或轻量测试 | +| 8 | 64 GB | 25 个作业 | +| 16 | 160 GB | 35 个作业 | +| 32 | 256 GB | 100 个作业 | \ No newline at end of file diff --git a/translations/zh-CN/data/reusables/enterprise_installation/hardware-rec-table.md b/translations/zh-CN/data/reusables/enterprise_installation/hardware-rec-table.md index 9b4fdeaa71..fcb26259aa 100644 --- a/translations/zh-CN/data/reusables/enterprise_installation/hardware-rec-table.md +++ b/translations/zh-CN/data/reusables/enterprise_installation/hardware-rec-table.md @@ -1,28 +1,48 @@ {% ifversion ghes %} -| User licenses | vCPUs | Memory | Attached storage | Root storage | -| :- | -: | -: | -: | -: | -| Trial, demo, or 10 light users | 4 | 32 GB | 150 GB | 200 GB | -| 10 to 3,000 | 8 | 48 GB | 300 GB | 200 GB | -| 3,000 to 5000 | 12 | 64 GB | 500 GB | 200 GB | -| 5,000 to 8000 | 16 | 96 GB | 750 GB | 200 GB | -| 8,000 to 10,000+ | 20 | 160 GB | 1000 GB | 200 GB | +| 用户许可 | vCPU | 内存 | 附加的存储容量 | 根存储容量 | +|:----------------- | ----:| ------:| -------:| ------:| +| 试用版、演示版或 10 个轻度用户 | 4 | 32 GB | 150 GB | 200 GB | +| 10-3000 | 8 | 48 GB | 300 GB | 200 GB | +| 3000-5000 | 12 | 64 GB | 500 GB | 200 GB | +| 5000-8000 | 16 | 96 GB | 750 GB | 200 GB | +| 8000-10000+ | 20 | 160 GB | 1000 GB | 200 GB | {% else %} -| User licenses | vCPUs | Memory | Attached storage | Root storage | -| :- | -: | -: | -: | -: | -| Trial, demo, or 10 light users | 2 | 16 GB | 100 GB | 200 GB | -| 10 to 3,000 | 4 | 32 GB | 250 GB | 200 GB | -| 3,000 to 5000 | 8 | 64 GB | 500 GB | 200 GB | -| 5,000 to 8000 | 12 | 96 GB | 750 GB | 200 GB | -| 8,000 to 10,000+ | 16 | 128 GB | 1000 GB | 200 GB | +| 用户许可 | vCPU | 内存 | 附加的存储容量 | 根存储容量 | +|:----------------- | ----:| ------:| -------:| ------:| +| 试用版、演示版或 10 个轻度用户 | 2 | 16 GB | 100 GB | 200 GB | +| 10-3000 | 4 | 32 GB | 250 GB | 200 GB | +| 3000-5000 | 8 | 64 GB | 500 GB | 200 GB | +| 5000-8000 | 12 | 96 GB | 750 GB | 200 GB | +| 8000-10000+ | 16 | 128 GB | 1000 GB | 200 GB | {% endif %} {% ifversion ghes %} -If you plan to enable {% data variables.product.prodname_actions %} for the users of your instance, review the requirements for hardware, external storage, and runners in "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-github-enterprise-server)." +If you plan to enable {% data variables.product.prodname_actions %} for the users of your instance, more resources are required. + +{%- ifversion ghes < 3.2 %} + +{% data reusables.actions.hardware-requirements-before %} + +{%- endif %} + +{%- ifversion ghes = 3.2 %} + +{% data reusables.actions.hardware-requirements-3.2 %} + +{%- endif %} + +{%- ifversion ghes > 3.2 %} + +{% data reusables.actions.hardware-requirements-after %} + +{%- endif %} + +For more information about these requirements, 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#review-hardware-considerations)." {% endif %} diff --git a/translations/zh-CN/data/reusables/gated-features/internal-repos.md b/translations/zh-CN/data/reusables/gated-features/internal-repos.md deleted file mode 100644 index 0f522b719f..0000000000 --- a/translations/zh-CN/data/reusables/gated-features/internal-repos.md +++ /dev/null @@ -1,7 +0,0 @@ -{% ifversion fpt %} -Internal repositories are available on -{% data variables.product.prodname_ghe_cloud %} for organizations that are owned by an enterprise account and {% data variables.product.prodname_ghe_server %} 2.20+. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products) and "[About enterprise accounts](/enterprise-cloud@latest/admin/overview/about-enterprise-accounts)" in the {% data variables.product.prodname_ghe_cloud %} documentation. -{% else %} -Internal repositories are available on -{% data variables.product.prodname_ghe_cloud %} for organizations that are owned by an enterprise account{% ifversion ghae %}, {% data variables.product.prodname_ghe_managed %},{% endif %} and {% data variables.product.prodname_ghe_server %} 2.20+. For more information, see "[{% data variables.product.company_short %}'s products](/get-started/learning-about-github/githubs-products)" and "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." -{% endif %} diff --git a/translations/zh-CN/data/reusables/gated-features/saml-sso.md b/translations/zh-CN/data/reusables/gated-features/saml-sso.md deleted file mode 100644 index 607f873131..0000000000 --- a/translations/zh-CN/data/reusables/gated-features/saml-sso.md +++ /dev/null @@ -1 +0,0 @@ -SAML 单点登录可用于 {% data variables.product.prodname_ghe_cloud %}{% ifversion ghae %} 和 {% data variables.product.prodname_ghe_managed %}{% endif %}。 更多信息请参阅“[GitHub's products](/articles/githubs-products)”。 diff --git a/translations/zh-CN/data/reusables/gated-features/team-synchronization.md b/translations/zh-CN/data/reusables/gated-features/team-synchronization.md deleted file mode 100644 index cee8b9eaa3..0000000000 --- a/translations/zh-CN/data/reusables/gated-features/team-synchronization.md +++ /dev/null @@ -1 +0,0 @@ -{% ifversion fpt or ghec %}团队同步可用于使用 {% data variables.product.prodname_ghe_cloud %} 的组织和企业帐户。 {% data reusables.gated-features.more-info-org-products %}{% elsif ghae %}团队与 SCIM 组的同步可用于使用 {% data variables.product.prodname_ghe_managed %} 的组织。 更多信息请参阅“[GitHub 的产品](/github/getting-started-with-github/githubs-products)”。{% endif %} diff --git a/translations/zh-CN/data/reusables/organizations/organization-plans.md b/translations/zh-CN/data/reusables/organizations/organization-plans.md new file mode 100644 index 0000000000..7a87c02ae6 --- /dev/null +++ b/translations/zh-CN/data/reusables/organizations/organization-plans.md @@ -0,0 +1,8 @@ +{% ifversion fpt or ghec %} +All organizations can own an unlimited number of public and private repositories. You can use organizations for free, with {% data variables.product.prodname_free_team %}, which includes limited features on private repositories. To get the full feature set on private repositories and additional features at the organization level, including SAML single sign-on and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} + +If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} + +{% ifversion fpt %} +{% data reusables.enterprise.link-to-ghec-trial %}{% endif %} +{% endif %} \ No newline at end of file diff --git a/translations/zh-CN/data/reusables/organizations/organizations_include.md b/translations/zh-CN/data/reusables/organizations/organizations_include.md index 47a1c98fd9..e3b42970f5 100644 --- a/translations/zh-CN/data/reusables/organizations/organizations_include.md +++ b/translations/zh-CN/data/reusables/organizations/organizations_include.md @@ -6,15 +6,4 @@ - The option to [require all organization members to use two-factor authentication](/articles/requiring-two-factor-authentication-in-your-organization){% endif %}{% ifversion fpt%} - The ability to [create and administer classrooms with GitHub Classroom](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms){% endif %} -{% ifversion fpt or ghec %} -You can use organizations for free, with -{% data variables.product.prodname_free_team %}, which includes unlimited collaborators on unlimited public repositories with full features, and unlimited private repositories with limited features. - -For additional features, including sophisticated user authentication and management, and improved support coverage, you can upgrade to {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %}. {% data reusables.gated-features.more-info %} - -If you use {% data variables.product.prodname_ghe_cloud %}, you have the option to purchase a license for {% data variables.product.prodname_GH_advanced_security %} and use the features on private repositories. {% data reusables.advanced-security.more-info-ghas %} - -{% ifversion fpt %} -{% data reusables.enterprise.link-to-ghec-trial %} -{% endif %} -{% endif %} +{% data reusables.organizations.organization-plans %} diff --git a/translations/zh-CN/data/reusables/organizations/team-synchronization.md b/translations/zh-CN/data/reusables/organizations/team-synchronization.md index 61a5d2656e..520d1c96b4 100644 --- a/translations/zh-CN/data/reusables/organizations/team-synchronization.md +++ b/translations/zh-CN/data/reusables/organizations/team-synchronization.md @@ -1,3 +1,3 @@ {% ifversion fpt or ghae or ghec %} -您可以使用团队同步通过身份提供程序自动添加和删除团队中的组织成员。 更多信息请参阅“[同步团队与身份提供程序组](/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group)”。 +{% ifversion fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud%}{% else %}You{% endif %} can use team synchronization to automatically add and remove organization members to teams through an identity provider. For more information, see "[Synchronizing a team with an identity provider group]({% ifversion fpt %}/enterprise-cloud@latest{% endif %}/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} {% endif %} diff --git a/translations/zh-CN/data/reusables/repositories/about-internal-repos.md b/translations/zh-CN/data/reusables/repositories/about-internal-repos.md index dd53ed2b6d..cfd5636935 100644 --- a/translations/zh-CN/data/reusables/repositories/about-internal-repos.md +++ b/translations/zh-CN/data/reusables/repositories/about-internal-repos.md @@ -1 +1 @@ -您可以使用内部仓库充分利用企业中的“内部资源”。 企业的成员可使用开源方法进行协作,而无需公开共享专有信息{% ifversion ghes %},即使禁用了私有模式{% endif %}。 +{% ifversion ghec %}If your organization is owned by an enterprise account, you{% else %}You{% endif %} can use internal repositories to practice "innersource" within your enterprise. 企业的成员可使用开源方法进行协作,而无需公开共享专有信息{% ifversion ghes %},即使禁用了私有模式{% endif %}。 diff --git a/translations/zh-CN/data/reusables/saml/dotcom-saml-explanation.md b/translations/zh-CN/data/reusables/saml/dotcom-saml-explanation.md index 49c7524fe5..1193514f50 100644 --- a/translations/zh-CN/data/reusables/saml/dotcom-saml-explanation.md +++ b/translations/zh-CN/data/reusables/saml/dotcom-saml-explanation.md @@ -1 +1 @@ -SAML 单点登录 (SSO) 为 {% data variables.product.prodname_dotcom %} 上的组织所有者和企业所有者提供一种控制安全访问仓库、议题和拉取请求等组织资源的方法。 +SAML single sign-on (SSO) gives organization owners and enterprise owners using {% data variables.product.product_name %} a way to control and secure access to organization resources like repositories, issues, and pull requests. diff --git a/translations/zh-CN/data/reusables/saml/saml-accounts.md b/translations/zh-CN/data/reusables/saml/saml-accounts.md index 3afbde92bd..5a939dfc7d 100644 --- a/translations/zh-CN/data/reusables/saml/saml-accounts.md +++ b/translations/zh-CN/data/reusables/saml/saml-accounts.md @@ -1 +1 @@ -If you configure SAML SSO, members of your {% data variables.product.prodname_dotcom %} organization will continue to log into their user accounts on {% data variables.product.prodname_dotcom %}. 当成员访问组织内使用 SAML SSO 的资源时,{% data variables.product.prodname_dotcom %} 会将该成员重定向到 IdP 进行身份验证。 身份验证成功后,IdP 将该成员重定向回 {% data variables.product.prodname_dotcom %},然后成员可以访问组织的资源。 +If you configure SAML SSO, members of your organization will continue to log into their user accounts on {% data variables.product.prodname_dotcom_the_website %}. 当成员访问组织内使用 SAML SSO 的资源时,{% data variables.product.prodname_dotcom %} 会将该成员重定向到 IdP 进行身份验证。 身份验证成功后,IdP 将该成员重定向回 {% data variables.product.prodname_dotcom %},然后成员可以访问组织的资源。 diff --git a/translations/zh-CN/data/reusables/saml/saml-session-oauth.md b/translations/zh-CN/data/reusables/saml/saml-session-oauth.md index 050e9b7b09..9170f7f503 100644 --- a/translations/zh-CN/data/reusables/saml/saml-session-oauth.md +++ b/translations/zh-CN/data/reusables/saml/saml-session-oauth.md @@ -1 +1 @@ -如果您属于任何实施 SAML 单点登录的组织,则可能会提示您需要通过身份提供程序进行身份验证,然后才能授权 {% data variables.product.prodname_oauth_app %}。 有关 SAML 的更多信息,请参阅“[关于使用 SAML 单点登录进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)”。 +如果您属于任何实施 SAML 单点登录的组织,则可能会提示您需要通过身份提供程序进行身份验证,然后才能授权 {% data variables.product.prodname_oauth_app %}。 For more information about SAML, see "[About authentication with SAML single sign-on](/enterprise-cloud@latest/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} diff --git a/translations/zh-CN/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/translations/zh-CN/data/reusables/secret-scanning/partner-secret-list-private-repo.md index 435b7538e0..01efffa0b8 100644 --- a/translations/zh-CN/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/translations/zh-CN/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -16,7 +16,9 @@ Amazon Web Services (AWS) | Amazon AWS Temporary Access Key ID | aws_temporary_a {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} Asana | Asana Personal Access Token | asana_personal_access_token{% endif %} Atlassian | Atlassian API Token | atlassian_api_token Atlassian | Atlassian JSON Web Token | atlassian_jwt {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -Atlassian | Bitbucket Server Personal Access Token | bitbucket_server_personal_access_token{% endif %} Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token Azure | Azure SAS Token | azure_sas_token Azure | Azure Service Management Certificate | azure_management_certificate +Atlassian | Bitbucket Server Personal Access Token | bitbucket_server_personal_access_token{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Azure | Azure Cache for Redis Access Key | azure_cache_for_redis_access_key{% endif %} Azure | Azure DevOps Personal Access Token | azure_devops_personal_access_token Azure | Azure SAS Token | azure_sas_token Azure | Azure Service Management Certificate | azure_management_certificate {%- ifversion ghes < 3.4 or ghae or ghae-issue-5342 %} Azure | Azure SQL Connection String | azure_sql_connection_string{% endif %} Azure | Azure Storage Account Key | azure_storage_account_key {%- ifversion fpt or ghec or ghes > 3.2 %} diff --git a/translations/zh-CN/data/reusables/webhooks/commit_comment_properties.md b/translations/zh-CN/data/reusables/webhooks/commit_comment_properties.md index 8c60a240f2..010368c488 100644 --- a/translations/zh-CN/data/reusables/webhooks/commit_comment_properties.md +++ b/translations/zh-CN/data/reusables/webhooks/commit_comment_properties.md @@ -1,4 +1,4 @@ -| 键 | 类型 | 描述 | -| -------- | ----- | ----------------------------------------------------- | -| `action` | `字符串` | 执行的操作。 可以是 `created`。 | -| `注释,评论` | `对象` | [提交评论](/rest/reference/repos#get-a-commit-comment)资源。 | +| 键 | 类型 | 描述 | +| -------- | ----- | ------------------------------------------------------- | +| `action` | `字符串` | 执行的操作。 可以是 `created`。 | +| `注释,评论` | `对象` | [提交评论](/rest/reference/commits#get-a-commit-comment)资源。 | diff --git a/translations/zh-CN/data/reusables/webhooks/deploy_key_properties.md b/translations/zh-CN/data/reusables/webhooks/deploy_key_properties.md index a93737fe57..6f7237aaee 100644 --- a/translations/zh-CN/data/reusables/webhooks/deploy_key_properties.md +++ b/translations/zh-CN/data/reusables/webhooks/deploy_key_properties.md @@ -1,4 +1,4 @@ -| 键 | 类型 | 描述 | -| -------- | ----- | --------------------------------------------------- | -| `action` | `字符串` | 执行的操作。 可以是 `created` 或 `deleted`。 | -| `键` | `对象` | [`部署密钥`](/rest/reference/repos#get-a-deploy-key)资源。 | +| 键 | 类型 | 描述 | +| -------- | ----- | --------------------------------------------------------- | +| `action` | `字符串` | 执行的操作。 可以是 `created` 或 `deleted`。 | +| `键` | `对象` | [`部署密钥`](/rest/reference/deployments#get-a-deploy-key)资源。 | diff --git a/translations/zh-CN/data/reusables/webhooks/deployment_short_desc.md b/translations/zh-CN/data/reusables/webhooks/deployment_short_desc.md index 2483fa8eec..85cf4606a4 100644 --- a/translations/zh-CN/data/reusables/webhooks/deployment_short_desc.md +++ b/translations/zh-CN/data/reusables/webhooks/deployment_short_desc.md @@ -1 +1 @@ -已创建部署。 {% data reusables.webhooks.action_type_desc %} 更多信息请参阅“[部署](/rest/reference/repos#list-deployments)”REST API。 +已创建部署。 {% data reusables.webhooks.action_type_desc %} 更多信息请参阅“[部署](/rest/reference/deployments#list-deployments)”REST API。 diff --git a/translations/zh-CN/data/reusables/webhooks/deployment_status_short_desc.md b/translations/zh-CN/data/reusables/webhooks/deployment_status_short_desc.md index 143d7fcaea..a8ae37152c 100644 --- a/translations/zh-CN/data/reusables/webhooks/deployment_status_short_desc.md +++ b/translations/zh-CN/data/reusables/webhooks/deployment_status_short_desc.md @@ -1 +1 @@ -已创建部署。 {% data reusables.webhooks.action_type_desc %} 更多信息请参阅“[部署状态](/rest/reference/repos#list-deployment-statuses)”REST API。 +已创建部署。 {% data reusables.webhooks.action_type_desc %} 更多信息请参阅“[部署状态](/rest/reference/deployments#list-deployment-statuses)”REST API。 diff --git a/translations/zh-CN/data/ui.yml b/translations/zh-CN/data/ui.yml index 8e5ac4a015..caf2d95311 100644 --- a/translations/zh-CN/data/ui.yml +++ b/translations/zh-CN/data/ui.yml @@ -52,7 +52,7 @@ survey: optional: 可选 required: 必选 email_placeholder: email@example.com - email_label: 如果有更多问题,我们能联系您吗? + email_label: If we can contact you with more questions, please enter your email address send: 发送​​ feedback: 谢谢!我们收到了您的反馈。 not_support: 如果您需要回复,请联系客服。